Mark multiplatform projects as experimental in the UI

This commit is contained in:
Dmitry Jemerov
2017-09-27 16:45:56 +02:00
parent a7443adb65
commit 16a97a8917
2 changed files with 4 additions and 4 deletions
@@ -138,7 +138,7 @@ open class GradleKotlinJSFrameworkSupportProvider(frameworkTypeId: String = "KOT
}
open class GradleKotlinMPPCommonFrameworkSupportProvider :
GradleKotlinFrameworkSupportProvider("KOTLIN_MPP_COMMON", "Kotlin (Multiplatform - Common)", KotlinIcons.SMALL_LOGO) {
GradleKotlinFrameworkSupportProvider("KOTLIN_MPP_COMMON", "Kotlin (Multiplatform Common - Experimental)", KotlinIcons.SMALL_LOGO) {
override fun getPluginId() = "kotlin-platform-common"
override fun getDependencies(sdk: Sdk?) = listOf(MAVEN_COMMON_STDLIB_ID)
@@ -148,7 +148,7 @@ open class GradleKotlinMPPCommonFrameworkSupportProvider :
}
class GradleKotlinMPPJavaFrameworkSupportProvider
: GradleKotlinJavaFrameworkSupportProvider("KOTLIN_MPP_JVM", "Kotlin (Multiplatform - JVM)") {
: GradleKotlinJavaFrameworkSupportProvider("KOTLIN_MPP_JVM", "Kotlin (Multiplatform JVM - Experimental)") {
override fun getPluginId() = "kotlin-platform-jvm"
override fun getDescription() = "JVM-specific code for a Kotlin multiplatform project"
@@ -156,7 +156,7 @@ class GradleKotlinMPPJavaFrameworkSupportProvider
}
class GradleKotlinMPPJSFrameworkSupportProvider
: GradleKotlinJSFrameworkSupportProvider("KOTLIN_MPP_JS", "Kotlin (Multiplatform - JS)") {
: GradleKotlinJSFrameworkSupportProvider("KOTLIN_MPP_JS", "Kotlin (Multiplatform JS - Experimental)") {
override fun getPluginId() = "kotlin-platform-js"
override fun getDescription() = "JavaScript-specific code for a Kotlin multiplatform project"
@@ -40,7 +40,7 @@ class KotlinGradleMultiplatformModuleBuilder : GradleModuleBuilder() {
override fun getNodeIcon() = KotlinIcons.SMALL_LOGO
override fun getPresentableName() = "Kotlin (Multiplatform)"
override fun getPresentableName() = "Kotlin (Multiplatform - Experimental)"
override fun getDescription() =
"Multiplatform projects allow reusing the same code between multiple platforms supported by Kotlin. Such projects are built with Gradle."