mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2024-11-15 23:00:48 +00:00
add BusDevice to Bus class.
CHANGELOG updated.
This commit is contained in:
parent
68f96b64db
commit
7825b58bb1
@ -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
|
||||
|
||||
### Added
|
||||
|
@ -7,7 +7,7 @@ module Voicemeeter
|
||||
include Mixins::Return
|
||||
extend MetaFunctions
|
||||
|
||||
attr_reader :eq, :mode, :levels
|
||||
attr_reader :eq, :mode, :levels, :device
|
||||
attr_accessor_bool :mute, :mono, :sel, :monitor
|
||||
attr_accessor_float :gain
|
||||
attr_accessor_string :label
|
||||
@ -21,6 +21,7 @@ module Voicemeeter
|
||||
@eq = BusEq.new(remote, i)
|
||||
@mode = BusModes.new(remote, i)
|
||||
@levels = BusLevels.new(remote, i)
|
||||
@device = BusDevice.new(remote, i)
|
||||
end
|
||||
|
||||
def identifier
|
||||
|
@ -11,7 +11,7 @@ module Voicemeeter
|
||||
end
|
||||
|
||||
def patch
|
||||
0
|
||||
1
|
||||
end
|
||||
|
||||
def to_a
|
||||
|
Loading…
Reference in New Issue
Block a user