OPENIDE #18 Removing Ultimate recommendations

(cherry picked from commit 51b3d30ceafcc14c225dfef7710f6e6945f5c198)
This commit is contained in:
Nikita Iarychenko
2024-11-19 14:49:07 +04:00
parent c313f0721a
commit 51c6120cfb
3 changed files with 3 additions and 5 deletions

View File

@@ -37,7 +37,7 @@
<moduleBuilder builderClass="com.intellij.ide.ultimatepromo.PromoSpringModuleBuilder"/>
<registryKey key="idea.ultimate.features.hints.enabled"
defaultValue="true"
defaultValue="false"
description="IntelliJ IDEA Ultimate features in UI"/>
</extensions>

View File

@@ -661,7 +661,7 @@ fun disableTryUltimate(project: Project) = setTryUltimateKey(project, true)
fun enableTryUltimate(project: Project) = setTryUltimateKey(project, false)
@ApiStatus.Internal
fun tryUltimateIsDisabled() : Boolean = PropertiesComponent.getInstance().getBoolean(TRY_ULTIMATE_DISABLED_KEY)
fun tryUltimateIsDisabled() : Boolean = true
@ApiStatus.Internal
fun tryUltimate(

View File

@@ -18,9 +18,7 @@ import com.intellij.util.PlatformUtils.isIdeaUltimate
private const val IGNORE_ULTIMATE_EDITION = "promo.ignore.suggested.ide"
internal var isIgnoreIdeSuggestion: Boolean
get() = PropertiesComponent.getInstance().isTrueValue(IGNORE_ULTIMATE_EDITION) || PlatformUtils.isJetBrainsClient()
set(value) = PropertiesComponent.getInstance().setValue(IGNORE_ULTIMATE_EDITION, value)
internal var isIgnoreIdeSuggestion: Boolean = true
@Deprecated("Use `getPluginSuggestionNotificationGroup()`")
val notificationGroup: NotificationGroup