Skip to content

Commit

Permalink
Update plugin description and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Almighty-Alpaca committed Aug 19, 2019
1 parent 9f802f9 commit 5b1e4eb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 21 deletions.
12 changes: 0 additions & 12 deletions DESCRIPTION.md

This file was deleted.

12 changes: 8 additions & 4 deletions CHANGELOG.md → plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## v1.0.0 - Reborn like a phoenix
## v1.0.0 - Better than ever before
- Brand new codebase written in Kotlin
- Support for multiple icon themes
- More customizable presence than ever before
- New language support doesn't require a plugin update anymore

- Customize every aspect of the rich presence
- Beautiful preview in settings
- Support for project descriptions
- Whole new language detection with support for a wide range of languages and frameworks
- Adding more languages is now possible in a matter of seconds without a new plugin update
- And so much more I can't even remember what already existed before and what didn't

## v0.9.0 - More settings & languages, less bugs
- Added F# (#43)
- Added additional C# file extensions (#43)
Expand Down
12 changes: 12 additions & 0 deletions plugin/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Show everyone on Discord what awesome projects you're working on!

## Features:
- Publish information about your current project to Discord
- Highly customizable in using the plugins settings
- Shows IDE, project name with description and file name
- Can detect a wide range og languages and frameworks automatically
- Supports from multiple icon themes
- Automatically hides when you go AFK
- Hide individual projects you don't want to show yet or are under NDA

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).
10 changes: 5 additions & 5 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ tasks {
}

patchPluginXml {
changeNotes(readInfoFile(rootProject.file("CHANGELOG.md")))
pluginDescription(readInfoFile(rootProject.file("DESCRIPTION.md")))
changeNotes(readInfoFile(project.file("CHANGELOG.md")))
pluginDescription(readInfoFile(project.file("DESCRIPTION.md")))
}

withType<RunIdeTask> {
Expand Down Expand Up @@ -150,7 +150,7 @@ tasks {

processResources {
filesMatching("/discord/changes.html") {
val document = Jsoup.parse(readInfoFile(rootProject.file("CHANGELOG.md")))
val document = Jsoup.parse(readInfoFile(project.file("CHANGELOG.md")))
val body = document.getElementsByTag("body")[0]
val list = body.getElementsByTag("ul")[0]

Expand All @@ -166,15 +166,15 @@ tasks {
group = "markdown"

doLast {
println(readInfoFile(rootProject.file("CHANGELOG.md")))
println(readInfoFile(project.file("CHANGELOG.md")))
}
}

create ("printDescription"){
group = "markdown"

doLast {
println(readInfoFile(rootProject.file("DESCRIPTION.md")))
println(readInfoFile(project.file("DESCRIPTION.md")))
}
}
}
Expand Down

0 comments on commit 5b1e4eb

Please sign in to comment.