From 3de04ae8cc652d499f0e59e0f1363eda4c77e3ec Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Sat, 9 Oct 2021 09:15:38 +0200 Subject: [PATCH] updated PlusROM doc --- docs/index.html | 51 ++++++++++++++++----------------- src/gui/PlusRomsSetupDialog.cxx | 6 ++-- 2 files changed, 27 insertions(+), 30 deletions(-) diff --git a/docs/index.html b/docs/index.html index c827beb84..66532ffc8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -21,7 +21,7 @@

A multi-platform Atari 2600 VCS emulator

-

Release 6.5.3

+

Release 6.6


User's Guide

@@ -307,7 +307,7 @@ TIA sprites and collisions for each object separately
  • Full system state save/load functionality
  • Automatic save state creation ('Time Machine') which allows moving back and forth in the recorded timeline
  • -
  • High scores saving (internal or via PlusROMs store)
  • +
  • High scores saving (internal or via PlusROM High Score Club)
  • Cross-platform UI including a built-in ROM launcher frontend
  • Built-in extensive debugger, including static analysis with the Distella disassembler and dynamic analysis at runtime by tracking code/graphics/data sections, and @@ -1996,12 +1996,12 @@

    Notes: -

    +

    Other Emulation Keys (can be remapped)

    @@ -2110,9 +2110,9 @@ Cmd + Up arrow - Enter/Exit the PlusROMs setup dialog - Shift-Control-Alt + P - Shift-Control-Cmd + P + Enter/Exit the PlusROM High Score Club setup dialog + Shift-Control-Alt + P to enter, Shift-Control-Alt + P/Escape to exit and continue with emulation + Shift-Control-Cmd + P to enter, Shift-Control-Cmd + P/Escape to exit and continue with emulation @@ -2277,12 +2277,12 @@ Move cursor to beginning of line Home - Home, Control + A, Command + Left arrow + Home, Control + A, Cmd + Left arrow Move cursor to end of line End - End, Control + E, Command + Right arrow + End, Control + E, Cmd + Right arrow Delete character to left of cursor @@ -2307,7 +2307,7 @@ Delete all text to beginning of line Control + Home, Control + U - Command + Backspace, Control + U + Cmd + Backspace, Control + U Delete all text to end of line @@ -2337,42 +2337,42 @@ Select all text to beginning of line Shift + Home - Shift + Home, Shift-Control + A, Shift-Command + Left arrow + Shift + Home, Shift-Control + A, Shift-Cmd + Left arrow Select all text to end of line Shift + End - Shift + End, Shift-Control + E, Shift-Command + Right arrow + Shift + End, Shift-Control + E, Shift-Cmd + Right arrow Select all text Control + A - Command + A + Cmd + A Cut selected text Control + X, Shift + Delete - Command + X + Cmd + X Copy selected text Control + C, Control + Insert - Command + C + Cmd + C Paste at cursor and replace selection Control + V, Shift + Insert - Command + V + Cmd + V Undo last operation Control + Z - Command + Z + Cmd + Z Redo last operation Control + Y, Shift-Control + Z - Command + Y, Shift-Command + Z + Cmd + Y, Shift-Cmd + Z
    @@ -3282,17 +3282,14 @@
    Note: Only available for Windows - << " -plusroms.nick Define a nickname for the PlusROMs store\n" - << " -plusroms.id Define an ID for the PlusROMs store\n" -
    -plusroms.nick <name>
    - Define a nickname for the PlusROMs store + Define a nickname for the PlusROM High Score Club
    -plusroms.id <id>
    - Define an ID for the PlusROMs store (32 chars, hex) + Define an ID for the PlusROM High Score Club (30 chars, hex) diff --git a/src/gui/PlusRomsSetupDialog.cxx b/src/gui/PlusRomsSetupDialog.cxx index 54f061a1b..e39af8b28 100644 --- a/src/gui/PlusRomsSetupDialog.cxx +++ b/src/gui/PlusRomsSetupDialog.cxx @@ -25,14 +25,14 @@ static const int MAX_NICK_LEN = 16; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PlusRomsSetupDialog::PlusRomsSetupDialog(OSystem& osystem, DialogContainer& parent, const GUI::Font& font) - : InputTextDialog(osystem, parent, font, "Nickname", "PlusROMs setup", MAX_NICK_LEN) + : InputTextDialog(osystem, parent, font, "Nickname", "PlusROM HSC setup", MAX_NICK_LEN) { EditableWidget::TextFilter filter = [](char c) { - return isalnum(c) || (c == '_'); + return isalnum(c) || (c == ' ') || (c == '_') || (c == '.'); }; setTextFilter(filter); - setToolTip("Enter your PlusCart High Score Club nickname here."); + setToolTip("Enter your PlusROM High Score Club nickname here."); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -