From df23483278e686cb585a67b704c71441aa79b603 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Tue, 7 Apr 2026 14:19:22 -0400 Subject: [PATCH] ux: add hidden folder hint, better path input placeholder, dialog titles - Add info tooltip: 'Press Cmd+Shift+. in dialogs to show hidden folders' - Better path input hint: 'Path to scan (e.g. ~/.claude/projects)' - Add dialog titles for Load and Browse pickers - Signed, notarized, stapled DMG --- lib/screens/home/home_screen.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/screens/home/home_screen.dart b/lib/screens/home/home_screen.dart index b6c75b5..b183632 100644 --- a/lib/screens/home/home_screen.dart +++ b/lib/screens/home/home_screen.dart @@ -410,6 +410,7 @@ class _HomeScreenState extends State { final result = await FilePicker.platform.pickFiles( type: FileType.custom, allowedExtensions: ['jsonl'], + dialogTitle: 'Select a Claude session file (.jsonl)', ); if (result != null && result.files.single.path != null) { await _loadFile(result.files.single.path!); @@ -582,7 +583,7 @@ class _HomeScreenState extends State { fontFamily: 'JetBrains Mono', ), decoration: InputDecoration( - hintText: '~/.claude/projects', + hintText: 'Path to scan (e.g. ~/.claude/projects)', hintStyle: const TextStyle( fontSize: 12, color: AppColors.textMuted, @@ -660,6 +661,11 @@ class _HomeScreenState extends State { ), ), ), + const SizedBox(width: 8), + Tooltip( + message: 'Press Cmd+Shift+. in dialogs to show hidden folders', + child: Icon(Icons.info_outline, size: 14, color: AppColors.textMuted), + ), ], ), ],