Skip to content

Commit b60cc86

Browse files
committed
Updated build version (4.00.00.13)
1 parent 9707f50 commit b60cc86

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/CMake/cxx_fla
55
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version")
66

77
project(AGS
8-
VERSION 4.00.00.12
8+
VERSION 4.00.00.13
99
LANGUAGES CXX C)
1010

1111
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")

Changes.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ Scripting:
7373
- When declaring a pointer to managed struct you may now omit "*" sign.
7474
- When writing struct's function's code you may now omit "this" keyword when addressing
7575
current struct's member (variable, attribute or function).
76+
- Similarly you may omit struct's name when addressing a static member from within a
77+
struct's member function.
7678
- Extender attributes; similar to extender functions, but these define a pair of
7779
get_ and set_ functions.
7880
- Multi-dimensional regular arrays. They may have any positive number of dimensions.
@@ -139,14 +141,16 @@ Script API:
139141
Create(), CreateFromBackground(), CreateFromDrawingSurface(), CreateFromExistingSprite()
140142
and CreateFromFile().
141143
- Added DrawingSurface.BlendImage() and DrawingSurface.BlendSurface() functions.
142-
- Added readonly DrawingSurface.ColorDepth property.
143-
- Added readonly Game.SpriteColorDepth[] indexed property.
144+
- Added DrawingSurface.ColorDepth readonly property.
145+
- Added Game.RoomCount, RoomNumbers[] and RoomNames[] properties.
146+
- Added Game.SpriteColorDepth[] readonly indexed property.
144147
- Added GUI.ScaleX and ScaleY properties, GUI.SetScale() function.
145148
- Added GUI.GUIToScreenPoint() and GUI.ScreenToGUIPoint() functions.
146149
- Added Overlay.Flip property that lets to set one of the 3 standard flip styles.
147150
- Added Overlay.Tint(), SetLightLevel() and RemoveTint() functions, Overlay.HasTint,
148151
HasLightLevel, LightLevel, TintBlue, TintGreen, TintRed, TintSaturation, TintLuminance
149152
properties, matching Character and Object tinting functionality.
153+
- Added Room.Number and Name properties.
150154
- Added Room.PathFinder property that returns a Pathfinder object, searching paths over this
151155
room's walkable areas.
152156
- Added StringSplitOptions enum, String.Join(), String.Split() and String.Trim() functions.

Common/core/def_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#ifndef __AGS_CN_CORE__DEFVERSION_H
22
#define __AGS_CN_CORE__DEFVERSION_H
33

4-
#define ACI_VERSION_STR "4.00.00.12"
4+
#define ACI_VERSION_STR "4.00.00.13"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 4,00,00,12
6+
#define ACI_VERSION_MSRC_DEF 4,00,00,13
77
#endif
88

99
#define SPECIAL_VERSION ""

Editor/AGS.Editor/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="4.00.00.12" name="AGSEditor"/>
3+
<assemblyIdentity version="4.00.00.13" name="AGSEditor"/>
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

Editor/AGS.Types/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Version
2525
public static readonly bool IS_BETA_VERSION = true;
2626
public const string AGS_EDITOR_DATE = "December 2024";
2727
public const string AGS_EDITOR_FRIENDLY_VERSION = "4.0.0";
28-
public const string AGS_EDITOR_VERSION = "4.00.00.12";
28+
public const string AGS_EDITOR_VERSION = "4.00.00.13";
2929
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2024 others.";
3030
public static readonly string AGS_EDITOR_TARGETNAME =
3131
IntPtr.Size > 4 ? "64-bit" : "32-bit";

version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "4.00.00.12",
2+
"version": "4.00.00.13",
33
"versionFriendly": "4.0.0",
4-
"versionSp": "Alpha16",
4+
"versionSp": "Alpha17",
55
"versionYear": "2024",
66
"versionMonth": "December",
77
"versionIsBeta": "true",

0 commit comments

Comments
 (0)