version 1.0.0 section added to changelog

This commit is contained in:
onyx-and-iris 2023-09-01 00:55:36 +01:00
parent 20684c645e
commit 9fd43b7e46
2 changed files with 18 additions and 2 deletions

View File

@ -10,3 +10,19 @@ Before any major/minor/patch is released all unit tests will be run to verify th
## [Unreleased] - These changes have not been added to RubyGems yet ## [Unreleased] - These changes have not been added to RubyGems yet
- [ ] - [ ]
## [1.0.0] - 2023-09-01
### Added
- Bindings and abstraction classes are implemented
- An event system:
- `pdirty`: parameter updates on the main Voicemeeter GUI
- `mdirty`: macrobutton updates
- `midi`: incoming data from a connected midi device
- `ldirty`: channel level updates
- An entry point for fetching a Remote class for each kind of Voicemeeter (basic, banana, potato)
- Logging system for reading messages sent by getters and setters.
- Strip class refinement in util.rb. It's scope should be limited to the CBindings module.
- rbs type signatures but some of them need updating.
- example user profile configs included with repo.

View File

@ -3,7 +3,7 @@ module Voicemeeter
module_function module_function
def major def major
0 1
end end
def minor def minor
@ -11,7 +11,7 @@ module Voicemeeter
end end
def patch def patch
1 0
end end
def to_a def to_a