Skip to content

Commit

Permalink
v5.8.0 - Added 2023.2 Build Support. (#307)
Browse files Browse the repository at this point in the history
* Added 2023.2 Build Support.

* Icon loader API.

* this.
  • Loading branch information
Unthrottled authored Jun 5, 2023
1 parent c78b01d commit 30aa4bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

#### Unreleased

#### 5.8.0

- Added 2023.2 Build Support

#### 5.7.4

- More usable pressed action button state.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ tasks.runIde {
tasks.runPluginVerifier {
ideVersions.set([
"IC-2020.3.1",
"IC-223.4884.69",
"IC-2022.3",
])
}

tasks.patchPluginXml {
version.set(projectVersion)
sinceBuild.set('203.7148.57')
untilBuild.set('231.*')
untilBuild.set('232.*')

def changelogPath = "$projectDir/build/html/CHANGELOG.html"
def readmePath = "$projectDir/build/html/README.html"
Expand Down
9 changes: 4 additions & 5 deletions src/main/kotlin/com/markskelton/notification/Notifications.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,24 @@ import com.intellij.notification.NotificationGroupManager
import com.intellij.notification.NotificationListener
import com.intellij.notification.NotificationType
import com.intellij.openapi.extensions.PluginId
import com.intellij.ui.IconManager
import com.intellij.openapi.util.IconLoader
import com.markskelton.OneDarkThemeManager.PLUGIN_ID
import org.intellij.lang.annotations.Language

@Language("HTML")
val UPDATE_MESSAGE: String = """
What's New?<br>
<ul>
<li>More usable action button state for new UI</li>
<li>More Consistent Rider New UI Scrollbars</li>
<li>2023.2 Build Support</li>
</ul>
<br>Please see the <a href="https://github.com/one-dark/jetbrains-one-dark-theme/blob/master/CHANGELOG.md">Changelog</a> for more details.
<br>Please see the <a href='https://github.com/one-dark/jetbrains-one-dark-theme/blob/master/CHANGELOG.md'>Changelog</a> for more details.
<br>
Thank you for choosing the One Dark Theme!<br>
""".trimIndent()

object Notifications {

private val NOTIFICATION_ICON = IconManager.getInstance().getIcon(
private val NOTIFICATION_ICON = IconLoader.getIcon(
"/icons/one-dark-logo.svg",
Notifications::class.java
)
Expand Down

0 comments on commit 30aa4bd

Please sign in to comment.