Skip to content

Commit 4bfe25b

Browse files
committed
Updated build version (3.6.1.29 P7)
1 parent cd3cef4 commit 4bfe25b

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-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.28
8+
VERSION 3.6.1.29
99
LANGUAGES CXX C)
1010

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

Changes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
REVISION HISTORY
22
================
3+
VERSION 3.6.1 - Patch 7, September 2024
4+
5+
Engine:
6+
- Hotfix mouse cursor not being drawn sometimes after changing rooms (regression in 3.6.1 P6).
7+
8+
39
VERSION 3.6.1 - Patch 6, September 2024
410

511
Editor:

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.28"
4+
#define ACI_VERSION_STR "3.6.1.29"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,6,1,28
6+
#define ACI_VERSION_MSRC_DEF 3,6,1,29
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.28" name="AGSEditor"/>
3+
<assemblyIdentity version="3.6.1.29" 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 = "September 2024";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.1";
27-
public const string AGS_EDITOR_VERSION = "3.6.1.28";
27+
public const string AGS_EDITOR_VERSION = "3.6.1.29";
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.28",
2+
"version": "3.6.1.29",
33
"versionFriendly": "3.6.1",
4-
"versionSp": "P6",
4+
"versionSp": "P7",
55
"versionYear": "2024",
66
"versionMonth": "September",
77
"versionIsBeta": "false",

0 commit comments

Comments
 (0)