agentgui 1.0.551 → 1.0.552

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.
Files changed (2) hide show
  1. package/database.js +2 -0
  2. package/package.json +1 -1
package/database.js CHANGED
@@ -37,6 +37,7 @@ try {
37
37
  db.run('PRAGMA foreign_keys = ON');
38
38
  db.run('PRAGMA encoding = "UTF-8"');
39
39
  db.run('PRAGMA synchronous = NORMAL');
40
+ db.run('PRAGMA busy_timeout = 5000');
40
41
  db.run('PRAGMA cache_size = -64000');
41
42
  db.run('PRAGMA mmap_size = 268435456');
42
43
  db.run('PRAGMA temp_store = MEMORY');
@@ -48,6 +49,7 @@ try {
48
49
  db.pragma('foreign_keys = ON');
49
50
  db.pragma('encoding = "UTF-8"');
50
51
  db.pragma('synchronous = NORMAL');
52
+ db.pragma('busy_timeout = 5000');
51
53
  db.pragma('cache_size = -64000');
52
54
  db.pragma('mmap_size = 268435456');
53
55
  db.pragma('temp_store = MEMORY');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.551",
3
+ "version": "1.0.552",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",