Skip to content

Commit 52e3f72

Browse files
authored
Merge pull request #762 from rpatters1/RGP/delint
remove lint
2 parents 4b7912e + 6ba7a22 commit 52e3f72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/articulation_reset_auto_positioning.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ logic to manage the stacking context.
1717
"Resets the position of automatically positioned articulations while ignoring those with manual positioning."
1818
end
1919

20-
local articulation = require("library/articulation")
20+
local articulation = require("library.articulation")
2121

2222
-- Before Finale 26, the automatic positioning of articulations was calculated by Finale and stored as the default offset
2323
-- values of the assignment. Starting with Finale 26, the automatic positioning of articulations is inherent in the

src/articulation_reset_positioning.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
function plugindef()
22
finaleplugin.Author = "Robert Patterson"
33
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
4-
finaleplugin.Version = "1.1"
5-
finaleplugin.Date = "July 29, 2024"
4+
finaleplugin.Version = "1.1.1"
5+
finaleplugin.Date = "September 22, 2024"
66
finaleplugin.CategoryTags = "Articulation"
77
finaleplugin.MinFinaleVersionRaw = 0x1a000000
88
finaleplugin.MinJWLuaVersion = 0.58
@@ -16,7 +16,7 @@ logic to manage the stacking context.
1616
return "Reset Articulation Positions", "Reset Articulation Positions", "Resets the position of all selected articulations."
1717
end
1818

19-
local articulation = require("library/articulation")
19+
local articulation = require("library.articulation")
2020

2121
-- Before Finale 26, the automatic positioning of articulations was calculated by Finale and stored as the default offset
2222
-- values of the assignment. Starting with Finale 26, the automatic positioning of articulations is inherent in the

0 commit comments

Comments
 (0)