diff --git a/package.json b/package.json index 278e228..6f87bb1 100644 --- a/package.json +++ b/package.json @@ -28,5 +28,15 @@ "vite": "^5.0.8", "vite-plugin-electron": "^0.15.4", "vite-plugin-electron-renderer": "^0.14.5" + }, + "build": { + "appId": "com.electron.git-watcher-pro", + "productName": "Git Watcher Pro", + "win": { + "target": "nsis" + }, + "mac": { + "identity": null + } } } diff --git a/src/Dashboard.tsx b/src/Dashboard.tsx index 3ae1e61..3eda320 100644 --- a/src/Dashboard.tsx +++ b/src/Dashboard.tsx @@ -27,7 +27,7 @@ export const Dashboard: React.FC = ({ }) => (
{/* Repos Section */} -
+

Watched Repositories ({repos.length})

@@ -49,14 +49,14 @@ export const Dashboard: React.FC = ({ {/* Timeline Logs Section */} -
+
Activity Timeline - Clear Logs + Clear Logs
{logs.length === 0 && ( -
+
No activity recorded yet...
)} @@ -106,16 +106,16 @@ const RepoCard = ({ repo, onToggle, onPull, onPush, onDelete }: { repo: Repo, on
-
- -