Japanese Tofugu + Wakinaki

I modified the deck Wanikani Ultimate 2 Electric Boogaloo
https://ankiweb.net/shared/info/1525552791
I will update the deck slowly when I find the time.
Submit your ideas here please.

New update from wakinaki content update:
Update of November 2020

New update from wakinaki content update:
Update of December 2020

12/11/2021
Due to an error on my part in the previous update, having modified the learning order. I had to reorder everything. please update.

Hi!

My problem is, that there’s no sound. ‘Check media’ says: Missing files: ⁨395⁩
Unused files: ⁨12710⁩
I’ve imported it and i didn’t make any updates.
And there is a ‘しぇ’ card, that says it is ‘sha’. The real しゃ exists correctly.

Thank you for your work, the template looks really good.
For me sound does work.

But… Every answer i give with qwerty or IME is marked wrong.
I think the bar should become green when correct?

wrong

correct

Did a clean install off the deck on my phone only. Same problem unfortunately.

And Atag, only the kana sounds seem to be missing.

@Velociraptux @shibewithball
The reason for the incorect answer check is in this part of js code on the back template:

    var correctAnswers = [];
    var incorrectAnswers = [];
    if (`{{Card}}` === "Meaning") {
        correctAnswers = meaningWhitelist;
        incorrectAnswers = meaningBlacklist;
    } else if (`{{Card}}` === "Reading") {
        correctAnswers = readingWhitelist;
        incorrectAnswers = readingBlacklist;
    }

The author forgot/overlooked that there are more than two types of cards. The ‘Radical’ type is missing.
Quick fix is to put this code instead:

    var correctAnswers = [];
    var incorrectAnswers = [];
    if (`{{Card}}` === "Meaning") {
        correctAnswers = meaningWhitelist;
        incorrectAnswers = meaningBlacklist;
    } else if (`{{Card}}` === "Reading") {
        correctAnswers = readingWhitelist;
        incorrectAnswers = readingBlacklist;
    } else {
        correctAnswers = meaningWhitelist.concat(readingWhitelist)
        incorrectAnswers = meaningBlacklist.concat(readingBlacklist)
    }

:partying_face:

Thanks Jelmer for looking into it!!
I have a Wani lifetime sub, but my friend can’t afford one for the time being.

I’m not too good with Anki, but you made it clear that it makes choices based on: {{Card}}
But currently Card is either: Radical, Kanji, Vocabulary
Nothing the code expects.

Actually it would make sense to have a two cards of every Kanji or Vocab. One for Meaning and one for Reading. With the current card type setup there seems to be no way to differentiate between the Meaning or Reading. Your code for Radicals works because a Radical is always a meaning.

I don’t know what the uploader is using himself. But this thing seems a mess.

To be honest I kinda regret asking about this. There was a lot of work put into WaniKani and their forums.
If you email the support team or wait for the xmas sale its only 200 dollars for a lifetime.

If you go insane turbo mode you could complete it within a year (i couldn’t), and even then you would want another year to keep reviewing those items. So that’s a mere 4 Dollars a month for two years. Even less if you plan to use it longer.

My friend should just get a job…

I don’t think the audio and text are copyrighted. I am not sure about the mnemonics.

The website itself is. Meaning the styling and layout of the website (html/css), javascript functionalities, and of course all their visuals.