Skip to content

Commit

Permalink
Updated build version (3.5.1.27)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Mar 29, 2023
1 parent 82b520a commit 4571e60
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 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.1.26
VERSION 3.5.1.27
LANGUAGES CXX C)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
Expand Down
9 changes: 9 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
REVISION HISTORY
================
VERSION 3.5.1 - Patch 20, March 2023

Engine:
- Fixed AudioClip.Play allowing to place clips on a crossfade channel in general case;
there's still a backward-compatible case where it's allowed to do so for audio types
with reserved channels that exceed the normal channel limit.
(Regression since 3.5.1 Patch 11)


VERSION 3.5.1 - Patch 19, March 2023

Engine:
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.1.26"
#define ACI_VERSION_STR "3.5.1.27"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,5,1,26
#define ACI_VERSION_MSRC_DEF 3,5,1,27
#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.1.26" name="AGSEditor"/>
<assemblyIdentity version="3.5.1.27" name="AGSEditor"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
2 changes: 1 addition & 1 deletion Editor/AGS.Types/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Version
public static readonly bool IS_BETA_VERSION = false;
public const string AGS_EDITOR_DATE = "March 2023";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.5.1";
public const string AGS_EDITOR_VERSION = "3.5.1.26";
public const string AGS_EDITOR_VERSION = "3.5.1.27";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2023 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.1.26",
"version": "3.5.1.27",
"versionFriendly": "3.5.1",
"versionSp": "P19",
"versionSp": "P20",
"appID": "baec604c-933c-426e-a11f-dec55953c4c3"
}

0 comments on commit 4571e60

Please sign in to comment.