Skip to content

Commit

Permalink
Updated versions.txt; Merging into master will notify users
Browse files Browse the repository at this point in the history
  • Loading branch information
etotheipi committed Nov 30, 2012
1 parent 83807d7 commit 2901d43
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ArmoryQt.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def createLedg():
self.connect(btnSendBtc, SIGNAL('clicked()'), self.clickSendBitcoins)
self.connect(btnOfflineTx,SIGNAL('clicked()'), self.execOfflineTx)

verStr = 'Armory %s-alpha+ / %s User' % (getVersionString(BTCARMORY_VERSION), \
verStr = 'Armory %s-beta / %s User' % (getVersionString(BTCARMORY_VERSION), \
UserModeStr(self.usermode))
lblInfo = QRichLabel(verStr, doWrap=False)
lblInfo.setFont(GETFONT('var',10))
Expand Down
2 changes: 1 addition & 1 deletion armoryengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


# Version Numbers
BTCARMORY_VERSION = (0, 84, 5, 0) # (Major, Minor, Minor++, even-more-minor)
BTCARMORY_VERSION = (0, 85, 0, 0) # (Major, Minor, Minor++, even-more-minor)
PYBTCWALLET_VERSION = (1, 35, 0, 0) # (Major, Minor, Minor++, even-more-minor)

ARMORY_DONATION_ADDR = '1ArmoryXcfq7TnCSuZa9fQjRYwJ4bkRKfv'
Expand Down
45 changes: 45 additions & 0 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,51 @@
# anyway...


#-------------------------------------------------------------------------------
VERSION 0.85

- Official Beta Release!

- Multi-threaded, no-wait loading!
Armory now loads immediately and does all blockchain scanning and
rescanning in the background. All wallet management operations are
available while you wait!

- Manual "bitcoin:" URL entry.
If clicking on "bitcoin:" links doesn't work on your OS, you can
right-click and copy the address string. There is now a button on
the "Send Bitcoins" window that gives you a space to copy the URL
and prefill the transaction for you.

- Preparation for Bitcoin-Qt 0.8+
Bitcoin-Qt 0.8+ will change up the datadir file organization that
Armory depends on. Added code to auto-detect this condition and
switch to it automatically.

- Bugfix: No more missing zero-confirmation transactions
A network bug was interfering with the receipt of nearly 50% of all
incoming, zero-confirmation transactions. They would only appear
once they had made it into the blockchain. Armory should now see
100% of such transactions.

- Restore Encrypted Backup
You can now restore paper backups directly to an encrypted wallet file.

- Manual Keypool Extension (Expert mode only)
Wallet properties now tells you how many addresses have been generated
for your wallet, and lets you generate more, in case a wallet recovery
operation did not find all your coins. Alternatively, there is a new
option, "--keypool=X", to specify how many addresses Armory should
watch beyond your last used address in each wallet.

- *Broke OSX paper backup printing
The new multi-threading code has highlighted some bugs in the PyQt
implementation that ships with with homebrew on OSX. So far, no
workaround has been found, and users are encouraged to manually write
down information on your paper backup.



#-------------------------------------------------------------------------------
VERSION 0.82.2

Expand Down

0 comments on commit 2901d43

Please sign in to comment.