update version numbers due to warnings/minor fixes
This commit is contained in:
parent
0cc827fe2a
commit
2da2806d20
@ -5,9 +5,9 @@ single-file public domain libraries for C/C++
|
|||||||
|
|
||||||
library | lastest version | category | description
|
library | lastest version | category | description
|
||||||
--------------------- | ---- | -------- | --------------------------------
|
--------------------- | ---- | -------- | --------------------------------
|
||||||
**stb_vorbis.c** | 1.01 | audio | decode ogg vorbis files from file/memory to float/16-bit signed output
|
**stb_vorbis.c** | 1.02 | audio | decode ogg vorbis files from file/memory to float/16-bit signed output
|
||||||
**stb_image.h** | 1.41 | graphics | image loading/decoding from file/memory: JPG, PNG, TGA, BMP, PSD, GIF, HDR, PIC
|
**stb_image.h** | 1.41 | graphics | image loading/decoding from file/memory: JPG, PNG, TGA, BMP, PSD, GIF, HDR, PIC
|
||||||
**stb_truetype.h** | 0.8 | graphics | parse, decode, and rasterize characters from truetype fonts
|
**stb_truetype.h** | 0.8b | graphics | parse, decode, and rasterize characters from truetype fonts
|
||||||
**stb_image_write.h** | 0.94 | graphics | image writing to disk: PNG, TGA, BMP
|
**stb_image_write.h** | 0.94 | graphics | image writing to disk: PNG, TGA, BMP
|
||||||
**stretchy_buffer.h** | 1.01 | utility | typesafe dynamic array for C (i.e. approximation to vector<>), doesn't compile as C++
|
**stretchy_buffer.h** | 1.01 | utility | typesafe dynamic array for C (i.e. approximation to vector<>), doesn't compile as C++
|
||||||
**stb_textedit.h** | 1.3 | UI | guts of a text editor for games etc implementing them from scratch
|
**stb_textedit.h** | 1.3 | UI | guts of a text editor for games etc implementing them from scratch
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// stb_truetype.h - v0.8 - public domain
|
// stb_truetype.h - v0.8b - public domain
|
||||||
// authored from 2009-2013 by Sean Barrett / RAD Game Tools
|
// authored from 2009-2013 by Sean Barrett / RAD Game Tools
|
||||||
//
|
//
|
||||||
// This library processes TrueType files:
|
// This library processes TrueType files:
|
||||||
@ -31,9 +31,11 @@
|
|||||||
// David Given
|
// David Given
|
||||||
// Ivan-Assen Ivanov
|
// Ivan-Assen Ivanov
|
||||||
// Anthony Pesch
|
// Anthony Pesch
|
||||||
|
// Johan Duparc
|
||||||
//
|
//
|
||||||
// VERSION HISTORY
|
// VERSION HISTORY
|
||||||
//
|
//
|
||||||
|
// 0.8b (2014-07-07) fix a warning
|
||||||
// 0.8 (2014-05-25) fix a few more warnings
|
// 0.8 (2014-05-25) fix a few more warnings
|
||||||
// 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back
|
// 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back
|
||||||
// 0.6c (2012-07-24) improve documentation
|
// 0.6c (2012-07-24) improve documentation
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// Ogg Vorbis audio decoder - v1.01 - public domain
|
// Ogg Vorbis audio decoder - v1.02 - public domain
|
||||||
// http://nothings.org/stb_vorbis/
|
// http://nothings.org/stb_vorbis/
|
||||||
//
|
//
|
||||||
// Written by Sean Barrett in 2007, last updated in 2014
|
// Written by Sean Barrett in 2007, last updated in 2014
|
||||||
@ -21,7 +21,7 @@
|
|||||||
//
|
//
|
||||||
// Bugfix/warning contributors:
|
// Bugfix/warning contributors:
|
||||||
// Terje Mathisen Niklas Frykholm Andy Hill
|
// Terje Mathisen Niklas Frykholm Andy Hill
|
||||||
// Casey Muratori John Bolton
|
// Casey Muratori John Bolton Gargaj
|
||||||
// Laurent Gomila Marc LeBlanc
|
// Laurent Gomila Marc LeBlanc
|
||||||
// Bernhard Wodo Evan Balster
|
// Bernhard Wodo Evan Balster
|
||||||
// Tom Beaumont Ingo Leitgeb
|
// Tom Beaumont Ingo Leitgeb
|
||||||
@ -30,6 +30,7 @@
|
|||||||
// list them all because I was lax about updating for a long time, sorry.)
|
// list them all because I was lax about updating for a long time, sorry.)
|
||||||
//
|
//
|
||||||
// Partial history:
|
// Partial history:
|
||||||
|
// 1.02 - 2014/07/07 - declare qsort comparison as explicitly _cdecl
|
||||||
// 1.01 - 2014/06/18 - fix stb_vorbis_get_samples_float (interleaved was correct)
|
// 1.01 - 2014/06/18 - fix stb_vorbis_get_samples_float (interleaved was correct)
|
||||||
// 1.0 - 2014/05/26 - fix memory leaks; fix warnings; fix bugs in >2-channel;
|
// 1.0 - 2014/05/26 - fix memory leaks; fix warnings; fix bugs in >2-channel;
|
||||||
// (API change) report sample rate for decode-full-file funcs
|
// (API change) report sample rate for decode-full-file funcs
|
||||||
|
Loading…
Reference in New Issue
Block a user