John Tur

Results 28 comments of John Tur

If it's really deprecated, it would be nice if the official documentation recommending its use was amended: https://learn.microsoft.com/en-us/windows/msix/desktop/desktop-to-uwp-r2r > Q. Can I release binaries using this technology? > > A....

There was a question about (among other things) this on Hacker News: https://news.ycombinator.com/item?id=35985832 @richlander can you clarify?

It should be possible using [`IWebViewControl.InvokeScriptAsync`](https://docs.microsoft.com/en-us/uwp/api/windows.web.ui.iwebviewcontrol.invokescriptasync) and [`IWebViewControl2.AddInitializeScript`](https://docs.microsoft.com/en-us/uwp/api/windows.web.ui.iwebviewcontrol2.addinitializescript), no?

I played around a lot with WebView. The functionality seems to be a little messed up, probably since they have "deprecated" it in favor of WebView2. I couldn't get things...

It does break them: ```cs using System; var s = new S(); Mut(ref s); // Outputs '0' Console.WriteLine(s.V); static void Mut(ref T t) where T : IMutate { t.Mutate(); }...

![image](https://github.com/ShareX/ShareX/assets/27514983/540507aa-0a71-4b10-8726-0e8725ddd89e)

@stanoddly The PR has bitrotted somewhat—some minor tweaks would be required to get it to build again. Otherwise, I believe it's functionally complete: the package it builds contains FNA.dll, debugging...

> What would the story for Unix be? Setting myself up for a lot of work to contribute to libgdiplus :)

Well, I suppose now that dotnet/designs#234 is out of the bag, that makes the Unix story a little easier. :-) @safern Would you mind taking a look at some of...

Ah, I forgot about license headers. I'm not really sure what to do with them, since the ones in other files are ancient. Should I use the .NET Foundation license...