Skip to content

Commit

Permalink
πŸ”– Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteVermouth committed Aug 31, 2021
1 parent 371759c commit 9d7f56b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 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.12.1

- Fixed Completion Popup background

## 1.12.0

- Fixed API compatibility
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.12.0
pluginVersion=1.12.1
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild=203
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ object DraculaNotification {
@Language("HTML")
private val whatsNew = """
<ul>
<li>Fixed API compatibility</li>
<li>Fixed Completion Popup background</li>
</ul>
""".trimIndent()

@Language("HTML")
private val linkMessage = """
private val footerMessage = """
<p>Thank you for choosing Dracula.</p>
<br>
<p>
Expand All @@ -33,14 +33,14 @@ object DraculaNotification {
<div>
<h3>What's New?</h3>
<div>$whatsNew</div>
<div>$linkMessage</div>
<div>$footerMessage</div>
</div>
""".trimIndent()

@Language("HTML")
private val welcomeMessage = """
<div>
$linkMessage
$footerMessage
</div>
""".trimIndent()

Expand Down Expand Up @@ -75,4 +75,4 @@ object DraculaNotification {
notification.notify(project)
}

}
}

0 comments on commit 9d7f56b

Please sign in to comment.