Rename desktop assets

This commit is contained in:
Hakan Shehu
2025-01-14 17:04:34 +01:00
parent ffca3df579
commit 1de1807e40
9 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

Before

Width:  |  Height:  |  Size: 7.4 MiB

After

Width:  |  Height:  |  Size: 7.4 MiB

View File

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@@ -12,7 +12,7 @@ const config: ForgeConfig = {
packagerConfig: {
name: 'Colanode',
executableName: process.platform === 'linux' ? 'colanode' : 'Colanode',
icon: 'assets/colanode_logo_black',
icon: 'assets/colanode-logo-black',
appBundleId: 'com.colanode.desktop',
...(process.platform === 'win32' && {
certificateFile: process.env.CERTIFICATE_PATH,
@@ -79,7 +79,7 @@ const config: ForgeConfig = {
new MakerDMG({
name: 'Colanode',
appPath: '',
icon: 'assets/colanode_logo_black.png',
icon: 'assets/colanode-logo-black.png',
title: 'Colanode',
}),
{

View File

@@ -78,7 +78,7 @@ export const getAssetsSourcePath = (): string => {
};
export const getAppIconPath = (): string => {
return path.join(getAssetsSourcePath(), 'colanode_logo_black.png');
return path.join(getAssetsSourcePath(), 'colanode-logo-black.png');
};
export const hasInsertChanges = (result: InsertResult[]): boolean => {