From e7611caf78a9555b34ced7274aa73181687deaeb Mon Sep 17 00:00:00 2001 From: crschnick Date: Mon, 22 Jul 2024 04:12:21 +0000 Subject: [PATCH] [stage] --- app/src/main/java/io/xpipe/app/core/AppExtensionManager.java | 4 ++-- version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/io/xpipe/app/core/AppExtensionManager.java b/app/src/main/java/io/xpipe/app/core/AppExtensionManager.java index a3061cec..ccbb1cb7 100644 --- a/app/src/main/java/io/xpipe/app/core/AppExtensionManager.java +++ b/app/src/main/java/io/xpipe/app/core/AppExtensionManager.java @@ -93,7 +93,7 @@ public class AppExtensionManager { Path p = Path.of(localInstallation); if (!Files.exists(p)) { throw new IllegalStateException( - "Required local XPipe installation was not found but is required for development"); + "Required local XPipe installation was not found but is required for development. See https://github.com/xpipe-io/xpipe/blob/master/CONTRIBUTING.md#development-setup"); } var iv = getLocalInstallVersion(); @@ -106,7 +106,7 @@ public class AppExtensionManager { .orElseThrow(() -> new IllegalArgumentException("Invalid source version: " + sv)); if (AppProperties.get().isLocatorVersionCheck() && !installVersion.equals(sourceVersion)) { throw new IllegalStateException("Incompatible development version. Source: " + iv + ", Installation: " - + sv + "\n\nPlease try to check out the matching release version in the repository."); + + sv + "\n\nPlease try to check out the matching release version in the repository. See https://github.com/xpipe-io/xpipe/blob/master/CONTRIBUTING.md#development-setup"); } var extensions = XPipeInstallation.getLocalExtensionsDirectory(p); diff --git a/version b/version index d0065854..0cee30c6 100644 --- a/version +++ b/version @@ -1 +1 @@ -10.2-6 +10.2-7