bump some version numbers to 1.4

I may have miss a couple of them.
This commit is contained in:
Gregory Hainaut 2015-12-27 18:04:47 +01:00
parent ac0d7f74cf
commit aca2f1434b
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ EOF
# Default value # Default value
GIT_SHA1=0; GIT_SHA1=0;
BRANCH="master" BRANCH="1.4.x"
while [ -n "$1" ]; do while [ -n "$1" ]; do
case $1 in case $1 in
-help|-h ) help;shift 1;; -help|-h ) help;shift 1;;

View File

@ -21,7 +21,7 @@ set -e
###################################################################### ######################################################################
# Script configuration # Script configuration
###################################################################### ######################################################################
VERSION=1.3.0 VERSION=1.4.0
COPYRIGHT="PCSX2 Dev Team" COPYRIGHT="PCSX2 Dev Team"
BUG_MAIL="https://github.com/PCSX2/pcsx2/issues" BUG_MAIL="https://github.com/PCSX2/pcsx2/issues"

View File

@ -16,9 +16,9 @@
#pragma once #pragma once
static const int PCSX2_VersionHi = 1; static const int PCSX2_VersionHi = 1;
static const int PCSX2_VersionMid = 3; static const int PCSX2_VersionMid = 4;
static const int PCSX2_VersionLo = 1; static const int PCSX2_VersionLo = 0;
static const bool PCSX2_isReleaseVersion = 0; static const bool PCSX2_isReleaseVersion = 1;
class SysCoreThread; class SysCoreThread;