Skip to content

Commit 1c94c66

Browse files
committed
v8.2.1; restore Paper Wallet support on Windows GUI .msi installer
1 parent dc4991e commit 1c94c66

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
@@ -50,9 +50,9 @@ coll = COLLECT(exe,
5050
app = BUNDLE(coll,
5151
name='SLIP-39.app',
5252
icon='images/SLIP-39.icns',
53-
version='8.2.0',
53+
version='8.2.1',
5454
info_plist={
55-
'CFBundleVersion':'8.2.0',
55+
'CFBundleVersion':'8.2.1',
5656
'CFBundlePackageType':'APPL',
5757
'LSApplicationCategoryType':'public.app-category.finance',
5858
'LSMinimumSystemVersion':'10.15.0',

slip39/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def paper_wallet_available():
5858
"""Determine if encrypted BIP-38 and Ethereum JSON Paper Wallets are available."""
5959
available = AES and scrypt and eth_account
6060
if not available:
61-
log.warning( f"Paper Wallets unavalailable: {', '.join( paper_wallet_issues )}" )
61+
log.warning( f"Paper Wallets unavailable; perhaps run: 'python3 -m pip install slip39[gui,wallet]': {', '.join( paper_wallet_issues )}" )
6262
return available
6363

6464

slip39/version.py

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

0 commit comments

Comments
 (0)