Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fb6bfe444 | |||
| 53b7e8cc9d |
@@ -0,0 +1,10 @@
|
|||||||
|
This is the official Foundry module for Machine Gods of the Noxian Expanse
|
||||||
|
|
||||||
|
Core Rules https://blackoathgames.com/machine-gods-of-the-noxian-expanse
|
||||||
|
|
||||||
|
In this release, you will find:
|
||||||
|
|
||||||
|
- All the necessary tools to create your Reclaimer and get them ready to explore the Expanse
|
||||||
|
- Tools to set up a game of Machine Gods, with everything in place to add your own gear, creatures, and more
|
||||||
|
- Automated rolls for all the core functionality of the game (Ability checks, Resonance Cores, Weapons, etc.)
|
||||||
|
- Full support for the game's mechanics, based on Mörk Borg
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 3.1 MiB |
+17
-2
@@ -837,6 +837,18 @@
|
|||||||
.application.mgne .companion .ability-card {
|
.application.mgne .companion .ability-card {
|
||||||
background: linear-gradient(180deg, rgba(232, 90, 80, 0.11), transparent 60%), linear-gradient(180deg, rgba(204, 178, 146, 0.04), transparent 35%), rgba(64, 47, 37, 0.66);
|
background: linear-gradient(180deg, rgba(232, 90, 80, 0.11), transparent 60%), linear-gradient(180deg, rgba(204, 178, 146, 0.04), transparent 35%), rgba(64, 47, 37, 0.66);
|
||||||
}
|
}
|
||||||
|
.application.mgne.companion .inventory-header h3 {
|
||||||
|
color: #1b1512;
|
||||||
|
}
|
||||||
|
.application.mgne.companion .resource-box > label:not(.resource-label-accent) {
|
||||||
|
color: #1b1512;
|
||||||
|
}
|
||||||
|
.application.mgne.companion fieldset label {
|
||||||
|
color: #1b1512;
|
||||||
|
}
|
||||||
|
.application.mgne.companion .grid > div > label {
|
||||||
|
color: #1b1512;
|
||||||
|
}
|
||||||
@media (max-width: 960px) {
|
@media (max-width: 960px) {
|
||||||
.application.mgne .sheet-header,
|
.application.mgne .sheet-header,
|
||||||
.application.mgne .resource-bar,
|
.application.mgne .resource-bar,
|
||||||
@@ -1217,12 +1229,15 @@
|
|||||||
.creature-action-table-section .action-table-drop-zone.drop-hint {
|
.creature-action-table-section .action-table-drop-zone.drop-hint {
|
||||||
border: 2px dashed rgba(216, 122, 79, 0.35);
|
border: 2px dashed rgba(216, 122, 79, 0.35);
|
||||||
background: rgba(216, 122, 79, 0.04);
|
background: rgba(216, 122, 79, 0.04);
|
||||||
color: rgba(204, 178, 146, 0.5);
|
color: #ccb292;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
transition: background 0.15s, border-color 0.15s;
|
transition: background 0.15s, border-color 0.15s;
|
||||||
}
|
}
|
||||||
|
.application.mgne.companion .creature-action-table-section .action-table-drop-zone.drop-hint {
|
||||||
|
color: #1b1512;
|
||||||
|
}
|
||||||
.creature-action-table-section .action-table-drop-zone.drop-hint i {
|
.creature-action-table-section .action-table-drop-zone.drop-hint i {
|
||||||
color: rgba(216, 122, 79, 0.5);
|
color: rgba(216, 122, 79, 0.5);
|
||||||
}
|
}
|
||||||
@@ -1417,7 +1432,7 @@
|
|||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
.application.mgne.party .party-drop-hint {
|
.application.mgne.party .party-drop-hint {
|
||||||
color: rgba(166, 142, 120, 0.7);
|
color: #ccb292;
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
@@ -75,8 +75,33 @@ Hooks.once("setup", () => {
|
|||||||
localizeSystemConfig()
|
localizeSystemConfig()
|
||||||
})
|
})
|
||||||
|
|
||||||
Hooks.once("ready", () => {
|
Hooks.once("ready", async () => {
|
||||||
console.info(`${SYSTEM_ID} | Ready`)
|
console.info(`${SYSTEM_ID} | Ready`)
|
||||||
|
|
||||||
|
if (!game.user.isGM) return
|
||||||
|
|
||||||
|
if (game.scenes.getName("Map")) return
|
||||||
|
|
||||||
|
const pack = game.packs.get("fvtt-machine-gods-noxian-expanse.scenes")
|
||||||
|
if (!pack) {
|
||||||
|
console.warn(`${SYSTEM_ID} | Scenes compendium not found`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const index = await pack.getIndex()
|
||||||
|
const entry = index.find(s => s.name === "Map")
|
||||||
|
if (!entry) {
|
||||||
|
console.warn(`${SYSTEM_ID} | Map scene not found in compendium`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const doc = await pack.getDocument(entry._id)
|
||||||
|
if (doc) {
|
||||||
|
const scene = await Scene.create(doc.toObject(), { keepId: false })
|
||||||
|
if (scene) {
|
||||||
|
await scene.activate()
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
Hooks.on("deleteCombat", (combat) => {
|
Hooks.on("deleteCombat", (combat) => {
|
||||||
|
|||||||
+33
-2
@@ -659,6 +659,32 @@
|
|||||||
@bg-panel-soft;
|
@bg-panel-soft;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ─── Companion sheet label contrast ──────────────────────────────────────────
|
||||||
|
// Panel-shell backgrounds expose the parchment page texture; @bone caps labels
|
||||||
|
// blend into the warm background. Use dark ink — matching the character sheet's
|
||||||
|
// condition-label treatment.
|
||||||
|
.application.mgne.companion {
|
||||||
|
// Section headers (Attack, Adventuring/Combat Behavior, Description, Notes)
|
||||||
|
.inventory-header h3 {
|
||||||
|
color: @bg-char;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compact resource labels (Morale, Armor Die) — HP uses resource-label-accent and stays light
|
||||||
|
.resource-box > label:not(.resource-label-accent) {
|
||||||
|
color: @bg-char;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Labels inside fieldsets (Label, Damage in the Attack section)
|
||||||
|
fieldset label {
|
||||||
|
color: @bg-char;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Floating grid labels (They Value, Trait, Specialty)
|
||||||
|
.grid > div > label {
|
||||||
|
color: @bg-char;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 960px) {
|
@media (max-width: 960px) {
|
||||||
.application.mgne .sheet-header,
|
.application.mgne .sheet-header,
|
||||||
.application.mgne .resource-bar,
|
.application.mgne .resource-bar,
|
||||||
@@ -1091,12 +1117,17 @@
|
|||||||
&.drop-hint {
|
&.drop-hint {
|
||||||
border: 2px dashed fade(@ember, 35%);
|
border: 2px dashed fade(@ember, 35%);
|
||||||
background: fade(@ember, 4%);
|
background: fade(@ember, 4%);
|
||||||
color: fade(@parchment, 50%);
|
color: @parchment;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
transition: background 0.15s, border-color 0.15s;
|
transition: background 0.15s, border-color 0.15s;
|
||||||
|
|
||||||
|
// Companion sheet: darker text for better contrast
|
||||||
|
.application.mgne.companion & {
|
||||||
|
color: @bg-char;
|
||||||
|
}
|
||||||
|
|
||||||
i { color: fade(@ember, 50%); }
|
i { color: fade(@ember, 50%); }
|
||||||
|
|
||||||
&:hover, &.drag-over {
|
&:hover, &.drag-over {
|
||||||
@@ -1324,7 +1355,7 @@
|
|||||||
|
|
||||||
// ── Party drop hint ────────────────────────────────────────────
|
// ── Party drop hint ────────────────────────────────────────────
|
||||||
.application.mgne.party .party-drop-hint {
|
.application.mgne.party .party-drop-hint {
|
||||||
color: fade(@dust, 70%);
|
color: @parchment;
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000073
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:18.209175 7fa280fff6c0 Recovering log #46
|
2026/06/02-19:43:31.530779 7f2215bfe6c0 Recovering log #70
|
||||||
2026/05/23-09:14:18.262682 7fa280fff6c0 Delete type=3 #44
|
2026/06/02-19:43:31.541230 7f2215bfe6c0 Delete type=3 #68
|
||||||
2026/05/23-09:14:18.262729 7fa280fff6c0 Delete type=0 #46
|
2026/06/02-19:43:31.541267 7f2215bfe6c0 Delete type=0 #70
|
||||||
2026/05/23-09:14:29.462998 7fa2327fc6c0 Level-0 table #52: started
|
2026/06/02-19:44:40.424603 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/05/23-09:14:29.466125 7fa2327fc6c0 Level-0 table #52: 1354 bytes OK
|
2026/06/02-19:44:40.428039 7f1ff7fff6c0 Level-0 table #76: 1354 bytes OK
|
||||||
2026/05/23-09:14:29.472096 7fa2327fc6c0 Delete type=0 #50
|
2026/06/02-19:44:40.435632 7f1ff7fff6c0 Delete type=0 #74
|
||||||
2026/05/23-09:14:29.495570 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.446442 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.515804 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 82 : 1
|
2026/06/02-19:44:40.446598 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 122 : 1
|
||||||
2026/05/23-09:14:29.515812 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.446608 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.518812 7fa2327fc6c0 Generated table #53@1: 1 keys, 685 bytes
|
2026/06/02-19:44:40.449973 7f1ff7fff6c0 Generated table #77@1: 1 keys, 685 bytes
|
||||||
2026/05/23-09:14:29.518825 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
2026/06/02-19:44:40.450003 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||||
2026/05/23-09:14:29.525255 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:44:40.456735 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.525289 7fa2327fc6c0 Delete type=2 #48
|
2026/06/02-19:44:40.457031 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/05/23-09:14:29.525353 7fa2327fc6c0 Delete type=2 #52
|
2026/06/02-19:44:40.457165 7f1ff7fff6c0 Delete type=2 #76
|
||||||
2026/05/23-09:14:29.531944 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 82 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.489581 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 122 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:02.071552 7fb059fef6c0 Recovering log #41
|
2026/06/02-19:38:41.359950 7f22153fd6c0 Recovering log #65
|
||||||
2026/05/23-08:39:02.085152 7fb059fef6c0 Delete type=3 #39
|
2026/06/02-19:38:41.370323 7f22153fd6c0 Delete type=3 #63
|
||||||
2026/05/23-08:39:02.085618 7fb059fef6c0 Delete type=0 #41
|
2026/06/02-19:38:41.370382 7f22153fd6c0 Delete type=0 #65
|
||||||
2026/05/23-08:42:47.974188 7fb04b7fe6c0 Level-0 table #47: started
|
2026/06/02-19:38:52.219787 7f1ff7fff6c0 Level-0 table #71: started
|
||||||
2026/05/23-08:42:47.978821 7fb04b7fe6c0 Level-0 table #47: 1354 bytes OK
|
2026/06/02-19:38:52.223074 7f1ff7fff6c0 Level-0 table #71: 1354 bytes OK
|
||||||
2026/05/23-08:42:47.988393 7fb04b7fe6c0 Delete type=0 #45
|
2026/06/02-19:38:52.230583 7f1ff7fff6c0 Delete type=0 #69
|
||||||
2026/05/23-08:42:47.997317 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.237087 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:48.016276 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 74 : 1
|
2026/06/02-19:38:52.249096 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 114 : 1
|
||||||
2026/05/23-08:42:48.016311 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.249106 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:48.020556 7fb04b7fe6c0 Generated table #48@1: 1 keys, 685 bytes
|
2026/06/02-19:38:52.252924 7f1ff7fff6c0 Generated table #72@1: 1 keys, 685 bytes
|
||||||
2026/05/23-08:42:48.020648 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
2026/06/02-19:38:52.252947 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||||
2026/05/23-08:42:48.028266 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:38:52.259084 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-08:42:48.028596 7fb04b7fe6c0 Delete type=2 #43
|
2026/06/02-19:38:52.259162 7f1ff7fff6c0 Delete type=2 #67
|
||||||
2026/05/23-08:42:48.028998 7fb04b7fe6c0 Delete type=2 #47
|
2026/06/02-19:38:52.259309 7f1ff7fff6c0 Delete type=2 #71
|
||||||
2026/05/23-08:42:48.059146 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 74 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.273606 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 114 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000073
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:18.096663 7fa232ffd6c0 Recovering log #46
|
2026/06/02-19:43:31.502187 7f22153fd6c0 Recovering log #70
|
||||||
2026/05/23-09:14:18.146739 7fa232ffd6c0 Delete type=3 #44
|
2026/06/02-19:43:31.512581 7f22153fd6c0 Delete type=3 #68
|
||||||
2026/05/23-09:14:18.146790 7fa232ffd6c0 Delete type=0 #46
|
2026/06/02-19:43:31.512620 7f22153fd6c0 Delete type=0 #70
|
||||||
2026/05/23-09:14:29.432393 7fa2327fc6c0 Level-0 table #52: started
|
2026/06/02-19:44:40.413927 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/05/23-09:14:29.435530 7fa2327fc6c0 Level-0 table #52: 4899 bytes OK
|
2026/06/02-19:44:40.417618 7f1ff7fff6c0 Level-0 table #76: 4899 bytes OK
|
||||||
2026/05/23-09:14:29.442217 7fa2327fc6c0 Delete type=0 #50
|
2026/06/02-19:44:40.424469 7f1ff7fff6c0 Delete type=0 #74
|
||||||
2026/05/23-09:14:29.462989 7fa2327fc6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.446430 7f1ff7fff6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.472221 7fa2327fc6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 42 : 1
|
2026/06/02-19:44:40.468275 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 62 : 1
|
||||||
2026/05/23-09:14:29.472226 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.468288 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.476438 7fa2327fc6c0 Generated table #53@1: 1 keys, 1984 bytes
|
2026/06/02-19:44:40.471670 7f1ff7fff6c0 Generated table #77@1: 1 keys, 1984 bytes
|
||||||
2026/05/23-09:14:29.476452 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
2026/06/02-19:44:40.471701 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||||
2026/05/23-09:14:29.482663 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:44:40.477948 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.482714 7fa2327fc6c0 Delete type=2 #48
|
2026/06/02-19:44:40.478072 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/05/23-09:14:29.482815 7fa2327fc6c0 Delete type=2 #52
|
2026/06/02-19:44:40.478253 7f1ff7fff6c0 Delete type=2 #76
|
||||||
2026/05/23-09:14:29.495583 7fa2327fc6c0 Manual compaction at level-1 from '!actors!null' @ 42 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.489611 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!null' @ 62 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:02.020811 7fb058fed6c0 Recovering log #41
|
2026/06/02-19:38:41.329254 7f2214bfc6c0 Recovering log #65
|
||||||
2026/05/23-08:39:02.034588 7fb058fed6c0 Delete type=3 #39
|
2026/06/02-19:38:41.339373 7f2214bfc6c0 Delete type=3 #63
|
||||||
2026/05/23-08:39:02.034799 7fb058fed6c0 Delete type=0 #41
|
2026/06/02-19:38:41.339444 7f2214bfc6c0 Delete type=0 #65
|
||||||
2026/05/23-08:42:47.861136 7fb04b7fe6c0 Level-0 table #47: started
|
2026/06/02-19:38:52.118810 7f1ff7fff6c0 Level-0 table #71: started
|
||||||
2026/05/23-08:42:47.866967 7fb04b7fe6c0 Level-0 table #47: 4899 bytes OK
|
2026/06/02-19:38:52.123075 7f1ff7fff6c0 Level-0 table #71: 4899 bytes OK
|
||||||
2026/05/23-08:42:47.875441 7fb04b7fe6c0 Delete type=0 #45
|
2026/06/02-19:38:52.130714 7f1ff7fff6c0 Delete type=0 #69
|
||||||
2026/05/23-08:42:47.890448 7fb04b7fe6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.153910 7f1ff7fff6c0 Manual compaction at level-0 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:47.890591 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 38 : 1
|
2026/06/02-19:38:52.189284 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 58 : 1
|
||||||
2026/05/23-08:42:47.890614 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.189297 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:47.895073 7fb04b7fe6c0 Generated table #48@1: 1 keys, 1984 bytes
|
2026/06/02-19:38:52.193815 7f1ff7fff6c0 Generated table #72@1: 1 keys, 1984 bytes
|
||||||
2026/05/23-08:42:47.895150 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
2026/06/02-19:38:52.193845 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||||
2026/05/23-08:42:47.902755 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:38:52.200660 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-08:42:47.903327 7fb04b7fe6c0 Delete type=2 #43
|
2026/06/02-19:38:52.200784 7f1ff7fff6c0 Delete type=2 #67
|
||||||
2026/05/23-08:42:47.903735 7fb04b7fe6c0 Delete type=2 #47
|
2026/06/02-19:38:52.200926 7f1ff7fff6c0 Delete type=2 #71
|
||||||
2026/05/23-08:42:47.946588 7fb04b7fe6c0 Manual compaction at level-1 from '!actors!null' @ 38 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.201085 7f1ff7fff6c0 Manual compaction at level-1 from '!actors!null' @ 58 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000073
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:18.046490 7fa280fff6c0 Recovering log #46
|
2026/06/02-19:43:31.488540 7f2215bfe6c0 Recovering log #70
|
||||||
2026/05/23-09:14:18.094345 7fa280fff6c0 Delete type=3 #44
|
2026/06/02-19:43:31.498827 7f2215bfe6c0 Delete type=3 #68
|
||||||
2026/05/23-09:14:18.094380 7fa280fff6c0 Delete type=0 #46
|
2026/06/02-19:43:31.498873 7f2215bfe6c0 Delete type=0 #70
|
||||||
2026/05/23-09:14:29.422029 7fa2327fc6c0 Level-0 table #52: started
|
2026/06/02-19:44:40.435761 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/05/23-09:14:29.425999 7fa2327fc6c0 Level-0 table #52: 10404 bytes OK
|
2026/06/02-19:44:40.439546 7f1ff7fff6c0 Level-0 table #76: 10405 bytes OK
|
||||||
2026/05/23-09:14:29.432298 7fa2327fc6c0 Delete type=0 #50
|
2026/06/02-19:44:40.446253 7f1ff7fff6c0 Delete type=0 #74
|
||||||
2026/05/23-09:14:29.442387 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.446564 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.442490 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 362 : 1
|
2026/06/02-19:44:40.478358 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 542 : 1
|
||||||
2026/05/23-09:14:29.442501 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.478373 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.446332 7fa2327fc6c0 Generated table #53@1: 1 keys, 728 bytes
|
2026/06/02-19:44:40.482365 7f1ff7fff6c0 Generated table #77@1: 1 keys, 728 bytes
|
||||||
2026/05/23-09:14:29.446350 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
2026/06/02-19:44:40.482397 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||||
2026/05/23-09:14:29.452219 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:44:40.489232 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.452435 7fa2327fc6c0 Delete type=2 #48
|
2026/06/02-19:44:40.489356 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/05/23-09:14:29.452537 7fa2327fc6c0 Delete type=2 #52
|
2026/06/02-19:44:40.489491 7f1ff7fff6c0 Delete type=2 #76
|
||||||
2026/05/23-09:14:29.472198 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 362 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.489825 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 542 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:01.993483 7fb0597ee6c0 Recovering log #41
|
2026/06/02-19:38:41.313392 7f22163ff6c0 Recovering log #65
|
||||||
2026/05/23-08:39:02.008888 7fb0597ee6c0 Delete type=3 #39
|
2026/06/02-19:38:41.325409 7f22163ff6c0 Delete type=3 #63
|
||||||
2026/05/23-08:39:02.009121 7fb0597ee6c0 Delete type=0 #41
|
2026/06/02-19:38:41.325473 7f22163ff6c0 Delete type=0 #65
|
||||||
2026/05/23-08:42:47.845110 7fb04b7fe6c0 Level-0 table #47: started
|
2026/06/02-19:38:52.130850 7f1ff7fff6c0 Level-0 table #71: started
|
||||||
2026/05/23-08:42:47.852176 7fb04b7fe6c0 Level-0 table #47: 10404 bytes OK
|
2026/06/02-19:38:52.134936 7f1ff7fff6c0 Level-0 table #71: 10410 bytes OK
|
||||||
2026/05/23-08:42:47.860739 7fb04b7fe6c0 Delete type=0 #45
|
2026/06/02-19:38:52.141805 7f1ff7fff6c0 Delete type=0 #69
|
||||||
2026/05/23-08:42:47.890409 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.153922 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:47.932141 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 326 : 1
|
2026/06/02-19:38:52.177911 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 506 : 1
|
||||||
2026/05/23-08:42:47.932174 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.177922 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:47.936922 7fb04b7fe6c0 Generated table #48@1: 1 keys, 728 bytes
|
2026/06/02-19:38:52.181665 7f1ff7fff6c0 Generated table #72@1: 1 keys, 728 bytes
|
||||||
2026/05/23-08:42:47.937033 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
2026/06/02-19:38:52.181698 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||||
2026/05/23-08:42:47.945460 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:38:52.188934 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-08:42:47.945901 7fb04b7fe6c0 Delete type=2 #43
|
2026/06/02-19:38:52.189052 7f1ff7fff6c0 Delete type=2 #67
|
||||||
2026/05/23-08:42:47.946350 7fb04b7fe6c0 Delete type=2 #47
|
2026/06/02-19:38:52.189189 7f1ff7fff6c0 Delete type=2 #71
|
||||||
2026/05/23-08:42:47.947124 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 326 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.201050 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 506 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000051
|
MANIFEST-000075
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:18.265405 7fa233fff6c0 Recovering log #48
|
2026/06/02-19:43:31.544375 7f22153fd6c0 Recovering log #72
|
||||||
2026/05/23-09:14:18.326477 7fa233fff6c0 Delete type=3 #46
|
2026/06/02-19:43:31.554816 7f22153fd6c0 Delete type=3 #70
|
||||||
2026/05/23-09:14:18.326527 7fa233fff6c0 Delete type=0 #48
|
2026/06/02-19:43:31.554878 7f22153fd6c0 Delete type=0 #72
|
||||||
2026/05/23-09:14:29.505997 7fa2327fc6c0 Level-0 table #54: started
|
2026/06/02-19:44:40.500606 7f1ff7fff6c0 Level-0 table #78: started
|
||||||
2026/05/23-09:14:29.509927 7fa2327fc6c0 Level-0 table #54: 36675 bytes OK
|
2026/06/02-19:44:40.505562 7f1ff7fff6c0 Level-0 table #78: 36499 bytes OK
|
||||||
2026/05/23-09:14:29.515715 7fa2327fc6c0 Delete type=0 #52
|
2026/06/02-19:44:40.512075 7f1ff7fff6c0 Delete type=0 #76
|
||||||
2026/05/23-09:14:29.531937 7fa2327fc6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.526628 7f1ff7fff6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.542535 7fa2327fc6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at '!tables.results!zwMaXqqGkMK185le' @ 3951 : 1
|
2026/06/02-19:44:40.526936 7f1ff7fff6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1
|
||||||
2026/05/23-09:14:29.542540 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.526943 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.545905 7fa2327fc6c0 Generated table #55@1: 436 keys, 40186 bytes
|
2026/06/02-19:44:40.531590 7f1ff7fff6c0 Generated table #79@1: 436 keys, 40570 bytes
|
||||||
2026/05/23-09:14:29.545911 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 40186 bytes
|
2026/06/02-19:44:40.531624 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40570 bytes
|
||||||
2026/05/23-09:14:29.552396 7fa2327fc6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
2026/06/02-19:44:40.538399 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.552418 7fa2327fc6c0 Delete type=2 #50
|
2026/06/02-19:44:40.538517 7f1ff7fff6c0 Delete type=2 #74
|
||||||
2026/05/23-09:14:29.552455 7fa2327fc6c0 Delete type=2 #54
|
2026/06/02-19:44:40.538677 7f1ff7fff6c0 Delete type=2 #78
|
||||||
2026/05/23-09:14:29.558584 7fa2327fc6c0 Manual compaction at level-1 from '!tables.results!zwMaXqqGkMK185le' @ 3951 : 1 .. '!tables.results!zwMaXqqGkMK185le' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.564184 7f1ff7fff6c0 Manual compaction at level-1 from '!tables.results!zjAZ7bctIvTyKfff' @ 6129 : 1 .. '!tables.results!zjAZ7bctIvTyKfff' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:02.096363 7fb058fed6c0 Recovering log #43
|
2026/06/02-19:38:41.373993 7f2214bfc6c0 Recovering log #67
|
||||||
2026/05/23-08:39:02.110780 7fb058fed6c0 Delete type=3 #41
|
2026/06/02-19:38:41.384841 7f2214bfc6c0 Delete type=3 #65
|
||||||
2026/05/23-08:39:02.110962 7fb058fed6c0 Delete type=0 #43
|
2026/06/02-19:38:41.384906 7f2214bfc6c0 Delete type=0 #67
|
||||||
2026/05/23-08:42:47.957308 7fb04b7fe6c0 Level-0 table #49: started
|
2026/06/02-19:38:52.207992 7f1ff7fff6c0 Level-0 table #73: started
|
||||||
2026/05/23-08:42:47.965185 7fb04b7fe6c0 Level-0 table #49: 36427 bytes OK
|
2026/06/02-19:38:52.212811 7f1ff7fff6c0 Level-0 table #73: 36337 bytes OK
|
||||||
2026/05/23-08:42:47.973709 7fb04b7fe6c0 Delete type=0 #47
|
2026/06/02-19:38:52.219611 7f1ff7fff6c0 Delete type=0 #71
|
||||||
2026/05/23-08:42:47.997266 7fb04b7fe6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.237075 7f1ff7fff6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:47.997540 7fb04b7fe6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0
|
2026/06/02-19:38:52.237220 7f1ff7fff6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at '!tables.results!zujdTVEcOrMemrQK' @ 5671 : 0
|
||||||
2026/05/23-08:42:47.997565 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.237225 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:48.006520 7fb04b7fe6c0 Generated table #50@1: 436 keys, 40644 bytes
|
2026/06/02-19:38:52.241483 7f1ff7fff6c0 Generated table #74@1: 436 keys, 40329 bytes
|
||||||
2026/05/23-08:42:48.006615 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 40644 bytes
|
2026/06/02-19:38:52.241507 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40329 bytes
|
||||||
2026/05/23-08:42:48.015030 7fb04b7fe6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
2026/06/02-19:38:52.248771 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||||
2026/05/23-08:42:48.015433 7fb04b7fe6c0 Delete type=2 #45
|
2026/06/02-19:38:52.248884 7f1ff7fff6c0 Delete type=2 #69
|
||||||
2026/05/23-08:42:48.015956 7fb04b7fe6c0 Delete type=2 #49
|
2026/06/02-19:38:52.249011 7f1ff7fff6c0 Delete type=2 #73
|
||||||
2026/05/23-08:42:48.059083 7fb04b7fe6c0 Manual compaction at level-1 from '!tables.results!zxz8aOYe1rfUsXfG' @ 3496 : 0 .. '!tables.results!zJoz3QSaL4FJ8W0g' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.273586 7f1ff7fff6c0 Manual compaction at level-1 from '!tables.results!zujdTVEcOrMemrQK' @ 5671 : 0 .. '!tables.results!zDBA2MM7O4aGPzvj' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000073
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:17.972244 7fa233fff6c0 Recovering log #46
|
2026/06/02-19:43:31.473126 7f22163ff6c0 Recovering log #70
|
||||||
2026/05/23-09:14:18.043435 7fa233fff6c0 Delete type=3 #44
|
2026/06/02-19:43:31.484666 7f22163ff6c0 Delete type=3 #68
|
||||||
2026/05/23-09:14:18.043484 7fa233fff6c0 Delete type=0 #46
|
2026/06/02-19:43:31.484705 7f22163ff6c0 Delete type=0 #70
|
||||||
2026/05/23-09:14:29.403449 7fa2327fc6c0 Level-0 table #52: started
|
2026/06/02-19:44:40.402774 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/05/23-09:14:29.407852 7fa2327fc6c0 Level-0 table #52: 7117 bytes OK
|
2026/06/02-19:44:40.407015 7f1ff7fff6c0 Level-0 table #76: 7108 bytes OK
|
||||||
2026/05/23-09:14:29.415465 7fa2327fc6c0 Delete type=0 #50
|
2026/06/02-19:44:40.413760 7f1ff7fff6c0 Delete type=0 #74
|
||||||
2026/05/23-09:14:29.442366 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.446409 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.452607 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 202 : 1
|
2026/06/02-19:44:40.457226 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 302 : 1
|
||||||
2026/05/23-09:14:29.452614 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.457235 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.455643 7fa2327fc6c0 Generated table #53@1: 1 keys, 910 bytes
|
2026/06/02-19:44:40.461196 7f1ff7fff6c0 Generated table #77@1: 1 keys, 911 bytes
|
||||||
2026/05/23-09:14:29.455657 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
2026/06/02-19:44:40.461226 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
||||||
2026/05/23-09:14:29.462788 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:44:40.467956 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.462843 7fa2327fc6c0 Delete type=2 #48
|
2026/06/02-19:44:40.468078 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/05/23-09:14:29.462930 7fa2327fc6c0 Delete type=2 #52
|
2026/06/02-19:44:40.468198 7f1ff7fff6c0 Delete type=2 #76
|
||||||
2026/05/23-09:14:29.472208 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 202 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.489599 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 302 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:01.965876 7fb058fed6c0 Recovering log #41
|
2026/06/02-19:38:41.298101 7f2214bfc6c0 Recovering log #65
|
||||||
2026/05/23-08:39:01.980863 7fb058fed6c0 Delete type=3 #39
|
2026/06/02-19:38:41.309083 7f2214bfc6c0 Delete type=3 #63
|
||||||
2026/05/23-08:39:01.981110 7fb058fed6c0 Delete type=0 #41
|
2026/06/02-19:38:41.309147 7f2214bfc6c0 Delete type=0 #65
|
||||||
2026/05/23-08:42:47.824361 7fb04b7fe6c0 Level-0 table #47: started
|
2026/06/02-19:38:52.107907 7f1ff7fff6c0 Level-0 table #71: started
|
||||||
2026/05/23-08:42:47.833284 7fb04b7fe6c0 Level-0 table #47: 7117 bytes OK
|
2026/06/02-19:38:52.112019 7f1ff7fff6c0 Level-0 table #71: 7108 bytes OK
|
||||||
2026/05/23-08:42:47.844689 7fb04b7fe6c0 Delete type=0 #45
|
2026/06/02-19:38:52.118652 7f1ff7fff6c0 Delete type=0 #69
|
||||||
2026/05/23-08:42:47.890347 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.153887 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:47.903963 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1
|
2026/06/02-19:38:52.153996 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 282 : 1
|
||||||
2026/05/23-08:42:47.903996 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.154006 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:47.908345 7fb04b7fe6c0 Generated table #48@1: 1 keys, 910 bytes
|
2026/06/02-19:38:52.157685 7f1ff7fff6c0 Generated table #72@1: 1 keys, 911 bytes
|
||||||
2026/05/23-08:42:47.908426 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 910 bytes
|
2026/06/02-19:38:52.157721 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
||||||
2026/05/23-08:42:47.917015 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:38:52.164744 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-08:42:47.917368 7fb04b7fe6c0 Delete type=2 #43
|
2026/06/02-19:38:52.165117 7f1ff7fff6c0 Delete type=2 #67
|
||||||
2026/05/23-08:42:47.917768 7fb04b7fe6c0 Delete type=2 #47
|
2026/06/02-19:38:52.165250 7f1ff7fff6c0 Delete type=2 #71
|
||||||
2026/05/23-08:42:47.946653 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.201019 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 282 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000010
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
2026/06/02-19:43:31.609465 7f22153fd6c0 Recovering log #8
|
||||||
|
2026/06/02-19:43:31.620427 7f22153fd6c0 Delete type=3 #6
|
||||||
|
2026/06/02-19:43:31.620485 7f22153fd6c0 Delete type=0 #8
|
||||||
|
2026/06/02-19:44:40.512258 7f1ff7fff6c0 Level-0 table #13: started
|
||||||
|
2026/06/02-19:44:40.512300 7f1ff7fff6c0 Level-0 table #13: 0 bytes OK
|
||||||
|
2026/06/02-19:44:40.519094 7f1ff7fff6c0 Delete type=0 #11
|
||||||
|
2026/06/02-19:44:40.526642 7f1ff7fff6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||||
|
2026/06/02-19:44:40.526909 7f1ff7fff6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
2026/06/02-19:38:41.450683 7f2214bfc6c0 Recovering log #4
|
||||||
|
2026/06/02-19:38:41.462030 7f2214bfc6c0 Delete type=3 #2
|
||||||
|
2026/06/02-19:38:41.462080 7f2214bfc6c0 Delete type=0 #4
|
||||||
|
2026/06/02-19:38:52.230748 7f1ff7fff6c0 Level-0 table #9: started
|
||||||
|
2026/06/02-19:38:52.230780 7f1ff7fff6c0 Level-0 table #9: 0 bytes OK
|
||||||
|
2026/06/02-19:38:52.236951 7f1ff7fff6c0 Delete type=0 #7
|
||||||
|
2026/06/02-19:38:52.237131 7f1ff7fff6c0 Manual compaction at level-0 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||||
|
2026/06/02-19:38:52.237146 7f1ff7fff6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000049
|
MANIFEST-000073
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-09:14:18.149804 7fa232ffd6c0 Recovering log #46
|
2026/06/02-19:43:31.516359 7f22153fd6c0 Recovering log #70
|
||||||
2026/05/23-09:14:18.206384 7fa232ffd6c0 Delete type=3 #44
|
2026/06/02-19:43:31.527478 7f22153fd6c0 Delete type=3 #68
|
||||||
2026/05/23-09:14:18.206431 7fa232ffd6c0 Delete type=0 #46
|
2026/06/02-19:43:31.527540 7f22153fd6c0 Delete type=0 #70
|
||||||
2026/05/23-09:14:29.495692 7fa2327fc6c0 Level-0 table #52: started
|
2026/06/02-19:44:40.489853 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/05/23-09:14:29.499223 7fa2327fc6c0 Level-0 table #52: 1965 bytes OK
|
2026/06/02-19:44:40.493463 7f1ff7fff6c0 Level-0 table #76: 1965 bytes OK
|
||||||
2026/05/23-09:14:29.505900 7fa2327fc6c0 Delete type=0 #50
|
2026/06/02-19:44:40.500444 7f1ff7fff6c0 Delete type=0 #74
|
||||||
2026/05/23-09:14:29.531922 7fa2327fc6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.526600 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-09:14:29.531955 7fa2327fc6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 122 : 1
|
2026/06/02-19:44:40.538777 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 182 : 1
|
||||||
2026/05/23-09:14:29.531958 7fa2327fc6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.538789 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-09:14:29.535486 7fa2327fc6c0 Generated table #53@1: 1 keys, 626 bytes
|
2026/06/02-19:44:40.542122 7f1ff7fff6c0 Generated table #77@1: 1 keys, 626 bytes
|
||||||
2026/05/23-09:14:29.535507 7fa2327fc6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
2026/06/02-19:44:40.542154 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||||
2026/05/23-09:14:29.542419 7fa2327fc6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:44:40.549101 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-09:14:29.542458 7fa2327fc6c0 Delete type=2 #48
|
2026/06/02-19:44:40.549243 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/05/23-09:14:29.542504 7fa2327fc6c0 Delete type=2 #52
|
2026/06/02-19:44:40.549396 7f1ff7fff6c0 Delete type=2 #76
|
||||||
2026/05/23-09:14:29.558566 7fa2327fc6c0 Manual compaction at level-1 from '!items!null' @ 122 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:44:40.564205 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 182 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/05/23-08:39:02.046509 7fb058fed6c0 Recovering log #41
|
2026/06/02-19:38:41.343792 7f2214bfc6c0 Recovering log #65
|
||||||
2026/05/23-08:39:02.061764 7fb058fed6c0 Delete type=3 #39
|
2026/06/02-19:38:41.356079 7f2214bfc6c0 Delete type=3 #63
|
||||||
2026/05/23-08:39:02.061947 7fb058fed6c0 Delete type=0 #41
|
2026/06/02-19:38:41.356142 7f2214bfc6c0 Delete type=0 #65
|
||||||
2026/05/23-08:42:47.875902 7fb04b7fe6c0 Level-0 table #47: started
|
2026/06/02-19:38:52.141944 7f1ff7fff6c0 Level-0 table #71: started
|
||||||
2026/05/23-08:42:47.880995 7fb04b7fe6c0 Level-0 table #47: 1965 bytes OK
|
2026/06/02-19:38:52.145396 7f1ff7fff6c0 Level-0 table #71: 1965 bytes OK
|
||||||
2026/05/23-08:42:47.889814 7fb04b7fe6c0 Delete type=0 #45
|
2026/06/02-19:38:52.153716 7f1ff7fff6c0 Delete type=0 #69
|
||||||
2026/05/23-08:42:47.890538 7fb04b7fe6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.153970 7f1ff7fff6c0 Manual compaction at level-0 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
2026/05/23-08:42:47.918010 7fb04b7fe6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 110 : 1
|
2026/06/02-19:38:52.165354 7f1ff7fff6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 170 : 1
|
||||||
2026/05/23-08:42:47.918042 7fb04b7fe6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:38:52.165366 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/05/23-08:42:47.923207 7fb04b7fe6c0 Generated table #48@1: 1 keys, 626 bytes
|
2026/06/02-19:38:52.169864 7f1ff7fff6c0 Generated table #72@1: 1 keys, 626 bytes
|
||||||
2026/05/23-08:42:47.923291 7fb04b7fe6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
2026/06/02-19:38:52.169895 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||||
2026/05/23-08:42:47.931259 7fb04b7fe6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/02-19:38:52.177600 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/05/23-08:42:47.931577 7fb04b7fe6c0 Delete type=2 #43
|
2026/06/02-19:38:52.177705 7f1ff7fff6c0 Delete type=2 #67
|
||||||
2026/05/23-08:42:47.931935 7fb04b7fe6c0 Delete type=2 #47
|
2026/06/02-19:38:52.177829 7f1ff7fff6c0 Delete type=2 #71
|
||||||
2026/05/23-08:42:47.946721 7fb04b7fe6c0 Manual compaction at level-1 from '!items!null' @ 110 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
2026/06/02-19:38:52.201037 7f1ff7fff6c0 Manual compaction at level-1 from '!items!null' @ 170 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -135,6 +135,13 @@
|
|||||||
"path": "packs-system/names",
|
"path": "packs-system/names",
|
||||||
"type": "RollTable",
|
"type": "RollTable",
|
||||||
"system": "fvtt-machine-gods-noxian-expanse"
|
"system": "fvtt-machine-gods-noxian-expanse"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "scenes",
|
||||||
|
"label": "Scenes",
|
||||||
|
"path": "packs-system/scenes",
|
||||||
|
"type": "Scene",
|
||||||
|
"system": "fvtt-machine-gods-noxian-expanse"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"grid": {
|
"grid": {
|
||||||
@@ -144,6 +151,7 @@
|
|||||||
"url": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse",
|
"url": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse",
|
||||||
"manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse/raw/branch/main/system.json",
|
"manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse/raw/branch/main/system.json",
|
||||||
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse/releases/download/latest/fvtt-machine-gods-noxian-expanse.zip",
|
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-machine-gods-noxian-expanse/releases/download/latest/fvtt-machine-gods-noxian-expanse.zip",
|
||||||
|
"background": "systems/fvtt-machine-gods-noxian-expanse/assets/scenes/The Noxian Expanse NO GRID r1.webp",
|
||||||
"primaryTokenAttribute": "hp",
|
"primaryTokenAttribute": "hp",
|
||||||
"socket": false
|
"socket": false
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user