Skip to content

Commit

Permalink
feat: update remote urls
Browse files Browse the repository at this point in the history
  • Loading branch information
philhk committed Aug 6, 2024
1 parent 8d4d2f7 commit bbf057f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"vencordinstaller/buildinfo"
)

const ReleaseUrl = "https://api.github.com/repos/Vendicated/Vencord/releases/latest"
const ReleaseUrl = "https://api.github.com/repos/philhk/Vencord/releases/latest"
const ReleaseUrlFallback = "https://vencord.dev/releases/vencord"
const InstallerReleaseUrl = "https://api.github.com/repos/Vencord/Installer/releases/latest"
const InstallerReleaseUrl = "https://api.github.com/repos/philhk/Installer/releases/latest"
const InstallerReleaseUrlFallback = "https://vencord.dev/releases/installer"

var UserAgent = "VencordInstaller/" + buildinfo.InstallerGitHash + " (https://github.com/Vencord/Installer)"
Expand Down
2 changes: 1 addition & 1 deletion self_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func init() {
}

func GetInstallerDownloadLink() string {
const BaseUrl = "https://github.com/Vencord/Installer/releases/latest/download/"
const BaseUrl = "https://github.com/philhk/Installer/releases/latest/download/"
switch runtime.GOOS {
case "windows":
filename := Ternary(buildinfo.UiType == buildinfo.UiTypeCli, "VencordInstallerCli.exe", "VencordInstaller.exe")
Expand Down

0 comments on commit bbf057f

Please sign in to comment.