From 0c39458f36267183c90b66de896a5c69dbf3a512 Mon Sep 17 00:00:00 2001 From: Nikita Iarychenko Date: Thu, 24 Jul 2025 19:01:50 +0400 Subject: [PATCH] OPENIDE #116 Disable plugin suggestions in EditorNotificationPanel (cherry picked from commit 3eb456992c064a221a59bf5e4463340872397ad1) (cherry picked from commit 2001e6fd9ef487e3a362fe777f31f403a0f19562) (cherry picked from commit 14f5efd34050484f28241f9829006cae95a3dbfe) (cherry picked from commit 378af3e31abf8536029c4dc2313d42eaac052cf0) --- .../src/com/intellij/sh/shellcheck/ShShellcheckUtil.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java b/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java index 0765326ce9bb..7a9a11ae7c46 100644 --- a/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java +++ b/plugins/sh/core/src/com/intellij/sh/shellcheck/ShShellcheckUtil.java @@ -1,4 +1,7 @@ -// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. +// +// Modified by Nikita Iarychenko at 2025 as part of the OpenIDE project(https://openide.ru). +// Any modifications are available on the same license terms as the original source code. package com.intellij.sh.shellcheck; import com.intellij.execution.ExecutionException; @@ -68,8 +71,7 @@ public final class ShShellcheckUtil { private static final String SHELLCHECK_VERSION = "0.10.0"; private static final String SHELLCHECK_ARTIFACT_VERSION = SHELLCHECK_VERSION + "-1"; private static final String SHELLCHECK_ARCHIVE_EXTENSION = ".tar.gz"; - private static final String SHELLCHECK_URL = - "https://cache-redirector.jetbrains.com/intellij-dependencies/org/jetbrains/intellij/deps/shellcheck/shellcheck/"; + private static final String SHELLCHECK_URL = "https://download.openide.ru/deps/shellcheck/"; public static void download(@NotNull Project project, @NotNull Runnable onSuccess, @NotNull Runnable onFailure) { download(project, onSuccess, onFailure, false);