Skip to content

Commit bf1069f

Browse files
committed
Bump version number
1 parent 678e605 commit bf1069f

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.16.0)
2-
project(Signet VERSION 0.1.1)
2+
project(Signet VERSION 0.1.2)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

RELEASE.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
Changes:
2-
- Improved the quality of the fix-pitch-drift command
3-
- Added a command to embed-sample-info to remove metadata
4-
- Fixed a bug that would cause an assertion in the WAV metadata reader
2+
- Add --make-same-length option to sample-blend
3+
- Tweak fix-pitch drift algorithm and add extra utility options
4+
- Add pan command
5+
- Add --sample-set option to fix-pitch-drift and auto-tune
6+
- Turn --undo and --clear-backup into commands rather than options (they work identically to as before)
7+
- Improve colours and the format of the message output; each message now reports what filename it belongs to
8+
- Improve what counts as an error and what counts as a warning
9+
- Add --warnings-are-errors to require Signet to exit if any warning is issued
10+
- Add option to norm to normalise each channel independently
11+
- Fix-pitch-drift: add --expected-note, so as to only correct drift if the detected pitch is as expected
512

613
There are experimental binaries available for the Windows, Linux and Mac versions of Signet. These can be found in the assets section of this Github release. Just download and extract the file to start using it.
714

code/signet/commands/normalise/normalise.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CLI::App *NormaliseCommand::CreateCommandCLI(CLI::App &app) {
2020
"When there are multiple files, normalise each one individually rather than by a common gain.");
2121

2222
norm->add_flag("--independent-channels", m_normalise_channels_separately,
23-
"Normalise each channel independently rather than scale them together.");
23+
"UNTESTED: Normalise each channel independently rather than scale them together.");
2424

2525
norm->add_flag(
2626
"--rms", m_use_rms,

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ The target level in decibels, where 0dB is the max volume.
458458
When there are multiple files, normalise each one individually rather than by a common gain.
459459

460460
`--independent-channels`
461-
Normalise each channel independently rather than scale them together.
461+
UNTESTED: Normalise each channel independently rather than scale them together.
462462

463463
`--rms`
464464
Use average RMS (root mean squared) calculations to work out the required gain amount. In other words, the whole file's loudness is analysed, rather than just the peak. Does not work well with very dynamic-range variable audio.

0 commit comments

Comments
 (0)