Skip to content

Commit

Permalink
chore: autopublish 2024-03-31T22:58:33Z
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 31, 2024
1 parent 8d94979 commit a219cfd
Show file tree
Hide file tree
Showing 161 changed files with 6,837 additions and 105 deletions.
13 changes: 13 additions & 0 deletions dist/accidental_simplify.lua
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down Expand Up @@ -762,6 +772,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
3 changes: 3 additions & 0 deletions dist/articulation_autoposition_rolled_chords.lua
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
10 changes: 10 additions & 0 deletions dist/barline_chooser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3801,6 +3801,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/baseline_move_reset.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
3 changes: 3 additions & 0 deletions dist/beam_selected_region.lua
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
10 changes: 10 additions & 0 deletions dist/chord_accidental_adjust_down.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/chord_accidental_adjust_up.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/cross_staff_offset.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3815,6 +3815,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/cue_notes_create.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4126,6 +4126,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
13 changes: 13 additions & 0 deletions dist/cue_notes_overlay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4750,6 +4750,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down Expand Up @@ -4837,6 +4840,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
13 changes: 13 additions & 0 deletions dist/deletion_chooser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3274,6 +3274,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down Expand Up @@ -5444,6 +5454,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
13 changes: 13 additions & 0 deletions dist/document_options_as_json.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3137,6 +3137,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down Expand Up @@ -5307,6 +5317,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
10 changes: 10 additions & 0 deletions dist/document_rename_pdfs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4301,6 +4301,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
13 changes: 13 additions & 0 deletions dist/document_save_as_text.lua
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down Expand Up @@ -4238,6 +4241,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
3 changes: 3 additions & 0 deletions dist/expression_add_opaque_background.lua
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
3 changes: 3 additions & 0 deletions dist/expression_remove_enclosure.lua
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
3 changes: 3 additions & 0 deletions dist/expression_reset_positioning.lua
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
3 changes: 3 additions & 0 deletions dist/expression_score_parts_assignment.lua
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down
10 changes: 10 additions & 0 deletions dist/finale_lua_menu_organizer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/gracenote_slash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4532,6 +4532,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
13 changes: 13 additions & 0 deletions dist/hairpin_creator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,9 @@ package.preload["library.note_entry"] = package.preload["library.note_entry"] or
end

function note_entry.get_next_same_v(entry)
if entry.NextSameVInFrame then
return entry:NextSameVInFrame()
end
local next_entry = entry:Next()
if entry.Voice2 then
if (nil ~= next_entry) and next_entry.Voice2 then
Expand Down Expand Up @@ -5012,6 +5015,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
10 changes: 10 additions & 0 deletions dist/harp_pedal_wizard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,16 @@ package.preload["library.utils"] = package.preload["library.utils"] or function(
end
end

function utils.table_is_empty(t)
if type(t) ~= "table" then
return false
end
for _, _ in pairs(t) do
return false
end
return true
end

function utils.iterate_keys(t)
local a, b, c = pairs(t)
return function()
Expand Down
Loading

0 comments on commit a219cfd

Please sign in to comment.