From 464905b597a98bc09b269936c2b35a27ec46fdce Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Tue, 07 Jul 2026 12:57:56 +0800
Subject: [PATCH] docs: record 8.3.6 release gate evidence

---
 C1.source/Apptag/ContentView.swift |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/C1.source/Apptag/ContentView.swift b/C1.source/Apptag/ContentView.swift
index e3a6fe9..b1ca582 100644
--- a/C1.source/Apptag/ContentView.swift
+++ b/C1.source/Apptag/ContentView.swift
@@ -583,6 +583,10 @@
     }
 
     var body: some View {
+        contentWithStateObservers
+    }
+
+    private var contentWithNotificationObservers: some View {
         contentStack
             .onAppear(perform: handleContentAppear)
             .onReceive(NotificationCenter.default.publisher(for: .tagLauncherOverlayDidShow), perform: handleOverlayDidShow)
@@ -593,6 +597,10 @@
             .onReceive(NotificationCenter.default.publisher(for: NSApplication.didBecomeActiveNotification), perform: handleApplicationDidBecomeActive)
             .onReceive(NotificationCenter.default.publisher(for: .tagLauncherDataDidChange), perform: handleDataDidChange)
             .onReceive(NotificationCenter.default.publisher(for: .appLanguageDidChange), perform: handleAppLanguageDidChange)
+    }
+
+    private var contentWithStateObservers: some View {
+        contentWithNotificationObservers
             .onChange(of: editPhase) { _, newPhase in
                 let active = newPhase != .none
                 dismissAppBubble()

--
Gitblit v1.9.3