diff --git a/README.md b/README.md index 508a35fea5431fcc88fd7dce2332c8b8b6a1b622..d67fc07ed1ebbc00dc8a7894f35d4a6a9c7226c1 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ single-file public domain libraries for C/C++ 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_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 **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 diff --git a/stb_truetype.h b/stb_truetype.h index 67e262b1061d945914344e6f5b71175e0b2d7165..8b576d9beed2fdb7f1f62b1d7aa428f48594d7f8 100644 --- a/stb_truetype.h +++ b/stb_truetype.h @@ -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 // // This library processes TrueType files: @@ -31,9 +31,11 @@ // David Given // Ivan-Assen Ivanov // Anthony Pesch +// Johan Duparc // // VERSION HISTORY // +// 0.8b (2014-07-07) fix a warning // 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.6c (2012-07-24) improve documentation diff --git a/stb_vorbis.c b/stb_vorbis.c index f0cebad2c7c09f492a473e863c9da5285be65ec8..a15a283a642714567ad9d243eaa69a30c3959dfe 100644 --- a/stb_vorbis.c +++ b/stb_vorbis.c @@ -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/ // // Written by Sean Barrett in 2007, last updated in 2014 @@ -21,7 +21,7 @@ // // Bugfix/warning contributors: // Terje Mathisen Niklas Frykholm Andy Hill -// Casey Muratori John Bolton +// Casey Muratori John Bolton Gargaj // Laurent Gomila Marc LeBlanc // Bernhard Wodo Evan Balster // Tom Beaumont Ingo Leitgeb @@ -30,6 +30,7 @@ // list them all because I was lax about updating for a long time, sorry.) // // 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.0 - 2014/05/26 - fix memory leaks; fix warnings; fix bugs in >2-channel; // (API change) report sample rate for decode-full-file funcs