Remove "experimental" tag from JS features in the UI
#KT-15175 Fixed
This commit is contained in:
+1
-1
@@ -44,6 +44,6 @@ class KotlinJavascriptMavenConfigurator : KotlinMavenConfigurator(MAVEN_JS_STDLI
|
|||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val NAME = "js maven"
|
private val NAME = "js maven"
|
||||||
private val PRESENTABLE_TEXT = "JavaScript Maven - experimental"
|
private val PRESENTABLE_TEXT = "JavaScript Maven"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
</action>
|
</action>
|
||||||
|
|
||||||
<action id="ConfigureKotlinJsInProject" class="org.jetbrains.kotlin.idea.actions.ConfigureKotlinJsInProjectAction"
|
<action id="ConfigureKotlinJsInProject" class="org.jetbrains.kotlin.idea.actions.ConfigureKotlinJsInProjectAction"
|
||||||
text="Configure Kotlin (JavaScript - experimental) in Project">
|
text="Configure Kotlin (JavaScript) in Project">
|
||||||
<add-to-group group-id="KotlinToolsGroup"/>
|
<add-to-group group-id="KotlinToolsGroup"/>
|
||||||
</action>
|
</action>
|
||||||
|
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ public class KotlinJsModuleConfigurator extends KotlinWithLibraryConfigurator {
|
|||||||
@NotNull
|
@NotNull
|
||||||
@Override
|
@Override
|
||||||
public String getPresentableText() {
|
public String getPresentableText() {
|
||||||
return JavaScript.FULL_NAME + " - experimental";
|
return JavaScript.FULL_NAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ public class JSFrameworkType extends FrameworkTypeEx {
|
|||||||
@NotNull
|
@NotNull
|
||||||
@Override
|
@Override
|
||||||
public String getPresentableName() {
|
public String getPresentableName() {
|
||||||
return "Kotlin (JavaScript - experimental)";
|
return "Kotlin (JavaScript)";
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
|
|||||||
@@ -34,6 +34,6 @@ class KotlinTemplatesFactory : ProjectTemplatesFactory() {
|
|||||||
override fun createTemplates(group: String?, context: WizardContext?) =
|
override fun createTemplates(group: String?, context: WizardContext?) =
|
||||||
arrayOf(
|
arrayOf(
|
||||||
BuilderBasedTemplate(KotlinModuleBuilder(JvmPlatform, "Kotlin (JVM)", "Kotlin module for JVM target")),
|
BuilderBasedTemplate(KotlinModuleBuilder(JvmPlatform, "Kotlin (JVM)", "Kotlin module for JVM target")),
|
||||||
BuilderBasedTemplate(KotlinModuleBuilder(JsPlatform, "Kotlin (JavaScript - experimental)", "Kotlin module for JavaScript target"))
|
BuilderBasedTemplate(KotlinModuleBuilder(JsPlatform, "Kotlin (JavaScript)", "Kotlin module for JavaScript target"))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public final class K2JSRunConfigurationType extends ConfigurationTypeBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public K2JSRunConfigurationType() {
|
public K2JSRunConfigurationType() {
|
||||||
super("K2JSConfigurationType", "Kotlin (JavaScript - experimental)", "Kotlin to JavaScript configuration", KotlinIcons.SMALL_LOGO_13);
|
super("K2JSConfigurationType", "Kotlin (JavaScript)", "Kotlin to JavaScript configuration", KotlinIcons.SMALL_LOGO_13);
|
||||||
addFactory(new K2JSConfigurationFactory());
|
addFactory(new K2JSConfigurationFactory());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user