Damy Wise
Damy Wise
It's been a while since I've worked on it and some things are broken but here you go. https://github.com/foamify/editicert I don't even remember what works and what's broken or how...
> This project is very interesting Thanks! > Do you want to give it a shot? I can't guarantee that I can make time for it, but we'll see. I...
Hello there, sorry it took so long, but I have tried installing them and it's still not working. The error is still the same
Might be related: https://github.com/Vladar4/sdl2_nim/issues/41 https://github.com/sanette/oplot/issues/2
Good news, I've finally found a fix that loads the sdl2 library: modify dylib.dart as follows, inspired by dart_sdl package ```dart //... case 'macos': header = 'lib'; extension = '.dylib';...
Also I made a fork in case anyone wants to test it out https://github.com/damywise/sdl2. If it the libraries doesn't load, just put the *.framework folders to one of the paths...
Adding the following line after the function `awakeFromNib()` also works for hiding the app, though there's no method in this plugin to make it visible again, you need to add...
Seems like this is a duplicate of this https://github.com/ferdium/ferdium-app/issues/1835, there's also a mention of a workaround there. I personally overlooked it because the title and screenshots of this issue provide...
It's https://github.com/hasherezade/pe-bear
Related: https://github.com/Homebrew/brew/issues/15833 You can fix it by adding ```dart final homeDir = Platform.environment['HOME'] ?? ''; pty.write(const Utf8Encoder().convert('export HOME=$homeDir' + carriageReturn)); ``` after `pty.start`. This sets $HOME which is needed by...