Enhance app with multi-CCN support and improved UX

Features:

 Add support for multiple CCNs
🔍 Implement sidebar hiding functionality
🎨 Revamp navigation system for better flow
🖌️ Replace icons with custom-designed assets and improved naming
🚀 Streamline initial setup process
📝 Refine terminology (e.g., "forum thread" → "topic")
🛠️ Enhance forum usability and interaction
This commit is contained in:
Danny Morabito 2025-04-11 22:26:00 +02:00
parent bf3c950da0
commit 9893945f55
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
34 changed files with 792 additions and 308 deletions

View file

@ -1,5 +1,5 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig, externalizeDepsPlugin } from "electron-vite";
import { fileURLToPath, URL } from "node:url";
import { resolve } from "path";
export default defineConfig({
@ -40,6 +40,7 @@ export default defineConfig({
"@components": fileURLToPath(
new URL("./src/components", import.meta.url)
),
"@assets": fileURLToPath(new URL("./src/assets", import.meta.url)),
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},