neoagent 2.4.1-beta.6 → 2.4.1-beta.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "2.4.1-beta.6",
3
+ "version": "2.4.1-beta.7",
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
- 9647cb1542fc26ae38d596b749b42002
1
+ 547ecdc48f374b4b525ad319e60c921b
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"4c525dac5ebe5971c5708ef73558ed8edcf4a3
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "14317349" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "730484345" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });
@@ -131149,7 +131149,7 @@ r===$&&A.b()
131149
131149
  o.push(A.iq(p,A.j2(!1,new A.a4(B.u0,A.e_(new A.cN(B.hf,new A.a6E(r,p),p),p,p),p),!1,B.I,!0),p,p,0,0,0,p))}r=!1
131150
131150
  if(!s.ay)if(!s.ch){r=s.e
131151
131151
  r===$&&A.b()
131152
- r=B.b.v("mpeks4se-3468d1c").length!==0&&r.b}if(r){r=s.d
131152
+ r=B.b.v("mpeldus3-e9a9387").length!==0&&r.b}if(r){r=s.d
131153
131153
  r===$&&A.b()
131154
131154
  r=r.ab&&!r.Z?84:0
131155
131155
  q=s.e
@@ -136201,7 +136201,7 @@ $S:338}
136201
136201
  A.Z6.prototype={}
136202
136202
  A.S_.prototype={
136203
136203
  n4(a){var s=this
136204
- if(B.b.v("mpeks4se-3468d1c").length===0||s.a!=null)return
136204
+ if(B.b.v("mpeldus3-e9a9387").length===0||s.a!=null)return
136205
136205
  s.Aq()
136206
136206
  s.a=A.q9(B.Qi,new A.b7t(s))},
136207
136207
  Aq(){var s=0,r=A.l(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f
@@ -136219,7 +136219,7 @@ if(!t.f.b(k)){s=1
136219
136219
  break}i=J.X(k,"buildId")
136220
136220
  h=i==null?null:B.b.v(J.q(i))
136221
136221
  j=h==null?"":h
136222
- if(J.bt(j)===0||J.c(j,"mpeks4se-3468d1c")){s=1
136222
+ if(J.bt(j)===0||J.c(j,"mpeldus3-e9a9387")){s=1
136223
136223
  break}n.b=!0
136224
136224
  n.F()
136225
136225
  p=2
@@ -136236,7 +136236,7 @@ case 2:return A.i(o.at(-1),r)}})
136236
136236
  return A.k($async$Aq,r)},
136237
136237
  vl(){var s=0,r=A.l(t.H),q,p=2,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1
136238
136238
  var $async$vl=A.h(function(a2,a3){if(a2===1){o.push(a3)
136239
- s=p}for(;;)switch(s){case 0:if(B.b.v("mpeks4se-3468d1c").length===0||n.c){s=1
136239
+ s=p}for(;;)switch(s){case 0:if(B.b.v("mpeldus3-e9a9387").length===0||n.c){s=1
136240
136240
  break}n.c=!0
136241
136241
  n.F()
136242
136242
  p=4
@@ -101,6 +101,10 @@ class RuntimeManager {
101
101
  const settings = this.getSettings(userId);
102
102
  if (settings.cli_backend === 'desktop' && this.hasActiveDesktopCompanion(userId)) {
103
103
  const desktopProvider = this.getDesktopCliProvider(userId);
104
+ const preferredDeviceId = settings.cli_desktop_device_id;
105
+ if (preferredDeviceId) {
106
+ desktopProvider.selectDevice(preferredDeviceId);
107
+ }
104
108
  return {
105
109
  backend: 'desktop-companion',
106
110
  execute: (command, options = {}) => desktopProvider.executeCommand(command, options),