René 'Necoro' Neumann

Results 21 issues of René 'Necoro' Neumann

**DO NOT MERGE BLINDLY** As stated in #437, currently no font scaling happens on Linux, but it seems to be needed. This PR wants to look into this issue a...

Is there a reason, that font scaling is only done on Windows? ```go if runtime.GOOS == windows { fontInfo.size *= Context.GetPlatform().GetContentScale() } ``` I know that font scaling under Linux...

enhancement

I have separate feeds of a newspaper that quite often share articles. This leads to having the same item thrice in the same folder. Offer a way to merge items...

enhancement

Currently, only IMAP support is planned; add Maildir support if needed / spare time at hand

help wanted
compatibility

As needed per #151, I added parsing of atom tags in RSS. This adds a mechanism to add a parser for certain extension namespaces. This is now only implemented for...

Stackoverflow uses Atom's author tags in their RSS feed (cf. https://stackoverflow.com/jobs/feed). They indeed use the correct namespace for it. But currently, as this namespace is unknown, it is just added...

Even though I have set python_highlight_builtin_funcs_kwarg to 0, builtins are still hightlighted in decorators, i.e. the `type` is highlighted in `@click.arguments('foo', type = TAG)`.

enhancement
need-opinions

For me, being relatively new to Go, not having a go.mod and dealing with all this GOPATH-mess seems strange. Hence: Add a `go.mod` :)

This PR is similar to #32, with the following deviations: - only citation style links, no omitTableNodes etc - multiple links to the same URL get the same citation index...

Using a full-blown logging framework for outputting a sole call to `Fatalln` is a bit over the top. Use the standard package instead.