diff --git a/assets/ui/heritiers_background_01.webp b/assets/ui/heritiers_background_01.webp new file mode 100644 index 0000000..80705a6 Binary files /dev/null and b/assets/ui/heritiers_background_01.webp differ diff --git a/modules/heritiers-actor.js b/modules/heritiers-actor.js index d657c04..c3c2c63 100644 --- a/modules/heritiers-actor.js +++ b/modules/heritiers-actor.js @@ -73,7 +73,7 @@ export class HeritiersActor extends Actor { getOtherMeleeWeapons(excludeArme) { let armes = [] for (let arme of this.items) { - if ( HeritiersUtility.isArmeMelee(arme) && arme.id != excludeArme._id) { + if (HeritiersUtility.isArmeMelee(arme) && arme.id != excludeArme._id) { armes.push(this.prepareArme(arme)) } } @@ -152,7 +152,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ prepareUtileSkill(item) { let specList = [] - if (item && item.system.categorie && item.system.categorie == "utile") { + if (item?.system?.categorie == "utile") { for (let spec of item.system.specialites) { specList.push(spec.name) } @@ -278,7 +278,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ async equipItem(itemId) { let item = this.items.find(item => item.id == itemId) - if (item && item.system) { + if (item?.system) { let update = { _id: item.id, "system.equipped": !item.system.equipped } await this.updateEmbeddedDocuments('Item', [update]); // Updates one EmbeddedEntity } @@ -339,7 +339,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ async equipGear(equipmentId) { let item = this.items.find(item => item.id == equipmentId); - if (item && item.system.data) { + if (item?.system) { let update = { _id: item.id, "system.equipped": !item.system.equipped }; await this.updateEmbeddedDocuments('Item', [update]); // Updates one EmbeddedEntity } @@ -501,7 +501,7 @@ export class HeritiersActor extends Actor { incDecTricherie(value) { let tricherie = this.system.rang.tricherie tricherie.value += value - if ( tricherie.value < 0 || tricherie.value > tricherie.max) { + if (tricherie.value < 0 || tricherie.value > tricherie.max) { ui.notifications.warn("Pas assez de points de Tricherie !") return false } @@ -512,9 +512,9 @@ export class HeritiersActor extends Actor { } /* -------------------------------------------- */ getPireCompetence(compName1, compName2) { - let comp1 = this.items.find( it => it.name == compName1) - let comp2 = this.items.find( it => it.name == compName2) - if ( comp1 && comp2 ) { + let comp1 = this.items.find(it => it.name == compName1) + let comp2 = this.items.find(it => it.name == compName2) + if (comp1 && comp2) { if (comp1.system.niveau > comp2.system.niveau) { return comp1 } else { @@ -547,7 +547,7 @@ export class HeritiersActor extends Actor { } if (compName) { rollData.competence = duplicate(this.items.find(item => item.name.toLowerCase() == compName.toLowerCase()) || {}) - if (rollData.competence && rollData.competence.name) { + if (rollData.competence?.name) { this.prepareUtileSkill(rollData.competence) rollData.actionImg = rollData.competence?.img } else { @@ -595,7 +595,6 @@ export class HeritiersActor extends Actor { async rollRootCompetence(compKey) { let rollData = this.getCommonRollData() rollData.mode = "competence" - console.log("Compkey", compKey) rollData.competence = { name: this.system.competences[compKey].label, system: { niveau: this.system.competences[compKey].niveau } } console.log("RollDatra", rollData) let rollDialog = await HeritiersRollDialog.create(this, rollData) @@ -619,7 +618,7 @@ export class HeritiersActor extends Actor { arme.system.isMelee = HeritiersUtility.isArmeMelee(arme) let competenceName = "Tir" let key = "prec" - if ( arme.system.isMelee) { + if (arme.system.isMelee) { competenceName = "Mêlée" key = "agi" } @@ -629,7 +628,7 @@ export class HeritiersActor extends Actor { rollData.arme = arme rollData.mode = "arme" rollData.armes = this.getOtherMeleeWeapons(arme) - if (rollData.defenderTokenId && arme.system.isMelee ) { + if (rollData.defenderTokenId && arme.system.isMelee) { rollData.cacheDifficulte = true } console.log(">>>> ARME", rollData) @@ -651,7 +650,7 @@ export class HeritiersActor extends Actor { rollData.arme = duplicate(arme) rollData.mode = "attaquebrutale" rollData.armes = this.getOtherMeleeWeapons(arme) - rollData.rulesMalus.push({ name: "Attaque brutale", value: -2 } ) + rollData.rulesMalus.push({ name: "Attaque brutale", value: -2 }) let rollDialog = await HeritiersRollDialog.create(this, rollData) rollDialog.render(true) } @@ -673,7 +672,7 @@ export class HeritiersActor extends Actor { rollDialog.render(true) } } - + /* -------------------------------------------- */ async rollAssomerArme(armeId) { let arme = this.items.get(armeId) diff --git a/modules/heritiers-main.js b/modules/heritiers-main.js index a2af681..c93b73f 100644 --- a/modules/heritiers-main.js +++ b/modules/heritiers-main.js @@ -78,6 +78,17 @@ function welcomeMessage() { ` }); } +/* -------------------------------------------- */ +async function importDefaultScene() { + let exists = game.scenes.find(j => j.name == "Accueil"); + if (!exists) { + const scenes = await HeritiersUtility.loadCompendium("fvtt-les-heritiers.scenes") + let newDocuments = scenes.filter(i => i.name == "Accueil"); + await game.scenes.documentClass.create(newDocuments); + game.scenes.find(i => i.name == "Accueil").activate(); + } +} + /* -------------------------------------------- */ /* Foundry VTT Initialization */ @@ -101,7 +112,8 @@ Hooks.once("ready", function () { }).catch(err=> console.log("No stats available, giving up.") ) - welcomeMessage() + welcomeMessage(); + importDefaultScene(); }); @@ -112,7 +124,7 @@ Hooks.on("chatMessage", (html, content, msg) => { if (content[0] == '/') { let regExp = /(\S+)/g; let commands = content.match(regExp); - if (game.system.mournblade.commands.processChatCommand(commands, content, msg)) { + if (game.system.lesheritiers.commands.processChatCommand(commands, content, msg)) { return false; } } diff --git a/modules/heritiers-roll-dialog.js b/modules/heritiers-roll-dialog.js index 04602c1..60d7e85 100644 --- a/modules/heritiers-roll-dialog.js +++ b/modules/heritiers-roll-dialog.js @@ -18,18 +18,25 @@ export class HeritiersRollDialog extends Dialog { icon: '', label: "Lancer 1d8", callback: () => { this.roll("d8") } - }, - rolld10: { + } + } + let enableD10D12 = true + if (rollData.competence?.system.niveau == 0) { + enableD10D12 = false + } + if (enableD10D12) { + buttons.rolld10 = { icon: '', label: "Lancer 1d10", callback: () => { this.roll("d10") } - }, - rolld12: { + } + buttons.rolld12 = { icon: '', label: "Lancer 1d12", callback: () => { this.roll("d12") } } } + if (rollData.tricherie) { buttons["rollTricherie"] = { icon: '', @@ -55,7 +62,7 @@ export class HeritiersRollDialog extends Dialog { buttons: buttons, close: close } - // Overwrite in case of carac only -> 1d10 + // Overwrite in case of carac only -> 1d8 if (rollData.mode == "carac") { conf.buttons = { rolld8: { diff --git a/modules/heritiers-utility.js b/modules/heritiers-utility.js index 5f9603c..7adad9d 100644 --- a/modules/heritiers-utility.js +++ b/modules/heritiers-utility.js @@ -485,7 +485,7 @@ export class HeritiersUtility { rangValue = rollData.rang.value } if (rollData.competence) { - let compmod = (rollData.competence.system.niveau == 0) ? -3 : 0 + let compmod = 0 // Bonus de compétence à 0 dans Les Heritiers let specBonus = (rollData.useSpecialite) ? 1 : 0 rollData.diceFormula += `+${rollData.carac.value}+${rangValue}+${rollData.competence.system.niveau}+${specBonus}+${rollData.bonusMalusContext}+${compmod}` } else if (rollData.pouvoirBase) { diff --git a/packs/archetypes-fees/000020.log b/packs/archetypes-fees/000040.log similarity index 100% rename from packs/archetypes-fees/000020.log rename to packs/archetypes-fees/000040.log diff --git a/packs/archetypes-fees/CURRENT b/packs/archetypes-fees/CURRENT index e417a51..59611b0 100644 --- a/packs/archetypes-fees/CURRENT +++ b/packs/archetypes-fees/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/archetypes-fees/LOG b/packs/archetypes-fees/LOG index ccea26d..689f953 100644 --- a/packs/archetypes-fees/LOG +++ b/packs/archetypes-fees/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.770355 7f3e98c006c0 Recovering log #16 -2024/03/01-13:35:49.820661 7f3e98c006c0 Delete type=3 #14 -2024/03/01-13:35:49.820788 7f3e98c006c0 Delete type=0 #16 -2024/03/01-13:36:10.446191 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.446215 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.452205 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.452327 7f3e938006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.452360 7f3e938006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.568521 7f0ad34006c0 Recovering log #36 +2024/03/06-18:44:25.578793 7f0ad34006c0 Delete type=3 #34 +2024/03/06-18:44:25.578840 7f0ad34006c0 Delete type=0 #36 +2024/03/06-18:46:24.175017 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.175038 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.182284 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.188691 7f0ad20006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.195894 7f0ad20006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) diff --git a/packs/archetypes-fees/LOG.old b/packs/archetypes-fees/LOG.old index c0ca993..1236319 100644 --- a/packs/archetypes-fees/LOG.old +++ b/packs/archetypes-fees/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.193927 7f3e98c006c0 Recovering log #12 -2024/03/01-13:34:57.261110 7f3e98c006c0 Delete type=3 #10 -2024/03/01-13:34:57.261235 7f3e98c006c0 Delete type=0 #12 -2024/03/01-13:35:13.036646 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.036686 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.069486 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.171699 7f3e938006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.171745 7f3e938006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.774853 7f0ad34006c0 Recovering log #32 +2024/03/06-18:38:24.785470 7f0ad34006c0 Delete type=3 #30 +2024/03/06-18:38:24.785662 7f0ad34006c0 Delete type=0 #32 +2024/03/06-18:42:43.343014 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.343041 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.348988 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.349144 7f0ad20006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.349169 7f0ad20006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) diff --git a/packs/archetypes-fees/MANIFEST-000018 b/packs/archetypes-fees/MANIFEST-000018 deleted file mode 100644 index e6581db..0000000 Binary files a/packs/archetypes-fees/MANIFEST-000018 and /dev/null differ diff --git a/packs/archetypes-fees/MANIFEST-000038 b/packs/archetypes-fees/MANIFEST-000038 new file mode 100644 index 0000000..a84ed94 Binary files /dev/null and b/packs/archetypes-fees/MANIFEST-000038 differ diff --git a/packs/armes-et-protection/000020.log b/packs/armes-et-protection/000040.log similarity index 100% rename from packs/armes-et-protection/000020.log rename to packs/armes-et-protection/000040.log diff --git a/packs/armes-et-protection/CURRENT b/packs/armes-et-protection/CURRENT index e417a51..59611b0 100644 --- a/packs/armes-et-protection/CURRENT +++ b/packs/armes-et-protection/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/armes-et-protection/LOG b/packs/armes-et-protection/LOG index 14862f7..0a99862 100644 --- a/packs/armes-et-protection/LOG +++ b/packs/armes-et-protection/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.877624 7f3e98c006c0 Recovering log #16 -2024/03/01-13:35:49.947094 7f3e98c006c0 Delete type=3 #14 -2024/03/01-13:35:49.947235 7f3e98c006c0 Delete type=0 #16 -2024/03/01-13:36:10.465743 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.465774 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.471945 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.479764 7f3e938006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.479792 7f3e938006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.594975 7f0ad34006c0 Recovering log #36 +2024/03/06-18:44:25.604899 7f0ad34006c0 Delete type=3 #34 +2024/03/06-18:44:25.605412 7f0ad34006c0 Delete type=0 #36 +2024/03/06-18:46:24.188713 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.188737 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.195790 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.202331 7f0ad20006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.209583 7f0ad20006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) diff --git a/packs/armes-et-protection/LOG.old b/packs/armes-et-protection/LOG.old index 583ef65..b1adaf8 100644 --- a/packs/armes-et-protection/LOG.old +++ b/packs/armes-et-protection/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.323675 7f3e98c006c0 Recovering log #12 -2024/03/01-13:34:57.383254 7f3e98c006c0 Delete type=3 #10 -2024/03/01-13:34:57.383381 7f3e98c006c0 Delete type=0 #12 -2024/03/01-13:35:13.131102 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.131128 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.171492 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.171737 7f3e938006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.171766 7f3e938006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.800967 7f0ad34006c0 Recovering log #32 +2024/03/06-18:38:24.811663 7f0ad34006c0 Delete type=3 #30 +2024/03/06-18:38:24.811726 7f0ad34006c0 Delete type=0 #32 +2024/03/06-18:42:43.329313 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.329342 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.335373 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.349122 7f0ad20006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.349153 7f0ad20006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) diff --git a/packs/armes-et-protection/MANIFEST-000018 b/packs/armes-et-protection/MANIFEST-000018 deleted file mode 100644 index d1fb4b4..0000000 Binary files a/packs/armes-et-protection/MANIFEST-000018 and /dev/null differ diff --git a/packs/armes-et-protection/MANIFEST-000038 b/packs/armes-et-protection/MANIFEST-000038 new file mode 100644 index 0000000..d28ebbc Binary files /dev/null and b/packs/armes-et-protection/MANIFEST-000038 differ diff --git a/packs/atouts-feeriques/000020.log b/packs/atouts-feeriques/000040.log similarity index 100% rename from packs/atouts-feeriques/000020.log rename to packs/atouts-feeriques/000040.log diff --git a/packs/atouts-feeriques/CURRENT b/packs/atouts-feeriques/CURRENT index e417a51..59611b0 100644 --- a/packs/atouts-feeriques/CURRENT +++ b/packs/atouts-feeriques/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/atouts-feeriques/LOG b/packs/atouts-feeriques/LOG index 3c9392f..7a13d01 100644 --- a/packs/atouts-feeriques/LOG +++ b/packs/atouts-feeriques/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.709701 7f3e9aa006c0 Recovering log #16 -2024/03/01-13:35:49.766760 7f3e9aa006c0 Delete type=3 #14 -2024/03/01-13:35:49.767209 7f3e9aa006c0 Delete type=0 #16 -2024/03/01-13:36:10.439256 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.439284 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.446107 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.452317 7f3e938006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.452388 7f3e938006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.556505 7f0ad94006c0 Recovering log #36 +2024/03/06-18:44:25.565851 7f0ad94006c0 Delete type=3 #34 +2024/03/06-18:44:25.565906 7f0ad94006c0 Delete type=0 #36 +2024/03/06-18:46:24.168720 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.168740 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.174891 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.182563 7f0ad20006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.188703 7f0ad20006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) diff --git a/packs/atouts-feeriques/LOG.old b/packs/atouts-feeriques/LOG.old index 61ef4a8..df66d02 100644 --- a/packs/atouts-feeriques/LOG.old +++ b/packs/atouts-feeriques/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.130341 7f3e9a0006c0 Recovering log #12 -2024/03/01-13:34:57.191001 7f3e9a0006c0 Delete type=3 #10 -2024/03/01-13:34:57.191128 7f3e9a0006c0 Delete type=0 #12 -2024/03/01-13:35:13.096186 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.096214 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.130956 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.171727 7f3e938006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.171759 7f3e938006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.762318 7f0ad3e006c0 Recovering log #32 +2024/03/06-18:38:24.771804 7f0ad3e006c0 Delete type=3 #30 +2024/03/06-18:38:24.772061 7f0ad3e006c0 Delete type=0 #32 +2024/03/06-18:42:43.316209 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.316229 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.322596 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.322731 7f0ad20006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.322763 7f0ad20006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) diff --git a/packs/atouts-feeriques/MANIFEST-000018 b/packs/atouts-feeriques/MANIFEST-000018 deleted file mode 100644 index 03ce40b..0000000 Binary files a/packs/atouts-feeriques/MANIFEST-000018 and /dev/null differ diff --git a/packs/atouts-feeriques/MANIFEST-000038 b/packs/atouts-feeriques/MANIFEST-000038 new file mode 100644 index 0000000..15336d6 Binary files /dev/null and b/packs/atouts-feeriques/MANIFEST-000038 differ diff --git a/packs/avantages/000020.log b/packs/avantages/000040.log similarity index 100% rename from packs/avantages/000020.log rename to packs/avantages/000040.log diff --git a/packs/avantages/CURRENT b/packs/avantages/CURRENT index e417a51..59611b0 100644 --- a/packs/avantages/CURRENT +++ b/packs/avantages/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/avantages/LOG b/packs/avantages/LOG index 1ff9f71..a69fdde 100644 --- a/packs/avantages/LOG +++ b/packs/avantages/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.547114 7f3e98c006c0 Recovering log #16 -2024/03/01-13:35:49.595803 7f3e98c006c0 Delete type=3 #14 -2024/03/01-13:35:49.595860 7f3e98c006c0 Delete type=0 #16 -2024/03/01-13:36:10.411885 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.411957 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.418341 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.425822 7f3e938006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.425882 7f3e938006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.520679 7f0ad34006c0 Recovering log #36 +2024/03/06-18:44:25.530573 7f0ad34006c0 Delete type=3 #34 +2024/03/06-18:44:25.530645 7f0ad34006c0 Delete type=0 #36 +2024/03/06-18:46:24.149265 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.149287 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.155653 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.161941 7f0ad20006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.168702 7f0ad20006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/LOG.old b/packs/avantages/LOG.old index b0eb995..c4d6936 100644 --- a/packs/avantages/LOG.old +++ b/packs/avantages/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:56.954248 7f3e98c006c0 Recovering log #12 -2024/03/01-13:34:57.011080 7f3e98c006c0 Delete type=3 #10 -2024/03/01-13:34:57.011144 7f3e98c006c0 Delete type=0 #12 -2024/03/01-13:35:12.939659 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:12.939738 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:12.974003 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.035982 7f3e938006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.036482 7f3e938006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.726349 7f0ad34006c0 Recovering log #32 +2024/03/06-18:38:24.736299 7f0ad34006c0 Delete type=3 #30 +2024/03/06-18:38:24.736397 7f0ad34006c0 Delete type=0 #32 +2024/03/06-18:42:43.296768 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.296798 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.302818 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.316198 7f0ad20006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.322723 7f0ad20006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/MANIFEST-000018 b/packs/avantages/MANIFEST-000018 deleted file mode 100644 index e56e256..0000000 Binary files a/packs/avantages/MANIFEST-000018 and /dev/null differ diff --git a/packs/avantages/MANIFEST-000038 b/packs/avantages/MANIFEST-000038 new file mode 100644 index 0000000..cbf1fc7 Binary files /dev/null and b/packs/avantages/MANIFEST-000038 differ diff --git a/packs/capacites/000020.log b/packs/capacites/000040.log similarity index 100% rename from packs/capacites/000020.log rename to packs/capacites/000040.log diff --git a/packs/capacites/CURRENT b/packs/capacites/CURRENT index e417a51..59611b0 100644 --- a/packs/capacites/CURRENT +++ b/packs/capacites/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/capacites/LOG b/packs/capacites/LOG index eaf8959..f688066 100644 --- a/packs/capacites/LOG +++ b/packs/capacites/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.658872 7f3e98c006c0 Recovering log #16 -2024/03/01-13:35:49.707855 7f3e98c006c0 Delete type=3 #14 -2024/03/01-13:35:49.707911 7f3e98c006c0 Delete type=0 #16 -2024/03/01-13:36:10.432984 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.433037 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.439150 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.452306 7f3e938006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.452370 7f3e938006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.544510 7f0ad34006c0 Recovering log #36 +2024/03/06-18:44:25.554577 7f0ad34006c0 Delete type=3 #34 +2024/03/06-18:44:25.554623 7f0ad34006c0 Delete type=0 #36 +2024/03/06-18:46:24.161959 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.161984 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.168612 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.174998 7f0ad20006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.182577 7f0ad20006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/LOG.old b/packs/capacites/LOG.old index 0721fc2..84fb053 100644 --- a/packs/capacites/LOG.old +++ b/packs/capacites/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.069127 7f3e98c006c0 Recovering log #12 -2024/03/01-13:34:57.128156 7f3e98c006c0 Delete type=3 #10 -2024/03/01-13:34:57.128288 7f3e98c006c0 Delete type=0 #12 -2024/03/01-13:35:13.001485 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.001516 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.035725 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.036461 7f3e938006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.036517 7f3e938006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.750612 7f0ad34006c0 Recovering log #32 +2024/03/06-18:38:24.760735 7f0ad34006c0 Delete type=3 #30 +2024/03/06-18:38:24.760785 7f0ad34006c0 Delete type=0 #32 +2024/03/06-18:42:43.302940 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.302963 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.309925 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.322702 7f0ad20006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.322749 7f0ad20006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/MANIFEST-000018 b/packs/capacites/MANIFEST-000018 deleted file mode 100644 index af52c2f..0000000 Binary files a/packs/capacites/MANIFEST-000018 and /dev/null differ diff --git a/packs/capacites/MANIFEST-000038 b/packs/capacites/MANIFEST-000038 new file mode 100644 index 0000000..c94b87b Binary files /dev/null and b/packs/capacites/MANIFEST-000038 differ diff --git a/packs/competences/000020.log b/packs/competences/000040.log similarity index 100% rename from packs/competences/000020.log rename to packs/competences/000040.log diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index e417a51..59611b0 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/competences/LOG b/packs/competences/LOG index 5d6ba2b..aa767d4 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.479811 7f3e9aa006c0 Recovering log #16 -2024/03/01-13:35:49.544828 7f3e9aa006c0 Delete type=3 #14 -2024/03/01-13:35:49.544928 7f3e9aa006c0 Delete type=0 #16 -2024/03/01-13:36:10.418433 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.418602 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.425565 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.425844 7f3e938006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.425914 7f3e938006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.508577 7f0ad94006c0 Recovering log #36 +2024/03/06-18:44:25.518629 7f0ad94006c0 Delete type=3 #34 +2024/03/06-18:44:25.518679 7f0ad94006c0 Delete type=0 #36 +2024/03/06-18:46:24.142406 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.142437 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.149137 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.155816 7f0ad20006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.161951 7f0ad20006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index 1d7a756..63b220e 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:56.891960 7f3e9a0006c0 Recovering log #12 -2024/03/01-13:34:56.952223 7f3e9a0006c0 Delete type=3 #10 -2024/03/01-13:34:56.952276 7f3e9a0006c0 Delete type=0 #12 -2024/03/01-13:35:12.891762 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:12.891808 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:12.939325 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.001466 7f3e938006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.036435 7f3e938006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.713502 7f0ad3e006c0 Recovering log #32 +2024/03/06-18:38:24.724430 7f0ad3e006c0 Delete type=3 #30 +2024/03/06-18:38:24.724484 7f0ad3e006c0 Delete type=0 #32 +2024/03/06-18:42:43.280171 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.280236 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.286427 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.286549 7f0ad20006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.296750 7f0ad20006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000018 b/packs/competences/MANIFEST-000018 deleted file mode 100644 index 95d01c1..0000000 Binary files a/packs/competences/MANIFEST-000018 and /dev/null differ diff --git a/packs/competences/MANIFEST-000038 b/packs/competences/MANIFEST-000038 new file mode 100644 index 0000000..319a9b9 Binary files /dev/null and b/packs/competences/MANIFEST-000038 differ diff --git a/packs/desavantages/000020.log b/packs/desavantages/000040.log similarity index 100% rename from packs/desavantages/000020.log rename to packs/desavantages/000040.log diff --git a/packs/desavantages/CURRENT b/packs/desavantages/CURRENT index e417a51..59611b0 100644 --- a/packs/desavantages/CURRENT +++ b/packs/desavantages/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/desavantages/LOG b/packs/desavantages/LOG index 4a44c3c..99d297f 100644 --- a/packs/desavantages/LOG +++ b/packs/desavantages/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.597718 7f3e9aa006c0 Recovering log #16 -2024/03/01-13:35:49.656819 7f3e9aa006c0 Delete type=3 #14 -2024/03/01-13:35:49.656888 7f3e9aa006c0 Delete type=0 #16 -2024/03/01-13:36:10.426091 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.426150 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.432817 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.452293 7f3e938006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.452380 7f3e938006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.532864 7f0ad94006c0 Recovering log #36 +2024/03/06-18:44:25.542781 7f0ad94006c0 Delete type=3 #34 +2024/03/06-18:44:25.542832 7f0ad94006c0 Delete type=0 #36 +2024/03/06-18:46:24.155844 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.155874 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.161851 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.168712 7f0ad20006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.175009 7f0ad20006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/LOG.old b/packs/desavantages/LOG.old index 6208771..b5c4cdd 100644 --- a/packs/desavantages/LOG.old +++ b/packs/desavantages/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.013189 7f3e9a0006c0 Recovering log #12 -2024/03/01-13:34:57.067039 7f3e9a0006c0 Delete type=3 #10 -2024/03/01-13:34:57.067094 7f3e9a0006c0 Delete type=0 #12 -2024/03/01-13:35:12.974222 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:12.974263 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.001195 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.036410 7f3e938006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.036499 7f3e938006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.738330 7f0ad3e006c0 Recovering log #32 +2024/03/06-18:38:24.748511 7f0ad3e006c0 Delete type=3 #30 +2024/03/06-18:38:24.748603 7f0ad3e006c0 Delete type=0 #32 +2024/03/06-18:42:43.310037 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.310060 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.316084 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.322714 7f0ad20006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.322757 7f0ad20006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/MANIFEST-000018 b/packs/desavantages/MANIFEST-000018 deleted file mode 100644 index 37761a1..0000000 Binary files a/packs/desavantages/MANIFEST-000018 and /dev/null differ diff --git a/packs/desavantages/MANIFEST-000038 b/packs/desavantages/MANIFEST-000038 new file mode 100644 index 0000000..8243689 Binary files /dev/null and b/packs/desavantages/MANIFEST-000038 differ diff --git a/packs/pouvoirs/000020.log b/packs/pouvoirs/000040.log similarity index 100% rename from packs/pouvoirs/000020.log rename to packs/pouvoirs/000040.log diff --git a/packs/pouvoirs/CURRENT b/packs/pouvoirs/CURRENT index e417a51..59611b0 100644 --- a/packs/pouvoirs/CURRENT +++ b/packs/pouvoirs/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/pouvoirs/LOG b/packs/pouvoirs/LOG index 3f25b16..abd6429 100644 --- a/packs/pouvoirs/LOG +++ b/packs/pouvoirs/LOG @@ -1,8 +1,8 @@ -2024/03/01-13:35:49.823296 7f3e9aa006c0 Recovering log #16 -2024/03/01-13:35:49.873901 7f3e9aa006c0 Delete type=3 #14 -2024/03/01-13:35:49.874024 7f3e9aa006c0 Delete type=0 #16 -2024/03/01-13:36:10.459004 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.459035 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.465640 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.479753 7f3e938006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2024/03/01-13:36:10.479783 7f3e938006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.581915 7f0ad94006c0 Recovering log #36 +2024/03/06-18:44:25.592375 7f0ad94006c0 Delete type=3 #34 +2024/03/06-18:44:25.592428 7f0ad94006c0 Delete type=0 #36 +2024/03/06-18:46:24.182586 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.182611 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.188586 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.195882 7f0ad20006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.202340 7f0ad20006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/LOG.old b/packs/pouvoirs/LOG.old index c4c56b1..89c7c6b 100644 --- a/packs/pouvoirs/LOG.old +++ b/packs/pouvoirs/LOG.old @@ -1,8 +1,8 @@ -2024/03/01-13:34:57.263866 7f3e9a0006c0 Recovering log #12 -2024/03/01-13:34:57.319729 7f3e9a0006c0 Delete type=3 #10 -2024/03/01-13:34:57.319881 7f3e9a0006c0 Delete type=0 #12 -2024/03/01-13:35:13.069665 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.069694 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.096051 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.171715 7f3e938006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2024/03/01-13:35:13.171752 7f3e938006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.787435 7f0ad3e006c0 Recovering log #32 +2024/03/06-18:38:24.797940 7f0ad3e006c0 Delete type=3 #30 +2024/03/06-18:38:24.798012 7f0ad3e006c0 Delete type=0 #32 +2024/03/06-18:42:43.335473 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.335496 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.342907 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.349133 7f0ad20006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/03/06-18:42:43.349161 7f0ad20006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/MANIFEST-000018 b/packs/pouvoirs/MANIFEST-000018 deleted file mode 100644 index 35355f5..0000000 Binary files a/packs/pouvoirs/MANIFEST-000018 and /dev/null differ diff --git a/packs/pouvoirs/MANIFEST-000038 b/packs/pouvoirs/MANIFEST-000038 new file mode 100644 index 0000000..eb7c77a Binary files /dev/null and b/packs/pouvoirs/MANIFEST-000038 differ diff --git a/packs/profils/000020.log b/packs/profils/000040.log similarity index 100% rename from packs/profils/000020.log rename to packs/profils/000040.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index e417a51..59611b0 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000018 +MANIFEST-000038 diff --git a/packs/profils/LOG b/packs/profils/LOG index f8e0fab..8858c16 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,7 +1,7 @@ -2024/03/01-13:35:49.949648 7f3e9aa006c0 Recovering log #16 -2024/03/01-13:35:50.076340 7f3e9aa006c0 Delete type=3 #14 -2024/03/01-13:35:50.076419 7f3e9aa006c0 Delete type=0 #16 -2024/03/01-13:36:10.472046 7f3e938006c0 Level-0 table #21: started -2024/03/01-13:36:10.472076 7f3e938006c0 Level-0 table #21: 0 bytes OK -2024/03/01-13:36:10.479597 7f3e938006c0 Delete type=0 #19 -2024/03/01-13:36:10.479775 7f3e938006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/03/06-18:44:25.607498 7f0ad94006c0 Recovering log #36 +2024/03/06-18:44:25.619089 7f0ad94006c0 Delete type=3 #34 +2024/03/06-18:44:25.619169 7f0ad94006c0 Delete type=0 #36 +2024/03/06-18:46:24.195903 7f0ad20006c0 Level-0 table #41: started +2024/03/06-18:46:24.195928 7f0ad20006c0 Level-0 table #41: 0 bytes OK +2024/03/06-18:46:24.202215 7f0ad20006c0 Delete type=0 #39 +2024/03/06-18:46:24.209558 7f0ad20006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index c2af77b..f13317c 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,7 +1,7 @@ -2024/03/01-13:34:57.385730 7f3e9a0006c0 Recovering log #12 -2024/03/01-13:34:57.443076 7f3e9a0006c0 Delete type=3 #10 -2024/03/01-13:34:57.443339 7f3e9a0006c0 Delete type=0 #12 -2024/03/01-13:35:13.171839 7f3e938006c0 Level-0 table #17: started -2024/03/01-13:35:13.171865 7f3e938006c0 Level-0 table #17: 0 bytes OK -2024/03/01-13:35:13.201190 7f3e938006c0 Delete type=0 #15 -2024/03/01-13:35:13.233618 7f3e938006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/03/06-18:38:24.814232 7f0ad3e006c0 Recovering log #32 +2024/03/06-18:38:24.824843 7f0ad3e006c0 Delete type=3 #30 +2024/03/06-18:38:24.824931 7f0ad3e006c0 Delete type=0 #32 +2024/03/06-18:42:43.322942 7f0ad20006c0 Level-0 table #37: started +2024/03/06-18:42:43.322968 7f0ad20006c0 Level-0 table #37: 0 bytes OK +2024/03/06-18:42:43.329218 7f0ad20006c0 Delete type=0 #35 +2024/03/06-18:42:43.349108 7f0ad20006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000018 b/packs/profils/MANIFEST-000018 deleted file mode 100644 index 114f4c9..0000000 Binary files a/packs/profils/MANIFEST-000018 and /dev/null differ diff --git a/packs/profils/MANIFEST-000038 b/packs/profils/MANIFEST-000038 new file mode 100644 index 0000000..b8d6ce3 Binary files /dev/null and b/packs/profils/MANIFEST-000038 differ diff --git a/packs/scenes/000005.ldb b/packs/scenes/000005.ldb new file mode 100644 index 0000000..485a205 Binary files /dev/null and b/packs/scenes/000005.ldb differ diff --git a/packs/scenes/000008.log b/packs/scenes/000008.log new file mode 100644 index 0000000..e69de29 diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT new file mode 100644 index 0000000..f7753e2 --- /dev/null +++ b/packs/scenes/CURRENT @@ -0,0 +1 @@ +MANIFEST-000006 diff --git a/packs/scenes/LOCK b/packs/scenes/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/packs/scenes/LOG b/packs/scenes/LOG new file mode 100644 index 0000000..2ee7c5a --- /dev/null +++ b/packs/scenes/LOG @@ -0,0 +1,8 @@ +2024/03/06-18:44:25.621882 7f0ad34006c0 Recovering log #4 +2024/03/06-18:44:25.632172 7f0ad34006c0 Delete type=3 #2 +2024/03/06-18:44:25.632258 7f0ad34006c0 Delete type=0 #4 +2024/03/06-18:46:24.202350 7f0ad20006c0 Level-0 table #9: started +2024/03/06-18:46:24.202372 7f0ad20006c0 Level-0 table #9: 0 bytes OK +2024/03/06-18:46:24.209447 7f0ad20006c0 Delete type=0 #7 +2024/03/06-18:46:24.216156 7f0ad20006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) +2024/03/06-18:46:24.216180 7f0ad20006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old new file mode 100644 index 0000000..4e9e96a --- /dev/null +++ b/packs/scenes/LOG.old @@ -0,0 +1,5 @@ +2024/03/06-18:38:24.841322 7f0ad8a006c0 Delete type=3 #1 +2024/03/06-18:42:43.349231 7f0ad20006c0 Level-0 table #5: started +2024/03/06-18:42:43.352595 7f0ad20006c0 Level-0 table #5: 1578 bytes OK +2024/03/06-18:42:43.359762 7f0ad20006c0 Delete type=0 #3 +2024/03/06-18:42:43.366135 7f0ad20006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000006 b/packs/scenes/MANIFEST-000006 new file mode 100644 index 0000000..abc99e1 Binary files /dev/null and b/packs/scenes/MANIFEST-000006 differ diff --git a/system.json b/system.json index f3a2dbf..ee444ad 100644 --- a/system.json +++ b/system.json @@ -1,7 +1,7 @@ { "id": "fvtt-les-heritiers", "description": "Les Héritiers pour FoundryVTT", - "version": "11.0.6", + "version": "11.0.7", "authors": [ { "name": "Uberwald/LeRatierBretonnien", @@ -19,7 +19,7 @@ "gridUnits": "m", "license": "LICENSE.txt", "manifest": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/raw/branch/master/system.json", - "download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-11.0.6.zip", + "download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-11.0.7.zip", "languages": [ { "lang": "fr", @@ -60,7 +60,9 @@ ], "folders": [] } - ] + ], + "packs": + ["scenes"] } ], "packs": [ @@ -68,82 +70,121 @@ "type": "Item", "label": "Compétences", "name": "competences", - "path": "packs/competences.db", + "path": "packs/competences", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Avantages", "name": "avantages", - "path": "packs/avantages.db", + "path": "packs/avantages", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Désavantages", "name": "desavantages", - "path": "packs/desavantages.db", + "path": "packs/desavantages", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Capacités Naturelles", "name": "capacites", - "path": "packs/capacites.db", + "path": "packs/capacites", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Atouts Féériques", "name": "atouts-feeriques", - "path": "packs/atouts-feeriques.db", + "path": "packs/atouts-feeriques", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Fées", "name": "archetypes-fees", - "path": "packs/archetypes-fees.db", + "path": "packs/archetypes-fees", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Pouvoirs", "name": "pouvoirs", - "path": "packs/pouvoirs.db", + "path": "packs/pouvoirs", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Armes et Protections", "name": "armes-et-protection", - "path": "packs/armes-et-protection.db", + "path": "packs/armes-et-protection", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } }, { "type": "Item", "label": "Profils", "name": "profils", - "path": "packs/profils.db", + "path": "packs/profils", "system": "fvtt-les-heritiers", - "private": false, - "flags": {} + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } + }, + { + "type": "Scene", + "label": "Scènes", + "name": "scenes", + "path": "packs/scenes", + "system": "fvtt-les-heritiers", + "flags": {}, + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + } } ], "primaryTokenAttribute": "sante.vigueur", @@ -156,7 +197,7 @@ "url": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers", "background": "systems/fvtt-les-heritiers/assets/ui/wallpaper_foundry2.webp", "compatibility": { - "minimum": "11", + "minimum": "10", "verified": "11" } } \ No newline at end of file