Skip to content

Commit d6ca674

Browse files
support idea241 (#76)
2 parents 54c30f9 + 104878e commit d6ca674

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
# Validate wrapper
4040
- name: Gradle Wrapper Validation
41-
uses: gradle/wrapper-validation-action@v2.0.1
41+
uses: gradle/wrapper-validation-action@v3.3.2
4242

4343
# Set up Java environment for the next steps
4444
- name: Setup Java
@@ -166,7 +166,7 @@ jobs:
166166

167167
# Run Qodana inspections
168168
- name: Qodana - Code Inspection
169-
uses: JetBrains/qodana-action@v2023.3.1
169+
uses: JetBrains/qodana-action@v2024.1.3
170170
with:
171171
cache-default-branch-only: true
172172

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
### Added
8+
9+
- Support IntelliJ IDEA 2024.1
10+
711
## [0.3.3] - 2023-12-26
812

913
### Added

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ pluginGroup = com.github.leondevlifelog.gitea
44
pluginName = Gitea
55
pluginRepositoryUrl = https://github.com/LeonDevLifeLog/gitea-idea-plugin
66
# SemVer format -> https://semver.org
7-
pluginVersion=0.3.3
7+
pluginVersion=0.3.3.1
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10-
pluginSinceBuild=233
11-
pluginUntilBuild = 233.*
10+
pluginSinceBuild=241
11+
pluginUntilBuild = 241.*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1414
platformType=IC
15-
platformVersion=2023.3.1
15+
platformVersion=2024.1
1616

1717
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

src/main/kotlin/com/github/leondevlifelog/gitea/ui/GiteaChooseAccountDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class GiteaChooseAccountDialog @JvmOverloads constructor(project: Project?, pare
3232
"account.choose.title"),
3333
@Nls(capitalization = Nls.Capitalization.Title) okText: String = GiteaBundle.message(
3434
"account.choose.button"))
35-
: DialogWrapper(project, parentComponent, false, IdeModalityType.PROJECT) {
35+
: DialogWrapper(project, parentComponent, false, IdeModalityType.MODELESS) {
3636

3737
private val description: JTextArea? = descriptionText?.let {
3838
JTextArea().apply {

src/main/kotlin/com/github/leondevlifelog/gitea/ui/GiteaLoginDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal sealed class GiteaLoginDialog(
2929
private val model: GiteaLoginModel,
3030
project: Project?,
3131
parent: Component?
32-
) : DialogWrapper(project, parent, false, IdeModalityType.PROJECT) {
32+
) : DialogWrapper(project, parent, false, IdeModalityType.MODELESS) {
3333

3434
private val cs = MainScope().also {
3535
Disposer.register(disposable) {

0 commit comments

Comments
 (0)