Skip to content

Commit

Permalink
Updated build version (3.5.0.20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Nov 15, 2019
1 parent dcd4862 commit ef37422
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 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.5.0.19
VERSION 3.5.0.20
LANGUAGES CXX C)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
Expand Down
5 changes: 5 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ Editor:
- Build autocomplete table a little faster.
- Disabled sending crash reports and anonymous statistics, because of the AGS server issues.
- Corrected .NET version query for the anonymous statistics report.
- Fixed "Script Compatibility Level" was not correctly set when importing projects made
in AGS 3.4.* versions.
- Fixed crash and corruption of project data when writing to full disk.
- Fixed saving sprite file to not cancel completely if only an optional step has failed
(such as copying a backup file).
Expand All @@ -84,6 +86,7 @@ Editor:
and resuming playback.
- Fixed MIDI audio preview had wrong control states set when pausing a playback.
- Fixed autocomplete not showing up correctly if user has multiple monitors.
- Fixed autocomplete crashing with empty /// comments.
- Fixed script compiler could leave extra padding inside the compiled scripts filled with
random garbage if script strings contained escaped sequences like "\n" (this was not good
for source control).
Expand Down Expand Up @@ -128,6 +131,7 @@ Script API:
- Added Game.SimulateKeyPress().
- Added optional "frame" parameter to Character.Animate and Object.Animate, letting you begin
animation from any frame in the loop.
- Deprecated "system" object (not System struct!).
- Deprecated Character.IgnoreWalkbehinds and Object.IgnoreWalkbehinds.
- Deprecated DrawingSurface.UseHighResCoordinates. Also, assigning it will be ignored if game's
"Allow relative asset resolutions" option is disabled.
Expand Down Expand Up @@ -169,6 +173,7 @@ Engine:
for a certain barely related reason.
- Fixed BlackBox-in transition done by software renderer could have wrong aspect ratio.
- Fixed Direct3D and OpenGL displayed pink (255, 0, 255) fade as transparent.
- Fixed Direct3D was slightly distorting game image in pixel perfect mode.
- Fixed Direct3D was not clearing black borders in fullscreen, which could cause graphical
artifacts remaining after the Steam overlay, for example.
- Fixed potential crash that could happen when switching between fullscreen and windowed mode,
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.5.0.19"
#define ACI_VERSION_STR "3.5.0.20"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,5,0,19
#define ACI_VERSION_MSRC_DEF 3,5,0,20
#endif

#ifdef NO_MP3_PLAYER
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.5.0.19" name="AGSEditor"/>
<assemblyIdentity version="3.5.0.20" 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 = "October 2019";
public const string AGS_EDITOR_DATE = "November 2019";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.5.0";
public const string AGS_EDITOR_VERSION = "3.5.0.19";
public const string AGS_EDITOR_VERSION = "3.5.0.20";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2019 others.";
}
}
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3.5.0.19",
"version": "3.5.0.20",
"versionFriendly": "3.5.0",
"versionSp": "RC3",
"versionSp": "RC4",
"appID": "6b60d97d-db82-4986-995f-31e2aad16832"
}

0 comments on commit ef37422

Please sign in to comment.