Skip to content

Commit

Permalink
Merge pull request #262 from NeblioTeam/mac_dark
Browse files Browse the repository at this point in the history
Fix Mac Dark Mode, bump version
  • Loading branch information
nebliodev authored Jan 23, 2020
2 parents 4a83bdd + 210a6a3 commit b808127
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wallet/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 3
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0

// Converts the parameter X to a string after macro replacement on X has been performed.
Expand Down
28 changes: 28 additions & 0 deletions wallet/qt/res/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>neblio-Qt</string>
<key>CFBundleGetInfoString</key>
<string>Created by Qt/QMake</string>
<key>CFBundleIconFile</key>
<string>bitcoin.icns</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.neblio-Qt</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>LSMinimumSystemVersion</key>
<string>10.13</string>
<key>NOTE</key>
<string>This file was generated by Qt/QMake.</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>NSRequiresAquaSystemAppearance</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion wallet/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static const int DATABASE_VERSION = 70515;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 60300;
static const int PROTOCOL_VERSION = 60301;

// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand Down
4 changes: 4 additions & 0 deletions wallet/wallet.pro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ NEBLIO_ROOT = $${PWD}/../

VPATH += $${NEBLIO_ROOT}/wallet/ $${NEBLIO_ROOT}/wallet/json $${NEBLIO_ROOT}/wallet/qt

mac {
QMAKE_INFO_PLIST = $${NEBLIO_ROOT}/wallet/qt/res/Info.plist
}


# use: qmake "NEBLIO_REST=1"
contains(NEBLIO_REST, 1) {
Expand Down

0 comments on commit b808127

Please sign in to comment.