From c4adc89b013a6ac017294e550f686bcfd4071a9a Mon Sep 17 00:00:00 2001 From: Zihan Ma Date: Sat, 9 Sep 2023 01:34:20 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ README.md | 5 +++++ gradle.properties | 2 +- .../notifications/DraculaNotification.kt | 19 +++++++------------ 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4944ef7..35741d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index c9cb902..efab03e 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/gradle.properties b/gradle.properties index 6cfff32..6d44d4c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotification.kt b/src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotification.kt index 27ef754..22a5abb 100644 --- a/src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotification.kt +++ b/src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotification.kt @@ -15,8 +15,8 @@ object DraculaNotification { @Language("HTML") private val whatsNew = """ """.trimIndent() @@ -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}" @@ -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) } }