stackotter
stackotter
Yep I’d be happy to merge that! It doesn’t affect Swift Bundler projects cause it’s simply for code generation purposes, and keeping those sorts of common dependencies up to date...
Thanks for bringing this to my attention! It hasn't bothered me for ages cause I'm using a tiling window manager (so the app is always fully visible when launched, and...
For anyone stumbling across this issue, here's a more backwards compatible version of the hack (`.task` is only available for macOS 12.0+), ```diff import SwiftUI @main struct MyApp: App {...
> (btw. Thanks for Bundler. It helps a ton! 🙏) Glad that you're finding it useful! > ...until (by accident) I ran my app from the terminal without tmux. 😳...
At the moment it kinda works like that (although that's just a result of not specifying a default window size, and letting each UI framework do whatever it wants). The...
Yeah, probably quite a sensible default at least
I'd be happy to add support for libadwaita, the eventual aim is to have quite a few other backends other than Gtk, so libadwaita is well within the scope of...
> Adding _basic_ Libadwaita support is basically using `adw_application_new` instead of `gtk_application_new`. This uses at least the Libadwaita stylesheet, so it looks more like the other GNOME apps. The other...
This will likely be best addressed by allowing modifiers to be propagated down the view graph and given to all backend methods so that modifiers like foregroundColor can be applied...
My only idea so far is to make Package.swift remove all non-tested targets when a `TEST` environment variable is present so that you can run `TEST=1 swift test`, but that's...