mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix errors for 262 eap
This commit is contained in:
@@ -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) }
|
||||
|
||||
Reference in New Issue
Block a user