Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added electron/assets/icon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ function updateLoginSettings() {
openAsHidden: startMinimized
});
}

// Diagnostic log
console.log(`[Login Settings] Auto-Start: ${launchAtStartup}, Minimized: ${startMinimized}`);
}

function createWindow(): void {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"build": {
"appId": "com.gitwatcher.app",
"productName": "Git Watcher Pro",
"compression": "maximum",
"files": [
"dist-electron",
"dist",
"electron/assets",
"!**/*.map",
"!**/*.d.ts",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}"
"!**/*.d.ts"
],
"win": {
"icon": "electron/assets/icon.png",
"icon": "electron/assets/icon.ico",
"target": [
"nsis",
"portable"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface SidebarProps {

export const Sidebar = ({ activeTab, setActiveTab }: SidebarProps) => {
return (
<aside className="w-64 flex flex-col border-r border-border bg-card/50 backdrop-blur-sm select-none z-10">
<aside className="w-64 flex flex-col border-r border-border bg-card/40 backdrop-blur-md select-none z-10 shadow-sm">
<div className="p-4 flex flex-col gap-2">
<h3 className="text-xs font-semibold text-muted-foreground uppercase tracking-wider pl-2 mb-1">
Menu
Expand Down