Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonwang committed Feb 28, 2022
1 parent 45c4336 commit 95b0d3b
Show file tree
Hide file tree
Showing 14 changed files with 1,189 additions and 1,132 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ x64
.vs
GeneratedFiles
[P|p]recompiled.h.cpp

*.aps

# Python
__pycache__
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

* 3.1.2 (2022-2-28)
- add option to hide tray icon #62
- support Ctrl+Alt+Shift hotkey #66
- update japanese translation #71

* 3.1.2 (2021-7-20)
- new feature #23 #37: UWPApp plugin for indexing UWP applications
- translation: add Portuguese and Italian translation
Expand Down
4 changes: 2 additions & 2 deletions src/Launchy/GlobalVar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

namespace launchy {

const int LAUNCHY_VERSION = 312;
const char* LAUNCHY_VERSION_STRING = "3.1.2";
const int LAUNCHY_VERSION = 313;
const char* LAUNCHY_VERSION_STRING = "3.1.3";

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

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

0 comments on commit 95b0d3b

Please sign in to comment.