Skip to content

Commit

Permalink
Update version and changelog for 1.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed Oct 8, 2019
1 parent 03e3731 commit dcb15f3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Changes for 1.3.12 (2019-10-07)
Add shift key behavior to Texture Coord editor for move/rotate/scale
Make Convert To Frame window convert multiple animations at once
Remove artificial MD3 export limits
Fix animation frame slider not responding to arrow keys
Fix delete button in Edit Joints window
Fix mouse interaction and wireframe line size on HiDPI displays
Fix OpenGL possibly not working on Windows with Qt5 (black viewports)
Fix some memory leak and std::list usage
Fix configure when compiling on Fedora

Changes for 1.3.11 (2019-01-02)
Add support for exporting Studiomdl Data (SMD) models
Add support for texture alpha blending in animation mode
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dnl Makefile.am (for Contents/PlugIns/mm3d/x.x)
dnl Makefile.generic (for plugins/x.x)
dnl plugins/Makefile.am (for plugins/x.x)

AC_INIT([mm3d], [1.3.11])
AC_INIT([mm3d], [1.3.12])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
Expand Down
4 changes: 2 additions & 2 deletions mm3d-win32-installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
; See the COPYING file for full license text.


!define VERSION "1.3.11"
!define FILE_VERSION "1_3_11"
!define VERSION "1.3.12"
!define FILE_VERSION "1_3_12"

Name "Maverick Model 3D ${VERSION}"
OutFile "mm3d-${FILE_VERSION}-win32-installer.exe"
Expand Down
4 changes: 2 additions & 2 deletions src/mm3dcore/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
// plugins/Makefile.am (for plugins/x.x)

#ifndef VERSION
#define VERSION "1.3.11"
#define VERSION "1.3.12"
#endif

#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_PATCH 11
#define VERSION_PATCH 12

// Set to 0 for stable releases (even minor version) and 1 for
// development versions (odd minor version)
Expand Down
4 changes: 2 additions & 2 deletions src/win_resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
A ICON "mm3d.ico"
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "win_manifest.xml"

#define VER_PRODUCTVERSION 1,3,11,0
#define VER_PRODUCTVERSION_STR "1.3.11\0"
#define VER_PRODUCTVERSION 1,3,12,0
#define VER_PRODUCTVERSION_STR "1.3.12\0"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down

0 comments on commit dcb15f3

Please sign in to comment.