Skip to content

Commit

Permalink
Fix changing items' volume linearly script name
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyBars3k committed Oct 20, 2023
1 parent 51bfb8f commit 2220309
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ num_selected_items = reaper.CountSelectedMediaItems(0)

if num_selected_items < 2 then return end

retval, input_str = reaper.GetUserInputs("Set Volumes", 2, "Start Volume for First Item (dB):,Target Volume for Last Item (dB):", ",")
retval, input_str = reaper.GetUserInputs("Set Volumes", 2, "Start Volume for First Item (dB):\r(optional, otherwise will use existing values),Target Volume for Last Item (dB):", ",")

if not retval then return end

Expand Down Expand Up @@ -52,4 +52,4 @@ end

reaper.UpdateTimeline()
reaper.PreventUIRefresh(-1)
reaper.Undo_EndBlock("MB_Change selected items' volume linearly from earliest item volume to entered target volume", -1)
reaper.Undo_EndBlock("MB_Change selected items' volume linearly from user-entered OR existing items' volume values", -1)
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-- @description MB_Utilities: Various utility scripts for Reaper
-- @author MonkeyBars
-- @version 1.5.1
-- @changelog Add field for earliest item in changing items' volume linearly; Add script for changing item's volume linearly with no inputs
-- @version 1.5.2
-- @changelog Fix changing items' volume linearly script name
-- @provides [main] .
-- [main] MB_Change selected items' volume linearly from earliest item volume to entered target volume.lua
-- [main] MB_Change selected items' volume linearly from user-entered OR existing items' volume values.lua
-- [main] MB_Change selected items' volume linearly from earliest to latest item volumes.lua
-- [main] MB_Create new autoincremented folder and save project.lua
-- [main] MB_Create new pair of grouped tracks with MIDI & stereo audio routing to & from selected (virtual instrument) tracks.lua
Expand Down

0 comments on commit 2220309

Please sign in to comment.