From bda47c7efa20ee689298e38585064e44c64dd71d Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Wed, 24 Mar 2021 22:28:48 -0400 Subject: [PATCH] v0.3.0 --- CHANGELOG.md | 10 ++++++++++ src/build/settings/base.json | 2 +- src/slice/__main__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6920e53..ab360ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v0.3.0 + +- add Windows installer support to releases +- add Inno Setup Windows installer configuration +- fix: axis value editor table vertical header spacing for all caps axis tags, the axis tag column should now automatically resize to the max width axis tag in the list +- fix: set the window icon to the Slice icon on Windows views +- fix: set the About dialog title and icon on Windows views +- fix: update image conversion approach to maintain alpha transparency in Windows application icon + + ## v0.2.1 - update FontNameModel model flags definitions based on qabstractitemmodel.cpp fails diff --git a/src/build/settings/base.json b/src/build/settings/base.json index aaf978b..d1212cc 100644 --- a/src/build/settings/base.json +++ b/src/build/settings/base.json @@ -1,6 +1,6 @@ { "app_name": "Slice", - "version": "0.2.1", + "version": "0.3.0", "author": "Christopher Simpkins", "main_module": "src/run.py", "license": "GNU General Public License Version 3" diff --git a/src/slice/__main__.py b/src/slice/__main__.py index 3a3872d..a7c57c9 100644 --- a/src/slice/__main__.py +++ b/src/slice/__main__.py @@ -58,7 +58,7 @@ ) from .ui.widgets import DragDropLineEdit -__VERSION__ = "0.2.1" +__VERSION__ = "0.3.0" class MainWindow(QMainWindow):