add BusDevice to Bus class.

CHANGELOG updated.
This commit is contained in:
onyx-and-iris 2023-09-14 18:22:13 +01:00
parent 68f96b64db
commit 7825b58bb1
3 changed files with 9 additions and 2 deletions

View File

@ -11,6 +11,12 @@ Before any major/minor/patch is released all unit tests will be run to verify th
- [ ] - [ ]
## [1.0.1] - 2023-09-14
### Added
- BusDevice added to Bus class.
## [1.0.0] - 2023-09-01 ## [1.0.0] - 2023-09-01
### Added ### Added

View File

@ -7,7 +7,7 @@ module Voicemeeter
include Mixins::Return include Mixins::Return
extend MetaFunctions extend MetaFunctions
attr_reader :eq, :mode, :levels attr_reader :eq, :mode, :levels, :device
attr_accessor_bool :mute, :mono, :sel, :monitor attr_accessor_bool :mute, :mono, :sel, :monitor
attr_accessor_float :gain attr_accessor_float :gain
attr_accessor_string :label attr_accessor_string :label
@ -21,6 +21,7 @@ module Voicemeeter
@eq = BusEq.new(remote, i) @eq = BusEq.new(remote, i)
@mode = BusModes.new(remote, i) @mode = BusModes.new(remote, i)
@levels = BusLevels.new(remote, i) @levels = BusLevels.new(remote, i)
@device = BusDevice.new(remote, i)
end end
def identifier def identifier

View File

@ -11,7 +11,7 @@ module Voicemeeter
end end
def patch def patch
0 1
end end
def to_a def to_a