fix errors for 262 eap

This commit is contained in:
Nikita Iarychenko
2026-09-17 12:44:36 +04:00
parent 8ac628320c
commit cdc8a39bef
3 changed files with 4 additions and 4 deletions
@@ -23,7 +23,7 @@ open class OpenIdeProperties(val communityHomeDir: Path): IdeaCommunityPropertie
override val baseFileName: String = "openide"
override fun createWindowsCustomizer(projectHome: Path): WindowsDistributionCustomizer = openideWindowsCustomizer(communityHomeDir)
override fun createLinuxCustomizer(projectHome: String): LinuxDistributionCustomizer = openideLinuxCustomizer(communityHomeDir)
override fun createLinuxCustomizer(projectHome: Path): LinuxDistributionCustomizer = openideLinuxCustomizer(communityHomeDir)
override fun createMacCustomizer(projectHome: Path): MacDistributionCustomizer = openideMacCustomizer(communityHomeDir)
override fun getSystemSelector(appInfo: ApplicationInfoProperties, buildNumber: String): String {
@@ -49,7 +49,7 @@ inline fun openideWindowsCustomizer(projectHome: Path, configure: WindowsCustomi
fullName { "OpenIDE" }
fullNameAndVendor { "OpenIDE" }
installDirNameHandler { "OpenIDE" }
// Apply user configuration
configure()
@@ -31,7 +31,7 @@ object OpenIdePluginBundler {
private val plugins = listOf(
PluginInfo("com.haulmont.intellij.rupack", "ru_pack"),
PluginInfo("com.haulmont.amplicode", "amplicode", version = "2025.3.2-261"),
PluginInfo("com.haulmont.amplicode", "amplicode"),
PluginInfo("ru.openide.pro.updater", "updater")
)
@@ -71,7 +71,7 @@ private fun adjacentWindow(current: Window, delta: Int, activatedWindows: Collec
private fun getWindows(current: Window, activatedWindows: Collection<Window>): List<Window> {
if (SystemInfoRt.isMac && SystemInfo.isJetBrainsJvm && activatedWindows.size > 1) {
if (SystemInfoRt.isMac && SystemInfo.isIDEOptimizedJvm && activatedWindows.size > 1) {
return activatedWindows
.asSequence()
.filter { it === current || isIncludedInWindowSwitchOrder(it) }