Stephan Beal
Stephan Beal
This might be the same issue i was about to report: profiles aren't saved until the console is closed. i created a modified profile, gave it a name, and later...
Possibly related: Chrome/FF: ``` 'abc'.split(/^a/) Array [ "", "bc" ] ``` mujs: ``` 'abc'.split(/^a/) ["abc"] ```
Here's another: Chrome/FF: ``` ' ; a; b ; c'.split(/ *; */); Array(4) [ "", "a", "b", "c" ] ``` mujs: ``` ' ; a; b ; c'.split(/ *; */)...
Another one: Chrome/FF: ``` "aaaa bbb caaa".split(/a(a+)/) Array(5) [ "", "aaa", " bbb c", "aa", "" ] ``` mujs: ``` "aaaa bbb caaa".split(/a(a+)/) ["a", "aa", " bbb c", "aa", ""]...
Another couple: Browsers: ``` "äbä".split(/ä/) Array(3) [ "", "b", "" ] (EDIT: i initially pasted the wrong result there) "bäb".split(/b/) Array(3) [ "", "ä", "" ] ``` mujs: ``` "äbä".split(/ä/)...
i haven't had an issue with it, i just came across it while looking into #130 and it looked suspicious.
i was getting this error at some point, too (installing "unpacked" from the source tree), but it hasn't happened to me in any recent updates, so it seems that that...
@stevenmh the backup utility uses the resolution which the backend feeds it. It has, to the best of my knowledge, no influence over the resolution - it takes what it...
@Phanatic1 this is a Chrome extension and Chrome for Android doesn't support extensions, so it cannot run on Android.
Every online reader uses its own software and requires its own set of hacks to create backups from. Keeping the backup software up to date with the online reader requires...