Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
IPECTER committed Feb 17, 2024
1 parent d522bc9 commit d275bdf
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/assets/js/processbuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class ProcessBuilder {

// Java Arguments
if(process.platform === 'darwin'){
args.push('-Xdock:name=HeliosLauncher')
args.push('-Xdock:name=FestivalLauncher')
args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns'))
}
args.push('-Xmx' + ConfigManager.getMaxRAM(this.server.rawServer.id))
Expand Down Expand Up @@ -419,7 +419,7 @@ class ProcessBuilder {

// Java Arguments
if(process.platform === 'darwin'){
args.push('-Xdock:name=HeliosLauncher')
args.push('-Xdock:name=FestivalLauncher')
args.push('-Xdock:icon=' + path.join(__dirname, '..', 'images', 'minecraft.icns'))
}
args.push('-Xmx' + ConfigManager.getMaxRAM(this.server.rawServer.id))
Expand Down
2 changes: 1 addition & 1 deletion app/assets/js/scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ function populateAboutVersionInformation(){
*/
function populateReleaseNotes(){
$.ajax({
url: 'https://github.com/dscalzi/HeliosLauncher/releases.atom',
url: 'https://github.com/RTUServer/FestivalLauncher/releases.atom',
success: (data) => {
const version = 'v' + remote.app.getVersion()
const entries = $(data).find('entry')
Expand Down
2 changes: 1 addition & 1 deletion app/assets/js/scripts/uicore.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if(!isDev){
loggerAutoUpdater.info('New update available', info.version)

if(process.platform === 'darwin'){
info.darwindownload = `https://github.com/dscalzi/HeliosLauncher/releases/download/v${info.version}/Helios-Launcher-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : '-x64'}.dmg`
info.darwindownload = `https://github.com/RTUServer/FestivalLauncher/releases/download/v${info.version}/Festival-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : '-x64'}.dmg`
showUpdateUI(info)
}

Expand Down
2 changes: 1 addition & 1 deletion electron-builder.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
appId: 'festivallauncher'
productName: '페스티벌 런쳐'
productName: 'Festival'
artifactName: '${productName}-setup-${version}.${ext}'

copyright: 'Copyright © 2020-2024 IPECTER'
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "festivallauncher",
"version": "0.0.1",
"version": "0.0.2",
"productName": "Festival Launcher",
"description": "Modded Minecraft Launcher",
"author": "IPECTER (https://github.com/IPECTER) & Daniel Scalzi (https://github.com/dscalzi/)",
Expand Down Expand Up @@ -46,6 +46,6 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscalzi/HeliosLauncher.git"
"url": "git+https://github.com/RTUServer/FestivalLauncher.git"
}
}

0 comments on commit d275bdf

Please sign in to comment.