From c9744caa15350f07626676d0dc48e38be317494a Mon Sep 17 00:00:00 2001 From: troido Date: Fri, 18 Jan 2019 18:11:04 +0100 Subject: changed filenames for resource configs --- asciifarm/client/loaders.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'asciifarm/client/loaders.py') diff --git a/asciifarm/client/loaders.py b/asciifarm/client/loaders.py index 8330e0e..fef4769 100644 --- a/asciifarm/client/loaders.py +++ b/asciifarm/client/loaders.py @@ -6,7 +6,7 @@ import json standardKeyFiles = { - "default": os.path.join(keybindingsPath, "keybindings.json"), + "default": os.path.join(keybindingsPath, "default.json"), "azerty": os.path.join(keybindingsPath, "azerty.json") } @@ -32,8 +32,10 @@ def loadKeybindings(name): standardCharFiles = {name: os.path.join(charmapPath, file) for name, file in { - "default": "default.json", - "fullwith": "fullwidth.json", + "default": "halfwidth.json", + "halfwidth": "halfwidth.json", + "hw": "halfwidth.json", + "fullwidth": "fullwidth.json", "fw": "fullwidth.json", "emoji": "emoji.json" }.items()} -- cgit