feat(design): v2 becomes the default — drop beta conversation
CI / test (push) Has been cancelled

Atmospheric design is now the default for everyone:
- User.getDesignVersion() returns 'v2' when unset (was 'v1')
- All Twig templates default the cookie read to 'v2'
- SettingsView 'Design (beta)' section removed entirely along with the
  selectDesign() handler and currentDesign computed

The /api/user/design endpoint stays in place so the design_version column
can still be set programmatically (or migrated later), but the UI no
longer exposes it as a user-facing choice. Existing users with explicit
'v1' in their DB row continue to see v1 — their preference persists.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 20:22:18 -04:00
parent c794878e5e
commit 019a3363c5
21 changed files with 21 additions and 73 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html data-design="{{ app.request.cookies.get('wevisto_design')|default('v1') }}">
<html data-design="{{ app.request.cookies.get('wevisto_design')|default('v2') }}">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>