Skip to content

Commit edef731

Browse files
committed
Updated build version (3.6.1.23 P1)
1 parent a128276 commit edef731

File tree

6 files changed

+24
-7
lines changed

6 files changed

+24
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/CMake/cxx_fla
55
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version")
66

77
project(AGS
8-
VERSION 3.6.1.22
8+
VERSION 3.6.1.23
99
LANGUAGES CXX C)
1010

1111
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")

Changes.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
REVISION HISTORY
22
================
3+
VERSION 3.6.1 - Patch 1, April 2024
4+
5+
Editor:
6+
- Fixed View's frame preview sometimes drawn incorrectly, in case of certain panel sizes.
7+
- Fixed folding in the script editor not working correctly if there's a commented closing
8+
bracket ("//}") inside this code section.
9+
- Fixed Editor sometimes failing to update game exe's file information and/or icons, if
10+
user was importing any sprites during this working session.
11+
12+
Engine:
13+
- Fixed room objects not updating under Direct3D/OpenGL renderer, if they were assigned a dynamic
14+
sprite, then that sprite was deleted, and a new one assigned with coincidentally same ID.
15+
- Fixed room objects not updating under Software renderer, if they were assigned a dynamic sprite,
16+
and that sprite was modified while object was not visible on screen.
17+
- Fixed inventory cursor's crosshair not displayed (when enabled in game settings).
18+
19+
320
VERSION 3.6.1, April 2024
421

522
Common features:

Common/core/def_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#ifndef __AGS_CN_CORE__DEFVERSION_H
22
#define __AGS_CN_CORE__DEFVERSION_H
33

4-
#define ACI_VERSION_STR "3.6.1.22"
4+
#define ACI_VERSION_STR "3.6.1.23"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,6,1,22
6+
#define ACI_VERSION_MSRC_DEF 3,6,1,23
77
#endif
88

99
#define SPECIAL_VERSION ""

Editor/AGS.Editor/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="3.6.1.22" name="AGSEditor"/>
3+
<assemblyIdentity version="3.6.1.23" name="AGSEditor"/>
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

Editor/AGS.Types/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Version
2424
public static readonly bool IS_BETA_VERSION = false;
2525
public const string AGS_EDITOR_DATE = "April 2024";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.1";
27-
public const string AGS_EDITOR_VERSION = "3.6.1.22";
27+
public const string AGS_EDITOR_VERSION = "3.6.1.23";
2828
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2024 others.";
2929
}
3030
}

version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "3.6.1.22",
2+
"version": "3.6.1.23",
33
"versionFriendly": "3.6.1",
4-
"versionSp": "",
4+
"versionSp": "P1",
55
"versionYear": "2024",
66
"versionMonth": "April",
77
"versionIsBeta": "false",

0 commit comments

Comments
 (0)