- Add auth_commands.rs: OAuth2 PKCE flow (start_oauth, handle_auth_callback, refresh_auth_token, get_account_info, check_subscription_status, logout) - Add deep-link handler in lib.rs for simpl-resultat://auth/callback - Add AccountCard.tsx + useAuth hook + authService.ts - Add machine activation commands (activate, deactivate, list, get_activation_status) - Extend LicenseCard with machine management UI - get_edition() now checks account subscription for Premium detection - Daily subscription status check (refresh token if last check > 24h) - Configure CSP for API/auth endpoints - Configure tauri-plugin-deep-link for desktop - Update i18n (FR/EN), changelogs, and architecture docs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
54 lines
515 B
Text
54 lines
515 B
Text
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
dist-ssr/
|
|
target/
|
|
|
|
# User data
|
|
data/
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
|
|
# Imports
|
|
imports/*.csv
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*
|
|
*.local
|
|
|
|
# Secrets
|
|
*.pem
|
|
*.key
|
|
|
|
# IDE
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Auto-generated changelogs (synced from root by vite.config.ts)
|
|
public/CHANGELOG.md
|
|
public/CHANGELOG.fr.md
|
|
|
|
# Tauri generated
|
|
src-tauri/gen/
|
|
.keys-temp/
|