Skip to content

Commit f8065a3

Browse files
committed
🔖 Bump version
1 parent 4c28631 commit f8065a3

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### 1.9.3
4+
5+
- Refine Table UI color
6+
- Fix Plugins UI hover selection color
7+
- Fix Commit UI hover selection color
8+
39
### 1.9.2
410

511
- Enhanced Python color scheme

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "com.draculatheme"
11-
version = "1.9.2"
11+
version = "1.9.3"
1212

1313
tasks.withType<JavaCompile> {
1414
sourceCompatibility = "1.8"
@@ -27,6 +27,7 @@ repositories {
2727

2828
dependencies {
2929
implementation(kotlin("stdlib-jdk8"))
30+
implementation("org.javassist:javassist:3.27.0-GA")
3031
}
3132

3233
intellij {
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.draculatheme.jetbrains.notifications
22

3+
import com.draculatheme.jetbrains.DraculaMeta
34
import com.intellij.notification.NotificationDisplayType
45
import com.intellij.notification.NotificationGroup
56
import com.intellij.notification.NotificationListener
@@ -10,9 +11,9 @@ import com.intellij.openapi.util.IconLoader
1011
object DraculaNotifications {
1112
private val releaseNote = """
1213
What's New?<br>
13-
- Enhanced Python color scheme<br>
14-
- Enhanced General color scheme<br>
15-
- Enhanced Progress Bar<br>
14+
<ul>
15+
<li>Enhanced UI colors</li>
16+
</ul>
1617
Please visit the <a href="https://github.com/dracula/jetbrains/blob/master/CHANGELOG.md">Changelog</a> for more details.<br>
1718
For premium package, please explore <a href="https://gumroad.com/a/477820019">Dracula PRO</a>.<br>
1819
Thank you for choosing Dracula.
@@ -22,20 +23,20 @@ object DraculaNotifications {
2223
val notificationIcon = IconLoader.getIcon("/icons/dracula-logo.svg", javaClass)
2324

2425
private val notificationGroup = NotificationGroup(
25-
displayId = "Dracula Theme",
26-
displayType = NotificationDisplayType.STICKY_BALLOON,
27-
isLogByDefault = true
26+
displayId = "Dracula Theme",
27+
displayType = NotificationDisplayType.STICKY_BALLOON,
28+
isLogByDefault = true
2829
)
2930

3031
fun notifyReleaseNote(project: Project) {
3132
notificationGroup.createNotification(
32-
title = "Dracula Theme",
33-
content = releaseNote,
34-
type = NotificationType.INFORMATION,
35-
listener = NotificationListener.URL_OPENING_LISTENER
33+
title = "Dracula Theme updated to ${DraculaMeta.currentVersion}",
34+
content = releaseNote,
35+
type = NotificationType.INFORMATION,
36+
listener = NotificationListener.URL_OPENING_LISTENER
3637
)
37-
.setIcon(notificationIcon)
38-
.notify(project)
38+
.setIcon(notificationIcon)
39+
.notify(project)
3940
}
4041

4142
}

0 commit comments

Comments
 (0)