Skip to content

Commit

Permalink
prepare to release 3.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonwang committed May 21, 2019
1 parent c65401c commit 8bfb268
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.org
@@ -1,4 +1,11 @@

* 3.0.9 (2019-05-21)
- fix bug #12, imporve icon extracting method
- fix bug #14, make sure that main widget is focused when hotkey is triggered by keyboard hooks
- the up key and the pageup key could invoke history search now
- fix a bug in history search
- clean code for bug #11 and #13, but I still can not find out the bugs

* 3.0.8 (2019-04-18)
- ported Runner plugin (issue #10)
- add option panel for CalcyPy (issue #10)
Expand Down
4 changes: 2 additions & 2 deletions src/GlobalVar.cpp
Expand Up @@ -44,8 +44,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

namespace launchy {

const int LAUNCHY_VERSION = 308;
const char* LAUNCHY_VERSION_STRING = "3.0.8";
const int LAUNCHY_VERSION = 309;
const char* LAUNCHY_VERSION_STRING = "3.0.9";

#if defined(ENVIRONMENT64)
const char* LAUNCHY_BIT_STRING = "64";
Expand Down
8 changes: 4 additions & 4 deletions src/win/launchy.rc
Expand Up @@ -17,8 +17,8 @@ IDI_ICON1 ICON DISCARDABLE "launchy.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,0,8,0
PRODUCTVERSION 3,0,8,0
FILEVERSION 3,0,9,0
PRODUCTVERSION 3,0,9,0
// FILEFLAGSMASK 0x3fL
// #ifdef _DEBUG
// FILEFLAGS 0x1L
Expand All @@ -34,12 +34,12 @@ BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileDescription", "LaunchyQt"
VALUE "FileVersion", "3.0.8.0"
VALUE "FileVersion", "3.0.9.0"
VALUE "InternalName", "Launchy.exe"
VALUE "LegalCopyright", "GPLv3"
VALUE "OriginalFilename", "Launchy.exe"
VALUE "ProductName", "Launchy"
VALUE "ProductVersion", "3.0.8.0"
VALUE "ProductVersion", "3.0.9.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 8bfb268

Please sign in to comment.