Skip to content

Commit 630b889

Browse files
committed
fix app name
1 parent c064915 commit 630b889

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "felnullgdlauncher-v2",
3-
"version": "1.1.29-felnull.2",
3+
"version": "1.1.29-felnull.3",
44
"description": "FelNullGDlauncherはシンプルでありながら、ユーザーエクスペリエンスに重点を置いた強力なMinecraftカスタムランチャーです。",
55
"keywords": [
66
"minecraft",

public/electron.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ function createWindow() {
351351
tray = new Tray(nimage);
352352
const trayMenuTemplate = [
353353
{
354-
label: 'GDLauncher',
354+
label: 'FelNullGDLauncher',
355355
enabled: false
356356
},
357357
{
@@ -362,15 +362,15 @@ function createWindow() {
362362

363363
const trayMenu = Menu.buildFromTemplate(trayMenuTemplate);
364364
tray.setContextMenu(trayMenu);
365-
tray.setToolTip('GDLauncher');
365+
tray.setToolTip('FelNullGDLauncher');
366366
tray.on('double-click', () => mainWindow.show());
367367

368368
mainWindow.loadURL(
369369
isDev
370370
? 'http://localhost:3000'
371371
: `file://${path.join(__dirname, '../build/index.html')}`,
372372
{
373-
userAgent: 'GDLauncher'
373+
userAgent: 'FelNullGDLauncher'
374374
}
375375
);
376376
if (isDev) {
@@ -893,8 +893,8 @@ if (process.env.REACT_APP_RELEASE_TYPE === 'setup') {
893893
!allowUnstableReleases && app.getVersion().includes('beta');
894894
autoUpdater.allowPrerelease = allowUnstableReleases;
895895
autoUpdater.setFeedURL({
896-
owner: 'gorilla-devs',
897-
repo: 'GDLauncher',
896+
owner: 'TeamFelnull',
897+
repo: 'FelNullGDLauncher',
898898
provider: 'github'
899899
});
900900

public/installer.nsh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
FileClose $4
5252

53-
RMDir /r "$APPDATA\gdlauncher_next"
53+
RMDir /r "$APPDATA\felnullgdlauncher_next"
5454
Goto done
5555
Skipped:
5656
Goto done

scripts/createDeploy.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ const commonConfig = {
124124
config: {
125125
generateUpdatesFilesForAllChannels: true,
126126
npmRebuild: false,
127-
productName: 'GDLauncher',
128-
appId: 'org.gorilladevs.GDLauncher',
127+
productName: 'FelNullGDLauncher',
128+
appId: 'org.TeamFelNull.FelNullGDLauncher',
129129
files: [
130130
'!node_modules/**/*',
131131
'build/**/*',
@@ -182,9 +182,9 @@ const commonConfig = {
182182
},
183183
protocols: [
184184
{
185-
name: 'gdlauncher',
185+
name: 'felnullgdlauncher',
186186
role: 'Viewer',
187-
schemes: ['gdlauncher']
187+
schemes: ['felnullgdlauncher']
188188
}
189189
]
190190
},

src/common/reducers/actions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3618,7 +3618,7 @@ export const isNewVersionAvailable = async () => {
36183618

36193619
try {
36203620
const rChannel = await fs.readFile(
3621-
path.join(appData, 'gdlauncher_next', 'rChannel')
3621+
path.join(appData, 'felnullgdlauncher_next', 'rChannel')
36223622
);
36233623
releaseChannel = parseInt(rChannel.toString(), 10);
36243624
} catch {

0 commit comments

Comments
 (0)