From ff9d5e1404fad1c8f438198aae66a507a32780ea Mon Sep 17 00:00:00 2001 From: RobinRMC Date: Sun, 17 Mar 2024 00:42:36 +0100 Subject: [PATCH] Change repository links --- README.md | 10 +++++----- constants.go | 6 +++--- install.ps1 | 4 ++-- install.sh | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7d75f3e..d3af9da 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Vencord+ Installer -The Vencord Installer allows you to install [Vencord+, the best Discord Desktop client mod](https://github.com/StupidityDB/VencordPlus) +The Vencord Installer allows you to install [Vencord+, the best Discord Desktop client mod](https://github.com/RobinRMC/VencordPlus) ![image](https://user-images.githubusercontent.com/45497981/226734476-5fb42420-844d-4e27-ae06-4799118e086e.png) @@ -11,14 +11,14 @@ The Vencord Installer allows you to install [Vencord+, the best Discord Desktop > **Warning** **Do not** run the installer as Admin -Download [VencordInstaller.exe](https://github.com/StupidityDB/VencordPlusInstaller/releases/latest/download/VencordInstaller.exe) and run it +Download [VencordInstaller.exe](https://github.com/RobinRMC/VencordPlusInstaller/releases/latest/download/VencordInstaller.exe) and run it If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer. To do so, open Powershell, run the following command, then follow along with the instructions/prompts ```ps1 -iwr "https://raw.githubusercontent.com/StupidityDB/VencordPlusInstaller/main/install.ps1" -UseBasicParsing | iex +iwr "https://raw.githubusercontent.com/RobinRMC/VencordPlusInstaller/main/install.ps1" -UseBasicParsing | iex ``` ### Linux @@ -26,12 +26,12 @@ iwr "https://raw.githubusercontent.com/StupidityDB/VencordPlusInstaller/main/ins Run the following command in your terminal and follow along with the instructions/prompts ```sh -sh -c "$(curl -sS https://raw.githubusercontent.com/StupidityDB/VencordPlusInstaller/main/install.sh)" +sh -c "$(curl -sS https://raw.githubusercontent.com/RobinRMC/VencordPlusInstaller/main/install.sh)" ``` ### MacOs -Download the latest [MacOs build](https://github.com/StupidityDB/VencordPlusInstaller/releases/latest/download/VencordInstaller.MacOS.zip), unzip it, and run `VencordInstaller.app` +Download the latest [MacOs build](https://github.com/RobinRMC/VencordPlusInstaller/releases/latest/download/VencordInstaller.MacOS.zip), unzip it, and run `VencordInstaller.app` If you get a `VencordInstaller can't be opened` warning, right-click `VencordInstaller.app` and click open. diff --git a/constants.go b/constants.go index 5994f75..798b97b 100644 --- a/constants.go +++ b/constants.go @@ -13,12 +13,12 @@ import "image/color" var InstallerGitHash = "Unknown" var InstallerTag = "Unknown" -const ReleaseUrl = "https://api.github.com/repos/StupidityDB/VencordPlus/releases/latest" +const ReleaseUrl = "https://api.github.com/repos/RobinRMC/VencordPlus/releases/latest" const ReleaseUrlFallback = "https://vencord.dev/releases/vencord" -const InstallerReleaseUrl = "https://api.github.com/repos/StupidityDB/VencordPlusInstaller/releases/latest" +const InstallerReleaseUrl = "https://api.github.com/repos/RobinRMC/VencordPlusInstaller/releases/latest" const InstallerReleaseUrlFallback = "https://vencord.dev/releases/installer" -var UserAgent = "VencordInstaller/" + InstallerGitHash + " (https://github.com/Vencord/Installer)" +var UserAgent = "VencordPlusInstaller/" + InstallerGitHash + " (https://github.com/RobinRMC/VencordPlusInstaller)" var ( DiscordGreen = color.RGBA{R: 0x2D, G: 0x7C, B: 0x46, A: 0xFF} diff --git a/install.ps1 b/install.ps1 index 4a5374c..471f08c 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,5 +1,5 @@ -$DOWNLOAD_CLI = "https://github.com/StupidityDB/VencordPlusInstaller/releases/latest/download/VencordInstallerCli.exe" -$DOWNLOAD_GUI = "https://github.com/StupidityDB/VencordPlusInstaller/releases/latest/download/VencordInstaller.exe" +$DOWNLOAD_CLI = "https://github.com/RobinRMC/VencordPlusInstaller/releases/latest/download/VencordInstallerCli.exe" +$DOWNLOAD_GUI = "https://github.com/RobinRMC/VencordPlusInstaller/releases/latest/download/VencordInstaller.exe" if ([Environment]::Is64BitOperatingSystem -and [System.Environment]::OSVersion.Version.Major -ge 10) { Write-Output "==============================" diff --git a/install.sh b/install.sh index dcf21b2..8604bac 100755 --- a/install.sh +++ b/install.sh @@ -21,7 +21,7 @@ else set -- "$@" "XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR" "WAYLAND_DISPLAY=$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY" fi -curl -sS https://github.com/StupidityDB/VencordPlusInstaller/releases/latest/download/VencordInstaller-$kind \ +curl -sS https://github.com/RobinRMC/VencordPlusInstaller/releases/latest/download/VencordInstaller-$kind \ --output "$outfile" \ --location