MMulthaupt

Results 24 issues of MMulthaupt

Link to documentation in README is https://pkg.go.dev/github.com/robfig/cron when it should probably be https://pkg.go.dev/github.com/robfig/cron/v3 Being on the wrong major version is extremely easily missed.

https://github.com/lvandeve/lodepng/blob/master/examples/example_bmp2png.cpp#L100 https://github.com/lvandeve/lodepng/blob/master/examples/example_png2bmp.cpp#L104 Should be `provide` instead of `provice` and in the former `PNG` and `BMP` should be swapped. Copypasta giveth, and copypasta taketh away.

On Windows, if `MouseEvent()` has been called for an `Area`'s `AreaHandler` (for example by clicking on it), no more calls to the handler's `MouseCrossed()` function will happen anymore, ever. This...

In one application we report some sort of progress in the title bar, so the user can see progress even when the application is minimized, e.g. `[34%] My Application` or...

An observation: 20 out of 77 open issues in this project are about compiling. (>25%) I myself spent an entire day just to figure out I actually absolutely need the...

See TODOs in code. Additional TODOs: * `SchemeHandlers` might be better suited to be an array. `systemuri` could then take a `[]string` of arguments to have more information to go...

1. Since some point during development logs made with Go's `log` package no longer get formatted correctly. The line number appears in front instead of at the end. 2. A...

quality
user experience

Call `WNetGetUniversalNameW()` on Windows to see if lexically different paths may be semantically equivalent. Contains the usual ritual of wrapping WINAPI behavior with some sanitization. (I am looking at you,...

The following problem was found occurring in the wild. ``` P Could not rename running binary. [godown/bundle/update_self.go:(*Updater)():103] err=rename F:\Application Data\Setlog\***\***.exe F:\Application Data\Setlog\***\~***.old.f556990e1e510594: The process cannot access the file because it...

needs more info
windows specific
user experience

Go's logging framework is bad: there is no way to differ between log levels, or be able to tell where a log came from. By default we treat logs to...