diff --git a/ChangeLog b/ChangeLog index 5701c321..6ff8df7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/Makefile.generic b/Makefile.generic index e972ac9a..7b7eb19f 100644 --- a/Makefile.generic +++ b/Makefile.generic @@ -1180,11 +1180,11 @@ define INFOPLIST CFBundlePackageType APPL CFBundleShortVersionString -1.3.13 +1.3.14 CFBundleSignature ???? CFBundleVersion -1.3.13 +1.3.14 CGDisableCoalescedUpdates LSMinimumSystemVersion diff --git a/configure.ac b/configure.ac index 9e5babbb..39bd911d 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/desktop/moe.clover.mm3d.metainfo.xml b/desktop/moe.clover.mm3d.metainfo.xml index 8a575b74..5afeaa22 100644 --- a/desktop/moe.clover.mm3d.metainfo.xml +++ b/desktop/moe.clover.mm3d.metainfo.xml @@ -37,6 +37,7 @@ mm3d + diff --git a/doc/html/template.htm b/doc/html/template.htm index 17160e0a..eb28b1b0 100644 --- a/doc/html/template.htm +++ b/doc/html/template.htm @@ -24,7 +24,7 @@ Copyright © 2004-2008, Kevin Worcester
-Copyright © 2015-2021, Zack Middleton +Copyright © 2015-2023, Zack Middleton diff --git a/mm3d-win32-installer.nsi b/mm3d-win32-installer.nsi index 4fb0ecc2..e4ad013f 100644 --- a/mm3d-win32-installer.nsi +++ b/mm3d-win32-installer.nsi @@ -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" diff --git a/src/implui/aboutwin.cc b/src/implui/aboutwin.cc index 65d30ba4..e7dcec8d 100644 --- a/src/implui/aboutwin.cc +++ b/src/implui/aboutwin.cc @@ -33,7 +33,7 @@ "

" VERSION_STRING "


" \ "https://clover.moe/mm3d

" \ "Copyright © 2004-2008, Kevin Worcester
" \ - "Copyright © 2009-2021 Zack Middleton

" \ + "Copyright © 2009-2023 Zack Middleton

" \ "" AboutWin::AboutWin( QWidget * parent ) diff --git a/src/mm3dcore/version.h b/src/mm3dcore/version.h index 4a5050ed..b1bfa307 100644 --- a/src/mm3dcore/version.h +++ b/src/mm3dcore/version.h @@ -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) diff --git a/src/win_resource.rc b/src/win_resource.rc index c2bc86f5..9f8b260d 100644 --- a/src/win_resource.rc +++ b/src/win_resource.rc @@ -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 @@ -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