Skip to content

Commit 845f1ba

Browse files
committed
Rename the plugin to GraphQL
1 parent ed86288 commit 845f1ba

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- Spell-checking for string literals.
1111
- GitHub error reporter for plugin exceptions. Additional logging has also been implemented, so feel free to report an error!
1212
- Type definitions for the Apollo Federation. Can be enabled in the settings.
13-
- Type definitions discovery in JAR libraries for the Netflix's DGS framework (https://netflix.github.io/dgs/).
13+
- Type definitions discovery in JAR libraries for the Netflix's <a href="https://netflix.github.io/dgs/">DGS</a> framework.
1414
- A new option that prevents opening the editor with the result after an introspection request.
1515
- Colors for the built-in Monokai editor scheme.
1616
- Schema directives introspection. Support for the "repeatable" directives is disabled by default and can be enabled in the settings.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![](docs/js-graphql-logo.png)
22

3-
# JS GraphQL IntelliJ Plugin
3+
# GraphQL IntelliJ Plugin
44

55
GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the IntelliJ Platform.
66

@@ -16,14 +16,15 @@ GraphQL language support for WebStorm, IntelliJ IDEA and other IDEs based on the
1616
- 'Find Usages' and 'Go to Declaration' for schema types, fields, and fragments
1717
- 'Structure view' to navigate GraphQL files
1818
- Load variables from .env files. Supported file names: `.env.local`,`.env.development.local`,`.env.development`,`.env.dev.local`,`.env.dev`,`.env`
19+
- Built-in Relay and Apollo Federation type definitions
1920

2021
## Documentation
2122

2223
The main documentation site is available at https://jimkyndemeyer.github.io/js-graphql-intellij-plugin/
2324

2425
## Which IDEs are compatible with the plugin?
2526

26-
The plugin is compatible with version 2019.3+ (193.7288 or later) of all IDEs based on the IntelliJ Platform, including but not limited to WebStorm, IntelliJ IDEA, Android Studio, RubyMine, PhpStorm, and PyCharm.
27+
The plugin is compatible with version 2020.3+ of all IDEs based on the IntelliJ Platform, including but not limited to WebStorm, IntelliJ IDEA, Android Studio, RubyMine, PhpStorm, and PyCharm.
2728

2829
## Where can I get the plugin?
2930

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,10 @@ intellij {
4444
untilBuild = pluginUntilBuild
4545

4646
changeNotes = """
47-
<p><b>New in $pluginVersion</b></p>
48-
<p>
47+
<h2>New in $pluginVersion</h2>
4948
${changelog.get(pluginVersion.toString()).toHTML()}
50-
</p>
5149
<br />
52-
<p>See the <a href="https://github.com/jimkyndemeyer/js-graphql-intellij-plugin/blob/master/CHANGELOG.md">CHANGELOG</a> for more details and history.</p>
50+
See the <a href="https://github.com/jimkyndemeyer/js-graphql-intellij-plugin/blob/master/CHANGELOG.md">CHANGELOG</a> for more details and history.
5351
""".stripIndent()
5452
}
5553
}

resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
-->
1010
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
1111
<id>com.intellij.lang.jsgraphql</id>
12-
<name>JS GraphQL</name>
12+
<name>GraphQL</name>
1313
<vendor>Jim Kynde Meyer - [email protected]</vendor>
1414

1515
<description><![CDATA[
16-
<p>GraphQL language support including tagged template literals in JavaScript and TypeScript.</p>
16+
<p>GraphQL language support including tagged template literals in JavaScript and TypeScript. Formerly known as <b>JS GraphQL</b>.</p>
1717
<br/>
1818
<p>Feature highlights:</p>
1919
<ul>

0 commit comments

Comments
 (0)