new icons
@@ -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"
|
||||
},
|
||||
|
||||
|
After Width: | Height: | Size: 381 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 796 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 136 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 353 KiB |
|
After Width: | Height: | Size: 168 KiB |
@@ -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",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "pangolin",
|
||||
"name": "openscreen",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
|
||||
@@ -24,10 +24,10 @@ export default function App() {
|
||||
return <SourceSelector />;
|
||||
case 'editor':
|
||||
return <VideoEditor />;
|
||||
default:
|
||||
default:
|
||||
return (
|
||||
<div className="w-full h-full bg-background text-foreground">
|
||||
<h1>Pangolin</h1>
|
||||
<h1>Openscreen</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -286,7 +286,7 @@ export function SettingsPanel({ selected, onWallpaperChange, selectedZoomDepth,
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => {
|
||||
window.electronAPI?.openExternalUrl('https://github.com/siddharthvaddem/pangolin/issues/new');
|
||||
window.electronAPI?.openExternalUrl('https://github.com/siddharthvaddem/openscreen/issues/new');
|
||||
}}
|
||||
className="w-full mt-3 flex items-center justify-center gap-1 text-[10px] text-slate-400/80 hover:text-slate-200 transition-colors py-1"
|
||||
>
|
||||
|
||||