Skip to content

Commit 1938848

Browse files
committed
Version 1.24.1
1 parent c5cf832 commit 1938848

File tree

7 files changed

+13
-733
lines changed

7 files changed

+13
-733
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
### 1.1.24.1
3+
* Use documentation popup for image previews instead of Shift + hover.
4+
* Compatibility with recent versions of IntelliJ.
5+
16
### 1.24
27
* Support for the [new Atlas file format](https://github.com/libgdx/libgdx/commit/a4a0240e2db47d7273797eaf371133f84749f823).
38

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This unofficial plugin adds a number of [libGDX](https://libgdx.badlogicgames.co
1414
- __[Atlas file support](#atlas-file-support)__
1515
- __[Bitmap Font file support](#bitmap-font-file-support)__
1616
- __[Skin resources and Atlas region names in Java and Kotlin code](#skin-resources-and-atlas-region-names-in-java-and-kotlin-code)__
17-
- __[@GDXTag and short names in Skins](#gdxtag-and-short-names-in-skins)__
17+
- __[@GDXTag and short names in skins](#gdxtag-and-short-names-in-skins)__
1818
<!-- /toc -->
1919

2020
# Installation

build.gradle.kts

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import io.gitlab.arturbosch.detekt.Detekt
21
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
32

43
fun properties(key: String) = project.findProperty(key).toString()
@@ -7,9 +6,7 @@ plugins {
76
id("java")
87
id("maven-publish")
98
id("org.jetbrains.kotlin.jvm") version "1.7.10"
10-
// https://github.com/JetBrains/gradle-intellij-plugin/issues/998
11-
id("org.jetbrains.intellij") version "1.8.0"
12-
id("io.gitlab.arturbosch.detekt") version "1.17.1"
9+
id("org.jetbrains.intellij") version "1.9.0"
1310
id("com.github.blueboxware.tocme") version "1.3"
1411
}
1512

@@ -31,19 +28,6 @@ intellij {
3128
plugins.set(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
3229
}
3330

34-
detekt {
35-
config = files("./detekt-config.yml")
36-
baseline = file("./detekt-baseline.xml")
37-
buildUponDefaultConfig = true
38-
39-
reports {
40-
html.enabled = true
41-
xml.enabled = false
42-
txt.enabled = false
43-
sarif.enabled = false
44-
}
45-
}
46-
4731
sourceSets {
4832
main {
4933
java.srcDirs("gen")
@@ -66,9 +50,6 @@ tasks {
6650
withType<KotlinCompile> {
6751
kotlinOptions.jvmTarget = it
6852
}
69-
withType<Detekt> {
70-
jvmTarget = it
71-
}
7253
}
7354

7455
runIde {

detekt-baseline.xml

Lines changed: 0 additions & 703 deletions
This file was deleted.

detekt-config.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

gradle.properties

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
pluginGroup = com.gmail.blueboxware
22
pluginName = LibGDX Plugin
3-
pluginVersion = 1.24
3+
pluginVersion = 1.24.1
44

5-
pluginSinceBuild = 213.7172.25
5+
pluginSinceBuild = 222.3739.54
66
pluginUntilBuild =
77

88
javaVersion = 11
99

1010
# See https://jb.gg/intellij-platform-builds-list for available build versions.
11-
pluginVerifierIdeVersions = 2021.2.1, 213.7172.25, 2022.1, 222.3739.54
11+
pluginVerifierIdeVersions = 222.3739.54, 2022.2.3
1212

1313
platformType = IC
14-
platformVersion = 213.7172.25
15-
#platformVersion = LATEST-EAP-SNAPSHOT
14+
platformVersion = 222.3739.54
1615
platformDownloadSources = true
1716

1817
platformPlugins = java, Kotlin, Groovy, properties

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

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

3232
<change-notes><![CDATA[
3333
<ul>
34-
<li>Support for the <a href="https://github.com/libgdx/libgdx/commit/a4a0240e2db47d7273797eaf371133f84749f823">new Atlas file format</a>.</li>
34+
<li>Use documentation popup for image previews instead of Shift + hover.</li>
35+
<li>Internal changes: compatibility with recent versions of IntelliJ.</li>
3536
</ul>
3637
]]>
3738
</change-notes>

0 commit comments

Comments
 (0)