Skip to content

Commit ef3bdb7

Browse files
committedMar 10, 2023
4.0.0
1 parent d02b08d commit ef3bdb7

File tree

6 files changed

+41
-6
lines changed

6 files changed

+41
-6
lines changed
 

‎CHANGELOG

+35
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,32 @@ Release date:
55

66
New features:
77

8+
Bug fixes:
9+
10+
Other:
11+
12+
4.0.0
13+
=====
14+
15+
Release date:
16+
17+
Fri, 10 Mar 2023 17:28:44 -0000
18+
19+
New features:
20+
821
* Add setting for 'inverted controls'
922
- Pan the view with a modifier key (Ctrl) and select a group of items without a modifier key being pressed
1023

24+
* Add parameter initialization options to layout optimization dialog
25+
26+
* Add progress indicator when opening a mind map
27+
28+
* Add tool tips for optimizer parameters
29+
30+
* Add tool tip text for selecting node group by intersection
31+
32+
* Change help texts into tool tips
33+
1134
Bug fixes:
1235

1336
* Fix tab key not working properly with node and edge text inputs
@@ -20,12 +43,24 @@ Bug fixes:
2043

2144
Other:
2245

46+
* More subtle new version indicator with a timeout
47+
2348
* Change help texts to tool tips in edit settings
2449

2550
* Update Italian translations
2651

2752
* Update Dutch translations
2853

54+
* Breaking changes to ALZ-format (old files can still be opened normally)
55+
56+
* Move style data into style element
57+
58+
* Move layout optimizer config into metadata element
59+
60+
* Save and load application and format versions separately
61+
62+
* Rename index => i, index0 => i0, index1 => i1
63+
2964
3.7.0
3065
=====
3166

‎CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ if(POLICY CMP0072)
2525
endif()
2626

2727
# Global version
28-
set(VERSION_MAJOR 3)
29-
set(VERSION_MINOR 7)
28+
set(VERSION_MAJOR 4)
29+
set(VERSION_MINOR 0)
3030
set(VERSION_PATCH 0)
3131
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
3232

‎scripts/build-app-image

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Builds AppImage in Docker
44

5-
HEIMER_VERSION=3.7.0
5+
HEIMER_VERSION=4.0.0
66

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

‎scripts/build-archive

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git archive --format=tar.gz --prefix=heimer-3.7.0/ HEAD > heimer-3.7.0.tar.gz
1+
git archive --format=tar.gz --prefix=heimer-4.0.0/ HEAD > heimer-4.0.0.tar.gz

‎scripts/build-windows-zip

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Builds ZIP archive for Windows in Docker
44

5-
VERSION=3.7.0
5+
VERSION=4.0.0
66

77
CMAKE=/mxe/usr/bin/i686-w64-mingw32.static-cmake
88

‎snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: heimer
2-
version: '3.7.0'
2+
version: '4.0.0'
33
summary: Heimer is a simple cross-platform mind map tool.
44
description: |
55
Heimer is a simple cross-platform mind map creation tool.

0 commit comments

Comments
 (0)