Skip to content

Commit 0d022f7

Browse files
committed
Updated build version (3.4.1.12)
1 parent 71ecc5a commit 0d022f7

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

Changes.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
REVISION HISTORY
22
================
3+
VERSION 3.4.1 - Patch 1, January 2018
4+
5+
Engine:
6+
- Removed game error reported when GUI coordinates were off the room limits.
7+
- Fixed crash in Direct3D renderer when alt+tabbing out of fullscreen mode.
8+
- Fixed OpenGL fullscreen mode was not minimized when you alt+tab from it.
9+
- Fixed Direct3D and OpenGL renderers unnecessarily applied anti-aliasing on
10+
utility sprites (used for transition effects) when "smooth scaled sprites"
11+
option was enabled.
12+
13+
314
VERSION 3.4.1, December 2017
415

516
Common features:

Common/core/def_version.h

Lines changed: 3 additions & 3 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.11"
4+
#define ACI_VERSION_STR "3.4.1.12"
55
#if defined (RC_INVOKED) // for MSVC resource compiler
6-
#define ACI_VERSION_MSRC_DEF 3,4,1,11
6+
#define ACI_VERSION_MSRC_DEF 3,4,1,12
77
#endif
88

99
#ifdef NO_MP3_PLAYER
@@ -12,6 +12,6 @@
1212
#define SPECIAL_VERSION ""
1313
#endif
1414

15-
#define ACI_COPYRIGHT_YEARS "2011-2017"
15+
#define ACI_COPYRIGHT_YEARS "2011-2018"
1616

1717
#endif // __AGS_CN_CORE__DEFVERSION_H

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.11" name="AGSEditor"/>
3+
<assemblyIdentity version="3.4.1.12" 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: 3 additions & 3 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 = "December 2017";
25+
public const string AGS_EDITOR_DATE = "January 2018";
2626
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.4.1";
27-
public const string AGS_EDITOR_VERSION = "3.4.1.11";
28-
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2017 others.";
27+
public const string AGS_EDITOR_VERSION = "3.4.1.12";
28+
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2018 others.";
2929
}
3030
}

0 commit comments

Comments
 (0)