Skip to content

Commit

Permalink
Updated build version (3.6.0.59)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Feb 27, 2025
1 parent 77e2b34 commit ca8c2da
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 14 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.6.0.58
VERSION 3.6.0.59
LANGUAGES CXX C)

set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMake")
Expand Down
7 changes: 7 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
REVISION HISTORY
================
VERSION 3.6.0 - Patch 12, February 2025

Engine:
- Fixed deleted DynamicSprite which is still assigned to a mouse cursor may cause engine's
sprite cache to enter a corrupt state, eventually leading to a crash.


VERSION 3.6.0 - Patch 11, April 2024

Editor:
Expand Down
6 changes: 3 additions & 3 deletions Common/core/def_version.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#ifndef __AGS_CN_CORE__DEFVERSION_H
#define __AGS_CN_CORE__DEFVERSION_H

#define ACI_VERSION_STR "3.6.0.58"
#define ACI_VERSION_STR "3.6.0.59"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,6,0,58
#define ACI_VERSION_MSRC_DEF 3,6,0,59
#endif

#define SPECIAL_VERSION ""

#define ACI_COPYRIGHT_YEARS "2011-2024"
#define ACI_COPYRIGHT_YEARS "2011-2025"

#endif // __AGS_CN_CORE__DEFVERSION_H
2 changes: 1 addition & 1 deletion Compiler/script/cs_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

extern int currentline;

char ccCopyright[]="ScriptCompiler32 v" SCOM_VERSIONSTR " (c) 2000-2007 Chris Jones and 2011-2024 others";
char ccCopyright[]="ScriptCompiler32 v" SCOM_VERSIONSTR " (c) 2000-2007 Chris Jones and 2011-2025 others";
static char scriptNameBuffer[256];

int evaluate_expression(ccInternalList*,ccCompiledScript*,int,bool insideBracketedDeclaration);
Expand Down
2 changes: 1 addition & 1 deletion Copyright.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Adventure Game Studio (AGS)
Copyright (c) 1999-2011 Chris Jones and 2011-2024 various contributors.
Copyright (c) 1999-2011 Chris Jones and 2011-2025 various contributors.

Adventure Game Studio was created by Chris Jones.
Original Linux port by berolinux (http://gitorious.org/ags); additional code by Bernhard Rosenkraenzer and Christian Morales Vega.
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.6.0.58" name="AGSEditor"/>
<assemblyIdentity version="3.6.0.59" name="AGSEditor"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
6 changes: 3 additions & 3 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 = "April 2024";
public const string AGS_EDITOR_DATE = "February 2025";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.6.0";
public const string AGS_EDITOR_VERSION = "3.6.0.58";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2024 others.";
public const string AGS_EDITOR_VERSION = "3.6.0.59";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2025 others.";
}
}
2 changes: 1 addition & 1 deletion Engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ if (MACOS)
MACOSX_BUNDLE_SHORT_VERSION_STRING # CFBundleShortVersionString
1.0.0
MACOSX_BUNDLE_COPYRIGHT # NSHumanReadableCopyright
"Copyright (C) 1999-2011 Chris Jones and 2011-2024 others"
"Copyright (C) 1999-2011 Chris Jones and 2011-2025 others"
MACOSX_BUNDLE_INFO_STRING # CFBundleGetInfoString
"Created by Adventure Game Studio"
)
Expand Down
2 changes: 1 addition & 1 deletion Windows/Installer/License.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Adventure Game Studio Engine and Tools
Copyright (c) 1999-2011 Chris Jones and 2011-2024 various contributors.
Copyright (c) 1999-2011 Chris Jones and 2011-2025 various contributors.

It is recommended that you do not install this to the same folder as any previous versions of AGS, in case you need to go back for some reason.

Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "3.6.0.58",
"version": "3.6.0.59",
"versionFriendly": "3.6.0",
"versionSp": "P11",
"versionSp": "P12",
"versionYear": "2025",
"versionMonth": "February",
"versionIsBeta": "false",
Expand Down

0 comments on commit ca8c2da

Please sign in to comment.