diff options
author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-03-15 14:05:47 -0600 |
---|---|---|
committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2023-03-15 14:05:47 -0600 |
commit | 21090101aa81a9c64f46f5db1132d5a1f01a205c (patch) | |
tree | ad00c0843a112424c3ef0dc9030e50d32559aba6 /front | |
parent | 763529e6c3077e8edb8b15886ae4ff25395f22d7 (diff) | |
download | chessh-21090101aa81a9c64f46f5db1132d5a1f01a205c.tar.gz chessh-21090101aa81a9c64f46f5db1132d5a1f01a205c.zip |
Add uci menu and fix previous game viewer wrap around move index
Diffstat (limited to 'front')
-rw-r--r-- | front/src/routes/man_pages.jsx | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/front/src/routes/man_pages.jsx b/front/src/routes/man_pages.jsx index 2d988d8..ea03c2a 100644 --- a/front/src/routes/man_pages.jsx +++ b/front/src/routes/man_pages.jsx @@ -56,11 +56,29 @@ export const ManPages = () => { <ul> <li>Ctrl + b / Escape to return to the main menu.</li> <li>Ctrl + c / Ctrl + d to exit CheSSH at any point.</li> - <li>Arrow keys / hjkl keybinds to move around the board.</li> <li> - Select a piece with "enter", and move it to a square by pressing + Arrow keys / vim (hjkl) keybinds to move around the board and + menus. + </li> + <li>Select menu options with "enter".</li> + <li> + Select a game piece "enter", and move it to a square by pressing "enter" again. </li> + <li> + In the "Previous Games" viewer, use h/l or left/right to view the + previous/next move. + </li> + + <li>In a game board use "f" to flip the board.</li> + <li> + In the "Previous Games" viewer, use "m" to show the game's move + history in UCI notation (which you may convert to PGN{" "} + <a href="https://www.dcode.fr/uci-chess-notation" target="_blank"> + here + </a> + ). + </li> </ul> </div> </div> |