GithubAnon0000
GithubAnon0000
Oh and, btw: Probably it would be better to follow https://github.com/ankitects/anki/blob/main/SECURITY.md regarding security related issues. Dae will see it if you contact him that way.
Would also be nice if the colors where consistent. E.g. the _reviews_ graph uses `rgb(179, 211, 233);` for blue, whereas the _card counts_ uses `#6baed6` (equivalent of `rgba(107,174,214) ;`) for...
As an additional info: There is a color contrast checker: https://www.audioeye.com/color-contrast-checker/ Using the color picker (in dev tools) I get `#9f9cba` for violet and `#84a8c3` for blue in the current...
I'd like to add as a heads up that changing the colors in _Reviews_ Graph should also change the colors in other places accordingly. E.g. the _Card Counts_ graph uses...
> The direction of the card must be the same, not dependent on the UI language. Why? One could argue that the user is probably going to create cards in...
Makes sense to me, thanks for explaining it! > > Please solve the issue (in this case: you need to add yourself to CONTRIBUTERS). > > I think someone with...
It does work @f4grx @htAngryFace. Here is an example: ```js (video, objectType) => { // block videos with less than 1,000,000 views if (video.viewCount
@nadir-advian do you have an example video so that I can check? The condition would be `video.viewCount < 1`.
@nadir-advian You're right, `console.log(JSON.stringify(video));` shows `null` for `viewCount`. The following works for me: ```js // block videos with 0 views let viewCountStr = JSON.stringify(video.viewCount); if (viewCountStr.includes("null")) { return true; }...
> The file opens just fine on Linux Can confirm. I opened your file and used "save as". The file size differs a little bit (new file 184,5 kB, old...