diff --git a/README.md b/README.md index 3c0d9866..05c7795a 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ selecting `Android` - Tick the `Use Gradle Build` tickbox - Select `OpenXR` as the **XR Mode** under the **XR Features** section - Enable the loader you need to use +- Scroll down to the bottom to see additional features for specific platforms. **Note:** **Do not** select multiple loaders in the same export template! diff --git a/config.gradle b/config.gradle index d96e0b0d..6a7382ed 100644 --- a/config.gradle +++ b/config.gradle @@ -12,7 +12,7 @@ ext { // Parse the release version from the gradle project properties (e.g: -Prelease_version=) ext.getReleaseVersion = { -> - final String defaultVersion = "1.1.0-SNAPSHOT" + final String defaultVersion = "2.0.0-SNAPSHOT" String releaseVersion = project.hasProperty("release_version") ? project.property("release_version") : defaultVersion if (releaseVersion == null || releaseVersion.isEmpty()) { diff --git a/demo/addons/godotopenxr/plugin.cfg b/demo/addons/godotopenxr/plugin.cfg index c398c8ba..dbf5f583 100644 --- a/demo/addons/godotopenxr/plugin.cfg +++ b/demo/addons/godotopenxr/plugin.cfg @@ -3,5 +3,5 @@ name="GodotOpenXR" description="Godot OpenXR loader plugin" author="https://github.com/GodotVR/godot_openxr_loaders/blob/master/CONTRIBUTORS.md" -version="1.1.0-stable" +version="2.0.0-dev" script="export/godot_openxr_editor_plugin.gd"