From 4632714880b02e7894d99bb17959c8174a506c1c Mon Sep 17 00:00:00 2001 From: Ivan Mogilko Date: Thu, 28 Dec 2023 17:43:34 +0300 Subject: [PATCH] Updated build version (3.6.1.15) --- CMakeLists.txt | 2 +- Changes.txt | 6 +++++- Common/core/def_version.h | 4 ++-- Editor/AGS.Editor/app.manifest | 2 +- Editor/AGS.Types/Properties/AssemblyInfo.cs | 2 +- version.json | 4 ++-- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 389cf9eb37..5310ce2a41 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.14 + VERSION 3.6.1.15 LANGUAGES CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake") diff --git a/Changes.txt b/Changes.txt index 2b7f7bb0e8..73c582e8ae 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,6 @@ REVISION HISTORY ================ -VERSION 3.6.1 - Beta, November 2023 +VERSION 3.6.1 - Beta, December 2023 Common features: - Implemented Deflate compression option for sprites. @@ -80,6 +80,7 @@ Editor: - Fixed sprites may get wrong transparency settings after "Crop sprite edges" operation. - Fixed Project Explorer's folders collapsing after certain user actions, such as dragging items or renaming things. + - Fixed a rare exception when scrolling the room in the editor. - Fixed deleting collapsed "region" in script would sometimes lead to portion of the script undeleted but staying invisible. - (Possibly) Fixed a "Index out of range" exception in Script editor, related to the @@ -160,6 +161,8 @@ Engine: read from Overlay.Graphic. This lets find out their sizes using Game.SpriteWidth/SpriteHeight and optionally draw them somewhere using DrawingSurface.DrawImage. - Ensure all the script API is now correctly available for the plugins. + - Engine will now safeguard plugin's reading and writing of game saves, so that any mistakes + done by plugins won't affect other parts of a save. - Engine will disable vsync in a "infinite fps" mode, because vsync prevents getting more fps. - Engine will force any in-game debug messages to be displayed in standard message boxes, disregarding game's "Display all messages as speech" option. @@ -170,6 +173,7 @@ Engine: - Fixed Characters may be seemingly "walking in place" for some time when arriving at destination. - Fixed Display and Say commands treating the second met "&" sign as a voice-over token too (they must only check the first one in string). + - Fixed PlayMP3File() function limiting filename argument by an arbitrary number of characters. - Fixed speechlines were adjusting their Y position while trying to not overlap GUIs even when these GUIs are completely offscreen. - Fixed first Sierra-style speechline in a sequence was adjusting its Y position without need diff --git a/Common/core/def_version.h b/Common/core/def_version.h index 9a963b6278..2e3eab7818 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.14" +#define ACI_VERSION_STR "3.6.1.15" #if defined (RC_INVOKED) // for MSVC resource compiler -#define ACI_VERSION_MSRC_DEF 3,6,1,14 +#define ACI_VERSION_MSRC_DEF 3,6,1,15 #endif #define SPECIAL_VERSION "" diff --git a/Editor/AGS.Editor/app.manifest b/Editor/AGS.Editor/app.manifest index 3f6b1d45a2..24ccd25dba 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 2fca7b0b84..912fb7dd5a 100644 --- a/Editor/AGS.Types/Properties/AssemblyInfo.cs +++ b/Editor/AGS.Types/Properties/AssemblyInfo.cs @@ -24,7 +24,7 @@ public class Version public static readonly bool IS_BETA_VERSION = true; public const string AGS_EDITOR_DATE = "December 2023"; public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.1"; - public const string AGS_EDITOR_VERSION = "3.6.1.14"; + public const string AGS_EDITOR_VERSION = "3.6.1.15"; public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2023 others."; } } diff --git a/version.json b/version.json index 9805c13269..1a4b807cf9 100644 --- a/version.json +++ b/version.json @@ -1,7 +1,7 @@ { - "version": "3.6.1.14", + "version": "3.6.1.15", "versionFriendly": "3.6.1", - "versionSp": "Beta15", + "versionSp": "Beta16", "versionYear": "2023", "versionMonth": "December", "versionIsBeta": "true",