diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d99ad44605..1f71463f1f5 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 4.00.00.00 + VERSION 4.00.00.01 LANGUAGES CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake") diff --git a/Changes.txt b/Changes.txt index 22f215c4f9e..27a9abdfbde 100644 --- a/Changes.txt +++ b/Changes.txt @@ -7,6 +7,9 @@ Common: Editor and Engine, and is no longer supported. The Editor guarantees to import the projects saved by AGS 3.6.0 and later. The Engine may run games compiled in 3.6.0, but only so long as they don't use any deprecated settings or script commands. + - Completely removed Global Messages and Room Messages. + - Removed built-in support for Game Score, including related game settings and GiveScore + script command. Users are advised to script their own score counter if they need one. - Removed support for '[' as a linebreak character in text. Editor: @@ -85,9 +88,9 @@ Script API: Engine: - Support joystick and gamepad input. + - Implemented more accurate Character movement. The movement direction is now more precise + and diagonal movement speed no longer may exceed MovementSpeed setting. - Animated buttons now display flipped frames correctly. - - (possibly) Fixed characters sometimes keep walking animation for a short time after arriving - to their destination. - Added FLAC support for music, speech and sound effects. - Added "--print-rtti" command line option which prints script RTTI table to the log. (RTTI stands for "runtime type information", and is used for handling of certain advanced @@ -96,7 +99,7 @@ Engine: =================================================================================================== -VERSION 3.6.1 - Beta, October 2023 +VERSION 3.6.1 - Beta, November 2023 Common features: - Implemented Deflate compression option for sprites. @@ -156,6 +159,8 @@ Editor: this property and insert a comment with a warning into the corresponding room's script. This is done because this property is deprecated as is no longer accessible. - Fixed Editor refusing to open a game if one of the translation files is missing. + - Fixed importing GIFs or 8-bit PNGs may loose transparent pixels if source images used + other palette index than 0 for transparency. - Fixed Project Explorer's folders collapsing after certain user actions, such as dragging items or renaming things. - Fixed Editor could miss some of the files when cleaning up old compiled files after the diff --git a/Common/core/def_version.h b/Common/core/def_version.h index d2b6147ee55..e197c7e20d0 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 "4.00.00.00" +#define ACI_VERSION_STR "4.00.00.01" #if defined (RC_INVOKED) // for MSVC resource compiler -#define ACI_VERSION_MSRC_DEF 4,00,00,00 +#define ACI_VERSION_MSRC_DEF 4,00,00,01 #endif #define SPECIAL_VERSION "" diff --git a/Editor/AGS.Editor/app.manifest b/Editor/AGS.Editor/app.manifest index 8640f460fa4..0592dfa9f96 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 b2d71e25f9f..d3f72a78d62 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 = "November 2023"; public const string AGS_EDITOR_FRIENDLY_VERSION = "4.0.0"; - public const string AGS_EDITOR_VERSION = "4.00.00.00"; + public const string AGS_EDITOR_VERSION = "4.00.00.01"; public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2023 others."; } } diff --git a/version.json b/version.json index b57b9fbb302..8c20e819127 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "4.00.00.00", + "version": "4.00.00.01", "versionFriendly": "4.0.0", "versionSp": "Alpha6", "versionYear": "2023",