-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update OneSmallStep v0.9.4 > v0.9.5 (#1326)
* Update OneSmallStep v0.9.4 > v0.9.5
- Loading branch information
1 parent
1da4bc6
commit 09214ba
Showing
29 changed files
with
603 additions
and
247 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
MIDI Editor/talagan_OneSmallStep Change note len modifier.lua
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Change input mode.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
local param = select(2, reaper.get_action_context()):match("%- ([^%s]*)%.lua$"); | ||
|
||
local mode = engine_lib.InputMode[param]; | ||
if mode then | ||
engine_lib.setInputMode(mode) | ||
end |
10 changes: 10 additions & 0 deletions
10
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Change note len modifier.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
local modifier = select(2, reaper.get_action_context()):match("%- ([^%s]*)%.lua$"); | ||
|
||
engine_lib.setNoteLenModifier(engine_lib.NoteLenModifier[modifier]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Change note len.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
local param = select(2, reaper.get_action_context()):match("%- ([^%s]*)%.lua$"); | ||
|
||
engine_lib.setNoteLen(param); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Commit back.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.reaperActionCommitBack(); |
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Commit.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.reaperActionCommit(); |
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Decrease note len.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.decreaseNoteLen(); |
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Increase note len.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.increaseNoteLen(); |
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Insert Commit back.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.reaperActionInsertBack(); |
9 changes: 9 additions & 0 deletions
9
MIDI Editor/talagan_OneSmallStep/actions/talagan_OneSmallStep Insert Commit.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- @noindex | ||
-- @author Ben 'Talagan' Babut | ||
-- @license MIT | ||
-- @description This is part of One Small Step | ||
|
||
package.path = debug.getinfo(1,"S").source:match[[^@?(.*[\/])actions[\/][^\/]-$]] .."?.lua;".. package.path; | ||
local engine_lib = require "classes/engine_lib"; | ||
|
||
engine_lib.reaperActionInsert(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.