Skip to content

Commit

Permalink
Updated version to 2.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jan 29, 2016
1 parent 2b0fd50 commit 819c508
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,7 @@
2.0.14:
Ryan Gordon - Fri Jan 29 12:53:29 PST 2016
* Deprecated TTF_GetFontKerningSize() which takes font glyph indices and added TTF_GetFontKerningSizeGlyphs() which takes characters

2.0.13:
Sylvain - Sat Jun 28 11:42:42 2014
* Fixed bug rendering text starting with a glyph with negative starting offset
Expand Down
2 changes: 1 addition & 1 deletion SDL_ttf.h
Expand Up @@ -43,7 +43,7 @@ extern "C" {
*/
#define SDL_TTF_MAJOR_VERSION 2
#define SDL_TTF_MINOR_VERSION 0
#define SDL_TTF_PATCHLEVEL 13
#define SDL_TTF_PATCHLEVEL 14

/* This macro can be used to fill a version structure with the compile-time
* version of the SDL_ttf library.
Expand Down
8 changes: 4 additions & 4 deletions VisualC/Version.rc
Expand Up @@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,13,0
PRODUCTVERSION 2,0,13,0
FILEVERSION 2,0,14,0
PRODUCTVERSION 2,0,14,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -46,12 +46,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_ttf\0"
VALUE "FileVersion", "2, 0, 13, 0\0"
VALUE "FileVersion", "2, 0, 14, 0\0"
VALUE "InternalName", "SDL_ttf\0"
VALUE "LegalCopyright", "Copyright � 2016 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL_ttf.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "2, 0, 13, 0\0"
VALUE "ProductVersion", "2, 0, 14, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions Xcode/Info-Framework.plist
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.0.13</string>
<string>2.0.14</string>
<key>CFBundleVersion</key>
<string>2.0.13</string>
<string>2.0.14</string>
</dict>
</plist>
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -2360,9 +2360,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu

MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=13
INTERFACE_AGE=3
BINARY_AGE=13
MICRO_VERSION=14
INTERFACE_AGE=0
BINARY_AGE=14
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION


Expand Down
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -13,9 +13,9 @@ dnl Set various version strings - taken gratefully from the GTk sources

MAJOR_VERSION=2
MINOR_VERSION=0
MICRO_VERSION=13
INTERFACE_AGE=3
BINARY_AGE=13
MICRO_VERSION=14
INTERFACE_AGE=0
BINARY_AGE=14
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION

AC_SUBST(MAJOR_VERSION)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
libsdl2-ttf (2.0.14) UNRELEASED; urgency=medium

* Updated to version 2.0.14

-- Sam Lantinga <slouken@libsdl.org> Fri, 29 Jan 2016 12:55:12 -0800

libsdl2-ttf (2.0.13) UNRELEASED; urgency=medium

* Updated to version 2.0.13
Expand Down
8 changes: 4 additions & 4 deletions version.rc
Expand Up @@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,13,0
PRODUCTVERSION 2,0,13,0
FILEVERSION 2,0,14,0
PRODUCTVERSION 2,0,14,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
Expand All @@ -23,12 +23,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "SDL_ttf\0"
VALUE "FileVersion", "2, 0, 13, 0\0"
VALUE "FileVersion", "2, 0, 14, 0\0"
VALUE "InternalName", "SDL_ttf\0"
VALUE "LegalCopyright", "Copyright � 2016 Sam Lantinga\0"
VALUE "OriginalFilename", "SDL_ttf.dll\0"
VALUE "ProductName", "Simple DirectMedia Layer\0"
VALUE "ProductVersion", "2, 0, 13, 0\0"
VALUE "ProductVersion", "2, 0, 14, 0\0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 819c508

Please sign in to comment.