Skip to content

Commit 913c75b

Browse files
committed
Bump version number
1 parent 1686630 commit 913c75b

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
cmake_minimum_required(VERSION 3.16)
66

77
# Configure project
8-
project(kapow VERSION 1.6.1 LANGUAGES CXX)
8+
project(kapow VERSION 1.6.2 LANGUAGES CXX)
99

10-
set(project_copyright "2008-2023 Graeme Gott")
10+
set(project_copyright "2008-2024 Graeme Gott")
1111

1212
set(CMAKE_CXX_STANDARD 17)
1313
set(CMAKE_CXX_STANDARD_REQUIRED ON)

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.6.2
2+
-----
3+
* FIXED: Did not quit when close-to-tray was enabled.
4+
* FIXED: System tray icon did not work in Windows.
5+
* Only allow a single instance to run.
6+
* Replaced deprecated code.
7+
* Translation updates: Spanish, Turkish.
8+
19
1.6.1
210
-----
311
* Allow higher hourly rate.

icons/kapow.appdata.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@
9999
<content_rating type="oars-1.1"/>
100100

101101
<releases>
102+
<release version="1.6.2" date="2024-01-16">
103+
<description>
104+
<ul>
105+
<li>FIXED: Did not quit when close-to-tray was enabled</li>
106+
<li>FIXED: System tray icon did not work in Windows</li>
107+
<li>Only allow a single instance to run</li>
108+
<li>Replaced deprecated code</li>
109+
<li>Translation updates: Spanish, Turkish</li>
110+
</ul>
111+
</description>
112+
</release>
102113
<release version="1.6.1" date="2023-01-10">
103114
<description>
104115
<ul>

mac_deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
APP='Kapow'
44
BUNDLE="$APP.app"
5-
VERSION='1.6.1'
5+
VERSION='1.6.2'
66

77
# Locate deployment script
88
BIN_DIR=$(pwd)

windows/installer.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
!define APPNAME "Kapow"
55
!define VERSIONMAJOR 1
66
!define VERSIONMINOR 6
7-
!define VERSIONPATCH 1
7+
!define VERSIONPATCH 2
88
!define APPVERSION "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONPATCH}"
99
!define ABOUTURL "https://gottcode.org/kapow/"
1010

windows_deploy.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
SET SRCDIR=..\kapow
66
SET APP=Kapow
7-
SET VERSION=1.6.1
7+
SET VERSION=1.6.2
88

99
ECHO Copying executable
1010
MKDIR %SRCDIR%\%APP%

0 commit comments

Comments
 (0)