Skip to content

Commit

Permalink
Updated build version (4.00.00.13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Dec 29, 2024
1 parent 9707f50 commit b60cc86
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
8 changes: 6 additions & 2 deletions Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Common/core/def_version.h
Original file line number Diff line number Diff line change
@@ -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 ""
Expand Down
2 changes: 1 addition & 1 deletion Editor/AGS.Editor/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="4.00.00.12" name="AGSEditor"/>
<assemblyIdentity version="4.00.00.13" name="AGSEditor"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
2 changes: 1 addition & 1 deletion Editor/AGS.Types/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit b60cc86

Please sign in to comment.