Skip to content

Commit

Permalink
OK v4.0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oktoshi committed Nov 30, 2016
1 parent 2a6e029 commit dde1cc3
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
10 changes: 10 additions & 0 deletions linux-desktop/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Okcash Desktop files and pixmaps for Linux


* pre-req: "okcash" should be cp to /usr/local/bin

## copy the files to the system:

sudo cp okcash.desktop /usr/share/applications

sudo cp okcash.png /usr/share/pixmaps
10 changes: 10 additions & 0 deletions linux-desktop/okcash.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[Desktop Entry]
Encoding=UTF-8
Version=4.0.0.1
Name=OKCash Core Client
Comment=OKCash Graphical UI
Categories=Network;
Exec=/usr/local/bin/okcash
Icon=/usr/share/pixmaps/okcash.png
Terminal=false
Type=Application
Binary file added linux-desktop/okcash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion okcash.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = okcash
VERSION = 4.0.0.1
VERSION = 4.0.0.2
INCLUDEPATH += src src/json src/qt
DEFINES += BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
CONFIG += no_include_pwd
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 4
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 2

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ static const int PROTOCOL_VERSION = 60021;
static const int INIT_PROTO_VERSION = 209;

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 60020;
static const int MIN_PEER_PROTO_VERSION = 60021;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
static const int CADDR_TIME_VERSION = 31402;

static const int MIN_THIN_VERSION = 60020;
static const int MIN_MBLK_VERSION = 60020;
static const int MIN_THIN_VERSION = 60021;
static const int MIN_MBLK_VERSION = 60021;

// BIP 0031, pong message, is enabled for all versions AFTER this one
static const int BIP0031_VERSION = 60000;
Expand Down

0 comments on commit dde1cc3

Please sign in to comment.