Skip to content

Commit

Permalink
v1.4.9
Browse files Browse the repository at this point in the history
Also updated the changelog for the last few versions
  • Loading branch information
bruderstein committed Apr 15, 2017
1 parent c28a7e0 commit 7f049a5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 8 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4.8.{build}
version: 1.4.9.{build}
image: Visual Studio 2015


Expand Down
36 changes: 36 additions & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,42 @@ <h3>Features</h3>
<br/><br/>
<a name="changes"></a>
<h3>Changes</h3>
1.4.9
<br>
<ul>
<li>Do not force local cache usage when downloading the plugin list (will revalidate file is current each time)</li>
<li>New plugin list URL for x64 plugins</li>
</ul>
1.4.8
<br>
<ul>
<li>Minor change to plugin list hash URL for hashes to allow for correct hashes to be used</li>
<li>Performance improvements from cppcheck (thanks @chcg)</li>
</ul>
1.4.7
<br>
<ul>
<li>Fix issue with plugin download when hash matches</li>
<li>Performance improvements from cppcheck (thanks @chcg)</li>
<li>Fix small memory leak (thanks for the report @chcg)</li>
</ul>
1.4.6
<br>
<ul>
<li>Fix handling %APPDATA% plugins when Plugin Manager is installed in %APPDATA%</li>
</ul>
1.4.5
<br>
<ul>
<li>Fix for copies in gpup.exe flattening the directory structor (thanks @oleg-shilo and @CollinChaffin for reporting)</li>
<li>Fix compiler warnings and pointer dereference bug (thanks @chcg)</li>
</ul>
1.4.4
<br>
<ul>
<li>Lots of fixes (thanks @chcg)</li>
<li>First build with x64 build (huge thanks to @chcg)</li>
</ul>
1.4.3
<br>
<ul>
Expand Down
8 changes: 4 additions & 4 deletions gpup/src/gpup.rc
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,8,0
PRODUCTVERSION 1,4,8,0
FILEVERSION 1,4,9,0
PRODUCTVERSION 1,4,9,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.8.0"
VALUE "FileVersion", "1.4.9.0"
VALUE "InternalName", "gpup"
VALUE "LegalCopyright", "Copyright (C) 2009-11, 2015-17 Dave Brotherstone"
VALUE "OriginalFilename", "gpup.exe"
VALUE "ProductName", " gpup"
VALUE "ProductVersion", "1.4.8.0"
VALUE "ProductVersion", "1.4.9.0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions pluginManager/src/PluginManagerVersion.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ifndef _PLUGINMANAGERVERSION_H
#define _PLUGINMANAGERVERSION_H

#define PLUGINMANAGERVERSION_STRING "1.4.8.0"
#define PLUGINMANAGERVERSION_RESOURCE 1,4,8,0
#define PLUGINMANAGERVERSION_RESOURCE_STRING "1, 4, 8, 0"
#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"

#endif

0 comments on commit 7f049a5

Please sign in to comment.