Skip to content

Commit 95b0d3b

Browse files
committed
bump version
1 parent 45c4336 commit 95b0d3b

File tree

14 files changed

+1189
-1132
lines changed

14 files changed

+1189
-1132
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ x64
5353
.vs
5454
GeneratedFiles
5555
[P|p]recompiled.h.cpp
56-
56+
*.aps
5757

5858
# Python
5959
__pycache__

docs/CHANGELOG.org

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
* 3.1.2 (2022-2-28)
3+
- add option to hide tray icon #62
4+
- support Ctrl+Alt+Shift hotkey #66
5+
- update japanese translation #71
6+
27
* 3.1.2 (2021-7-20)
38
- new feature #23 #37: UWPApp plugin for indexing UWP applications
49
- translation: add Portuguese and Italian translation

src/Launchy/GlobalVar.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
4444

4545
namespace launchy {
4646

47-
const int LAUNCHY_VERSION = 312;
48-
const char* LAUNCHY_VERSION_STRING = "3.1.2";
47+
const int LAUNCHY_VERSION = 313;
48+
const char* LAUNCHY_VERSION_STRING = "3.1.3";
4949

5050
#if defined(ENVIRONMENT64)
5151
const char* LAUNCHY_BIT_STRING = "64";

src/Launchy/Windows/launchy.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ IDI_ICON1 ICON DISCARDABLE "launchy.ico"
1717
//
1818

1919
VS_VERSION_INFO VERSIONINFO
20-
FILEVERSION 3,1,2,0
21-
PRODUCTVERSION 3,1,2,0
20+
FILEVERSION 3,1,3,0
21+
PRODUCTVERSION 3,1,3,0
2222
// FILEFLAGSMASK 0x3fL
2323
// #ifdef _DEBUG
2424
// FILEFLAGS 0x1L
@@ -34,12 +34,12 @@ BEGIN
3434
BLOCK "040904E4"
3535
BEGIN
3636
VALUE "FileDescription", "LaunchyQt"
37-
VALUE "FileVersion", "3.1.2.0"
37+
VALUE "FileVersion", "3.1.3.0"
3838
VALUE "InternalName", "Launchy.exe"
3939
VALUE "LegalCopyright", "GPLv3"
4040
VALUE "OriginalFilename", "Launchy.exe"
4141
VALUE "ProductName", "Launchy"
42-
VALUE "ProductVersion", "3.1.2.0"
42+
VALUE "ProductVersion", "3.1.3.0"
4343
END
4444
END
4545
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)