Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e5aa76e
Add Keyboard Shortcut Remapper
Cadlaxa May 3, 2026
13766a8
left out string
Cadlaxa May 3, 2026
a14684c
translate more oem symbols
Cadlaxa May 3, 2026
78d18cd
fix oem key mismatch for other platforms
Cadlaxa May 3, 2026
797e5e8
more fixes
Cadlaxa May 3, 2026
8c1346b
load external batch edits and legacy plugins to the shortcut list
Cadlaxa May 5, 2026
e5c6395
include built-in batch note, lyrics, reset functions and add dynamic …
Cadlaxa May 5, 2026
7465b6e
reworked shortcuts design
Cadlaxa May 5, 2026
bd55d65
fix ghost data
Cadlaxa May 5, 2026
d6508d2
fix ghost data and write missing default shortcuts
Cadlaxa May 6, 2026
cbb273d
fix macos cmd key
Cadlaxa May 7, 2026
b138477
Merge https://github.com/stakira/OpenUtau into keyboard-sc-remapper
Cadlaxa May 8, 2026
28c21e4
Fix key translator
Cadlaxa May 8, 2026
1f8ec55
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa May 20, 2026
fc6a82d
Fix tag location got lost
Cadlaxa May 20, 2026
53aec44
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa May 23, 2026
28ed133
Fixes to Macos keybinds
Cadlaxa May 23, 2026
e77d982
Fix Shortcut Key (wip)
maiko3tattun May 24, 2026
43495be
Fix Shortct Key (wip2)
maiko3tattun May 24, 2026
ca434d4
Support multiple key, add, delete
May 25, 2026
b3fefb8
support external batch edit
May 31, 2026
674ffb4
fix mac key name
May 31, 2026
6b6d6a5
Apply key binding to Main Window
May 31, 2026
eb7b942
support legacy plugin
May 31, 2026
b7fcfb2
fix key event
May 31, 2026
a0195df
Merge pull request #6 from maiko3tattun/260524_FixShortcut
Cadlaxa Jun 4, 2026
463fe93
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa Jun 4, 2026
bae9d2c
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa Jun 6, 2026
788666c
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa Jun 14, 2026
ea6c17b
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa Jun 14, 2026
505df29
Merge branch 'master' of https://github.com/stakira/OpenUtau into key…
Cadlaxa Jun 23, 2026
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
10 changes: 10 additions & 0 deletions OpenUtau.Core/Util/Preferences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ public static class Preferences {
static Preferences() {
Load();
}
public class ShortcutBinding {
public string ActionId { get; set; }
public string[] Shortcuts { get; set; }

public ShortcutBinding(string actionId, string[] shortcuts) {
ActionId = actionId;
Shortcuts = shortcuts;
}
}
public static void Save() {
try {
File.WriteAllText(PathManager.Inst.PrefsFilePath,
Expand Down Expand Up @@ -216,6 +224,8 @@ public class SerializablePreferences {
public bool LockUnselectedNotesPitch = true;
public bool LockUnselectedNotesVibrato = true;
public bool LockUnselectedNotesExpressions = true;
public ShortcutBinding[] Shortcuts = [];
public ShortcutBinding[] PluginShortcuts = [];
public bool LyricLivePreview = true;
public bool LyricApplySelectionOnly = true;
public bool VoicebankPublishUseIgnore = true;
Expand Down
258 changes: 201 additions & 57 deletions OpenUtau/Controls/PianoRoll.axaml

Large diffs are not rendered by default.

Loading
Loading