Skip to content

Commit 25473fd

Browse files
committed
v0.2.1
1 parent ed7a59f commit 25473fd

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Changelog
22

3+
## v0.2.1
4+
5+
- update FontNameModel model flags definitions based on qabstractitemmodel.cpp fails
6+
37
## v0.2.0
48

59
- update macOS app bundle embedded cPython interpreter to v3.9.2 from v3.8.2
6-
- update SliceBaseTableModel model row and column count approaches based on qabstractitemmodel.cpp checks
7-
- update DesignAxisModel model flags definitions based on qabstractitemmodel.cpp checks
10+
- update SliceBaseTableModel model row and column count approaches based on qabstractitemmodel.cpp fails
11+
- update DesignAxisModel model flags definitions based on qabstractitemmodel.cpp fails
812

913
## v0.1.3
1014

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.0",
3+
"version": "0.2.1",
44
"author": "Christopher Simpkins",
55
"main_module": "src/run.py",
66
"license": "GNU General Public License Version 3"

src/slice/__main__.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
)
5757
from .ui.widgets import DragDropLineEdit
5858

59-
__VERSION__ = "0.2.0"
59+
__VERSION__ = "0.2.1"
6060

6161

6262
class MainWindow(QMainWindow):
@@ -228,9 +228,7 @@ def setUIMainLayout(self):
228228
#
229229

230230
def setUIAppIconTitle(self):
231-
monoton_id = QFontDatabase.addApplicationFont(
232-
":/font/Monoton-Regular.subset.ttf"
233-
)
231+
monoton_id = QFontDatabase.addApplicationFont(":/font/Monoton-Regular.subset.ttf")
234232
font_family = QFontDatabase.applicationFontFamilies(monoton_id)[0]
235233
monoton = QFont(font_family)
236234
outerHBox = QHBoxLayout()
@@ -517,9 +515,7 @@ def menu_clicked_source(self):
517515
QDesktopServices.openUrl(QUrl("https://github.com/source-foundry/Slice"))
518516

519517
def menu_clicked_updatecheck(self):
520-
QDesktopServices.openUrl(
521-
QUrl("https://github.com/source-foundry/Slice/releases")
522-
)
518+
QDesktopServices.openUrl(QUrl("https://github.com/source-foundry/Slice/releases"))
523519

524520
#
525521
# Button click events

0 commit comments

Comments
 (0)