Release v2.8.7 — Pro lockdown (no UI/data leaks for free users)#22
Merged
Conversation
Audit utilisateur : les features Pro fuitaient pour les users free : - Onglets Shelf / IA Code / Clipboard visibles dans la barre (paywall au clic mais existence évidente) - La live-activity "AI session active" s'affichait dans l'encoche fermée (compact view code assistant), trahissant la feature - Managers scannaient en arrière-plan : ClaudeCode JSONL, Codex SQLite, Copilot logs, clipboard pasteboard — collecte de données sans bénéfice - DragDetector installé même pour les users sans Shelf (drag réagit) Fix 5 couches : 1. **NotchViews.requiresPro** + gate dans `isVisibleInExpandedNotch` → onglets Pro disparaissent de la barre pour les users free. NotchIAHeader + TabSelectionView observent LicenseManager pour re-render à l'activation/révocation Pro à la volée. 2. **shouldShowCodeAssistantCompactActivity** (ContentView) → guard isPro → pas de compact view "AI active" pour les users free. 3. **ClipboardManager.checkPasteboard** : guard isPro → aucun item enregistré, l'historique reste vide. 4. **ClaudeCodeManager.scanForSessions / CodexManager.scanForSessions / CopilotManager.checkCopilotStatus** : guard isPro → pas de scan de fichiers, pas de détection de session. 5. **AppDelegate.setupDragDetectorForScreen** : guard isPro → pas de région de drag installée si Shelf inaccessible. ProGate sur les onglets reste en place comme défense en profondeur. La clé admin (`nia_admin_…`) débloque tout comme prévu. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Owner
Author
|
/release 2.8.7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
5 layers of Pro gating : hidden tabs, hidden compact AI activity, no clipboard recording, no AI session scanning, no drag detector for free users.