Fix load/Capacity
This commit is contained in:
@@ -8,3 +8,6 @@ In this release, you will find:
|
|||||||
- Tools to set up a game of Machine Gods, with everything in place to add your own gear, creatures, and more
|
- 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.)
|
- 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
|
- Full support for the game's mechanics, based on Mörk Borg
|
||||||
|
|
||||||
|
|
||||||
|
A game by Blackoath Entertainment https://blackoathgames.com/
|
||||||
@@ -115,6 +115,7 @@
|
|||||||
"ArtifactSync": "Artifact Sync",
|
"ArtifactSync": "Artifact Sync",
|
||||||
"CarryingCapacity": "Carrying Capacity",
|
"CarryingCapacity": "Carrying Capacity",
|
||||||
"Load": "Load",
|
"Load": "Load",
|
||||||
|
"CapacityModifier": "Carrying Capacity",
|
||||||
"Rations": "Rations",
|
"Rations": "Rations",
|
||||||
"Kiffol": "Kiffol",
|
"Kiffol": "Kiffol",
|
||||||
"Weapons": "Weapons",
|
"Weapons": "Weapons",
|
||||||
@@ -223,6 +224,9 @@
|
|||||||
"carryCapacity": {
|
"carryCapacity": {
|
||||||
"label": "Carrying Capacity"
|
"label": "Carrying Capacity"
|
||||||
},
|
},
|
||||||
|
"carryCapacityModifier": {
|
||||||
|
"label": "Capacity Modifier"
|
||||||
|
},
|
||||||
"rations": {
|
"rations": {
|
||||||
"label": "Rations"
|
"label": "Rations"
|
||||||
},
|
},
|
||||||
@@ -794,6 +798,9 @@
|
|||||||
},
|
},
|
||||||
"featureId": {
|
"featureId": {
|
||||||
"label": "Feature Id"
|
"label": "Feature Id"
|
||||||
|
},
|
||||||
|
"capacity": {
|
||||||
|
"label": "Capacity"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ export default class MGNECharacter extends foundry.abstract.TypeDataModel {
|
|||||||
}),
|
}),
|
||||||
conditions: conditionSchema(),
|
conditions: conditionSchema(),
|
||||||
carryCapacity: numberField(8, 0),
|
carryCapacity: numberField(8, 0),
|
||||||
|
carryCapacityModifier: numberField(0, 0),
|
||||||
rations: numberField(0, 0),
|
rations: numberField(0, 0),
|
||||||
kiffol: numberField(0, 0),
|
kiffol: numberField(0, 0),
|
||||||
background: stringField(""),
|
background: stringField(""),
|
||||||
@@ -40,18 +41,25 @@ export default class MGNECharacter extends foundry.abstract.TypeDataModel {
|
|||||||
prepareDerivedData() {
|
prepareDerivedData() {
|
||||||
super.prepareDerivedData()
|
super.prepareDerivedData()
|
||||||
|
|
||||||
this.carryCapacity = (this.abilities.strength?.value ?? 0) + 8
|
|
||||||
this.resonance.remaining = Math.max(0, (this.resonance.max ?? 0) - (this.resonance.used ?? 0))
|
this.resonance.remaining = Math.max(0, (this.resonance.max ?? 0) - (this.resonance.used ?? 0))
|
||||||
this.syncLimit = Math.max(0, this.abilities.toughness?.value ?? 0)
|
this.syncLimit = Math.max(0, this.abilities.toughness?.value ?? 0)
|
||||||
this.syncRemaining = Math.max(0, this.syncLimit - (this.artifactSync.used ?? 0))
|
this.syncRemaining = Math.max(0, this.syncLimit - (this.artifactSync.used ?? 0))
|
||||||
this.armorFormula = this.parent?.getArmorRollFormula?.() ?? "0"
|
this.armorFormula = this.parent?.getArmorRollFormula?.() ?? "0"
|
||||||
|
|
||||||
|
// Compute carry capacity: base STR + 8 + feature capacities + direct modifier
|
||||||
|
const featureCapacity = (this.parent?.items ?? [])
|
||||||
|
.filter(i => i.type === "feature")
|
||||||
|
.reduce((sum, f) => sum + (f.system?.capacity ?? 0), 0)
|
||||||
|
this.carryCapacity = (this.abilities.strength?.value ?? 0) + 8 + featureCapacity + (this.carryCapacityModifier ?? 0)
|
||||||
|
|
||||||
// Compute current load per RAW:
|
// Compute current load per RAW:
|
||||||
|
// Only items with a weight field count — features and creature-traits are excluded
|
||||||
// trivial = 0, light = 10 per slot, normal = 1, heavy = fills remaining capacity (max 1)
|
// trivial = 0, light = 10 per slot, normal = 1, heavy = fills remaining capacity (max 1)
|
||||||
let normalLoad = 0
|
let normalLoad = 0
|
||||||
let lightCount = 0
|
let lightCount = 0
|
||||||
let heavyCount = 0
|
let heavyCount = 0
|
||||||
for (const item of (this.parent?.items ?? [])) {
|
for (const item of (this.parent?.items ?? [])) {
|
||||||
|
if (!("weight" in (item.system ?? {}))) continue // no weight field (features, traits)
|
||||||
if (item.system?.carried === false) continue // not being carried
|
if (item.system?.carried === false) continue // not being carried
|
||||||
const w = item.system?.weight ?? "normal"
|
const w = item.system?.weight ?? "normal"
|
||||||
if (w === "trivial") continue
|
if (w === "trivial") continue
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { SYSTEM } from "../config/system.mjs"
|
import { SYSTEM } from "../config/system.mjs"
|
||||||
import { htmlField } from "./shared.mjs"
|
import { htmlField, numberField } from "./shared.mjs"
|
||||||
|
|
||||||
export default class MGNEFeature extends foundry.abstract.TypeDataModel {
|
export default class MGNEFeature extends foundry.abstract.TypeDataModel {
|
||||||
static defineSchema() {
|
static defineSchema() {
|
||||||
@@ -10,6 +10,7 @@ export default class MGNEFeature extends foundry.abstract.TypeDataModel {
|
|||||||
blank: true,
|
blank: true,
|
||||||
initial: "",
|
initial: "",
|
||||||
}),
|
}),
|
||||||
|
capacity: numberField(0, 0),
|
||||||
description: htmlField(""),
|
description: htmlField(""),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000073
|
MANIFEST-000078
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.530779 7f2215bfe6c0 Recovering log #70
|
2026/06/04-19:59:31.303282 7f480abff6c0 Recovering log #75
|
||||||
2026/06/02-19:43:31.541230 7f2215bfe6c0 Delete type=3 #68
|
2026/06/04-19:59:31.312491 7f480abff6c0 Delete type=3 #73
|
||||||
2026/06/02-19:43:31.541267 7f2215bfe6c0 Delete type=0 #70
|
2026/06/04-19:59:31.312518 7f480abff6c0 Delete type=0 #75
|
||||||
2026/06/02-19:44:40.424603 7f1ff7fff6c0 Level-0 table #76: started
|
2026/06/04-20:00:50.106068 7f4808bfb6c0 Level-0 table #81: started
|
||||||
2026/06/02-19:44:40.428039 7f1ff7fff6c0 Level-0 table #76: 1354 bytes OK
|
2026/06/04-20:00:50.109748 7f4808bfb6c0 Level-0 table #81: 1354 bytes OK
|
||||||
2026/06/02-19:44:40.435632 7f1ff7fff6c0 Delete type=0 #74
|
2026/06/04-20:00:50.116095 7f4808bfb6c0 Delete type=0 #79
|
||||||
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/06/04-20:00:50.133136 7f4808bfb6c0 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.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/06/04-20:00:50.133294 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-arm-chainshirt' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 130 : 1
|
||||||
2026/06/02-19:44:40.446608 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.133299 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.449973 7f1ff7fff6c0 Generated table #77@1: 1 keys, 685 bytes
|
2026/06/04-20:00:50.136397 7f4808bfb6c0 Generated table #82@1: 1 keys, 685 bytes
|
||||||
2026/06/02-19:44:40.450003 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
2026/06/04-20:00:50.136409 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 685 bytes
|
||||||
2026/06/02-19:44:40.456735 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/04-20:00:50.142598 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.457031 7f1ff7fff6c0 Delete type=2 #72
|
2026/06/04-20:00:50.142662 7f4808bfb6c0 Delete type=2 #77
|
||||||
2026/06/02-19:44:40.457165 7f1ff7fff6c0 Delete type=2 #76
|
2026/06/04-20:00:50.142750 7f4808bfb6c0 Delete type=2 #81
|
||||||
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)
|
2026/06/04-20:00:50.170090 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 130 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.359950 7f22153fd6c0 Recovering log #65
|
2026/06/02-19:43:31.530779 7f2215bfe6c0 Recovering log #70
|
||||||
2026/06/02-19:38:41.370323 7f22153fd6c0 Delete type=3 #63
|
2026/06/02-19:43:31.541230 7f2215bfe6c0 Delete type=3 #68
|
||||||
2026/06/02-19:38:41.370382 7f22153fd6c0 Delete type=0 #65
|
2026/06/02-19:43:31.541267 7f2215bfe6c0 Delete type=0 #70
|
||||||
2026/06/02-19:38:52.219787 7f1ff7fff6c0 Level-0 table #71: started
|
2026/06/02-19:44:40.424603 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/06/02-19:38:52.223074 7f1ff7fff6c0 Level-0 table #71: 1354 bytes OK
|
2026/06/02-19:44:40.428039 7f1ff7fff6c0 Level-0 table #76: 1354 bytes OK
|
||||||
2026/06/02-19:38:52.230583 7f1ff7fff6c0 Delete type=0 #69
|
2026/06/02-19:44:40.435632 7f1ff7fff6c0 Delete type=0 #74
|
||||||
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/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/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/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/06/02-19:38:52.249106 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.446608 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.252924 7f1ff7fff6c0 Generated table #72@1: 1 keys, 685 bytes
|
2026/06/02-19:44:40.449973 7f1ff7fff6c0 Generated table #77@1: 1 keys, 685 bytes
|
||||||
2026/06/02-19:38:52.252947 7f1ff7fff6c0 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/06/02-19:38:52.259084 7f1ff7fff6c0 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/06/02-19:38:52.259162 7f1ff7fff6c0 Delete type=2 #67
|
2026/06/02-19:44:40.457031 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/06/02-19:38:52.259309 7f1ff7fff6c0 Delete type=2 #71
|
2026/06/02-19:44:40.457165 7f1ff7fff6c0 Delete type=2 #76
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000073
|
MANIFEST-000078
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.502187 7f22153fd6c0 Recovering log #70
|
2026/06/04-19:59:31.279596 7f48093fc6c0 Recovering log #75
|
||||||
2026/06/02-19:43:31.512581 7f22153fd6c0 Delete type=3 #68
|
2026/06/04-19:59:31.289218 7f48093fc6c0 Delete type=3 #73
|
||||||
2026/06/02-19:43:31.512620 7f22153fd6c0 Delete type=0 #70
|
2026/06/04-19:59:31.289235 7f48093fc6c0 Delete type=0 #75
|
||||||
2026/06/02-19:44:40.413927 7f1ff7fff6c0 Level-0 table #76: started
|
2026/06/04-20:00:50.045800 7f4808bfb6c0 Level-0 table #81: started
|
||||||
2026/06/02-19:44:40.417618 7f1ff7fff6c0 Level-0 table #76: 4899 bytes OK
|
2026/06/04-20:00:50.049176 7f4808bfb6c0 Level-0 table #81: 4899 bytes OK
|
||||||
2026/06/02-19:44:40.424469 7f1ff7fff6c0 Delete type=0 #74
|
2026/06/04-20:00:50.055679 7f4808bfb6c0 Delete type=0 #79
|
||||||
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/06/04-20:00:50.066108 7f4808bfb6c0 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.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/06/04-20:00:50.076443 7f4808bfb6c0 Manual compaction at level-1 from '!actors!mgne-comp-beguiled-noble' @ 72057594037927935 : 1 .. '!actors!null' @ 0 : 0; will stop at '!actors!null' @ 66 : 1
|
||||||
2026/06/02-19:44:40.468288 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.076453 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.471670 7f1ff7fff6c0 Generated table #77@1: 1 keys, 1984 bytes
|
2026/06/04-20:00:50.079696 7f4808bfb6c0 Generated table #82@1: 1 keys, 1984 bytes
|
||||||
2026/06/02-19:44:40.471701 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
2026/06/04-20:00:50.079711 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 1984 bytes
|
||||||
2026/06/02-19:44:40.477948 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/04-20:00:50.085900 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.478072 7f1ff7fff6c0 Delete type=2 #72
|
2026/06/04-20:00:50.085969 7f4808bfb6c0 Delete type=2 #77
|
||||||
2026/06/02-19:44:40.478253 7f1ff7fff6c0 Delete type=2 #76
|
2026/06/04-20:00:50.086069 7f4808bfb6c0 Delete type=2 #81
|
||||||
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)
|
2026/06/04-20:00:50.096347 7f4808bfb6c0 Manual compaction at level-1 from '!actors!null' @ 66 : 1 .. '!actors!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.329254 7f2214bfc6c0 Recovering log #65
|
2026/06/02-19:43:31.502187 7f22153fd6c0 Recovering log #70
|
||||||
2026/06/02-19:38:41.339373 7f2214bfc6c0 Delete type=3 #63
|
2026/06/02-19:43:31.512581 7f22153fd6c0 Delete type=3 #68
|
||||||
2026/06/02-19:38:41.339444 7f2214bfc6c0 Delete type=0 #65
|
2026/06/02-19:43:31.512620 7f22153fd6c0 Delete type=0 #70
|
||||||
2026/06/02-19:38:52.118810 7f1ff7fff6c0 Level-0 table #71: started
|
2026/06/02-19:44:40.413927 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/06/02-19:38:52.123075 7f1ff7fff6c0 Level-0 table #71: 4899 bytes OK
|
2026/06/02-19:44:40.417618 7f1ff7fff6c0 Level-0 table #76: 4899 bytes OK
|
||||||
2026/06/02-19:38:52.130714 7f1ff7fff6c0 Delete type=0 #69
|
2026/06/02-19:44:40.424469 7f1ff7fff6c0 Delete type=0 #74
|
||||||
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/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/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/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/06/02-19:38:52.189297 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.468288 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.193815 7f1ff7fff6c0 Generated table #72@1: 1 keys, 1984 bytes
|
2026/06/02-19:44:40.471670 7f1ff7fff6c0 Generated table #77@1: 1 keys, 1984 bytes
|
||||||
2026/06/02-19:38:52.193845 7f1ff7fff6c0 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/06/02-19:38:52.200660 7f1ff7fff6c0 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/06/02-19:38:52.200784 7f1ff7fff6c0 Delete type=2 #67
|
2026/06/02-19:44:40.478072 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/06/02-19:38:52.200926 7f1ff7fff6c0 Delete type=2 #71
|
2026/06/02-19:44:40.478253 7f1ff7fff6c0 Delete type=2 #76
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000073
|
MANIFEST-000078
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.488540 7f2215bfe6c0 Recovering log #70
|
2026/06/04-19:59:31.268808 7f480a3fe6c0 Recovering log #75
|
||||||
2026/06/02-19:43:31.498827 7f2215bfe6c0 Delete type=3 #68
|
2026/06/04-19:59:31.278025 7f480a3fe6c0 Delete type=3 #73
|
||||||
2026/06/02-19:43:31.498873 7f2215bfe6c0 Delete type=0 #70
|
2026/06/04-19:59:31.278064 7f480a3fe6c0 Delete type=0 #75
|
||||||
2026/06/02-19:44:40.435761 7f1ff7fff6c0 Level-0 table #76: started
|
2026/06/04-20:00:50.055792 7f4808bfb6c0 Level-0 table #81: started
|
||||||
2026/06/02-19:44:40.439546 7f1ff7fff6c0 Level-0 table #76: 10405 bytes OK
|
2026/06/04-20:00:50.059981 7f4808bfb6c0 Level-0 table #81: 10404 bytes OK
|
||||||
2026/06/02-19:44:40.446253 7f1ff7fff6c0 Delete type=0 #74
|
2026/06/04-20:00:50.065983 7f4808bfb6c0 Delete type=0 #79
|
||||||
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/06/04-20:00:50.096324 7f4808bfb6c0 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.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/06/04-20:00:50.096480 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-feat-11' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 578 : 1
|
||||||
2026/06/02-19:44:40.478373 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.096485 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.482365 7f1ff7fff6c0 Generated table #77@1: 1 keys, 728 bytes
|
2026/06/04-20:00:50.099620 7f4808bfb6c0 Generated table #82@1: 1 keys, 728 bytes
|
||||||
2026/06/02-19:44:40.482397 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
2026/06/04-20:00:50.099636 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 728 bytes
|
||||||
2026/06/02-19:44:40.489232 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/04-20:00:50.105851 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.489356 7f1ff7fff6c0 Delete type=2 #72
|
2026/06/04-20:00:50.105910 7f4808bfb6c0 Delete type=2 #77
|
||||||
2026/06/02-19:44:40.489491 7f1ff7fff6c0 Delete type=2 #76
|
2026/06/04-20:00:50.105999 7f4808bfb6c0 Delete type=2 #81
|
||||||
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)
|
2026/06/04-20:00:50.133122 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 578 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.313392 7f22163ff6c0 Recovering log #65
|
2026/06/02-19:43:31.488540 7f2215bfe6c0 Recovering log #70
|
||||||
2026/06/02-19:38:41.325409 7f22163ff6c0 Delete type=3 #63
|
2026/06/02-19:43:31.498827 7f2215bfe6c0 Delete type=3 #68
|
||||||
2026/06/02-19:38:41.325473 7f22163ff6c0 Delete type=0 #65
|
2026/06/02-19:43:31.498873 7f2215bfe6c0 Delete type=0 #70
|
||||||
2026/06/02-19:38:52.130850 7f1ff7fff6c0 Level-0 table #71: started
|
2026/06/02-19:44:40.435761 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/06/02-19:38:52.134936 7f1ff7fff6c0 Level-0 table #71: 10410 bytes OK
|
2026/06/02-19:44:40.439546 7f1ff7fff6c0 Level-0 table #76: 10405 bytes OK
|
||||||
2026/06/02-19:38:52.141805 7f1ff7fff6c0 Delete type=0 #69
|
2026/06/02-19:44:40.446253 7f1ff7fff6c0 Delete type=0 #74
|
||||||
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/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/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/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/06/02-19:38:52.177922 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.478373 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.181665 7f1ff7fff6c0 Generated table #72@1: 1 keys, 728 bytes
|
2026/06/02-19:44:40.482365 7f1ff7fff6c0 Generated table #77@1: 1 keys, 728 bytes
|
||||||
2026/06/02-19:38:52.181698 7f1ff7fff6c0 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/06/02-19:38:52.188934 7f1ff7fff6c0 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/06/02-19:38:52.189052 7f1ff7fff6c0 Delete type=2 #67
|
2026/06/02-19:44:40.489356 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/06/02-19:38:52.189189 7f1ff7fff6c0 Delete type=2 #71
|
2026/06/02-19:44:40.489491 7f1ff7fff6c0 Delete type=2 #76
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000075
|
MANIFEST-000080
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.544375 7f22153fd6c0 Recovering log #72
|
2026/06/04-19:59:31.314227 7f480a3fe6c0 Recovering log #77
|
||||||
2026/06/02-19:43:31.554816 7f22153fd6c0 Delete type=3 #70
|
2026/06/04-19:59:31.324228 7f480a3fe6c0 Delete type=3 #75
|
||||||
2026/06/02-19:43:31.554878 7f22153fd6c0 Delete type=0 #72
|
2026/06/04-19:59:31.324261 7f480a3fe6c0 Delete type=0 #77
|
||||||
2026/06/02-19:44:40.500606 7f1ff7fff6c0 Level-0 table #78: started
|
2026/06/04-20:00:50.116271 7f4808bfb6c0 Level-0 table #83: started
|
||||||
2026/06/02-19:44:40.505562 7f1ff7fff6c0 Level-0 table #78: 36499 bytes OK
|
2026/06/04-20:00:50.120528 7f4808bfb6c0 Level-0 table #83: 36363 bytes OK
|
||||||
2026/06/02-19:44:40.512075 7f1ff7fff6c0 Delete type=0 #76
|
2026/06/04-20:00:50.126851 7f4808bfb6c0 Delete type=0 #81
|
||||||
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/06/04-20:00:50.133146 7f4808bfb6c0 Manual compaction at level-0 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at (end)
|
||||||
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/06/04-20:00:50.142815 7f4808bfb6c0 Manual compaction at level-1 from '!tables!mgne-tbl-armor' @ 72057594037927935 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at '!tables.results!zwUjCB2xwyG4KtF8' @ 6608 : 1
|
||||||
2026/06/02-19:44:40.526943 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.142822 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.531590 7f1ff7fff6c0 Generated table #79@1: 436 keys, 40570 bytes
|
2026/06/04-20:00:50.147353 7f4808bfb6c0 Generated table #84@1: 436 keys, 40657 bytes
|
||||||
2026/06/02-19:44:40.531624 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40570 bytes
|
2026/06/04-20:00:50.147367 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 40657 bytes
|
||||||
2026/06/02-19:44:40.538399 7f1ff7fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
2026/06/04-20:00:50.153433 7f4808bfb6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.538517 7f1ff7fff6c0 Delete type=2 #74
|
2026/06/04-20:00:50.153502 7f4808bfb6c0 Delete type=2 #79
|
||||||
2026/06/02-19:44:40.538677 7f1ff7fff6c0 Delete type=2 #78
|
2026/06/04-20:00:50.153631 7f4808bfb6c0 Delete type=2 #83
|
||||||
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)
|
2026/06/04-20:00:50.170103 7f4808bfb6c0 Manual compaction at level-1 from '!tables.results!zwUjCB2xwyG4KtF8' @ 6608 : 1 .. '!tables.results!zwUjCB2xwyG4KtF8' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.373993 7f2214bfc6c0 Recovering log #67
|
2026/06/02-19:43:31.544375 7f22153fd6c0 Recovering log #72
|
||||||
2026/06/02-19:38:41.384841 7f2214bfc6c0 Delete type=3 #65
|
2026/06/02-19:43:31.554816 7f22153fd6c0 Delete type=3 #70
|
||||||
2026/06/02-19:38:41.384906 7f2214bfc6c0 Delete type=0 #67
|
2026/06/02-19:43:31.554878 7f22153fd6c0 Delete type=0 #72
|
||||||
2026/06/02-19:38:52.207992 7f1ff7fff6c0 Level-0 table #73: started
|
2026/06/02-19:44:40.500606 7f1ff7fff6c0 Level-0 table #78: started
|
||||||
2026/06/02-19:38:52.212811 7f1ff7fff6c0 Level-0 table #73: 36337 bytes OK
|
2026/06/02-19:44:40.505562 7f1ff7fff6c0 Level-0 table #78: 36499 bytes OK
|
||||||
2026/06/02-19:38:52.219611 7f1ff7fff6c0 Delete type=0 #71
|
2026/06/02-19:44:40.512075 7f1ff7fff6c0 Delete type=0 #76
|
||||||
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/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/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/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/06/02-19:38:52.237225 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.526943 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.241483 7f1ff7fff6c0 Generated table #74@1: 436 keys, 40329 bytes
|
2026/06/02-19:44:40.531590 7f1ff7fff6c0 Generated table #79@1: 436 keys, 40570 bytes
|
||||||
2026/06/02-19:38:52.241507 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40329 bytes
|
2026/06/02-19:44:40.531624 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 40570 bytes
|
||||||
2026/06/02-19:38:52.248771 7f1ff7fff6c0 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/06/02-19:38:52.248884 7f1ff7fff6c0 Delete type=2 #69
|
2026/06/02-19:44:40.538517 7f1ff7fff6c0 Delete type=2 #74
|
||||||
2026/06/02-19:38:52.249011 7f1ff7fff6c0 Delete type=2 #73
|
2026/06/02-19:44:40.538677 7f1ff7fff6c0 Delete type=2 #78
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000073
|
MANIFEST-000078
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.473126 7f22163ff6c0 Recovering log #70
|
2026/06/04-19:59:31.255965 7f48093fc6c0 Recovering log #75
|
||||||
2026/06/02-19:43:31.484666 7f22163ff6c0 Delete type=3 #68
|
2026/06/04-19:59:31.266393 7f48093fc6c0 Delete type=3 #73
|
||||||
2026/06/02-19:43:31.484705 7f22163ff6c0 Delete type=0 #70
|
2026/06/04-19:59:31.266452 7f48093fc6c0 Delete type=0 #75
|
||||||
2026/06/02-19:44:40.402774 7f1ff7fff6c0 Level-0 table #76: started
|
2026/06/04-20:00:50.024423 7f4808bfb6c0 Level-0 table #81: started
|
||||||
2026/06/02-19:44:40.407015 7f1ff7fff6c0 Level-0 table #76: 7108 bytes OK
|
2026/06/04-20:00:50.028206 7f4808bfb6c0 Level-0 table #81: 7108 bytes OK
|
||||||
2026/06/02-19:44:40.413760 7f1ff7fff6c0 Delete type=0 #74
|
2026/06/04-20:00:50.034820 7f4808bfb6c0 Delete type=0 #79
|
||||||
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/06/04-20:00:50.066089 7f4808bfb6c0 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.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/06/04-20:00:50.066131 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-res-accelerate' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 322 : 1
|
||||||
2026/06/02-19:44:40.457235 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.066135 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.461196 7f1ff7fff6c0 Generated table #77@1: 1 keys, 911 bytes
|
2026/06/04-20:00:50.069225 7f4808bfb6c0 Generated table #82@1: 1 keys, 911 bytes
|
||||||
2026/06/02-19:44:40.461226 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
2026/06/04-20:00:50.069242 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
||||||
2026/06/02-19:44:40.467956 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/04-20:00:50.075815 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.468078 7f1ff7fff6c0 Delete type=2 #72
|
2026/06/04-20:00:50.076200 7f4808bfb6c0 Delete type=2 #77
|
||||||
2026/06/02-19:44:40.468198 7f1ff7fff6c0 Delete type=2 #76
|
2026/06/04-20:00:50.076357 7f4808bfb6c0 Delete type=2 #81
|
||||||
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)
|
2026/06/04-20:00:50.096339 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 322 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.298101 7f2214bfc6c0 Recovering log #65
|
2026/06/02-19:43:31.473126 7f22163ff6c0 Recovering log #70
|
||||||
2026/06/02-19:38:41.309083 7f2214bfc6c0 Delete type=3 #63
|
2026/06/02-19:43:31.484666 7f22163ff6c0 Delete type=3 #68
|
||||||
2026/06/02-19:38:41.309147 7f2214bfc6c0 Delete type=0 #65
|
2026/06/02-19:43:31.484705 7f22163ff6c0 Delete type=0 #70
|
||||||
2026/06/02-19:38:52.107907 7f1ff7fff6c0 Level-0 table #71: started
|
2026/06/02-19:44:40.402774 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/06/02-19:38:52.112019 7f1ff7fff6c0 Level-0 table #71: 7108 bytes OK
|
2026/06/02-19:44:40.407015 7f1ff7fff6c0 Level-0 table #76: 7108 bytes OK
|
||||||
2026/06/02-19:38:52.118652 7f1ff7fff6c0 Delete type=0 #69
|
2026/06/02-19:44:40.413760 7f1ff7fff6c0 Delete type=0 #74
|
||||||
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/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/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/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/06/02-19:38:52.154006 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.457235 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.157685 7f1ff7fff6c0 Generated table #72@1: 1 keys, 911 bytes
|
2026/06/02-19:44:40.461196 7f1ff7fff6c0 Generated table #77@1: 1 keys, 911 bytes
|
||||||
2026/06/02-19:38:52.157721 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
2026/06/02-19:44:40.461226 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 911 bytes
|
||||||
2026/06/02-19:38:52.164744 7f1ff7fff6c0 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/06/02-19:38:52.165117 7f1ff7fff6c0 Delete type=2 #67
|
2026/06/02-19:44:40.468078 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/06/02-19:38:52.165250 7f1ff7fff6c0 Delete type=2 #71
|
2026/06/02-19:44:40.468198 7f1ff7fff6c0 Delete type=2 #76
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000010
|
MANIFEST-000014
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/06/02-19:43:31.609465 7f22153fd6c0 Recovering log #8
|
2026/06/04-19:59:31.337020 7f480a3fe6c0 Recovering log #12
|
||||||
2026/06/02-19:43:31.620427 7f22153fd6c0 Delete type=3 #6
|
2026/06/04-19:59:31.346261 7f480a3fe6c0 Delete type=3 #10
|
||||||
2026/06/02-19:43:31.620485 7f22153fd6c0 Delete type=0 #8
|
2026/06/04-19:59:31.346300 7f480a3fe6c0 Delete type=0 #12
|
||||||
2026/06/02-19:44:40.512258 7f1ff7fff6c0 Level-0 table #13: started
|
2026/06/04-20:00:50.126988 7f4808bfb6c0 Level-0 table #17: started
|
||||||
2026/06/02-19:44:40.512300 7f1ff7fff6c0 Level-0 table #13: 0 bytes OK
|
2026/06/04-20:00:50.127020 7f4808bfb6c0 Level-0 table #17: 0 bytes OK
|
||||||
2026/06/02-19:44:40.519094 7f1ff7fff6c0 Delete type=0 #11
|
2026/06/04-20:00:50.133026 7f4808bfb6c0 Delete type=0 #15
|
||||||
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/04-20:00:50.133229 7f4808bfb6c0 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)
|
2026/06/04-20:00:50.133257 7f4808bfb6c0 Manual compaction at level-1 from '!scenes!D6yaY8sk0WN8mCr5' @ 72057594037927935 : 1 .. '!scenes.levels!D6yaY8sk0WN8mCr5.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/06/02-19:38:41.450683 7f2214bfc6c0 Recovering log #4
|
2026/06/02-19:43:31.609465 7f22153fd6c0 Recovering log #8
|
||||||
2026/06/02-19:38:41.462030 7f2214bfc6c0 Delete type=3 #2
|
2026/06/02-19:43:31.620427 7f22153fd6c0 Delete type=3 #6
|
||||||
2026/06/02-19:38:41.462080 7f2214bfc6c0 Delete type=0 #4
|
2026/06/02-19:43:31.620485 7f22153fd6c0 Delete type=0 #8
|
||||||
2026/06/02-19:38:52.230748 7f1ff7fff6c0 Level-0 table #9: started
|
2026/06/02-19:44:40.512258 7f1ff7fff6c0 Level-0 table #13: started
|
||||||
2026/06/02-19:38:52.230780 7f1ff7fff6c0 Level-0 table #9: 0 bytes OK
|
2026/06/02-19:44:40.512300 7f1ff7fff6c0 Level-0 table #13: 0 bytes OK
|
||||||
2026/06/02-19:38:52.236951 7f1ff7fff6c0 Delete type=0 #7
|
2026/06/02-19:44:40.519094 7f1ff7fff6c0 Delete type=0 #11
|
||||||
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: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:38:52.237146 7f1ff7fff6c0 Manual compaction at level-1 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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000073
|
MANIFEST-000078
|
||||||
|
|||||||
+15
-15
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:43:31.516359 7f22153fd6c0 Recovering log #70
|
2026/06/04-19:59:31.291257 7f480abff6c0 Recovering log #75
|
||||||
2026/06/02-19:43:31.527478 7f22153fd6c0 Delete type=3 #68
|
2026/06/04-19:59:31.301289 7f480abff6c0 Delete type=3 #73
|
||||||
2026/06/02-19:43:31.527540 7f22153fd6c0 Delete type=0 #70
|
2026/06/04-19:59:31.301323 7f480abff6c0 Delete type=0 #75
|
||||||
2026/06/02-19:44:40.489853 7f1ff7fff6c0 Level-0 table #76: started
|
2026/06/04-20:00:50.034965 7f4808bfb6c0 Level-0 table #81: started
|
||||||
2026/06/02-19:44:40.493463 7f1ff7fff6c0 Level-0 table #76: 1965 bytes OK
|
2026/06/04-20:00:50.038649 7f4808bfb6c0 Level-0 table #81: 1966 bytes OK
|
||||||
2026/06/02-19:44:40.500444 7f1ff7fff6c0 Delete type=0 #74
|
2026/06/04-20:00:50.045673 7f4808bfb6c0 Delete type=0 #79
|
||||||
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/06/04-20:00:50.066100 7f4808bfb6c0 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.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/06/04-20:00:50.086146 7f4808bfb6c0 Manual compaction at level-1 from '!items!mgne-wpn-club' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 194 : 1
|
||||||
2026/06/02-19:44:40.538789 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/04-20:00:50.086154 7f4808bfb6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:44:40.542122 7f1ff7fff6c0 Generated table #77@1: 1 keys, 626 bytes
|
2026/06/04-20:00:50.089546 7f4808bfb6c0 Generated table #82@1: 1 keys, 626 bytes
|
||||||
2026/06/02-19:44:40.542154 7f1ff7fff6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
2026/06/04-20:00:50.089562 7f4808bfb6c0 Compacted 1@1 + 1@2 files => 626 bytes
|
||||||
2026/06/02-19:44:40.549101 7f1ff7fff6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
2026/06/04-20:00:50.096082 7f4808bfb6c0 compacted to: files[ 0 0 2 0 0 0 0 ]
|
||||||
2026/06/02-19:44:40.549243 7f1ff7fff6c0 Delete type=2 #72
|
2026/06/04-20:00:50.096151 7f4808bfb6c0 Delete type=2 #77
|
||||||
2026/06/02-19:44:40.549396 7f1ff7fff6c0 Delete type=2 #76
|
2026/06/04-20:00:50.096257 7f4808bfb6c0 Delete type=2 #81
|
||||||
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)
|
2026/06/04-20:00:50.096468 7f4808bfb6c0 Manual compaction at level-1 from '!items!null' @ 194 : 1 .. '!items!null' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
2026/06/02-19:38:41.343792 7f2214bfc6c0 Recovering log #65
|
2026/06/02-19:43:31.516359 7f22153fd6c0 Recovering log #70
|
||||||
2026/06/02-19:38:41.356079 7f2214bfc6c0 Delete type=3 #63
|
2026/06/02-19:43:31.527478 7f22153fd6c0 Delete type=3 #68
|
||||||
2026/06/02-19:38:41.356142 7f2214bfc6c0 Delete type=0 #65
|
2026/06/02-19:43:31.527540 7f22153fd6c0 Delete type=0 #70
|
||||||
2026/06/02-19:38:52.141944 7f1ff7fff6c0 Level-0 table #71: started
|
2026/06/02-19:44:40.489853 7f1ff7fff6c0 Level-0 table #76: started
|
||||||
2026/06/02-19:38:52.145396 7f1ff7fff6c0 Level-0 table #71: 1965 bytes OK
|
2026/06/02-19:44:40.493463 7f1ff7fff6c0 Level-0 table #76: 1965 bytes OK
|
||||||
2026/06/02-19:38:52.153716 7f1ff7fff6c0 Delete type=0 #69
|
2026/06/02-19:44:40.500444 7f1ff7fff6c0 Delete type=0 #74
|
||||||
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/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/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/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/06/02-19:38:52.165366 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
2026/06/02-19:44:40.538789 7f1ff7fff6c0 Compacting 1@1 + 1@2 files
|
||||||
2026/06/02-19:38:52.169864 7f1ff7fff6c0 Generated table #72@1: 1 keys, 626 bytes
|
2026/06/02-19:44:40.542122 7f1ff7fff6c0 Generated table #77@1: 1 keys, 626 bytes
|
||||||
2026/06/02-19:38:52.169895 7f1ff7fff6c0 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/06/02-19:38:52.177600 7f1ff7fff6c0 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/06/02-19:38:52.177705 7f1ff7fff6c0 Delete type=2 #67
|
2026/06/02-19:44:40.549243 7f1ff7fff6c0 Delete type=2 #72
|
||||||
2026/06/02-19:38:52.177829 7f1ff7fff6c0 Delete type=2 #71
|
2026/06/02-19:44:40.549396 7f1ff7fff6c0 Delete type=2 #76
|
||||||
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)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -9,6 +9,12 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="resource-box resource-box-single resource-box-compact resource-box-inline resource-box-inline-single">
|
||||||
|
<label class="resource-label-accent">{{localize "MGNE.Character.CapacityModifier"}}</label>
|
||||||
|
<div class="numeric-pill">
|
||||||
|
<input class="numeric-input" type="number" name="system.carryCapacityModifier" value="{{source.system.carryCapacityModifier}}" min="0" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="resource-box resource-box-single resource-box-compact resource-box-inline resource-box-inline-single">
|
<div class="resource-box resource-box-single resource-box-compact resource-box-inline resource-box-inline-single">
|
||||||
<label class="resource-label-accent">{{localize "MGNE.Character.Rations"}}</label>
|
<label class="resource-label-accent">{{localize "MGNE.Character.Rations"}}</label>
|
||||||
<div class="numeric-pill">
|
<div class="numeric-pill">
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
<div class="inventory-header">
|
<div class="inventory-header">
|
||||||
<h3>{{localize "MGNE.Common.Description"}}</h3>
|
<h3>{{localize "MGNE.Common.Description"}}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
<fieldset>
|
||||||
|
{{formInput systemFields.capacity value=source.system.capacity name="system.capacity"}}
|
||||||
|
</fieldset>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
{{formInput systemFields.description enriched=(lookup enrichedFields "description") value=system.description name="system.description" toggled=true}}
|
{{formInput systemFields.description enriched=(lookup enrichedFields "description") value=system.description name="system.description" toggled=true}}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|||||||
Reference in New Issue
Block a user