@irrelephant If you’re referring to the issue about the notes, then I don’t know if the issue (where notes would seem to disappear) is still happening, but I assume it does. I can’t say for sure because I modified the script to delete the offending code. I wonder if this script was originally written at a time when you couldn’t add notes during lessons. You can definitely do that now, so having anything with notes in the script doesn’t make sense to me.
Here’s the code I deleted to stop the script from (visually) deleting my notes:
// delete keys for notes
if (currentQuizItem.rad) {
$.jStorage.deleteKey('l/note/rad/m/' + currentQuizItem.id);
} else if (currentQuizItem.kan) {
$.jStorage.deleteKey('l/note/kan/m/' + currentQuizItem.id);
$.jStorage.deleteKey('l/note/kan/r/' + currentQuizItem.id);
} else if (currentQuizItem.voc) {
$.jStorage.deleteKey('l/note/voc/m/' + currentQuizItem.id);
$.jStorage.deleteKey('l/note/voc/r/' + currentQuizItem.id);
}
I also made it so that the script only runs on the lessons page and not on the other pages. I never saw the point adding synonyms before lessons.