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 的反馈

评价:一般 - 脚本能用,但还有一些问题

§
发布于:2020-07-20

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;
    }
seanblue作者
§
发布于:2020-08-23

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.

发布留言

登录以发布留言。