@@ -0,0 +1,65 @@
|
||||
# Copilot Instructions — fvtt-chroniques-de-l-etrange
|
||||
|
||||
FoundryVTT v13 game system for *Les Chroniques de l'Étrange* (Antre-Monde Éditions). The codebase is entirely in **ES modules** (`"type": "module"`) bundled with esbuild. There are no tests.
|
||||
|
||||
## Build commands
|
||||
|
||||
```bash
|
||||
npm run build # compile LESS → CSS and bundle src/system.js → dist/system.js
|
||||
npm run build:css # LESS only
|
||||
npm run build:js # esbuild bundle only
|
||||
npm run build:watch # rebuild on file changes
|
||||
npm run build:full # compile compendiums then build
|
||||
|
||||
npm run pack:compile # compile packs-src/ → packs/ (LevelDB)
|
||||
npm run pack:extract # extract packs/ → packs-src/ (YAML source)
|
||||
```
|
||||
|
||||
The built output goes to `dist/system.js` (sourced via the unbuilt `src/system.js` in `system.json` `esmodules`).
|
||||
|
||||
## Architecture
|
||||
|
||||
The entry point is `src/system.js`, which wires up all FoundryVTT hooks (`init`, `ready`, `renderChatLog`, etc.).
|
||||
|
||||
### Layer structure
|
||||
|
||||
| Layer | Path | Purpose |
|
||||
|---|---|---|
|
||||
| **Config** | `src/config/` | Constants, i18n pre-localization, runtime config, settings |
|
||||
| **Data Models** | `src/data/` | `TypeDataModel` subclasses defining actor/item schemas |
|
||||
| **Documents** | `src/documents/` | `CDEActor`, `CDEItem`, `CDEMessage` — thin document class overrides |
|
||||
| **UI / Sheets** | `src/ui/sheets/` | ApplicationV2 sheets for actors and items |
|
||||
| **UI / Apps** | `src/ui/apps/` | Standalone apps: `CDELoksyuApp`, `CDETinjiApp` (singletons) |
|
||||
| **UI / Core** | `src/ui/` | Rolling engine, dice registration, Handlebars helpers, initiative |
|
||||
|
||||
### Key domain concepts
|
||||
|
||||
- **Wu Xing cycle**: Five aspects (metal, water, earth, fire, wood) drive all dice resolution. Each aspect maps to two d10 faces (see `ASPECT_FACES` in `constants.js`). `WU_XING_CYCLE` maps an active aspect to the five result categories: successes / auspicious / noxious / **loksyu** / **tinji**.
|
||||
- **Loksyu / Tin Ji**: Persistent world-level counters stored in game settings (`loksyuData`, `tinjiData`). Managed via `CDELoksyuApp` / `CDETinjiApp` singleton apps; updated from roll results in `ui/apps/singletons.js`.
|
||||
- **Three Treasures** (`threetreasures`): The character's Hei-Yang and Hei-Yin pools plus dice-level branches — used as the primary/secondary token attribute.
|
||||
- **Magics**: Five schools (`internalcinnabar`, `alchemy`, `masteryoftheway`, `exorcism`, `geomancy`), each with five specialities. Fully defined in `MAGICS` constant.
|
||||
|
||||
### Data model pattern
|
||||
|
||||
All data models live in `src/data/` and extend `foundry.abstract.TypeDataModel`. Schema fields are defined with local factory helpers (`numberField`, `stringField`, `boolField`, `htmlField`) — prefer reusing these helpers when adding new fields.
|
||||
|
||||
### Sheet pattern
|
||||
|
||||
Actor and item sheets extend `HandlebarsApplicationMixin(ActorSheetV2)` via `CDEBaseActorSheet` (`src/ui/sheets/actors/base.js`). Key conventions:
|
||||
- `static DEFAULT_OPTIONS` with `form: { submitOnChange: true }` — forms auto-save on every change.
|
||||
- Tab state is manually restored in `_onRender` by iterating `this.tabGroups` and calling `this.changeTab()` (AppV2 does not persist tab state natively).
|
||||
- Sheet actions (create/edit/delete item, editImage) are static private methods registered in `DEFAULT_OPTIONS.actions`.
|
||||
- `_prepareContext()` exposes both `system` and `systemData` (same reference) for template compatibility.
|
||||
|
||||
### Compendium source
|
||||
|
||||
Human-editable compendium content lives in `packs-src/` as YAML. Use `npm run pack:compile` before building when pack content has changed, and `npm run pack:extract` after importing new data in Foundry.
|
||||
|
||||
## Key conventions
|
||||
|
||||
- All user-visible strings go through i18n with the `CDE.` prefix namespace. New labels must be added to `lang/fr-cde.json`.
|
||||
- Handlebars templates live in `templates/` and are referenced by their full system path (`systems/fvtt-chroniques-de-l-etrange/templates/...`). Partials are pre-registered from `TEMPLATE_PARTIALS` in `constants.js`.
|
||||
- The system ID constant (`SYSTEM_ID = "fvtt-chroniques-de-l-etrange"`) is used everywhere — never hardcode the string.
|
||||
- CSS is authored in LESS (`css/cde-theme.less`) and compiled to `css/cde-theme.css`. Do not edit the `.css` file directly.
|
||||
- Global macro access is via `game.cde` (exposes `CDELoksyuApp` and `CDETinjiApp`).
|
||||
- The `dist/` directory is generated — do not commit it manually; it is rebuilt by `npm run build`.
|
||||
+20
-2
@@ -396,17 +396,22 @@ section.npc .cde-neon-tabs .item.active {
|
||||
.cde-tab-body {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 12px;
|
||||
background: #0d1520;
|
||||
border: 1px solid #1a2436;
|
||||
border-top: none;
|
||||
border-radius: 0 0 8px 8px;
|
||||
overflow-y: auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
.cde-tab-body .tab {
|
||||
display: none;
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.cde-tab-body .tab.active {
|
||||
display: flex;
|
||||
@@ -447,12 +452,25 @@ section.npc .cde-neon-tabs .item.active {
|
||||
flex-direction: column;
|
||||
}
|
||||
.cde-notes-editor .editor {
|
||||
flex: 1 1 0;
|
||||
flex: 1 1 auto;
|
||||
min-height: 200px;
|
||||
height: 100%;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #1a2436;
|
||||
background: #101622;
|
||||
}
|
||||
.cde-notes-editor .editor .tox {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
.cde-notes-editor .editor .tox-editor-container {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
.cde-notes-editor .editor iframe {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
.cde-technique-card {
|
||||
border-left: 3px solid #ff3d5a;
|
||||
background: rgba(16, 22, 34, 0.8);
|
||||
|
||||
+22
-2
@@ -381,17 +381,22 @@ section.npc .cde-neon-tabs .item.active { color: @cde-supernatural; borde
|
||||
.cde-tab-body {
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: @cde-gap;
|
||||
background: @cde-surface2;
|
||||
border: 1px solid @cde-border;
|
||||
border-top: none;
|
||||
border-radius: 0 0 @cde-radius @cde-radius;
|
||||
overflow-y: auto;
|
||||
overflow: hidden;
|
||||
|
||||
.tab {
|
||||
display: none;
|
||||
flex: 1 1 0;
|
||||
min-height: 0;
|
||||
flex-direction: column;
|
||||
gap: @cde-gap;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.tab.active {
|
||||
@@ -445,11 +450,26 @@ section.npc .cde-neon-tabs .item.active { color: @cde-supernatural; borde
|
||||
flex-direction: column;
|
||||
|
||||
.editor {
|
||||
flex: 1 1 0;
|
||||
flex: 1 1 auto;
|
||||
min-height: 200px;
|
||||
height: 100%;
|
||||
border-radius: @cde-radius;
|
||||
border: 1px solid @cde-border;
|
||||
background: @cde-surface;
|
||||
|
||||
// Force TinyMCE to fill the container
|
||||
.tox {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
.tox-editor-container {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
iframe {
|
||||
height: 100% !important;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.314091 7ff671fef6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.323263 7ff671fef6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.323317 7ff671fef6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.971141 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.974291 7ff6637fe6c0 Level-0 table #9: 1387 bytes OK
|
||||
2026/05/12-00:37:07.980872 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.009643 7ff6637fe6c0 Manual compaction at level-0 from '!items!3aig6MWvZCRoWXPW' @ 72057594037927935 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.009699 7ff6637fe6c0 Manual compaction at level-1 from '!items!3aig6MWvZCRoWXPW' @ 72057594037927935 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at '!items!cXaQG1TBE0jzrbNt' @ 8 : 1
|
||||
2026/05/12-00:37:08.009706 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.012872 7ff6637fe6c0 Generated table #10@1: 4 keys, 1387 bytes
|
||||
2026/05/12-00:37:08.012903 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 1387 bytes
|
||||
2026/05/12-00:37:08.019075 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.019187 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.019315 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.051276 7ff6637fe6c0 Manual compaction at level-1 from '!items!cXaQG1TBE0jzrbNt' @ 8 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.880760 7f52c5bfd6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.016255 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.016270 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.023046 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.047956 7f52c4bfb6c0 Manual compaction at level-0 from '!items!3aig6MWvZCRoWXPW' @ 72057594037927935 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at '!items!cXaQG1TBE0jzrbNt' @ 8 : 1
|
||||
2026/06/01-22:35:51.047965 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.051139 7f52c4bfb6c0 Generated table #27@0: 4 keys, 1387 bytes
|
||||
2026/06/01-22:35:51.051154 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 1387 bytes
|
||||
2026/06/01-22:35:51.057027 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.057087 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.067136 7f52c4bfb6c0 Manual compaction at level-0 from '!items!cXaQG1TBE0jzrbNt' @ 8 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.149746 7fdfd57ec6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.152016 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.155425 7fdfd4feb6c0 Level-0 table #5: 1330 bytes OK
|
||||
2026/05/12-00:36:37.161916 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.162057 7fdfd4feb6c0 Manual compaction at level-0 from '!items!3aig6MWvZCRoWXPW' @ 72057594037927935 : 1 .. '!items!cXaQG1TBE0jzrbNt' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.858708 7f52c5bfd6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.858788 7f52c5bfd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-armors/000021.log: OK
|
||||
2026/06/01-22:35:11.858829 7f52c5bfd6c0 Table #10: 4 entries OK
|
||||
2026/06/01-22:35:11.862084 7f52c5bfd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-armors; recovered 1 files; 1387 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.374154 7ff663fff6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.383721 7ff663fff6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.383779 7ff663fff6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:08.062905 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:08.066411 7ff6637fe6c0 Level-0 table #9: 10124 bytes OK
|
||||
2026/05/12-00:37:08.072622 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.086421 7ff6637fe6c0 Manual compaction at level-0 from '!journal!CDEGuideMain0001' @ 72057594037927935 : 1 .. '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.096808 7ff6637fe6c0 Manual compaction at level-1 from '!journal!CDEGuideMain0001' @ 72057594037927935 : 1 .. '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 0 : 0; will stop at '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 17 : 1
|
||||
2026/05/12-00:37:08.096817 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.100204 7ff6637fe6c0 Generated table #10@1: 21 keys, 18033 bytes
|
||||
2026/05/12-00:37:08.100229 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 18033 bytes
|
||||
2026/05/12-00:37:08.106245 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.106373 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.106502 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.113213 7ff6637fe6c0 Manual compaction at level-1 from '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 17 : 1 .. '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.987923 7f52c53fc6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.085088 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.085109 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.091460 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.107759 7f52c4bfb6c0 Manual compaction at level-0 from '!journal!CDEGuideMain0001' @ 72057594037927935 : 1 .. '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 0 : 0; will stop at '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 17 : 1
|
||||
2026/06/01-22:35:51.107763 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.111831 7f52c4bfb6c0 Generated table #27@0: 21 keys, 18033 bytes
|
||||
2026/06/01-22:35:51.111846 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 18033 bytes
|
||||
2026/06/01-22:35:51.117896 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.117946 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.124817 7f52c4bfb6c0 Manual compaction at level-0 from '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 17 : 1 .. '!journal.pages!CDEGuideMain0001.wgqIHHVlO9miegn1' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.177388 7fdfd5fed6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.178463 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.181940 7fdfd4feb6c0 Level-0 table #5: 9307 bytes OK
|
||||
2026/05/12-00:36:37.188105 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.188350 7fdfd4feb6c0 Manual compaction at level-0 from '!journal!CDEGuideMain0001' @ 72057594037927935 : 1 .. '!journal.pages!CDEGuideMain0001.CDEHelpP10Extra' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.970906 7f52c53fc6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.971023 7f52c53fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-help/000021.log: OK
|
||||
2026/06/01-22:35:11.971154 7f52c53fc6c0 Table #10: 21 entries OK
|
||||
2026/06/01-22:35:11.974528 7f52c53fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-help; recovered 1 files; 18033 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.336872 7ff671fef6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.346806 7ff671fef6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.346886 7ff671fef6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.990253 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.993684 7ff6637fe6c0 Level-0 table #9: 8881 bytes OK
|
||||
2026/05/12-00:37:07.999919 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.009675 7ff6637fe6c0 Manual compaction at level-0 from '!items!0NDBw1YB54q3hLH0' @ 72057594037927935 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.019406 7ff6637fe6c0 Manual compaction at level-1 from '!items!0NDBw1YB54q3hLH0' @ 72057594037927935 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at '!items!ykekdZlirabRobEF' @ 108 : 1
|
||||
2026/05/12-00:37:08.019418 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.023624 7ff6637fe6c0 Generated table #10@1: 54 keys, 8881 bytes
|
||||
2026/05/12-00:37:08.023709 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 8881 bytes
|
||||
2026/05/12-00:37:08.029864 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.030009 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.030163 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.051296 7ff6637fe6c0 Manual compaction at level-1 from '!items!ykekdZlirabRobEF' @ 108 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.914967 7f52c6bff6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.023125 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.023151 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.028968 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.057155 7f52c4bfb6c0 Manual compaction at level-0 from '!items!0NDBw1YB54q3hLH0' @ 72057594037927935 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at '!items!ykekdZlirabRobEF' @ 108 : 1
|
||||
2026/06/01-22:35:51.057162 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.060536 7f52c4bfb6c0 Generated table #27@0: 54 keys, 8881 bytes
|
||||
2026/06/01-22:35:51.060550 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 8881 bytes
|
||||
2026/06/01-22:35:51.067003 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.067054 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.073072 7f52c4bfb6c0 Manual compaction at level-0 from '!items!ykekdZlirabRobEF' @ 108 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.205346 7fdfd6fef6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.206616 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.210149 7fdfd4feb6c0 Level-0 table #5: 5923 bytes OK
|
||||
2026/05/12-00:36:37.216280 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.216387 7fdfd4feb6c0 Manual compaction at level-0 from '!items!0NDBw1YB54q3hLH0' @ 72057594037927935 : 1 .. '!items!ykekdZlirabRobEF' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.900722 7f52c6bff6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.900766 7f52c6bff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-ingredients/000021.log: OK
|
||||
2026/06/01-22:35:11.900837 7f52c6bff6c0 Table #10: 54 entries OK
|
||||
2026/06/01-22:35:11.904105 7f52c6bff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-ingredients; recovered 1 files; 8881 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.348871 7ff6717ee6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.358876 7ff6717ee6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.358970 7ff6717ee6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.981024 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.984143 7ff6637fe6c0 Level-0 table #9: 596 bytes OK
|
||||
2026/05/12-00:37:07.990088 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.009661 7ff6637fe6c0 Manual compaction at level-0 from '!items!HKq5ANSGiBIdcnki' @ 72057594037927935 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.030253 7ff6637fe6c0 Manual compaction at level-1 from '!items!HKq5ANSGiBIdcnki' @ 72057594037927935 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at '!items!HKq5ANSGiBIdcnki' @ 2 : 1
|
||||
2026/05/12-00:37:08.030264 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.033436 7ff6637fe6c0 Generated table #10@1: 1 keys, 596 bytes
|
||||
2026/05/12-00:37:08.033469 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 596 bytes
|
||||
2026/05/12-00:37:08.040221 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.040443 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.040599 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.051309 7ff6637fe6c0 Manual compaction at level-1 from '!items!HKq5ANSGiBIdcnki' @ 2 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.932171 7f52c63fe6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.010289 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.010313 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.016160 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.037980 7f52c4bfb6c0 Manual compaction at level-0 from '!items!HKq5ANSGiBIdcnki' @ 72057594037927935 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at '!items!HKq5ANSGiBIdcnki' @ 2 : 1
|
||||
2026/06/01-22:35:51.037986 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.041162 7f52c4bfb6c0 Generated table #27@0: 1 keys, 596 bytes
|
||||
2026/06/01-22:35:51.041178 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 596 bytes
|
||||
2026/06/01-22:35:51.047786 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.047867 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.067128 7f52c4bfb6c0 Manual compaction at level-0 from '!items!HKq5ANSGiBIdcnki' @ 2 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.230762 7fdfd67ee6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.231622 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.234740 7fdfd4feb6c0 Level-0 table #5: 559 bytes OK
|
||||
2026/05/12-00:36:37.240940 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.241065 7fdfd4feb6c0 Manual compaction at level-0 from '!items!HKq5ANSGiBIdcnki' @ 72057594037927935 : 1 .. '!items!HKq5ANSGiBIdcnki' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.918464 7f52c63fe6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.918512 7f52c63fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-items/000021.log: OK
|
||||
2026/06/01-22:35:11.918537 7f52c63fe6c0 Table #10: 1 entries OK
|
||||
2026/06/01-22:35:11.921448 7f52c63fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-items; recovered 1 files; 596 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.263994 7ff663fff6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.274398 7ff663fff6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.274458 7ff663fff6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.886611 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.890996 7ff6637fe6c0 Level-0 table #9: 34454 bytes OK
|
||||
2026/05/12-00:37:07.897482 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:07.928654 7ff6637fe6c0 Manual compaction at level-0 from '!items!2nKXEHLG0fXtSOdy' @ 72057594037927935 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:07.928707 7ff6637fe6c0 Manual compaction at level-1 from '!items!2nKXEHLG0fXtSOdy' @ 72057594037927935 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at '!items!tlIc1bmIAbQeUwj7' @ 40 : 1
|
||||
2026/05/12-00:37:07.928714 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:07.932971 7ff6637fe6c0 Generated table #10@1: 20 keys, 34454 bytes
|
||||
2026/05/12-00:37:07.932984 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 34454 bytes
|
||||
2026/05/12-00:37:07.939008 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:07.939170 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:07.939306 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:07.970948 7ff6637fe6c0 Manual compaction at level-1 from '!items!tlIc1bmIAbQeUwj7' @ 40 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.796994 7f52c63fe6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:50.937098 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:50.937158 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:50.943430 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:50.962798 7f52c4bfb6c0 Manual compaction at level-0 from '!items!2nKXEHLG0fXtSOdy' @ 72057594037927935 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at '!items!tlIc1bmIAbQeUwj7' @ 40 : 1
|
||||
2026/06/01-22:35:50.962805 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:50.966120 7f52c4bfb6c0 Generated table #27@0: 20 keys, 34454 bytes
|
||||
2026/06/01-22:35:50.966138 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 34454 bytes
|
||||
2026/06/01-22:35:50.972309 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:50.972597 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.004209 7f52c4bfb6c0 Manual compaction at level-0 from '!items!tlIc1bmIAbQeUwj7' @ 40 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.257477 7fdfd57ec6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.258479 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.261916 7fdfd4feb6c0 Level-0 table #5: 32988 bytes OK
|
||||
2026/05/12-00:36:37.269084 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.269269 7fdfd4feb6c0 Manual compaction at level-0 from '!items!2nKXEHLG0fXtSOdy' @ 72057594037927935 : 1 .. '!items!tlIc1bmIAbQeUwj7' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.733217 7f52c63fe6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.733303 7f52c63fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-kungfus/000021.log: OK
|
||||
2026/06/01-22:35:11.733464 7f52c63fe6c0 Table #10: 20 entries OK
|
||||
2026/06/01-22:35:11.736813 7f52c63fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-kungfus; recovered 1 files; 34454 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.360962 7ff663fff6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.371878 7ff663fff6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.371942 7ff663fff6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:08.051413 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:08.055337 7ff6637fe6c0 Level-0 table #9: 50053 bytes OK
|
||||
2026/05/12-00:37:08.062742 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.086408 7ff6637fe6c0 Manual compaction at level-0 from '!actors!4ZjFZ1HoJV9mJStt' @ 72057594037927935 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.086444 7ff6637fe6c0 Manual compaction at level-1 from '!actors!4ZjFZ1HoJV9mJStt' @ 72057594037927935 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at '!actors!zVpmacwoWEG8YTCQ' @ 98 : 1
|
||||
2026/05/12-00:37:08.086448 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.090154 7ff6637fe6c0 Generated table #10@1: 49 keys, 50053 bytes
|
||||
2026/05/12-00:37:08.090193 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 50053 bytes
|
||||
2026/05/12-00:37:08.096495 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.096568 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.096695 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.113181 7ff6637fe6c0 Manual compaction at level-1 from '!actors!zVpmacwoWEG8YTCQ' @ 98 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.950430 7f52c6bff6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.067200 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.067214 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.072998 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.091558 7f52c4bfb6c0 Manual compaction at level-0 from '!actors!4ZjFZ1HoJV9mJStt' @ 72057594037927935 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at '!actors!zVpmacwoWEG8YTCQ' @ 98 : 1
|
||||
2026/06/01-22:35:51.091566 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.095457 7f52c4bfb6c0 Generated table #27@0: 49 keys, 50053 bytes
|
||||
2026/06/01-22:35:51.095470 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 50053 bytes
|
||||
2026/06/01-22:35:51.101290 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.101339 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.118034 7f52c4bfb6c0 Manual compaction at level-0 from '!actors!zVpmacwoWEG8YTCQ' @ 98 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.286062 7fdfd5fed6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.287117 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.291305 7fdfd4feb6c0 Level-0 table #5: 21686 bytes OK
|
||||
2026/05/12-00:36:37.297295 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.297424 7fdfd4feb6c0 Manual compaction at level-0 from '!actors!4ZjFZ1HoJV9mJStt' @ 72057594037927935 : 1 .. '!actors!zVpmacwoWEG8YTCQ' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.935539 7f52c6bff6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.935591 7f52c6bff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-npcs/000021.log: OK
|
||||
2026/06/01-22:35:11.935674 7f52c6bff6c0 Table #10: 49 entries OK
|
||||
2026/06/01-22:35:11.939231 7f52c6bff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-npcs; recovered 1 files; 50053 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
MANIFEST-000002
|
||||
@@ -0,0 +1,5 @@
|
||||
2026/06/01-22:35:11.966943 7f52c5bfd6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.073080 7f52c4bfb6c0 Level-0 table #5: started
|
||||
2026/06/01-22:35:51.079046 7f52c4bfb6c0 Level-0 table #5: 429877 bytes OK
|
||||
2026/06/01-22:35:51.084913 7f52c4bfb6c0 Delete type=0 #3
|
||||
2026/06/01-22:35:51.107744 7f52c4bfb6c0 Manual compaction at level-0 from '!actors!5OGW1fRUn12aNMMV' @ 72057594037927935 : 1 .. '!actors.items!zSWwOmFiFjN4YxC9.w8LXSYQ1eIygtlKV' @ 0 : 0; will stop at (end)
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.324955 7ff6717ee6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.335151 7ff6717ee6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.335204 7ff6717ee6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:08.000036 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:08.003325 7ff6637fe6c0 Level-0 table #9: 4934 bytes OK
|
||||
2026/05/12-00:37:08.009477 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:08.009687 7ff6637fe6c0 Manual compaction at level-0 from '!items!DC2kimCi9sWxqhXG' @ 72057594037927935 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.040730 7ff6637fe6c0 Manual compaction at level-1 from '!items!DC2kimCi9sWxqhXG' @ 72057594037927935 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at '!items!qzfAEhmvVxEMzm0k' @ 10 : 1
|
||||
2026/05/12-00:37:08.040743 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:08.044737 7ff6637fe6c0 Generated table #10@1: 5 keys, 4934 bytes
|
||||
2026/05/12-00:37:08.044781 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 4934 bytes
|
||||
2026/05/12-00:37:08.050905 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:08.051035 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:08.051186 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:08.051322 7ff6637fe6c0 Manual compaction at level-1 from '!items!qzfAEhmvVxEMzm0k' @ 10 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.897294 7f52c63fe6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.004437 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:51.004459 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:51.010228 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:51.029047 7f52c4bfb6c0 Manual compaction at level-0 from '!items!DC2kimCi9sWxqhXG' @ 72057594037927935 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at '!items!qzfAEhmvVxEMzm0k' @ 10 : 1
|
||||
2026/06/01-22:35:51.029057 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.032066 7f52c4bfb6c0 Generated table #27@0: 5 keys, 4934 bytes
|
||||
2026/06/01-22:35:51.032071 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 4934 bytes
|
||||
2026/06/01-22:35:51.037821 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.037900 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.067117 7f52c4bfb6c0 Manual compaction at level-0 from '!items!qzfAEhmvVxEMzm0k' @ 10 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.311794 7fdfd6fef6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.312497 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.315659 7fdfd4feb6c0 Level-0 table #5: 4830 bytes OK
|
||||
2026/05/12-00:36:37.322060 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.322200 7fdfd4feb6c0 Manual compaction at level-0 from '!items!DC2kimCi9sWxqhXG' @ 72057594037927935 : 1 .. '!items!qzfAEhmvVxEMzm0k' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.883439 7f52c63fe6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.883485 7f52c63fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-sanhei/000021.log: OK
|
||||
2026/06/01-22:35:11.883523 7f52c63fe6c0 Table #10: 5 entries OK
|
||||
2026/06/01-22:35:11.886566 7f52c63fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-sanhei; recovered 1 files; 4934 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000022
|
||||
MANIFEST-000042
|
||||
|
||||
+11
-8
@@ -1,8 +1,11 @@
|
||||
2026/05/12-00:36:56.386114 7ff670fed6c0 Recovering log #20
|
||||
2026/05/12-00:36:56.396758 7ff670fed6c0 Delete type=3 #18
|
||||
2026/05/12-00:36:56.396824 7ff670fed6c0 Delete type=0 #20
|
||||
2026/05/12-00:37:08.080126 7ff6637fe6c0 Level-0 table #25: started
|
||||
2026/05/12-00:37:08.080172 7ff6637fe6c0 Level-0 table #25: 0 bytes OK
|
||||
2026/05/12-00:37:08.086288 7ff6637fe6c0 Delete type=0 #23
|
||||
2026/05/12-00:37:08.096790 7ff6637fe6c0 Manual compaction at level-0 from '!scenes!2C6gyZpvPxWlsVZi' @ 72057594037927935 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:08.113200 7ff6637fe6c0 Manual compaction at level-1 from '!scenes!2C6gyZpvPxWlsVZi' @ 72057594037927935 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:12.007471 7f52c63fe6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:51.124825 7f52c4bfb6c0 Level-0 table #45: started
|
||||
2026/06/01-22:35:51.124844 7f52c4bfb6c0 Level-0 table #45: 0 bytes OK
|
||||
2026/06/01-22:35:51.131445 7f52c4bfb6c0 Delete type=0 #43
|
||||
2026/06/01-22:35:51.145660 7f52c4bfb6c0 Manual compaction at level-0 from '!scenes!2C6gyZpvPxWlsVZi' @ 72057594037927935 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 1 : 1
|
||||
2026/06/01-22:35:51.145675 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:51.149105 7f52c4bfb6c0 Generated table #46@0: 8 keys, 3172 bytes
|
||||
2026/06/01-22:35:51.149125 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 3172 bytes
|
||||
2026/06/01-22:35:51.155673 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.155780 7f52c4bfb6c0 Delete type=2 #5
|
||||
2026/06/01-22:35:51.163444 7f52c4bfb6c0 Manual compaction at level-0 from '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 1 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/05/12-00:34:51.728359 7ff671fef6c0 Recovering log #16
|
||||
2026/05/12-00:34:51.737993 7ff671fef6c0 Delete type=3 #14
|
||||
2026/05/12-00:34:51.738056 7ff671fef6c0 Delete type=0 #16
|
||||
2026/05/12-00:35:02.012940 7ff6637fe6c0 Level-0 table #21: started
|
||||
2026/05/12-00:35:02.012962 7ff6637fe6c0 Level-0 table #21: 0 bytes OK
|
||||
2026/05/12-00:35:02.019210 7ff6637fe6c0 Delete type=0 #19
|
||||
2026/05/12-00:35:02.033237 7ff6637fe6c0 Manual compaction at level-0 from '!scenes!2C6gyZpvPxWlsVZi' @ 72057594037927935 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:35:02.033284 7ff6637fe6c0 Manual compaction at level-1 from '!scenes!2C6gyZpvPxWlsVZi' @ 72057594037927935 : 1 .. '!scenes.levels!olYe9bhuXwRWQ8j7.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.992251 7f52c63fe6c0 Log #40: 0 ops saved to Table #41 OK
|
||||
2026/06/01-22:35:11.992349 7f52c63fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-scenes/000040.log: OK
|
||||
2026/06/01-22:35:11.992433 7f52c63fe6c0 Table #5: 22 entries OK
|
||||
2026/06/01-22:35:11.995902 7f52c63fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-scenes; recovered 1 files; 7078 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.276952 7ff6717ee6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.286901 7ff6717ee6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.286957 7ff6717ee6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.897667 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.902498 7ff6637fe6c0 Level-0 table #9: 124022 bytes OK
|
||||
2026/05/12-00:37:07.909088 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:07.928672 7ff6637fe6c0 Manual compaction at level-0 from '!items!2f51pcvFkcZjaxDk' @ 72057594037927935 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:07.949109 7ff6637fe6c0 Manual compaction at level-1 from '!items!2f51pcvFkcZjaxDk' @ 72057594037927935 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at '!items!yVN7PZw35iIaBl0H' @ 50 : 1
|
||||
2026/05/12-00:37:07.949120 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:07.954259 7ff6637fe6c0 Generated table #10@1: 25 keys, 124022 bytes
|
||||
2026/05/12-00:37:07.954276 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 124022 bytes
|
||||
2026/05/12-00:37:07.961206 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:07.961331 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:07.961477 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:07.970977 7ff6637fe6c0 Manual compaction at level-1 from '!items!yVN7PZw35iIaBl0H' @ 50 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.817600 7f52c53fc6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:50.950071 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:50.950101 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:50.956859 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:50.982784 7f52c4bfb6c0 Manual compaction at level-0 from '!items!2f51pcvFkcZjaxDk' @ 72057594037927935 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at '!items!yVN7PZw35iIaBl0H' @ 50 : 1
|
||||
2026/06/01-22:35:50.982795 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:50.988505 7f52c4bfb6c0 Generated table #27@0: 25 keys, 124022 bytes
|
||||
2026/06/01-22:35:50.988522 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 124022 bytes
|
||||
2026/06/01-22:35:50.994813 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:50.994888 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.004229 7f52c4bfb6c0 Manual compaction at level-0 from '!items!yVN7PZw35iIaBl0H' @ 50 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.338931 7fdfd67ee6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.341086 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.345847 7fdfd4feb6c0 Level-0 table #5: 120353 bytes OK
|
||||
2026/05/12-00:36:37.352605 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.352812 7fdfd4feb6c0 Manual compaction at level-0 from '!items!2f51pcvFkcZjaxDk' @ 72057594037927935 : 1 .. '!items!yVN7PZw35iIaBl0H' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.800364 7f52c53fc6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.800471 7f52c53fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-spells/000021.log: OK
|
||||
2026/06/01-22:35:11.801036 7f52c53fc6c0 Table #10: 25 entries OK
|
||||
2026/06/01-22:35:11.805168 7f52c53fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-spells; recovered 1 files; 124022 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.290045 7ff671fef6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.299803 7ff671fef6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.299870 7ff671fef6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.909338 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.913145 7ff6637fe6c0 Level-0 table #9: 8790 bytes OK
|
||||
2026/05/12-00:37:07.919132 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:07.928684 7ff6637fe6c0 Manual compaction at level-0 from '!items!APN91pQL0NBfZsG7' @ 72057594037927935 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:07.961574 7ff6637fe6c0 Manual compaction at level-1 from '!items!APN91pQL0NBfZsG7' @ 72057594037927935 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at '!items!xxZKGqDVxAfr140W' @ 32 : 1
|
||||
2026/05/12-00:37:07.961583 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:07.964786 7ff6637fe6c0 Generated table #10@1: 16 keys, 8790 bytes
|
||||
2026/05/12-00:37:07.964814 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 8790 bytes
|
||||
2026/05/12-00:37:07.970646 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:07.970759 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:07.970874 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:07.970988 7ff6637fe6c0 Manual compaction at level-1 from '!items!xxZKGqDVxAfr140W' @ 32 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.836158 7f52c63fe6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:50.943540 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:50.943578 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:50.949973 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:50.972693 7f52c4bfb6c0 Manual compaction at level-0 from '!items!APN91pQL0NBfZsG7' @ 72057594037927935 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at '!items!xxZKGqDVxAfr140W' @ 32 : 1
|
||||
2026/06/01-22:35:50.972702 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:50.976827 7f52c4bfb6c0 Generated table #27@0: 16 keys, 8790 bytes
|
||||
2026/06/01-22:35:50.976844 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 8790 bytes
|
||||
2026/06/01-22:35:50.982579 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:50.982676 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.004221 7f52c4bfb6c0 Manual compaction at level-0 from '!items!xxZKGqDVxAfr140W' @ 32 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.372690 7fdfd57ec6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.373512 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.376679 7fdfd4feb6c0 Level-0 table #5: 8622 bytes OK
|
||||
2026/05/12-00:36:37.382725 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.382856 7fdfd4feb6c0 Manual compaction at level-0 from '!items!APN91pQL0NBfZsG7' @ 72057594037927935 : 1 .. '!items!xxZKGqDVxAfr140W' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.821755 7f52c63fe6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.821828 7f52c63fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-supernaturals/000021.log: OK
|
||||
2026/06/01-22:35:11.821868 7f52c63fe6c0 Table #10: 16 entries OK
|
||||
2026/06/01-22:35:11.824849 7f52c63fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-supernaturals; recovered 1 files; 8790 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000006
|
||||
MANIFEST-000023
|
||||
|
||||
+11
-15
@@ -1,15 +1,11 @@
|
||||
2026/05/12-00:36:56.301895 7ff670fed6c0 Recovering log #4
|
||||
2026/05/12-00:36:56.312457 7ff670fed6c0 Delete type=3 #2
|
||||
2026/05/12-00:36:56.312525 7ff670fed6c0 Delete type=0 #4
|
||||
2026/05/12-00:37:07.919212 7ff6637fe6c0 Level-0 table #9: started
|
||||
2026/05/12-00:37:07.922365 7ff6637fe6c0 Level-0 table #9: 4529 bytes OK
|
||||
2026/05/12-00:37:07.928522 7ff6637fe6c0 Delete type=0 #7
|
||||
2026/05/12-00:37:07.928694 7ff6637fe6c0 Manual compaction at level-0 from '!items!2IYbyCPF9LJojzsj' @ 72057594037927935 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at (end)
|
||||
2026/05/12-00:37:07.939386 7ff6637fe6c0 Manual compaction at level-1 from '!items!2IYbyCPF9LJojzsj' @ 72057594037927935 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at '!items!uOpWyMGK3oiUJ1Sl' @ 30 : 1
|
||||
2026/05/12-00:37:07.939396 7ff6637fe6c0 Compacting 1@1 + 1@2 files
|
||||
2026/05/12-00:37:07.942722 7ff6637fe6c0 Generated table #10@1: 15 keys, 4529 bytes
|
||||
2026/05/12-00:37:07.942780 7ff6637fe6c0 Compacted 1@1 + 1@2 files => 4529 bytes
|
||||
2026/05/12-00:37:07.948850 7ff6637fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2026/05/12-00:37:07.948918 7ff6637fe6c0 Delete type=2 #5
|
||||
2026/05/12-00:37:07.949040 7ff6637fe6c0 Delete type=2 #9
|
||||
2026/05/12-00:37:07.970963 7ff6637fe6c0 Manual compaction at level-1 from '!items!uOpWyMGK3oiUJ1Sl' @ 30 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.855333 7f52c53fc6c0 Delete type=3 #1
|
||||
2026/06/01-22:35:50.956960 7f52c4bfb6c0 Level-0 table #26: started
|
||||
2026/06/01-22:35:50.956991 7f52c4bfb6c0 Level-0 table #26: 0 bytes OK
|
||||
2026/06/01-22:35:50.962751 7f52c4bfb6c0 Delete type=0 #24
|
||||
2026/06/01-22:35:50.994960 7f52c4bfb6c0 Manual compaction at level-0 from '!items!2IYbyCPF9LJojzsj' @ 72057594037927935 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at '!items!uOpWyMGK3oiUJ1Sl' @ 30 : 1
|
||||
2026/06/01-22:35:50.994966 7f52c4bfb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/06/01-22:35:50.998285 7f52c4bfb6c0 Generated table #27@0: 15 keys, 4529 bytes
|
||||
2026/06/01-22:35:50.998300 7f52c4bfb6c0 Compacted 1@0 + 0@1 files => 4529 bytes
|
||||
2026/06/01-22:35:51.004081 7f52c4bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/06/01-22:35:51.004146 7f52c4bfb6c0 Delete type=2 #10
|
||||
2026/06/01-22:35:51.004357 7f52c4bfb6c0 Manual compaction at level-0 from '!items!uOpWyMGK3oiUJ1Sl' @ 30 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
2026/05/12-00:36:37.398172 7fdfd5fed6c0 Delete type=3 #1
|
||||
2026/05/12-00:36:37.399093 7fdfd4feb6c0 Level-0 table #5: started
|
||||
2026/05/12-00:36:37.402237 7fdfd4feb6c0 Level-0 table #5: 4359 bytes OK
|
||||
2026/05/12-00:36:37.408926 7fdfd4feb6c0 Delete type=0 #3
|
||||
2026/05/12-00:36:37.409067 7fdfd4feb6c0 Manual compaction at level-0 from '!items!2IYbyCPF9LJojzsj' @ 72057594037927935 : 1 .. '!items!uOpWyMGK3oiUJ1Sl' @ 0 : 0; will stop at (end)
|
||||
2026/06/01-22:35:11.839235 7f52c53fc6c0 Log #21: 0 ops saved to Table #22 OK
|
||||
2026/06/01-22:35:11.839283 7f52c53fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-weapons/000021.log: OK
|
||||
2026/06/01-22:35:11.839312 7f52c53fc6c0 Table #10: 15 entries OK
|
||||
2026/06/01-22:35:11.842894 7f52c53fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-chroniques-de-l-etrange/packs/cde-weapons; recovered 1 files; 4529 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user