Skip to content

Commit f4a043b

Browse files
committed
Update plugin description, publish channel and changelog after marketplace submission
1 parent 4797991 commit f4a043b

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- no completions yet
1313

1414
### Build system
15+
1516
- update Gradle to 8.9
1617
- move to gradle intellij platform plugin version 2.0.1
1718

@@ -222,3 +223,10 @@
222223
- Don't show `void` type in completion and quick doc
223224
- Don't show `private` keyword in quick documentation
224225
- Support 2023.1 EAP
226+
227+
[Unreleased]: https://github.com/vlang/intellij-v//compare/v0.0.1-beta.6...HEAD
228+
[0.0.1-beta.6]: https://github.com/vlang/intellij-v//compare/v0.0.1-beta.5...v0.0.1-beta.6
229+
[0.0.1-beta.5]: https://github.com/vlang/intellij-v//compare/v0.0.1-beta.4...v0.0.1-beta.5
230+
[0.0.1-beta.4]: https://github.com/vlang/intellij-v//compare/v0.0.1-beta.3-231-EAP...v0.0.1-beta.4
231+
[0.0.1-beta.3-231-EAP]: https://github.com/vlang/intellij-v//compare/v0.0.1-beta.2...v0.0.1-beta.3-231-EAP
232+
[0.0.1-beta.2]: https://github.com/vlang/intellij-v//commits/v0.0.1-beta.2

build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,9 @@ intellijPlatform {
137137
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
138138
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
139139
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
140-
channels = providers.gradleProperty("pluginVersion")
141-
.map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
140+
// channels = providers.gradleProperty("pluginVersion")
141+
// .map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
142+
// channels = listOf("default")
142143
}
143144

144145
pluginVerification {

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
Provides support for <a href="https://vlang.io/">V language</a>
88
<br/>
99
<br/>
10-
Repository: <a href="https://github.com/vlang/intellij-v">https://github.com/vlang/intellij-v</a>
10+
Repository: <a href="https://github.com/vlang/intellij-v">https://github.com/vlang/intellij-v</a><br />
11+
Issues: <a href="https://github.com/vlang/intellij-v/issues">https://github.com/vlang/intellij-v/issues</a><br />
12+
Discord Server: <a href="https://discord.gg/vlang">https://discord.gg/vlang</a><br />
1113
]]></description>
1214

1315
<depends>com.intellij.modules.platform</depends>

0 commit comments

Comments
 (0)