Compare commits

...

3 Commits

Author SHA1 Message Date
lightningterror
876c3bc720 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.
2020-03-23 00:19:27 +01:00
lightningterror
9778dde77a pcsx2-tas: Disable TAS functionality for 1.6 stable release.
Disable TAS on release builds, threading issue maybe? It hangs the emu.
Linux always hangs, Windows far less but it's still an issue.
2020-03-23 00:19:27 +01:00
lightningterror
be5fafdd2d config: Adjust portable.ini runwizard for 1.6 release.
Change the runwizard value to 1.
2020-03-23 00:19:27 +01:00
5 changed files with 9 additions and 5 deletions

View File

@@ -1 +1 @@
RunWizard=0
RunWizard=1

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

@@ -17,6 +17,10 @@
#include "x86emitter/tools.h"
// Disable TAS on release builds, threading issue maybe? It hangs the emu.
// Linux always hangs, Windows far less but it's still an issue.
#define DISABLE_RECORDING
class IniInterface;
enum PluginsEnum_t

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;