Skip to content

Commit 3febce8

Browse files
committed
Fix #22: Change plugin name to libGDX.
1 parent 3fb11b1 commit 3febce8

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to the newest version, go to: *Tools* -> *Kotlin* -> *Configure Kotlin Plugin Up
3030
# Features
3131

3232
## Inspections
33-
LibGDXPlugin adds several inspections, which look for possible issues in a project. Code inspections support both Java and
33+
libGDXPlugin adds several inspections, which look for possible issues in a project. Code inspections support both Java and
3434
[Kotlin](https://kotlinlang.org/). To disable or enable inspections go to *Settings* -> *Editor* -> *Inspections* -> *libGDX*.
3535
The following inspections are included:
3636

@@ -54,7 +54,7 @@ The following inspections are included:
5454
When using a libGDX color in Java or Kotlin code (e.g. `Color.BLUE` or `Color.valueOf("#0000ff")`) a preview of the the color is shown in the left gutter.
5555
Color previews are also shown in the editor when editing Skin files and in the Debug Tool Window.
5656

57-
To disable color previews, go to *Settings* -> *Editor* -> *LibGDXPlugin*.
57+
To disable color previews, go to *Settings* -> *Editor* -> *libGDXPlugin*.
5858

5959
## Skin JSON support
6060
Files with the extension `.skin` are treated as Skin JSON files. For files with the extension `.json` which look like Skin files, you are asked
@@ -91,7 +91,7 @@ annotation (see below)
9191

9292
## JSON support
9393
IntelliJ doesn't work well with libGDX-style JSON, which is more forgiving when it comes to things like unquoted strings and missing comma's.
94-
LibGDXPlugin adds support for libGDX's custom JSON with the usual niceties of syntax coloring, completion, folding, etc.
94+
libGDXPlugin adds support for libGDX's custom JSON with the usual niceties of syntax coloring, completion, folding, etc.
9595

9696
To have libGDXPlugin treat a JSON file as a libGDX-style JSON file: in the Project Window, open the context menu for the file
9797
and select `Mark as libGDX style JSON`.
@@ -122,7 +122,7 @@ To get code completion, Go to Definition, Find Usages, Rename Refactoring, Diagn
122122
* Region names from Atlas files in Skin.get*() and TextureAtlas.get*()
123123
* Property keys in I18NBundle.get() and I18NBundle.format()
124124

125-
and related methods, use the `@GDXAssets` annotation to tell LibGDXPlugin which files to use.
125+
and related methods, use the `@GDXAssets` annotation to tell libGDXPlugin which files to use.
126126

127127
First add the annotation to your build. In `build.gradle`:
128128

@@ -197,7 +197,7 @@ Since version 1.9.9 libGDX skins support tagged classes: the ability to use shor
197197
in Skin files. In addition to the standard, "built-in" short class names it is also possible to define custom
198198
short names for your own classes by overriding `Skin.getJsonLoader()` and calling `Json.addClassTag()`.
199199

200-
LibGDXPlugin understands the default short names. It also tries to determine any custom short names by looking
200+
libGDXPlugin understands the default short names. It also tries to determine any custom short names by looking
201201
for calls to `addClassTag()`, but there is only so much it can do.
202202

203203
To explicitly tell the plugin to recognize one (or more) short names for one of your own classes, you can

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<!--suppress XmlUnboundNsPrefix -->
1717
<idea-plugin>
1818
<id>com.gmail.blueboxware.libgdxplugin</id>
19-
<name>LibGDX</name>
19+
<name>libGDX</name>
2020
<version>1.20.2</version>
2121
<vendor url="https://github.com/BlueBoxWare/LibGDXPlugin">Blue Box Ware</vendor>
2222

@@ -257,9 +257,10 @@
257257
<annotator language="JAVA" implementationClass="com.gmail.blueboxware.libgdxplugin.annotators.ColorAnnotator" />
258258
<highlightingPassFactory implementation="com.gmail.blueboxware.libgdxplugin.annotators.ColorAnnotationsHighlightingPassFactory" />
259259

260+
<!--suppress PluginXmlCapitalization -->
260261
<projectConfigurable
261262
instance="com.gmail.blueboxware.libgdxplugin.settings.LibGDXPluginConfigurable"
262-
displayName="LibGDXPlugin"
263+
displayName="libGDXPlugin"
263264
id="com.gmail.blueboxware.libgdxplugin.libgdxpluginconfigurable"
264265
groupId="editor"
265266
/>

0 commit comments

Comments
 (0)