Jani

Results 53 comments of Jani

Ah, that makes sense. I'll be waiting for the release, thanks!

I have not encountered the errors above, but I just updated from v1.5.1 to v1.6.0 and noticed the installer installed the WSL Windows' feature and required a reboot as I...

As a workaround is to set `nopipe` to true: ```js sh("myfailingcommand", { nopipe: true, async: false }); ``` [This will change `stdio` to `["inherit", "inherit", "inherit"]`](https://github.com/pawelgalazka/shell/blob/808e21506f4395389a67dfa6df51948db4f25c05/src/index.ts#L147-L151).

If I understood correctly, .NET 7 will completely remove cross-platform support for `System.Drawing.Common`: > Alternatively, you can enable support for non-Windows platforms in .NET 6 by setting the `System.Drawing.EnableUnixSupport` [runtime...

Thanks for looking into this. One request though: maybe release 2.2.3 soon? 😄

I'm interested in this functionality as well. One solution could be to compile `.po` files to `.mo` files during build using a custom `MSBuild` task. Then compilation would not need...

> You can create a custom MSBuild pre-build task that would call xgettext, msgfmt and so on, to extract strings and compile .mo files. It should be about two lines...

Ah, apparenly changing the query to the following fixes the issue: ```plain 1970-01-01 query "Food per month" "select year, month, sum(position) as position where account ~ 'Expenses:Food' group by year,...

> I'd recommend just using Unix line endings. That's exactly the fix I'm looking for in Fava. Editing the ledger file with Fava converts the line endings from `\n` to...

> Ah, apparenly changing the query to the following fixes the issue: Nevermind. I just noticed something. If I add a new entry using the add transaction dialog, it messes...