gb/README.md

45 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2015-09-26 05:58:31 -04:00
# gb
2015-09-26 06:05:32 -04:00
2015-10-04 15:59:40 -04:00
gb single-file public domain libraries for C & C++
2015-09-26 06:05:32 -04:00
library | latest version | category | description
----------------|----------------|----------|-------------
2017-02-06 17:31:18 -05:00
**gb.h** | 0.27 | misc | Helper library (Standard library _improvement_)
**gb_math.h** | 0.07e | math | Vector math library geared towards game development
2016-05-24 12:00:46 -04:00
**gb_gl.h** | 0.05 | graphics | OpenGL Helper Library
2021-07-21 23:30:24 -04:00
**gb_string.h** | 0.96 | strings | A better string library (this is built into gb.h too with custom allocator support!)
**gb_ini.h** | 0.93 | misc | Simple ini file loader library
2015-09-26 06:05:32 -04:00
## FAQ
### What's the license?
These libraries are in the public domain. You can do anything you want with them. You have no legal obligation to do anything else, although I would appreciate attribution.
### If I wrap an gb library in a new library, does the new library have to be public domain?
No.
2015-09-26 06:26:26 -04:00
### Is this in the style of the [stb libraries](https://github.com/nothings/stb)?
Yes. I think these libraries are brilliant and use many of these on a daily basis.
2015-11-17 06:17:37 -05:00
### May I contribute?
Yes.
### What is the versioning system that you use?
I may change it in the future but at the moment it is like this this:
`1.23b`
* `1` = major version
* `23` = minor version
* `b` = patch
- 1.23 => zero patches
- 1.23a => patch 1
- 1.23b => patch 2
- etc.