fix(ui): visible ∆ pulse + drop internal codename from version line
Two issues from live feedback: 1. The version label said "v0.7.1 · warm-minimalism". The suffix is an internal design-direction codename, not user-facing. Drop it — the line now just reads "v0.7.2". 2. The ∆ pulse in live mode used only alpha + blur, which is too subtle to register at first glance. Replace with a real scale-pulse: the whole mark grows from 0.85x → 1.15x → 0.85x over 1.6s. Glow halo blur range expanded (8→22) and alpha range widened. The triangle also gets a soft fill on the up-beat. Easy to spot from across the room. Bumps fai_studio 0.7.1 -> 0.7.2. Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
d5631177e0
commit
20230684a9
3 changed files with 23 additions and 11 deletions
|
|
@ -19,7 +19,7 @@ import 'widgets/widgets.dart';
|
|||
/// Studio's own build version. Bump on every UI commit so the
|
||||
/// running app self-identifies — visible in the sidebar header
|
||||
/// and quick-glance proof that you're seeing the current build.
|
||||
const String kStudioVersion = '0.7.1';
|
||||
const String kStudioVersion = '0.7.2';
|
||||
|
||||
Future<void> main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
|
|
@ -225,7 +225,7 @@ class _Sidebar extends StatelessWidget {
|
|||
),
|
||||
const SizedBox(height: 2),
|
||||
Text(
|
||||
'v$kStudioVersion · warm-minimalism',
|
||||
'v$kStudioVersion',
|
||||
style: FaiTheme.mono(
|
||||
size: 10,
|
||||
color: theme.colorScheme.primary,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue