Kasper Mikiewicz
Kasper Mikiewicz
@epresi Hey, sorry but all tasks are on hold now. I have rewritten app into https://www.electronjs.org and https://vuejs.org . Writing in C# is too much troublesome. I've already reimplemented most...
@epresi sure :) I just don't know if it should be released in new repository or overwrite this full of shame C# code
 Possible enhancements: - copy image as base64 string - copy image width/height - rotate image - `Alt+Left arrow` or `Alt+Right arrow` - save as file
Importing one by one fixed this for me: ```ts import maxSatisfying from "semver/ranges/max-satisfying"; import minSatisfying from "semver/ranges/min-satisfying"; import coerce from "semver/functions/coerce"; ```
`ctx.args.file.size` would also be helpful // Edit: `ctx.args.file.length` is available
@23doors any idea how to build query for that? For whereBetween this works: ```js whereBetween(column, min, max) { return this.where([ [column, 'gte', min], [column, 'lte', max] ]) } ``` For...
@23doors okey, thanks!
@mkucharz Maybe we should always forward user key if it's detected in current request, what do you think?
@mkucharz can you write at least one example? That sub request is still a part of main request which have user data.
@mkucharz should I also add alias `inc`? ``` data.posts.inc('votes') data.posts.increment('votes') ```