Skip to content

Commit 08b076d

Browse files
committed
Version 1.24.12.
1 parent 0a90f21 commit 08b076d

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.24.12
2+
* Fix [#39](https://github.com/BlueBoxWare/LibGDXPlugin/issues/39): Error when opening project.
3+
14
### 1.24.11
25
* Compatibility with IntelliJ 2024.3 and the K2 analysis API.
36

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
pluginGroup = com.gmail.blueboxware
22
pluginName = LibGDX
3-
pluginVersion = 1.24.11
3+
pluginVersion = 1.24.12
44

5-
pluginSinceBuild = 243.21565.23
5+
pluginSinceBuild = 243.21565.193
66

77
# https://www.jetbrains.com/intellij-repository/snapshots/
88
# https://www.jetbrains.com/intellij-repository/releases/
99
# gradle printProductsReleases
1010

11-
platformVersion = 243.21565.23
11+
platformVersion = 243.21565.193
1212

1313
platformBundledPlugins = com.intellij.java, org.jetbrains.kotlin, org.intellij.groovy, com.intellij.properties, com.intellij.modules.json
1414

src/main/kotlin/com/gmail/blueboxware/libgdxplugin/settings/LibGDXProjectFileSubstitutions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class LibGDXProjectGdxJsonFiles : PersistentFileSetManager()
4242
@Service(Service.Level.PROJECT)
4343
class LibGDXProjectNonGdxJsonFiles : PersistentFileSetManager()
4444

45+
@Suppress("UnstableApiUsage")
4546
internal class LibGDXFileTypeOverrider : FileTypeOverrider {
4647

4748
override fun getOverriddenFileType(file: VirtualFile): FileType? {

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<change-notes><![CDATA[
3333
<ul>
34-
<li>Compatibility with IntelliJ 2024.3 and the K2 analysis API.</li>
34+
<li>Fix <a href="https://github.com/BlueBoxWare/LibGDXPlugin/issues/39">#39</a>: errors on opening project.</li>
3535
</ul>
3636
]]>
3737
</change-notes>

src/test/kotlin/com/gmail/blueboxware/libgdxplugin/assetsInCode/TestCreateAssetQuickFix.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ class TestCreateAssetQuickFix : LibGDXCodeInsightFixtureTestCase() {
450450
configureByText("Test.$extension", codeFileContent)
451451
init?.invoke()
452452

453-
CodeInsightTestFixtureImpl.waitForLazyQuickFixesUnderCaret(file, editor)
453+
CodeInsightTestFixtureImpl.waitForUnresolvedReferencesQuickFixesUnderCaret(file, editor)
454454

455455
for (intention in myFixture.availableIntentions) {
456456
if (intention.familyName.startsWith("Create resource")) {

0 commit comments

Comments
 (0)