Skip to content

Commit

Permalink
πŸ”– Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteVermouth committed Sep 18, 2023
1 parent b1c4bc7 commit 33e6d21
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.15.2

- Force switch to correspond editor color when toggle UI to Dracula

## 1.15.1

- Workaround for VCS annotation background color lost
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.caching=true
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
pluginGroup=com.draculatheme
pluginName=Dracula Theme
pluginVersion=1.15.1
pluginVersion=1.15.2
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
# See https://jb.gg/intellij-platform-builds-list for available build versions.
pluginVerifierIdeVersions=232.8660.185, 231.9392.1, 223.8836.41, 222.4554.10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ object DraculaNotification {
@Language("HTML")
private val whatsNew = """
<ul>
<li>Workaround for VCS annotation background color lost</li>
<li>Revert Tool Window selected background</li>
<li>Force switch to correspond editor color when toggle UI to Dracula</li>
</ul>
""".trimIndent()

Expand All @@ -37,6 +36,7 @@ object DraculaNotification {
val notificationIcon = IconLoader.getIcon("/icons/dracula-logo.svg", javaClass)

private const val DRACULA_PRO_LINK = "https://gumroad.com/a/477820019"
private const val GITHUB_LING = "https://github.com/dracula/jetbrains"
private const val DONATE_LINK = "https://www.buymeacoffee.com/nszihan"

fun notifyReleaseNote(project: Project) {
Expand All @@ -61,10 +61,14 @@ object DraculaNotification {
val actionDraculaPro = NotificationAction.createSimple("Dracula PRO") {
BrowserUtil.browse(DRACULA_PRO_LINK)
}
val github = NotificationAction.createSimple("GitHub") {
BrowserUtil.browse(GITHUB_LING)
}
val actionDonate = NotificationAction.createSimple("Donate") {
BrowserUtil.browse(DONATE_LINK)
}
notification.addAction(actionDraculaPro)
notification.addAction(github)
notification.addAction(actionDonate)
}

Expand Down

0 comments on commit 33e6d21

Please sign in to comment.