Skip to content

Commit

Permalink
Almost final commit before release! v0.88-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
etotheipi committed Apr 18, 2013
1 parent 8910b97 commit 3e5c87e
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 17 deletions.
8 changes: 7 additions & 1 deletion ArmoryQt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3545,7 +3545,11 @@ def GetDashStateText(self, mgmtMode, state):
return ( \
'For more information about Armory, and even Bitcoin itself, you '
'should visit the <a href="https://bitcoinarmory.com/index.php/fr'
'equently-asked-questions">frequently asked questions page</a>.'
'equently-asked-questions">frequently asked questions page</a>. If '
'you are experiencing problems using this software, please visit the '
'<a href="https://bitcoinarmory.com/troubleshooting-armory/">Armory '
'troubleshooting webpage</a>. It will be updated frequently with '
'solutions to common problems. '
'<br><br>'
'<b><u>IMPORTANT:</u></b> Make a backup of your wallet(s)! Paper '
'backups protect you <i>forever</i> against forgotten passwords, '
Expand Down Expand Up @@ -4081,6 +4085,7 @@ def setBtnFrameVisible(b, descr=''):
descr2 += self.GetDashStateText('Auto', 'NewUserInfo')
else:
descr1 += self.GetDashStateText('Auto', 'InitializingDoneSoon')
descr2 += self.GetDashStateText('Auto', 'NewUserInfo')

setBtnRowVisible(DASHBTNS.Settings, True)
setBtnFrameVisible(True, \
Expand Down Expand Up @@ -4197,6 +4202,7 @@ def setBtnFrameVisible(b, descr=''):
else:
descr = self.GetDashStateText('User','ScanWithWallets')

descr += self.GetDashStateText('Auto', 'NewUserInfo')
descr += self.GetDashFunctionalityText('Scanning') + '<br>'
self.lblDashDescr1.setText(descr)
self.lblDashDescr2.setText('')
Expand Down
2 changes: 1 addition & 1 deletion armoryengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


# Version Numbers
BTCARMORY_VERSION = (0, 87, 99, 0) # (Major, Minor, Bugfix, AutoIncrement)
BTCARMORY_VERSION = (0, 88, 0, 0) # (Major, Minor, Bugfix, AutoIncrement)
PYBTCWALLET_VERSION = (1, 35, 0, 0) # (Major, Minor, Bugfix, AutoIncrement)

ARMORY_DONATION_ADDR = '1ArmoryXcfq7TnCSuZa9fQjRYwJ4bkRKfv'
Expand Down
4 changes: 2 additions & 2 deletions qtdialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ def __init__(self, parentDlg=None, parentLbl=None, tiptext=''):
self.setMinimumWidth(150)
self.setWindowFlags(Qt.SplashScreen)

def mouseReleaseEvent(self, ev):
self.accept()
#def mouseReleaseEvent(self, ev):
#self.accept()

def mousePressEvent(self, ev):
self.accept()
Expand Down
67 changes: 54 additions & 13 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,67 @@

#-------------------------------------------------------------------------------
VERSION 0.88
- Windows Users: Please Uninstall Previous Versions!
- Windows Users: PLEASE UNINSTALL PREVIOUS VERSIONS!
The installer fails to completely overwrite previous versions
of Armory and will throw errors when trying to run it. Either
uninstall Armory first, or install this version, then run the
installer again and select "Repair Installation."
of Armory. Either uninstall Armory first, or install this
version, then run the installer again and select "Repair
Installation."

- Auto-Management of Bitcoin Software (with version notification)
This version now requires you to *not* run Bitcoin-Qt in the
background. Armory will run it for you. Modify this behavior
in the "File"->"Settings" menu
This version now requires you to _not_ run Bitcoin-Qt in the
background. Armory will run it for you. You can change its
behavior in the "File"->"Settings" menu, including reverting
to the previous, user-managed method.

- New Troubleshooting Webpage
If you are having trouble with Armory, especially the new
version that has auto-management of Bitcoin software, visit
https://bitcoinarmory.com/troubleshooting-armory/

- Mac/OSX Version Now Available!
Thanks to forum users, "higuys" and "Red Emerald," we now have
a working prototype *.dmg file for OSX. It does not work on
all OSX systems, but should work on newer ones. We are working
to expand compatibility with more versions of OSX. NOTE: the
new auto-management of Bitcoin software is disabled in OSX due
to some issues with the way that software is packaged.

- Signed Windows Installers
Native code signing with Class 2 SSL certificate. Installer
will now say "Verified Publisher: Alan Reiner" when you
install in Windows

Native code signing using offline, Class 2 SSL certificate.
Installer will now say "Verified Publisher: Alan Reiner" when
you install in Windows. GPG-signed hash files will still be
made available, using offline GPG key: 0x98832223

- Unicode/Non-ASCII Issues Resolved
Armory does not yet have full unicode support, but some
features were upgraded to accommodate non-English(US)
systems better.

- Clickable "(?)" Objects
This version now requires you to *not* run Bitcoin-Qt in the
background. Armory will run it for you. Modify this behavior
The blue "(?)" objects in the interface are mouse-over tooltips
that give you more information when you hover over them. They
have now been updated to display the tooltips when you click on
them.

- Passphrase Entry: On-Screen Keyboard
You can now use your mouse with an on-screen keyboard to enter
your passphrase when unlocking a wallet. This is convenient
for those that prefer point-and-click, and also has potential
to mitigate simple keyloggers.

- Fragmented Backup Scripts (Expert Only)
Two new scripts added to "extras" directory: "frag_wallet.py"
and "unfrag_wallet.py". These scripts can be used to split
your wallet into pieces/fragments using Shamir's Secret Sharing.
This is only available from the command line, but will be
integrated into the application itself in the next release.
The new interface will include restoring fragmented backups
created with these scripts.

- New Ubuntu 10.04 offline bundles (32- and 64-bit)
Recompiled offline bundle with some usability updates, as well
as a 64-bit version. Both are still compiled for Ubuntu 10.04
since that version has a very wide hardware compatibility set.


#-------------------------------------------------------------------------------
Expand Down

0 comments on commit 3e5c87e

Please sign in to comment.