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.

發表回覆

登入以回覆