Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/key_modes_manage.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ function plugindef()
finaleplugin.MinJWLuaVersion = 0.72
finaleplugin.Author = "Robert Patterson"
finaleplugin.Copyright = "CC0 https://creativecommons.org/publicdomain/zero/1.0/"
finaleplugin.Version = "1.1.0"
finaleplugin.Date = "April 6, 2024"
finaleplugin.Version = "1.1.1"
finaleplugin.Date = "June 8, 2025"
finaleplugin.CategoryTags = "Key Signatures"
finaleplugin.Notes = [[
This script provides a simplified interface for managing the most common types
Expand Down Expand Up @@ -772,6 +772,7 @@ local function copy_dialog_to_def(dialog, def, for_create)
def.AccidentalOrder, def.AccidentalAmounts = get_acci_order_and_amounts(dialog)
-- populate clef accidental octaves
def.ClefAccidentalPlacements = context.current_acci_octaves
def.HasClefAccidentalPlacements = next(context.current_acci_octaves) ~= nil
-- success exit
return true
end
Expand Down
Loading