Skip to content

Commit

Permalink
Updated build version (4.00.00.01)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Nov 3, 2023
1 parent ea8bfbf commit bbb5e0b
Show file tree
Hide file tree
Showing 6 changed files with 14 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.00
VERSION 4.00.00.01
LANGUAGES CXX C)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
Expand Down
11 changes: 8 additions & 3 deletions Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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
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.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 ""
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.00" name="AGSEditor"/>
<assemblyIdentity version="4.00.00.01" 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 @@ -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.";
}
}
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.00.00.00",
"version": "4.00.00.01",
"versionFriendly": "4.0.0",
"versionSp": "Alpha6",
"versionYear": "2023",
Expand Down

0 comments on commit bbb5e0b

Please sign in to comment.