Skip to content

Commit

Permalink
Version 1.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueBoxWare committed Jul 3, 2021
1 parent c017c55 commit 073f117
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.23.2
* Fix IllegalAccessError with IntelliJ 2021.1.*.

### 1.23
* Some Suppression ids have been changed for consistency. See [Inspections.md](https://github.com/BlueBoxWare/LibGDXPlugin/Inspections.md) for an up to date list.
* Reworking of JSON handling, fixing several bugs (like [#26](https://github.com/BlueBoxWare/LibGDXPlugin/issues/26)).
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ test {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation files("${System.properties['java.home']}/../lib/tools.jar")

testCompile group: 'junit', name: 'junit', version: '4.11'
}
Expand Down
9 changes: 3 additions & 6 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<id>com.gmail.blueboxware.libgdxplugin</id>
<!--suppress PluginXmlCapitalization -->
<name>libGDX</name>
<version>1.23</version>
<version>1.23.2</version>
<vendor url="https://github.com/BlueBoxWare/LibGDXPlugin">Blue Box Ware</vendor>

<description><![CDATA[
Expand All @@ -32,15 +32,12 @@

<change-notes><![CDATA[
<ul>
<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>
<li>Reworking of JSON handling, fixing several bugs (like <a href="https://github.com/BlueBoxWare/LibGDXPlugin/issues/26">#26</a>)</li>
<li>Display a warning when *.gwt.xml files are changed in a html module that a full rebuild is necessary.</li>
<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>
<li>Fix IllegalAccessError with IntelliJ 2021.1.*.</li>
</ul>
]]>
</change-notes>

<idea-version since-build="201.8743.12"/>
<idea-version since-build="202.7660.26"/>

<depends>com.intellij.modules.java</depends>
<depends>org.jetbrains.kotlin</depends>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import java.util.*
@Suppress("ReplaceNotNullAssertionWithElvisReturn")
class TestVersionHandlingLocalhost: LibGDXCodeInsightFixtureTestCase() {

private val RUN_TESTS = true
private val RUN_TESTS = false

private lateinit var versionService: VersionService

Expand Down
6 changes: 3 additions & 3 deletions versions.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ext {

pluginVersion = '1.23'
pluginVersion = '1.23.2'

kotlinVersion = '1.4.10'

intellijPluginVersion = '0.6.5'

ideaVersion = '2020.3.2'

ideaVersion = '202.7660.26'
// ideaVersion = "2021.1.3"
studioVersion = '201.8743.12'

useStudio = false
Expand Down

0 comments on commit 073f117

Please sign in to comment.