Skip to content

Commit

Permalink
v1.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
chcg committed Feb 21, 2018
1 parent 72f94c5 commit 118845a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 1.4.9.{build}
version: 1.4.10.{build}
image: Visual Studio 2015


Expand Down
7 changes: 7 additions & 0 deletions doc/index.html
Expand Up @@ -58,6 +58,13 @@ <h3>Features</h3>
<br/><br/>
<a name="changes"></a>
<h3>Changes</h3>
1.4.10
<br>
<ul>
<li>PR #66 modified pluginmanager window (thanks @dcomtois)</li>
<li>Fixed issue #77 UTF characters not rendered correctly in plugin information</li>
<li>Fixed further issues/warnings found by cppcheck</li>
</ul>
1.4.9
<br>
<ul>
Expand Down
10 changes: 5 additions & 5 deletions gpup/src/gpup.rc
Expand Up @@ -96,8 +96,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,9,0
PRODUCTVERSION 1,4,9,0
FILEVERSION 1,4,10,0
PRODUCTVERSION 1,4,10,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -114,12 +114,12 @@ BEGIN
BEGIN
VALUE "Comments", "A generic(ish) plugin updater, built initially for Notepad++"
VALUE "FileDescription", "gpup"
VALUE "FileVersion", "1.4.9.0"
VALUE "FileVersion", "1.4.10.0"
VALUE "InternalName", "gpup"
VALUE "LegalCopyright", "Copyright (C) 2009-11, 2015-17 Dave Brotherstone"
VALUE "LegalCopyright", "Copyright (C) 2009-11, 2015-18 Dave Brotherstone"
VALUE "OriginalFilename", "gpup.exe"
VALUE "ProductName", " gpup"
VALUE "ProductVersion", "1.4.9.0"
VALUE "ProductVersion", "1.4.10.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions pluginManager/src/PluginManagerVersion.h
@@ -1,9 +1,9 @@
#ifndef _PLUGINMANAGERVERSION_H
#define _PLUGINMANAGERVERSION_H

#define PLUGINMANAGERVERSION_STRING "1.4.9.0"
#define PLUGINMANAGERVERSION_RESOURCE 1,4,9,0
#define PLUGINMANAGERVERSION_RESOURCE_STRING "1, 4, 9, 0"
#define PLUGINMANAGERVERSION_RELEASEDATE "April 2017"
#define PLUGINMANAGERVERSION_STRING "1.4.10.0"
#define PLUGINMANAGERVERSION_RESOURCE 1,4,10,0
#define PLUGINMANAGERVERSION_RESOURCE_STRING "1, 4, 10, 0"
#define PLUGINMANAGERVERSION_RELEASEDATE "Feb 2018"

#endif

0 comments on commit 118845a

Please sign in to comment.