lib/qcmd/commands.rb in qcmd-0.1.2 vs lib/qcmd/commands.rb in qcmd-0.1.3
- old
+ new
@@ -10,17 +10,18 @@
# commands that always expect a response
CUE_RESPONSE = %w(
uniqueID hasFileTargets hasCueTargets allowsEditingDuration isLoaded
isRunning isPaused isBroken preWaitElapsed actionElapsed
postWaitElapsed percentPreWaitElapsed percentActionElapsed
- percentPostWaitElapsed type
+ percentPostWaitElapsed type sliderLevels
basics children
)
# commands that expect a response if given without args
NO_ARG_CUE_RESPONSE = %w(
number name notes cueTargetNumber cueTargetId preWait duration
postWait continueMode flagged armed colorName
+ sliderLevel
)
class << self
def machine_response_matcher
@machine_response_matcher ||= %r[(#{MACHINE_RESPONSE.join('|')})]