From 2823b86024bc997b78b5c4c3ebdaa495fa50a577 Mon Sep 17 00:00:00 2001 From: Ivan Mogilko Date: Wed, 1 May 2024 22:04:29 +0300 Subject: [PATCH] Updated build version (3.6.1.24 P2) --- CMakeLists.txt | 2 +- Changes.txt | 17 +++++++++++++++++ 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, 26 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a23b147b3c..848d363dcd 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.1.23 + VERSION 3.6.1.24 LANGUAGES CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake") diff --git a/Changes.txt b/Changes.txt index 8227a5296e..2b3a5b3f70 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,5 +1,22 @@ REVISION HISTORY ================ +VERSION 3.6.1 - Patch 2, May 2024 + +Editor: + - Fixed few potential program errors for "Generate Keystore" in Android preferences. + - Fixed external processes (such as test game runs) were started using ShellExecute, + which could theoretically lead to unintended results. + +Engine: + - Fixed String.Replace crashing the engine if the resulting string exceeds 3000 bytes. + - Fixed releasing a mouse button could cause double "on_event" call (with eEventGUIMouseUp). + - Improved rendering of TTF fonts which have glyph sizes surpassing declared font's height. + This fixes the look of text on gui controls, and automatic outlining on these fonts. + - Fixed a dialog shown with InputBox() function drawing typed text beyond text box'es border. + - Fixed custom dialog options in the "old mode" not triggering redraw when the active + option changes. + + VERSION 3.6.1 - Patch 1, April 2024 Editor: diff --git a/Common/core/def_version.h b/Common/core/def_version.h index d53082f92a..ab33d1a668 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.1.23" +#define ACI_VERSION_STR "3.6.1.24" #if defined (RC_INVOKED) // for MSVC resource compiler -#define ACI_VERSION_MSRC_DEF 3,6,1,23 +#define ACI_VERSION_MSRC_DEF 3,6,1,24 #endif #define SPECIAL_VERSION "" diff --git a/Editor/AGS.Editor/app.manifest b/Editor/AGS.Editor/app.manifest index b24d620cb2..decdc190fe 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 dddd6d8f65..031b9881cb 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 = "April 2024"; + public const string AGS_EDITOR_DATE = "May 2024"; public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.1"; - public const string AGS_EDITOR_VERSION = "3.6.1.23"; + public const string AGS_EDITOR_VERSION = "3.6.1.24"; public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2024 others."; } } diff --git a/version.json b/version.json index debe453462..74ec948390 100644 --- a/version.json +++ b/version.json @@ -1,9 +1,9 @@ { - "version": "3.6.1.23", + "version": "3.6.1.24", "versionFriendly": "3.6.1", - "versionSp": "P1", + "versionSp": "P2", "versionYear": "2024", - "versionMonth": "April", + "versionMonth": "May", "versionIsBeta": "false", "appID": "6fcbc804-4887-4786-bcf6-b0786e1e983d", "licenseLink": "https://opensource.org/license/artistic-2-0/",