Compare commits
3 Commits
6f7255bad8
...
d891df5643
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d891df5643 | ||
|
|
efc2f6d366 | ||
|
|
6b8f0ec324 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
/build/
|
/build/
|
||||||
|
/dist/
|
||||||
@@ -4,15 +4,15 @@
|
|||||||
title = "Chen & Co Launcher"
|
title = "Chen & Co Launcher"
|
||||||
|
|
||||||
[ejs.landing]
|
[ejs.landing]
|
||||||
mediaGitHubURL = "https://github.com/dscalzi/HeliosLauncher"
|
mediaGitHubURL = "https://git.chenco.dev/TrollFury/chencoLauncher"
|
||||||
mediaXURL = "#"
|
mediaXURL = "#"
|
||||||
mediaInstagramURL = "#"
|
mediaInstagramURL = "#"
|
||||||
mediaYouTubeURL = "#"
|
mediaYouTubeURL = "#"
|
||||||
mediaDiscordURL = "https://discord.gg/p9asGAzQgP"
|
mediaDiscordURL = "https://discord.gg/p9asGAzQgP"
|
||||||
|
|
||||||
[ejs.settings]
|
[ejs.settings]
|
||||||
sourceGithubLink = "https://github.com/dscalZi/HeliosLauncher"
|
sourceGithubLink = "https://git.chenco.dev/TrollFury/chencoLauncher"
|
||||||
supportLink = "https://github.com/dscalZi/HeliosLauncher/issues"
|
supportLink = "https://git.chenco.dev/TrollFury/chencoLauncher/issues"
|
||||||
|
|
||||||
[ejs.welcome]
|
[ejs.welcome]
|
||||||
welcomeHeader = "WELCOME"
|
welcomeHeader = "WELCOME"
|
||||||
|
|||||||
@@ -14,7 +14,13 @@ extraResources:
|
|||||||
- 'libraries'
|
- 'libraries'
|
||||||
|
|
||||||
# Windows Configuration
|
# Windows Configuration
|
||||||
win:
|
win:
|
||||||
|
publish:
|
||||||
|
- provider: github
|
||||||
|
host: git.chenco.dev
|
||||||
|
releaseType: release
|
||||||
|
repo: chencoLauncher
|
||||||
|
owner: TrollFury
|
||||||
target:
|
target:
|
||||||
- target: 'nsis'
|
- target: 'nsis'
|
||||||
arch: 'x64'
|
arch: 'x64'
|
||||||
@@ -28,6 +34,12 @@ nsis:
|
|||||||
|
|
||||||
# macOS Configuration
|
# macOS Configuration
|
||||||
mac:
|
mac:
|
||||||
|
publish:
|
||||||
|
- provider: github
|
||||||
|
host: git.chenco.dev
|
||||||
|
releaseType: release
|
||||||
|
repo: chencoLauncher
|
||||||
|
owner: TrollFury
|
||||||
target:
|
target:
|
||||||
- target: 'dmg'
|
- target: 'dmg'
|
||||||
arch:
|
arch:
|
||||||
@@ -37,15 +49,16 @@ mac:
|
|||||||
category: 'public.app-category.games'
|
category: 'public.app-category.games'
|
||||||
|
|
||||||
# Linux Configuration
|
# Linux Configuration
|
||||||
linux:
|
linux:
|
||||||
|
publish:
|
||||||
|
- provider: github
|
||||||
|
host: git.chenco.dev
|
||||||
|
releaseType: release
|
||||||
|
repo: chencoLauncher
|
||||||
|
owner: TrollFury
|
||||||
target: 'AppImage'
|
target: 'AppImage'
|
||||||
maintainer: 'Chen & Co'
|
maintainer: 'Chen & Co'
|
||||||
vendor: 'Chen & Co'
|
vendor: 'Chen & Co'
|
||||||
synopsis: 'Modded Minecraft Launcher'
|
synopsis: 'Modded Minecraft Launcher'
|
||||||
description: 'Custom launcher which allows users to join modded servers. All mods, configurations, and updates are handled automatically.'
|
description: 'Custom launcher which allows users to join modded servers. All mods, configurations, and updates are handled automatically.'
|
||||||
category: 'Game'
|
category: 'Game'
|
||||||
|
|
||||||
|
|
||||||
directories:
|
|
||||||
buildResources: 'build'
|
|
||||||
output: 'dist'
|
|
||||||
1
index.js
1
index.js
@@ -60,6 +60,7 @@ ipcMain.on('autoUpdateAction', (event, arg, data) => {
|
|||||||
break
|
break
|
||||||
case 'checkForUpdate':
|
case 'checkForUpdate':
|
||||||
autoUpdater.checkForUpdates()
|
autoUpdater.checkForUpdates()
|
||||||
|
.then(d => console.log(d))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
event.sender.send('autoUpdateNotification', 'realerror', err)
|
event.sender.send('autoUpdateNotification', 'realerror', err)
|
||||||
})
|
})
|
||||||
|
|||||||
6181
package-lock.json
generated
6181
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -1,14 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "Chenco Launcher",
|
"name": "ChencoLauncher",
|
||||||
"version": "2.2.2",
|
"version": "2.2.1",
|
||||||
"productName": "Chenco Launcher",
|
"productName": "Chenco Launcher",
|
||||||
"description": "Modded Minecraft Launcher",
|
"description": "Modded Minecraft Launcher",
|
||||||
"author": "Trollfury (https://github.com/trollfury21/)",
|
"author": "Trollfury",
|
||||||
"license": "UNLICENSED",
|
"license": "UNLICENSED",
|
||||||
"homepage": "",
|
|
||||||
"bugs": {
|
|
||||||
"url": ""
|
|
||||||
},
|
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user