Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Feat/Health check tooltip
  • Loading branch information
Luc-Mcgrady committed Jun 8, 2025
commit 84798aa60aff39cc65b05cc71252bc0dcfad555b
2 changes: 2 additions & 0 deletions ftl/core/deck-config.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,8 @@ deck-config-compute-optimal-retention-tooltip =
if it significantly differs from 0.9, it's a sign that the time you've allocated each day is either too low
or too high for the amount of cards you're trying to learn. This number can be useful as a reference, but it
is not recommended to copy it into the desired retention field.
deck-config-health-check-tooltip =
This will show a warning if FSRS struggles to predict your pattern of rating.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Placeholder. Suggestions welcome.

Copy link
Contributor

@Expertium Expertium Jun 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"This will show a warning if FSRS struggles to adapt to your memory.

Health check is performed only when using Optimize Current Preset."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This will show a warning if FSRS struggles to predict your pattern of rating.
This will show a warning if FSRS struggles to adapt to your memory.
Health check is performed only when using Optimize Current Preset.


deck-config-compute-optimal-retention = Compute minimum recommended retention
deck-config-predicted-optimal-retention = Minimum recommended retention: { $num }
Expand Down
2 changes: 1 addition & 1 deletion ts/routes/deck-options/FsrsOptions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
{/if}

<SwitchRow bind:value={$healthCheck} defaultValue={false}>
<SettingTitle on:click={() => openHelpModal("deckConfigHealthCheck")}>
<SettingTitle on:click={() => openHelpModal("healthCheck")}>
<GlobalLabel title={tr.deckConfigHealthCheck()} />
</SettingTitle>
</SwitchRow>
Expand Down
5 changes: 5 additions & 0 deletions ts/routes/deck-options/FsrsOptionsOuter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
help: tr.deckConfigComputeOptimalRetentionTooltip4(),
sched: HelpItemScheduler.FSRS,
},
healthCheck: {
title: tr.deckConfigHealthCheck(),
help: tr.deckConfigHealthCheckTooltip(),
sched: HelpItemScheduler.FSRS,
},
};
const helpSections: HelpItem[] = Object.values(settings);

Expand Down