Greasy Fork is available in English.

WaniKani Prioritize Overdue Reviews

Prioritize review items that are more overdue based on their SRS level and when the review became available.

< Обсуждения WaniKani Prioritize Overdue Reviews

Отзыв: Нормальный — скрипт работает, но имеет существенные недостатки

Could you please add the following changes to the script to put "level critical" reviews first? It prioritizes apprentice radicals and kanji above all the others. I'm using it locally and very happy with it.

function isLevelCritical(item) {
    return item.srs_stage < 5 && (item.object == "radical" || item.object == "kanji");
}


    // put into mapToOverduePercentData
    if (isLevelCritical(item)) {
        overduePercent = 1000;
    }

The purpose of this script is the exact opposite of what you are proposing. The point is that sometimes even Guru/Master/Enlightened items should be reviewed before Apprentice items since they are more overdue. For this reason, I will not be adding your proposed change to the script.

Ответить

Войдите, чтобы ответить.