Miko Meow
Miko Meow
PNGs or GIFs can currently be improperly detected as JPEGs, this fixes that: 1st it checks for mime on the blob 2nd it checks for data:image/jpeg for dataURLs 3rd it...
Would it make sense to check whether encoding/decoding is needed? ```js if (/^[\u0000-\u007F]*$/i.test(str)) { return str } else { return encode(str) // or decode(str) } ``` Use case—I'm using UTF8.js...
What do you think about adding a `heart` symbol category to the app? I believe it would be a good candidate for QuickDraw as it can is fairly language agnostic,...
This pull request: - Greatly reduces garbage during exports, improving export time. - Fixes error thrown with font_names with underscores - Fixes error when HTMLCanvasElement pattern is sent to C2S...
Although this is valid Canvas operation the following results in the error "Attempted to apply path command to node g": ``` js var ctx = new C2S() ctx.rect(0, 0, 100,...
Currently, the playback cursor does not accurately follow the notes being played back. For example, the following image shows the cursor straddling two notes, which makes it difficult to know...
Currently the distribution builds of Infinite Tree have multiple eval() calls. There are several contexts and situations where using eval() is either prohibited or strongly discouraged. For example; Chrome Extensions,...