OPENIDE #116 Disable plugin suggestions in EditorNotificationPanel

(cherry picked from commit 3eb456992c)
(cherry picked from commit 2001e6fd9e)
(cherry picked from commit 14f5efd340)
(cherry picked from commit 378af3e31a)
This commit is contained in:
Nikita Iarychenko
2025-07-24 19:01:50 +04:00
parent fe39c3fd55
commit 0c39458f36

View File

@@ -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);