Skip to content

Commit 00be9e8

Browse files
committed
0.10.0
1 parent 3124771 commit 00be9e8

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

CHANGELOG

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,48 @@ Release date:
55

66
New features:
77

8+
Bug fixes:
9+
10+
Other:
11+
12+
0.10.0
13+
======
14+
15+
Release date:
16+
17+
Mon, 21 Jul 2025 20:31:52 +0300
18+
19+
New features:
20+
21+
* Fix GitHub Issue #10: Implement support for a MIDI controller keyboard
22+
- Edit => Settings => MIDI => Controller
23+
- Supports Note ON/OFF, Pitch Bend, MIDI CC (also modulation wheel), Transport (Play/Stop)
24+
825
* Implement MIDI transport events
926
- Noteahead now sends MIDI Start/Stop
1027

1128
* Implement a delay time calculator dialog
1229
- Tools => Delay time calculator
1330

31+
* Strike out recent files that have been vanished
32+
33+
* VideoGenerator
34+
- Implement a new video animation type "Bars"
35+
- Ensure that input files exist
36+
- Support image rotation in video generation
37+
1438
Bug fixes:
1539

1640
* Fix GitHub Issue #14: Rewinding a song assumes that track with index 0 exists
1741

1842
* Fix GitHub Issue #17: Window title not reset on a new song
1943

44+
* Eliminate a redundant call to PlayerWorker::stop()
45+
2046
Other:
2147

48+
* More logically maintain current track on track deletion
49+
2250
0.9.0
2351
=====
2452

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 9)
7+
set(VERSION_MINOR 10)
88
set(VERSION_PATCH 0)
99
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
1010

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,9 @@ Run `noteahead -h` for all options.
272272
##
273273
## Real-world test cases
274274

275-
I have tested Noteahead with at least these devices:
275+
I have tested Noteahead with at least these devices (USB MIDI):
276276

277+
* Arturia Keystep
277278
* Behringer DeepMind 6
278279
* Behringer Model D
279280
* Behringer RD-6

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.9.0" date="2025-06-10"></release>
21+
<release version="0.10.0" date="2025-07-21"></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.9.0/ HEAD > noteahead-0.9.0.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-0.10.0/ HEAD > noteahead-0.10.0.tar.gz

0 commit comments

Comments
 (0)