neoagent 2.5.2-beta.0 → 2.5.2-beta.2

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.
@@ -335,10 +335,7 @@ class _ChatPanelState extends State<ChatPanel> with WidgetsBindingObserver {
335
335
  last?.role,
336
336
  last?.content.length,
337
337
  last?.typing,
338
- controller.toolEvents.length,
339
338
  activeRun?.runId,
340
- activeRun?.phase,
341
- activeRun?.iteration,
342
339
  controller.streamingAssistant.length,
343
340
  controller.isSendingMessage,
344
341
  ].join('|');
@@ -689,6 +689,8 @@ Color _runPhaseColor(String phase) {
689
689
  class _RunStatusPanel extends StatelessWidget {
690
690
  const _RunStatusPanel({required this.run, required this.tools});
691
691
 
692
+ static const double _timelineViewportHeight = 188;
693
+
692
694
  final ActiveRunState? run;
693
695
  final List<ToolEventItem> tools;
694
696
 
@@ -712,7 +714,8 @@ class _RunStatusPanel extends StatelessWidget {
712
714
  if (phase.isNotEmpty) ...<Widget>[
713
715
  _PulseHalo(
714
716
  color: phaseColor,
715
- animate: phase.toLowerCase() != 'completed' &&
717
+ animate:
718
+ phase.toLowerCase() != 'completed' &&
716
719
  phase.toLowerCase() != 'stopped',
717
720
  child: Container(
718
721
  width: 30,
@@ -802,14 +805,17 @@ class _RunStatusPanel extends StatelessWidget {
802
805
  ],
803
806
  ),
804
807
  const SizedBox(height: 14),
805
- ...tools.asMap().entries.map(
806
- (entry) => Padding(
807
- padding: EdgeInsets.only(
808
- bottom: entry.key == tools.length - 1 ? 0 : 12,
809
- ),
810
- child: _ToolEventTimelineRow(
811
- tool: entry.value,
812
- isLast: entry.key == tools.length - 1,
808
+ SizedBox(
809
+ height: _timelineViewportHeight,
810
+ child: ListView.separated(
811
+ primary: false,
812
+ padding: EdgeInsets.zero,
813
+ physics: const ClampingScrollPhysics(),
814
+ itemCount: tools.length,
815
+ separatorBuilder: (context, _) => const SizedBox(height: 12),
816
+ itemBuilder: (context, index) => _ToolEventTimelineRow(
817
+ tool: tools[index],
818
+ isLast: index == tools.length - 1,
813
819
  ),
814
820
  ),
815
821
  ),
@@ -3697,27 +3703,32 @@ class _QuickReplyBar extends StatelessWidget {
3697
3703
  return Wrap(
3698
3704
  spacing: 8,
3699
3705
  runSpacing: 8,
3700
- children: payload.options.map((option) {
3701
- return GestureDetector(
3702
- onTap: () => onSelected(option.value),
3703
- child: Container(
3704
- padding: const EdgeInsets.symmetric(horizontal: 14, vertical: 8),
3705
- decoration: BoxDecoration(
3706
- color: _accentMuted,
3707
- borderRadius: BorderRadius.circular(999),
3708
- border: Border.all(color: _accent.withValues(alpha: 0.4)),
3709
- ),
3710
- child: Text(
3711
- option.label,
3712
- style: TextStyle(
3713
- fontSize: 13,
3714
- color: _accent,
3715
- fontWeight: FontWeight.w600,
3706
+ children: payload.options
3707
+ .map((option) {
3708
+ return GestureDetector(
3709
+ onTap: () => onSelected(option.value),
3710
+ child: Container(
3711
+ padding: const EdgeInsets.symmetric(
3712
+ horizontal: 14,
3713
+ vertical: 8,
3714
+ ),
3715
+ decoration: BoxDecoration(
3716
+ color: _accentMuted,
3717
+ borderRadius: BorderRadius.circular(999),
3718
+ border: Border.all(color: _accent.withValues(alpha: 0.4)),
3719
+ ),
3720
+ child: Text(
3721
+ option.label,
3722
+ style: TextStyle(
3723
+ fontSize: 13,
3724
+ color: _accent,
3725
+ fontWeight: FontWeight.w600,
3726
+ ),
3727
+ ),
3716
3728
  ),
3717
- ),
3718
- ),
3719
- );
3720
- }).toList(growable: false),
3729
+ );
3730
+ })
3731
+ .toList(growable: false),
3721
3732
  );
3722
3733
  }
3723
3734
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "2.5.2-beta.0",
3
+ "version": "2.5.2-beta.2",
4
4
  "description": "Proactive personal AI agent with no limits",
5
5
  "license": "AGPL-3.0-only",
6
6
  "main": "server/index.js",
@@ -1 +1 @@
1
- b45eb4e687ee76ca6d5a44a7be1ee1c2
1
+ 902e2ce5136c6bece8b7729e2742c5c6
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"77e2e94772b6eb43759e34ed1ad7da4674e19c
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "3148536083" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "3064876241" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });