Skip to content

Commit

Permalink
various updates
Browse files Browse the repository at this point in the history
- changed mac keyboard shortcuts to CMD+SHIFT+[KEY] (#214)
- fixed typo in lesson-6/vocab-6; まっすぐいき --> まっすぐいく and updated its anki card. (#216)
- added shortcut for checking answers: CTRL+ALT+C. (#220)
  • Loading branch information
SethClydesdale committed Aug 24, 2023
1 parent fa874d3 commit 8dbfd77
Show file tree
Hide file tree
Showing 28 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you're using the offline version you'll have to unzip the files. Once you've


### Keyboard Shortcuts
Genki Study Resources supports a few keyboard shortcuts which you can use to make things easier.
Genki Study Resources supports a few keyboard shortcuts which you can use to make things easier. These shortcuts are typically used via <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>KEY</kbd> for Windows and <kbd>CMD</kbd>+<kbd>SHIFT</kbd>+<kbd>KEY</kbd> for Mac.

#### Global
Shortcuts that can be used anywhere.
Expand All @@ -49,6 +49,7 @@ Shortcuts that can only be used in exercises.
| <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>E</kbd> | Open/Close the Exercise List |
| <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Q</kbd> | Open/Close the Quick Dictionary |
| <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>F</kbd> | Toggle Furigana on/off |
| <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>C</kbd> | Check answers (for written exercises) |


### Suggestions, Feedback, Bug Reports
Expand Down
2 changes: 1 addition & 1 deletion lessons-3rd/lesson-6/vocab-6/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1><a href="../../" id="home-link" class="edition-icon third-ed">Genki Study Re

quizlet : {
'道を聞く|みちをきく' : 'to ask for directions; to ask the way',
'まっすぐ行く|まっすぐいき' : 'go straight',
'まっすぐ行く|まっすぐいく' : 'go straight',
'左に曲がる|ひだりにまがる' : 'turn left',
'右に曲がる|みぎにまがる' : 'turn right',
'道を渡る|みちをわたる' : 'cross the street',
Expand Down
7 changes: 6 additions & 1 deletion resources/javascript/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
// # KEYBOARD SHORTCUTS #
// various keyboard shortcuts used around the website
document.addEventListener('keydown', function (e) {
if (e.ctrlKey && e.altKey || e.metaKey && e.altKey) {
if (e.ctrlKey && e.altKey || e.metaKey && e.shiftKey) {
var button;

// check what key was pressed
Expand Down Expand Up @@ -180,6 +180,11 @@
button = document.getElementById('genki-site-settings');
break;

// check answers (ctrl+alt+c)
case 'c':
button = document.getElementById('check-answers-button');
break;

default:
break;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/javascript/all.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified resources/tools/decks/lessons-3rd/Genki.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_1.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_10.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_11.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_12.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_13.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_14.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_15.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_16.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_17.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_18.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_19.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_2.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_20.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_21.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_22.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_23.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_3.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_4.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_5.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_6.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_7.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_8.apkg
Binary file not shown.
Binary file modified resources/tools/decks/lessons-3rd/Genki_lesson_9.apkg
Binary file not shown.

0 comments on commit 8dbfd77

Please sign in to comment.