Stéphane Lenclud
Stéphane Lenclud
I removed all those binaries. It could still be a while until I'm ready for release but you could re-enable autoupdates already.
Release is ready, have a go at it.
Build is broken #680
Ok, issues should be fixed in the new release v1.10.1.
> I tried to replace it at build time but it failed with https://gitlab.com/fdroid/fdroiddata/-/jobs/11164513901#L630 You need to fetch the submodules: `git submodule update --init --recursive` See if that helps. I'm...
That is odd. It's on a closed source project which makes extensive use of Win32 APIs so maybe that's in combination with those API calls somehow.
Yeah it's definitly not a DPI issue. Instead it somehow breaks access to some settings controlling the look and feel of the UI used by a derived class through XAML...
The derived class has a list view with a data template for the list items and those list items are using binding to get some settings. Those bindings are broken...
I updated the post above. Everything works fine when not deriving from `WindowEx`. To break it I just change: ```C# internal class WindowBase : Microsoft.UI.Xaml.Window, INotifyPropertyChanged ``` to ```C# internal...
The settings class is using ```C# ApplicationDataContainer iSettings = ApplicationData.Current.LocalSettings; ``` internally to store values. But the ones that are accessed from simplier bindings outside of the list items without...