Skip to content

Commit c68d62d

Browse files
committed
Updated build version (3.5.0.17)
1 parent 903013a commit c68d62d

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
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.16
8+
VERSION 3.5.0.17
99
LANGUAGES CXX C)
1010

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

Changes.txt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REVISION HISTORY
22
================
3-
VERSION 3.5.0 - Beta
3+
VERSION 3.5.0 - RC
44

55
Common features:
66
- Now using Allegro v4.4.3 library (previously v4.4.2).
@@ -65,6 +65,7 @@ Editor:
6565
- Added shortcut key combination (Shift + F5) for stopping a game's debug run.
6666
- Don't display missing games in the "recent games" list.
6767
- Build autocomplete table a little faster.
68+
- Disabled sending crash reports and anonymous statistics, because of the AGS server issues.
6869
- Corrected .NET version query for the anonymous statistics report.
6970
- Fixed crash and corruption of project data when writing to full disk.
7071
- Fixed saving sprite file to not cancel completely if only an optional step has failed
@@ -124,6 +125,8 @@ Script API:
124125
- Added SkipCutscene() and eSkipScriptOnly cutscene mode.
125126
- Allowed to change Mouse.ControlEnabled property value at runtime.
126127
- Added Game.SimulateKeyPress().
128+
- Added optional "frame" parameter to Character.Animate and Object.Animate, letting you begin
129+
animation from any frame in the loop.
127130
- Deprecated Character.IgnoreWalkbehinds and Object.IgnoreWalkbehinds.
128131
- Deprecated DrawingSurface.UseHighResCoordinates. Also, assigning it will be ignored if game's
129132
"Allow relative asset resolutions" option is disabled.
@@ -163,9 +166,10 @@ Engine:
163166
for a certain barely related reason.
164167
- Fixed BlackBox-in transition done by software renderer could have wrong aspect ratio.
165168
- Fixed Direct3D and OpenGL displayed pink (255, 0, 255) fade as transparent.
169+
- Fixed potential crash that could happen when switching between fullscreen and windowed mode,
170+
or switching back into game window (only observed on Linux for some reason).
166171
- Fixed a bug in mp3/ogg decoder where it assumed creating an audiostream succeeded without
167172
actually testing one.
168-
- Fixed increased CPU load when displaying built-in dialogs (save, restore etc).
169173

170174
Linux:
171175
- Use same FreeType library sources as Windows version, which suppose to fix TTF font glitches.
@@ -178,6 +182,12 @@ Windows:
178182
- Engine is marked as a DPI-aware application that supposed to prevent window scaling by system.
179183

180184

185+
VERSION 3.4.4 - Patch 1, September 2019
186+
187+
Engine:
188+
- Fixed increased CPU load when displaying built-in dialogs (save, restore etc).
189+
190+
181191
VERSION 3.4.4, July 2019
182192

183193
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.5.0.16"
4+
#define ACI_VERSION_STR "3.5.0.17"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,5,0,16
6+
#define ACI_VERSION_MSRC_DEF 3,5,0,17
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.16" name="AGSEditor"/>
3+
<assemblyIdentity version="3.5.0.17" 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ namespace AGS.Types
2121
{
2222
public class Version
2323
{
24-
public static readonly bool IS_BETA_VERSION = true;
24+
public static readonly bool IS_BETA_VERSION = false;
2525
public const string AGS_EDITOR_DATE = "September 2019";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.5.0";
27-
public const string AGS_EDITOR_VERSION = "3.5.0.16";
27+
public const string AGS_EDITOR_VERSION = "3.5.0.17";
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.16",
2+
"version": "3.5.0.17",
33
"versionFriendly": "3.5.0",
4-
"versionSp": "",
4+
"versionSp": "rc-1",
55
"appID": "6b60d97d-db82-4986-995f-31e2aad16832"
66
}

0 commit comments

Comments
 (0)