neoagent 2.4.1-beta.29 → 2.4.1-beta.30

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.
@@ -2040,7 +2040,10 @@ class _MessagingCard extends StatelessWidget {
2040
2040
  actionLabel,
2041
2041
  overflow: TextOverflow.ellipsis,
2042
2042
  ),
2043
- style: FilledButton.styleFrom(backgroundColor: accent),
2043
+ style: FilledButton.styleFrom(
2044
+ backgroundColor: accent,
2045
+ foregroundColor: Colors.white,
2046
+ ),
2044
2047
  ),
2045
2048
  ),
2046
2049
  if (canDisconnect) ...[
@@ -1317,7 +1317,7 @@ class _LogoBadgeState extends State<_LogoBadge> {
1317
1317
 
1318
1318
  @override
1319
1319
  Widget build(BuildContext context) {
1320
- final isDark = MediaQuery.platformBrightnessOf(context) == Brightness.dark;
1320
+ final isDark = Theme.of(context).brightness == Brightness.dark;
1321
1321
  return ValueListenableBuilder<bool>(
1322
1322
  valueListenable: _partyModeEnabled,
1323
1323
  builder: (context, partyMode, _) {
@@ -1376,12 +1376,13 @@ class _BrandLockup extends StatelessWidget {
1376
1376
 
1377
1377
  @override
1378
1378
  Widget build(BuildContext context) {
1379
+ final titleColor = Theme.of(context).colorScheme.onSurface;
1379
1380
  final title = Text(
1380
1381
  'NeoAgent',
1381
1382
  style: GoogleFonts.spaceGrotesk(
1382
1383
  fontSize: titleFontSize,
1383
1384
  fontWeight: FontWeight.w700,
1384
- color: _textPrimary,
1385
+ color: titleColor,
1385
1386
  letterSpacing: -0.4,
1386
1387
  ),
1387
1388
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "2.4.1-beta.29",
3
+ "version": "2.4.1-beta.30",
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
- 7ba231f310e272fc741c3f39d24d2198
1
+ fc2b8c2fa82603cb22dd6526a84eb31e
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"c416acfeb8126e097f758c664aaa3da929e27d
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "515105998" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "132005355" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });