Skip to content

Commit 3b0ca57

Browse files
authored
Merge pull request #685 from doki-theme/2023.2Support
Added initial 2023.2 build support.
2 parents 134eb8a + 258b6eb commit 3b0ca57

5 files changed

Lines changed: 123 additions & 119 deletions

File tree

changelog/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Changelog
22
---
3+
# 88.5-1.11.0 [2023.2 Build Support]
4+
5+
- Added initial 2023.2 build support
36

47
# 88.5-1.10.0 [Welcome Screen Sticker]
58

changelog/RELEASE-NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
- Added sticker placement to the welcome window.
1+
- Added sticker placement to the welcome window.
2+
- Added initial 2023.2 build support

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
33

44
pluginGroup=io.unthrottled
5-
pluginVersion=88.5-1.10.0
5+
pluginVersion=88.5-1.11.0
66
pluginSinceBuild= 223
7-
pluginUntilBuild = 231.*
7+
pluginUntilBuild = 232.*
88

99
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1010
# See https://jb.gg/intellij-platform-builds-list for available build versions.

src/main/kotlin/io/unthrottled/doki/icon/DokiIcons.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package io.unthrottled.doki.icon
22

3-
import com.intellij.ui.IconManager.getInstance
3+
import com.intellij.openapi.util.IconLoader
44
import javax.swing.Icon
55

66
object DokiIcons {
@@ -42,5 +42,5 @@ object DokiIcons {
4242
}
4343

4444
private fun load(path: String): Icon =
45-
getInstance().getIcon(path, DokiIcons::class.java)
45+
IconLoader.getIcon(path, DokiIcons::class.java)
4646
}

0 commit comments

Comments
 (0)