Skip to content

Commit 7501f99

Browse files
committed
fix: plugin description
1 parent 7e4e160 commit 7501f99

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

build.gradle.kts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ dependencies {
3131
testImplementation(libs.junit)
3232

3333
intellijPlatform {
34-
description = """
35-
Provides official support for <a href="https://tact-lang.org/">Tact</a> programming language
36-
""".trimIndent()
37-
3834
create(providers.gradleProperty("platformType"), providers.gradleProperty("platformVersion"))
3935

4036
bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') })
@@ -50,7 +46,9 @@ intellijPlatform {
5046
pluginConfiguration {
5147
version = providers.gradleProperty("pluginVersion")
5248

53-
description = "" // TODO: proper description
49+
description = """
50+
Provides official support for <a href="https://tact-lang.org/">Tact</a> programming language
51+
""".trimIndent()
5452

5553
val changelog = project.changelog
5654
changeNotes = providers.gradleProperty("pluginVersion").map { pluginVersion ->

src/main/resources/META-INF/plugin.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
<id>org.tonstudio.tact</id>
44
<name>Tact</name>
55
<vendor>TON Studio</vendor>
6-
76
<category>Languages</category>
8-
<description><![CDATA[
9-
Provides official support for <a href="https://tact-lang.org/">Tact</a> programming language
10-
]]></description>
117

128
<depends>com.intellij.modules.platform</depends>
139

0 commit comments

Comments
 (0)