Some checks failed
Security / Security check (push) Failing after 1s
The same single-select choice pattern appeared as four widgets: audit's hover pills, the store's SegmentedButton, the store filter dialog's ChoiceChips, and the approvals TabBar (usertest finding #14 / night-log decision 'pill segment as canon'). The audit pattern is promoted to a shared ChainSegments widget (optional icons, hover, selected border, button+selected semantics) and all four sites use it; approvals switches lists via IndexedStack so both stay alive and switching does not refetch. Guard per the no-bugfix-without-a-guard rule: widget tests for selection + semantics, plus a canon sweep that bans TabBar/TabBarView/TabController/SegmentedButton/ChoiceChip from lib/ (comments exempt). Deliberately out of scope: the flow editor's Graph/Text/Run tabs live in the separate editor package. Studio 0.75.0; guide images regenerated, dark + light verified. Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
14 lines
620 B
Dart
14 lines
620 B
Dart
// Product identity shown in Settings → About and the sidebar
|
|
// version tag. One place to bump so procurement-facing facts
|
|
// (vendor, license, contact) can never drift between surfaces.
|
|
|
|
/// Studio's own build version. Bump on every UI release so the
|
|
/// running app self-identifies.
|
|
const String kStudioVersion = '0.75.0';
|
|
|
|
const String kProductName = 'Ch∆In Studio';
|
|
const String kVendorName = 'Flemming.AI (F∆I)';
|
|
const String kAuthorName = 'Dr. Stefan Flemming';
|
|
const String kLicenseName = 'Apache 2.0';
|
|
const String kContactEmail = 'chain@flemming.ai';
|
|
const String kDocsUrl = 'https://chain.flemming.ai';
|