From 7cfa7fc419fb9f96c03ad5047b5b4ffa313d4e27 Mon Sep 17 00:00:00 2001 From: Ivan Mogilko Date: Sun, 2 Jul 2023 13:04:38 +0300 Subject: [PATCH] Updated build version (3.6.0.50) --- CMakeLists.txt | 2 +- Changes.txt | 20 ++++++++++++++++++++ Common/core/def_version.h | 4 ++-- Editor/AGS.Editor/app.manifest | 2 +- Editor/AGS.Types/Properties/AssemblyInfo.cs | 4 ++-- version.json | 6 +++--- 6 files changed, 29 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21702beb8a5..e2445d87b1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/CMake/cxx_fla set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") project(AGS - VERSION 3.6.0.49 + VERSION 3.6.0.50 LANGUAGES CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake") diff --git a/Changes.txt b/Changes.txt index 3d770a92006..f3a0344afc1 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,5 +1,25 @@ REVISION HISTORY ================ +VERSION 3.6.0 - Patch 3, July 2023 + +Editor: + - Don't error when loading a room file which has unsupported number of events, + instead these will be cut out. This may let e.g. use room templates from newer + versions of AGS. + - Sprite's default property is changed from deprecated Resolution setting to SourceFile. + - Fixed full spritefile recreation would write duplicate sprites into the spritefile, + if game project (Game.agf file) contained multiple sprites with same ID for any reason + (for example, if they were added by manually editing Game.agf). + - Fixed importing SCI fonts with >128 chars. + - Fixed font preview did not properly display characters with indexes 128-255. + +Engine: + - Fixed "noloopcheck" script function modifier was not handled correctly sometimes. + - Fixed a button with inventory placeholder did not update immediately when the active + inventory is set. + - Fixed textual GUIs were not redrawn immediately after a call to SetGameOption(OPT_RIGHTTOLEFT). + + VERSION 3.6.0 - Patch 2, June 2023 Common: diff --git a/Common/core/def_version.h b/Common/core/def_version.h index c0a87e62b11..97dd51d78c0 100644 --- a/Common/core/def_version.h +++ b/Common/core/def_version.h @@ -1,9 +1,9 @@ #ifndef __AGS_CN_CORE__DEFVERSION_H #define __AGS_CN_CORE__DEFVERSION_H -#define ACI_VERSION_STR "3.6.0.49" +#define ACI_VERSION_STR "3.6.0.50" #if defined (RC_INVOKED) // for MSVC resource compiler -#define ACI_VERSION_MSRC_DEF 3,6,0,49 +#define ACI_VERSION_MSRC_DEF 3,6,0,50 #endif #define SPECIAL_VERSION "" diff --git a/Editor/AGS.Editor/app.manifest b/Editor/AGS.Editor/app.manifest index f7ae2705f0e..ed39a219d14 100644 --- a/Editor/AGS.Editor/app.manifest +++ b/Editor/AGS.Editor/app.manifest @@ -1,6 +1,6 @@  - + diff --git a/Editor/AGS.Types/Properties/AssemblyInfo.cs b/Editor/AGS.Types/Properties/AssemblyInfo.cs index 8effe4deec9..69d583812b1 100644 --- a/Editor/AGS.Types/Properties/AssemblyInfo.cs +++ b/Editor/AGS.Types/Properties/AssemblyInfo.cs @@ -22,9 +22,9 @@ namespace AGS.Types public class Version { public static readonly bool IS_BETA_VERSION = false; - public const string AGS_EDITOR_DATE = "June 2023"; + public const string AGS_EDITOR_DATE = "July 2023"; public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.0"; - public const string AGS_EDITOR_VERSION = "3.6.0.49"; + public const string AGS_EDITOR_VERSION = "3.6.0.50"; public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2023 others."; } } diff --git a/version.json b/version.json index 2182753c89b..5091b6679e5 100644 --- a/version.json +++ b/version.json @@ -1,9 +1,9 @@ { - "version": "3.6.0.49", + "version": "3.6.0.50", "versionFriendly": "3.6.0", - "versionSp": "P2", + "versionSp": "P3", "versionYear": "2023", - "versionMonth": "June", + "versionMonth": "July", "versionIsBeta": "false", "appID": "a4d6de0f-18b0-4aae-9338-86a333563b98" } \ No newline at end of file