Ed Merks

Results 491 comments of Ed Merks

Add https://download.eclipse.org/releases/2024-12/ to the preferences ![image](https://github.com/user-attachments/assets/82668885-82e7-434d-b55c-4f9f4e5a7027) Then use menbar Help -> Check for Updates That will update to RC1 (release candidate 1) of the 2024-12 release. After Dec 4th, Check...

This is unlikely to be a priority work item for anyone. You'll still have to wait, the UI just won't say it's frozen which is nicer, but ask yourself, who...

No offense intended! Of course freezing is bad design and there are no "bad" problem reports. I'm just trying to set expectations. As far as I see, there is not...

@sergeniously Probably you have plans to contribute. All modern self-respecting developers contribute to open source: https://github.com/eclipse-platform/.github/blob/main/CONTRIBUTING.md

If you create an development environment with all the source (as in the link), then you can determine something similar in the editor as it currently functions, and search the...

I'm a big confused.... This method ``` public static void main(String[] args) { for (var pattern : List.of("$", "$$", "${}")) { System.err.println(pattern.replaceAll("\\$", "\\$\\$")); System.err.println(pattern.replace("$", "$$")); System.err.println(); } } ``` prints...

@sratz Are there any updates on plans to provide a store that merges the windows root cacerts and the JRE built-in cacerts? The M3 cutoff is rapidly approaching.

Yes, that redirects the Java application to use the system cacerts instead of the JRE/JDK's cacerts. There is the general problem that many users are behind a corporate firewall and...

Certainly you cannot get much earlier than `org.eclipse.equinox.launcher.Main.run(String[])`. I'm not sure if you'd need to consider which properties might be set in the config.ini such that processing should maybe happen...

@sratz So maybe it's better to put the logic in EclipseStarter where it's more **universally** available? That still allows you do insert the logic before much of anything else happens...