Skip to content

Commit d78a275

Browse files
committed
Fix indexing
1 parent 37285db commit d78a275

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: deploy
22
on:
33
push:
4-
branches: [master]
4+
branches: [main]
55
jobs:
66
reapack-index:
77
runs-on: ubuntu-latest

brute-seq/Modules/GUI.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
-- @noindex
2+
13
-- config
24
local fontSize = 12
35

brute-seq/Modules/MIDI.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
-- @noindex
2+
13
function getSequencerTrack()
24
local track
35
for i = 0, reaper.CountTracks(0) - 1 do

brute-seq/Modules/Transport.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
-- @noindex
2+
13
function setTimeSelectionFromItem(item)
24
local startPos = reaper.GetMediaItemInfo_Value(item, "D_POSITION")
35
local length = reaper.GetMediaItemInfo_Value(item, "D_LENGTH")

brute-seq/brute-seq.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
-- @license GPL v3
44
-- @version 0.0.1
55
-- @provides
6-
-- Modules/*.lua
6+
-- [main] brute-seq.lua
7+
-- [nomain] Modules/*.lua
78
-- Images/*.png
89
-- Fonts/*.ttc
910

0 commit comments

Comments
 (0)