Skip to content

Commit b0cbe25

Browse files
committed
1.1.1
1 parent 7ad719d commit b0cbe25

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.1.1 - "Bugfix Night"
2+
======================
3+
4+
Bug fixes:
5+
6+
* Fix GitHub Issue #19: Save on close doesn't work
7+
* Fix launcher icon of the Snap package
8+
19
1.1.0 - "PNG Man"
210
=================
311

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endif()
2222
# Global game version
2323
set(VERSION_MAJOR "1")
2424
set(VERSION_MINOR "1")
25-
set(VERSION_PATCH "0")
25+
set(VERSION_PATCH "1")
2626
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
2727

2828
# Some common CPack variables

heimer.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
TEMPLATE = app
55
TARGET = heimer
66

7-
DEFINES += VERSION=\\\"1.1.0\\\"
7+
DEFINES += VERSION=\\\"1.1.1\\\"
88
QMAKE_CXXFLAGS += -std=gnu++11
99

1010
# Qt version check

packaging/snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: heimer
2-
version: '1.1.0'
2+
version: '1.1.1'
33
summary: Heimer is a simple cross-platform mind map tool.
44
description: |
55
Heimer is a simple cross-platform mind map creation tool.

packaging/windows/heimer.nsi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
!define DESCRIPTION "An application for mind map creation and management."
1010
!define VERSIONMAJOR 1
1111
!define VERSIONMINOR 1
12-
!define VERSIONBUILD 0
12+
!define VERSIONBUILD 1
1313
!define HELPURL "http://juzzlin.github.io/Heimer/"
1414
!define UPDATEURL "https://github.com/juzzlin/Heimer/releases"
1515
!define ABOUTURL "http://juzzlin.github.io/Heimer/"
@@ -151,3 +151,4 @@ SectionEnd
151151

152152

153153

154+

scripts/buildAppImage.sh

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

33
# Builds AppImage in Docker
44

5-
HEIMER_VERSION=1.1.0
5+
HEIMER_VERSION=1.1.1
66

77
CMD="export LANG=en_US.UTF-8 && \
88
export LC_ALL=en_US.UTF-8 && \

0 commit comments

Comments
 (0)