Skip to content

Commit da1050a

Browse files
committed
Version 1.28.1.
1 parent 16b3392 commit da1050a

File tree

5 files changed

+8
-16
lines changed

5 files changed

+8
-16
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.28.1
2+
* [#49](https://github.com/BlueBoxWare/LibGDXPlugin/pull/49): Make atlas preview images sharp when scaled up, by [EfourC](https://github.com/EfourC).
3+
14
### 1.28
25
* gdxAI behavior trees: Completion, Goto Definition, Find Usages and basic refactoring support for tasks and attributes.
36
* [#48](https://github.com/BlueBoxWare/LibGDXPlugin/pull/48): Fix Atlas image preview on Windows, by [@ZCHawk](https://github.com/ZCHawk).

build.gradle.kts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
id("org.jetbrains.kotlin.jvm") version "2.3.0"
1212
id("com.github.blueboxware.tocme") version "1.8"
1313
id("org.jetbrains.intellij.platform") version "2.11.0"
14-
id("org.jetbrains.grammarkit") version "2022.3.2.2"
14+
id("org.jetbrains.grammarkit") version "2023.3.0.3"
1515
}
1616

1717
group = providers.gradleProperty("pluginGroup").get()
@@ -144,16 +144,6 @@ tasks {
144144
val name = path.uppercaseFirstChar()
145145
val bnfTask = register<GenerateParserTask>("generate${name}Parser") {
146146

147-
// TODO: Remove
148-
// https://github.com/JetBrains/gradle-grammar-kit-plugin/issues/223
149-
// https://github.com/JetBrains/gradle-grammar-kit-plugin/issues/225
150-
val platformLibs = intellijPlatform.platformPath.resolve("lib")
151-
classpath += fileTree(platformLibs) {
152-
include("*.jar")
153-
}
154-
// /TODO
155-
156-
157147
sourceFile = file("src/main/kotlin/com/gmail/blueboxware/libgdxplugin/filetypes/$path/$parser.bnf")
158148
targetRootOutputDir = file("gen")
159149
pathToParser = "gen/com/gmail/blueboxware/libgdxplugin/filetypes/$path"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pluginGroup = com.gmail.blueboxware
22
pluginName = LibGDX
3-
pluginVersion = 1.28
3+
pluginVersion = 1.28.1
44

55
pluginSinceBuild = 253.29346.138
66

src/main/kotlin/com/gmail/blueboxware/libgdxplugin/ui/ImagePreviewDocumentationTarget.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ class ImagePreviewDocumentationTarget(private val targetElement: PsiElement?) :
140140
previewImage.createGraphics().apply {
141141
setRenderingHint(
142142
RenderingHints.KEY_INTERPOLATION,
143-
RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR)
143+
RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR
144+
)
144145
drawImage(image, 0, 0, previewImage.width, previewImage.height, null)
145146
dispose()
146147
}

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030

3131
<change-notes><![CDATA[
3232
<ul>
33-
<li>gdxAI behavior trees: Completion, Goto Definition, Find Usages and basic refactoring support for tasks and attributes.
34-
</li>
35-
<li>Fix Atlas image preview on Windows.</li>
33+
<li>Don't smooth Atlas image previews.</li>
3634
</ul>
3735
]]>
3836
</change-notes>

0 commit comments

Comments
 (0)