Skip to content

Commit

Permalink
Updated build version (3.6.0.50)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Jul 2, 2023
1 parent 37127b8 commit 7cfa7fc
Show file tree
Hide file tree
Showing 6 changed files with 29 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.49
VERSION 3.6.0.50
LANGUAGES CXX C)

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

Editor:
- Don't error when loading a room file which has unsupported number of events,
instead these will be cut out. This may let e.g. use room templates from newer
versions of AGS.
- Sprite's default property is changed from deprecated Resolution setting to SourceFile.
- Fixed full spritefile recreation would write duplicate sprites into the spritefile,
if game project (Game.agf file) contained multiple sprites with same ID for any reason
(for example, if they were added by manually editing Game.agf).
- Fixed importing SCI fonts with >128 chars.
- Fixed font preview did not properly display characters with indexes 128-255.

Engine:
- Fixed "noloopcheck" script function modifier was not handled correctly sometimes.
- Fixed a button with inventory placeholder did not update immediately when the active
inventory is set.
- Fixed textual GUIs were not redrawn immediately after a call to SetGameOption(OPT_RIGHTTOLEFT).


VERSION 3.6.0 - Patch 2, June 2023

Common:
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.49"
#define ACI_VERSION_STR "3.6.0.50"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,6,0,49
#define ACI_VERSION_MSRC_DEF 3,6,0,50
#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.49" name="AGSEditor"/>
<assemblyIdentity version="3.6.0.50" 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 = "June 2023";
public const string AGS_EDITOR_DATE = "July 2023";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.0";
public const string AGS_EDITOR_VERSION = "3.6.0.49";
public const string AGS_EDITOR_VERSION = "3.6.0.50";
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.49",
"version": "3.6.0.50",
"versionFriendly": "3.6.0",
"versionSp": "P2",
"versionSp": "P3",
"versionYear": "2023",
"versionMonth": "June",
"versionMonth": "July",
"versionIsBeta": "false",
"appID": "a4d6de0f-18b0-4aae-9338-86a333563b98"
}

0 comments on commit 7cfa7fc

Please sign in to comment.