Skip to content

Commit

Permalink
Update version and ChangeLog for 1.3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed Apr 23, 2023
1 parent dcab85e commit 726579d
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 12 deletions.
28 changes: 28 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
Maverick Model 3D releases published by Zack Middleton.

Changes for 1.3.14 (2023-04-23)
General
Enable Qt HiDPI support by default and fix a few layout issues
Add Offset by Normal command to move vertex along averge normal
Make Duplicate command keep all joint influences
Make Edge Divide command set group and texture coords
Make Select Vertex tool automatically select and unselect triangles
Select new face made by Make Face From Vertices
Make texture coord window to reset map scheme on selection change
Fix texture coord window displaying last texture if no triangle has a texture
Merge Model / Import Animations
Add support for frame animations to Import Animations
Make Merge Model copy frame animation FPS
Make Merge Model and Import Animations copy looping setting
Fix Merge Model and Import Animations to set skeletal animation FPS on the correct animation
Background Image
Fix model using background image with Canvas mode Flat
Fix model viewports not updating immediately after setting background image
Fix drawing left/right brackground image in some cases
Fix background image not blending in some cases
Model Formats
cal3d
Add support for exporting cal3d .cfg files
mm3d
Fix writing background image filename
GNU/Linux
Update Flatpak runtime to org.kde.Platform 5.15-22.08

Changes for 1.3.13 (2021-12-20)
General
Add Clear Rotation/Translation Keyframes to Animation menu
Expand Down
4 changes: 2 additions & 2 deletions Makefile.generic
Original file line number Diff line number Diff line change
Expand Up @@ -1180,11 +1180,11 @@ define INFOPLIST
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3.13</string>
<string>1.3.14</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.3.13</string>
<string>1.3.14</string>
<key>CGDisableCoalescedUpdates</key>
<true/>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dnl Makefile.generic (for x.x.x)
dnl Makefile.am (for Contents/PlugIns/mm3d/x.x)
dnl plugins/Makefile.am (for plugins/x.x)

AC_INIT([mm3d], [1.3.13])
AC_INIT([mm3d], [1.3.14])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
Expand Down
1 change: 1 addition & 0 deletions desktop/moe.clover.mm3d.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<translation type="qt">mm3d</translation>

<releases>
<release version="1.3.14" date="2023-04-23" />
<release version="1.3.13" date="2021-12-20" />
<release version="1.3.12" date="2019-10-07" />
<release version="1.3.11" date="2019-01-02" />
Expand Down
2 changes: 1 addition & 1 deletion doc/html/template.htm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

Copyright &copy; 2004-2008, Kevin Worcester
<br/>
Copyright &copy; 2015-2021, Zack Middleton
Copyright &copy; 2015-2023, Zack Middleton

</center>

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.13"
!define FILE_VERSION "1_3_13"
!define VERSION "1.3.14"
!define FILE_VERSION "1_3_14"

Name "Maverick Model 3D ${VERSION}"
OutFile "mm3d-${FILE_VERSION}-win32-installer.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/implui/aboutwin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"<h2>" VERSION_STRING "</h2><br>" \
"https://clover.moe/mm3d<br><br>" \
"Copyright &copy; 2004-2008, Kevin Worcester<br>" \
"Copyright &copy; 2009-2021 Zack Middleton<br><br>" \
"Copyright &copy; 2009-2023 Zack Middleton<br><br>" \
"</center></body></html>"

AboutWin::AboutWin( QWidget * parent )
Expand Down
4 changes: 2 additions & 2 deletions src/mm3dcore/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
// plugins/Makefile.am (for plugins/x.x)

#ifndef VERSION
#define VERSION "1.3.13"
#define VERSION "1.3.14"
#endif

#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_PATCH 13
#define VERSION_PATCH 14

// Set to 0 for stable releases (even minor version) and 1 for
// development versions (odd minor version)
Expand Down
6 changes: 3 additions & 3 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,13,0
#define VER_PRODUCTVERSION_STR "1.3.13\0"
#define VER_PRODUCTVERSION 1,3,14,0
#define VER_PRODUCTVERSION_STR "1.3.14\0"

#ifndef DEBUG
#define VER_DEBUG 0
Expand Down Expand Up @@ -59,7 +59,7 @@ BEGIN
VALUE "InternalName", "mm3d.x86"
#endif
// Copyright symbol (©) in Windows codepage 1252 is \xA9
VALUE "LegalCopyright", "Copyright \xA9 2004-2008 Kevin Worcester, Copyright \xA9 2009-2021 Zack Middleton."
VALUE "LegalCopyright", "Copyright \xA9 2004-2008 Kevin Worcester, Copyright \xA9 2009-2023 Zack Middleton."
END
END

Expand Down

0 comments on commit 726579d

Please sign in to comment.