Skip to content

Commit b8310d2

Browse files
authored
Bump pluginSinceBuild to 243 (#42)
1 parent 3249054 commit b8310d2

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ This plugin for Android Studio and IntelliJ helps you work with the
3030

3131
The plugin is supported on:
3232

33-
- IntelliJ 2024.2.1 and above
34-
- Android Studio 2024.2.1 (Ladybug) and above
33+
- IntelliJ 2024.3.5 and above
34+
- Android Studio 2024.3.2 Patch 1 (Meerkat) and above
3535

3636
## Installation instructions
3737

plugin/gradle.properties

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,18 @@ pluginRepositoryUrl=https://github.com/apollographql/apollo-kotlin
99
# XXX Do update the supported versions in the README.md, and in docs/source/testing/android-studio-plugin.mdx file when updating these values!
1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
12-
pluginSinceBuild=242
12+
pluginSinceBuild=243
1313
# No untilBuild specified, the plugin wants to be compatible with all future versions
1414
# pluginUntilBuild=243.*
1515
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1616
platformType=IU
17-
# Corresponds to AS Ladybug 2024.2.1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
17+
# Corresponds to AS Meerkat Feature Drop 2024.3.2 Patch 1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
1818
# and https://developer.android.com/studio/archive (more up to date)
1919
# See also https://plugins.jetbrains.com/docs/intellij/android-studio.html
20-
platformVersion=2024.2.1
20+
platformVersion=2024.3.5
2121

2222
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
23-
platformBundledPlugins=com.intellij.java, org.jetbrains.kotlin, com.intellij.gradle, org.toml.lang
23+
platformBundledPlugins=com.intellij.java, org.jetbrains.kotlin, com.intellij.gradle, org.toml.lang, com.intellij.modules.json
2424
# To find the version of a plugin relative to the platform version, see the plugin's page on the Marketplace,
25-
# e.g. for the GraphQL plugin: https://plugins.jetbrains.com/plugin/8097-graphql/versions/stable
26-
# Note: to run wih AS 2024.1.1, use org.jetbrains.android:241.14494.17
27-
platformPlugins=com.intellij.lang.jsgraphql:242.21829.3, org.jetbrains.android:242.21829.142
25+
# e.g. for the Android plugin: https://plugins.jetbrains.com/plugin/22989-android/versions/stable
26+
platformPlugins=com.intellij.lang.jsgraphql:243.25659.42, org.jetbrains.android:243.26053.27

plugin/src/main/kotlin/com/apollographql/ijplugin/settings/studio/ApiKeyDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class ApiKeyDialog(
9191
}
9292
.applyToComponent {
9393
whenTextChanged {
94-
graphOsServiceNameTextField.text = it.document.getText(0, it.document.length).extractServiceName()
94+
graphOsServiceNameTextField.text = it.extractServiceName()
9595
}
9696
}
9797
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<depends optional="true" config-file="com.apollographql.ijplugin-gradle.xml">com.intellij.gradle</depends>
1414
<depends>com.intellij.lang.jsgraphql</depends>
1515
<depends>org.toml.lang</depends>
16-
<depends>com.intellij.modules.json</depends>
1716
<depends optional="true" config-file="com.apollographql.ijplugin-android.xml">org.jetbrains.android</depends>
1817
<depends optional="true" config-file="com.apollographql.ijplugin-ultimate.xml">com.intellij.modules.ultimate</depends>
1918

0 commit comments

Comments
 (0)