Skip to content

Commit f4954b7

Browse files
committed
Fix default font on macOS; v11.1.2
1 parent 8592988 commit f4954b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

SLIP-39-macOS.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ app = BUNDLE(
5555
exe,
5656
name='SLIP-39.app',
5757
icon='images/SLIP-39.icns',
58-
version='11.1.1',
58+
version='11.1.2',
5959
info_plist={
6060
'NSPrincipalClass': 'NSApplication',
6161
'NSAppleScriptEnabled': False,
6262
'LSBackgroundOnly': False,
6363
'NSRequiresAquaSystemAppearance': 'No',
6464
'CFBundleSupportedPlatforms': ['MacOSX'],
6565
'CFBundleIdentifier': 'ca.kundert.perry.SLIP39',
66-
'CFBundleVersion':'11.1.1',
66+
'CFBundleVersion':'11.1.2',
6767
'CFBundlePackageType':'APPL',
6868
'LSApplicationCategoryType':'public.app-category.utilities',
6969
'LSMinimumSystemVersion':'10.15',

slip39/gui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def theme_color( thing, theme=None ):
9595
# root.destroy()
9696
# print( '\n'.join( FontList ))
9797
if sys.platform == 'darwin':
98-
font_name = 'Source Code Pro'
98+
font_name = 'Andale Mono'
9999
elif sys.platform == 'win32':
100100
font_name = 'Consolas'
101101
else: # assume linux

slip39/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ( 11, 1, 1 )
1+
__version_info__ = ( 11, 1, 2 )
22
__version__ = '.'.join( map( str, __version_info__ ))

0 commit comments

Comments
 (0)