pcsx2: Bump version number to 1.6.0.

Bump version number to 1.6,
set it as release build,
update debian packger to use 1.6.x branch instead of master.
This commit is contained in:
lightningterror 2020-02-10 20:15:08 +01:00
parent 9778dde77a
commit 876c3bc720
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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