Bump Buffr Blitch to 0.2.0
This commit is contained in:
parent
1c0ef2fa06
commit
9206b8489d
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -494,7 +494,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "buffr_glitch"
|
name = "buffr_glitch"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nih_plug",
|
"nih_plug",
|
||||||
]
|
]
|
||||||
|
|
|
@ -6,22 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic
|
and this project adheres to [Semantic
|
||||||
Versioning](https://semver.org/spec/v2.0.0.html).
|
Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.2.0] - 2023-01-17
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added polyphony support. You can now play up to eight voices at once.
|
- Added polyphony support. You can now play up to eight voices at once.
|
||||||
- Added an option to crossfade the recorded buffer to avoid clicks when looping
|
- Added an option to crossfade the recorded buffer to avoid or dial down clicks
|
||||||
around.
|
when looping.
|
||||||
- Added attack and release time controls to avoid clicks when pressing or
|
- Added attack and release time controls to avoid or dial down clicks when
|
||||||
releasing a key.
|
pressing or releasing a key.
|
||||||
- Added an optional velocity sensitive mode.
|
- Added an optional velocity sensitive mode.
|
||||||
|
- Added support for polyphonic CLAP and VST3 volume note expressions to
|
||||||
|
precisely control each note's volume while it's playing.
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- The normalization option has temporarily been removed since the old method to
|
- The normalization option been removed since the old method to automatically
|
||||||
automatically normalize the buffer doesn't work anymore with below recording
|
normalize the buffer doesn't work anymore with recording change mentioned
|
||||||
change.
|
below.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@ -29,4 +31,4 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
back previously played audio. This makes it possible to use Buffr Glitch in a
|
back previously played audio. This makes it possible to use Buffr Glitch in a
|
||||||
more rhythmic way without manually offsetting notes. This is particularly
|
more rhythmic way without manually offsetting notes. This is particularly
|
||||||
important at the start of the playback since then the buffer will have
|
important at the start of the playback since then the buffer will have
|
||||||
otherwise been completely silent.
|
otherwise been completely silent, and also when playing chords.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "buffr_glitch"
|
name = "buffr_glitch"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
Loading…
Reference in a new issue