mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22: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
|
@ -187,7 +187,7 @@ Christian Donat <https://github.com/cdonat2>
|
|||
Asuka Minato <https://asukaminato.eu.org>
|
||||
Dillon Baldwin <https://github.com/DillBal>
|
||||
Voczi <https://github.com/voczi>
|
||||
Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com>
|
||||
Ben Nguyen <105088397+bpnguyen107@users.noreply.github.com>
|
||||
Themis Demetriades <themis100@outlook.com>
|
||||
Luke Bartholomew <lukesbart@icloud.com>
|
||||
Gregory Abrasaldo <degeemon@gmail.com>
|
||||
|
|
|
@ -80,6 +80,7 @@ def show(mw: aqt.AnkiQt) -> QDialog:
|
|||
"Andreas Klauer",
|
||||
"Andrew Wright",
|
||||
"Aristotelis P.",
|
||||
"Ben Nguyen",
|
||||
"Bernhard Ibertsberger",
|
||||
"C. van Rooyen",
|
||||
"Cenaris Mori",
|
||||
|
|
|
@ -64,8 +64,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
}
|
||||
$: computing = computingWeights || checkingWeights || computingRetention;
|
||||
$: defaultWeightSearch = `preset:"${state.getCurrentName()}" -is:suspended`;
|
||||
$: desiredRetentionWarning = getRetentionWarning($config.desiredRetention);
|
||||
$: retentionWarningClass = getRetentionWarningClass($config.desiredRetention);
|
||||
$: roundedRetention = Number($config.desiredRetention.toFixed(2));
|
||||
$: desiredRetentionWarning = getRetentionWarning(roundedRetention);
|
||||
$: retentionWarningClass = getRetentionWarningClass(roundedRetention);
|
||||
|
||||
let computeRetentionProgress:
|
||||
| ComputeWeightsProgress
|
||||
|
|
Loading…
Reference in a new issue