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 +11 -0
- package/lib/code/code-page.js +1 -1
- package/lib/code/code-page.jsx +1 -1
- package/package.json +1 -1
- package/templates/docker-compose.yml +1 -0
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 |
|
package/lib/code/code-page.js
CHANGED
|
@@ -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,
|
package/lib/code/code-page.jsx
CHANGED
|
@@ -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