Skip to content

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
juzzlin committed Jan 9, 2021
1 parent 179897c commit 71f1d80
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ x.y.z

New features:

Bug fixes:

Other:

2.2.0
=====

New features:

* Fix GitHub Issue #126: Extending limit of the canvas/background
- The drawing area is now unlimited

Expand All @@ -16,10 +25,22 @@ Bug fixes:

* Fix the way a node is selected on right-click

* Fix copy paste from background context menu

* Disable optimization buttons when optimization in progress

* Don't create Text element if edge text is empty

* Don't create Text element if node text is empty

Other:

* Make a distinction between general colors and node colors

* Make zooming nonlinear and increase range

* Make pasting of big group of nodes much faster

* Clear selected nodes when a handle of unselected node is clicked

2.1.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ endif()

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

Expand Down
2 changes: 1 addition & 1 deletion heimer.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
TEMPLATE = app
TARGET = heimer

DEFINES += VERSION=\\\"2.1.0\\\"
DEFINES += VERSION=\\\"2.2.0\\\"
DEFINES += PACKAGE_TYPE=\\\"$$(PACKAGE_TYPE)\\\"

CONFIG += c++14 lrelease embed_translations
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/heimer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
!define COMPANYNAME "Juzzlin"
!define DESCRIPTION "An application for mind map creation and management."
!define VERSIONMAJOR 2
!define VERSIONMINOR 1
!define VERSIONMINOR 2
!define VERSIONBUILD 0
!define HELPURL "http://juzzlin.github.io/Heimer/"
!define UPDATEURL "https://github.com/juzzlin/Heimer/releases"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-app-image
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Builds AppImage in Docker

HEIMER_VERSION=2.1.0
HEIMER_VERSION=2.2.0

CMD="export LANG=en_US.UTF-8 && \
export LC_ALL=en_US.UTF-8 && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-windows-zip
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Builds ZIP archive for Windows in Docker

VERSION=2.1.0
VERSION=2.2.0

QMAKE=/mxe/usr/i686-w64-mingw32.static/qt5/bin/qmake

Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: heimer
version: '2.1.0'
version: '2.2.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 71f1d80

Please sign in to comment.