diff options
-rw-r--r-- | game/3rdparty/manaverse.rpy | 2 | ||||
-rw-r--r-- | game/core.rpy | 10 | ||||
-rw-r--r-- | game/screens.rpy | 4 |
3 files changed, 13 insertions, 3 deletions
diff --git a/game/3rdparty/manaverse.rpy b/game/3rdparty/manaverse.rpy index cceaf26..9c25389 100644 --- a/game/3rdparty/manaverse.rpy +++ b/game/3rdparty/manaverse.rpy @@ -87,7 +87,7 @@ init 1 python: ## Installer if not MANAPLUS and download: SCR_PROMPT=("Selected client \"%s\" is not installed.\nDo you wish to install it now?\n\n{size=14}By installing you agree with its {a=%s}Terms of Use and Conditions{/a}.%s{/size}" % - ("ManaVerse", "https://gitlab.com/themanaworld/manaplus/manaplus/-/raw/master/COPYING", + ("ManaVerse", "https://git.themanaworld.org/mana/plus/-/raw/master/COPYING", ifte(renpy.linux, "\n{i}libfuse2{/i} is required to run AppImages.", ""))) while SCR_RESULT is None: time.sleep(0.02) diff --git a/game/core.rpy b/game/core.rpy index a6320c3..5f5c292 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -220,6 +220,16 @@ init 10 python: persistent.last_run = now() mp = MultiPersistent("vault.themanaworld.org", True) + ######## + ## Fix keymap + config.keymap['screenshot'].remove('s') + config.keymap['screenshot'].append('K_F10') + config.keymap['screenshot'].append('K_F12') + config.keymap['toggle_skip'].remove('K_TAB') + config.keymap['fast_skip'].remove('>') + config.keymap['toggle_skip'].append('>') + config.keymap['focus_down'].append('K_TAB') + ######### Done with pre-init label splashscreen: show TMW2 at truecenter with None #fade diff --git a/game/screens.rpy b/game/screens.rpy index 0a2f35c..d1e60a3 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -1009,7 +1009,7 @@ screen keyboard_help(): text _("Skips dialogue while held down.") hbox: - label _("Tab") + label _(">") text _("Toggles dialogue skipping.") hbox: @@ -1017,7 +1017,7 @@ screen keyboard_help(): text _("Hides the user interface.") hbox: - label "S" + label "Shift+S" text _("Takes a screenshot.") hbox: |