Skip to content

Commit 5d4542c

Browse files
chore: autopublish 2024-02-02T14:23:32Z
1 parent 63ff6dd commit 5d4542c

16 files changed

+72
-73
lines changed

dist/harp_pedal_wizard.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ function plugindef()
855855
finaleplugin.RequireSelection = false
856856
finaleplugin.Author = "Jacob Winkler"
857857
finaleplugin.Copyright = "2022"
858-
finaleplugin.Version = "2.0.2"
858+
finaleplugin.Version = "2.0.3"
859859
finaleplugin.Date = "2024-01-15"
860860
finaleplugin.HandlesUndo = true
861861
finaleplugin.MinJWLuaVersion = 0.63

dist/lyrics_openai_hyphenation.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -4962,7 +4962,7 @@ function plugindef()
49624962
finaleplugin.ExecuteHttpsCalls = true
49634963
finaleplugin.Author = "Robert Patterson"
49644964
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
4965-
finaleplugin.Version = "3.0.2"
4965+
finaleplugin.Version = "3.0.3"
49664966
finaleplugin.Date = "October 29, 2023"
49674967
finaleplugin.CategoryTags = "Lyrics"
49684968
finaleplugin.Notes = [[
@@ -5309,7 +5309,7 @@ local function on_selection_changed(text_ctrl)
53095309
global_dialog:GetControl("showfont"):SetText(fontInfo:CreateDescription())
53105310
end
53115311
end
5312-
local function on_timer(_, timer_id)
5312+
local function on_timer(_dialog, timer_id)
53135313
if timer_id ~= context.global_timer_id then return end
53145314
local curr_doc_id = finale.FCDocument().ID
53155315
if curr_doc_id ~= context.current_document_id then
@@ -5462,7 +5462,7 @@ local function create_dialog_box()
54625462
dlg:CreateButton(xoff, yoff, "update")
54635463
:SetText("Update")
54645464
:SetWidth(110)
5465-
:AddHandleCommand(function(_) update_document() end)
5465+
:AddHandleCommand(function(_control) update_document() end)
54665466
xoff = xoff + 120
54675467
dlg:CreateCheckbox(xoff, yoff, "auto_update")
54685468
:SetText("Update Automatically")
@@ -5474,7 +5474,7 @@ local function create_dialog_box()
54745474
dlg:CreateButton(xoff, yoff, "refresh")
54755475
:SetText("Get from Document")
54765476
:SetWidth(150)
5477-
:AddHandleCommand(function(_)
5477+
:AddHandleCommand(function(_control)
54785478
update_dlg_text({reset_undo = false})
54795479
end)
54805480
dlg:CreateCloseButton(xoff + text_width - 80, yoff)

dist/page_format_wizard.lua

+44-44
Large diffs are not rendered by default.

dist/page_title_remove_inserts.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -4886,7 +4886,7 @@ function plugindef()
48864886

48874887
finaleplugin.Author = "Robert Patterson"
48884888
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
4889-
finaleplugin.Version = "1.0"
4889+
finaleplugin.Version = "1.0.1"
48904890
finaleplugin.Date = "February 21, 2021"
48914891
finaleplugin.CategoryTags = "Page"
48924892
finaleplugin.Notes = [[
@@ -4967,7 +4967,7 @@ function create_dialog()
49674967
dialog:CreateButton(current_x, current_y, "fontsel")
49684968
:SetWidth(60)
49694969
:SetText("Font...")
4970-
:AddHandleCommand(function()
4970+
:AddHandleCommand(function(_control)
49714971
local ui = dialog:CreateChildUI()
49724972
local editor = dialog:GetControl("editor")
49734973
local font = get_current_font(editor)
@@ -4997,7 +4997,7 @@ function create_dialog()
49974997
:SetText("Replace Inserts With Generic Text")
49984998
:SetWidth(250)
49994999
:SetCheck(initial_replace_option and 1 or 0)
5000-
:AddHandleCommand(function(_)
5000+
:AddHandleCommand(function(_control)
50015001
on_update_editor(dialog)
50025002
end)
50035003

dist/smufl_load_engraving_defaults.lua

+5-6
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ end
507507
function plugindef()
508508
finaleplugin.Author = "Robert Patterson"
509509
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
510-
finaleplugin.Version = "2.0.1"
510+
finaleplugin.Version = "2.0.2"
511511
finaleplugin.Date = "March 24, 2023"
512512
finaleplugin.CategoryTags = "Layout"
513513
finaleplugin.MinJWLuaVersion = 0.67
@@ -604,14 +604,13 @@ function smufl_load_engraving_defaults()
604604
repeat_prefs:SetBackwardSpace(math.floor(newVal + 0.5))
605605
end,
606606

607-
bracketThickness = function(v) end,
608-
subBracketThickness = function(v) end,
607+
bracketThickness = function(_v) end,
608+
subBracketThickness = function(_v) end,
609609
hairpinThickness = function(v) smart_shape_prefs.HairpinLineWidth = math.floor(efixPerSpace*v + 0.5) end,
610610
octaveLineThickness = function(v) smart_shape_prefs.LineWidth = math.floor(efixPerSpace*v + 0.5) end,
611-
pedalLineThickness = function(v) end,
611+
pedalLineThickness = function(_v) end,
612612
repeatEndingLineThickness = function(v) repeat_prefs.EndingLineThickness = math.floor(efixPerSpace*v + 0.5) end,
613-
arrowShaftThickness = function(v) end,
614-
613+
arrowShaftThickness = function(_v) end,
615614
lyricLineThickness = function(v) lyrics_prefs.WordExtLineThickness = math.floor(efixPerSpace*v + 0.5) end,
616615
textEnclosureThickness = function(v)
617616
size_prefs.EnclosureThickness = math.floor(efixPerSpace*v + 0.5)

dist/smufl_multisegment_curves.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -4760,7 +4760,7 @@ function plugindef()
47604760
finaleplugin.MinJWLuaVersion = 0.68
47614761
finaleplugin.Author = "Robert Patterson"
47624762
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
4763-
finaleplugin.Version = "1.0"
4763+
finaleplugin.Version = "1.0.1"
47644764
finaleplugin.Date = "November 15, 2023"
47654765
finaleplugin.CategoryTags = "Expressions"
47664766
finaleplugin.Notes = [[
@@ -4788,7 +4788,7 @@ local function win_mac(win_val, mac_val)
47884788
end
47894789
return mac_val
47904790
end
4791-
local function on_font_changed(_)
4791+
local function on_font_changed(_control)
47924792
local fontlist = global_dialog:GetControl("fontlist")
47934793
local selected_item = fontlist:GetSelectedItem()
47944794
local fontsize = global_dialog:GetControl("editsize"):GetInteger()
@@ -4904,7 +4904,7 @@ local function create_dialog_box()
49044904
dlg:CreateButton(x_off, y_off, "copy2clip")
49054905
:SetWidth(150)
49064906
:SetText("Copy to Clipboard")
4907-
:AddHandleCommand(function(_)
4907+
:AddHandleCommand(function(_control)
49084908
dlg:GetControl("editor"):TextToClipboard()
49094909
dlg:CreateChildUI():AlertInfo("Text copied to clipboard.", "Text Copied")
49104910
end)

dist/staff_split_layers.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -5159,7 +5159,7 @@ function plugindef()
51595159
finaleplugin.Author = "Robert Patterson"
51605160
finaleplugin.AuthorURL = "https://www.robertgpatterson.com"
51615161
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
5162-
finaleplugin.Version = "v1.0.1"
5162+
finaleplugin.Version = "v1.0.2"
51635163
finaleplugin.Date = "2023/1/11"
51645164
finaleplugin.Notes = [[
51655165
Chords from the source layers in the selected region are split into another layer on the same staff based on a split point.
@@ -5308,7 +5308,7 @@ function create_dialog_box()
53085308

53095309
dialog:CreateOkButton()
53105310
dialog:CreateCancelButton()
5311-
dialog:RegisterHandleOkButtonPressed(function(_)
5311+
dialog:RegisterHandleOkButtonPressed(function(_self)
53125312
do_staff_split_layers()
53135313
end
53145314
)

dist/tuplet_chooser.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -4990,7 +4990,7 @@ function plugindef()
49904990
finaleplugin.Author = "Carl Vine"
49914991
finaleplugin.AuthorURL = "https://carlvine.com/lua/"
49924992
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
4993-
finaleplugin.Version = "v0.70"
4993+
finaleplugin.Version = "v0.70.1"
49944994
finaleplugin.Date = "2023/11/15"
49954995
finaleplugin.AdditionalMenuOptions = [[
49964996
Tuplet Chooser Repeat
@@ -5276,7 +5276,7 @@ local function user_chooses()
52765276
dialog:CreateCancelButton()
52775277
dialog_set_position(dialog)
52785278
dialog:RegisterInitWindow(function() key_list:SetKeyboardFocus() end)
5279-
dialog:RegisterHandleOkButtonPressed(function(_)
5279+
dialog:RegisterHandleOkButtonPressed(function(_self)
52805280
config.last_selected = key_list:GetSelectedItem()
52815281
config.layer_num = layer_num:GetInteger()
52825282
end)

hash/harp_pedal_wizard.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4e40befbc1047e0ac133bbe947ef0eff5b3936ee9c0c9e98f5757dee02f8b7c4d64b27e9f13aa12be5448c71a5448ecb1087776877625a815d48d33b440ef171 harp_pedal_wizard.lua
1+
482fd2c670703e711f9c09698cff62614e34cc10fa361752542bd785e2fdd6cbd610c3104a5e95e9f3ec1879c99f729d1fd2d436466aab74842188139fb737e2 harp_pedal_wizard.lua

hash/lyrics_openai_hyphenation.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ab5a386985b97fcfe1eda5ffe0c70d3b38f29f6a28f2fe30494a04dbfcf037ae0652cad99f4cc6f5d5297117c11967c9f827d2996392d952bb983a5649b59b7b lyrics_openai_hyphenation.lua
1+
6f82dd1c32fe41909ea564adf94b29fc0df6d1ba725c59e95a91374287b1f0785623df09c00b3813ed16ef863d9cf12b8681b1044254dbb900955ba585b67cad lyrics_openai_hyphenation.lua

hash/page_format_wizard.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
126c7658ae008502d7f541b8b14765b599ce877d4067a8c93774927e42817a1b0ae05f85d25231b3f062749b575825bcf9e1d5fb480e6bf023dea5b884242837 page_format_wizard.lua
1+
91f42c439cf23045512d548a327f5e1989a4754a467b401e1ab43a8a41f849261e12e8c8b4599e92f5985ed45aa91d329158a75685e4e3bc9202e254d121e88b page_format_wizard.lua

hash/page_title_remove_inserts.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2307468db5e1f5543a05d84473d4e6005f2f06abd2b7abcbe4d5c115f3d77a6927bb6e822245a2c121ade60f093cdf22284f8ac2a8de12bcaed43f969bfe501e page_title_remove_inserts.lua
1+
45ad0ccf285a06b44f955636dcd367600fd4db6233e4f3fb9083554befd187f82287d21609d5c5e5c1ca1f919d9d514281ecc8414976caee4feeaf3892453dea page_title_remove_inserts.lua
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8ee1114f5e5983a10d02fcfc4b1304f069a684c7ef0e66ded64da297fe5aa638831c3541a53999660a98d93534606c6f6f468625a5e3553d627f8fe73eeeeb69 smufl_load_engraving_defaults.lua
1+
e8c578cb67486eda020ec7da9adcb23ef333e0bfe0bcd9ed70457c863d4d04d637de8ce0ff0b953920737798f34baa74c1db5bd4b5557f058d3747eb34b10814 smufl_load_engraving_defaults.lua

hash/smufl_multisegment_curves.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
a595c378f90ae42a5c842b1c61595348003e3ed9b8402589bb5e45b63cf5db6d4fd420157efa849e56b5718c2aabaa83fa5f4b8d78c57221b3904c1126743346 smufl_multisegment_curves.lua
1+
ada386052f1ac0e96d041f14c3d724ace2cb94170568dabd144419697d4c1d24f191b5f0695fdcb9503b55148598662a70c5e86871776a1756acc48e2a02f3cb smufl_multisegment_curves.lua

hash/staff_split_layers.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
72aaaf9f8d9f2d531bde2e9e908ed33f8a4e15d524fb3908dd9fec600e67545704af1fd5ab4f74377b085a33d50b0975041e20a2453e602b230ff4bb9764904f staff_split_layers.lua
1+
6d01b7cc33169d4e3ab117466f9609bb38872e6515b6491505a8c354761b808fa26067705e49202b446644119dea511ee3933f6ab7efceea6bcd3534e77ee6ce staff_split_layers.lua

hash/tuplet_chooser.hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
08dca6bdc0124f930740b1600606603cb4196be33377e786ea5d27d898e68d2b6f8661ebc5b848f4e0c5e2e5434addf96fcad02869b455c029bf0f719e70ee5c tuplet_chooser.lua
1+
c92dbde07b54fd0e1cc0842efea2dba02f1a99dd97c2768add4bbe0e5f52a77edb2937a3044bdf32285139995a9d46972fbf6712716c651a135c68b2f2da6152 tuplet_chooser.lua

0 commit comments

Comments
 (0)