Sebastian Ratz

Results 97 comments of Sebastian Ratz

> Do we generally expect that the Windows trust store will be more up-to-date? I.e., is there a possibility that a recently published Termurin-based JRE would have root certificates not...

> @sratz > > Note that I tried these options in the installer, but the result just hangs trying to access the internet. I have not had time to track...

> @sratz: Should we merge this? I updated the PR to use the correct `NONE` instead of `NUL`. Technically this works, but - This is only the platform product. The...

> There was mention of this also being easy to do on macos, I believe by using `-Djavax.net.ssl.trustStoreType=KeychainStore`: > > https://stackoverflow.com/questions/14280578/how-to-set-up-java-vm-to-use-the-root-certificates-truststore-handled-by-mac-o > > I think we should do the Windows...

So the situation on macOS is more complicated. The correct system properties would be ``` -Djavax.net.ssl.trustStoreProvider=Apple -Djavax.net.ssl.trustStoreType=KeychainStore -Djavax.net.ssl.trustStore=NONE ``` however this does NOT have the desired effect: macOS distinguishes between...

> The union is something that the JDK would need to support. It seems odd that it's so poorly support... A union can be achieved in code via a custom...

There is another flipped creation of the context in `Control`: https://github.com/eclipse-platform/eclipse.platform.swt/blob/f37b9eb623e732999016b808915e9e39e581431b/bundles/org.eclipse.swt/Eclipse%20SWT/cocoa/org/eclipse/swt/widgets/Control.java#L2202-L2203 I have provided a pull-request that fixes both of the snippets in https://github.com/eclipse-platform/eclipse.platform.swt/issues/772#issuecomment-1764080659 and https://github.com/eclipse-platform/eclipse.platform.swt/issues/772#issuecomment-1721254721

Ok, well, turns out this is way more complicated and doesn't solve all the issues... In fact, it causes line numbers in the editor to be flipped now. I found...

We just tested the latest version of the Apple macOS developer preview, version 15.0 dev beta 5 (24A5309E) , and the problem appears to be fixed there. If that turns...