-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2023.1 Base version support after thought #116
Comments
This is the blog post where they announce Apple Silicon compatibility. I'll try to find out the exact version tho. |
I went through issues and blog posts. Initial support seems to be on @bric3 could you try which one of these builds fine? If the first one is ok, I'd pick that one. |
So I noted two things:
|
Thanks! So basically |
I've read the linked issue. I think we can switch to I'm ok with switching to |
I posted a workaround in the gradle-intellij-plugin issue, on the bright side IC is less heavy than IU to download. Something like might work, but might be required to be removed when ever this plugin bumps it platform version to a more recent version like 2022.1. runIde {
+ providers.gradleProperty("platformType").get().let {
+ if (it == "IU") {
+ systemProperty("idea.platform.prefix", "")
+ }
+ }
} |
The |
That sounds perfect. I'll publish |
Fixes the warning: ``` 'constructor NotificationGroup(String, NotificationDisplayType, Boolean = ..., String? = ..., Icon? = ...)' is deprecated. Use com.intellij.notification.impl.NotificationGroupEP and com.intellij.notification.NotificationGroupManager ``` Refs: lppedd#116
Fixes the warning: ``` 'ActionLink' is deprecated. Deprecated in Java ``` Refs: lppedd#116
Plugin verification is now forbidding Internal APIs, this commit replaces the internal mechanism by combining `StartupActivity` and `RunOnceUtil`. ``` 'com.intellij.ide.ApplicationLoadListener' is marked unstable with @ApiStatus.Internal Overridden method 'beforeApplicationLoaded(com.intellij.openapi.application.@org.jetbrains.annotations.NotNull Application, [email protected] String)' is declared in unstable interface 'com.intellij.ide.ApplicationLoadListener' marked with @ApiStatus.Internal ``` Refs: lppedd#116
Fixes the warning: ``` 'constructor NotificationGroup(String, NotificationDisplayType, Boolean = ..., String? = ..., Icon? = ...)' is deprecated. Use com.intellij.notification.impl.NotificationGroupEP and com.intellij.notification.NotificationGroupManager ``` Refs: lppedd#116
Fixes the warning: ``` 'ActionLink' is deprecated. Deprecated in Java ``` Refs: lppedd#116
Fix is released in 1.13.3, see |
After extending support for 231, I believe it's time to upgrade the base version.
Building on mac is harder now on ARM based macs (M1, M2, etc), the Jetbrains Runtime on 202 didn't have an aarch64 variant. Which causes some problems during the build.
The first ARM based support landed in 2020.3 I think. Additionally to helping regarding the build, /bumping the base version could help supporting this plugin by giving access to new APIs.
The text was updated successfully, but these errors were encountered: