From aa6d716dff8ea05a57500aab74775292df7954b2 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Mon, 18 May 2026 15:49:59 +0800
Subject: [PATCH] feat: add permission status panel

---
 VoiceSnapGo/app.go |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/VoiceSnapGo/app.go b/VoiceSnapGo/app.go
index efd4a6c..1e9e57d 100755
--- a/VoiceSnapGo/app.go
+++ b/VoiceSnapGo/app.go
@@ -27,7 +27,7 @@
 
 const (
 	appVersion        = "2.1.1"
-	appBuild          = "20260518.0211"
+	appBuild          = "20260518.1541"
 	appDisplayVersion = appVersion + " (build " + appBuild + ")"
 	appName           = "VoiceSnap"
 
@@ -108,6 +108,7 @@
 	configService := services.NewConfigService(app.cfg)
 	engineService := services.NewEngineService()
 	hotkeyService := services.NewHotkeyService(app.cfg)
+	permissionService := services.NewPermissionService()
 	updaterService := services.NewUpdaterService(appVersion)
 	audioService := services.NewAudioService(app.recorder, app.cfg)
 	historyService := services.NewHistoryService(app.history)
@@ -122,6 +123,7 @@
 			application.NewService(configService),
 			application.NewService(engineService),
 			application.NewService(hotkeyService),
+			application.NewService(permissionService),
 			application.NewService(updaterService),
 			application.NewService(audioService),
 			application.NewService(historyService),

--
Gitblit v1.9.3