Skip to content

Commit

Permalink
Updated build version (3.6.0.54)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Dec 1, 2023
1 parent 3b5dc24 commit 7a471dd
Show file tree
Hide file tree
Showing 6 changed files with 28 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 3.6.0.53
VERSION 3.6.0.54
LANGUAGES CXX C)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
Expand Down
19 changes: 19 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
REVISION HISTORY
================
VERSION 3.6.0 - Patch 7, December 2023

Editor:
- For Android build target disabled compression of `.ags` and `.vox` assets, as that slows down
engine streaming resources (sprites etc).
- Fixed Editor failing to start if user preferences file is corrupted
(this is a second fix, complementing one done in AGS 3.5.1).
- Fixed RAM use spiking fast during batch sprite reimport from sources, which could randomly
lead to program errors.
- Fixed Dialog properties displaying internal values not meant to be seen by a user.
- Fixed selecting parent GUI after its control did not display GUI's own properties in
the Properties Grid.
- Fixed Editor generating deprecated settings in the default config file.

Engine:
- Fixed GUI controls unexpectedly clipping parts of text even if "controls clip contents"
setting is disabled, in case when their Font has VerticalOffset property set.


VERSION 3.6.0 - Patch 6, November 2023

Editor:
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 "3.6.0.53"
#define ACI_VERSION_STR "3.6.0.54"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,6,0,53
#define ACI_VERSION_MSRC_DEF 3,6,0,54
#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="3.6.0.53" name="AGSEditor"/>
<assemblyIdentity version="3.6.0.54" name="AGSEditor"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
4 changes: 2 additions & 2 deletions Editor/AGS.Types/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ namespace AGS.Types
public class Version
{
public static readonly bool IS_BETA_VERSION = false;
public const string AGS_EDITOR_DATE = "November 2023";
public const string AGS_EDITOR_DATE = "December 2023";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.0";
public const string AGS_EDITOR_VERSION = "3.6.0.53";
public const string AGS_EDITOR_VERSION = "3.6.0.54";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2023 others.";
}
}
6 changes: 3 additions & 3 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"version": "3.6.0.53",
"version": "3.6.0.54",
"versionFriendly": "3.6.0",
"versionSp": "P6",
"versionSp": "P7",
"versionYear": "2023",
"versionMonth": "November",
"versionMonth": "December",
"versionIsBeta": "false",
"appID": "a4d6de0f-18b0-4aae-9338-86a333563b98",
"licenseLink": "https://opensource.org/license/artistic-2-0/"
Expand Down

0 comments on commit 7a471dd

Please sign in to comment.