Skip to content

Commit

Permalink
Updated build version (3.4.1.12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Jan 28, 2018
1 parent 71ecc5a commit 0d022f7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
REVISION HISTORY
================
VERSION 3.4.1 - Patch 1, January 2018

Engine:
- Removed game error reported when GUI coordinates were off the room limits.
- Fixed crash in Direct3D renderer when alt+tabbing out of fullscreen mode.
- Fixed OpenGL fullscreen mode was not minimized when you alt+tab from it.
- Fixed Direct3D and OpenGL renderers unnecessarily applied anti-aliasing on
utility sprites (used for transition effects) when "smooth scaled sprites"
option was enabled.


VERSION 3.4.1, December 2017

Common features:
Expand Down
6 changes: 3 additions & 3 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.4.1.11"
#define ACI_VERSION_STR "3.4.1.12"
#if defined (RC_INVOKED) // for MSVC resource compiler
#define ACI_VERSION_MSRC_DEF 3,4,1,11
#define ACI_VERSION_MSRC_DEF 3,4,1,12
#endif

#ifdef NO_MP3_PLAYER
Expand All @@ -12,6 +12,6 @@
#define SPECIAL_VERSION ""
#endif

#define ACI_COPYRIGHT_YEARS "2011-2017"
#define ACI_COPYRIGHT_YEARS "2011-2018"

#endif // __AGS_CN_CORE__DEFVERSION_H
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.4.1.11" name="AGSEditor"/>
<assemblyIdentity version="3.4.1.12" 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 = "December 2017";
public const string AGS_EDITOR_DATE = "January 2018";
public const string AGS_EDITOR_FRIENDLY_VERSION = "3.4.1";
public const string AGS_EDITOR_VERSION = "3.4.1.11";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2017 others.";
public const string AGS_EDITOR_VERSION = "3.4.1.12";
public const string AGS_EDITOR_COPYRIGHT = "Copyright © 2006-2011 Chris Jones and 2011-2018 others.";
}
}

0 comments on commit 0d022f7

Please sign in to comment.