thepopebot 1.2.75-beta.1 → 1.2.75-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.
package/README.md CHANGED
@@ -192,6 +192,17 @@ See [Different Models](docs/RUNNING_DIFFERENT_MODELS.md) for the full provider r
192
192
 
193
193
  ---
194
194
 
195
+ ## Known Issues
196
+
197
+ ### Windows: `SQLITE_IOERR_SHMOPEN`
198
+
199
+ SQLite can't create or open its shared-memory (`.shm`) file. Common causes:
200
+
201
+ - **Antivirus** (Windows Defender, etc.) locking the database files — add your project folder to the exclusion list
202
+ - **Cloud-synced folders** (OneDrive, Dropbox, Google Drive) — move your project to a non-synced directory like `C:\Projects\`
203
+
204
+ ---
205
+
195
206
  ## Docs
196
207
 
197
208
  | Document | Description |
@@ -277,7 +277,7 @@ function CodePage({ session, codeWorkspaceId }) {
277
277
  closeTitle: "Close session"
278
278
  }
279
279
  ),
280
- /* @__PURE__ */ jsx(DndContext, { sensors, collisionDetection: closestCenter, onDragEnd: handleDragEnd, modifiers: [restrictToHorizontalAxis], children: /* @__PURE__ */ jsx(SortableContext, { items: dynamicTabIds, strategy: horizontalListSortingStrategy, children: tabs.slice(1).map((tab) => /* @__PURE__ */ jsx(
280
+ /* @__PURE__ */ jsx(DndContext, { sensors, collisionDetection: closestCenter, onDragEnd: handleDragEnd, modifiers: [restrictToHorizontalAxis], autoScroll: false, children: /* @__PURE__ */ jsx(SortableContext, { items: dynamicTabIds, strategy: horizontalListSortingStrategy, children: tabs.slice(1).map((tab) => /* @__PURE__ */ jsx(
281
281
  SortableTab,
282
282
  {
283
283
  tab,
@@ -322,7 +322,7 @@ export default function CodePage({ session, codeWorkspaceId }) {
322
322
  />
323
323
 
324
324
  {/* Dynamic tabs — draggable */}
325
- <DndContext sensors={sensors} collisionDetection={closestCenter} onDragEnd={handleDragEnd} modifiers={[restrictToHorizontalAxis]}>
325
+ <DndContext sensors={sensors} collisionDetection={closestCenter} onDragEnd={handleDragEnd} modifiers={[restrictToHorizontalAxis]} autoScroll={false}>
326
326
  <SortableContext items={dynamicTabIds} strategy={horizontalListSortingStrategy}>
327
327
  {tabs.slice(1).map((tab) => (
328
328
  <SortableTab
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thepopebot",
3
- "version": "1.2.75-beta.1",
3
+ "version": "1.2.75-beta.2",
4
4
  "type": "module",
5
5
  "description": "Create autonomous AI agents with a two-layer architecture: Next.js Event Handler + Docker Agent.",
6
6
  "bin": {
@@ -63,6 +63,7 @@ services:
63
63
  RUNNER_SCOPE: repo
64
64
  LABELS: self-hosted
65
65
  EPHEMERAL: "1"
66
+ DISABLE_AUTO_UPDATE: "true"
66
67
  volumes:
67
68
  - /var/run/docker.sock:/var/run/docker.sock
68
69
  - .:/project