Remove "experimental" tag from JS features in the UI

#KT-15175 Fixed
This commit is contained in:
Dmitry Jemerov
2016-12-15 17:50:57 +01:00
parent 1bcb225afa
commit b4af532cf0
6 changed files with 6 additions and 6 deletions
@@ -44,6 +44,6 @@ class KotlinJavascriptMavenConfigurator : KotlinMavenConfigurator(MAVEN_JS_STDLI
companion object {
private val NAME = "js maven"
private val PRESENTABLE_TEXT = "JavaScript Maven - experimental"
private val PRESENTABLE_TEXT = "JavaScript Maven"
}
}
+1 -1
View File
@@ -78,7 +78,7 @@
</action>
<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"/>
</action>
@@ -47,7 +47,7 @@ public class KotlinJsModuleConfigurator extends KotlinWithLibraryConfigurator {
@NotNull
@Override
public String getPresentableText() {
return JavaScript.FULL_NAME + " - experimental";
return JavaScript.FULL_NAME;
}
@Override
@@ -41,7 +41,7 @@ public class JSFrameworkType extends FrameworkTypeEx {
@NotNull
@Override
public String getPresentableName() {
return "Kotlin (JavaScript - experimental)";
return "Kotlin (JavaScript)";
}
@NotNull
@@ -34,6 +34,6 @@ class KotlinTemplatesFactory : ProjectTemplatesFactory() {
override fun createTemplates(group: String?, context: WizardContext?) =
arrayOf(
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() {
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());
}