stackotter

Results 173 comments of stackotter

Do reckon we could possibly use [`GSettings`](https://docs.gtk.org/gio/class.Settings.html)? The persistent app state properties can just be converted to json and stored as a string in the settings. My main reason for...

And in terms of how to mark which properties are persistent, we could simplify that with something like this: ```swift protocol AppState: ViewState { associatedtype PersistedState: Codable, ViewState @Observed var...

> I think currently @observed only works with value types and not reference types, which shouldn't be too hard to fix. Oh yeah, good catch. I can fix that pretty...

> I might be able to move the ball forward on this. Awesome! > Would you be opposed to me [building some of this source](https://github.com/AppImage/appimagetool/tree/main) into the solution? Or did...

After @LebJe's improvements to TOMLKit's errors and improving `PackageConfigurationError`'s `LocalizedError` implementation, configuration deserialization errors are now quite succint and informative. These changes are in the early access version which will...

Awesome, thanks for the config!

I've added a new `--vscode` flag to `swift bundler create` now. The flag just applies the `VSCode` overlay template to the project, providing both a `launch.json` and `tasks.json`. I updated...

> Nice. I was under the impression I could not use breakpoints in the release build but I was wrong. 😃 Oh you can? I also assumed that you couldn't...

I'm finally working on Swift Bundler again after not really working on it much at all for probably over 6 months. The early access version currently has support for expressing...

Could you please provide more details on how you would expect `CombineX` to be integrated with `SwiftCrossUI` and where you would expect to be able to use it? Specifically, what...