Skip to content

Commit

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

## 1.15.1

- Workaround for VCS annotation background color lost
- Revert Tool Window selected background

## 1.15.0

- Fix new notification window colors
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ All instructions can be found at [draculatheme.com/jetbrains](https://draculathe

[![Dracula PRO](./docs/screenshots/dracula-pro.png)](https://gumroad.com/a/477820019)

Dracula PRO is a color scheme and UI theme tailored for programming. Made for terminal emulators, code editors, and
syntax highlighters. Designed to be aesthetically pleasing while keeping you focused.

[Get It Now](https://gumroad.com/a/477820019)

## Contribution

If you'd like to contribute to this theme, please read the [Contributing Guide](./CONTRIBUTING.md).
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.0
pluginVersion=1.15.1
# 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,8 @@ object DraculaNotification {
@Language("HTML")
private val whatsNew = """
<ul>
<li>Fix new notification window colors</li>
<li>Fix tool window button selected background color</li>
<li>Workaround for VCS annotation background color lost</li>
<li>Revert Tool Window selected background</li>
</ul>
""".trimIndent()

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

private const val CHANGELOG_LINK = "https://github.com/dracula/jetbrains/blob/master/CHANGELOG.md"
private const val DRACULA_PRO_LINK = "https://gumroad.com/a/477820019"
private const val GITHUB_REPO_LINK = "https://github.com/dracula/jetbrains"
private const val DONATE_LINK = "https://www.buymeacoffee.com/nszihan"

fun notifyReleaseNote(project: Project) {
val title = "Dracula Theme updated to v${DraculaMeta.currentVersion}"
Expand All @@ -59,18 +58,14 @@ object DraculaNotification {
}

private fun addNotificationActions(notification: Notification) {
val actionChangelog = NotificationAction.createSimple("Changelog") {
BrowserUtil.browse(CHANGELOG_LINK)
}
val actionDraculaPro = NotificationAction.createSimple("Dracula Pro") {
val actionDraculaPro = NotificationAction.createSimple("Dracula PRO") {
BrowserUtil.browse(DRACULA_PRO_LINK)
}
val actionGithubRepo = NotificationAction.createSimple("GitHub") {
BrowserUtil.browse(GITHUB_REPO_LINK)
val actionDonate = NotificationAction.createSimple("Donate") {
BrowserUtil.browse(DONATE_LINK)
}
notification.addAction(actionChangelog)
notification.addAction(actionDraculaPro)
notification.addAction(actionGithubRepo)
notification.addAction(actionDonate)
}

}

0 comments on commit c4adc89

Please sign in to comment.