Skip to content

Commit 8c4e65d

Browse files
committed
Updated build version (3.4.1.10)
1 parent 4d27424 commit 8c4e65d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Changes.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REVISION HISTORY
22
================
3-
VERSION 3.4.1
3+
VERSION 3.4.1, December 2017
44

55
Common features:
66
- Upgraded Windows version of AGS with Allegro v4.4 library (previously v4.2).
@@ -51,6 +51,9 @@ Script API:
5151
- A new parameter StopMovementStyle is added to following functions: LockView,
5252
LockViewAligned, LockViewFrame, LockViewOffset, UnlockView. This parameter
5353
can be eStopMoving (default) or eKeepMoving.
54+
- DynamicSprite.CreateFromFile and SaveToFile now support path tokens and
55+
comply to the new file path rules (no writing files to the game's
56+
installation directory).
5457
- Added missing readonly properties to get Lighting/Tinting parameters for
5558
Character and Object: HasExplicitLight, HasExplicitTint, LightLevel,
5659
TintBlue, TintGreen, TintRed, TintSaturation, TintLuminance.
@@ -59,9 +62,6 @@ Script API:
5962
- Added readonly properties to get Button's animation state: Button.Animating,
6063
Button.Frame, Button.Loop, Button.View.
6164
- Added GetFontHeight(FontType) and GetFontLineSpacing(FontType) functions.
62-
- DynamicSprite.CreateFromFile and SaveToFile now support path tokens and
63-
comply to the new file path rules (no writing files to the game's
64-
installation directory).
6565
- Added setter for System.Windowed property, letting to change it at runtime,
6666
switching between windowed and fullscreen modes.
6767
- Added System.RenderAtScreenResolution property to change sprite rendering

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.4.1.9"
4+
#define ACI_VERSION_STR "3.4.1.10"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,4,1,9
6+
#define ACI_VERSION_MSRC_DEF 3,4,1,10
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.4.1.9" name="AGSEditor"/>
3+
<assemblyIdentity version="3.4.1.10" 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
@@ -22,9 +22,9 @@ namespace AGS.Types
2222
public class Version
2323
{
2424
public static readonly bool IS_BETA_VERSION = false;
25-
public const string AGS_EDITOR_DATE = "November 2017";
25+
public const string AGS_EDITOR_DATE = "December 2017";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.4.1";
27-
public const string AGS_EDITOR_VERSION = "3.4.1.9";
27+
public const string AGS_EDITOR_VERSION = "3.4.1.10";
2828
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2017 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.4.1.9",
2+
"version": "3.4.1.10",
33
"versionFriendly": "3.4.1",
4-
"versionSp": "rc-2",
4+
"versionSp": "rc-3",
55
"appID": "80db0980-33f3-49e1-ad8a-7d27068cdd1d"
66
}

0 commit comments

Comments
 (0)