Skip to content

Commit 5b1e4eb

Browse files
Update plugin description and changelog
1 parent 9f802f9 commit 5b1e4eb

File tree

4 files changed

+25
-21
lines changed

4 files changed

+25
-21
lines changed

DESCRIPTION.md

-12
This file was deleted.

CHANGELOG.md plugin/CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
## v1.0.0 - Reborn like a phoenix
1+
## v1.0.0 - Better than ever before
22
- Brand new codebase written in Kotlin
33
- Support for multiple icon themes
4-
- More customizable presence than ever before
5-
- New language support doesn't require a plugin update anymore
6-
4+
- Customize every aspect of the rich presence
5+
- Beautiful preview in settings
6+
- Support for project descriptions
7+
- Whole new language detection with support for a wide range of languages and frameworks
8+
- Adding more languages is now possible in a matter of seconds without a new plugin update
9+
- And so much more I can't even remember what already existed before and what didn't
10+
711
## v0.9.0 - More settings & languages, less bugs
812
- Added F# (#43)
913
- Added additional C# file extensions (#43)

plugin/DESCRIPTION.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Show everyone on Discord what awesome projects you're working on!
2+
3+
## Features:
4+
- Publish information about your current project to Discord
5+
- Highly customizable in using the plugins settings
6+
- Shows IDE, project name with description and file name
7+
- Can detect a wide range og languages and frameworks automatically
8+
- Supports from multiple icon themes
9+
- Automatically hides when you go AFK
10+
- Hide individual projects you don't want to show yet or are under NDA
11+
12+
For bugs, ideas or language requests [join the Discord server](https://discord.gg/SvuyuMP) or [visit the project on github](https://github.com/Almighty-Alpaca/JetBrains-Discord-Integration).

plugin/build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ tasks {
7878
}
7979

8080
patchPluginXml {
81-
changeNotes(readInfoFile(rootProject.file("CHANGELOG.md")))
82-
pluginDescription(readInfoFile(rootProject.file("DESCRIPTION.md")))
81+
changeNotes(readInfoFile(project.file("CHANGELOG.md")))
82+
pluginDescription(readInfoFile(project.file("DESCRIPTION.md")))
8383
}
8484

8585
withType<RunIdeTask> {
@@ -150,7 +150,7 @@ tasks {
150150

151151
processResources {
152152
filesMatching("/discord/changes.html") {
153-
val document = Jsoup.parse(readInfoFile(rootProject.file("CHANGELOG.md")))
153+
val document = Jsoup.parse(readInfoFile(project.file("CHANGELOG.md")))
154154
val body = document.getElementsByTag("body")[0]
155155
val list = body.getElementsByTag("ul")[0]
156156

@@ -166,15 +166,15 @@ tasks {
166166
group = "markdown"
167167

168168
doLast {
169-
println(readInfoFile(rootProject.file("CHANGELOG.md")))
169+
println(readInfoFile(project.file("CHANGELOG.md")))
170170
}
171171
}
172172

173173
create ("printDescription"){
174174
group = "markdown"
175175

176176
doLast {
177-
println(readInfoFile(rootProject.file("DESCRIPTION.md")))
177+
println(readInfoFile(project.file("DESCRIPTION.md")))
178178
}
179179
}
180180
}

0 commit comments

Comments
 (0)