Merge pull request #1022 from Diapolo/fix#1020
authorPieter Wuille <pieter.wuille@gmail.com>
Mon, 2 Apr 2012 14:08:14 +0000 (07:08 -0700)
committerPieter Wuille <pieter.wuille@gmail.com>
Mon, 2 Apr 2012 14:08:14 +0000 (07:08 -0700)
fix for #1020

contrib/gitian-downloader/linux-download-config
contrib/gitian-downloader/sipa-key.pgp
contrib/gitian-downloader/win32-download-config
share/setup.nsi
src/bignum.h
src/main.h
src/netbase.h
src/qt/bitcoingui.cpp

index 36f5f68..9a570a1 100644 (file)
@@ -17,7 +17,7 @@ signers:
     key: devrandom
   D762373D24904A3E42F33B08B9A408E71DAAC974:
     weight: 40
-    name: Sipa
+    name: "Pieter Wuille"
     key: sipa
   77E72E69DA7EE0A148C06B21B34821D4944DE5F7:
     weight: 40
index 086c9eb..a52a5de 100644 (file)
Binary files a/contrib/gitian-downloader/sipa-key.pgp and b/contrib/gitian-downloader/sipa-key.pgp differ
index b1e1c73..3974d61 100644 (file)
@@ -17,7 +17,7 @@ signers:
     key: devrandom
   D762373D24904A3E42F33B08B9A408E71DAAC974:
     weight: 40
-    name: Sipa
+    name: "Pieter Wuille"
     key: sipa
   77E72E69DA7EE0A148C06B21B34821D4944DE5F7:
     weight: 40
index cc19daf..4dc2ad5 100644 (file)
@@ -51,7 +51,7 @@ CRCCheck on
 XPStyle on\r
 BrandingText " "\r
 ShowInstDetails show\r
-VIProductVersion 0.6.0.6\r
+VIProductVersion 0.6.0.99\r
 VIAddVersionKey ProductName Bitcoin\r
 VIAddVersionKey ProductVersion "${VERSION}"\r
 VIAddVersionKey CompanyName "${COMPANY}"\r
index c7c2ff1..95e2197 100644 (file)
@@ -47,7 +47,7 @@ public:
 };
 
 
-/** C++ wrapper for BIGNUM (OpenSSl bignum) */
+/** C++ wrapper for BIGNUM (OpenSSL bignum) */
 class CBigNum : public BIGNUM
 {
 public:
index 18d5dbd..16159e1 100644 (file)
@@ -26,7 +26,7 @@ class CInv;
 class CRequestTracker;
 class CNode;
 
-static const int CLIENT_VERSION = 60006;
+static const int CLIENT_VERSION = 60099;
 static const bool VERSION_IS_BETA = true;
 extern const std::string CLIENT_NAME;
 
index b5f9d5f..43189c3 100644 (file)
@@ -81,7 +81,7 @@ class CNetAddr
             )
 };
 
-/** A combnation of a network address (CNetAddr) and a (TCP) port */
+/** A combination of a network address (CNetAddr) and a (TCP) port */
 class CService : public CNetAddr
 {
     protected:
index 7bce128..9169631 100644 (file)
@@ -376,7 +376,7 @@ void BitcoinGUI::createTrayIcon()
     trayIcon = new QSystemTrayIcon(this);
     trayIconMenu = new QMenu(this);
     trayIcon->setContextMenu(trayIconMenu);
-    trayIcon->setToolTip("Bitcoin client");
+    trayIcon->setToolTip(tr("Bitcoin client"));
     trayIcon->setIcon(QIcon(":/icons/toolbar"));
     connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
             this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason)));