Skip to content

Commit

Permalink
fix app name
Browse files Browse the repository at this point in the history
  • Loading branch information
MG8853 committed Sep 1, 2022
1 parent c064915 commit 630b889
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "felnullgdlauncher-v2",
"version": "1.1.29-felnull.2",
"version": "1.1.29-felnull.3",
"description": "FelNullGDlauncherはシンプルでありながら、ユーザーエクスペリエンスに重点を置いた強力なMinecraftカスタムランチャーです。",
"keywords": [
"minecraft",
Expand Down
10 changes: 5 additions & 5 deletions public/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ function createWindow() {
tray = new Tray(nimage);
const trayMenuTemplate = [
{
label: 'GDLauncher',
label: 'FelNullGDLauncher',
enabled: false
},
{
Expand All @@ -362,15 +362,15 @@ function createWindow() {

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

mainWindow.loadURL(
isDev
? 'http://localhost:3000'
: `file://${path.join(__dirname, '../build/index.html')}`,
{
userAgent: 'GDLauncher'
userAgent: 'FelNullGDLauncher'
}
);
if (isDev) {
Expand Down Expand Up @@ -893,8 +893,8 @@ if (process.env.REACT_APP_RELEASE_TYPE === 'setup') {
!allowUnstableReleases && app.getVersion().includes('beta');
autoUpdater.allowPrerelease = allowUnstableReleases;
autoUpdater.setFeedURL({
owner: 'gorilla-devs',
repo: 'GDLauncher',
owner: 'TeamFelnull',
repo: 'FelNullGDLauncher',
provider: 'github'
});

Expand Down
2 changes: 1 addition & 1 deletion public/installer.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

FileClose $4

RMDir /r "$APPDATA\gdlauncher_next"
RMDir /r "$APPDATA\felnullgdlauncher_next"
Goto done
Skipped:
Goto done
Expand Down
8 changes: 4 additions & 4 deletions scripts/createDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ const commonConfig = {
config: {
generateUpdatesFilesForAllChannels: true,
npmRebuild: false,
productName: 'GDLauncher',
appId: 'org.gorilladevs.GDLauncher',
productName: 'FelNullGDLauncher',
appId: 'org.TeamFelNull.FelNullGDLauncher',
files: [
'!node_modules/**/*',
'build/**/*',
Expand Down Expand Up @@ -182,9 +182,9 @@ const commonConfig = {
},
protocols: [
{
name: 'gdlauncher',
name: 'felnullgdlauncher',
role: 'Viewer',
schemes: ['gdlauncher']
schemes: ['felnullgdlauncher']
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/common/reducers/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3618,7 +3618,7 @@ export const isNewVersionAvailable = async () => {

try {
const rChannel = await fs.readFile(
path.join(appData, 'gdlauncher_next', 'rChannel')
path.join(appData, 'felnullgdlauncher_next', 'rChannel')
);
releaseChannel = parseInt(rChannel.toString(), 10);
} catch {
Expand Down

0 comments on commit 630b889

Please sign in to comment.