Skip to content

Commit 073f117

Browse files
committed
Version 1.23.2
1 parent c017c55 commit 073f117

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.23.2
2+
* Fix IllegalAccessError with IntelliJ 2021.1.*.
3+
14
### 1.23
25
* Some Suppression ids have been changed for consistency. See [Inspections.md](https://github.com/BlueBoxWare/LibGDXPlugin/Inspections.md) for an up to date list.
36
* Reworking of JSON handling, fixing several bugs (like [#26](https://github.com/BlueBoxWare/LibGDXPlugin/issues/26)).

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ test {
9595
dependencies {
9696
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
9797
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
98-
implementation files("${System.properties['java.home']}/../lib/tools.jar")
9998

10099
testCompile group: 'junit', name: 'junit', version: '4.11'
101100
}

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

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<id>com.gmail.blueboxware.libgdxplugin</id>
1919
<!--suppress PluginXmlCapitalization -->
2020
<name>libGDX</name>
21-
<version>1.23</version>
21+
<version>1.23.2</version>
2222
<vendor url="https://github.com/BlueBoxWare/LibGDXPlugin">Blue Box Ware</vendor>
2323

2424
<description><![CDATA[
@@ -32,15 +32,12 @@
3232

3333
<change-notes><![CDATA[
3434
<ul>
35-
<li>Some Suppression ids have been changed for consistency. See <a href="https://github.com/BlueBoxWare/LibGDXPlugin/Inspections.md">here</a> for an up to date list.</li>
36-
<li>Reworking of JSON handling, fixing several bugs (like <a href="https://github.com/BlueBoxWare/LibGDXPlugin/issues/26">#26</a>)</li>
37-
<li>Display a warning when *.gwt.xml files are changed in a html module that a full rebuild is necessary.</li>
38-
<li>JSON: highlight usages of the same key in a file, find usages of a key in a file, rename all usages of a key.</li>
35+
<li>Fix IllegalAccessError with IntelliJ 2021.1.*.</li>
3936
</ul>
4037
]]>
4138
</change-notes>
4239

43-
<idea-version since-build="201.8743.12"/>
40+
<idea-version since-build="202.7660.26"/>
4441

4542
<depends>com.intellij.modules.java</depends>
4643
<depends>org.jetbrains.kotlin</depends>

src/test/kotlin/com/gmail/blueboxware/libgdxplugin/TestVersionHandlingLocalhost.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import java.util.*
3939
@Suppress("ReplaceNotNullAssertionWithElvisReturn")
4040
class TestVersionHandlingLocalhost: LibGDXCodeInsightFixtureTestCase() {
4141

42-
private val RUN_TESTS = true
42+
private val RUN_TESTS = false
4343

4444
private lateinit var versionService: VersionService
4545

versions.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ext {
22

3-
pluginVersion = '1.23'
3+
pluginVersion = '1.23.2'
44

55
kotlinVersion = '1.4.10'
66

77
intellijPluginVersion = '0.6.5'
88

9-
ideaVersion = '2020.3.2'
10-
9+
ideaVersion = '202.7660.26'
10+
// ideaVersion = "2021.1.3"
1111
studioVersion = '201.8743.12'
1212

1313
useStudio = false

0 commit comments

Comments
 (0)