neoagent 2.4.1-beta.30 → 2.4.1-beta.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/flutter_app/assets/branding/onboarding_intro.mp4 +0 -0
- package/flutter_app/lib/features/onboarding/onboarding_chrome.dart +391 -382
- package/flutter_app/lib/features/onboarding/onboarding_companion_step.dart +78 -56
- package/flutter_app/lib/features/onboarding/onboarding_messaging_step.dart +18 -16
- package/flutter_app/lib/features/onboarding/onboarding_model_step.dart +18 -17
- package/flutter_app/lib/features/onboarding/onboarding_shell.dart +2 -1
- package/flutter_app/lib/features/onboarding/onboarding_video_step.dart +16 -13
- package/flutter_app/lib/features/onboarding/onboarding_welcome_step.dart +15 -11
- package/flutter_app/lib/main_account_settings.dart +1 -1
- package/flutter_app/lib/main_admin.dart +1 -1
- package/flutter_app/lib/main_app_shell.dart +190 -191
- package/flutter_app/lib/main_chat.dart +381 -228
- package/flutter_app/lib/main_devices.dart +1 -1
- package/flutter_app/lib/main_launcher.dart +1 -1
- package/flutter_app/lib/main_operations.dart +3 -3
- package/flutter_app/lib/main_shared.dart +336 -340
- package/flutter_app/lib/main_spacing.dart +4 -4
- package/flutter_app/lib/main_theme.dart +20 -14
- package/flutter_app/lib/src/theme/palette.dart +76 -34
- package/flutter_app/pubspec.lock +2 -2
- package/flutter_app/pubspec.yaml +1 -1
- package/package.json +1 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/assets/branding/onboarding_intro.mp4 +0 -0
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +60738 -60521
- package/server/services/ai/tools.js +51 -7
- package/server/services/messaging/formatting_guides.js +26 -1
- package/server/services/messaging/manager.js +5 -2
- package/server/services/tasks/runtime.js +182 -7
- package/server/services/tasks/task_repository.js +13 -0
|
@@ -2523,7 +2523,7 @@ class _ResultBlock extends StatelessWidget {
|
|
|
2523
2523
|
SelectableText(
|
|
2524
2524
|
value,
|
|
2525
2525
|
style: TextStyle(
|
|
2526
|
-
fontFamily: GoogleFonts.
|
|
2526
|
+
fontFamily: GoogleFonts.geistMono().fontFamily,
|
|
2527
2527
|
fontSize: 12,
|
|
2528
2528
|
color: _textSecondary,
|
|
2529
2529
|
height: 1.5,
|
|
@@ -822,7 +822,7 @@ class _LauncherHomeViewState extends State<LauncherHomeView> {
|
|
|
822
822
|
const SizedBox(height: 10),
|
|
823
823
|
Text(
|
|
824
824
|
controller.backendUrl,
|
|
825
|
-
style: GoogleFonts.
|
|
825
|
+
style: GoogleFonts.geistMono(
|
|
826
826
|
fontSize: 12,
|
|
827
827
|
color: _textSecondary,
|
|
828
828
|
),
|
|
@@ -470,7 +470,7 @@ class _LogsPanelState extends State<LogsPanel> {
|
|
|
470
470
|
style: TextStyle(
|
|
471
471
|
fontSize: 12,
|
|
472
472
|
height: 1.5,
|
|
473
|
-
fontFamily: GoogleFonts.
|
|
473
|
+
fontFamily: GoogleFonts.geistMono().fontFamily,
|
|
474
474
|
),
|
|
475
475
|
),
|
|
476
476
|
);
|
|
@@ -4710,7 +4710,7 @@ class _TasksPanelState extends State<TasksPanel> {
|
|
|
4710
4710
|
task.scheduleLabel,
|
|
4711
4711
|
style: TextStyle(
|
|
4712
4712
|
color: _textSecondary,
|
|
4713
|
-
fontFamily: GoogleFonts.
|
|
4713
|
+
fontFamily: GoogleFonts.geistMono().fontFamily,
|
|
4714
4714
|
),
|
|
4715
4715
|
),
|
|
4716
4716
|
if (task.hasModelOverride) ...<Widget>[
|
|
@@ -4812,7 +4812,7 @@ class _TasksPanelState extends State<TasksPanel> {
|
|
|
4812
4812
|
task.scheduleLabel,
|
|
4813
4813
|
style: TextStyle(
|
|
4814
4814
|
color: _textSecondary,
|
|
4815
|
-
fontFamily: GoogleFonts.
|
|
4815
|
+
fontFamily: GoogleFonts.geistMono().fontFamily,
|
|
4816
4816
|
),
|
|
4817
4817
|
),
|
|
4818
4818
|
const SizedBox(height: 8),
|