Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bda47c7

Browse files
committedMar 25, 2021
v0.3.0
1 parent 8e322e3 commit bda47c7

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed
 

‎CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.3.0
4+
5+
- add Windows installer support to releases
6+
- add Inno Setup Windows installer configuration
7+
- 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
8+
- fix: set the window icon to the Slice icon on Windows views
9+
- fix: set the About dialog title and icon on Windows views
10+
- fix: update image conversion approach to maintain alpha transparency in Windows application icon
11+
12+
313
## v0.2.1
414

515
- update FontNameModel model flags definitions based on qabstractitemmodel.cpp fails

‎src/build/settings/base.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app_name": "Slice",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"author": "Christopher Simpkins",
55
"main_module": "src/run.py",
66
"license": "GNU General Public License Version 3"

‎src/slice/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
)
5959
from .ui.widgets import DragDropLineEdit
6060

61-
__VERSION__ = "0.2.1"
61+
__VERSION__ = "0.3.0"
6262

6363

6464
class MainWindow(QMainWindow):

0 commit comments

Comments
 (0)
Please sign in to comment.