File tree Expand file tree Collapse file tree
src/main/kotlin/io/unthrottled/doki Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ It should contain:
2525* OS (Windows, Linux, Mac)
2626* IntelliJ Product + version (IDEA, RubyMine...)
2727* Plugin version
28- * If needed a list of enabled plugins -->
28+ * A list of enabled plugins -->
2929
3030
3131** Screenshots**
Original file line number Diff line number Diff line change 11Changelog
22---
3+ # 88.3-1.8.2 [ Initial 2023.1 Build Support]
4+
5+ - Added the initial 2023.1 build support.
6+
37
48# 88.3-1.8.1 [ Global Font Fix]
59
Original file line number Diff line number Diff line change 1- - Fixed issue with global font override not being applied after IDE was restarted.
1+ - Fixed issue with global font override not being applied after IDE was restarted.
2+ - Added the initial 2023.1 build support.
Original file line number Diff line number Diff line change 22# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
33
44pluginGroup =io.unthrottled
5- pluginVersion =88.3-1.8.1
5+ pluginVersion =88.3-1.8.2
66pluginSinceBuild =222
7- pluginUntilBuild = 223 .*
7+ pluginUntilBuild = 231 .*
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.
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package io.unthrottled.doki.promotions
22
33import com.google.gson.GsonBuilder
44import com.intellij.openapi.diagnostic.Logger
5- import com.intellij.util.io.exists
65import io.unthrottled.doki.assets.LocalStorageService
76import io.unthrottled.doki.util.runSafely
87import io.unthrottled.doki.util.runSafelyWithResult
@@ -11,6 +10,7 @@ import java.nio.charset.StandardCharsets
1110import java.nio.file.Files
1211import java.nio.file.Path
1312import java.nio.file.StandardOpenOption
13+ import kotlin.io.path.exists
1414
1515abstract class LedgerMaster <T >(
1616 private val ledgerPath : Path ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package io.unthrottled.doki.stickers
22
33import com.intellij.ide.ui.LafManager
44import com.intellij.ide.ui.LafManagerListener
5- import com.intellij.ide.ui.laf.LafManagerImpl
65import com.intellij.openapi.Disposable
76import com.intellij.openapi.application.ApplicationManager
87import io.unthrottled.doki.config.ThemeConfig
@@ -18,7 +17,7 @@ class StickerComponent :
1817
1918 init {
2019 StickerPaneService .instance.init ()
21- processLaf(LafManagerImpl .getInstance().currentLookAndFeel)
20+ processLaf(LafManager .getInstance().currentLookAndFeel)
2221 connection.subscribe(LafManagerListener .TOPIC , this )
2322 }
2423
Original file line number Diff line number Diff line change 11package io.unthrottled.doki.themes.impl
22
33import com.google.gson.Gson
4- import com.intellij.ide.ui.laf.LafManagerImpl
4+ import com.intellij.ide.ui.LafManager
55import com.intellij.ide.ui.laf.UIThemeBasedLookAndFeelInfo
66import com.intellij.util.io.inputStream
77import io.unthrottled.doki.TheDokiTheme
@@ -58,7 +58,7 @@ class ThemeManagerImpl : ThemeManager {
5858 get() = currentTheme.isPresent
5959
6060 override val currentTheme: Optional <DokiTheme >
61- get() = processLaf(LafManagerImpl .getInstance().currentLookAndFeel)
61+ get() = processLaf(LafManager .getInstance().currentLookAndFeel)
6262
6363 override val allThemes: List <DokiTheme >
6464 get() = themeMap.values.toList()
You can’t perform that action at this time.
0 commit comments