Skip to content

Commit eac187e

Browse files
committed
0.9.0
1 parent 63b2d8e commit eac187e

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ Release date:
55

66
New features:
77

8+
Bug fixes:
9+
10+
Other:
11+
12+
0.9.0
13+
=====
14+
15+
Release date:
16+
17+
Tue, 10 Jun 2025 22:14:09 +0300
18+
19+
New features:
20+
821
* Render lines in a ListView instead of manually managed objects
922
- This is a big and fundamental refactoring effort and makes scrolling
1023
way smoother also on older Qt version. Also the update logic is now less
@@ -14,10 +27,19 @@ New features:
1427

1528
Bug fixes:
1629

30+
* Fix duplicate signal names on Qt 6.8
31+
1732
* Fix GitHub Issue #4: Crash in Flatpak: std::optional<noteahead::Position> not engaged
1833

34+
* Don't reinitialize the project when RecentFilesDialog canceled
35+
- A previously loaded project was also discarded without asking
36+
1937
Other:
2038

39+
* Make pattern spin box editable
40+
41+
* Addition of Flatpak manifest
42+
2143
0.8.0
2244
=====
2345

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(Noteahead LANGUAGES CXX)
44

55
# Global version
66
set(VERSION_MAJOR 0)
7-
set(VERSION_MINOR 8)
7+
set(VERSION_MINOR 9)
88
set(VERSION_PATCH 0)
99
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
1010

data/linux/noteahead.appdata.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<url type="homepage">https://github.com/juzzlin/Noteahead</url>
1919
<update_contact>[email protected]</update_contact>
2020
<releases>
21-
<release version="0.8.0" date="2025-05-29"></release>
21+
<release version="0.9.0" date="2025-06-10"></release>
2222
</releases>
2323
</component>

scripts/build-archive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
git archive --format=tar.gz --prefix=noteahead-0.8.0/ HEAD > noteahead-0.8.0.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-0.9.0/ HEAD > noteahead-0.9.0.tar.gz

0 commit comments

Comments
 (0)