Skip to content

Commit 0320187

Browse files
committed
Version 1.18
1 parent fe0cc52 commit 0320187

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ intellij {
3737
if (useStudio) {
3838
version = studioVersion
3939
if (runStudio) {
40-
plugins = ["org.jetbrains.kotlin:$studioKotlinPlugin", 'Groovy', 'properties']
40+
plugins = ["Kotlin", 'Groovy', 'properties']
4141
alternativeIdePath = System.getenv("ANDROID_STUDIO_PATH")
4242
}
4343
} else {
@@ -94,7 +94,6 @@ test {
9494

9595
dependencies {
9696
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
97-
compile "org.jetbrains.kotlin:kotlin-runtime"
9897
compile files("${System.properties['java.home']}/../lib/tools.jar")
9998

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

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<idea-plugin>
1818
<id>com.gmail.blueboxware.libgdxplugin</id>
1919
<name>LibGDX Plugin</name>
20-
<version>1.17.2</version>
20+
<version>1.18</version>
2121
<vendor url="https://github.com/BlueBoxWare/LibGDXPlugin">Blue Box Ware</vendor>
2222

2323
<description><![CDATA[
@@ -30,6 +30,12 @@
3030
]]></description>
3131

3232
<change-notes><![CDATA[
33+
<b>1.18</b>
34+
<ul>
35+
<li>Support for com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator in Skin files (<a href="https://github.com/BlueBoxWare/LibGDXPlugin/issues/18">issue #18</a>)</li>
36+
<li>Minor fixes</li>
37+
</ul>
38+
3339
<b>1.17.2</b>
3440
<ul>
3541
<li>Fix issue https://github.com/BlueBoxWare/LibGDXPlugin/issues/17</li>

versions.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
ext {
22

3-
pluginVersion = '1.17.2'
3+
pluginVersion = '1.18'
44

5-
kotlinVersion = '1.2.40'
5+
kotlinVersion = '1.3.21'
66

7-
intellijPluginVersion = '0.3.11'
7+
// https://github.com/JetBrains/gradle-intellij-plugin/issues/367
8+
intellijPluginVersion = '0.4.2'
89

910
// ideaVersion = 'LATEST-EAP-SNAPSHOT'
10-
ideaVersion = '2018.2.4'
11+
ideaVersion = '2018.3.5'
1112

12-
studioVersion = '2018.1.6'
13-
studioKotlinPlugin = '1.2.71-release-Studio3.2-1'
13+
studioVersion = '2018.2.2'
14+
studioKotlinPlugin = '1.2.71-release-Studio3.3-1'
1415

1516
useStudio = false
1617
runStudio = false

0 commit comments

Comments
 (0)