Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d27d580d8c | |||
| 967383f5b3 |
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
|
|||||||
if (this.system.resources.hp.value <= 0) {
|
if (this.system.resources.hp.value <= 0) {
|
||||||
if (!prone) {
|
if (!prone) {
|
||||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||||
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' }
|
{ name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
if (this.system.resources.hp.value < -5 && !dead) {
|
if (this.system.resources.hp.value < -5 && !dead) {
|
||||||
await this.createEmbeddedDocuments("ActiveEffect", [
|
await this.createEmbeddedDocuments("ActiveEffect", [
|
||||||
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' }
|
{ name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
ChatMessage.create({
|
ChatMessage.create({
|
||||||
|
|||||||
+6
-5
@@ -78,7 +78,7 @@ Hooks.once('init', async function () {
|
|||||||
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
|
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
|
||||||
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLItemSheet, { types: ["item"], makeDefault: true });
|
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLItemSheet, { types: ["item"], makeDefault: true });
|
||||||
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLFeatureSheet, { types: ["feature"], makeDefault: true });
|
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLFeatureSheet, { types: ["feature"], makeDefault: true });
|
||||||
|
|
||||||
// Debug: Verify AppV2 sheets are loaded
|
// Debug: Verify AppV2 sheets are loaded
|
||||||
console.log("BoL Item Sheets registered:", {
|
console.log("BoL Item Sheets registered:", {
|
||||||
BoLItemSheet: sheets.BoLItemSheet.name,
|
BoLItemSheet: sheets.BoLItemSheet.name,
|
||||||
@@ -101,11 +101,12 @@ Hooks.once('init', async function () {
|
|||||||
// Register hooks
|
// Register hooks
|
||||||
registerHooks()
|
registerHooks()
|
||||||
|
|
||||||
if (typeof Babele !== 'undefined') {
|
});
|
||||||
Babele.get().setSystemTranslationsDir("compendiums");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
Hooks.once("babele.init", (babele) => {
|
||||||
|
console.log("Initializing Babele translations")
|
||||||
|
babele.setSystemTranslationsDir("compendiums");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+42
-42
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
|
|||||||
BOL.statusEffects = [
|
BOL.statusEffects = [
|
||||||
{
|
{
|
||||||
"id": "dead",
|
"id": "dead",
|
||||||
"label": "EFFECT.StatusDead",
|
"name": "EFFECT.StatusDead",
|
||||||
"icon": "icons/svg/skull.svg"
|
"img": "icons/svg/skull.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "unconscious",
|
"id": "unconscious",
|
||||||
"label": "EFFECT.StatusUnconscious",
|
"name": "EFFECT.StatusUnconscious",
|
||||||
"icon": "icons/svg/unconscious.svg"
|
"img": "icons/svg/unconscious.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "sleep",
|
"id": "sleep",
|
||||||
"label": "EFFECT.StatusAsleep",
|
"name": "EFFECT.StatusAsleep",
|
||||||
"icon": "icons/svg/sleep.svg"
|
"img": "icons/svg/sleep.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "stun",
|
"id": "stun",
|
||||||
"label": "EFFECT.StatusStunned",
|
"name": "EFFECT.StatusStunned",
|
||||||
"icon": "icons/svg/daze.svg"
|
"img": "icons/svg/daze.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "prone",
|
"id": "prone",
|
||||||
"label": "EFFECT.StatusProne",
|
"name": "EFFECT.StatusProne",
|
||||||
"icon": "icons/svg/falling.svg"
|
"img": "icons/svg/falling.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "restrain",
|
"id": "restrain",
|
||||||
"label": "EFFECT.StatusRestrained",
|
"name": "EFFECT.StatusRestrained",
|
||||||
"icon": "icons/svg/net.svg"
|
"img": "icons/svg/net.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "paralysis",
|
"id": "paralysis",
|
||||||
"label": "EFFECT.StatusParalysis",
|
"name": "EFFECT.StatusParalysis",
|
||||||
"icon": "icons/svg/paralysis.svg"
|
"img": "icons/svg/paralysis.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "fly",
|
"id": "fly",
|
||||||
"label": "EFFECT.StatusFlying",
|
"name": "EFFECT.StatusFlying",
|
||||||
"icon": "icons/svg/wing.svg"
|
"img": "icons/svg/wing.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "blind",
|
"id": "blind",
|
||||||
"label": "EFFECT.StatusBlind",
|
"name": "EFFECT.StatusBlind",
|
||||||
"icon": "icons/svg/blind.svg"
|
"img": "icons/svg/blind.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "deaf",
|
"id": "deaf",
|
||||||
"label": "EFFECT.StatusDeaf",
|
"name": "EFFECT.StatusDeaf",
|
||||||
"icon": "icons/svg/deaf.svg"
|
"img": "icons/svg/deaf.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "silence",
|
"id": "silence",
|
||||||
"label": "EFFECT.StatusSilenced",
|
"name": "EFFECT.StatusSilenced",
|
||||||
"icon": "icons/svg/silenced.svg"
|
"img": "icons/svg/silenced.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "fear",
|
"id": "fear",
|
||||||
"label": "EFFECT.StatusFear",
|
"name": "EFFECT.StatusFear",
|
||||||
"icon": "icons/svg/terror.svg"
|
"img": "icons/svg/terror.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "burning",
|
"id": "burning",
|
||||||
"label": "EFFECT.StatusBurning",
|
"name": "EFFECT.StatusBurning",
|
||||||
"icon": "icons/svg/fire.svg"
|
"img": "icons/svg/fire.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "frozen",
|
"id": "frozen",
|
||||||
"label": "EFFECT.StatusFrozen",
|
"name": "EFFECT.StatusFrozen",
|
||||||
"icon": "icons/svg/frozen.svg"
|
"img": "icons/svg/frozen.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "shock",
|
"id": "shock",
|
||||||
"label": "EFFECT.StatusShocked",
|
"name": "EFFECT.StatusShocked",
|
||||||
"icon": "icons/svg/lightning.svg"
|
"img": "icons/svg/lightning.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "disease",
|
"id": "disease",
|
||||||
"label": "EFFECT.StatusDisease",
|
"name": "EFFECT.StatusDisease",
|
||||||
"icon": "icons/svg/biohazard.svg"
|
"img": "icons/svg/biohazard.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "poison",
|
"id": "poison",
|
||||||
"label": "EFFECT.StatusPoison",
|
"name": "EFFECT.StatusPoison",
|
||||||
"icon": "icons/svg/poison.svg"
|
"img": "icons/svg/poison.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "curse",
|
"id": "curse",
|
||||||
"label": "EFFECT.StatusCursed",
|
"name": "EFFECT.StatusCursed",
|
||||||
"icon": "icons/svg/sun.svg"
|
"img": "icons/svg/sun.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "invisible",
|
"id": "invisible",
|
||||||
"label": "EFFECT.StatusInvisible",
|
"name": "EFFECT.StatusInvisible",
|
||||||
"icon": "icons/svg/invisible.svg"
|
"img": "icons/svg/invisible.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "target",
|
"id": "target",
|
||||||
"label": "EFFECT.StatusTarget",
|
"name": "EFFECT.StatusTarget",
|
||||||
"icon": "icons/svg/target.svg"
|
"img": "icons/svg/target.svg"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "eye",
|
"id": "eye",
|
||||||
"label": "EFFECT.StatusMarked",
|
"name": "EFFECT.StatusMarked",
|
||||||
"icon": "icons/svg/eye.svg"
|
"img": "icons/svg/eye.svg"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-001170
|
MANIFEST-001182
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
|
2026/05/25-23:00:12.612129 7fe4caffd6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
|
2026/05/25-23:00:36.536419 7fe4c9ffb6c0 Level-0 table #1185: started
|
||||||
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
|
2026/05/25-23:00:36.536444 7fe4c9ffb6c0 Level-0 table #1185: 0 bytes OK
|
||||||
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
|
2026/05/25-23:00:36.543456 7fe4c9ffb6c0 Delete type=0 #1183
|
||||||
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
|
2026/05/25-23:00:36.571253 7fe4c9ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 321 : 1
|
||||||
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
|
2026/05/25-23:00:36.571263 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.575045 7fe4c9ffb6c0 Generated table #1186@0: 23 keys, 27230 bytes
|
||||||
|
2026/05/25-23:00:36.575065 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 27230 bytes
|
||||||
|
2026/05/25-23:00:36.581924 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.582006 7fe4c9ffb6c0 Delete type=2 #1137
|
||||||
|
2026/05/25-23:00:36.591655 7fe4c9ffb6c0 Manual compaction at level-0 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 321 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.577548 7f2689bfd6c0 Recovering log #1164
|
2026/05/25-23:00:12.597782 7fe4caffd6c0 Log #1180: 0 ops saved to Table #1181 OK
|
||||||
2026/04/15-15:16:22.587344 7f2689bfd6c0 Delete type=3 #1162
|
2026/05/25-23:00:12.597848 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/aides-de-jeu/001180.log: OK
|
||||||
2026/04/15-15:16:22.587417 7f2689bfd6c0 Delete type=0 #1164
|
2026/05/25-23:00:12.598005 7fe4caffd6c0 Table #1137: 23 entries OK
|
||||||
2026/04/16-18:58:25.396434 7f2688bfb6c0 Level-0 table #1169: started
|
2026/05/25-23:00:12.601125 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/aides-de-jeu; recovered 1 files; 27230 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.396459 7f2688bfb6c0 Level-0 table #1169: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.402613 7f2688bfb6c0 Delete type=0 #1167
|
|
||||||
2026/04/16-18:58:25.408920 7f2688bfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001071
|
MANIFEST-001083
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
|
2026/05/25-23:00:12.578214 7fe4cb7fe6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
|
2026/05/25-23:00:36.530100 7fe4c9ffb6c0 Level-0 table #1086: started
|
||||||
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
|
2026/05/25-23:00:36.530126 7fe4c9ffb6c0 Level-0 table #1086: 0 bytes OK
|
||||||
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
|
2026/05/25-23:00:36.536304 7fe4c9ffb6c0 Delete type=0 #1084
|
||||||
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
2026/05/25-23:00:36.553226 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 42 : 1
|
||||||
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
|
2026/05/25-23:00:36.553236 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.125521 7f4219ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.557165 7fe4c9ffb6c0 Generated table #1087@0: 6 keys, 5424 bytes
|
||||||
|
2026/05/25-23:00:36.557185 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 5424 bytes
|
||||||
|
2026/05/25-23:00:36.565017 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.565064 7fe4c9ffb6c0 Delete type=2 #1022
|
||||||
|
2026/05/25-23:00:36.582164 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!xhEcsi3WHjbt2ro9' @ 42 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.553524 7f2689bfd6c0 Recovering log #1065
|
2026/05/25-23:00:12.561159 7fe4cb7fe6c0 Log #1081: 0 ops saved to Table #1082 OK
|
||||||
2026/04/15-15:16:22.563786 7f2689bfd6c0 Delete type=3 #1063
|
2026/05/25-23:00:12.561275 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/armors/001081.log: OK
|
||||||
2026/04/15-15:16:22.563854 7f2689bfd6c0 Delete type=0 #1065
|
2026/05/25-23:00:12.561353 7fe4cb7fe6c0 Table #1022: 6 entries OK
|
||||||
2026/04/16-18:58:25.384570 7f2688bfb6c0 Level-0 table #1070: started
|
2026/05/25-23:00:12.565343 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/armors; recovered 1 files; 5424 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.384597 7f2688bfb6c0 Level-0 table #1070: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.390459 7f2688bfb6c0 Delete type=0 #1068
|
|
||||||
2026/04/16-18:58:25.408906 7f2688bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-001165
|
MANIFEST-001177
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
|
2026/05/25-23:00:12.425549 7fe4ca7fc6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
|
2026/05/25-23:00:36.388047 7fe4c9ffb6c0 Level-0 table #1180: started
|
||||||
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
|
2026/05/25-23:00:36.388101 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
|
||||||
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
|
2026/05/25-23:00:36.395212 7fe4c9ffb6c0 Delete type=0 #1178
|
||||||
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/05/25-23:00:36.417679 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 533 : 1
|
||||||
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
|
2026/05/25-23:00:36.417686 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.070529 7f4219ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.422045 7fe4c9ffb6c0 Generated table #1181@0: 61 keys, 20970 bytes
|
||||||
|
2026/05/25-23:00:36.422060 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 20970 bytes
|
||||||
|
2026/05/25-23:00:36.429165 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.429431 7fe4c9ffb6c0 Delete type=2 #1116
|
||||||
|
2026/05/25-23:00:36.458787 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zgspy1QKaxdEetEw' @ 533 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+4
-7
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.453383 7f268a3fe6c0 Recovering log #1159
|
2026/05/25-23:00:12.401220 7fe4ca7fc6c0 Log #1175: 0 ops saved to Table #1176 OK
|
||||||
2026/04/15-15:16:22.464015 7f268a3fe6c0 Delete type=3 #1157
|
2026/05/25-23:00:12.401339 7fe4ca7fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boons/001175.log: OK
|
||||||
2026/04/15-15:16:22.464074 7f268a3fe6c0 Delete type=0 #1159
|
2026/05/25-23:00:12.401481 7fe4ca7fc6c0 Table #1116: 61 entries OK
|
||||||
2026/04/16-18:58:25.339542 7f2688bfb6c0 Level-0 table #1164: started
|
2026/05/25-23:00:12.404758 7fe4ca7fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boons; recovered 1 files; 20970 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.339565 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.345394 7f2688bfb6c0 Delete type=0 #1162
|
|
||||||
2026/04/16-18:58:25.358898 7f2688bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001164
|
MANIFEST-001176
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
|
2026/05/25-23:00:12.447017 7fe4caffd6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
|
2026/05/25-23:00:36.410024 7fe4c9ffb6c0 Level-0 table #1179: started
|
||||||
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
|
2026/05/25-23:00:36.410044 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
|
||||||
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
|
2026/05/25-23:00:36.417584 7fe4c9ffb6c0 Delete type=0 #1177
|
||||||
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/05/25-23:00:36.449756 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 64 : 1
|
||||||
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
|
2026/05/25-23:00:36.449760 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.070504 7f4219ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.452819 7fe4c9ffb6c0 Generated table #1180@0: 8 keys, 2453 bytes
|
||||||
|
2026/05/25-23:00:36.452824 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 2453 bytes
|
||||||
|
2026/05/25-23:00:36.458709 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.458735 7fe4c9ffb6c0 Delete type=2 #1115
|
||||||
|
2026/05/25-23:00:36.458914 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!yofwG0YrsL902G77' @ 64 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.466221 7f268abff6c0 Recovering log #1158
|
2026/05/25-23:00:12.429919 7fe4caffd6c0 Log #1174: 0 ops saved to Table #1175 OK
|
||||||
2026/04/15-15:16:22.475960 7f268abff6c0 Delete type=3 #1156
|
2026/05/25-23:00:12.430037 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boonsflawscreatures/001174.log: OK
|
||||||
2026/04/15-15:16:22.476018 7f268abff6c0 Delete type=0 #1158
|
2026/05/25-23:00:12.430106 7fe4caffd6c0 Table #1115: 8 entries OK
|
||||||
2026/04/16-18:58:25.345509 7f2688bfb6c0 Level-0 table #1163: started
|
2026/05/25-23:00:12.434252 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/boonsflawscreatures; recovered 1 files; 2453 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.345540 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.351392 7f2688bfb6c0 Delete type=0 #1161
|
|
||||||
2026/04/16-18:58:25.358907 7f2688bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001164
|
MANIFEST-001176
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
|
2026/05/25-23:00:12.484684 7fe4cbfff6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
|
2026/05/25-23:00:36.403076 7fe4c9ffb6c0 Level-0 table #1179: started
|
||||||
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
|
2026/05/25-23:00:36.403094 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
|
||||||
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
|
2026/05/25-23:00:36.409935 7fe4c9ffb6c0 Delete type=0 #1177
|
||||||
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/05/25-23:00:36.439840 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 215 : 1
|
||||||
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
|
2026/05/25-23:00:36.439845 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.070487 7f4219ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.443478 7fe4c9ffb6c0 Generated table #1180@0: 27 keys, 42639 bytes
|
||||||
|
2026/05/25-23:00:36.443484 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 42639 bytes
|
||||||
|
2026/05/25-23:00:36.449667 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.449695 7fe4c9ffb6c0 Delete type=2 #1115
|
||||||
|
2026/05/25-23:00:36.458796 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zxY3sW0iCJBvwjOS' @ 215 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.491753 7f268abff6c0 Recovering log #1158
|
2026/05/25-23:00:12.469657 7fe4cbfff6c0 Log #1174: 0 ops saved to Table #1175 OK
|
||||||
2026/04/15-15:16:22.502125 7f268abff6c0 Delete type=3 #1156
|
2026/05/25-23:00:12.469724 7fe4cbfff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/careers/001174.log: OK
|
||||||
2026/04/15-15:16:22.502198 7f268abff6c0 Delete type=0 #1158
|
2026/05/25-23:00:12.469831 7fe4cbfff6c0 Table #1115: 27 entries OK
|
||||||
2026/04/16-18:58:25.351494 7f2688bfb6c0 Level-0 table #1163: started
|
2026/05/25-23:00:12.473085 7fe4cbfff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/careers; recovered 1 files; 42639 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.351525 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.358768 7f2688bfb6c0 Delete type=0 #1161
|
|
||||||
2026/04/16-18:58:25.358916 7f2688bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001162
|
MANIFEST-001174
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
|
2026/05/25-23:00:12.737191 7fe4caffd6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
|
2026/05/25-23:00:36.664472 7fe4c9ffb6c0 Level-0 table #1177: started
|
||||||
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
|
2026/05/25-23:00:36.664490 7fe4c9ffb6c0 Level-0 table #1177: 0 bytes OK
|
||||||
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
|
2026/05/25-23:00:36.670481 7fe4c9ffb6c0 Delete type=0 #1175
|
||||||
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
|
2026/05/25-23:00:36.687068 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 24 : 1
|
||||||
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
|
2026/05/25-23:00:36.687075 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.180793 7f4219ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.690125 7fe4c9ffb6c0 Generated table #1178@0: 4 keys, 990 bytes
|
||||||
|
2026/05/25-23:00:36.690136 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 990 bytes
|
||||||
|
2026/05/25-23:00:36.697155 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.697213 7fe4c9ffb6c0 Delete type=2 #1113
|
||||||
|
2026/05/25-23:00:36.703345 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!zwSNMO9HpiqUCMt8' @ 24 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.662031 7f268abff6c0 Recovering log #1156
|
2026/05/25-23:00:12.721390 7fe4caffd6c0 Log #1172: 0 ops saved to Table #1173 OK
|
||||||
2026/04/15-15:16:22.672181 7f268abff6c0 Delete type=3 #1154
|
2026/05/25-23:00:12.721495 7fe4caffd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/effets-exemples/001172.log: OK
|
||||||
2026/04/15-15:16:22.672239 7f268abff6c0 Delete type=0 #1156
|
2026/05/25-23:00:12.721563 7fe4caffd6c0 Table #1113: 4 entries OK
|
||||||
2026/04/16-18:58:25.414877 7f2688bfb6c0 Level-0 table #1161: started
|
2026/05/25-23:00:12.725085 7fe4caffd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/effets-exemples; recovered 1 files; 990 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.414902 7f2688bfb6c0 Level-0 table #1161: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.420767 7f2688bfb6c0 Delete type=0 #1159
|
|
||||||
2026/04/16-18:58:25.434013 7f2688bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001165
|
MANIFEST-001177
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
|
2026/05/25-23:00:12.540722 7fe4cbfff6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
|
2026/05/25-23:00:36.471926 7fe4c9ffb6c0 Level-0 table #1180: started
|
||||||
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
|
2026/05/25-23:00:36.471937 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
|
||||||
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
|
2026/05/25-23:00:36.477925 7fe4c9ffb6c0 Delete type=0 #1178
|
||||||
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/05/25-23:00:36.503503 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 499 : 1
|
||||||
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
|
2026/05/25-23:00:36.503506 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.096960 7f4219ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.506759 7fe4c9ffb6c0 Generated table #1181@0: 43 keys, 9886 bytes
|
||||||
|
2026/05/25-23:00:36.506764 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 9886 bytes
|
||||||
|
2026/05/25-23:00:36.513480 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.513514 7fe4c9ffb6c0 Delete type=2 #1116
|
||||||
|
2026/05/25-23:00:36.523452 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!yE8UH6YAgNGjKDEu' @ 499 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.529214 7f2689bfd6c0 Recovering log #1159
|
2026/05/25-23:00:12.526059 7fe4cbfff6c0 Log #1175: 0 ops saved to Table #1176 OK
|
||||||
2026/04/15-15:16:22.539425 7f2689bfd6c0 Delete type=3 #1157
|
2026/05/25-23:00:12.526152 7fe4cbfff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/equipment/001175.log: OK
|
||||||
2026/04/15-15:16:22.539500 7f2689bfd6c0 Delete type=0 #1159
|
2026/05/25-23:00:12.526242 7fe4cbfff6c0 Table #1116: 43 entries OK
|
||||||
2026/04/16-18:58:25.365459 7f2688bfb6c0 Level-0 table #1164: started
|
2026/05/25-23:00:12.529350 7fe4cbfff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/equipment; recovered 1 files; 9886 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.365488 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.371259 7f2688bfb6c0 Delete type=0 #1162
|
|
||||||
2026/04/16-18:58:25.384444 7f2688bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001164
|
MANIFEST-001176
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
|
2026/05/25-23:00:12.667051 7fe4cb7fe6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
|
2026/05/25-23:00:36.591667 7fe4c9ffb6c0 Level-0 table #1179: started
|
||||||
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
|
2026/05/25-23:00:36.591691 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
|
||||||
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
|
2026/05/25-23:00:36.598377 7fe4c9ffb6c0 Delete type=0 #1177
|
||||||
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/05/25-23:00:36.611349 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at '!items!vGydqADwTsHZ9B3j' @ 189 : 1
|
||||||
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
|
2026/05/25-23:00:36.611355 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.152803 7f4219ffb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.615369 7fe4c9ffb6c0 Generated table #1180@0: 8 keys, 3773 bytes
|
||||||
|
2026/05/25-23:00:36.615379 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 3773 bytes
|
||||||
|
2026/05/25-23:00:36.621333 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.621380 7fe4c9ffb6c0 Delete type=2 #1115
|
||||||
|
2026/05/25-23:00:36.648726 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!vGydqADwTsHZ9B3j' @ 189 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.612700 7f268abff6c0 Recovering log #1158
|
2026/05/25-23:00:12.653101 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
|
||||||
2026/04/15-15:16:22.623314 7f268abff6c0 Delete type=3 #1156
|
2026/05/25-23:00:12.653154 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptions/001174.log: OK
|
||||||
2026/04/15-15:16:22.623363 7f268abff6c0 Delete type=0 #1158
|
2026/05/25-23:00:12.653192 7fe4cb7fe6c0 Table #1115: 8 entries OK
|
||||||
2026/04/16-18:58:25.402687 7f2688bfb6c0 Level-0 table #1163: started
|
2026/05/25-23:00:12.656127 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptions; recovered 1 files; 3773 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.402711 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.408855 7f2688bfb6c0 Delete type=0 #1161
|
|
||||||
2026/04/16-18:58:25.408963 7f2688bfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000647
|
MANIFEST-000659
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
|
2026/05/25-23:00:12.682843 7fe4cb7fe6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
|
2026/05/25-23:00:36.604632 7fe4c9ffb6c0 Level-0 table #662: started
|
||||||
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
|
2026/05/25-23:00:36.604650 7fe4c9ffb6c0 Level-0 table #662: 0 bytes OK
|
||||||
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
|
2026/05/25-23:00:36.611270 7fe4c9ffb6c0 Delete type=0 #660
|
||||||
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
|
2026/05/25-23:00:36.638182 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at '!items!wYEpnhbyYaMkaNdL' @ 150 : 1
|
||||||
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
|
2026/05/25-23:00:36.638188 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.152761 7f4219ffb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.641715 7fe4c9ffb6c0 Generated table #663@0: 22 keys, 11387 bytes
|
||||||
|
2026/05/25-23:00:36.641727 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 11387 bytes
|
||||||
|
2026/05/25-23:00:36.648601 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.648646 7fe4c9ffb6c0 Delete type=2 #598
|
||||||
|
2026/05/25-23:00:36.658117 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!wYEpnhbyYaMkaNdL' @ 150 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.625600 7f26893fc6c0 Recovering log #641
|
2026/05/25-23:00:12.669439 7fe4cb7fe6c0 Log #657: 0 ops saved to Table #658 OK
|
||||||
2026/04/15-15:16:22.635406 7f26893fc6c0 Delete type=3 #639
|
2026/05/25-23:00:12.669482 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptionsfanmade/000657.log: OK
|
||||||
2026/04/15-15:16:22.635464 7f26893fc6c0 Delete type=0 #641
|
2026/05/25-23:00:12.669524 7fe4cb7fe6c0 Table #598: 22 entries OK
|
||||||
2026/04/16-18:58:25.483026 7f2688bfb6c0 Level-0 table #646: started
|
2026/05/25-23:00:12.672417 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/fightoptionsfanmade; recovered 1 files; 11387 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.483062 7f2688bfb6c0 Level-0 table #646: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.489090 7f2688bfb6c0 Delete type=0 #644
|
|
||||||
2026/04/16-18:58:25.495672 7f2688bfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-001165
|
MANIFEST-001177
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
|
2026/05/25-23:00:12.465812 7fe4ca7fc6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
|
2026/05/25-23:00:36.395308 7fe4c9ffb6c0 Level-0 table #1180: started
|
||||||
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
|
2026/05/25-23:00:36.395326 7fe4c9ffb6c0 Level-0 table #1180: 0 bytes OK
|
||||||
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
|
2026/05/25-23:00:36.402987 7fe4c9ffb6c0 Delete type=0 #1178
|
||||||
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/05/25-23:00:36.429555 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 389 : 1
|
||||||
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
|
2026/05/25-23:00:36.429562 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.070517 7f4219ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.433153 7fe4c9ffb6c0 Generated table #1181@0: 44 keys, 16594 bytes
|
||||||
|
2026/05/25-23:00:36.433159 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 16594 bytes
|
||||||
|
2026/05/25-23:00:36.439742 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.439771 7fe4c9ffb6c0 Delete type=2 #1116
|
||||||
|
2026/05/25-23:00:36.458792 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!znd0K3b7HzYpdehs' @ 389 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+4
-7
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.478415 7f2689bfd6c0 Recovering log #1159
|
2026/05/25-23:00:12.450612 7fe4ca7fc6c0 Log #1175: 0 ops saved to Table #1176 OK
|
||||||
2026/04/15-15:16:22.488840 7f2689bfd6c0 Delete type=3 #1157
|
2026/05/25-23:00:12.450694 7fe4ca7fc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/flaws/001175.log: OK
|
||||||
2026/04/15-15:16:22.488880 7f2689bfd6c0 Delete type=0 #1159
|
2026/05/25-23:00:12.450776 7fe4ca7fc6c0 Table #1116: 44 entries OK
|
||||||
2026/04/16-18:58:25.332241 7f2688bfb6c0 Level-0 table #1164: started
|
2026/05/25-23:00:12.453884 7fe4ca7fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/flaws; recovered 1 files; 16594 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.332319 7f2688bfb6c0 Level-0 table #1164: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.339468 7f2688bfb6c0 Delete type=0 #1162
|
|
||||||
2026/04/16-18:58:25.358886 7f2688bfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001164
|
MANIFEST-001176
|
||||||
|
|||||||
+11
-7
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
|
2026/05/25-23:00:12.629825 7fe4cb7fe6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
|
2026/05/25-23:00:36.565124 7fe4c9ffb6c0 Level-0 table #1179: started
|
||||||
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
|
2026/05/25-23:00:36.565137 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
|
||||||
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
|
2026/05/25-23:00:36.571137 7fe4c9ffb6c0 Delete type=0 #1177
|
||||||
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/05/25-23:00:36.582175 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at '!items!vaAQiuAHdyQrQiUX' @ 149 : 1
|
||||||
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
|
2026/05/25-23:00:36.582181 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.125582 7f4219ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.585512 7fe4c9ffb6c0 Generated table #1180@0: 18 keys, 7450 bytes
|
||||||
|
2026/05/25-23:00:36.585530 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 7450 bytes
|
||||||
|
2026/05/25-23:00:36.591453 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.591531 7fe4c9ffb6c0 Delete type=2 #1115
|
||||||
|
2026/05/25-23:00:36.604624 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!vaAQiuAHdyQrQiUX' @ 149 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.589759 7f268abff6c0 Recovering log #1158
|
2026/05/25-23:00:12.615545 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
|
||||||
2026/04/15-15:16:22.599571 7f268abff6c0 Delete type=3 #1156
|
2026/05/25-23:00:12.615617 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/languages/001174.log: OK
|
||||||
2026/04/15-15:16:22.599636 7f268abff6c0 Delete type=0 #1158
|
2026/05/25-23:00:12.615697 7fe4cb7fe6c0 Table #1115: 18 entries OK
|
||||||
2026/04/16-18:58:25.428017 7f2688bfb6c0 Level-0 table #1163: started
|
2026/05/25-23:00:12.618760 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/languages; recovered 1 files; 7450 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.428045 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.433941 7f2688bfb6c0 Delete type=0 #1161
|
|
||||||
2026/04/16-18:58:25.434032 7f2688bfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001164
|
MANIFEST-001176
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
2026/04/18-12:41:58.726985 7f421b7fe6c0 Recovering log #1162
|
2026/05/25-23:00:12.718517 7fe4cb7fe6c0 Delete type=3 #1
|
||||||
2026/04/18-12:41:58.738061 7f421b7fe6c0 Delete type=3 #1160
|
2026/05/25-23:00:36.658125 7fe4c9ffb6c0 Level-0 table #1179: started
|
||||||
2026/04/18-12:41:58.738230 7f421b7fe6c0 Delete type=0 #1162
|
2026/05/25-23:00:36.658144 7fe4c9ffb6c0 Level-0 table #1179: 0 bytes OK
|
||||||
2026/04/18-12:51:29.152892 7f4219ffb6c0 Level-0 table #1167: started
|
2026/05/25-23:00:36.664404 7fe4c9ffb6c0 Delete type=0 #1177
|
||||||
2026/04/18-12:51:29.152928 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/05/25-23:00:36.677369 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at '!items!xVWrSPiX0Nwccsn6' @ 336 : 1
|
||||||
2026/04/18-12:51:29.159552 7f4219ffb6c0 Delete type=0 #1165
|
2026/05/25-23:00:36.677376 7fe4c9ffb6c0 Compacting 1@0 + 0@1 files
|
||||||
2026/04/18-12:51:29.180766 7f4219ffb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
2026/05/25-23:00:36.681106 7fe4c9ffb6c0 Generated table #1180@0: 42 keys, 14599 bytes
|
||||||
|
2026/05/25-23:00:36.681116 7fe4c9ffb6c0 Compacted 1@0 + 0@1 files => 14599 bytes
|
||||||
|
2026/05/25-23:00:36.686895 7fe4c9ffb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||||
|
2026/05/25-23:00:36.686963 7fe4c9ffb6c0 Delete type=2 #1115
|
||||||
|
2026/05/25-23:00:36.703337 7fe4c9ffb6c0 Manual compaction at level-0 from '!items!xVWrSPiX0Nwccsn6' @ 336 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
2026/04/15-15:16:22.649357 7f26893fc6c0 Recovering log #1158
|
2026/05/25-23:00:12.703228 7fe4cb7fe6c0 Log #1174: 0 ops saved to Table #1175 OK
|
||||||
2026/04/15-15:16:22.659778 7f26893fc6c0 Delete type=3 #1156
|
2026/05/25-23:00:12.703315 7fe4cb7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/objets-alchimie/001174.log: OK
|
||||||
2026/04/15-15:16:22.659818 7f26893fc6c0 Delete type=0 #1158
|
2026/05/25-23:00:12.703397 7fe4cb7fe6c0 Table #1115: 42 entries OK
|
||||||
2026/04/16-18:58:25.420831 7f2688bfb6c0 Level-0 table #1163: started
|
2026/05/25-23:00:12.707340 7fe4cb7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/bol/packs/objets-alchimie; recovered 1 files; 14599 bytes. Some data may have been lost. ****
|
||||||
2026/04/16-18:58:25.420851 7f2688bfb6c0 Level-0 table #1163: 0 bytes OK
|
|
||||||
2026/04/16-18:58:25.427928 7f2688bfb6c0 Delete type=0 #1161
|
|
||||||
2026/04/16-18:58:25.434019 7f2688bfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
|
|
||||||
|
|||||||
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