Skip to content

Commit 84569c3

Browse files
committed
Updated build version (3.5.0.21)
1 parent 8697369 commit 84569c3

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-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.5.0.20
8+
VERSION 3.5.0.21
99
LANGUAGES CXX C)
1010

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

Changes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ Engine:
167167
- Fixed potential bug which could cause DoOnceOnly tokens to be read incorrectly from a savedgame.
168168
- Fixed engine crashing with "division by zero" error if user set InventoryWindow's ItemWidth or
169169
ItemHeight to 0.
170+
- Fixed engine crashing if Object.SetView is called with a view that does not have any loops.
170171
- Fixed old walk-behind cut-outs could be displayed on first update in a room if the room's
171172
background was modified using raw drawing commands before fade-in. This happened only when
172173
running Direct3D or OpenGL renderer. Note that this bug was probably never noticed by players

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.5.0.20"
4+
#define ACI_VERSION_STR "3.5.0.21"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,5,0,20
6+
#define ACI_VERSION_MSRC_DEF 3,5,0,21
77
#endif
88

99
#ifdef NO_MP3_PLAYER

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.5.0.20" name="AGSEditor"/>
3+
<assemblyIdentity version="3.5.0.21" 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 = "November 2019";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.5.0";
27-
public const string AGS_EDITOR_VERSION = "3.5.0.20";
27+
public const string AGS_EDITOR_VERSION = "3.5.0.21";
2828
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2019 others.";
2929
}
3030
}

version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "3.5.0.20",
2+
"version": "3.5.0.21",
33
"versionFriendly": "3.5.0",
4-
"versionSp": "RC4",
4+
"versionSp": "RC5",
55
"appID": "6b60d97d-db82-4986-995f-31e2aad16832"
66
}

0 commit comments

Comments
 (0)