Skip to content

Commit c042930

Browse files
chore: autopublish 2022-08-19T17:59:36Z
1 parent 006da00 commit c042930

11 files changed

+5
-26
lines changed

dist/document_save_as_text.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6695,9 +6695,6 @@ __imports["library.utils"] = function()
66956695
66966696
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
66976697
6698-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
6699-
Email me at jacob.winkler at mac dot com!
6700-
67016698
@ num (number)
67026699
: (string)
67036700
]]

dist/hairpin_creator.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6976,9 +6976,6 @@ __imports["library.utils"] = function()
69766976
69776977
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
69786978
6979-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
6980-
Email me at jacob.winkler at mac dot com!
6981-
69826979
@ num (number)
69836980
: (string)
69846981
]]

dist/layers_swap_selective.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6000,9 +6000,6 @@ __imports["library.utils"] = function()
60006000
60016001
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
60026002
6003-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
6004-
Email me at jacob.winkler at mac dot com!
6005-
60066003
@ num (number)
60076004
: (string)
60086005
]]

dist/score_create_brass_quintet.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ __imports["library.score"] = function()
916916

917917
local score = {}
918918

919-
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, percussion = 12}
919+
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, treble_8ba = 5, tenor_vocal = 5, percussion = 12}
920920
local BRACE_MAP = {
921921
none = finale.GRBRAC_NONE,
922922
plain = finale.GRBRAC_PLAIN,

dist/score_create_double_wind_orchestra_score.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ __imports["library.score"] = function()
916916

917917
local score = {}
918918

919-
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, percussion = 12}
919+
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, treble_8ba = 5, tenor_vocal = 5, percussion = 12}
920920
local BRACE_MAP = {
921921
none = finale.GRBRAC_NONE,
922922
plain = finale.GRBRAC_PLAIN,

dist/score_create_string_orchestra_score.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ __imports["library.score"] = function()
916916

917917
local score = {}
918918

919-
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, percussion = 12}
919+
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, treble_8ba = 5, tenor_vocal = 5, percussion = 12}
920920
local BRACE_MAP = {
921921
none = finale.GRBRAC_NONE,
922922
plain = finale.GRBRAC_PLAIN,

dist/score_create_trombone_choir_score.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ __imports["library.score"] = function()
916916

917917
local score = {}
918918

919-
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, percussion = 12}
919+
local CLEF_MAP = {treble = 0, alto = 1, tenor = 2, bass = 3, treble_8ba = 5, tenor_vocal = 5, percussion = 12}
920920
local BRACE_MAP = {
921921
none = finale.GRBRAC_NONE,
922922
plain = finale.GRBRAC_PLAIN,

dist/staff_rename.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,6 @@ __imports["library.utils"] = function()
141141
142142
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
143143
144-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
145-
Email me at jacob.winkler at mac dot com!
146-
147144
@ num (number)
148145
: (string)
149146
]]

dist/transpose_by_step.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6485,9 +6485,6 @@ __imports["library.utils"] = function()
64856485
64866486
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
64876487
6488-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
6489-
Email me at jacob.winkler at mac dot com!
6490-
64916488
@ num (number)
64926489
: (string)
64936490
]]

dist/transpose_chromatic.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6944,9 +6944,6 @@ __imports["library.utils"] = function()
69446944
69456945
This function was written to emulate the way Finale numbers saves when Autonumber is set to A, B, C... When the end of the alphabet is reached it goes to A1, B1, C1, then presumably to A2, B2, C2.
69466946
6947-
If anyone wants to take the time to figure out what Finale does once you reach Z9 staves I'd love to know!
6948-
Email me at jacob.winkler at mac dot com!
6949-
69506947
@ num (number)
69516948
: (string)
69526949
]]

0 commit comments

Comments
 (0)