Skip to content

Commit

Permalink
v8.2.1; restore Paper Wallet support on Windows GUI .msi installer
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkundert committed Mar 10, 2022
1 parent dc4991e commit 1c94c66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SLIP-39-macOS.spec
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ coll = COLLECT(exe,
app = BUNDLE(coll,
name='SLIP-39.app',
icon='images/SLIP-39.icns',
version='8.2.0',
version='8.2.1',
info_plist={
'CFBundleVersion':'8.2.0',
'CFBundleVersion':'8.2.1',
'CFBundlePackageType':'APPL',
'LSApplicationCategoryType':'public.app-category.finance',
'LSMinimumSystemVersion':'10.15.0',
Expand Down
2 changes: 1 addition & 1 deletion slip39/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def paper_wallet_available():
"""Determine if encrypted BIP-38 and Ethereum JSON Paper Wallets are available."""
available = AES and scrypt and eth_account
if not available:
log.warning( f"Paper Wallets unavalailable: {', '.join( paper_wallet_issues )}" )
log.warning( f"Paper Wallets unavailable; perhaps run: 'python3 -m pip install slip39[gui,wallet]': {', '.join( paper_wallet_issues )}" )
return available


Expand Down
2 changes: 1 addition & 1 deletion slip39/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ( 8, 2, 0 )
__version_info__ = ( 8, 2, 1 )
__version__ = '.'.join( map( str, __version_info__ ))

0 comments on commit 1c94c66

Please sign in to comment.