Skip to content

Commit 793b164

Browse files
committed
v0.3.1
1 parent b5b4364 commit 793b164

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

CHANGELOG.md

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

3+
## v0.3.1
4+
5+
- minor patch for Homebrew distribution testing
6+
- minor patch for macOS code sign testing
7+
38
## v0.3.0
49

510
- add Windows installer support to releases

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

src/slice/__main__.py

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

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

6363

6464
class MainWindow(QMainWindow):
@@ -231,9 +231,7 @@ def setUIMainLayout(self):
231231
#
232232

233233
def setUIAppIconTitle(self):
234-
monoton_id = QFontDatabase.addApplicationFont(
235-
":/font/Monoton-Regular.subset.ttf"
236-
)
234+
monoton_id = QFontDatabase.addApplicationFont(":/font/Monoton-Regular.subset.ttf")
237235
font_family = QFontDatabase.applicationFontFamilies(monoton_id)[0]
238236
monoton = QFont(font_family)
239237
outerHBox = QHBoxLayout()
@@ -520,9 +518,7 @@ def menu_clicked_source(self):
520518
QDesktopServices.openUrl(QUrl("https://github.com/source-foundry/Slice"))
521519

522520
def menu_clicked_updatecheck(self):
523-
QDesktopServices.openUrl(
524-
QUrl("https://github.com/source-foundry/Slice/releases")
525-
)
521+
QDesktopServices.openUrl(QUrl("https://github.com/source-foundry/Slice/releases"))
526522

527523
#
528524
# Button click events
@@ -675,9 +671,7 @@ def load_font(self, filepath):
675671
axis_value_table_was_set = self.fvar_table_model.load_font(self.font_model)
676672

677673
self.fvar_table_view.resizeColumnToContents(0)
678-
self.fvar_table_view.verticalHeader().resizeSections(
679-
QHeaderView.ResizeToContents
680-
)
674+
self.fvar_table_view.verticalHeader().resizeSections(QHeaderView.ResizeToContents)
681675

682676
# uncheck all bit flag setting check boxes
683677
self.os2_fsselection_bit_0_checkbox.setChecked(False)

0 commit comments

Comments
 (0)