feat: replace local bug store with Gitea-backed issue tracker and add AI-enhanced filing

This commit is contained in:
2026-06-12 18:31:40 +00:00
parent 3ef1d02265
commit 9003cf6570
26 changed files with 1981 additions and 235 deletions
+2
View File
@@ -25,6 +25,7 @@ import { Tabs } from "./Tabs.js";
import { DeviiTerminal } from "./DeviiTerminal.js";
import { ZipDownloader } from "./ZipDownloader.js";
import { ProjectForker } from "./ProjectForker.js";
import { BugReporter } from "./BugReporter.js";
import { MediaGallery } from "./MediaGallery.js";
import WindowManager from "./components/WindowManager.js";
import { ContainerTerminalManager } from "./ContainerTerminalManager.js";
@@ -62,6 +63,7 @@ class Application {
this.devii = new DeviiTerminal();
this.zipDownloader = new ZipDownloader();
this.projectForker = new ProjectForker();
this.bugReporter = new BugReporter();
this.mediaGallery = new MediaGallery();
}
}