Skip to content

Commit

Permalink
replace FSRS4Anki with FSRS
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock committed Jul 1, 2024
1 parent 9e241ad commit 776e979
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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

Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion config.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
4 changes: 1 addition & 3 deletions schedule/advance.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 1 addition & 3 deletions schedule/postpone.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit 776e979

Please sign in to comment.