neoagent 3.1.1-beta.4 → 3.1.1-beta.5

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.
@@ -971,8 +971,8 @@ class _SettingsPanelState extends State<SettingsPanel> {
971
971
  final ready = platforms
972
972
  .where((item) => item['ready'] == true || item['status'] == 'ok')
973
973
  .length;
974
- final unsupported = platforms
975
- .where((item) => item['setupKind'] == 'unsupported_node_only')
974
+ final cookieSetup = platforms
975
+ .where((item) => item['setupKind'] == 'cookies')
976
976
  .length;
977
977
  return Card(
978
978
  child: Padding(
@@ -1018,7 +1018,7 @@ class _SettingsPanelState extends State<SettingsPanel> {
1018
1018
  ),
1019
1019
  const SizedBox(height: 10),
1020
1020
  Text(
1021
- 'Node-native web and social content access for agents.',
1021
+ 'Social sources agents can read directly, including feeds, repositories, Reddit, X, videos, and cookie-backed market data.',
1022
1022
  style: TextStyle(color: _textSecondary, height: 1.45),
1023
1023
  ),
1024
1024
  const SizedBox(height: 12),
@@ -1032,15 +1032,16 @@ class _SettingsPanelState extends State<SettingsPanel> {
1032
1032
  color: _success,
1033
1033
  ),
1034
1034
  _MetaPill(
1035
- icon: Icons.code_outlined,
1036
- label: 'Node-only mode',
1035
+ icon: Icons.play_circle_outline,
1036
+ label: 'Video links',
1037
1037
  color: _info,
1038
1038
  ),
1039
- _MetaPill(
1040
- icon: Icons.block_outlined,
1041
- label: '$unsupported unavailable',
1042
- color: _warning,
1043
- ),
1039
+ if (cookieSetup > 0)
1040
+ _MetaPill(
1041
+ icon: Icons.extension_outlined,
1042
+ label: 'Cookie setup',
1043
+ color: _warning,
1044
+ ),
1044
1045
  ],
1045
1046
  ),
1046
1047
  if (_socialReachActionResult != null) ...<Widget>[
@@ -52,7 +52,7 @@
52
52
  .shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
53
53
  .nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
54
54
  .brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; }
55
- .mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, #171512, var(--accent)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
55
+ .brand-logo { display: block; width: 34px; height: 34px; border-radius: 10px; }
56
56
  .nav a:last-child { color: var(--muted); font-size: 14px; font-weight: 650; }
57
57
 
58
58
  .hero { padding: clamp(54px, 8vw, 104px) 0 34px; }
@@ -102,7 +102,7 @@
102
102
  <body>
103
103
  <div class="shell">
104
104
  <header class="nav">
105
- <a class="brand" href="/"><span class="mark" aria-hidden="true"></span><span>NeoAgent</span></a>
105
+ <a class="brand" href="/"><img class="brand-logo" src="assets/logo.svg" alt="" width="34" height="34"><span>NeoAgent</span></a>
106
106
  <a href="/app">Sign in</a>
107
107
  </header>
108
108
 
@@ -110,7 +110,7 @@
110
110
  <section class="hero">
111
111
  <div class="eyebrow">Public status</div>
112
112
  <h1>All the important systems, minus the secret knobs.</h1>
113
- <p class="lede">A live, public overview of NeoAgent platform health. We show broad system posture here, not private account, device, or workspace details.</p>
113
+ <p class="lede">A live, public overview of NeoAgent platform health.</p>
114
114
  </section>
115
115
 
116
116
  <section class="summary" aria-live="polite">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "3.1.1-beta.4",
3
+ "version": "3.1.1-beta.5",
4
4
  "description": "Self-hosted AI agent for long-running tasks, automation, messaging, device control, and local memory",
5
5
  "license": "AGPL-3.0-only",
6
6
  "main": "server/index.js",
@@ -1 +1 @@
1
- 290aea80d4ae81e5a61607695f613845
1
+ 42bd4b8346d90109903a278aa69f343f
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"a10d8ac38de835021c8d2f920dbf50a920ccc0
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "3576241244" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "2745407135" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });