mobile bluesky app made with flutter lazurite.stormlightlabs.org/
mobile bluesky flutter
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: enhance semantic search descriptions

* update go_router version

+4 -10
+2 -2
lib/features/settings/presentation/settings_screen.dart
··· 311 311 icon: Icons.manage_search_outlined, 312 312 title: 'Semantic Search', 313 313 subtitle: settingsState.semanticSearchEnabled 314 - ? 'Search posts by meaning, not just keywords' 315 - : 'Enable to search posts by meaning', 314 + ? 'Search your liked & saved posts by meaning, not just keywords' 315 + : 'Enable this to search your liked & saved posts by meaning', 316 316 trailing: Switch.adaptive( 317 317 value: settingsState.semanticSearchEnabled, 318 318 onChanged: (value) async {
+2 -2
pubspec.lock
··· 588 588 dependency: "direct main" 589 589 description: 590 590 name: go_router 591 - sha256: "48fb2f42ad057476fa4b733cb95e9f9ea7b0b010bb349ea491dca7dbdb18ffc4" 591 + sha256: "08b742eef4f71c9df5af543751cd0b7f1c679c4088488f4223ecaddc1a813b79" 592 592 url: "https://pub.dev" 593 593 source: hosted 594 - version: "17.2.0" 594 + version: "17.2.2" 595 595 google_fonts: 596 596 dependency: "direct main" 597 597 description:
-6
test/features/settings/presentation/legal_screens_test.dart
··· 55 55 56 56 await tester.tap(find.text('Stormlight Labs')); 57 57 await tester.pump(); 58 - await tester.tap(find.text('GitHub: stormlightlabs')); 59 - await tester.pump(); 60 58 await tester.tap(find.text('info@stormlightlabs.org')); 61 59 await tester.pump(); 62 60 63 61 expect(fakeUrlLauncher.launchedUrls, contains('https://stormlightlabs.org')); 64 - expect(fakeUrlLauncher.launchedUrls, contains('https://github.com/stormlightlabs')); 65 62 expect(fakeUrlLauncher.launchedUrls, contains('mailto:info@stormlightlabs.org')); 66 63 }); 67 64 }); ··· 90 87 91 88 await tester.tap(find.text('Stormlight Labs')); 92 89 await tester.pump(); 93 - await tester.tap(find.text('GitHub: stormlightlabs')); 94 - await tester.pump(); 95 90 await tester.tap(find.text('info@stormlightlabs.org')); 96 91 await tester.pump(); 97 92 98 93 expect(fakeUrlLauncher.launchedUrls, contains('https://stormlightlabs.org')); 99 - expect(fakeUrlLauncher.launchedUrls, contains('https://github.com/stormlightlabs')); 100 94 expect(fakeUrlLauncher.launchedUrls, contains('mailto:info@stormlightlabs.org')); 101 95 }); 102 96 });