File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed
src/main/kotlin/com/github/ilovegamecoding/intellijcodexp Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 5
5
## [ Unreleased]
6
6
7
7
### Added
8
+ - Organize CodeXP configuration options by type for easier readability.
8
9
9
10
### Changed
10
11
11
12
### Removed
12
13
14
+ ### Fixed
15
+ - Fix plugin compatibility issue after IntelliJ IDEA version 2023.2
16
+
17
+ ## [ 1.2.1] - 2023-07-19
18
+
13
19
### Fixed
14
20
- Fix plugin initialization issue of CodeXP plugin at IDE startup
15
21
41
47
- Define events to detect and add challenges for each event
42
48
- Implement notification alert feature for leveling up or completing challenges
43
49
44
- [ Unreleased ] : https://github.com/ILoveGameCoding/intellij-codexp/compare/v1.2.0...HEAD
50
+ [ Unreleased ] : https://github.com/ILoveGameCoding/intellij-codexp/compare/v1.2.1...HEAD
51
+
52
+ [ 1.2.1 ] : https://github.com/ILoveGameCoding/intellij-codexp/compare/v1.2.0...v1.2.1
45
53
46
54
[ 1.2.0 ] : https://github.com/ILoveGameCoding/intellij-codexp/compare/v1.1.0...v1.2.0
47
55
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ pluginRepositoryUrl = https://github.com/ILoveGameCoding/intellij-codexp
7
7
pluginVersion =1.2.1
8
8
9
9
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
- pluginSinceBuild = 221
11
- pluginUntilBuild = 231 .*
10
+ pluginSinceBuild = 232
11
+ pluginUntilBuild = 232 .*
12
12
13
13
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
14
14
platformType = IC
15
- platformVersion = 2022.1.4
15
+ platformVersion = 2023.2
16
16
17
17
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
18
18
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Original file line number Diff line number Diff line change @@ -2,13 +2,11 @@ package com.github.ilovegamecoding.intellijcodexp.activities
2
2
3
3
import com.github.ilovegamecoding.intellijcodexp.services.CodeXPService
4
4
import com.intellij.openapi.application.ApplicationManager
5
- import com.intellij.openapi.diagnostic.thisLogger
6
5
import com.intellij.openapi.project.Project
7
6
import com.intellij.openapi.startup.StartupActivity
8
7
9
8
class CodeXPStartupActivity : StartupActivity {
10
9
override fun runActivity (project : Project ) {
11
- thisLogger().warn(" CodeXPStartupActivity.runActivity" )
12
- val codeXPService = ApplicationManager .getApplication().getService(CodeXPService ::class .java)
10
+ ApplicationManager .getApplication().getService(CodeXPService ::class .java)
13
11
}
14
12
}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class CodeXPToolWindowFactory : ToolWindowFactory {
53
53
initializeUI()
54
54
55
55
// Add the dashboard to the tool window
56
- val contentFactory = ContentFactory .SERVICE . getInstance()
56
+ val contentFactory = ContentFactory .getInstance()
57
57
val scrollPane = JBScrollPane (codeXPDashboardForm.pMain)
58
58
val rootPanel = JPanel (BorderLayout ())
59
59
rootPanel.add(BorderLayout .CENTER , scrollPane)
You can’t perform that action at this time.
0 commit comments