From cef8bc6157b48dbaec97e96303e959e222704849 Mon Sep 17 00:00:00 2001 From: elainefan331 Date: Wed, 1 Jul 2026 10:26:36 -0400 Subject: [PATCH] fix(autobidsify): update ExecVal download URLs to NeuroJSON/autobidsifyAPP repo --- src/components/User/Dashboard/DatasetOrganizer/LLMPanel.tsx | 6 +++--- src/components/User/Dashboard/DatasetOrganizer/index.tsx | 6 +++--- src/pages/BidsConverterPage.tsx | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/User/Dashboard/DatasetOrganizer/LLMPanel.tsx b/src/components/User/Dashboard/DatasetOrganizer/LLMPanel.tsx index e2c14da..f96c413 100644 --- a/src/components/User/Dashboard/DatasetOrganizer/LLMPanel.tsx +++ b/src/components/User/Dashboard/DatasetOrganizer/LLMPanel.tsx @@ -1802,9 +1802,9 @@ const LLMPanel: React.FC = ({ const ua = navigator.userAgent.toLowerCase(); const os = ua.includes("win") ? "windows" : ua.includes("linux") ? "linux" : "mac"; const urls: Record = { - mac: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-macOS-arm64.zip", - windows: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Windows.zip", - linux: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Linux.tar.gz", + mac: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-macOS-arm64.zip", + windows: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Windows.zip", + linux: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Linux.tar.gz", }; window.open(urls[os], "_blank"); }} diff --git a/src/components/User/Dashboard/DatasetOrganizer/index.tsx b/src/components/User/Dashboard/DatasetOrganizer/index.tsx index 92a73f4..119aedd 100644 --- a/src/components/User/Dashboard/DatasetOrganizer/index.tsx +++ b/src/components/User/Dashboard/DatasetOrganizer/index.tsx @@ -388,9 +388,9 @@ const DatasetOrganizer: React.FC = () => { const ua = navigator.userAgent.toLowerCase(); const os = ua.includes("win") ? "windows" : ua.includes("linux") ? "linux" : "mac"; const urls: Record = { - mac: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-macOS-arm64.zip", - windows: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Windows.zip", - linux: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Linux.tar.gz", + mac: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-macOS-arm64.zip", + windows: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Windows.zip", + linux: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Linux.tar.gz", }; window.open(urls[os], "_blank"); }} diff --git a/src/pages/BidsConverterPage.tsx b/src/pages/BidsConverterPage.tsx index c37a32a..270f569 100644 --- a/src/pages/BidsConverterPage.tsx +++ b/src/pages/BidsConverterPage.tsx @@ -264,9 +264,9 @@ const BidsConverterPage: React.FC = () => { const ua = navigator.userAgent.toLowerCase(); const os = ua.includes("win") ? "windows" : ua.includes("linux") ? "linux" : "mac"; const urls: Record = { - mac: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-macOS-arm64.zip", - windows: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Windows.zip", - linux: "https://github.com/yiyiliu-rose/autobidsifyAPP/releases/latest/download/AutoBIDSify-ExecVal-Linux.tar.gz", + mac: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-macOS-arm64.zip", + windows: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Windows.zip", + linux: "https://github.com/NeuroJSON/autobidsifyAPP/releases/download/latest-execval/AutoBIDSify-ExecVal-Linux.tar.gz", }; window.open(urls[os], "_blank"); }}