Name changes

Name changes & url corrections
This commit is contained in:
Peter 2021-07-19 17:41:45 +01:00
parent 2ec8019518
commit 867f97dcae
10 changed files with 27 additions and 27 deletions

View File

@ -4,7 +4,7 @@
<em><h5 align="center">(formerly Electron Launcher)</h5></em> <em><h5 align="center">(formerly Electron Launcher)</h5></em>
[<p align="center"><img src="https://img.shields.io/travis/dscalzi/HeliosLauncher.svg?style=for-the-badge" alt="travis">](https://travis-ci.org/dscalzi/HeliosLauncher) [<img src="https://img.shields.io/github/downloads/dscalzi/HeliosLauncher/total.svg?style=for-the-badge" alt="downloads">](https://github.com/dscalzi/HeliosLauncher/releases) <img src="https://forthebadge.com/images/badges/winter-is-coming.svg" height="28px" alt="stark"></p> [<p align="center"><img src="https://img.shields.io/travis/vicariousnetwork/VNLauncher.svg?style=for-the-badge" alt="travis">](https://travis-ci.org/vicariousnetwork/VNLauncher) [<img src="https://img.shields.io/github/downloads/vicariousnetwork/VNLauncher/total.svg?style=for-the-badge" alt="downloads">](https://github.com/vicariousnetwork/VNLauncher/releases) <img src="https://forthebadge.com/images/badges/winter-is-coming.svg" height="28px" alt="stark"></p>
<p align="center">Join modded servers without worrying about installing Java, Forge, or other mods. We'll handle that for you.</p> <p align="center">Join modded servers without worrying about installing Java, Forge, or other mods. We'll handle that for you.</p>
@ -38,18 +38,18 @@ This is not an exhaustive list. Download and install the launcher to gauge all i
## Downloads ## Downloads
You can download from [GitHub Releases](https://github.com/dscalzi/HeliosLauncher/releases) You can download from [GitHub Releases](https://github.com/vicariousnetwork/VNLauncher/releases)
#### Latest Release #### Latest Release
[![](https://img.shields.io/github/release/dscalzi/HeliosLauncher.svg?style=flat-square)](https://github.com/dscalzi/HeliosLauncher/releases/latest) [![](https://img.shields.io/github/release/vicariousnetwork/VNLauncher.svg?style=flat-square)](https://github.com/vicariousnetwork/VNLauncher/releases/latest)
#### Latest Pre-Release #### Latest Pre-Release
[![](https://img.shields.io/github/release/dscalzi/HeliosLauncher/all.svg?style=flat-square)](https://github.com/dscalzi/HeliosLauncher/releases) [![](https://img.shields.io/github/release/vicariousnetwork/VNLauncher/all.svg?style=flat-square)](https://github.com/vicariousnetwork/VNLauncher/releases)
**Supported Platforms** **Supported Platforms**
If you download from the [Releases](https://github.com/dscalzi/HeliosLauncher/releases) tab, select the installer for your system. If you download from the [Releases](https://github.com/vicariousnetwork/VNLauncher/releases) tab, select the installer for your system.
| Platform | File | | Platform | File |
| -------- | ---- | | -------- | ---- |
@ -90,8 +90,8 @@ This section details the setup of a basic developmentment environment.
**Clone and Install Dependencies** **Clone and Install Dependencies**
```console ```console
> git clone https://github.com/dscalzi/HeliosLauncher.git > git clone https://github.com/VicariousNetwork/VNLauncher.git
> cd HeliosLauncher > cd VNLauncher
> npm install > npm install
``` ```
@ -209,7 +209,7 @@ The best way to contact the developers is on Discord.
[mainprocess]: https://electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes 'Main Process' [mainprocess]: https://electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes 'Main Process'
[rendererprocess]: https://electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes 'Renderer Process' [rendererprocess]: https://electronjs.org/docs/tutorial/application-architecture#main-and-renderer-processes 'Renderer Process'
[chromedebugger]: https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome 'Debugger for Chrome' [chromedebugger]: https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome 'Debugger for Chrome'
[discord]: https://discord.gg/zNWUXdt 'Discord' [discord]: https://vcnet.work/discord 'Discord'
[wiki]: https://github.com/dscalzi/HeliosLauncher/wiki 'wiki' [wiki]: https://github.com/dscalzi/VNLauncher/wiki 'wiki'
[nebula]: https://github.com/dscalzi/Nebula 'dscalzi/Nebula' [nebula]: https://github.com/dscalzi/Nebula 'dscalzi/Nebula'
[v2branch]: https://github.com/dscalzi/HeliosLauncher/tree/ts-refactor 'v2 branch' [v2branch]: https://github.com/dscalzi/VNLauncher/tree/ts-refactor 'v2 branch'

View File

@ -269,7 +269,7 @@ class JavaGuard extends EventEmitter {
* Fetch the last open JDK binary. * Fetch the last open JDK binary.
* *
* HOTFIX: Uses Corretto 8 for macOS. * HOTFIX: Uses Corretto 8 for macOS.
* See: https://github.com/VicariousNetwork/HeliosLauncher/issues/70 * See: https://github.com/VicariousNetwork/VNLauncher/issues/70
* See: https://github.com/AdoptOpenJDK/openjdk-support/issues/101 * See: https://github.com/AdoptOpenJDK/openjdk-support/issues/101
* *
* @param {string} major The major version of Java to fetch. * @param {string} major The major version of Java to fetch.

View File

@ -343,7 +343,7 @@ class ProcessBuilder {
// Java Arguments // Java Arguments
if(process.platform === 'darwin'){ if(process.platform === 'darwin'){
args.push('-Xdock:name=HeliosLauncher') args.push('-Xdock:name=VNLauncher')
args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns')) args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns'))
} }
args.push('-Xmx' + ConfigManager.getMaxRAM()) args.push('-Xmx' + ConfigManager.getMaxRAM())
@ -381,7 +381,7 @@ class ProcessBuilder {
// Java Arguments // Java Arguments
if(process.platform === 'darwin'){ if(process.platform === 'darwin'){
args.push('-Xdock:name=HeliosLauncher') args.push('-Xdock:name=VNLauncher')
args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns')) args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns'))
} }
args.push('-Xmx' + ConfigManager.getMaxRAM()) args.push('-Xmx' + ConfigManager.getMaxRAM())

View File

@ -447,7 +447,7 @@ function asyncSystemScan(mcVersion, launchAfter = true){
//$('#overlayDismiss').toggle(false) //$('#overlayDismiss').toggle(false)
setOverlayContent( setOverlayContent(
'Java is Required<br>to Launch', 'Java is Required<br>to Launch',
'A valid x64 installation of Java 8 is required to launch.<br><br>Please refer to our <a href="https://github.com/VicariousNetwork/HeliosLauncher/wiki/Java-Management#manually-installing-a-valid-version-of-java">Java Management Guide</a> for instructions on how to manually install Java.', 'A valid x64 installation of Java 8 is required to launch.<br><br>Please refer to our <a href="https://github.com/VicariousNetwork/VNLauncher/wiki/Java-Management#manually-installing-a-valid-version-of-java">Java Management Guide</a> for instructions on how to manually install Java.',
'I Understand', 'I Understand',
'Go Back' 'Go Back'
) )
@ -493,7 +493,7 @@ function asyncSystemScan(mcVersion, launchAfter = true){
// User will have to follow the guide to install Java. // User will have to follow the guide to install Java.
setOverlayContent( setOverlayContent(
'Unexpected Issue:<br>Java Download Failed', 'Unexpected Issue:<br>Java Download Failed',
'Unfortunately we\'ve encountered an issue while attempting to install Java. You will need to manually install a copy. Please check out our <a href="https://github.com/dscalzi/HeliosLauncher/wiki">Troubleshooting Guide</a> for more details and instructions.', 'Unfortunately we\'ve encountered an issue while attempting to install Java. You will need to manually install a copy. Please check out our <a href="https://github.com/dscalzi/VNLauncher/wiki">Troubleshooting Guide</a> for more details and instructions.',
'I Understand' 'I Understand'
) )
setOverlayHandler(() => { setOverlayHandler(() => {
@ -827,7 +827,7 @@ function dlAsync(login = true){
data = data.trim() data = data.trim()
if(data.indexOf('Could not find or load main class net.minecraft.launchwrapper.Launch') > -1){ if(data.indexOf('Could not find or load main class net.minecraft.launchwrapper.Launch') > -1){
loggerLaunchSuite.error('Game launch failed, LaunchWrapper was not downloaded properly.') loggerLaunchSuite.error('Game launch failed, LaunchWrapper was not downloaded properly.')
showLaunchFailure('Error During Launch', 'The main file, LaunchWrapper, failed to download properly. As a result, the game cannot launch.<br><br>To fix this issue, temporarily turn off your antivirus software and launch the game again.<br><br>If you have time, please <a href="https://github.com/VicariousNetwork/HeliosLauncher/issues">submit an issue</a> and let us know what antivirus software you use. We\'ll contact them and try to straighten things out.') showLaunchFailure('Error During Launch', 'The main file, LaunchWrapper, failed to download properly. As a result, the game cannot launch.<br><br>To fix this issue, temporarily turn off your antivirus software and launch the game again.<br><br>If you have time, please <a href="https://github.com/VicariousNetwork/VNLauncher/issues">submit an issue</a> and let us know what antivirus software you use. We\'ll contact them and try to straighten things out.')
} }
} }

View File

@ -1367,7 +1367,7 @@ function populateAboutVersionInformation() {
*/ */
function populateReleaseNotes() { function populateReleaseNotes() {
$.ajax({ $.ajax({
url: 'https://github.com/ModRealms-Network/HeliosLauncher/releases.atom', url: 'https://github.com/VicariousNetwork/VNLauncher/releases.atom',
success: (data) => { success: (data) => {
const version = 'v' + remote.app.getVersion() const version = 'v' + remote.app.getVersion()
const entries = $(data).find('entry') const entries = $(data).find('entry')

View File

@ -133,7 +133,7 @@ function showFatalStartupError(){
'Join our Discord' 'Join our Discord'
) )
setOverlayHandler(() => { setOverlayHandler(() => {
shell.openExternal('https://github.com/VicariousNetwork/HeliosLauncher/releases/latest') shell.openExternal('https://github.com/VicariousNetwork/VNLauncher/releases/latest')
}) })
setDismissHandler(() => { setDismissHandler(() => {
shell.openExternal('https://vcnet.work/discord') shell.openExternal('https://vcnet.work/discord')

View File

@ -49,7 +49,7 @@ if(!isDev){
loggerAutoUpdaterSuccess.log('New update available', info.version) loggerAutoUpdaterSuccess.log('New update available', info.version)
if(process.platform === 'darwin'){ if(process.platform === 'darwin'){
info.darwindownload = `https://github.com/VicariousNetwork/HeliosLauncher/releases/download/v${info.version}/helioslauncher-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : ''}.dmg` info.darwindownload = `https://github.com/VicariousNetwork/VNLauncher/releases/download/v${info.version}/VNLauncher-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : ''}.dmg`
showUpdateUI(info) showUpdateUI(info)
} }

View File

@ -327,10 +327,10 @@
</div> </div>
</div> </div>
<div id="settingsAboutButtons"> <div id="settingsAboutButtons">
<a href="https://github.com/VicariousNetwork/HeliosLauncher" id="settingsAboutSourceButton" class="settingsAboutButton">Source (GitHub)</a> <a href="https://github.com/VicariousNetwork/VNLauncher" id="settingsAboutSourceButton" class="settingsAboutButton">Source (GitHub)</a>
<!-- The following must be included in third-party usage. --> <!-- The following must be included in third-party usage. -->
<!-- <a href="https://github.com/dscalzi/HeliosLauncher" id="settingsAboutSourceButton" class="settingsAboutButton">Original Source</a> --> <!-- <a href="https://github.com/dscalzi/VNLauncher" id="settingsAboutSourceButton" class="settingsAboutButton">Original Source</a> -->
<a href="https://github.com/VicariousNetwork/HeliosLauncher/issues" id="settingsAboutSupportButton" class="settingsAboutButton">Support</a> <a href="https://github.com/VicariousNetwork/VNLauncher/issues" id="settingsAboutSupportButton" class="settingsAboutButton">Support</a>
<a href="#" id="settingsAboutDevToolsButton" class="settingsAboutButton">DevTools Console</a> <a href="#" id="settingsAboutDevToolsButton" class="settingsAboutButton">DevTools Console</a>
</div> </div>
</div> </div>

View File

@ -1,3 +1,3 @@
owner: VicariousNetwork owner: VicariousNetwork
repo: HeliosLauncher repo: VNLauncher
provider: github provider: github

View File

@ -4,10 +4,10 @@
"productName": "Vicarious Network Launcher", "productName": "Vicarious Network Launcher",
"description": "Modded Minecraft Launcher", "description": "Modded Minecraft Launcher",
"author": "SirOMGitsYOU / Peter (https://github.com/VicaiousNetwork/)", "author": "SirOMGitsYOU / Peter (https://github.com/VicaiousNetwork/)",
"license": "UNLICENSED", "license": "MIT",
"homepage": "https://github.com/VicariousNetwork/HeliosLauncher", "homepage": "https://github.com/VicariousNetwork/VNLauncher",
"bugs": { "bugs": {
"url": "https://github.com/VicariousNetwork/HeliosLauncher/issues" "url": "https://github.com/VicariousNetwork/VNLauncher/issues"
}, },
"private": true, "private": true,
"main": "index.js", "main": "index.js",
@ -45,6 +45,6 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/VicariousNetwork/HeliosLauncher.git" "url": "git+https://github.com/VicariousNetwork/VNLauncher.git"
} }
} }