Skip to content

Commit

Permalink
1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juzzlin committed Apr 17, 2020
1 parent 146bf36 commit 8d2c013
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Expand Up @@ -3,9 +3,19 @@ x.y.z

New features:

Bug fixes:

Other:

1.16.0
======

New features:

* Fix GitHub Issue #83: Add option to copy-drag nodes
- By checking "Copy on drag" checkbox on the toolbar
one can copy a node just by dragging a new connected node

* Add Ctrl+0 as shortcut for zoom to fit

Bug fixes:
Expand All @@ -15,7 +25,9 @@ Bug fixes:
Other:

* Make the Full Screen menu action checkable to avoid confusion

* General code refactoring

* Upgraded to C++14

1.15.1
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -21,8 +21,8 @@ endif()

# Global version
set(VERSION_MAJOR 1)
set(VERSION_MINOR 15)
set(VERSION_PATCH 1)
set(VERSION_MINOR 16)
set(VERSION_PATCH 0)
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")

# Some common CPack variables
Expand Down
2 changes: 1 addition & 1 deletion heimer.pro
Expand Up @@ -4,7 +4,7 @@
TEMPLATE = app
TARGET = heimer

DEFINES += VERSION=\\\"1.15.1\\\"
DEFINES += VERSION=\\\"1.16.0\\\"
CONFIG += c++14 lrelease embed_translations

# Qt version check
Expand Down
4 changes: 2 additions & 2 deletions packaging/windows/heimer.nsi
Expand Up @@ -8,8 +8,8 @@
!define COMPANYNAME "Juzzlin"
!define DESCRIPTION "An application for mind map creation and management."
!define VERSIONMAJOR 1
!define VERSIONMINOR 15
!define VERSIONBUILD 1
!define VERSIONMINOR 16
!define VERSIONBUILD 0
!define HELPURL "http://juzzlin.github.io/Heimer/"
!define UPDATEURL "https://github.com/juzzlin/Heimer/releases"
!define ABOUTURL "http://juzzlin.github.io/Heimer/"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-app-image
Expand Up @@ -2,7 +2,7 @@

# Builds AppImage in Docker

HEIMER_VERSION=1.15.1
HEIMER_VERSION=1.16.0

CMD="export LANG=en_US.UTF-8 && \
export LC_ALL=en_US.UTF-8 && \
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
@@ -1,5 +1,5 @@
name: heimer
version: '1.15.1'
version: '1.16.0'
summary: Heimer is a simple cross-platform mind map tool.
description: |
Heimer is a simple cross-platform mind map creation tool.
Expand Down

0 comments on commit 8d2c013

Please sign in to comment.