commit ab79788e7b966982555578ff80e9d4b8a20f4909 parent 419030395048f1858f8b3ce42e58a7b75cb944a9 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Fri, 19 Apr 2024 18:44:03 +0200 delay time knob should not always be visible Diffstat:
4 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/doc/changelog.txt b/doc/changelog.txt @@ -1,5 +1,11 @@ Release Notes +1.3.12 + +OsTIrus: + +- [Fix] Delay Time knob is now disabled if not applicable + 1.3.11 Framework: diff --git a/source/jucePlugin/skins/TrancyTI/VirusTI_Trancy.json b/source/jucePlugin/skins/TrancyTI/VirusTI_Trancy.json @@ -1268,7 +1268,7 @@ "image" : { "x" : "0", "y" : "0", "width" : "1966", "height" : "328", "texture" : "panel_9_fx2_delay_tape_clocked" }, "condition": { "enableOnParameter": "Delay Type", "enableOnValues": "1" }, "children" : [ - { "name" : "DelayTapeDelayTime(ms)", "parameterAttachment" : { "parameter" : "Delay/Tape Delay Time" }, "rotary" : { }, "spritesheet" : { "x" : "846", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, + { "name" : "DelayTapeDelayTime(ms)", "image" : { "x" : "846", "y" : "97", "width" : "138", "height" : "137", "texture" : "button_disable_white" }}, { "name" : "DelayTapeDelayFeedback", "parameterAttachment" : { "parameter" : "Delay/Tape Delay Feedback" }, "rotary" : { }, "spritesheet" : { "x" : "1004", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, { "name" : "Delay/TapeDelayCenterFrequency", "parameterAttachment" : { "parameter" : "Delay/Tape Delay Center Frequency" }, "rotary" : { }, "spritesheet" : { "x" : "1171", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, { "name" : "DelayTapeDelayBandwidth", "parameterAttachment" : { "parameter" : "Delay Tape Delay Bandwidth" }, "rotary" : { }, "spritesheet" : { "x" : "1329", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, @@ -1300,6 +1300,7 @@ "condition": { "enableOnParameter": "Delay Type", "enableOnValues": "0" }, "children" : [ { "name" : "DelayTime", "parameterAttachment" : { "parameter" : "Delay Time" }, "rotary" : { }, "spritesheet" : { "x" : "846", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, + { "name" : "DelayTimeDisabled", "condition": { "enableOnParameter": "Delay Clock", "enableOnValues": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16" }, "image" : { "x" : "846", "y" : "97", "width" : "138", "height" : "137", "texture" : "button_disable_white" }}, { "name" : "DelayFeedback", "parameterAttachment" : { "parameter" : "Delay Feedback" }, "rotary" : { }, "spritesheet" : { "x" : "1004", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, { "name" : "DelayColor", "parameterAttachment" : { "parameter" : "Delay Color" }, "rotary" : { }, "spritesheet" : { "x" : "1171", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, { "name" : "DelayRate", "parameterAttachment" : { "parameter" : "Dly Rate / Rev Decay" }, "rotary" : { }, "spritesheet" : { "x" : "1329", "y" : "135", "width" : "98", "height" : "98", "texture" : "knob_mid", "tileSizeX" : "98", "tileSizeY" : "98" }}, diff --git a/source/jucePlugin/skins/TrancyTI/assets.cmake b/source/jucePlugin/skins/TrancyTI/assets.cmake @@ -53,6 +53,7 @@ set(ASSETS_VirusTI_Trancy ${CMAKE_CURRENT_LIST_DIR}/button_channel_8.png ${CMAKE_CURRENT_LIST_DIR}/button_channel_9.png ${CMAKE_CURRENT_LIST_DIR}/button_disable.png + ${CMAKE_CURRENT_LIST_DIR}/button_disable_white.png ${CMAKE_CURRENT_LIST_DIR}/button_load.png ${CMAKE_CURRENT_LIST_DIR}/button_menu.png ${CMAKE_CURRENT_LIST_DIR}/button_mono_poly.png diff --git a/source/jucePlugin/skins/TrancyTI/button_disable_white.png b/source/jucePlugin/skins/TrancyTI/button_disable_white.png Binary files differ.