Skip to content

Commit d975794

Browse files
committed
🔖 Bump version
1 parent 61cd5b6 commit d975794

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

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

3+
### 1.9.5
4+
5+
- Enhanced scrollbar symbol colors. [See Issue #33](https://github.com/dracula/jetbrains/issues/33)
6+
- Enhanced other colors inside General scheme.
7+
38
### 1.9.4
49

510
- Make TODO comment distinguishable

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ plugins {
44
java
55
kotlin("jvm") version "1.4.10"
66
id("org.jetbrains.intellij") version "0.4.22"
7-
id("org.kordamp.gradle.markdown") version "2.2.0"
87
}
98

109
group = "com.draculatheme"
11-
version = "1.9.4"
10+
version = "1.9.5"
1211

1312
tasks.withType<JavaCompile> {
1413
sourceCompatibility = "1.8"

src/main/kotlin/com/draculatheme/jetbrains/activities/DraculaUpdateActivity.kt renamed to src/main/kotlin/com/draculatheme/jetbrains/activities/DraculaStartupActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import com.intellij.openapi.project.DumbAware
77
import com.intellij.openapi.project.Project
88
import com.intellij.openapi.startup.StartupActivity
99

10-
class DraculaUpdateActivity : StartupActivity, DumbAware {
10+
class DraculaStartupActivity : StartupActivity, DumbAware {
1111
override fun runActivity(project: Project) {
1212
val settings = DraculaSettings.instance
1313
val updated = DraculaMeta.currentVersion != settings.version

src/main/kotlin/com/draculatheme/jetbrains/notifications/DraculaNotifications.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ object DraculaNotifications {
1212
private val releaseNote = """
1313
What's New?<br>
1414
<ul>
15-
<li>Make TODO comment distinguishable</li>
15+
<li>Enhanced scrollbar symbol colors</li>
16+
<li>Enhanced other colors inside General scheme</li>
1617
</ul>
1718
Please visit the <a href="https://github.com/dracula/jetbrains/blob/master/CHANGELOG.md">Changelog</a> for more details.<br>
1819
For premium package, please explore <a href="https://gumroad.com/a/477820019">Dracula PRO</a>.<br>

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<idea-version since-build="202"/>
77
<extensions defaultExtensionNs="com.intellij">
88
<applicationService serviceImplementation="com.draculatheme.jetbrains.settings.DraculaSettings"/>
9-
<postStartupActivity implementation="com.draculatheme.jetbrains.activities.DraculaUpdateActivity"/>
9+
<postStartupActivity implementation="com.draculatheme.jetbrains.activities.DraculaStartupActivity"/>
1010
<themeProvider id="371dce76-a3c5-4429-91af-41cf86094744" path="/themes/dracula.theme.json"/>
1111
<themeProvider id="ee2824b3-c1d9-44fa-8b64-de6fe5dd8e37" path="/themes/dracula-colorful.theme.json"/>
1212
</extensions>

0 commit comments

Comments
 (0)