Skip to content

Commit 46df84e

Browse files
committed
3.0.0
1 parent 9e17258 commit 46df84e

4 files changed

Lines changed: 18 additions & 9 deletions

File tree

CHANGELOG

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,18 @@ Release date:
55

66
New features:
77

8-
* Implement a Gain parameter for Noteahead Sampler and Synth
9-
- Range: -30 dB to +30 dB
10-
- Allows proper gain staging when recording alongside hardware instruments
8+
Bug fixes:
9+
10+
Other:
11+
12+
3.0.0
13+
=====
14+
15+
Release date:
16+
17+
Thu, 07 May 2026 22:04:50 +0300
18+
19+
New features:
1120

1221
* Fix GitHub Issue #45: Implement a simple built-in sampler
1322
- Internal sampler instrument with 16 assignable pads
@@ -29,8 +38,8 @@ New features:
2938
- Full MIDI CC automation support (Volume CC 7, Pan CC 10, LPF Cutoff CC 74, HPF Cutoff CC 81)
3039

3140
* Implements a virtual device rack
32-
33-
Bug fixes:
41+
- Central hub for managing internal instruments
42+
- Supports multiple instances of Samplers and Synths
3443

3544
Other:
3645

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.14)
33
project(Noteahead LANGUAGES CXX)
44

55
# Global version
6-
set(VERSION_MAJOR 2)
7-
set(VERSION_MINOR 1)
6+
set(VERSION_MAJOR 3)
7+
set(VERSION_MINOR 0)
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>jussi.lind@iki.fi</update_contact>
2020
<releases>
21-
<release version="2.1.0" date="2026-04-21"></release>
21+
<release version="3.0.0" date="2026-05-07"></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-2.1.0/ HEAD > noteahead-2.1.0.tar.gz
1+
git archive --format=tar.gz --prefix=noteahead-3.0.0/ HEAD > noteahead-3.0.0.tar.gz

0 commit comments

Comments
 (0)