[Userscript] Dashboard Progress Plus

Amazing work, thanks a lot for that. 

For some reasons, those brackets really bother me aesthetically, they don’t quite fit with the rest. Would it be difficult to have an option to make it look something like this for example:



Cheers, 
Julien

yoshindustry said... Amazing work, thanks a lot for that. 

For some reasons, those brackets really bother me aesthetically, they don't quite fit with the rest. Would it be difficult to have an option to make it look something like this for example:



Cheers, 
Julien


 I definitely second this. It’s really not a big deal, but if it would be a quick addition, I think it would be worth it. :slight_smile:

2015-12-24  v1.2.7 - Improved aesthetics.



Thanks for the suggestions!  I had originally considered something like what @yoshindustry drew, but it would require HTML changes, which I was trying to avoid to prevent conflicts with what WaniKani’s own javascript code is doing.  So, I needed a CSS-only method.

I was never completely satisfied with the brackets, but was short on ideas at the time.  You gave me incentive to revisit the aesthetics.  Is this an improvement?

Awesome!! Love the new style!:smiley:

Excellent, thanks for looking into it, I much prefer the new look compared to the bracket. Cheers, Julien

It looks lovely. Installing it now thanks to mrgameraidz’ suggestion and link pointing me here. :smiley:

Could you possibly add an option to switch to the 24 hour clock system?
Stuff like “11:30 pm” are confusing for those who’s native language isn’t English, like me.

.

Blaveloper said... Could you possibly add an option to switch to the 24 hour clock system?
Stuff like "11:30 pm" are confusing for those who's native language isn't English, like me.
 it's the first option in the settings dialog of the timline -> "time format"

shikajitokashi said...
Blaveloper said... Could you possibly add an option to switch to the 24 hour clock system?
Stuff like "11:30 pm" are confusing for those who's native language isn't English, like me.
 it's the first option in the settings dialog of the timline -> "time format"

 I wrote the same.... but it's not about the time timeline but dashboard progress plus and there's no such option.
embe said...
shikajitokashi said...
Blaveloper said... Could you possibly add an option to switch to the 24 hour clock system?
Stuff like "11:30 pm" are confusing for those who's native language isn't English, like me.
 it's the first option in the settings dialog of the timline -> "time format"

 I wrote the same.... but it's not about the time timeline but dashboard progress plus and there's no such option.
oh, you're right! i wondered about your . post but i never looked at the individual item's review time before so i didn't even consider that.
well, it's in line 323 of the userscript but i don't know how to code. what is this, javascript?

v1.2.8  - Added option for 24hr time format.

To enable the option:
Open the script code, scroll down to the [Settings] section, and remove the // from the line that looks like this:

//   localStorage.wkdpp_timefmt = 1;

Or, open your javascript console (F12 in most browsers), paste following line, and press Enter:
localStorage.wkdpp_timefmt = 1

rfindley said... v1.2.8  - Added option for 24hr time format.

To enable the option:
Open the script code, scroll down to the [Settings] section, and remove the // from the line that looks like this:
//   localStorage.wkdpp_timefmt = 1;

Or, open your javascript console (F12 in most browsers), paste following line, and press Enter:
localStorage.wkdpp_timefmt = 1
 Thanks for your quick action, it works.

Why are some of my unlocks all gray? Did I do something wrong?


Looks like you are using one of the Alternate Color Schemes in the script settings at the top of the script.

// Alternate color scheme for SRS levels.  One color each for
// apprentice, guru, master, enlightened, burned, and locked.
//   localStorage.wkdpp_srs_radical_colors = ‘#0af,#999,#999,#999,#999,#0af’;
//   localStorage.wkdpp_srs_kanji_colors = ‘#f0a,#999,#999,#999,#999,#f0a’;

The “#999” is the gray color you are seeing, and is applied to Guru, Master, Enlightened, and Burned.  The other first and last are Apprentice and Locked.

Do you have “//” before those two ‘localStorage’ lines?  If not, add the //.

But it’s also saved in your localStorage, so you’ll need to delete that, too (after fixing the lines above).  Open your Javascript console (F12 in most browsers), and paste the following two lines:

delete localStorage.wkdpp_srs_radical_colors;
delete localStorage.wkdpp_srs_kanji_colors;

Sorry for the delay in getting back to you when you got back to me right away.

I checked my script and I have the “//” in front of that section but who knows what might have synced across my browser settings haha. I ran the two line you provided in the Javascript console and that resolved the issue with the gray icons. Thanks for that!




For some reason it doesn’t show anything. Like at all… Nothing’s changed, no time line was added and none of the features seem to work. PLS HALP!

You have added a different userscript… It should be Wanikani Ultimate Timeline not Dashboard Progress Plus.

FatefulStudent said... For some reason it doesn't show anything. Like at all.. Nothing's changed, no time line was added and none of the features seem to work. PLS HALP!


 The Dashboard Progress Plus
script adds an alternative to the progress bar. If you click on ‘see apprentice radicals/kanji left’ at the bottom of your image, you’ll see the result.

However, it seems you want the Ultimate Timeline script, which can be found here: /t/Userscript-WaniKani-Ultimate-Timeline/10516/1

Oh, I see. Thanks both of you. Appreciated!