diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a67055c236..3d940915957 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.12 + VERSION 4.00.00.13 LANGUAGES CXX C) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake") diff --git a/Changes.txt b/Changes.txt index 9fb00602383..b28f57948c5 100644 --- a/Changes.txt +++ b/Changes.txt @@ -73,6 +73,8 @@ Scripting: - When declaring a pointer to managed struct you may now omit "*" sign. - When writing struct's function's code you may now omit "this" keyword when addressing current struct's member (variable, attribute or function). + - Similarly you may omit struct's name when addressing a static member from within a + struct's member function. - Extender attributes; similar to extender functions, but these define a pair of get_ and set_ functions. - Multi-dimensional regular arrays. They may have any positive number of dimensions. @@ -139,14 +141,16 @@ Script API: Create(), CreateFromBackground(), CreateFromDrawingSurface(), CreateFromExistingSprite() and CreateFromFile(). - Added DrawingSurface.BlendImage() and DrawingSurface.BlendSurface() functions. - - Added readonly DrawingSurface.ColorDepth property. - - Added readonly Game.SpriteColorDepth[] indexed property. + - Added DrawingSurface.ColorDepth readonly property. + - Added Game.RoomCount, RoomNumbers[] and RoomNames[] properties. + - Added Game.SpriteColorDepth[] readonly indexed property. - Added GUI.ScaleX and ScaleY properties, GUI.SetScale() function. - Added GUI.GUIToScreenPoint() and GUI.ScreenToGUIPoint() functions. - Added Overlay.Flip property that lets to set one of the 3 standard flip styles. - Added Overlay.Tint(), SetLightLevel() and RemoveTint() functions, Overlay.HasTint, HasLightLevel, LightLevel, TintBlue, TintGreen, TintRed, TintSaturation, TintLuminance properties, matching Character and Object tinting functionality. + - Added Room.Number and Name properties. - Added Room.PathFinder property that returns a Pathfinder object, searching paths over this room's walkable areas. - Added StringSplitOptions enum, String.Join(), String.Split() and String.Trim() functions. diff --git a/Common/core/def_version.h b/Common/core/def_version.h index f5d264e1092..6f6d6f5f791 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.12" +#define ACI_VERSION_STR "4.00.00.13" #if defined (RC_INVOKED) // for MSVC resource compiler -#define ACI_VERSION_MSRC_DEF 4,00,00,12 +#define ACI_VERSION_MSRC_DEF 4,00,00,13 #endif #define SPECIAL_VERSION "" diff --git a/Editor/AGS.Editor/app.manifest b/Editor/AGS.Editor/app.manifest index b2615d40d4b..35c92210220 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 b71addd084a..9fd52d30012 100644 --- a/Editor/AGS.Types/Properties/AssemblyInfo.cs +++ b/Editor/AGS.Types/Properties/AssemblyInfo.cs @@ -25,7 +25,7 @@ public class Version public static readonly bool IS_BETA_VERSION = true; public const string AGS_EDITOR_DATE = "December 2024"; public const string AGS_EDITOR_FRIENDLY_VERSION = "4.0.0"; - public const string AGS_EDITOR_VERSION = "4.00.00.12"; + public const string AGS_EDITOR_VERSION = "4.00.00.13"; public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2024 others."; public static readonly string AGS_EDITOR_TARGETNAME = IntPtr.Size > 4 ? "64-bit" : "32-bit"; diff --git a/version.json b/version.json index 0ad3b22e555..364544c8032 100644 --- a/version.json +++ b/version.json @@ -1,7 +1,7 @@ { - "version": "4.00.00.12", + "version": "4.00.00.13", "versionFriendly": "4.0.0", - "versionSp": "Alpha16", + "versionSp": "Alpha17", "versionYear": "2024", "versionMonth": "December", "versionIsBeta": "true",