Fix spells

This commit is contained in:
LeRatierBretonnien 2024-09-12 22:43:09 +02:00
parent 133f7aa428
commit 819548567b
99 changed files with 338 additions and 326 deletions

View File

@ -542,6 +542,7 @@
"BOL.chat.criticallegendaryinfo": "This is a Legendary succes ! Choisissez vos options et effets !",
"BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success",
"BOL.chat.nodamage": "Do not apply damages",
"BOL.chat.armorRoll": "Armor roll",
"BOL.dialog.soeasy": "So easy (+4)",
"BOL.dialog.veryeasy": "Very easy (+2)",

View File

@ -533,6 +533,7 @@
"BOL.chat.criticalup": "Transforma en Legendario: si gastas 1 Punto Héroe/Villano transformas el éxito Asombroso en Legendario. Selecciona 2 opciones de la lista.",
"BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos",
"BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario",
"BOL.chat.armorRoll": "Tirada de Armadura",
"BOL.dialog.soeasy": "Demasiado fácil (+4)",
"BOL.dialog.veryeasy": "Muy fácil (+2)",

View File

@ -620,6 +620,7 @@
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
"BOL.chat.armorRoll": "Jet d'armure",
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",

View File

@ -27,7 +27,7 @@ export class BoLActor extends Actor {
}
weapon.system.properties.attackModifiers = 1
weapon.system.properties.damage = "1d6M"
data.items = [ weapon ]
data.items = [weapon]
data.img = "systems/bol/ui/icons/icon-horde-token.webp"
data.prototypeToken = { texture: "systems/bol/ui/icons/icon-horde-token.webp" }
@ -79,11 +79,13 @@ export class BoLActor extends Actor {
// Configure prototype token settings
const prototypeToken = {};
if (this.type === "character") Object.assign(prototypeToken, {
if (this.type === "character") {
Object.assign(prototypeToken, {
sight: { enabled: true }, actorLink: true, disposition: CONST.TOKEN_DISPOSITIONS.FRIENDLY
});
this.updateSource({ prototypeToken });
}
}
/* -------------------------------------------- */
isHeroAdversary() {
@ -948,7 +950,7 @@ export class BoLActor extends Actor {
this.checkNumeric(data.system.resources)
}
// Apply changes in Horde size to Token width/height
if (this.type == "horde" ) {
if (this.type == "horde") {
if (data?.system?.hordesize) { // If horde size is changed}
let newHP = data.system.hordesize * this.system.hordebasehp
if (newHP != this.system.resources.hp.value) {
@ -970,7 +972,7 @@ export class BoLActor extends Actor {
if (data?.system?.hordebasehp) {
let newHP = this.system.hordesize * data.system.hordebasehp
if (newHP != this.system.resources.hp.value) {
data.system.resources = { hp: { value : newHP, max: newHP} }
data.system.resources = { hp: { value: newHP, max: newHP } }
}
}
}
@ -1084,12 +1086,13 @@ export class BoLActor extends Actor {
}
/* -------------------------------------------- */
rollProtection(itemId) {
async rollProtection(itemId) {
let armor = foundry.utils.duplicate(this.items.get(itemId))
if (armor) {
let armorFormula = "max(" + armor.system.properties.soak.formula + ", 0)"
let rollArmor = new Roll(armorFormula)
rollArmor.roll({ async: false }).toMessage()
await rollArmor.roll()
rollArmor.toMessage()
}
}

View File

@ -568,6 +568,7 @@ export class BoLRoll {
icon: '<i class="fas fa-check"></i>',
label: game.i18n.localize("BOL.ui.submit"),
callback: (html) => {
console.log("Submit Roll!!!!");
if (rollData.mode == 'spell' && rollData.ppCurrent < rollData.ppCost) { // Check PP available
ui.notifications.warn("Pas assez de Points de Pouvoir !")
return

View File

@ -474,10 +474,14 @@ export class BoLUtility {
let armorFormula = defender.getArmorFormula()
rollData.rollArmor = new Roll(armorFormula)
await rollData.rollArmor.roll()
let msg = await rollData.rollArmor.toMessage({ flavor: "BOL.chat.armorRoll : " + armorFormula });
if ( game.dice3d) { // wait animation end when DsN is there
await game.dice3d.waitFor3DAnimationByMessageID(msg.id);
}
rollData.armorProtect = (rollData.rollArmor.total < 0) ? 0 : rollData.rollArmor.total
rollData.finalDamage = rollData.damageTotal - rollData.armorProtect
rollData.finalDamage = (rollData.finalDamage < 0) ? 0 : rollData.finalDamage
defender.sufferDamage(rollData.finalDamage)
await defender.sufferDamage(rollData.finalDamage)
console.log("Armor roll -> result ", rollData)
}
if (defenseMode == 'damage-without-armor') {
@ -493,13 +497,13 @@ export class BoLUtility {
await rollData.rollHero.roll()
rollData.finalDamage = rollData.damageTotal - rollData.rollHero.total - rollData.armorProtect
rollData.finalDamage = (rollData.finalDamage < 0) ? 0 : rollData.finalDamage
defender.sufferDamage(rollData.finalDamage)
await defender.sufferDamage(rollData.finalDamage)
defender.subHeroPoints(1)
}
if (defenseMode == 'hero-in-extremis') {
rollData.finalDamage = 0;
rollData.weaponHero = defender.weapons.find(item => item._id == weaponId);
defender.deleteEmbeddedDocuments("Item", [weaponId]);
await defender.deleteEmbeddedDocuments("Item", [weaponId]);
}
let defenderUser

View File

@ -10,6 +10,7 @@ System.debugMode = true;
export const BOL = {};
BOL.damageValues = {
"0": "0",
"1": "1",
"2": "2",
"3": "3",

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.538151 7f80f20006c0 Recovering log #373
2024/09/05-08:22:41.600422 7f80f20006c0 Delete type=3 #371
2024/09/05-08:22:41.600521 7f80f20006c0 Delete type=0 #373
2024/09/05-08:33:29.426232 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.426300 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.452722 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.488467 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.488527 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.970077 7f25eea006c0 Recovering log #405
2024/09/12-22:38:53.982296 7f25eea006c0 Delete type=3 #403
2024/09/12-22:38:53.982396 7f25eea006c0 Delete type=0 #405
2024/09/12-22:42:42.719126 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.719171 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.725570 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.725738 7f25eda006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.725784 7f25eda006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.861488 7f80f3e006c0 Recovering log #369
2024/09/05-08:21:46.915029 7f80f3e006c0 Delete type=3 #367
2024/09/05-08:21:46.915121 7f80f3e006c0 Delete type=0 #369
2024/09/05-08:22:27.102597 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:27.102637 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.139446 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.173923 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.173983 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.427852 7f25eea006c0 Recovering log #401
2024/09/12-09:45:32.437849 7f25eea006c0 Delete type=3 #399
2024/09/12-09:45:32.437908 7f25eea006c0 Delete type=0 #401
2024/09/12-09:50:36.103159 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.103188 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.110495 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.110872 7f25eda006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.110976 7f25eda006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000281
MANIFEST-000313

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.398393 7f80f3e006c0 Recovering log #279
2024/09/05-08:22:41.466662 7f80f3e006c0 Delete type=3 #277
2024/09/05-08:22:41.466801 7f80f3e006c0 Delete type=0 #279
2024/09/05-08:33:29.343775 7f80f10006c0 Level-0 table #284: started
2024/09/05-08:33:29.343813 7f80f10006c0 Level-0 table #284: 0 bytes OK
2024/09/05-08:33:29.385824 7f80f10006c0 Delete type=0 #282
2024/09/05-08:33:29.488427 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.488496 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.934728 7f25f4c006c0 Recovering log #311
2024/09/12-22:38:53.947433 7f25f4c006c0 Delete type=3 #309
2024/09/12-22:38:53.947544 7f25f4c006c0 Delete type=0 #311
2024/09/12-22:42:42.699365 7f25eda006c0 Level-0 table #316: started
2024/09/12-22:42:42.699403 7f25eda006c0 Level-0 table #316: 0 bytes OK
2024/09/12-22:42:42.705522 7f25eda006c0 Delete type=0 #314
2024/09/12-22:42:42.725703 7f25eda006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.725745 7f25eda006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.755050 7f80f20006c0 Recovering log #275
2024/09/05-08:21:46.808280 7f80f20006c0 Delete type=3 #273
2024/09/05-08:21:46.808413 7f80f20006c0 Delete type=0 #275
2024/09/05-08:22:27.041438 7f80f10006c0 Level-0 table #280: started
2024/09/05-08:22:27.041476 7f80f10006c0 Level-0 table #280: 0 bytes OK
2024/09/05-08:22:27.068145 7f80f10006c0 Delete type=0 #278
2024/09/05-08:22:27.173875 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.173963 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.401300 7f25efe006c0 Recovering log #307
2024/09/12-09:45:32.411529 7f25efe006c0 Delete type=3 #305
2024/09/12-09:45:32.411608 7f25efe006c0 Delete type=0 #307
2024/09/12-09:50:36.082865 7f25eda006c0 Level-0 table #312: started
2024/09/12-09:50:36.082893 7f25eda006c0 Level-0 table #312: 0 bytes OK
2024/09/12-09:50:36.090233 7f25eda006c0 Delete type=0 #310
2024/09/12-09:50:36.110780 7f25eda006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.110897 7f25eda006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:40.894494 7f80f34006c0 Recovering log #373
2024/09/05-08:22:40.945071 7f80f34006c0 Delete type=3 #371
2024/09/05-08:22:40.945157 7f80f34006c0 Delete type=0 #373
2024/09/05-08:33:29.044603 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.044665 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.077608 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.188641 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.188725 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.788249 7f25f4c006c0 Recovering log #405
2024/09/12-22:38:53.800311 7f25f4c006c0 Delete type=3 #403
2024/09/12-22:38:53.800582 7f25f4c006c0 Delete type=0 #405
2024/09/12-22:42:42.640434 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.640516 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.647688 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.668731 7f25eda006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.668779 7f25eda006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.247658 7f80f20006c0 Recovering log #369
2024/09/05-08:21:46.345273 7f80f20006c0 Delete type=3 #367
2024/09/05-08:21:46.345365 7f80f20006c0 Delete type=0 #369
2024/09/05-08:22:26.783613 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.783652 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:26.820926 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:26.890117 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/05-08:22:26.890214 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.295259 7f25efe006c0 Recovering log #401
2024/09/12-09:45:32.306146 7f25efe006c0 Delete type=3 #399
2024/09/12-09:45:32.306221 7f25efe006c0 Delete type=0 #401
2024/09/12-09:50:36.045097 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.045124 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.051371 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.057645 7f25eda006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.057725 7f25eda006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:40.948817 7f80f3e006c0 Recovering log #373
2024/09/05-08:22:41.011059 7f80f3e006c0 Delete type=3 #371
2024/09/05-08:22:41.011181 7f80f3e006c0 Delete type=0 #373
2024/09/05-08:33:29.077896 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.078081 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.120426 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.188668 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.188741 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.805528 7f25ef4006c0 Recovering log #405
2024/09/12-22:38:53.816302 7f25ef4006c0 Delete type=3 #403
2024/09/12-22:38:53.816406 7f25ef4006c0 Delete type=0 #405
2024/09/12-22:42:42.654478 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.654519 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.660807 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.668759 7f25eda006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.668796 7f25eda006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.349301 7f80f2a006c0 Recovering log #369
2024/09/05-08:21:46.398345 7f80f2a006c0 Delete type=3 #367
2024/09/05-08:21:46.398468 7f80f2a006c0 Delete type=0 #369
2024/09/05-08:22:26.754053 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.754147 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:26.783456 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:26.890082 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/05-08:22:26.890188 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.310129 7f25f4c006c0 Recovering log #401
2024/09/12-09:45:32.320731 7f25f4c006c0 Delete type=3 #399
2024/09/12-09:45:32.320830 7f25f4c006c0 Delete type=0 #401
2024/09/12-09:50:36.033550 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.033588 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.039266 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.057599 7f25eda006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.057695 7f25eda006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.066316 7f80f2a006c0 Recovering log #373
2024/09/05-08:22:41.115337 7f80f2a006c0 Delete type=3 #371
2024/09/05-08:22:41.115462 7f80f2a006c0 Delete type=0 #373
2024/09/05-08:33:29.155126 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.155181 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.188218 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.188710 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.188774 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.840310 7f25efe006c0 Recovering log #405
2024/09/12-22:38:53.852677 7f25efe006c0 Delete type=3 #403
2024/09/12-22:38:53.852769 7f25efe006c0 Delete type=0 #405
2024/09/12-22:42:42.660981 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.661021 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.668582 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.668771 7f25eda006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.668804 7f25eda006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.454932 7f80f34006c0 Recovering log #369
2024/09/05-08:21:46.506144 7f80f34006c0 Delete type=3 #367
2024/09/05-08:21:46.506300 7f80f34006c0 Delete type=0 #369
2024/09/05-08:22:26.964849 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.964921 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.001894 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.041259 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.041316 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.336593 7f25ef4006c0 Recovering log #401
2024/09/12-09:45:32.347205 7f25ef4006c0 Delete type=3 #399
2024/09/12-09:45:32.347263 7f25ef4006c0 Delete type=0 #401
2024/09/12-09:50:36.039384 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.039412 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.044990 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.057626 7f25eda006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.057710 7f25eda006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000373
MANIFEST-000405

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.990829 7f80f2a006c0 Recovering log #371
2024/09/05-08:22:42.046685 7f80f2a006c0 Delete type=3 #369
2024/09/05-08:22:42.046818 7f80f2a006c0 Delete type=0 #371
2024/09/05-08:33:29.688780 7f80f10006c0 Level-0 table #376: started
2024/09/05-08:33:29.688842 7f80f10006c0 Level-0 table #376: 0 bytes OK
2024/09/05-08:33:29.727188 7f80f10006c0 Delete type=0 #374
2024/09/05-08:33:29.800782 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.800870 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.083170 7f25ef4006c0 Recovering log #403
2024/09/12-22:38:54.094709 7f25ef4006c0 Delete type=3 #401
2024/09/12-22:38:54.094800 7f25ef4006c0 Delete type=0 #403
2024/09/12-22:42:42.762852 7f25eda006c0 Level-0 table #408: started
2024/09/12-22:42:42.762884 7f25eda006c0 Level-0 table #408: 0 bytes OK
2024/09/12-22:42:42.770096 7f25eda006c0 Delete type=0 #406
2024/09/12-22:42:42.787677 7f25eda006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.787711 7f25eda006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:47.299690 7f80f2a006c0 Recovering log #367
2024/09/05-08:21:47.368552 7f80f2a006c0 Delete type=3 #365
2024/09/05-08:21:47.368685 7f80f2a006c0 Delete type=0 #367
2024/09/05-08:22:27.315399 7f80f10006c0 Level-0 table #372: started
2024/09/05-08:22:27.315459 7f80f10006c0 Level-0 table #372: 0 bytes OK
2024/09/05-08:22:27.352140 7f80f10006c0 Delete type=0 #370
2024/09/05-08:22:27.460577 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.460663 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.520585 7f25f4c006c0 Recovering log #399
2024/09/12-09:45:32.540463 7f25f4c006c0 Delete type=3 #397
2024/09/12-09:45:32.540543 7f25f4c006c0 Delete type=0 #399
2024/09/12-09:50:36.138195 7f25eda006c0 Level-0 table #404: started
2024/09/12-09:50:36.138235 7f25eda006c0 Level-0 table #404: 0 bytes OK
2024/09/12-09:50:36.145251 7f25eda006c0 Delete type=0 #402
2024/09/12-09:50:36.168914 7f25eda006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.168987 7f25eda006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000376
MANIFEST-000408

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.230494 7f80f20006c0 Recovering log #374
2024/09/05-08:22:41.285505 7f80f20006c0 Delete type=3 #372
2024/09/05-08:22:41.285660 7f80f20006c0 Delete type=0 #374
2024/09/05-08:33:29.306334 7f80f10006c0 Level-0 table #379: started
2024/09/05-08:33:29.306388 7f80f10006c0 Level-0 table #379: 0 bytes OK
2024/09/05-08:33:29.343292 7f80f10006c0 Delete type=0 #377
2024/09/05-08:33:29.343624 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.343681 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.895694 7f25eea006c0 Recovering log #406
2024/09/12-22:38:53.908795 7f25eea006c0 Delete type=3 #404
2024/09/12-22:38:53.908936 7f25eea006c0 Delete type=0 #406
2024/09/12-22:42:42.683293 7f25eda006c0 Level-0 table #411: started
2024/09/12-22:42:42.683318 7f25eda006c0 Level-0 table #411: 0 bytes OK
2024/09/12-22:42:42.690892 7f25eda006c0 Delete type=0 #409
2024/09/12-22:42:42.699091 7f25eda006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.699149 7f25eda006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.632889 7f80f3e006c0 Recovering log #370
2024/09/05-08:21:46.684630 7f80f3e006c0 Delete type=3 #368
2024/09/05-08:21:46.684773 7f80f3e006c0 Delete type=0 #370
2024/09/05-08:22:26.890435 7f80f10006c0 Level-0 table #375: started
2024/09/05-08:22:26.890515 7f80f10006c0 Level-0 table #375: 0 bytes OK
2024/09/05-08:22:26.926484 7f80f10006c0 Delete type=0 #373
2024/09/05-08:22:27.041222 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.041275 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.374751 7f25eea006c0 Recovering log #402
2024/09/12-09:45:32.385764 7f25eea006c0 Delete type=3 #400
2024/09/12-09:45:32.385832 7f25eea006c0 Delete type=0 #402
2024/09/12-09:50:36.070382 7f25eda006c0 Level-0 table #407: started
2024/09/12-09:50:36.070408 7f25eda006c0 Level-0 table #407: 0 bytes OK
2024/09/12-09:50:36.076675 7f25eda006c0 Delete type=0 #405
2024/09/12-09:50:36.082735 7f25eda006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.082778 7f25eda006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000374
MANIFEST-000406

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.778653 7f80f20006c0 Recovering log #372
2024/09/05-08:22:41.859124 7f80f20006c0 Delete type=3 #370
2024/09/05-08:22:41.859240 7f80f20006c0 Delete type=0 #372
2024/09/05-08:33:29.534516 7f80f10006c0 Level-0 table #377: started
2024/09/05-08:33:29.534591 7f80f10006c0 Level-0 table #377: 0 bytes OK
2024/09/05-08:33:29.569177 7f80f10006c0 Delete type=0 #375
2024/09/05-08:33:29.649625 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.649698 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.031920 7f25eea006c0 Recovering log #404
2024/09/12-22:38:54.043861 7f25eea006c0 Delete type=3 #402
2024/09/12-22:38:54.043960 7f25eea006c0 Delete type=0 #404
2024/09/12-22:42:42.725865 7f25eda006c0 Level-0 table #409: started
2024/09/12-22:42:42.725943 7f25eda006c0 Level-0 table #409: 0 bytes OK
2024/09/12-22:42:42.732569 7f25eda006c0 Delete type=0 #407
2024/09/12-22:42:42.755541 7f25eda006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.755597 7f25eda006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:47.102766 7f80f3e006c0 Recovering log #368
2024/09/05-08:21:47.163474 7f80f3e006c0 Delete type=3 #366
2024/09/05-08:21:47.163592 7f80f3e006c0 Delete type=0 #368
2024/09/05-08:22:27.245989 7f80f10006c0 Level-0 table #373: started
2024/09/05-08:22:27.246038 7f80f10006c0 Level-0 table #373: 0 bytes OK
2024/09/05-08:22:27.277025 7f80f10006c0 Delete type=0 #371
2024/09/05-08:22:27.315143 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.315245 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.480766 7f25eea006c0 Recovering log #400
2024/09/12-09:45:32.491410 7f25eea006c0 Delete type=3 #398
2024/09/12-09:45:32.491468 7f25eea006c0 Delete type=0 #400
2024/09/12-09:50:36.125141 7f25eda006c0 Level-0 table #405: started
2024/09/12-09:50:36.125172 7f25eda006c0 Level-0 table #405: 0 bytes OK
2024/09/12-09:50:36.131301 7f25eda006c0 Delete type=0 #403
2024/09/12-09:50:36.138040 7f25eda006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.138089 7f25eda006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.014590 7f80f20006c0 Recovering log #373
2024/09/05-08:22:41.061978 7f80f20006c0 Delete type=3 #371
2024/09/05-08:22:41.062084 7f80f20006c0 Delete type=0 #373
2024/09/05-08:33:29.120621 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.120669 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.154798 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.188692 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.188756 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.822337 7f25eea006c0 Recovering log #405
2024/09/12-22:38:53.834024 7f25eea006c0 Delete type=3 #403
2024/09/12-22:38:53.834127 7f25eea006c0 Delete type=0 #405
2024/09/12-22:42:42.647837 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.647866 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.654251 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.668747 7f25eda006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.668788 7f25eda006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.401929 7f80f3e006c0 Recovering log #369
2024/09/05-08:21:46.451450 7f80f3e006c0 Delete type=3 #367
2024/09/05-08:21:46.451550 7f80f3e006c0 Delete type=0 #369
2024/09/05-08:22:26.821212 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.821274 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:26.857912 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:26.890141 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/05-08:22:26.890236 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.323588 7f25eea006c0 Recovering log #401
2024/09/12-09:45:32.333402 7f25eea006c0 Delete type=3 #399
2024/09/12-09:45:32.333463 7f25eea006c0 Delete type=0 #401
2024/09/12-09:50:36.051466 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.051494 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.057426 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.057676 7f25eda006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.057748 7f25eda006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000374
MANIFEST-000406

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.716802 7f80f2a006c0 Recovering log #372
2024/09/05-08:22:41.775130 7f80f2a006c0 Delete type=3 #370
2024/09/05-08:22:41.775222 7f80f2a006c0 Delete type=0 #372
2024/09/05-08:33:29.569351 7f80f10006c0 Level-0 table #377: started
2024/09/05-08:33:29.569388 7f80f10006c0 Level-0 table #377: 0 bytes OK
2024/09/05-08:33:29.611494 7f80f10006c0 Delete type=0 #375
2024/09/05-08:33:29.649644 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.649713 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.016789 7f25ef4006c0 Recovering log #404
2024/09/12-22:38:54.027333 7f25ef4006c0 Delete type=3 #402
2024/09/12-22:38:54.027408 7f25ef4006c0 Delete type=0 #404
2024/09/12-22:42:42.739228 7f25eda006c0 Level-0 table #409: started
2024/09/12-22:42:42.739256 7f25eda006c0 Level-0 table #409: 0 bytes OK
2024/09/12-22:42:42.746973 7f25eda006c0 Delete type=0 #407
2024/09/12-22:42:42.755575 7f25eda006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.755615 7f25eda006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:47.049598 7f80f2a006c0 Recovering log #368
2024/09/05-08:21:47.098859 7f80f2a006c0 Delete type=3 #366
2024/09/05-08:21:47.098979 7f80f2a006c0 Delete type=0 #368
2024/09/05-08:22:27.209421 7f80f10006c0 Level-0 table #373: started
2024/09/05-08:22:27.209473 7f80f10006c0 Level-0 table #373: 0 bytes OK
2024/09/05-08:22:27.245755 7f80f10006c0 Delete type=0 #371
2024/09/05-08:22:27.315121 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.315204 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.468046 7f25f4c006c0 Recovering log #400
2024/09/12-09:45:32.478034 7f25f4c006c0 Delete type=3 #398
2024/09/12-09:45:32.478157 7f25f4c006c0 Delete type=0 #400
2024/09/12-09:50:36.111137 7f25eda006c0 Level-0 table #405: started
2024/09/12-09:50:36.111276 7f25eda006c0 Level-0 table #405: 0 bytes OK
2024/09/12-09:50:36.117475 7f25eda006c0 Delete type=0 #403
2024/09/12-09:50:36.138013 7f25eda006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.138061 7f25eda006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.604324 7f80f34006c0 Recovering log #373
2024/09/05-08:22:41.651481 7f80f34006c0 Delete type=3 #371
2024/09/05-08:22:41.651605 7f80f34006c0 Delete type=0 #373
2024/09/05-08:33:29.452904 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.452942 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.488195 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.488483 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.488542 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.986914 7f25efe006c0 Recovering log #405
2024/09/12-22:38:53.997669 7f25efe006c0 Delete type=3 #403
2024/09/12-22:38:53.997745 7f25efe006c0 Delete type=0 #405
2024/09/12-22:42:42.712377 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.712403 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.718996 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.725727 7f25eda006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.725761 7f25eda006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.918589 7f80f34006c0 Recovering log #369
2024/09/05-08:21:46.976419 7f80f34006c0 Delete type=3 #367
2024/09/05-08:21:46.976526 7f80f34006c0 Delete type=0 #369
2024/09/05-08:22:27.139647 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:27.139696 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.173621 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.173943 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.174022 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.441511 7f25ef4006c0 Recovering log #401
2024/09/12-09:45:32.452437 7f25ef4006c0 Delete type=3 #399
2024/09/12-09:45:32.452508 7f25ef4006c0 Delete type=0 #401
2024/09/12-09:50:36.090453 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.090507 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.096486 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.110815 7f25eda006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.110923 7f25eda006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.934947 7f80f3e006c0 Recovering log #373
2024/09/05-08:22:41.987105 7f80f3e006c0 Delete type=3 #371
2024/09/05-08:22:41.987277 7f80f3e006c0 Delete type=0 #373
2024/09/05-08:33:29.649902 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.649954 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.688488 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.800739 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.800849 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.067867 7f25f4c006c0 Recovering log #405
2024/09/12-22:38:54.078428 7f25f4c006c0 Delete type=3 #403
2024/09/12-22:38:54.078516 7f25f4c006c0 Delete type=0 #405
2024/09/12-22:42:42.755729 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.755770 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.762587 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.787658 7f25eda006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.787703 7f25eda006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:47.226454 7f80f20006c0 Recovering log #369
2024/09/05-08:21:47.295984 7f80f20006c0 Delete type=3 #367
2024/09/05-08:21:47.296101 7f80f20006c0 Delete type=0 #369
2024/09/05-08:22:27.352459 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:27.352536 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.394328 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.460607 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.460680 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.506890 7f25efe006c0 Recovering log #401
2024/09/12-09:45:32.517643 7f25efe006c0 Delete type=3 #399
2024/09/12-09:45:32.517755 7f25efe006c0 Delete type=0 #401
2024/09/12-09:50:36.145414 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.145444 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.151700 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.168943 7f25eda006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.168996 7f25eda006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.119154 7f80f34006c0 Recovering log #373
2024/09/05-08:22:41.174274 7f80f34006c0 Delete type=3 #371
2024/09/05-08:22:41.174461 7f80f34006c0 Delete type=0 #373
2024/09/05-08:33:29.231955 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.232019 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.263630 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.343591 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.343651 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.859097 7f25f4c006c0 Recovering log #405
2024/09/12-22:38:53.871175 7f25f4c006c0 Delete type=3 #403
2024/09/12-22:38:53.871278 7f25f4c006c0 Delete type=0 #405
2024/09/12-22:42:42.675505 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.675535 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.683153 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.699079 7f25eda006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.699140 7f25eda006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.509528 7f80f20006c0 Recovering log #369
2024/09/05-08:21:46.567112 7f80f20006c0 Delete type=3 #367
2024/09/05-08:21:46.567251 7f80f20006c0 Delete type=0 #369
2024/09/05-08:22:26.858203 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.858269 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:26.889790 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:26.890164 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/05-08:22:26.890258 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.350020 7f25efe006c0 Recovering log #401
2024/09/12-09:45:32.360342 7f25efe006c0 Delete type=3 #399
2024/09/12-09:45:32.360412 7f25efe006c0 Delete type=0 #401
2024/09/12-09:50:36.057805 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.057855 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.063551 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.082708 7f25eda006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.082764 7f25eda006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.863576 7f80f34006c0 Recovering log #373
2024/09/05-08:22:41.931115 7f80f34006c0 Delete type=3 #371
2024/09/05-08:22:41.931232 7f80f34006c0 Delete type=0 #373
2024/09/05-08:33:29.611739 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.611795 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.649367 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.649663 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.649731 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.048805 7f25efe006c0 Recovering log #405
2024/09/12-22:38:54.061369 7f25efe006c0 Delete type=3 #403
2024/09/12-22:38:54.061451 7f25efe006c0 Delete type=0 #405
2024/09/12-22:42:42.747130 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.747200 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.755363 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.755588 7f25eda006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.755624 7f25eda006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:47.168422 7f80f34006c0 Recovering log #369
2024/09/05-08:21:47.222264 7f80f34006c0 Delete type=3 #367
2024/09/05-08:21:47.222378 7f80f34006c0 Delete type=0 #369
2024/09/05-08:22:27.277250 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:27.277287 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.314841 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.315165 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.315224 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.493849 7f25ef4006c0 Recovering log #401
2024/09/12-09:45:32.504247 7f25ef4006c0 Delete type=3 #399
2024/09/12-09:45:32.504310 7f25ef4006c0 Delete type=0 #401
2024/09/12-09:50:36.131443 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.131473 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.137868 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.138052 7f25eda006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.138078 7f25eda006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.177588 7f80f3e006c0 Recovering log #373
2024/09/05-08:22:41.226706 7f80f3e006c0 Delete type=3 #371
2024/09/05-08:22:41.226851 7f80f3e006c0 Delete type=0 #373
2024/09/05-08:33:29.188977 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.189024 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.231681 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.343566 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.343638 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.877068 7f25ef4006c0 Recovering log #405
2024/09/12-22:38:53.889041 7f25ef4006c0 Delete type=3 #403
2024/09/12-22:38:53.889133 7f25ef4006c0 Delete type=0 #405
2024/09/12-22:42:42.668899 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.668927 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.675259 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.699064 7f25eda006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.699122 7f25eda006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.570609 7f80f2a006c0 Recovering log #369
2024/09/05-08:21:46.629042 7f80f2a006c0 Delete type=3 #367
2024/09/05-08:21:46.629145 7f80f2a006c0 Delete type=0 #369
2024/09/05-08:22:26.926686 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:26.926780 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:26.964575 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.041245 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.041301 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.362707 7f25f4c006c0 Recovering log #401
2024/09/12-09:45:32.372736 7f25f4c006c0 Delete type=3 #399
2024/09/12-09:45:32.372795 7f25f4c006c0 Delete type=0 #401
2024/09/12-09:50:36.063635 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.063659 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.070277 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.082723 7f25eda006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.082771 7f25eda006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000375
MANIFEST-000407

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.655532 7f80f3e006c0 Recovering log #373
2024/09/05-08:22:41.713047 7f80f3e006c0 Delete type=3 #371
2024/09/05-08:22:41.713223 7f80f3e006c0 Delete type=0 #373
2024/09/05-08:33:29.488660 7f80f10006c0 Level-0 table #378: started
2024/09/05-08:33:29.488714 7f80f10006c0 Level-0 table #378: 0 bytes OK
2024/09/05-08:33:29.534233 7f80f10006c0 Delete type=0 #376
2024/09/05-08:33:29.649599 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.649680 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/12-22:38:54.001590 7f25f4c006c0 Recovering log #405
2024/09/12-22:38:54.012465 7f25f4c006c0 Delete type=3 #403
2024/09/12-22:38:54.012562 7f25f4c006c0 Delete type=0 #405
2024/09/12-22:42:42.732761 7f25eda006c0 Level-0 table #410: started
2024/09/12-22:42:42.732793 7f25eda006c0 Level-0 table #410: 0 bytes OK
2024/09/12-22:42:42.739088 7f25eda006c0 Delete type=0 #408
2024/09/12-22:42:42.755560 7f25eda006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.755605 7f25eda006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.979653 7f80f20006c0 Recovering log #369
2024/09/05-08:21:47.044892 7f80f20006c0 Delete type=3 #367
2024/09/05-08:21:47.045005 7f80f20006c0 Delete type=0 #369
2024/09/05-08:22:27.174181 7f80f10006c0 Level-0 table #374: started
2024/09/05-08:22:27.174287 7f80f10006c0 Level-0 table #374: 0 bytes OK
2024/09/05-08:22:27.209162 7f80f10006c0 Delete type=0 #372
2024/09/05-08:22:27.315095 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.315185 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.455025 7f25efe006c0 Recovering log #401
2024/09/12-09:45:32.465137 7f25efe006c0 Delete type=3 #399
2024/09/12-09:45:32.465234 7f25efe006c0 Delete type=0 #401
2024/09/12-09:50:36.117600 7f25eda006c0 Level-0 table #406: started
2024/09/12-09:50:36.117624 7f25eda006c0 Level-0 table #406: 0 bytes OK
2024/09/12-09:50:36.125001 7f25eda006c0 Delete type=0 #404
2024/09/12-09:50:36.138028 7f25eda006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.138069 7f25eda006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000282
MANIFEST-000314

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.470374 7f80f2a006c0 Recovering log #280
2024/09/05-08:22:41.533238 7f80f2a006c0 Delete type=3 #278
2024/09/05-08:22:41.533373 7f80f2a006c0 Delete type=0 #280
2024/09/05-08:33:29.385994 7f80f10006c0 Level-0 table #285: started
2024/09/05-08:33:29.386037 7f80f10006c0 Level-0 table #285: 0 bytes OK
2024/09/05-08:33:29.425956 7f80f10006c0 Delete type=0 #283
2024/09/05-08:33:29.488445 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.488511 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.952664 7f25ef4006c0 Recovering log #312
2024/09/12-22:38:53.965424 7f25ef4006c0 Delete type=3 #310
2024/09/12-22:38:53.965531 7f25ef4006c0 Delete type=0 #312
2024/09/12-22:42:42.705631 7f25eda006c0 Level-0 table #317: started
2024/09/12-22:42:42.705654 7f25eda006c0 Level-0 table #317: 0 bytes OK
2024/09/12-22:42:42.712257 7f25eda006c0 Delete type=0 #315
2024/09/12-22:42:42.725716 7f25eda006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.725753 7f25eda006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.811697 7f80f2a006c0 Recovering log #276
2024/09/05-08:21:46.857881 7f80f2a006c0 Delete type=3 #274
2024/09/05-08:21:46.857986 7f80f2a006c0 Delete type=0 #276
2024/09/05-08:22:27.068340 7f80f10006c0 Level-0 table #281: started
2024/09/05-08:22:27.068376 7f80f10006c0 Level-0 table #281: 0 bytes OK
2024/09/05-08:22:27.102389 7f80f10006c0 Delete type=0 #279
2024/09/05-08:22:27.173901 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.174003 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.414195 7f25f4c006c0 Recovering log #308
2024/09/12-09:45:32.425503 7f25f4c006c0 Delete type=3 #306
2024/09/12-09:45:32.425564 7f25f4c006c0 Delete type=0 #308
2024/09/12-09:50:36.096596 7f25eda006c0 Level-0 table #313: started
2024/09/12-09:50:36.096624 7f25eda006c0 Level-0 table #313: 0 bytes OK
2024/09/12-09:50:36.103055 7f25eda006c0 Delete type=0 #311
2024/09/12-09:50:36.110843 7f25eda006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.110950 7f25eda006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000286
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2024/09/05-08:22:41.289676 7f80f34006c0 Recovering log #284
2024/09/05-08:22:41.394376 7f80f34006c0 Delete type=3 #282
2024/09/05-08:22:41.394507 7f80f34006c0 Delete type=0 #284
2024/09/05-08:33:29.263862 7f80f10006c0 Level-0 table #289: started
2024/09/05-08:33:29.263914 7f80f10006c0 Level-0 table #289: 0 bytes OK
2024/09/05-08:33:29.306120 7f80f10006c0 Delete type=0 #287
2024/09/05-08:33:29.343610 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/05-08:33:29.343666 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/12-22:38:53.915791 7f25efe006c0 Recovering log #316
2024/09/12-22:38:53.927536 7f25efe006c0 Delete type=3 #314
2024/09/12-22:38:53.927640 7f25efe006c0 Delete type=0 #316
2024/09/12-22:42:42.691031 7f25eda006c0 Level-0 table #321: started
2024/09/12-22:42:42.691057 7f25eda006c0 Level-0 table #321: 0 bytes OK
2024/09/12-22:42:42.698927 7f25eda006c0 Delete type=0 #319
2024/09/12-22:42:42.699132 7f25eda006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/12-22:42:42.699157 7f25eda006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/09/05-08:21:46.688228 7f80f34006c0 Recovering log #280
2024/09/05-08:21:46.751913 7f80f34006c0 Delete type=3 #278
2024/09/05-08:21:46.752005 7f80f34006c0 Delete type=0 #280
2024/09/05-08:22:27.002080 7f80f10006c0 Level-0 table #285: started
2024/09/05-08:22:27.002121 7f80f10006c0 Level-0 table #285: 0 bytes OK
2024/09/05-08:22:27.041003 7f80f10006c0 Delete type=0 #283
2024/09/05-08:22:27.041288 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/05-08:22:27.041328 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/12-09:45:32.388286 7f25ef4006c0 Recovering log #312
2024/09/12-09:45:32.398470 7f25ef4006c0 Delete type=3 #310
2024/09/12-09:45:32.398526 7f25ef4006c0 Delete type=0 #312
2024/09/12-09:50:36.076784 7f25eda006c0 Level-0 table #317: started
2024/09/12-09:50:36.076812 7f25eda006c0 Level-0 table #317: 0 bytes OK
2024/09/12-09:50:36.082595 7f25eda006c0 Delete type=0 #315
2024/09/12-09:50:36.082747 7f25eda006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/09/12-09:50:36.082786 7f25eda006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -14,7 +14,7 @@
],
"url": "https://www.uberwald.me/gitea/public/bol",
"license": "LICENSE.txt",
"version": "12.1.0",
"version": "12.1.1",
"compatibility": {
"minimum": "11",
"verified": "12"
@ -324,7 +324,7 @@
],
"socket": true,
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json",
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.1.0.zip",
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.1.1.zip",
"background": "systems/bol/ui/page_accueil.webp",
"primaryTokenAttribute": "resources.hp",
"secondaryTokenAttribute": "resources.hero",

View File

@ -37,8 +37,8 @@
</div>
<div class="flex1 center cell">
<ul class="no-bullets">
{{#each spell.data.data.properties.mandatoryconditions as | cond idx|}}
{{#if (lt idx @root.spell.data.data.properties.nbmandatoryconditions)}}
{{#each spell.system.properties.mandatoryconditions as | cond idx|}}
{{#if (lt idx @root.spell.system.properties.nbmandatoryconditions)}}
<li><label for="mod">{{cond}}</label></li>
{{/if}}
{{/each}}
@ -52,8 +52,8 @@
</div>
<div class="flex1 center cell">
<select class="flex1" name="optcond" id="optcond" data-type="String" multiple>
{{#each spell.data.data.properties.optionnalconditions as | cond idx|}}
{{#if (lt idx @root.spell.data.data.properties.nboptionnalconditions)}}
{{#each spell.system.properties.optionnalconditions as | cond idx|}}
{{#if (lt idx @root.spell.system.properties.nboptionnalconditions)}}
<option value="{{idx}}">{{cond}}</option>
{{/if}}
{{/each}}