mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 22:42:25 -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>
|
Asuka Minato <https://asukaminato.eu.org>
|
||||||
Dillon Baldwin <https://github.com/DillBal>
|
Dillon Baldwin <https://github.com/DillBal>
|
||||||
Voczi <https://github.com/voczi>
|
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>
|
Themis Demetriades <themis100@outlook.com>
|
||||||
Luke Bartholomew <lukesbart@icloud.com>
|
Luke Bartholomew <lukesbart@icloud.com>
|
||||||
Gregory Abrasaldo <degeemon@gmail.com>
|
Gregory Abrasaldo <degeemon@gmail.com>
|
||||||
|
|
|
@ -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