Skip to content

Commit

Permalink
Updated build version (3.6.0.53)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Nov 2, 2023
1 parent 052def7 commit 986a4fb
Show file tree
Hide file tree
Showing 6 changed files with 41 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.52
VERSION 3.6.0.53
LANGUAGES CXX C)

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

Editor:
- Fixed GUI editor could display selection rectangle from a different GUI editor pane,
if two or more are displayed on screen at the same time.
- Fixed "autoptr" and "builtin" keywords not colored as valid keywords in the script editor.
- Fixed character literals in a script editor having wrong colors when a Color Theme is applied.

Engine:
- Made String.Chars and Length properties work faster in ASCII mode.
- Issue a warning when blocking Display or Say commands are called during fade-out.
- Fixed engine failing to startup sometimes if controller device subsystem failed to init
(it should not init at all in this version, as we do not support joysticks yet).
- Fixed "Before fade-in" event could be called recursively under some peculiar conditions
(regression since 3.6.0).
- Fixed buttons on a non-clickable GUI were still changing to "mouse over" graphic under cursor.
- Fixed button click not registered if it has been made not visible and visible again during a
single game frame (regression since 3.6.0).
- Fixed TextWindow borders drawn behind the rightmost corner pieces, which may be seen if the
edge sprites are half-transparent.
- Fixed a brief black screen flash occuring right after the video playback ends
(regression since 3.6.0).
- Fixed engine refusing to load legacy saves if the audio clip count does not match
(number of audio clips should not affect saves).

WinSetup:
- Added an option to disable "smooth scaled sprites" setting.
- Added an option to disable language selection.
- Made filter names in "disabled" section treated in case insensitive way.



VERSION 3.6.0 - Patch 5, September 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.52"
#define ACI_VERSION_STR "3.6.0.53"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,6,0,52
#define ACI_VERSION_MSRC_DEF 3,6,0,53
#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.52" name="AGSEditor"/>
<assemblyIdentity version="3.6.0.53" 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 = "September 2023";
public const string AGS_EDITOR_DATE = "November 2023";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.0";
public const string AGS_EDITOR_VERSION = "3.6.0.52";
public const string AGS_EDITOR_VERSION = "3.6.0.53";
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.52",
"version": "3.6.0.53",
"versionFriendly": "3.6.0",
"versionSp": "P5",
"versionSp": "P6",
"versionYear": "2023",
"versionMonth": "September",
"versionMonth": "November",
"versionIsBeta": "false",
"appID": "a4d6de0f-18b0-4aae-9338-86a333563b98"
}

0 comments on commit 986a4fb

Please sign in to comment.