diff --git a/modules/hawkmoon-utility.js b/modules/hawkmoon-utility.js index dc40d9a..5b12dbe 100644 --- a/modules/hawkmoon-utility.js +++ b/modules/hawkmoon-utility.js @@ -3,10 +3,10 @@ import { HawkmoonCombat } from "./hawkmoon-combat.js"; import { HawkmoonCommands } from "./hawkmoon-commands.js"; /* -------------------------------------------- */ -const __distanceDifficulte = { "porteecourte": 5, "porteemoyenne": 9, "porteelongue": 14} -const __tireurDeplacement = { immobile: 0, lent: 3, rapide: 5} -const __cibleCouvert = { aucun: 0, leger: 5, complet: 10} -const __tailleCible = { normal: 0, main: 10, enfant: 3, maison: -10} +const __distanceDifficulte = { "porteecourte": 5, "porteemoyenne": 9, "porteelongue": 14 } +const __tireurDeplacement = { immobile: 0, lent: 3, rapide: 5 } +const __cibleCouvert = { aucun: 0, leger: 5, complet: 10 } +const __tailleCible = { normal: 0, main: 10, enfant: 3, maison: -10 } /* -------------------------------------------- */ export class HawkmoonUtility { @@ -130,7 +130,7 @@ export class HawkmoonUtility { static createArrayOptionList(min, max) { let options = []; for (let i = min; i <= max; i++) { - options.push({key:`${i}`, label:`${i}`}); + options.push({ key: `${i}`, label: `${i}` }); } return options; } @@ -280,7 +280,7 @@ export class HawkmoonUtility { static onSocketMesssage(msg) { if (msg.msg == "msg_apply_combativite") { let defender = game.canvas.tokens.get(msg.data.defenderTokenId)?.actor - if(defender) { + if (defender) { defender.changeEtatCombativite(msg.data.value) } else { console.warn("HawkmoonUtility.onSocketMesssage : Impossible de trouver le token pour appliquer la combativité", msg.defenderTokenId) @@ -358,14 +358,19 @@ export class HawkmoonUtility { } } - //console.log("Result : ", rollData) + //console.log("Result : ", rollData + this.computeResultQuality(rollData) + } + + /* -------------------------------------------- */ + static computeResultQuality(rollData) { if (rollData.difficulte > 0 && !rollData.isDramatique) { rollData.isSuccess = (rollData.finalResult >= rollData.difficulte) rollData.isHeroique = ((rollData.finalResult - rollData.difficulte) >= 10) rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10) } - } + /* -------------------------------------------- */ static applyCombativite(rollData, value) { if (game.user.isGM) { @@ -435,9 +440,9 @@ export class HawkmoonUtility { rollData.diceFormula += `+3` } if (rollData.hasAmbidextre) { - if ( rollData.ambidextre1) { + if (rollData.ambidextre1) { rollData.diceFormula += `-3` - } else if ( rollData.ambidextre2) { + } else if (rollData.ambidextre2) { rollData.diceFormula += `-6` } } @@ -457,7 +462,7 @@ export class HawkmoonUtility { rollData.diceFormula += `+5` } if (rollData.soutiens > 0) { // 1 soutien = +3, 2 soutiens = +4, 3 soutiens = +5 - rollData.diceFormula += `+${rollData.soutiens+2}` + rollData.diceFormula += `+${rollData.soutiens + 2}` } if (rollData.arme?.system.isDistance) { @@ -495,9 +500,9 @@ export class HawkmoonUtility { } if (rollData.feinte) { actor.changeBonneAventure(-1) - if ( rollData.isHeroique) { + if (rollData.isHeroique) { rollData.nbCombativitePerdu = "vaincu" - } else if ( rollData.isSuccess) { + } else if (rollData.isSuccess) { rollData.nbCombativitePerdu = 2 } } @@ -506,7 +511,7 @@ export class HawkmoonUtility { content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData) }, rollData) - if ( (rollData.coupBas || rollData.arme) && rollData.isSuccess && rollData.defenderTokenId) { + if ((rollData.coupBas || rollData.arme) && rollData.isSuccess && rollData.defenderTokenId) { this.applyCombativite(rollData, rollData.nbCombativitePerdu) } if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) { @@ -517,30 +522,35 @@ export class HawkmoonUtility { /* -------------------------------------------- */ static getCombativiteList(nbActivite) { - let list = [ { value: String(0), label: "Combatif"}] - for (let i = 1; i < nbActivite-2; i++) { - list.push({ value: String(i), label:"Eprouvé " + i} ) + let list = [{ value: String(0), label: "Combatif" }] + for (let i = 1; i < nbActivite - 2; i++) { + list.push({ value: String(i), label: "Eprouvé " + i }) } - list[nbActivite-2] = { value: String(nbActivite-2), label:"Affaibli"} - list[nbActivite-1] = { value: String(nbActivite-1), label:"Très Affaibli"} - list[nbActivite] = { value: String(nbActivite), label:"Vaincu"} + list[nbActivite - 2] = { value: String(nbActivite - 2), label: "Affaibli" } + list[nbActivite - 1] = { value: String(nbActivite - 1), label: "Très Affaibli" } + list[nbActivite] = { value: String(nbActivite), label: "Vaincu" } return list } /* -------------------------------------------- */ static async bonusRollHawkmoon(rollData) { rollData.bonusFormula = rollData.addedBonus + console.log("Bonus Roll Hawkmoon", rollData.bonusFormula) - let bonusRoll = await new Roll(rollData.bonusFormula).roll() - await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode")); - rollData.bonusRoll = foundry.utils.duplicate(bonusRoll) + if (!Number(rollData.bonusFormula)) { + let bonusRoll = await new Roll(rollData.bonusFormula).roll() + await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode")); + rollData.bonusRoll = foundry.utils.duplicate(bonusRoll) + rollData.finalResult += Number(rollData.bonusRoll.total) + } else { + rollData.finalResult += Number(rollData.bonusFormula) + console.log("Bonus Roll Hawkmoon 2", rollData.finalResult) + } - rollData.finalResult += rollData.bonusRoll.total - - this.computeResult(rollData) + this.computeResultQuality(rollData) this.createChatWithRollMode(rollData.alias, { - content: await renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData) + content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData) }, rollData) } @@ -650,11 +660,11 @@ export class HawkmoonUtility { distanceTir: "porteemoyenne", attaqueCharge: false, attaqueDesarme: false, - attaqueAmbidextre1 : false, - attaqueAmbidextre2 : false, - chargeCavalerie : false, - contenir : false, - soutiens : 0 + attaqueAmbidextre1: false, + attaqueAmbidextre2: false, + chargeCavalerie: false, + contenir: false, + soutiens: 0 } return rollData } @@ -675,13 +685,13 @@ export class HawkmoonUtility { } else if (rollData.coupBas) { let combatValues = defender.getCombatValues() rollData.difficulte = combatValues.defenseTotal - }else if ( rollData.assomer) { + } else if (rollData.assomer) { rollData.difficulte = 3 + (defender.system.attributs.tre.value * 2) - } else if (rollData.desengager) { + } else if (rollData.desengager) { rollData.difficulte = rollData.armeAttaqueDefenseur?.system?.totalOffensif || 0; } else if (rollData.armeDefense) { rollData.difficulte = rollData.armeDefense.system.totalDefensif - if ( !rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune ){ + if (!rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune) { if (rollData.armeDefense.system.armenaturelle || rollData.armeDefense.system.armefortune) { rollData.bonusArmeNaturelle = 3 } diff --git a/packs/aides-de-jeu/000299.log b/packs/aides-de-jeu/000303.log similarity index 100% rename from packs/aides-de-jeu/000299.log rename to packs/aides-de-jeu/000303.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index 4e9b3d7..066a17b 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000297 +MANIFEST-000301 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index 20a0e27..b97ac79 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.527706 7f53dffff6c0 Recovering log #295 -2025/06/03-13:26:59.538330 7f53dffff6c0 Delete type=3 #293 -2025/06/03-13:26:59.538407 7f53dffff6c0 Delete type=0 #295 -2025/06/03-13:30:56.587918 7f53df3ff6c0 Level-0 table #300: started -2025/06/03-13:30:56.587964 7f53df3ff6c0 Level-0 table #300: 0 bytes OK -2025/06/03-13:30:56.617514 7f53df3ff6c0 Delete type=0 #298 -2025/06/03-13:30:56.714892 7f53df3ff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.715021 7f53df3ff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.504597 7f151effd6c0 Recovering log #299 +2025/06/24-20:47:28.514673 7f151effd6c0 Delete type=3 #297 +2025/06/24-20:47:28.514784 7f151effd6c0 Delete type=0 #299 +2025/06/24-21:03:58.298797 7f151d7fa6c0 Level-0 table #304: started +2025/06/24-21:03:58.298835 7f151d7fa6c0 Level-0 table #304: 0 bytes OK +2025/06/24-21:03:58.305605 7f151d7fa6c0 Delete type=0 #302 +2025/06/24-21:03:58.316223 7f151d7fa6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.316257 7f151d7fa6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index b541367..20a0e27 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.362933 7f53dffff6c0 Recovering log #291 -2025/06/03-09:21:46.418127 7f53dffff6c0 Delete type=3 #289 -2025/06/03-09:21:46.418276 7f53dffff6c0 Delete type=0 #291 -2025/06/03-09:37:31.318375 7f53df3ff6c0 Level-0 table #296: started -2025/06/03-09:37:31.318420 7f53df3ff6c0 Level-0 table #296: 0 bytes OK -2025/06/03-09:37:31.325126 7f53df3ff6c0 Delete type=0 #294 -2025/06/03-09:37:31.354536 7f53df3ff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.354601 7f53df3ff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.527706 7f53dffff6c0 Recovering log #295 +2025/06/03-13:26:59.538330 7f53dffff6c0 Delete type=3 #293 +2025/06/03-13:26:59.538407 7f53dffff6c0 Delete type=0 #295 +2025/06/03-13:30:56.587918 7f53df3ff6c0 Level-0 table #300: started +2025/06/03-13:30:56.587964 7f53df3ff6c0 Level-0 table #300: 0 bytes OK +2025/06/03-13:30:56.617514 7f53df3ff6c0 Delete type=0 #298 +2025/06/03-13:30:56.714892 7f53df3ff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.715021 7f53df3ff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/MANIFEST-000297 b/packs/aides-de-jeu/MANIFEST-000301 similarity index 84% rename from packs/aides-de-jeu/MANIFEST-000297 rename to packs/aides-de-jeu/MANIFEST-000301 index 2bc6503..541698c 100644 Binary files a/packs/aides-de-jeu/MANIFEST-000297 and b/packs/aides-de-jeu/MANIFEST-000301 differ diff --git a/packs/armes/000298.log b/packs/armes/000302.log similarity index 100% rename from packs/armes/000298.log rename to packs/armes/000302.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/armes/LOG b/packs/armes/LOG index 8ca06bd..8fa59cb 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.405001 7f53e5dfa6c0 Recovering log #294 -2025/06/03-13:26:59.415733 7f53e5dfa6c0 Delete type=3 #292 -2025/06/03-13:26:59.415800 7f53e5dfa6c0 Delete type=0 #294 -2025/06/03-13:30:56.309035 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.309066 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.343046 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.395832 7f53df3ff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.395893 7f53df3ff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.375708 7f151effd6c0 Recovering log #298 +2025/06/24-20:47:28.385573 7f151effd6c0 Delete type=3 #296 +2025/06/24-20:47:28.385688 7f151effd6c0 Delete type=0 #298 +2025/06/24-21:03:58.229253 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.229277 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.235239 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.255927 7f151d7fa6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.255971 7f151d7fa6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index d07f0d6..8ca06bd 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.877397 7f53e5dfa6c0 Recovering log #290 -2025/06/03-09:21:45.926115 7f53e5dfa6c0 Delete type=3 #288 -2025/06/03-09:21:45.926266 7f53e5dfa6c0 Delete type=0 #290 -2025/06/03-09:37:31.264000 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.264093 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.270726 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.291847 7f53df3ff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.291899 7f53df3ff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.405001 7f53e5dfa6c0 Recovering log #294 +2025/06/03-13:26:59.415733 7f53e5dfa6c0 Delete type=3 #292 +2025/06/03-13:26:59.415800 7f53e5dfa6c0 Delete type=0 #294 +2025/06/03-13:30:56.309035 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.309066 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.343046 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.395832 7f53df3ff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.395893 7f53df3ff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) diff --git a/packs/armes/MANIFEST-000296 b/packs/armes/MANIFEST-000300 similarity index 73% rename from packs/armes/MANIFEST-000296 rename to packs/armes/MANIFEST-000300 index fef676b..edbfc80 100644 Binary files a/packs/armes/MANIFEST-000296 and b/packs/armes/MANIFEST-000300 differ diff --git a/packs/competences-creatures/000298.log b/packs/competences-creatures/000302.log similarity index 100% rename from packs/competences-creatures/000298.log rename to packs/competences-creatures/000302.log diff --git a/packs/competences-creatures/CURRENT b/packs/competences-creatures/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/competences-creatures/CURRENT +++ b/packs/competences-creatures/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/competences-creatures/LOG b/packs/competences-creatures/LOG index 89727b0..cafcf63 100644 --- a/packs/competences-creatures/LOG +++ b/packs/competences-creatures/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.375226 7f53e55f96c0 Recovering log #294 -2025/06/03-13:26:59.385670 7f53e55f96c0 Delete type=3 #292 -2025/06/03-13:26:59.385742 7f53e55f96c0 Delete type=0 #294 -2025/06/03-13:30:56.443109 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.443148 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.473604 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.493334 7f53df3ff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.493550 7f53df3ff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.349172 7f151dffb6c0 Recovering log #298 +2025/06/24-20:47:28.359761 7f151dffb6c0 Delete type=3 #296 +2025/06/24-20:47:28.359875 7f151dffb6c0 Delete type=0 #298 +2025/06/24-21:03:58.203272 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.203347 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.209369 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.229076 7f151d7fa6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.229112 7f151d7fa6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) diff --git a/packs/competences-creatures/LOG.old b/packs/competences-creatures/LOG.old index 5395f5f..89727b0 100644 --- a/packs/competences-creatures/LOG.old +++ b/packs/competences-creatures/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.727062 7f53e55f96c0 Recovering log #290 -2025/06/03-09:21:45.819195 7f53e55f96c0 Delete type=3 #288 -2025/06/03-09:21:45.819280 7f53e55f96c0 Delete type=0 #290 -2025/06/03-09:37:31.257029 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.257069 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.263418 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.263756 7f53df3ff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.263863 7f53df3ff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.375226 7f53e55f96c0 Recovering log #294 +2025/06/03-13:26:59.385670 7f53e55f96c0 Delete type=3 #292 +2025/06/03-13:26:59.385742 7f53e55f96c0 Delete type=0 #294 +2025/06/03-13:30:56.443109 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.443148 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.473604 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.493334 7f53df3ff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.493550 7f53df3ff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) diff --git a/packs/competences-creatures/MANIFEST-000296 b/packs/competences-creatures/MANIFEST-000300 similarity index 73% rename from packs/competences-creatures/MANIFEST-000296 rename to packs/competences-creatures/MANIFEST-000300 index ae8c4a1..8100be4 100644 Binary files a/packs/competences-creatures/MANIFEST-000296 and b/packs/competences-creatures/MANIFEST-000300 differ diff --git a/packs/competences/000298.log b/packs/competences/000302.log similarity index 100% rename from packs/competences/000298.log rename to packs/competences/000302.log diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/competences/LOG b/packs/competences/LOG index 7a24526..f73513d 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.341579 7f53dffff6c0 Recovering log #294 -2025/06/03-13:26:59.353145 7f53dffff6c0 Delete type=3 #292 -2025/06/03-13:26:59.353222 7f53dffff6c0 Delete type=0 #294 -2025/06/03-13:30:56.343217 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.343264 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.370130 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.395847 7f53df3ff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.395903 7f53df3ff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.321545 7f151e7fc6c0 Recovering log #298 +2025/06/24-20:47:28.331748 7f151e7fc6c0 Delete type=3 #296 +2025/06/24-20:47:28.331800 7f151e7fc6c0 Delete type=0 #298 +2025/06/24-21:03:58.209532 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.209573 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.215589 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.229089 7f151d7fa6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.229117 7f151d7fa6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index 4de4655..7a24526 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.607798 7f53e5dfa6c0 Recovering log #290 -2025/06/03-09:21:45.667671 7f53e5dfa6c0 Delete type=3 #288 -2025/06/03-09:21:45.667739 7f53e5dfa6c0 Delete type=0 #290 -2025/06/03-09:37:31.242616 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.242655 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.249367 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.263691 7f53df3ff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.263812 7f53df3ff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.341579 7f53dffff6c0 Recovering log #294 +2025/06/03-13:26:59.353145 7f53dffff6c0 Delete type=3 #292 +2025/06/03-13:26:59.353222 7f53dffff6c0 Delete type=0 #294 +2025/06/03-13:30:56.343217 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.343264 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.370130 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.395847 7f53df3ff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.395903 7f53df3ff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000296 b/packs/competences/MANIFEST-000300 similarity index 73% rename from packs/competences/MANIFEST-000296 rename to packs/competences/MANIFEST-000300 index 2294736..b19364a 100644 Binary files a/packs/competences/MANIFEST-000296 and b/packs/competences/MANIFEST-000300 differ diff --git a/packs/equipement/000298.log b/packs/equipement/000302.log similarity index 100% rename from packs/equipement/000298.log rename to packs/equipement/000302.log diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/equipement/CURRENT +++ b/packs/equipement/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/equipement/LOG b/packs/equipement/LOG index 8dbcf0e..ebd3b23 100644 --- a/packs/equipement/LOG +++ b/packs/equipement/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.435242 7f53dffff6c0 Recovering log #294 -2025/06/03-13:26:59.446161 7f53dffff6c0 Delete type=3 #292 -2025/06/03-13:26:59.446239 7f53dffff6c0 Delete type=0 #294 -2025/06/03-13:30:56.419788 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.419819 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.442933 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.493303 7f53df3ff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.493526 7f53df3ff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.402925 7f151e7fc6c0 Recovering log #298 +2025/06/24-20:47:28.413436 7f151e7fc6c0 Delete type=3 #296 +2025/06/24-20:47:28.413494 7f151e7fc6c0 Delete type=0 #298 +2025/06/24-21:03:58.249333 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.249401 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.255814 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.255957 7f151d7fa6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.255982 7f151d7fa6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old index aef4ff8..8dbcf0e 100644 --- a/packs/equipement/LOG.old +++ b/packs/equipement/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.000583 7f53dffff6c0 Recovering log #290 -2025/06/03-09:21:46.045189 7f53dffff6c0 Delete type=3 #288 -2025/06/03-09:21:46.045282 7f53dffff6c0 Delete type=0 #290 -2025/06/03-09:37:31.278201 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.278272 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.285264 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.291875 7f53df3ff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.291917 7f53df3ff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.435242 7f53dffff6c0 Recovering log #294 +2025/06/03-13:26:59.446161 7f53dffff6c0 Delete type=3 #292 +2025/06/03-13:26:59.446239 7f53dffff6c0 Delete type=0 #294 +2025/06/03-13:30:56.419788 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.419819 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.442933 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.493303 7f53df3ff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.493526 7f53df3ff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/MANIFEST-000296 b/packs/equipement/MANIFEST-000300 similarity index 72% rename from packs/equipement/MANIFEST-000296 rename to packs/equipement/MANIFEST-000300 index 90911f4..a881b75 100644 Binary files a/packs/equipement/MANIFEST-000296 and b/packs/equipement/MANIFEST-000300 differ diff --git a/packs/historiques/000298.log b/packs/historiques/000302.log similarity index 100% rename from packs/historiques/000298.log rename to packs/historiques/000302.log diff --git a/packs/historiques/CURRENT b/packs/historiques/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/historiques/CURRENT +++ b/packs/historiques/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/historiques/LOG b/packs/historiques/LOG index 539ce00..40b63aa 100644 --- a/packs/historiques/LOG +++ b/packs/historiques/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.389629 7f53dffff6c0 Recovering log #294 -2025/06/03-13:26:59.400611 7f53dffff6c0 Delete type=3 #292 -2025/06/03-13:26:59.400739 7f53dffff6c0 Delete type=0 #294 -2025/06/03-13:30:56.289820 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.289876 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.308894 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.395816 7f53df3ff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.395867 7f53df3ff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.362510 7f151e7fc6c0 Recovering log #298 +2025/06/24-20:47:28.372821 7f151e7fc6c0 Delete type=3 #296 +2025/06/24-20:47:28.372890 7f151e7fc6c0 Delete type=0 #298 +2025/06/24-21:03:58.215818 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.215857 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.222622 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.229098 7f151d7fa6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.229123 7f151d7fa6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/LOG.old b/packs/historiques/LOG.old index 5f0ad1c..539ce00 100644 --- a/packs/historiques/LOG.old +++ b/packs/historiques/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.821771 7f53e4df86c0 Recovering log #290 -2025/06/03-09:21:45.874505 7f53e4df86c0 Delete type=3 #288 -2025/06/03-09:21:45.874661 7f53e4df86c0 Delete type=0 #290 -2025/06/03-09:37:31.249536 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.249572 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.256869 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.263725 7f53df3ff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.263840 7f53df3ff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.389629 7f53dffff6c0 Recovering log #294 +2025/06/03-13:26:59.400611 7f53dffff6c0 Delete type=3 #292 +2025/06/03-13:26:59.400739 7f53dffff6c0 Delete type=0 #294 +2025/06/03-13:30:56.289820 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.289876 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.308894 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.395816 7f53df3ff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.395867 7f53df3ff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/MANIFEST-000296 b/packs/historiques/MANIFEST-000300 similarity index 72% rename from packs/historiques/MANIFEST-000296 rename to packs/historiques/MANIFEST-000300 index 3cde04b..81cbb16 100644 Binary files a/packs/historiques/MANIFEST-000296 and b/packs/historiques/MANIFEST-000300 differ diff --git a/packs/mutations/000208.log b/packs/mutations/000212.log similarity index 100% rename from packs/mutations/000208.log rename to packs/mutations/000212.log diff --git a/packs/mutations/CURRENT b/packs/mutations/CURRENT index b04a015..af31d42 100644 --- a/packs/mutations/CURRENT +++ b/packs/mutations/CURRENT @@ -1 +1 @@ -MANIFEST-000206 +MANIFEST-000210 diff --git a/packs/mutations/LOG b/packs/mutations/LOG index 620ed1f..b218e70 100644 --- a/packs/mutations/LOG +++ b/packs/mutations/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.357421 7f53e5dfa6c0 Recovering log #204 -2025/06/03-13:26:59.368746 7f53e5dfa6c0 Delete type=3 #202 -2025/06/03-13:26:59.368822 7f53e5dfa6c0 Delete type=0 #204 -2025/06/03-13:30:56.370280 7f53df3ff6c0 Level-0 table #209: started -2025/06/03-13:30:56.370317 7f53df3ff6c0 Level-0 table #209: 0 bytes OK -2025/06/03-13:30:56.395566 7f53df3ff6c0 Delete type=0 #207 -2025/06/03-13:30:56.395858 7f53df3ff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.395878 7f53df3ff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.335175 7f151f7fe6c0 Recovering log #208 +2025/06/24-20:47:28.345128 7f151f7fe6c0 Delete type=3 #206 +2025/06/24-20:47:28.345266 7f151f7fe6c0 Delete type=0 #208 +2025/06/24-21:03:58.222777 7f151d7fa6c0 Level-0 table #213: started +2025/06/24-21:03:58.222803 7f151d7fa6c0 Level-0 table #213: 0 bytes OK +2025/06/24-21:03:58.228922 7f151d7fa6c0 Delete type=0 #211 +2025/06/24-21:03:58.229105 7f151d7fa6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.229129 7f151d7fa6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) diff --git a/packs/mutations/LOG.old b/packs/mutations/LOG.old index a4f69b5..620ed1f 100644 --- a/packs/mutations/LOG.old +++ b/packs/mutations/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.669951 7f53dffff6c0 Recovering log #200 -2025/06/03-09:21:45.723061 7f53dffff6c0 Delete type=3 #198 -2025/06/03-09:21:45.724072 7f53dffff6c0 Delete type=0 #200 -2025/06/03-09:37:31.235530 7f53df3ff6c0 Level-0 table #205: started -2025/06/03-09:37:31.235689 7f53df3ff6c0 Level-0 table #205: 0 bytes OK -2025/06/03-09:37:31.242451 7f53df3ff6c0 Delete type=0 #203 -2025/06/03-09:37:31.263645 7f53df3ff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.263786 7f53df3ff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.357421 7f53e5dfa6c0 Recovering log #204 +2025/06/03-13:26:59.368746 7f53e5dfa6c0 Delete type=3 #202 +2025/06/03-13:26:59.368822 7f53e5dfa6c0 Delete type=0 #204 +2025/06/03-13:30:56.370280 7f53df3ff6c0 Level-0 table #209: started +2025/06/03-13:30:56.370317 7f53df3ff6c0 Level-0 table #209: 0 bytes OK +2025/06/03-13:30:56.395566 7f53df3ff6c0 Delete type=0 #207 +2025/06/03-13:30:56.395858 7f53df3ff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.395878 7f53df3ff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) diff --git a/packs/mutations/MANIFEST-000206 b/packs/mutations/MANIFEST-000210 similarity index 71% rename from packs/mutations/MANIFEST-000206 rename to packs/mutations/MANIFEST-000210 index 94c40b1..883e89e 100644 Binary files a/packs/mutations/MANIFEST-000206 and b/packs/mutations/MANIFEST-000210 differ diff --git a/packs/profils/000298.log b/packs/profils/000302.log similarity index 100% rename from packs/profils/000298.log rename to packs/profils/000302.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/profils/LOG b/packs/profils/LOG index 5f55005..31ef7ef 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.451891 7f53e4df86c0 Recovering log #294 -2025/06/03-13:26:59.462166 7f53e4df86c0 Delete type=3 #292 -2025/06/03-13:26:59.462241 7f53e4df86c0 Delete type=0 #294 -2025/06/03-13:30:56.493648 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.493718 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.524994 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.587752 7f53df3ff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.587819 7f53df3ff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.416644 7f151dffb6c0 Recovering log #298 +2025/06/24-20:47:28.426500 7f151dffb6c0 Delete type=3 #296 +2025/06/24-20:47:28.426560 7f151dffb6c0 Delete type=0 #298 +2025/06/24-21:03:58.241851 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.241903 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.249125 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.255950 7f151d7fa6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.255977 7f151d7fa6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index 224ffe5..5f55005 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.052833 7f53e5dfa6c0 Recovering log #290 -2025/06/03-09:21:46.112238 7f53e5dfa6c0 Delete type=3 #288 -2025/06/03-09:21:46.112327 7f53e5dfa6c0 Delete type=0 #290 -2025/06/03-09:37:31.285421 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.285457 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.291692 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.291888 7f53df3ff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.291927 7f53df3ff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.451891 7f53e4df86c0 Recovering log #294 +2025/06/03-13:26:59.462166 7f53e4df86c0 Delete type=3 #292 +2025/06/03-13:26:59.462241 7f53e4df86c0 Delete type=0 #294 +2025/06/03-13:30:56.493648 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.493718 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.524994 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.587752 7f53df3ff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.587819 7f53df3ff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000296 b/packs/profils/MANIFEST-000300 similarity index 73% rename from packs/profils/MANIFEST-000296 rename to packs/profils/MANIFEST-000300 index 0c5b921..ac560f4 100644 Binary files a/packs/profils/MANIFEST-000296 and b/packs/profils/MANIFEST-000300 differ diff --git a/packs/protections/000298.log b/packs/protections/000302.log similarity index 100% rename from packs/protections/000298.log rename to packs/protections/000302.log diff --git a/packs/protections/CURRENT b/packs/protections/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/protections/CURRENT +++ b/packs/protections/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/protections/LOG b/packs/protections/LOG index 8f70aca..b3f302c 100644 --- a/packs/protections/LOG +++ b/packs/protections/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.420295 7f53e55f96c0 Recovering log #294 -2025/06/03-13:26:59.431966 7f53e55f96c0 Delete type=3 #292 -2025/06/03-13:26:59.432124 7f53e55f96c0 Delete type=0 #294 -2025/06/03-13:30:56.395990 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.396032 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.419643 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.493262 7f53df3ff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.493501 7f53df3ff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.388683 7f151f7fe6c0 Recovering log #298 +2025/06/24-20:47:28.399664 7f151f7fe6c0 Delete type=3 #296 +2025/06/24-20:47:28.399728 7f151f7fe6c0 Delete type=0 #298 +2025/06/24-21:03:58.235416 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.235454 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.241632 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.255941 7f151d7fa6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.255965 7f151d7fa6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) diff --git a/packs/protections/LOG.old b/packs/protections/LOG.old index 429934e..8f70aca 100644 --- a/packs/protections/LOG.old +++ b/packs/protections/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:45.939778 7f53e55f96c0 Recovering log #290 -2025/06/03-09:21:45.997340 7f53e55f96c0 Delete type=3 #288 -2025/06/03-09:21:45.997438 7f53e55f96c0 Delete type=0 #290 -2025/06/03-09:37:31.271010 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.271073 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.277967 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.291863 7f53df3ff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.291908 7f53df3ff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.420295 7f53e55f96c0 Recovering log #294 +2025/06/03-13:26:59.431966 7f53e55f96c0 Delete type=3 #292 +2025/06/03-13:26:59.432124 7f53e55f96c0 Delete type=0 #294 +2025/06/03-13:30:56.395990 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.396032 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.419643 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.493262 7f53df3ff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.493501 7f53df3ff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) diff --git a/packs/protections/MANIFEST-000296 b/packs/protections/MANIFEST-000300 similarity index 73% rename from packs/protections/MANIFEST-000296 rename to packs/protections/MANIFEST-000300 index 776c766..80bdbad 100644 Binary files a/packs/protections/MANIFEST-000296 and b/packs/protections/MANIFEST-000300 differ diff --git a/packs/scenes/000137.log b/packs/scenes/000141.log similarity index 100% rename from packs/scenes/000137.log rename to packs/scenes/000141.log diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT index 2776897..a52a9a4 100644 --- a/packs/scenes/CURRENT +++ b/packs/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000135 +MANIFEST-000139 diff --git a/packs/scenes/LOG b/packs/scenes/LOG index 86d0081..99cdb6d 100644 --- a/packs/scenes/LOG +++ b/packs/scenes/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.510357 7f53e55f96c0 Recovering log #133 -2025/06/03-13:26:59.521177 7f53e55f96c0 Delete type=3 #131 -2025/06/03-13:26:59.521252 7f53e55f96c0 Delete type=0 #133 -2025/06/03-13:30:56.560168 7f53df3ff6c0 Level-0 table #138: started -2025/06/03-13:30:56.560227 7f53df3ff6c0 Level-0 table #138: 0 bytes OK -2025/06/03-13:30:56.587569 7f53df3ff6c0 Delete type=0 #136 -2025/06/03-13:30:56.587808 7f53df3ff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.587843 7f53df3ff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.489732 7f151dffb6c0 Recovering log #137 +2025/06/24-20:47:28.500057 7f151dffb6c0 Delete type=3 #135 +2025/06/24-20:47:28.500112 7f151dffb6c0 Delete type=0 #137 +2025/06/24-21:03:58.268967 7f151d7fa6c0 Level-0 table #142: started +2025/06/24-21:03:58.268991 7f151d7fa6c0 Level-0 table #142: 0 bytes OK +2025/06/24-21:03:58.275402 7f151d7fa6c0 Delete type=0 #140 +2025/06/24-21:03:58.281956 7f151d7fa6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.281978 7f151d7fa6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old index 21436b1..86d0081 100644 --- a/packs/scenes/LOG.old +++ b/packs/scenes/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.304885 7f53e5dfa6c0 Recovering log #129 -2025/06/03-09:21:46.357449 7f53e5dfa6c0 Delete type=3 #127 -2025/06/03-09:21:46.357578 7f53e5dfa6c0 Delete type=0 #129 -2025/06/03-09:37:31.311440 7f53df3ff6c0 Level-0 table #134: started -2025/06/03-09:37:31.311474 7f53df3ff6c0 Level-0 table #134: 0 bytes OK -2025/06/03-09:37:31.318022 7f53df3ff6c0 Delete type=0 #132 -2025/06/03-09:37:31.318236 7f53df3ff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.318264 7f53df3ff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.510357 7f53e55f96c0 Recovering log #133 +2025/06/03-13:26:59.521177 7f53e55f96c0 Delete type=3 #131 +2025/06/03-13:26:59.521252 7f53e55f96c0 Delete type=0 #133 +2025/06/03-13:30:56.560168 7f53df3ff6c0 Level-0 table #138: started +2025/06/03-13:30:56.560227 7f53df3ff6c0 Level-0 table #138: 0 bytes OK +2025/06/03-13:30:56.587569 7f53df3ff6c0 Delete type=0 #136 +2025/06/03-13:30:56.587808 7f53df3ff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.587843 7f53df3ff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000135 b/packs/scenes/MANIFEST-000139 similarity index 73% rename from packs/scenes/MANIFEST-000135 rename to packs/scenes/MANIFEST-000139 index 45d2540..0c257d3 100644 Binary files a/packs/scenes/MANIFEST-000135 and b/packs/scenes/MANIFEST-000139 differ diff --git a/packs/talents-cellule/000298.log b/packs/tables/000298.log similarity index 100% rename from packs/talents-cellule/000298.log rename to packs/tables/000298.log diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT index 1c8246a..dc5e7f3 100644 --- a/packs/tables/CURRENT +++ b/packs/tables/CURRENT @@ -1 +1 @@ -MANIFEST-000292 +MANIFEST-000296 diff --git a/packs/tables/LOG b/packs/tables/LOG index 764a806..1c4c287 100644 --- a/packs/tables/LOG +++ b/packs/tables/LOG @@ -1,7 +1,7 @@ -2025/06/03-13:26:59.496690 7f53dffff6c0 Recovering log #290 -2025/06/03-13:26:59.506809 7f53dffff6c0 Delete type=3 #288 -2025/06/03-13:26:59.506885 7f53dffff6c0 Delete type=0 #290 -2025/06/03-13:30:56.525259 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-13:30:56.525330 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-13:30:56.539878 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-13:30:56.587776 7f53df3ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.457071 7f151e7fc6c0 Recovering log #294 +2025/06/24-20:47:28.486359 7f151e7fc6c0 Delete type=3 #292 +2025/06/24-20:47:28.486438 7f151e7fc6c0 Delete type=0 #294 +2025/06/24-21:03:58.262166 7f151d7fa6c0 Level-0 table #299: started +2025/06/24-21:03:58.262187 7f151d7fa6c0 Level-0 table #299: 0 bytes OK +2025/06/24-21:03:58.268859 7f151d7fa6c0 Delete type=0 #297 +2025/06/24-21:03:58.281947 7f151d7fa6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old index b42f913..764a806 100644 --- a/packs/tables/LOG.old +++ b/packs/tables/LOG.old @@ -1,7 +1,7 @@ -2025/06/03-09:21:46.245114 7f53dffff6c0 Recovering log #286 -2025/06/03-09:21:46.302335 7f53dffff6c0 Delete type=3 #284 -2025/06/03-09:21:46.302438 7f53dffff6c0 Delete type=0 #286 -2025/06/03-09:37:31.298420 7f53df3ff6c0 Level-0 table #291: started -2025/06/03-09:37:31.298466 7f53df3ff6c0 Level-0 table #291: 0 bytes OK -2025/06/03-09:37:31.305099 7f53df3ff6c0 Delete type=0 #289 -2025/06/03-09:37:31.318203 7f53df3ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.496690 7f53dffff6c0 Recovering log #290 +2025/06/03-13:26:59.506809 7f53dffff6c0 Delete type=3 #288 +2025/06/03-13:26:59.506885 7f53dffff6c0 Delete type=0 #290 +2025/06/03-13:30:56.525259 7f53df3ff6c0 Level-0 table #295: started +2025/06/03-13:30:56.525330 7f53df3ff6c0 Level-0 table #295: 0 bytes OK +2025/06/03-13:30:56.539878 7f53df3ff6c0 Delete type=0 #293 +2025/06/03-13:30:56.587776 7f53df3ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/MANIFEST-000292 b/packs/tables/MANIFEST-000292 deleted file mode 100644 index 34118ed..0000000 Binary files a/packs/tables/MANIFEST-000292 and /dev/null differ diff --git a/packs/tables/MANIFEST-000296 b/packs/tables/MANIFEST-000296 new file mode 100644 index 0000000..c9de49b Binary files /dev/null and b/packs/tables/MANIFEST-000296 differ diff --git a/packs/tables/000294.log b/packs/talents-cellule/000302.log similarity index 100% rename from packs/tables/000294.log rename to packs/talents-cellule/000302.log diff --git a/packs/talents-cellule/CURRENT b/packs/talents-cellule/CURRENT index dc5e7f3..16abe4a 100644 --- a/packs/talents-cellule/CURRENT +++ b/packs/talents-cellule/CURRENT @@ -1 +1 @@ -MANIFEST-000296 +MANIFEST-000300 diff --git a/packs/talents-cellule/LOG b/packs/talents-cellule/LOG index ffe5b00..c423629 100644 --- a/packs/talents-cellule/LOG +++ b/packs/talents-cellule/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.483067 7f53e5dfa6c0 Recovering log #294 -2025/06/03-13:26:59.493845 7f53e5dfa6c0 Delete type=3 #292 -2025/06/03-13:26:59.493918 7f53e5dfa6c0 Delete type=0 #294 -2025/06/03-13:30:56.540058 7f53df3ff6c0 Level-0 table #299: started -2025/06/03-13:30:56.540097 7f53df3ff6c0 Level-0 table #299: 0 bytes OK -2025/06/03-13:30:56.559980 7f53df3ff6c0 Delete type=0 #297 -2025/06/03-13:30:56.587791 7f53df3ff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.587831 7f53df3ff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.443312 7f151f7fe6c0 Recovering log #298 +2025/06/24-20:47:28.453630 7f151f7fe6c0 Delete type=3 #296 +2025/06/24-20:47:28.453684 7f151f7fe6c0 Delete type=0 #298 +2025/06/24-21:03:58.256117 7f151d7fa6c0 Level-0 table #303: started +2025/06/24-21:03:58.256143 7f151d7fa6c0 Level-0 table #303: 0 bytes OK +2025/06/24-21:03:58.262086 7f151d7fa6c0 Delete type=0 #301 +2025/06/24-21:03:58.281935 7f151d7fa6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.281970 7f151d7fa6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) diff --git a/packs/talents-cellule/LOG.old b/packs/talents-cellule/LOG.old index 00f332a..ffe5b00 100644 --- a/packs/talents-cellule/LOG.old +++ b/packs/talents-cellule/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.180945 7f53e4df86c0 Recovering log #290 -2025/06/03-09:21:46.242284 7f53e4df86c0 Delete type=3 #288 -2025/06/03-09:21:46.242358 7f53e4df86c0 Delete type=0 #290 -2025/06/03-09:37:31.305217 7f53df3ff6c0 Level-0 table #295: started -2025/06/03-09:37:31.305247 7f53df3ff6c0 Level-0 table #295: 0 bytes OK -2025/06/03-09:37:31.311323 7f53df3ff6c0 Delete type=0 #293 -2025/06/03-09:37:31.318220 7f53df3ff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.318256 7f53df3ff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.483067 7f53e5dfa6c0 Recovering log #294 +2025/06/03-13:26:59.493845 7f53e5dfa6c0 Delete type=3 #292 +2025/06/03-13:26:59.493918 7f53e5dfa6c0 Delete type=0 #294 +2025/06/03-13:30:56.540058 7f53df3ff6c0 Level-0 table #299: started +2025/06/03-13:30:56.540097 7f53df3ff6c0 Level-0 table #299: 0 bytes OK +2025/06/03-13:30:56.559980 7f53df3ff6c0 Delete type=0 #297 +2025/06/03-13:30:56.587791 7f53df3ff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.587831 7f53df3ff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) diff --git a/packs/talents-cellule/MANIFEST-000296 b/packs/talents-cellule/MANIFEST-000300 similarity index 73% rename from packs/talents-cellule/MANIFEST-000296 rename to packs/talents-cellule/MANIFEST-000300 index 2ac05f7..a8e7567 100644 Binary files a/packs/talents-cellule/MANIFEST-000296 and b/packs/talents-cellule/MANIFEST-000300 differ diff --git a/packs/talents/000299.log b/packs/talents/000303.log similarity index 100% rename from packs/talents/000299.log rename to packs/talents/000303.log diff --git a/packs/talents/CURRENT b/packs/talents/CURRENT index 4e9b3d7..066a17b 100644 --- a/packs/talents/CURRENT +++ b/packs/talents/CURRENT @@ -1 +1 @@ -MANIFEST-000297 +MANIFEST-000301 diff --git a/packs/talents/LOG b/packs/talents/LOG index 2bc537a..5613f06 100644 --- a/packs/talents/LOG +++ b/packs/talents/LOG @@ -1,8 +1,8 @@ -2025/06/03-13:26:59.466354 7f53e55f96c0 Recovering log #295 -2025/06/03-13:26:59.477919 7f53e55f96c0 Delete type=3 #293 -2025/06/03-13:26:59.478095 7f53e55f96c0 Delete type=0 #295 -2025/06/03-13:30:56.473771 7f53df3ff6c0 Level-0 table #300: started -2025/06/03-13:30:56.473804 7f53df3ff6c0 Level-0 table #300: 0 bytes OK -2025/06/03-13:30:56.492972 7f53df3ff6c0 Delete type=0 #298 -2025/06/03-13:30:56.493472 7f53df3ff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) -2025/06/03-13:30:56.493574 7f53df3ff6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/06/24-20:47:28.429173 7f151effd6c0 Recovering log #299 +2025/06/24-20:47:28.439471 7f151effd6c0 Delete type=3 #297 +2025/06/24-20:47:28.439538 7f151effd6c0 Delete type=0 #299 +2025/06/24-21:03:58.275599 7f151d7fa6c0 Level-0 table #304: started +2025/06/24-21:03:58.275651 7f151d7fa6c0 Level-0 table #304: 0 bytes OK +2025/06/24-21:03:58.281823 7f151d7fa6c0 Delete type=0 #302 +2025/06/24-21:03:58.281963 7f151d7fa6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/06/24-21:03:58.281984 7f151d7fa6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/LOG.old b/packs/talents/LOG.old index 0eb8768..2bc537a 100644 --- a/packs/talents/LOG.old +++ b/packs/talents/LOG.old @@ -1,8 +1,8 @@ -2025/06/03-09:21:46.119075 7f53e55f96c0 Recovering log #291 -2025/06/03-09:21:46.167093 7f53e55f96c0 Delete type=3 #289 -2025/06/03-09:21:46.167187 7f53e55f96c0 Delete type=0 #291 -2025/06/03-09:37:31.292058 7f53df3ff6c0 Level-0 table #296: started -2025/06/03-09:37:31.292089 7f53df3ff6c0 Level-0 table #296: 0 bytes OK -2025/06/03-09:37:31.298226 7f53df3ff6c0 Delete type=0 #294 -2025/06/03-09:37:31.318184 7f53df3ff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) -2025/06/03-09:37:31.318246 7f53df3ff6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/06/03-13:26:59.466354 7f53e55f96c0 Recovering log #295 +2025/06/03-13:26:59.477919 7f53e55f96c0 Delete type=3 #293 +2025/06/03-13:26:59.478095 7f53e55f96c0 Delete type=0 #295 +2025/06/03-13:30:56.473771 7f53df3ff6c0 Level-0 table #300: started +2025/06/03-13:30:56.473804 7f53df3ff6c0 Level-0 table #300: 0 bytes OK +2025/06/03-13:30:56.492972 7f53df3ff6c0 Delete type=0 #298 +2025/06/03-13:30:56.493472 7f53df3ff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) +2025/06/03-13:30:56.493574 7f53df3ff6c0 Manual compaction at level-1 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/MANIFEST-000297 b/packs/talents/MANIFEST-000301 similarity index 72% rename from packs/talents/MANIFEST-000297 rename to packs/talents/MANIFEST-000301 index 33a744c..8723741 100644 Binary files a/packs/talents/MANIFEST-000297 and b/packs/talents/MANIFEST-000301 differ diff --git a/system.json b/system.json index 37ed2b0..f20a66e 100644 --- a/system.json +++ b/system.json @@ -1,7 +1,7 @@ { "id": "fvtt-hawkmoon-cyd", "description": "Hawkmoon RPG for FoundryVTT (CYD system - French)", - "version": "13.0.1", + "version": "13.0.2", "grid": { "distance": 2, "units": "m" @@ -37,7 +37,7 @@ ], "license": "LICENSE.txt", "manifest": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/raw/branch/master/system.json", - "download": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/archive/fvtt-hawkmoon-cyd-13.0.1.zip", + "download": "https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/archive/fvtt-hawkmoon-cyd-13.0.2.zip", "languages": [ { "lang": "fr",