diff --git a/README.md b/README.md index e83184a..34ba8b2 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# FSRS4Anki Helper +# FSRS Helper [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -FSRS4Anki Helper is an Anki add-on that supports [FSRS4Anki](https://github.com/open-spaced-repetition/fsrs4anki) scheduler. It has six main features: +FSRS Helper is an Anki add-on that supports [FSRS4Anki](https://github.com/open-spaced-repetition/fsrs4anki) scheduler. It has six main features: - **Reschedule** cards based on their entire review histories. - **Postpone** a selected number of due cards. @@ -22,7 +22,7 @@ FSRS4Anki Helper is an Anki add-on that supports [FSRS4Anki](https://github.com/ # Installation -The FSRS4Anki Helper add-on is purely an added bonus and is not recommended for extensive use. +The FSRS Helper add-on is purely an added bonus and is not recommended for extensive use. Installation link: https://ankiweb.net/shared/info/759844606 @@ -142,4 +142,4 @@ Interpretation: # Mechanism -Please see this wiki page: [FSRS4Anki Helper WIKI](https://github.com/open-spaced-repetition/fsrs4anki-helper/wiki) +Please see this wiki page: [FSRS Helper WIKI](https://github.com/open-spaced-repetition/fsrs4anki-helper/wiki) diff --git a/__init__.py b/__init__.py index 6fd590c..7472229 100644 --- a/__init__.py +++ b/__init__.py @@ -177,7 +177,7 @@ def sponsor(did=None): menu_sponsor = build_action(sponsor, "Sponsor the Author") -menu_for_helper = mw.form.menuTools.addMenu("FSRS4Anki Helper") +menu_for_helper = mw.form.menuTools.addMenu("FSRS Helper") menu_for_helper.addAction(menu_auto_reschedule_after_sync) menu_for_helper.addAction(menu_auto_disperse_after_sync) menu_for_helper.addAction(menu_auto_disperse) diff --git a/config.md b/config.md index a7da8e9..7d6b38e 100644 --- a/config.md +++ b/config.md @@ -4,7 +4,7 @@ This sets the number of days in "Reschedule cards reviewed in the last n days"; the current day included(!). Works like [searching for "rated:" in the browser](https://docs.ankiweb.net/searching.html?highlight=rated#answered). -## Configure via menu bar: Tools > FSRS4Anki Helper +## Configure via menu bar: Tools > FSRS Helper ### `easy_days` diff --git a/schedule/advance.py b/schedule/advance.py index 67347e9..0e68e02 100644 --- a/schedule/advance.py +++ b/schedule/advance.py @@ -7,9 +7,7 @@ def get_desired_advance_cnt_with_response(safe_cnt, did): inquire_text = "Enter the number of cards to be advanced.\n" notification_text = f"{'For this deck' if did else 'For this collection'}, it is relatively safe to advance up to {safe_cnt} cards.\n" warning_text = "You can advance more cards if you wish, but it is not recommended.\nKeep in mind that whenever you use Postpone or Advance, you depart from the optimal scheduling.\n" - info_text = ( - "This feature only affects the cards that have been scheduled by FSRS4Anki." - ) + info_text = "This feature only affects the cards that have been scheduled by FSRS." (s, r) = getText( inquire_text + notification_text + warning_text + info_text, default="10" ) diff --git a/schedule/postpone.py b/schedule/postpone.py index f956ca4..f499d5a 100644 --- a/schedule/postpone.py +++ b/schedule/postpone.py @@ -7,9 +7,7 @@ def get_desired_postpone_cnt_with_response(safe_cnt, did): inquire_text = "Enter the number of cards to be postponed.\n" notification_text = f"{'For this deck' if did else 'For this collection'}, it is relatively safe to postpone up to {safe_cnt} cards.\n" warning_text = "You can postpone more cards if you wish, but it is not recommended.\nKeep in mind that whenever you use Postpone or Advance, you depart from the optimal scheduling.\n" - info_text = ( - "This feature only affects the cards that have been scheduled by FSRS4Anki." - ) + info_text = "This feature only affects the cards that have been scheduled by FSRS." (s, r) = getText( inquire_text + notification_text + warning_text + info_text, default="10" )