diff --git a/electron-builder.json5 b/electron-builder.json5 index e6bf047..327778b 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -1,9 +1,9 @@ // @see - https://www.electron.build/configuration/configuration { "$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json", - "appId": "com.siddharthvaddem.pangolin", + "appId": "com.siddharthvaddem.openscreen", "asar": true, - "productName": "Pangolin", + "productName": "Openscreen", "directories": { "output": "release/${version}" }, @@ -18,10 +18,11 @@ } ], "mac": { - "target": [ - "dmg" - ], - "artifactName": "${productName}-Mac-${version}-Installer.${ext}" + "target": [ + "dmg" + ], + "icon": "icons/icons/mac/icon.icns", + "artifactName": "${productName}-Mac-${version}-Installer.${ext}" }, "win": { "target": [ @@ -32,6 +33,7 @@ ] } ], + "icon": "icons/icons/win/icon.ico", "artifactName": "${productName}-Windows-${version}-Setup.${ext}", "requestedExecutionLevel": "asInvoker" }, diff --git a/icons/icons/mac/icon.icns b/icons/icons/mac/icon.icns new file mode 100644 index 0000000..1fda159 Binary files /dev/null and b/icons/icons/mac/icon.icns differ diff --git a/icons/icons/png/1024x1024.png b/icons/icons/png/1024x1024.png new file mode 100644 index 0000000..95ad197 Binary files /dev/null and b/icons/icons/png/1024x1024.png differ diff --git a/icons/icons/png/128x128.png b/icons/icons/png/128x128.png new file mode 100644 index 0000000..0006525 Binary files /dev/null and b/icons/icons/png/128x128.png differ diff --git a/icons/icons/png/16x16.png b/icons/icons/png/16x16.png new file mode 100644 index 0000000..b904605 Binary files /dev/null and b/icons/icons/png/16x16.png differ diff --git a/icons/icons/png/24x24.png b/icons/icons/png/24x24.png new file mode 100644 index 0000000..bb6b09b Binary files /dev/null and b/icons/icons/png/24x24.png differ diff --git a/icons/icons/png/256x256.png b/icons/icons/png/256x256.png new file mode 100644 index 0000000..4304f8f Binary files /dev/null and b/icons/icons/png/256x256.png differ diff --git a/icons/icons/png/32x32.png b/icons/icons/png/32x32.png new file mode 100644 index 0000000..51bd974 Binary files /dev/null and b/icons/icons/png/32x32.png differ diff --git a/icons/icons/png/48x48.png b/icons/icons/png/48x48.png new file mode 100644 index 0000000..ccc38c9 Binary files /dev/null and b/icons/icons/png/48x48.png differ diff --git a/icons/icons/png/512x512.png b/icons/icons/png/512x512.png new file mode 100644 index 0000000..e7c37ff Binary files /dev/null and b/icons/icons/png/512x512.png differ diff --git a/icons/icons/png/64x64.png b/icons/icons/png/64x64.png new file mode 100644 index 0000000..17620c9 Binary files /dev/null and b/icons/icons/png/64x64.png differ diff --git a/icons/icons/win/icon.ico b/icons/icons/win/icon.ico new file mode 100644 index 0000000..609fc3a Binary files /dev/null and b/icons/icons/win/icon.ico differ diff --git a/newicon.png b/newicon.png new file mode 100644 index 0000000..65d7a21 Binary files /dev/null and b/newicon.png differ diff --git a/package-lock.json b/package-lock.json index e876651..23fb3cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "pangolin", + "name": "openscreen", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "pangolin", + "name": "openscreen", "version": "0.0.0", "dependencies": { "@fix-webm-duration/fix": "^1.0.1", diff --git a/package.json b/package.json index 104251a..24377b9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "pangolin", + "name": "openscreen", "private": true, "version": "0.0.0", "type": "module", diff --git a/src/App.tsx b/src/App.tsx index 98c29c9..3ba8213 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -24,10 +24,10 @@ export default function App() { return ; case 'editor': return ; - default: + default: return (
-

Pangolin

+

Openscreen

); } diff --git a/src/components/video-editor/SettingsPanel.tsx b/src/components/video-editor/SettingsPanel.tsx index 371cde8..0ce2d17 100644 --- a/src/components/video-editor/SettingsPanel.tsx +++ b/src/components/video-editor/SettingsPanel.tsx @@ -286,7 +286,7 @@ export function SettingsPanel({ selected, onWallpaperChange, selectedZoomDepth,