mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Bug with “A 100 day interval will become X days.” (#3432)
* add name to about page * use two decimal retention for calculations * Update CONTRIBUTORS * format * Update CONTRIBUTORS * Update CONTRIBUTORS * Update CONTRIBUTORS
This commit is contained in:
parent
b08e454f57
commit
c2f3e63b90
3 changed files with 5 additions and 3 deletions
|
@ -80,6 +80,7 @@ def show(mw: aqt.AnkiQt) -> QDialog:
|
||||||
"Andreas Klauer",
|
"Andreas Klauer",
|
||||||
"Andrew Wright",
|
"Andrew Wright",
|
||||||
"Aristotelis P.",
|
"Aristotelis P.",
|
||||||
|
"Ben Nguyen",
|
||||||
"Bernhard Ibertsberger",
|
"Bernhard Ibertsberger",
|
||||||
"C. van Rooyen",
|
"C. van Rooyen",
|
||||||
"Cenaris Mori",
|
"Cenaris Mori",
|
||||||
|
|
|
@ -64,8 +64,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
}
|
}
|
||||||
$: computing = computingWeights || checkingWeights || computingRetention;
|
$: computing = computingWeights || checkingWeights || computingRetention;
|
||||||
$: defaultWeightSearch = `preset:"${state.getCurrentName()}" -is:suspended`;
|
$: defaultWeightSearch = `preset:"${state.getCurrentName()}" -is:suspended`;
|
||||||
$: desiredRetentionWarning = getRetentionWarning($config.desiredRetention);
|
$: roundedRetention = Number($config.desiredRetention.toFixed(2));
|
||||||
$: retentionWarningClass = getRetentionWarningClass($config.desiredRetention);
|
$: desiredRetentionWarning = getRetentionWarning(roundedRetention);
|
||||||
|
$: retentionWarningClass = getRetentionWarningClass(roundedRetention);
|
||||||
|
|
||||||
let computeRetentionProgress:
|
let computeRetentionProgress:
|
||||||
| ComputeWeightsProgress
|
| ComputeWeightsProgress
|
||||||
|
|
Loading…
Reference in a new issue