Skip to content

Commit

Permalink
Doc/recommended retention range (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock authored Aug 22, 2023
1 parent 9ba8b10 commit e0a2185
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions fsrs4anki_scheduler.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// FSRS4Anki v4.3.0 Scheduler Qt6
// FSRS4Anki v4.5.6 Scheduler Qt6
set_version();
// The latest version will be released on https://github.com/open-spaced-repetition/fsrs4anki/releases/latest

Expand All @@ -12,7 +12,7 @@ const deckParams = [
// The above parameters can be optimized via FSRS4Anki optimizer.
// For details about the parameters, please see: https://github.com/open-spaced-repetition/fsrs4anki/wiki/The-Algorithm
// User's custom parameters for global
"requestRetention": 0.9, // recommended setting: 0.8 ~ 0.9
"requestRetention": 0.9, // recommended setting: 0.75 ~ 0.95
"maximumInterval": 36500,
// FSRS only modifies the long-term scheduling. So (re)learning steps in deck options work as usual.
// I recommend setting steps shorter than 1 day.
Expand Down Expand Up @@ -292,7 +292,7 @@ function is_empty() {
return !customData.again.d | !customData.again.s | !customData.hard.d | !customData.hard.s | !customData.good.d | !customData.good.s | !customData.easy.d | !customData.easy.s;
}
function set_version() {
const version = "v4.3.0";
const version = "v4.5.6";
customData.again.v = version;
customData.hard.v = version;
customData.good.v = version;
Expand Down
6 changes: 3 additions & 3 deletions fsrs4anki_scheduler_qt5.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// FSRS4Anki v4.3.0 Scheduler Qt5
// FSRS4Anki v4.5.6 Scheduler Qt5
set_version();
// The latest version will be released on https://github.com/open-spaced-repetition/fsrs4anki/releases/latest

Expand All @@ -12,7 +12,7 @@ const deckParams = [
// The above parameters can be optimized via FSRS4Anki optimizer.
// For details about the parameters, please see: https://github.com/open-spaced-repetition/fsrs4anki/wiki/The-Algorithm
// User's custom parameters for global
"requestRetention": 0.9, // recommended setting: 0.8 ~ 0.9
"requestRetention": 0.9, // recommended setting: 0.75 ~ 0.95
"maximumInterval": 36500,
// FSRS only modifies the long-term scheduling. So (re)learning steps in deck options work as usual.
// I recommend setting steps shorter than 1 day.
Expand Down Expand Up @@ -301,7 +301,7 @@ function is_empty() {
return !customData.again.d | !customData.again.s | !customData.hard.d | !customData.hard.s | !customData.good.d | !customData.good.s | !customData.easy.d | !customData.easy.s;
}
function set_version() {
const version = "v4.3.0";
const version = "v4.5.6";
customData.again.v = version;
customData.hard.v = version;
customData.good.v = version;
Expand Down

0 comments on commit e0a2185

Please sign in to comment.