File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.2.1
4
+
5
+ - update FontNameModel model flags definitions based on qabstractitemmodel.cpp fails
6
+
3
7
## v0.2.0
4
8
5
9
- 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
8
12
9
13
## v0.1.3
10
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"app_name" : " Slice" ,
3
- "version" : " 0.2.0 " ,
3
+ "version" : " 0.2.1 " ,
4
4
"author" : " Christopher Simpkins" ,
5
5
"main_module" : " src/run.py" ,
6
6
"license" : " GNU General Public License Version 3"
Original file line number Diff line number Diff line change 56
56
)
57
57
from .ui .widgets import DragDropLineEdit
58
58
59
- __VERSION__ = "0.2.0 "
59
+ __VERSION__ = "0.2.1 "
60
60
61
61
62
62
class MainWindow (QMainWindow ):
@@ -228,9 +228,7 @@ def setUIMainLayout(self):
228
228
#
229
229
230
230
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" )
234
232
font_family = QFontDatabase .applicationFontFamilies (monoton_id )[0 ]
235
233
monoton = QFont (font_family )
236
234
outerHBox = QHBoxLayout ()
@@ -517,9 +515,7 @@ def menu_clicked_source(self):
517
515
QDesktopServices .openUrl (QUrl ("https://github.com/source-foundry/Slice" ))
518
516
519
517
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" ))
523
519
524
520
#
525
521
# Button click events
You can’t perform that action at this time.
0 commit comments