diff --git a/lang/en.json b/lang/en.json index 710858d..f137328 100644 --- a/lang/en.json +++ b/lang/en.json @@ -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)", diff --git a/lang/es.json b/lang/es.json index 60b8289..a2354f9 100644 --- a/lang/es.json +++ b/lang/es.json @@ -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)", diff --git a/lang/fr.json b/lang/fr.json index 3173101..5b599b3 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -620,6 +620,7 @@ "BOL.chat.pcwarningmsg": "ATTENTION Le joueur n'est relié à aucun personnage !", "BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur", "BOL.chat.pcnotlinkedmsg": "ATTENTION 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é)", diff --git a/module/actor/actor.js b/module/actor/actor.js index b042a83..9b2a060 100644 --- a/module/actor/actor.js +++ b/module/actor/actor.js @@ -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,10 +79,12 @@ export class BoLActor extends Actor { // Configure prototype token settings const prototypeToken = {}; - if (this.type === "character") Object.assign(prototypeToken, { - sight: { enabled: true }, actorLink: true, disposition: CONST.TOKEN_DISPOSITIONS.FRIENDLY - }); - this.updateSource({ prototypeToken }); + if (this.type === "character") { + Object.assign(prototypeToken, { + sight: { enabled: true }, actorLink: true, disposition: CONST.TOKEN_DISPOSITIONS.FRIENDLY + }); + this.updateSource({ prototypeToken }); + } } /* -------------------------------------------- */ @@ -948,16 +950,16 @@ 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) { data.system.resources = { hp: { value: newHP, max: newHP } } // Update HP } let tokenSize = this.getTokenSizeFromHordeSize(data?.system?.hordesize) - if (this.isToken && (tokenSize !== this.token.width)) { + if (this.isToken && (tokenSize !== this.token.width)) { this.token.update({ width: tokenSize, height: tokenSize }) - } else { + } else { if (tokenSize && (tokenSize !== this.prototypeToken.width)) { if (!foundry.utils.hasProperty(data, "prototypeToken.width")) { data.prototypeToken ||= {}; @@ -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() } } diff --git a/module/controllers/bol-rolls.js b/module/controllers/bol-rolls.js index d585cea..1f45efb 100644 --- a/module/controllers/bol-rolls.js +++ b/module/controllers/bol-rolls.js @@ -568,6 +568,7 @@ export class BoLRoll { icon: '', 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 diff --git a/module/system/bol-utility.js b/module/system/bol-utility.js index 143b197..029e85c 100644 --- a/module/system/bol-utility.js +++ b/module/system/bol-utility.js @@ -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 diff --git a/module/system/config.js b/module/system/config.js index 8b57779..10a273e 100644 --- a/module/system/config.js +++ b/module/system/config.js @@ -10,6 +10,7 @@ System.debugMode = true; export const BOL = {}; BOL.damageValues = { + "0": "0", "1": "1", "2": "2", "3": "3", diff --git a/packs/aides-de-jeu/000377.log b/packs/aides-de-jeu/000409.log similarity index 100% rename from packs/aides-de-jeu/000377.log rename to packs/aides-de-jeu/000409.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index 741abc7..b76306f 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index e9e63bb..3a31435 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -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) diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index 59affa2..af9bbdb 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -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) diff --git a/packs/aides-de-jeu/MANIFEST-000375 b/packs/aides-de-jeu/MANIFEST-000407 similarity index 84% rename from packs/aides-de-jeu/MANIFEST-000375 rename to packs/aides-de-jeu/MANIFEST-000407 index 7e34b59..6c3d0c8 100644 Binary files a/packs/aides-de-jeu/MANIFEST-000375 and b/packs/aides-de-jeu/MANIFEST-000407 differ diff --git a/packs/armors/000283.log b/packs/armors/000315.log similarity index 100% rename from packs/armors/000283.log rename to packs/armors/000315.log diff --git a/packs/armors/CURRENT b/packs/armors/CURRENT index 852186d..e6b0e26 100644 --- a/packs/armors/CURRENT +++ b/packs/armors/CURRENT @@ -1 +1 @@ -MANIFEST-000281 +MANIFEST-000313 diff --git a/packs/armors/LOG b/packs/armors/LOG index 405f09a..3ec63b7 100644 --- a/packs/armors/LOG +++ b/packs/armors/LOG @@ -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) diff --git a/packs/armors/LOG.old b/packs/armors/LOG.old index 17fe1c0..8a2bd0c 100644 --- a/packs/armors/LOG.old +++ b/packs/armors/LOG.old @@ -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) diff --git a/packs/armors/MANIFEST-000281 b/packs/armors/MANIFEST-000313 similarity index 73% rename from packs/armors/MANIFEST-000281 rename to packs/armors/MANIFEST-000313 index b12d88c..2e8443e 100644 Binary files a/packs/armors/MANIFEST-000281 and b/packs/armors/MANIFEST-000313 differ diff --git a/packs/boons/000377.log b/packs/boons/000409.log similarity index 100% rename from packs/boons/000377.log rename to packs/boons/000409.log diff --git a/packs/boons/CURRENT b/packs/boons/CURRENT index 741abc7..b76306f 100644 --- a/packs/boons/CURRENT +++ b/packs/boons/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/boons/LOG b/packs/boons/LOG index 4b991af..fedec56 100644 --- a/packs/boons/LOG +++ b/packs/boons/LOG @@ -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) diff --git a/packs/boons/LOG.old b/packs/boons/LOG.old index 6f48dcc..707c5ab 100644 --- a/packs/boons/LOG.old +++ b/packs/boons/LOG.old @@ -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) diff --git a/packs/boons/MANIFEST-000375 b/packs/boons/MANIFEST-000407 similarity index 72% rename from packs/boons/MANIFEST-000375 rename to packs/boons/MANIFEST-000407 index d66b28e..eef85d5 100644 Binary files a/packs/boons/MANIFEST-000375 and b/packs/boons/MANIFEST-000407 differ diff --git a/packs/boonsflawscreatures/000377.log b/packs/boonsflawscreatures/000409.log similarity index 100% rename from packs/boonsflawscreatures/000377.log rename to packs/boonsflawscreatures/000409.log diff --git a/packs/boonsflawscreatures/CURRENT b/packs/boonsflawscreatures/CURRENT index 741abc7..b76306f 100644 --- a/packs/boonsflawscreatures/CURRENT +++ b/packs/boonsflawscreatures/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/boonsflawscreatures/LOG b/packs/boonsflawscreatures/LOG index 80afea3..ba8c46a 100644 --- a/packs/boonsflawscreatures/LOG +++ b/packs/boonsflawscreatures/LOG @@ -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) diff --git a/packs/boonsflawscreatures/LOG.old b/packs/boonsflawscreatures/LOG.old index 554b5f6..307f589 100644 --- a/packs/boonsflawscreatures/LOG.old +++ b/packs/boonsflawscreatures/LOG.old @@ -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) diff --git a/packs/boonsflawscreatures/MANIFEST-000375 b/packs/boonsflawscreatures/MANIFEST-000407 similarity index 73% rename from packs/boonsflawscreatures/MANIFEST-000375 rename to packs/boonsflawscreatures/MANIFEST-000407 index 672e867..e14c22f 100644 Binary files a/packs/boonsflawscreatures/MANIFEST-000375 and b/packs/boonsflawscreatures/MANIFEST-000407 differ diff --git a/packs/careers/000377.log b/packs/careers/000409.log similarity index 100% rename from packs/careers/000377.log rename to packs/careers/000409.log diff --git a/packs/careers/CURRENT b/packs/careers/CURRENT index 741abc7..b76306f 100644 --- a/packs/careers/CURRENT +++ b/packs/careers/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/careers/LOG b/packs/careers/LOG index a5a0491..6182184 100644 --- a/packs/careers/LOG +++ b/packs/careers/LOG @@ -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) diff --git a/packs/careers/LOG.old b/packs/careers/LOG.old index 43b5e7e..7348203 100644 --- a/packs/careers/LOG.old +++ b/packs/careers/LOG.old @@ -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) diff --git a/packs/careers/MANIFEST-000375 b/packs/careers/MANIFEST-000407 similarity index 72% rename from packs/careers/MANIFEST-000375 rename to packs/careers/MANIFEST-000407 index 303b164..2abb727 100644 Binary files a/packs/careers/MANIFEST-000375 and b/packs/careers/MANIFEST-000407 differ diff --git a/packs/effets-exemples/000375.log b/packs/effets-exemples/000407.log similarity index 100% rename from packs/effets-exemples/000375.log rename to packs/effets-exemples/000407.log diff --git a/packs/effets-exemples/CURRENT b/packs/effets-exemples/CURRENT index 1ca0e83..48671f2 100644 --- a/packs/effets-exemples/CURRENT +++ b/packs/effets-exemples/CURRENT @@ -1 +1 @@ -MANIFEST-000373 +MANIFEST-000405 diff --git a/packs/effets-exemples/LOG b/packs/effets-exemples/LOG index 3851ae4..258a156 100644 --- a/packs/effets-exemples/LOG +++ b/packs/effets-exemples/LOG @@ -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) diff --git a/packs/effets-exemples/LOG.old b/packs/effets-exemples/LOG.old index 30009fe..9622e04 100644 --- a/packs/effets-exemples/LOG.old +++ b/packs/effets-exemples/LOG.old @@ -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) diff --git a/packs/effets-exemples/MANIFEST-000373 b/packs/effets-exemples/MANIFEST-000405 similarity index 73% rename from packs/effets-exemples/MANIFEST-000373 rename to packs/effets-exemples/MANIFEST-000405 index d2475b5..1ebf3a0 100644 Binary files a/packs/effets-exemples/MANIFEST-000373 and b/packs/effets-exemples/MANIFEST-000405 differ diff --git a/packs/equipment/000378.log b/packs/equipment/000410.log similarity index 100% rename from packs/equipment/000378.log rename to packs/equipment/000410.log diff --git a/packs/equipment/CURRENT b/packs/equipment/CURRENT index 561f1eb..9040fb6 100644 --- a/packs/equipment/CURRENT +++ b/packs/equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000376 +MANIFEST-000408 diff --git a/packs/equipment/LOG b/packs/equipment/LOG index a755c29..5ba6548 100644 --- a/packs/equipment/LOG +++ b/packs/equipment/LOG @@ -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) diff --git a/packs/equipment/LOG.old b/packs/equipment/LOG.old index b962e96..8601543 100644 --- a/packs/equipment/LOG.old +++ b/packs/equipment/LOG.old @@ -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) diff --git a/packs/equipment/MANIFEST-000376 b/packs/equipment/MANIFEST-000408 similarity index 73% rename from packs/equipment/MANIFEST-000376 rename to packs/equipment/MANIFEST-000408 index 7536188..34dfa34 100644 Binary files a/packs/equipment/MANIFEST-000376 and b/packs/equipment/MANIFEST-000408 differ diff --git a/packs/fightoptions/000376.log b/packs/fightoptions/000408.log similarity index 100% rename from packs/fightoptions/000376.log rename to packs/fightoptions/000408.log diff --git a/packs/fightoptions/CURRENT b/packs/fightoptions/CURRENT index b87ade1..9e74f96 100644 --- a/packs/fightoptions/CURRENT +++ b/packs/fightoptions/CURRENT @@ -1 +1 @@ -MANIFEST-000374 +MANIFEST-000406 diff --git a/packs/fightoptions/LOG b/packs/fightoptions/LOG index 26c9189..824bd83 100644 --- a/packs/fightoptions/LOG +++ b/packs/fightoptions/LOG @@ -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) diff --git a/packs/fightoptions/LOG.old b/packs/fightoptions/LOG.old index 8039a0d..7282710 100644 --- a/packs/fightoptions/LOG.old +++ b/packs/fightoptions/LOG.old @@ -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) diff --git a/packs/fightoptions/MANIFEST-000374 b/packs/fightoptions/MANIFEST-000406 similarity index 73% rename from packs/fightoptions/MANIFEST-000374 rename to packs/fightoptions/MANIFEST-000406 index 481edb2..854c616 100644 Binary files a/packs/fightoptions/MANIFEST-000374 and b/packs/fightoptions/MANIFEST-000406 differ diff --git a/packs/flaws/000377.log b/packs/flaws/000409.log similarity index 100% rename from packs/flaws/000377.log rename to packs/flaws/000409.log diff --git a/packs/flaws/CURRENT b/packs/flaws/CURRENT index 741abc7..b76306f 100644 --- a/packs/flaws/CURRENT +++ b/packs/flaws/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/flaws/LOG b/packs/flaws/LOG index 783b447..99f6bcc 100644 --- a/packs/flaws/LOG +++ b/packs/flaws/LOG @@ -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) diff --git a/packs/flaws/LOG.old b/packs/flaws/LOG.old index 53453ba..be179cf 100644 --- a/packs/flaws/LOG.old +++ b/packs/flaws/LOG.old @@ -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) diff --git a/packs/flaws/MANIFEST-000375 b/packs/flaws/MANIFEST-000407 similarity index 73% rename from packs/flaws/MANIFEST-000375 rename to packs/flaws/MANIFEST-000407 index c602a4a..14ab62f 100644 Binary files a/packs/flaws/MANIFEST-000375 and b/packs/flaws/MANIFEST-000407 differ diff --git a/packs/godsfaith/000376.log b/packs/godsfaith/000408.log similarity index 100% rename from packs/godsfaith/000376.log rename to packs/godsfaith/000408.log diff --git a/packs/godsfaith/CURRENT b/packs/godsfaith/CURRENT index b87ade1..9e74f96 100644 --- a/packs/godsfaith/CURRENT +++ b/packs/godsfaith/CURRENT @@ -1 +1 @@ -MANIFEST-000374 +MANIFEST-000406 diff --git a/packs/godsfaith/LOG b/packs/godsfaith/LOG index 6d04bc1..80a3628 100644 --- a/packs/godsfaith/LOG +++ b/packs/godsfaith/LOG @@ -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) diff --git a/packs/godsfaith/LOG.old b/packs/godsfaith/LOG.old index 48deac7..2c20893 100644 --- a/packs/godsfaith/LOG.old +++ b/packs/godsfaith/LOG.old @@ -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) diff --git a/packs/godsfaith/MANIFEST-000374 b/packs/godsfaith/MANIFEST-000406 similarity index 76% rename from packs/godsfaith/MANIFEST-000374 rename to packs/godsfaith/MANIFEST-000406 index f362de2..dd8253e 100644 Binary files a/packs/godsfaith/MANIFEST-000374 and b/packs/godsfaith/MANIFEST-000406 differ diff --git a/packs/languages/000377.log b/packs/languages/000409.log similarity index 100% rename from packs/languages/000377.log rename to packs/languages/000409.log diff --git a/packs/languages/CURRENT b/packs/languages/CURRENT index 741abc7..b76306f 100644 --- a/packs/languages/CURRENT +++ b/packs/languages/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/languages/LOG b/packs/languages/LOG index f3c1a34..719fba5 100644 --- a/packs/languages/LOG +++ b/packs/languages/LOG @@ -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) diff --git a/packs/languages/LOG.old b/packs/languages/LOG.old index b63f6e7..e9f31f1 100644 --- a/packs/languages/LOG.old +++ b/packs/languages/LOG.old @@ -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) diff --git a/packs/languages/MANIFEST-000375 b/packs/languages/MANIFEST-000407 similarity index 73% rename from packs/languages/MANIFEST-000375 rename to packs/languages/MANIFEST-000407 index 7e387cb..f3cc07e 100644 Binary files a/packs/languages/MANIFEST-000375 and b/packs/languages/MANIFEST-000407 differ diff --git a/packs/objets-alchimie/000377.log b/packs/objets-alchimie/000409.log similarity index 100% rename from packs/objets-alchimie/000377.log rename to packs/objets-alchimie/000409.log diff --git a/packs/objets-alchimie/CURRENT b/packs/objets-alchimie/CURRENT index 741abc7..b76306f 100644 --- a/packs/objets-alchimie/CURRENT +++ b/packs/objets-alchimie/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/objets-alchimie/LOG b/packs/objets-alchimie/LOG index e923c16..6fd0dd3 100644 --- a/packs/objets-alchimie/LOG +++ b/packs/objets-alchimie/LOG @@ -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) diff --git a/packs/objets-alchimie/LOG.old b/packs/objets-alchimie/LOG.old index f7619cd..2ae6012 100644 --- a/packs/objets-alchimie/LOG.old +++ b/packs/objets-alchimie/LOG.old @@ -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) diff --git a/packs/objets-alchimie/MANIFEST-000375 b/packs/objets-alchimie/MANIFEST-000407 similarity index 73% rename from packs/objets-alchimie/MANIFEST-000375 rename to packs/objets-alchimie/MANIFEST-000407 index d7c7562..911c6f7 100644 Binary files a/packs/objets-alchimie/MANIFEST-000375 and b/packs/objets-alchimie/MANIFEST-000407 differ diff --git a/packs/origins/000377.log b/packs/origins/000409.log similarity index 100% rename from packs/origins/000377.log rename to packs/origins/000409.log diff --git a/packs/origins/CURRENT b/packs/origins/CURRENT index 741abc7..b76306f 100644 --- a/packs/origins/CURRENT +++ b/packs/origins/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/origins/LOG b/packs/origins/LOG index fb70b6d..7d963fa 100644 --- a/packs/origins/LOG +++ b/packs/origins/LOG @@ -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) diff --git a/packs/origins/LOG.old b/packs/origins/LOG.old index a507fb5..499e9a1 100644 --- a/packs/origins/LOG.old +++ b/packs/origins/LOG.old @@ -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) diff --git a/packs/origins/MANIFEST-000375 b/packs/origins/MANIFEST-000407 similarity index 72% rename from packs/origins/MANIFEST-000375 rename to packs/origins/MANIFEST-000407 index 19e5ef0..2527338 100644 Binary files a/packs/origins/MANIFEST-000375 and b/packs/origins/MANIFEST-000407 differ diff --git a/packs/potions-alchimie/000377.log b/packs/potions-alchimie/000409.log similarity index 100% rename from packs/potions-alchimie/000377.log rename to packs/potions-alchimie/000409.log diff --git a/packs/potions-alchimie/CURRENT b/packs/potions-alchimie/CURRENT index 741abc7..b76306f 100644 --- a/packs/potions-alchimie/CURRENT +++ b/packs/potions-alchimie/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/potions-alchimie/LOG b/packs/potions-alchimie/LOG index 29faa2b..42d6a81 100644 --- a/packs/potions-alchimie/LOG +++ b/packs/potions-alchimie/LOG @@ -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) diff --git a/packs/potions-alchimie/LOG.old b/packs/potions-alchimie/LOG.old index 7815452..2f54f09 100644 --- a/packs/potions-alchimie/LOG.old +++ b/packs/potions-alchimie/LOG.old @@ -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) diff --git a/packs/potions-alchimie/MANIFEST-000375 b/packs/potions-alchimie/MANIFEST-000407 similarity index 73% rename from packs/potions-alchimie/MANIFEST-000375 rename to packs/potions-alchimie/MANIFEST-000407 index 38bd430..7910065 100644 Binary files a/packs/potions-alchimie/MANIFEST-000375 and b/packs/potions-alchimie/MANIFEST-000407 differ diff --git a/packs/races/000377.log b/packs/races/000409.log similarity index 100% rename from packs/races/000377.log rename to packs/races/000409.log diff --git a/packs/races/CURRENT b/packs/races/CURRENT index 741abc7..b76306f 100644 --- a/packs/races/CURRENT +++ b/packs/races/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/races/LOG b/packs/races/LOG index 547bc88..73cbe6b 100644 --- a/packs/races/LOG +++ b/packs/races/LOG @@ -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) diff --git a/packs/races/LOG.old b/packs/races/LOG.old index 326be5e..83e16d5 100644 --- a/packs/races/LOG.old +++ b/packs/races/LOG.old @@ -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) diff --git a/packs/races/MANIFEST-000375 b/packs/races/MANIFEST-000407 similarity index 73% rename from packs/races/MANIFEST-000375 rename to packs/races/MANIFEST-000407 index aeeb861..bffb2ba 100644 Binary files a/packs/races/MANIFEST-000375 and b/packs/races/MANIFEST-000407 differ diff --git a/packs/spells/000377.log b/packs/spells/000409.log similarity index 100% rename from packs/spells/000377.log rename to packs/spells/000409.log diff --git a/packs/spells/CURRENT b/packs/spells/CURRENT index 741abc7..b76306f 100644 --- a/packs/spells/CURRENT +++ b/packs/spells/CURRENT @@ -1 +1 @@ -MANIFEST-000375 +MANIFEST-000407 diff --git a/packs/spells/LOG b/packs/spells/LOG index 756bde3..894c5a4 100644 --- a/packs/spells/LOG +++ b/packs/spells/LOG @@ -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) diff --git a/packs/spells/LOG.old b/packs/spells/LOG.old index 661a89a..a619a8a 100644 --- a/packs/spells/LOG.old +++ b/packs/spells/LOG.old @@ -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) diff --git a/packs/spells/MANIFEST-000375 b/packs/spells/MANIFEST-000407 similarity index 73% rename from packs/spells/MANIFEST-000375 rename to packs/spells/MANIFEST-000407 index b8c1723..f642216 100644 Binary files a/packs/spells/MANIFEST-000375 and b/packs/spells/MANIFEST-000407 differ diff --git a/packs/vehicleweapons/000284.log b/packs/vehicleweapons/000316.log similarity index 100% rename from packs/vehicleweapons/000284.log rename to packs/vehicleweapons/000316.log diff --git a/packs/vehicleweapons/CURRENT b/packs/vehicleweapons/CURRENT index ab9b276..616c076 100644 --- a/packs/vehicleweapons/CURRENT +++ b/packs/vehicleweapons/CURRENT @@ -1 +1 @@ -MANIFEST-000282 +MANIFEST-000314 diff --git a/packs/vehicleweapons/LOG b/packs/vehicleweapons/LOG index c868e7a..e6ce649 100644 --- a/packs/vehicleweapons/LOG +++ b/packs/vehicleweapons/LOG @@ -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) diff --git a/packs/vehicleweapons/LOG.old b/packs/vehicleweapons/LOG.old index 27f647e..cf78fa0 100644 --- a/packs/vehicleweapons/LOG.old +++ b/packs/vehicleweapons/LOG.old @@ -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) diff --git a/packs/vehicleweapons/MANIFEST-000282 b/packs/vehicleweapons/MANIFEST-000314 similarity index 73% rename from packs/vehicleweapons/MANIFEST-000282 rename to packs/vehicleweapons/MANIFEST-000314 index 0797f93..3c4d86a 100644 Binary files a/packs/vehicleweapons/MANIFEST-000282 and b/packs/vehicleweapons/MANIFEST-000314 differ diff --git a/packs/weapons/000288.log b/packs/weapons/000320.log similarity index 100% rename from packs/weapons/000288.log rename to packs/weapons/000320.log diff --git a/packs/weapons/CURRENT b/packs/weapons/CURRENT index 7f70877..230ee8e 100644 --- a/packs/weapons/CURRENT +++ b/packs/weapons/CURRENT @@ -1 +1 @@ -MANIFEST-000286 +MANIFEST-000318 diff --git a/packs/weapons/LOG b/packs/weapons/LOG index 2f12a13..7173532 100644 --- a/packs/weapons/LOG +++ b/packs/weapons/LOG @@ -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) diff --git a/packs/weapons/LOG.old b/packs/weapons/LOG.old index 2397dd2..2d17b5a 100644 --- a/packs/weapons/LOG.old +++ b/packs/weapons/LOG.old @@ -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) diff --git a/packs/weapons/MANIFEST-000286 b/packs/weapons/MANIFEST-000318 similarity index 72% rename from packs/weapons/MANIFEST-000286 rename to packs/weapons/MANIFEST-000318 index 7c34e64..ece9f15 100644 Binary files a/packs/weapons/MANIFEST-000286 and b/packs/weapons/MANIFEST-000318 differ diff --git a/system.json b/system.json index 996d148..4a01dd1 100644 --- a/system.json +++ b/system.json @@ -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", diff --git a/templates/dialogs/spell-roll-dialog.hbs b/templates/dialogs/spell-roll-dialog.hbs index f77ab19..6c6cde4 100644 --- a/templates/dialogs/spell-roll-dialog.hbs +++ b/templates/dialogs/spell-roll-dialog.hbs @@ -37,8 +37,8 @@