Skip to content

Commit

Permalink
Change repository links
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinRMC committed Mar 16, 2024
1 parent 258d0ab commit ff9d5e1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -11,27 +11,27 @@ 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

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.

Expand Down
6 changes: 3 additions & 3 deletions constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions install.ps1
Original file line number Diff line number Diff line change
@@ -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 "=============================="
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ff9d5e1

Please sign in to comment.