Mise a jours Initial

This commit is contained in:
FullGreenDev 2020-11-29 19:20:06 +01:00
parent fb36839d45
commit 3bdba43528
4 changed files with 14 additions and 16 deletions

View File

@ -7,7 +7,7 @@
</div>
</div>
<div id="serverSelectActions">
<button id="serverSelectConfirm" class="overlayKeybindEnter" type="submit">Sélectionner</button>
<button id="serverSelectConfirm" class="overlayKeybindEnter" type="submit">Slectionner</button>
<div id="serverSelectCancelWrapper">
<button id="serverSelectCancel" class="overlayKeybindEsc">Annuler</button>
</div>

View File

@ -1,8 +1,8 @@
const builder = require('electron-builder')
const Platform = builder.Platform
function getCurrentPlatform(){
switch(process.platform){
function getCurrentPlatform() {
switch (process.platform) {
case 'win32':
return Platform.WINDOWS
case 'darwin':
@ -18,8 +18,8 @@ function getCurrentPlatform(){
builder.build({
targets: (process.argv[2] != null && Platform[process.argv[2]] != null ? Platform[process.argv[2]] : getCurrentPlatform()).createTarget(),
config: {
appId: 'helioslauncher',
productName: 'Helios Launcher',
appId: 'skygameslauncher',
productName: 'SkyGames Launcher',
artifactName: '${productName}-setup-${version}.${ext}',
copyright: 'Copyright © 2018-2020 Daniel Scalzi',
directories: {
@ -27,12 +27,10 @@ builder.build({
output: 'dist'
},
win: {
target: [
{
target: 'nsis',
arch: 'x64'
}
]
target: [{
target: 'nsis',
arch: 'x64'
}]
},
nsis: {
oneClick: false,
@ -46,10 +44,10 @@ builder.build({
},
linux: {
target: 'AppImage',
maintainer: 'Daniel Scalzi',
vendor: 'Daniel Scalzi',
maintainer: 'FullGreen',
vendor: 'FullGreen',
synopsis: 'Modded Minecraft Launcher',
description: 'Custom launcher which allows users to join modded servers. All mods, configurations, and updates are handled automatically.',
description: 'SkyGames Launcher',
category: 'Game'
},
compression: 'maximum',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,3 +1,3 @@
owner: dscalzi
repo: HeliosLauncher
owner: FullGreen
repo: SkyGamesLauncher
provider: github