Browse Source

update version numbers due to warnings/minor fixes

Sean Barrett 11 years ago
parent
commit
2da2806d20
3 changed files with 8 additions and 5 deletions
  1. 2 2
      README.md
  2. 3 1
      stb_truetype.h
  3. 3 2
      stb_vorbis.c

+ 2 - 2
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

+ 3 - 1
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

+ 3 - 2
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