Some checks are pending
Security / Security check (push) Waiting to run
Three doctor-page findings from the usertest panel: - Module tile no longer counts the hub's built-in 'system' pseudo-module — a fresh hub shows 0 modules, matching the welcome checklist's definition of an install. Counting is a top-level function with unit tests. - When the audit DB lives in an OS-cleanable temp directory (/var/folders, /tmp, Windows Temp), the daemon-files panel says so instead of presenting the state as healthy. The classifier is a top-level function with unit tests. - The daemon card states who-talks-to-whom-how in one line: endpoint, transport security (TLS / unencrypted-local / unencrypted), and whether a bearer token is attached (length only) — the auditor's baseline the green dot cannot answer. Also syncs pubspec.yaml (0.70.0 -> 0.72.0) with kStudioVersion, which had drifted to 0.71.0 while pubspec stayed behind. 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.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';
|