Some checks failed
Security / Security check (push) Failing after 1s
- Store hero: 'TODAY' badge only for an operator-accepted story; the rotating compiled-in fallback deck now says 'FEATURED' (no false freshness claim). Policy as a top-level function with unit tests. - Audit filter chips: standard label typography instead of mono — mono stays reserved for paths and identifiers. - DE chain wording: 'Hash-Kette geprüft' as the one confirmation term (audit header now matches the doctor pill); 'intakt' stays the state headline. EN was already consistent. - Workspace switcher: contrast bump for the sealed-area 'stopped' label. 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.72.1';
|
|
|
|
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';
|