diff --git a/modules/heritiers-actor-pnj-sheet.js b/modules/heritiers-actor-pnj-sheet.js index 1ab772b..a7cba87 100644 --- a/modules/heritiers-actor-pnj-sheet.js +++ b/modules/heritiers-actor-pnj-sheet.js @@ -12,7 +12,7 @@ export class HeritiersActorPNJSheet extends HeritiersActorSheet { /** @override */ static get defaultOptions() { - return mergeObject(super.defaultOptions, { + return foundry.utils.mergeObject(super.defaultOptions, { classes: ["fvtt-les-heritiers", "sheet", "actor"], template: "systems/fvtt-les-heritiers/templates/actor-pnj-sheet.html", width: 780, diff --git a/modules/heritiers-actor-sheet.js b/modules/heritiers-actor-sheet.js index fb48d76..9c1b7ad 100644 --- a/modules/heritiers-actor-sheet.js +++ b/modules/heritiers-actor-sheet.js @@ -11,7 +11,7 @@ export class HeritiersActorSheet extends ActorSheet { /** @override */ static get defaultOptions() { - return mergeObject(super.defaultOptions, { + return foundry.utils.mergeObject(super.defaultOptions, { classes: ["fvtt-les-heritiers", "sheet", "actor"], template: "systems/fvtt-les-heritiers/templates/actor-sheet.html", width: 780, @@ -24,7 +24,7 @@ export class HeritiersActorSheet extends ActorSheet { /* -------------------------------------------- */ async getData() { - const objectData = duplicate(this.object) + const objectData = foundry.utils.duplicate(this.object) let formData = { title: this.title, @@ -42,18 +42,18 @@ export class HeritiersActorSheet extends ActorSheet { utileSkillsPhysical :this.actor.organizeUtileSkills("physical"), futileSkills :this.actor.organizeFutileSkills(), contacts: this.actor.organizeContacts(), - armes: duplicate(this.actor.getWeapons()), - monnaies: duplicate(this.actor.getMonnaies()), - pouvoirs: duplicate(this.actor.getPouvoirs()), - fee: duplicate(this.actor.getFee() || {} ), - protections: duplicate(this.actor.getArmors()), + armes: foundry.utils.duplicate(this.actor.getWeapons()), + monnaies: foundry.utils.duplicate(this.actor.getMonnaies()), + pouvoirs: foundry.utils.duplicate(this.actor.getPouvoirs()), + fee: foundry.utils.duplicate(this.actor.getFee() || {} ), + protections: foundry.utils.duplicate(this.actor.getArmors()), combat: this.actor.getCombatValues(), - equipements: duplicate(this.actor.getEquipments()), - avantages: duplicate(this.actor.getAvantages()), - atouts: duplicate(this.actor.getAtouts()), - capacites: duplicate(this.actor.getCapacites()), - desavantages: duplicate(this.actor.getDesavantages()), - profils: duplicate(this.actor.getProfils()), + equipements: foundry.utils.duplicate(this.actor.getEquipments()), + avantages: foundry.utils.duplicate(this.actor.getAvantages()), + atouts: foundry.utils.duplicate(this.actor.getAtouts()), + capacites: foundry.utils.duplicate(this.actor.getCapacites()), + desavantages: foundry.utils.duplicate(this.actor.getDesavantages()), + profils: foundry.utils.duplicate(this.actor.getProfils()), pvMalus: this.actor.getPvMalus(), heritage: game.settings.get("fvtt-les-heritiers", "heritiers-heritage"), initiative: this.actor.getFlag("world", "last-initiative") || -1, diff --git a/modules/heritiers-actor.js b/modules/heritiers-actor.js index 61076a1..b3bf5d4 100644 --- a/modules/heritiers-actor.js +++ b/modules/heritiers-actor.js @@ -54,7 +54,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ prepareArme(arme) { - arme = duplicate(arme) + arme = foundry.utils.duplicate(arme) arme.system.isMelee = HeritiersUtility.isArmeMelee(arme) return arme } @@ -86,7 +86,7 @@ export class HeritiersActor extends Actor { /* ----------------------- --------------------- */ addMember(actorId) { - let members = duplicate(this.system.members) + let members = foundry.utils.duplicate(this.system.members) members.push({ id: actorId }) this.update({ 'system.members': members }) } @@ -138,7 +138,7 @@ export class HeritiersActor extends Actor { let pouvoirs = [] for (let item of this.items) { if (item.type == "pouvoir") { - let itemObj = duplicate(item) + let itemObj = foundry.utils.duplicate(item) itemObj.maxUsage = this.getPouvoirUsageMax(item) pouvoirs.push(itemObj) } @@ -151,7 +151,7 @@ export class HeritiersActor extends Actor { getSkills() { let comp = [] for (let item of this.items) { - item = duplicate(item) + item = foundry.utils.duplicate(item) if (item.type == "competence") { comp.push(item) } @@ -285,7 +285,7 @@ export class HeritiersActor extends Actor { getItemById(id) { let item = this.items.find(item => item.id == id); if (item) { - item = duplicate(item) + item = foundry.utils.duplicate(item) } return item; } @@ -343,7 +343,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ getCarac(attrKey) { - return duplicate(this.system.caracteristiques) + return foundry.utils.duplicate(this.system.caracteristiques) } /* -------------------------------------------- */ @@ -364,13 +364,13 @@ export class HeritiersActor extends Actor { getSubActors() { let subActors = []; for (let id of this.system.subactors) { - subActors.push(duplicate(game.actors.get(id))); + subActors.push(foundry.utils.duplicate(game.actors.get(id))); } return subActors; } /* -------------------------------------------- */ async addSubActor(subActorId) { - let subActors = duplicate(this.system.subactors); + let subActors = foundry.utils.duplicate(this.system.subactors); subActors.push(subActorId); await this.update({ 'system.subactors': subActors }); } @@ -392,7 +392,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ async incDecAdversite(adv, incDec = 0) { - let adversite = duplicate(this.system.adversite) + let adversite = foundry.utils.duplicate(this.system.adversite) adversite[adv] += Number(incDec) adversite[adv] = Math.max(adversite[adv], 0) this.update({ 'system.adversite': adversite }) @@ -439,7 +439,7 @@ export class HeritiersActor extends Actor { /* -------------------------------------------- */ async setPredilectionUsed(compId, predIdx) { let comp = this.items.get(compId) - let pred = duplicate(comp.system.predilections) + let pred = foundry.utils.duplicate(comp.system.predilections) pred[predIdx].used = true await this.updateEmbeddedDocuments('Item', [{ _id: compId, 'system.predilections': pred }]) } @@ -461,7 +461,7 @@ export class HeritiersActor extends Actor { } if (arme.system.totalDefensif > maxDef) { maxDef = arme.system.totalDefensif - bestArme = duplicate(arme) + bestArme = foundry.utils.duplicate(arme) } } return bestArme @@ -476,7 +476,7 @@ export class HeritiersActor extends Actor { for (let auto of talent.system.automations) { if (auto.eventtype === "prepare-roll") { if (auto.competence.toLowerCase() == competence.name.toLowerCase()) { - talent = duplicate(talent) + talent = foundry.utils.duplicate(talent) talent.system.bonus = auto.bonus talent.system.baCost = auto.baCost talents.push(talent) @@ -558,12 +558,12 @@ export class HeritiersActor extends Actor { rollData.rulesMalus.push(this.getPvMalus()) if (compId) { - rollData.competence = duplicate(this.items.get(compId) || {}) + rollData.competence = foundry.utils.duplicate(this.items.get(compId) || {}) this.prepareUtileSkill(rollData.competence) rollData.actionImg = rollData.competence?.img } if (compName) { - rollData.competence = duplicate(this.items.find(item => item.name.toLowerCase() == compName.toLowerCase()) || {}) + rollData.competence = foundry.utils.duplicate(this.items.find(item => item.name.toLowerCase() == compName.toLowerCase()) || {}) if (rollData.competence?.name) { this.prepareUtileSkill(rollData.competence) rollData.actionImg = rollData.competence?.img @@ -631,7 +631,7 @@ export class HeritiersActor extends Actor { async rollAttaqueArme(armeId) { let arme = this.items.get(armeId) if (arme) { - arme = duplicate(arme) + arme = foundry.utils.duplicate(arme) arme.system.isMelee = HeritiersUtility.isArmeMelee(arme) let competenceName = "Tir" let key = "prec" @@ -664,7 +664,7 @@ export class HeritiersActor extends Actor { let rollData = this.getCommonRollData(undefined, competenceName) rollData.carac = this.system.caracteristiques[key] rollData.caracKey = key - rollData.arme = duplicate(arme) + rollData.arme = foundry.utils.duplicate(arme) rollData.mode = "attaquebrutale" rollData.armes = this.getOtherMeleeWeapons(arme) rollData.rulesMalus.push({ name: "Attaque brutale", value: -2 }) @@ -682,7 +682,7 @@ export class HeritiersActor extends Actor { let rollData = this.getCommonRollData(undefined, pireCompetence.name) rollData.carac = this.system.caracteristiques[key] rollData.caracKey = key - rollData.arme = duplicate(arme) + rollData.arme = foundry.utils.duplicate(arme) rollData.armes = this.getOtherMeleeWeapons(arme) rollData.mode = "attaquecharge" let rollDialog = await HeritiersRollDialog.create(this, rollData) @@ -699,7 +699,7 @@ export class HeritiersActor extends Actor { let rollData = this.getCommonRollData(undefined, competenceName) rollData.carac = this.system.caracteristiques["agi"] rollData.caracKey = "agi" - rollData.arme = duplicate(arme) + rollData.arme = foundry.utils.duplicate(arme) rollData.mode = "assommer" if (rollData.defenderTokenId) { rollData.cacheDifficulte = true @@ -778,17 +778,17 @@ export class HeritiersActor extends Actor { let rollData = this.getCommonRollData(undefined, undefined) if (pouvoir.system.feeriemasque != "autre") { - rollData.pouvoirBase = duplicate(this.system.rang[pouvoir.system.feeriemasque.toLowerCase()]) + rollData.pouvoirBase = foundry.utils.duplicate(this.system.rang[pouvoir.system.feeriemasque.toLowerCase()]) rollData.pouvoirBase.label = "Féerie" if (!pouvoir.system.carac) { ui.notifications.warn("Le pouvoir actif " + pouvoir.name + " n'a pas de caractéristique associée") return } - rollData.carac = duplicate(this.system.caracteristiques[pouvoir.system.carac]) + rollData.carac = foundry.utils.duplicate(this.system.caracteristiques[pouvoir.system.carac]) rollData.caracKey = pouvoir.system.carac } rollData.pouvoirMaxUsage = this.getPouvoirUsageMax(pouvoir) - rollData.pouvoir = duplicate(pouvoir) + rollData.pouvoir = foundry.utils.duplicate(pouvoir) rollData.mode = "pouvoir" let rollDialog = await HeritiersRollDialog.create(this, rollData) rollDialog.render(true) diff --git a/modules/heritiers-config.js b/modules/heritiers-config.js index 47a5ed5..611432f 100644 --- a/modules/heritiers-config.js +++ b/modules/heritiers-config.js @@ -145,7 +145,55 @@ export const HERITIERS_CONFIG = { "traditionnelle": "Traditionnelle", "moderne": "Moderne", "orientale": "Orientale" - } + }, + typeContact: { + "contact": "Contact", + "allie": "Allié", + "ennemi": "Ennemi", + "interet": "Personne d'interêt" + }, + niveauContact: { + "1": "1", + "2": "2", + "3": "3", + }, + pointsUsageList: { + "1": "1", + "2": "2", + "3": "3", + "4": "4", + }, + attaquePlusieursList : { + "0": "0", + "1": "+1", + "2": "+2", + }, + attaque2ArmesListe: [ + {value: "0", label: "Aucun"}, + {value: "-4", label: "Deux armes à 1 main"}, + {value: "-2", label: "Deux armes naturelles"}, + {value: "-2", label: "Avec spécialisation \"Mauvaise Main\""} + ], + typeProfil: { + "mineur": "Mineur", + "majeur": "Majeur", + }, + bonusMalusContext: [ + {value: "-6", label: "-6"}, + {value: "-5", label: "-5"}, + {value: "-4", label: "-4"}, + {value: "-3", label: "-3"}, + {value: "-2", label: "-2"}, + {value: "-1", label: "-1"}, + {value: "0", label: "0"}, + {value: "1", label: "+1"}, + {value: "2", label: "+2"}, + {value: "3", label: "+3"}, + {value: "4", label: "+4"}, + {value: "5", label: "+5"}, + {value: "6", label: "+6"} + ], + listNiveau: [] } \ No newline at end of file diff --git a/modules/heritiers-creature-sheet.js b/modules/heritiers-creature-sheet.js deleted file mode 100644 index a1183ac..0000000 --- a/modules/heritiers-creature-sheet.js +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Extend the basic ActorSheet with some very simple modifications - * @extends {ActorSheet} - */ - - import { HeritiersActorSheet } from "./heritiers-actor-sheet.js"; -import { HeritiersUtility } from "./heritiers-utility.js"; - -/* -------------------------------------------- */ -export class HeritiersCreatureSheet extends HeritiersActorSheet { - - /** @override */ - static get defaultOptions() { - - return mergeObject(super.defaultOptions, { - classes: ["fvtt-les-heritiers", "sheet", "actor"], - template: "systems/fvtt-les-heritiers/templates/creature-sheet.html", - width: 640, - height: 720, - tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }], - dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }], - editScore: false - }) - } -} diff --git a/modules/heritiers-item-sheet.js b/modules/heritiers-item-sheet.js index a4cd2cd..d410577 100644 --- a/modules/heritiers-item-sheet.js +++ b/modules/heritiers-item-sheet.js @@ -9,7 +9,7 @@ export class HeritiersItemSheet extends ItemSheet { /** @override */ static get defaultOptions() { - return mergeObject(super.defaultOptions, { + return foundry.utils.mergeObject(super.defaultOptions, { classes: ["fvtt-les-heritiers", "sheet", "item"], template: "systems/fvtt-les-heritiers/templates/item-sheet.html", dragDrop: [{ dragSelector: null, dropSelector: null }], @@ -48,7 +48,7 @@ export class HeritiersItemSheet extends ItemSheet { /* -------------------------------------------- */ async getData() { - const objectData = duplicate(this.object) + const objectData = foundry.utils.duplicate(this.object) let formData = { title: this.title, id: this.id, @@ -96,7 +96,7 @@ export class HeritiersItemSheet extends ItemSheet { /* -------------------------------------------- */ postItem() { - let chatData = duplicate(HeritiersUtility.data(this.item)); + let chatData = foundry.utils.duplicate(HeritiersUtility.data(this.item)); if (this.actor) { chatData.actor = { id: this.actor.id }; } @@ -138,52 +138,52 @@ export class HeritiersItemSheet extends ItemSheet { }) html.find('#add-specialite').click(ev => { - let spec = duplicate(this.object.system.specialites) - spec.push( { name: "Nouvelle Spécialité", id: randomID(16), used: false }) + let spec = foundry.utils.duplicate(this.object.system.specialites) + spec.push( { name: "Nouvelle Spécialité", id: foundry.utils.randomID(16), used: false }) this.object.update( { 'system.specialites': spec }) }) html.find('.delete-specialite').click(ev => { const li = $(ev.currentTarget).parents(".specialite-item") let index = li.data("specialite-index") - let spec = duplicate(this.object.system.specialites) + let spec = foundry.utils.duplicate(this.object.system.specialites) spec.splice(index,1) this.object.update( { 'system.specialites': spec }) }) html.find('.edit-specialite').change(ev => { const li = $(ev.currentTarget).parents(".specialite-item") let index = li.data("specialite-index") - let spec = duplicate(this.object.system.specialites) + let spec = foundry.utils.duplicate(this.object.system.specialites) spec[index].name = ev.currentTarget.value - spec[index].id = spec[index].id || randomID(16) + spec[index].id = spec[index].id || foundry.utils.randomID(16) this.object.update( { 'system.specialites': spec }) }) html.find('.edit-specialite-description').change(ev => { const li = $(ev.currentTarget).parents(".specialite-item") let index = li.data("specialite-index") - let spec = duplicate(this.object.system.specialites) + let spec = foundry.utils.duplicate(this.object.system.specialites) spec[index].description = ev.currentTarget.value - spec[index].id = spec[index].id || randomID(16) + spec[index].id = spec[index].id || foundry.utils.randomID(16) this.object.update( { 'system.specialites': spec }) }) html.find('#add-automation').click(ev => { - let autom = duplicate(this.object.system.automations) - autom.push( { eventtype: "on-drop", name: "Automatisation 1", competence: "", minLevel: 0, id: randomID(16) }) + let autom = foundry.utils.duplicate(this.object.system.automations) + autom.push( { eventtype: "on-drop", name: "Automatisation 1", competence: "", minLevel: 0, id: foundry.utils.randomID(16) }) this.object.update( { 'system.automations': autom }) }) html.find('.delete-automation').click(ev => { const li = $(ev.currentTarget).parents(".automation-item") let index = li.data("automation-index") - let autom = duplicate(this.object.system.automations) + let autom = foundry.utils.duplicate(this.object.system.automations) autom.splice(index,1) this.object.update( { 'system.automations': autom }) }) html.find('.automation-edit-field').change(ev => { let index = $(ev.currentTarget).data("automation-index") let field = $(ev.currentTarget).data("automation-field") - let auto = duplicate(this.object.system.automations) + let auto = foundry.utils.duplicate(this.object.system.automations) auto[index][field] = ev.currentTarget.value - auto[index].id = auto[index].id || randomID(16) + auto[index].id = auto[index].id || foundry.utils.randomID(16) this.object.update( { 'system.automations': auto }) }) diff --git a/modules/heritiers-main.js b/modules/heritiers-main.js index c93b73f..b40a9a4 100644 --- a/modules/heritiers-main.js +++ b/modules/heritiers-main.js @@ -12,7 +12,6 @@ import { HeritiersActor } from "./heritiers-actor.js"; import { HeritiersItemSheet } from "./heritiers-item-sheet.js"; import { HeritiersActorSheet } from "./heritiers-actor-sheet.js"; import { HeritiersActorPNJSheet } from "./heritiers-actor-pnj-sheet.js"; -import { HeritiersCreatureSheet } from "./heritiers-creature-sheet.js"; import { HeritiersUtility } from "./heritiers-utility.js"; import { HeritiersCombat } from "./heritiers-combat.js"; import { HeritiersItem } from "./heritiers-item.js"; @@ -47,6 +46,10 @@ Hooks.once("init", async function () { CONFIG.Combat.documentClass = HeritiersCombat CONFIG.Actor.documentClass = HeritiersActor CONFIG.Item.documentClass = HeritiersItem + // Create an array of values from 0 to 10 + HERITIERS_CONFIG.listNiveau = Array.from({ length: 11 }, (v, k) => k) + // Create an object of bonus/malus from -6 to +6 signed + HERITIERS_CONFIG.bonusMalus = Array.from({ length: 7 }, (v, k) => k - 6) game.system.lesheritiers = { HeritiersUtility, config: HERITIERS_CONFIG diff --git a/modules/heritiers-utility.js b/modules/heritiers-utility.js index b8deea4..8be40c1 100644 --- a/modules/heritiers-utility.js +++ b/modules/heritiers-utility.js @@ -140,7 +140,7 @@ export class HeritiersUtility { let rollData = message.getFlag("world", "heritiers-roll") let actor = this.getActorFromRollData(rollData) await actor.setPredilectionUsed(rollData.competence._id, predIdx) - rollData.competence = duplicate(actor.getCompetence(rollData.competence._id)) + rollData.competence = foundry.utils.duplicate(actor.getCompetence(rollData.competence._id)) HeritiersUtility.rollHeritiers(rollData) }) @@ -252,7 +252,7 @@ export class HeritiersUtility { let id = rollData.rollId; let oldRollData = this.rollDataStore[id] || {}; - let newRollData = mergeObject(oldRollData, rollData); + let newRollData = foundry.utils.mergeObject(oldRollData, rollData); this.rollDataStore[id] = newRollData; } /* -------------------------------------------- */ @@ -391,7 +391,7 @@ export class HeritiersUtility { } } if ( !rollData.forcedValue) { - rollData.adjacentFaces = duplicate(__facesAdjacentes[rollData.mainDice][rollData.diceValue]) + rollData.adjacentFaces = foundry.utils.duplicate(__facesAdjacentes[rollData.mainDice][rollData.diceValue]) } } } @@ -477,7 +477,7 @@ export class HeritiersUtility { } //rollData.actionImg = "systems/fvtt-les-heritiers/assets/icons/" + actor.system.attributs[rollData.attrKey].labelnorm + ".webp" - rollData.carac = duplicate(actor.system.caracteristiques[rollData.caracKey]) + rollData.carac = foundry.utils.duplicate(actor.system.caracteristiques[rollData.caracKey]) if (rollData.forcedValue) { rollData.diceFormula = rollData.forcedValue @@ -536,9 +536,9 @@ export class HeritiersUtility { } if ( !rollData.noRoll) { - let myRoll = new Roll(rollData.diceFormula).roll({ async: false }) + let myRoll = await new Roll(rollData.diceFormula).roll() await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode")) - rollData.roll = duplicate(myRoll) + rollData.roll = foundry.utils.duplicate(myRoll) console.log(">>>> ", myRoll) this.computeResult(actor, rollData) this.computeMarge(rollData, rollData.sdValue) // Calcul de la marge si seuil présent @@ -583,9 +583,9 @@ export class HeritiersUtility { static async bonusRollHeritiers(rollData) { rollData.bonusFormula = rollData.addedBonus - let bonusRoll = new Roll(rollData.bonusFormula).roll({ async: false }) + let bonusRoll = await new Roll(rollData.bonusFormula).roll() await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode")); - rollData.bonusRoll = duplicate(bonusRoll) + rollData.bonusRoll = foundry.utils.duplicate(bonusRoll) rollData.finalResult += rollData.bonusRoll.total @@ -623,7 +623,7 @@ export class HeritiersUtility { /* -------------------------------------------- */ static blindMessageToGM(chatOptions) { - let chatGM = duplicate(chatOptions); + let chatGM = foundry.utils.duplicate(chatOptions); chatGM.whisper = this.getUsers(user => user.isGM); chatGM.content = "Blinde message of " + game.user.name + "
" + chatOptions.content; console.log("blindMessageToGM", chatGM); @@ -687,7 +687,7 @@ export class HeritiersUtility { /* -------------------------------------------- */ static getBasicRollData() { let rollData = { - rollId: randomID(16), + rollId: foundry.utils.randomID(16), rollMode: game.settings.get("core", "rollMode"), sdList: game.system.lesheritiers.config.seuilsDifficulte, sdValue: -1, diff --git a/packs/archetypes-fees/000005.ldb b/packs/archetypes-fees/000005.ldb deleted file mode 100644 index 642c092..0000000 Binary files a/packs/archetypes-fees/000005.ldb and /dev/null differ diff --git a/packs/archetypes-fees/000100.log b/packs/archetypes-fees/000104.log similarity index 100% rename from packs/archetypes-fees/000100.log rename to packs/archetypes-fees/000104.log diff --git a/packs/archetypes-fees/000106.ldb b/packs/archetypes-fees/000106.ldb new file mode 100644 index 0000000..43b7da8 Binary files /dev/null and b/packs/archetypes-fees/000106.ldb differ diff --git a/packs/archetypes-fees/CURRENT b/packs/archetypes-fees/CURRENT index 95395b2..e333c89 100644 --- a/packs/archetypes-fees/CURRENT +++ b/packs/archetypes-fees/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/archetypes-fees/LOG b/packs/archetypes-fees/LOG index 6c6628a..fb66901 100644 --- a/packs/archetypes-fees/LOG +++ b/packs/archetypes-fees/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.407753 7fcc5fe006c0 Recovering log #96 -2024/04/24-21:03:14.418285 7fcc5fe006c0 Delete type=3 #94 -2024/04/24-21:03:14.418386 7fcc5fe006c0 Delete type=0 #96 -2024/04/24-21:12:06.758987 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.759009 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.766071 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.772507 7fcc5e4006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.780581 7fcc5e4006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.623302 7f80456006c0 Recovering log #100 +2024/05/23-10:57:45.634017 7f80456006c0 Delete type=3 #98 +2024/05/23-10:57:45.634148 7f80456006c0 Delete type=0 #100 +2024/05/23-11:25:01.407869 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.412121 7f803fe006c0 Level-0 table #105: 76980 bytes OK +2024/05/23-11:25:01.418196 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.442441 7f803fe006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.466948 7f803fe006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at '!items!y1yOenfAJTsb3r6e' @ 62 : 1 +2024/05/23-11:25:01.466958 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.471640 7f803fe006c0 Generated table #106@1: 31 keys, 76980 bytes +2024/05/23-11:25:01.471673 7f803fe006c0 Compacted 1@1 + 1@2 files => 76980 bytes +2024/05/23-11:25:01.477983 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.478100 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.478228 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.488781 7f803fe006c0 Manual compaction at level-1 from '!items!y1yOenfAJTsb3r6e' @ 62 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) diff --git a/packs/archetypes-fees/LOG.old b/packs/archetypes-fees/LOG.old index 8387091..6c6628a 100644 --- a/packs/archetypes-fees/LOG.old +++ b/packs/archetypes-fees/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.195494 7fcc64a006c0 Recovering log #92 -2024/04/24-21:00:50.205751 7fcc64a006c0 Delete type=3 #90 -2024/04/24-21:00:50.205814 7fcc64a006c0 Delete type=0 #92 -2024/04/24-21:03:07.405442 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.405465 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.413456 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.434002 7fcc5e4006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.434046 7fcc5e4006c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.407753 7fcc5fe006c0 Recovering log #96 +2024/04/24-21:03:14.418285 7fcc5fe006c0 Delete type=3 #94 +2024/04/24-21:03:14.418386 7fcc5fe006c0 Delete type=0 #96 +2024/04/24-21:12:06.758987 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.759009 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.766071 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.772507 7fcc5e4006c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.780581 7fcc5e4006c0 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-000098 b/packs/archetypes-fees/MANIFEST-000098 deleted file mode 100644 index be9a689..0000000 Binary files a/packs/archetypes-fees/MANIFEST-000098 and /dev/null differ diff --git a/packs/archetypes-fees/MANIFEST-000102 b/packs/archetypes-fees/MANIFEST-000102 new file mode 100644 index 0000000..9c560fd Binary files /dev/null and b/packs/archetypes-fees/MANIFEST-000102 differ diff --git a/packs/armes-et-protection/000005.ldb b/packs/armes-et-protection/000005.ldb deleted file mode 100644 index 55db56a..0000000 Binary files a/packs/armes-et-protection/000005.ldb and /dev/null differ diff --git a/packs/armes-et-protection/000100.log b/packs/armes-et-protection/000104.log similarity index 100% rename from packs/armes-et-protection/000100.log rename to packs/armes-et-protection/000104.log diff --git a/packs/armes-et-protection/000106.ldb b/packs/armes-et-protection/000106.ldb new file mode 100644 index 0000000..3e2dc87 Binary files /dev/null and b/packs/armes-et-protection/000106.ldb differ diff --git a/packs/armes-et-protection/CURRENT b/packs/armes-et-protection/CURRENT index 95395b2..e333c89 100644 --- a/packs/armes-et-protection/CURRENT +++ b/packs/armes-et-protection/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/armes-et-protection/LOG b/packs/armes-et-protection/LOG index ef58131..e40a0bb 100644 --- a/packs/armes-et-protection/LOG +++ b/packs/armes-et-protection/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.434490 7fcc5fe006c0 Recovering log #96 -2024/04/24-21:03:14.445376 7fcc5fe006c0 Delete type=3 #94 -2024/04/24-21:03:14.445476 7fcc5fe006c0 Delete type=0 #96 -2024/04/24-21:12:06.780592 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.780614 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.786815 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.793537 7fcc5e4006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.800296 7fcc5e4006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.655135 7f8046a006c0 Recovering log #100 +2024/05/23-10:57:45.665774 7f8046a006c0 Delete type=3 #98 +2024/05/23-10:57:45.665849 7f8046a006c0 Delete type=0 #100 +2024/05/23-11:25:01.418338 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.422571 7f803fe006c0 Level-0 table #105: 17369 bytes OK +2024/05/23-11:25:01.428914 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.442459 7f803fe006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.478313 7f803fe006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at '!items!zbsVCsWxRzkzzG1N' @ 144 : 1 +2024/05/23-11:25:01.478324 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.482030 7f803fe006c0 Generated table #106@1: 72 keys, 17369 bytes +2024/05/23-11:25:01.482057 7f803fe006c0 Compacted 1@1 + 1@2 files => 17369 bytes +2024/05/23-11:25:01.488371 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.488544 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.488680 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.488790 7f803fe006c0 Manual compaction at level-1 from '!items!zbsVCsWxRzkzzG1N' @ 144 : 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 cf9fd53..ef58131 100644 --- a/packs/armes-et-protection/LOG.old +++ b/packs/armes-et-protection/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.225781 7fcc64a006c0 Recovering log #92 -2024/04/24-21:00:50.235570 7fcc64a006c0 Delete type=3 #90 -2024/04/24-21:00:50.235631 7fcc64a006c0 Delete type=0 #92 -2024/04/24-21:03:07.419889 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.419918 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.426864 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.434022 7fcc5e4006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.434058 7fcc5e4006c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.434490 7fcc5fe006c0 Recovering log #96 +2024/04/24-21:03:14.445376 7fcc5fe006c0 Delete type=3 #94 +2024/04/24-21:03:14.445476 7fcc5fe006c0 Delete type=0 #96 +2024/04/24-21:12:06.780592 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.780614 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.786815 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.793537 7fcc5e4006c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.800296 7fcc5e4006c0 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-000098 b/packs/armes-et-protection/MANIFEST-000098 deleted file mode 100644 index 84b4324..0000000 Binary files a/packs/armes-et-protection/MANIFEST-000098 and /dev/null differ diff --git a/packs/armes-et-protection/MANIFEST-000102 b/packs/armes-et-protection/MANIFEST-000102 new file mode 100644 index 0000000..150c4c9 Binary files /dev/null and b/packs/armes-et-protection/MANIFEST-000102 differ diff --git a/packs/atouts-feeriques/000005.ldb b/packs/atouts-feeriques/000005.ldb deleted file mode 100644 index b4afb2c..0000000 Binary files a/packs/atouts-feeriques/000005.ldb and /dev/null differ diff --git a/packs/atouts-feeriques/000100.log b/packs/atouts-feeriques/000104.log similarity index 100% rename from packs/atouts-feeriques/000100.log rename to packs/atouts-feeriques/000104.log diff --git a/packs/atouts-feeriques/000106.ldb b/packs/atouts-feeriques/000106.ldb new file mode 100644 index 0000000..387c9ba Binary files /dev/null and b/packs/atouts-feeriques/000106.ldb differ diff --git a/packs/atouts-feeriques/CURRENT b/packs/atouts-feeriques/CURRENT index 95395b2..e333c89 100644 --- a/packs/atouts-feeriques/CURRENT +++ b/packs/atouts-feeriques/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/atouts-feeriques/LOG b/packs/atouts-feeriques/LOG index d6f1793..89ced86 100644 --- a/packs/atouts-feeriques/LOG +++ b/packs/atouts-feeriques/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.394982 7fcc64a006c0 Recovering log #96 -2024/04/24-21:03:14.405041 7fcc64a006c0 Delete type=3 #94 -2024/04/24-21:03:14.405101 7fcc64a006c0 Delete type=0 #96 -2024/04/24-21:12:06.752178 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.752221 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.758834 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.766218 7fcc5e4006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.772523 7fcc5e4006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.608985 7f80460006c0 Recovering log #100 +2024/05/23-10:57:45.618959 7f80460006c0 Delete type=3 #98 +2024/05/23-10:57:45.619067 7f80460006c0 Delete type=0 #100 +2024/05/23-11:25:01.397161 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.401554 7f803fe006c0 Level-0 table #105: 63133 bytes OK +2024/05/23-11:25:01.407613 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.442406 7f803fe006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.442493 7f803fe006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at '!items!zvtBlG6KCIn0oCVk' @ 306 : 1 +2024/05/23-11:25:01.442500 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.447773 7f803fe006c0 Generated table #106@1: 153 keys, 63133 bytes +2024/05/23-11:25:01.447818 7f803fe006c0 Compacted 1@1 + 1@2 files => 63133 bytes +2024/05/23-11:25:01.453866 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.454036 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.454195 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.488757 7f803fe006c0 Manual compaction at level-1 from '!items!zvtBlG6KCIn0oCVk' @ 306 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) diff --git a/packs/atouts-feeriques/LOG.old b/packs/atouts-feeriques/LOG.old index 953693e..d6f1793 100644 --- a/packs/atouts-feeriques/LOG.old +++ b/packs/atouts-feeriques/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.181640 7fcc5fe006c0 Recovering log #92 -2024/04/24-21:00:50.191751 7fcc5fe006c0 Delete type=3 #90 -2024/04/24-21:00:50.191823 7fcc5fe006c0 Delete type=0 #92 -2024/04/24-21:03:07.391895 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.391918 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.398417 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.405331 7fcc5e4006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.405364 7fcc5e4006c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.394982 7fcc64a006c0 Recovering log #96 +2024/04/24-21:03:14.405041 7fcc64a006c0 Delete type=3 #94 +2024/04/24-21:03:14.405101 7fcc64a006c0 Delete type=0 #96 +2024/04/24-21:12:06.752178 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.752221 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.758834 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.766218 7fcc5e4006c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.772523 7fcc5e4006c0 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-000098 b/packs/atouts-feeriques/MANIFEST-000098 deleted file mode 100644 index 6afbf04..0000000 Binary files a/packs/atouts-feeriques/MANIFEST-000098 and /dev/null differ diff --git a/packs/atouts-feeriques/MANIFEST-000102 b/packs/atouts-feeriques/MANIFEST-000102 new file mode 100644 index 0000000..f048e76 Binary files /dev/null and b/packs/atouts-feeriques/MANIFEST-000102 differ diff --git a/packs/avantages/000005.ldb b/packs/avantages/000005.ldb deleted file mode 100644 index 5a67fb3..0000000 Binary files a/packs/avantages/000005.ldb and /dev/null differ diff --git a/packs/avantages/000100.log b/packs/avantages/000104.log similarity index 100% rename from packs/avantages/000100.log rename to packs/avantages/000104.log diff --git a/packs/avantages/000106.ldb b/packs/avantages/000106.ldb new file mode 100644 index 0000000..f052593 Binary files /dev/null and b/packs/avantages/000106.ldb differ diff --git a/packs/avantages/CURRENT b/packs/avantages/CURRENT index 95395b2..e333c89 100644 --- a/packs/avantages/CURRENT +++ b/packs/avantages/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/avantages/LOG b/packs/avantages/LOG index 7805d26..23b29ac 100644 --- a/packs/avantages/LOG +++ b/packs/avantages/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.357785 7fcc5fe006c0 Recovering log #96 -2024/04/24-21:03:14.368372 7fcc5fe006c0 Delete type=3 #94 -2024/04/24-21:03:14.368475 7fcc5fe006c0 Delete type=0 #96 -2024/04/24-21:12:06.730451 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.730536 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.737283 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.745838 7fcc5e4006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.752158 7fcc5e4006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.566585 7f80456006c0 Recovering log #100 +2024/05/23-10:57:45.576456 7f80456006c0 Delete type=3 #98 +2024/05/23-10:57:45.576513 7f80456006c0 Delete type=0 #100 +2024/05/23-11:25:01.323826 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.327636 7f803fe006c0 Level-0 table #105: 27634 bytes OK +2024/05/23-11:25:01.333591 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.354630 7f803fe006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.364975 7f803fe006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at '!items!zfpjROW9LDAlXUkN' @ 126 : 1 +2024/05/23-11:25:01.364987 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.368745 7f803fe006c0 Generated table #106@1: 63 keys, 27634 bytes +2024/05/23-11:25:01.368762 7f803fe006c0 Compacted 1@1 + 1@2 files => 27634 bytes +2024/05/23-11:25:01.375071 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.375332 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.375618 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.397027 7f803fe006c0 Manual compaction at level-1 from '!items!zfpjROW9LDAlXUkN' @ 126 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/LOG.old b/packs/avantages/LOG.old index f678687..7805d26 100644 --- a/packs/avantages/LOG.old +++ b/packs/avantages/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.139541 7fcc64a006c0 Recovering log #92 -2024/04/24-21:00:50.150459 7fcc64a006c0 Delete type=3 #90 -2024/04/24-21:00:50.150560 7fcc64a006c0 Delete type=0 #92 -2024/04/24-21:03:07.378965 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.378988 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.385088 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.405303 7fcc5e4006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.405350 7fcc5e4006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.357785 7fcc5fe006c0 Recovering log #96 +2024/04/24-21:03:14.368372 7fcc5fe006c0 Delete type=3 #94 +2024/04/24-21:03:14.368475 7fcc5fe006c0 Delete type=0 #96 +2024/04/24-21:12:06.730451 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.730536 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.737283 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.745838 7fcc5e4006c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.752158 7fcc5e4006c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end) diff --git a/packs/avantages/MANIFEST-000098 b/packs/avantages/MANIFEST-000098 deleted file mode 100644 index 2138d69..0000000 Binary files a/packs/avantages/MANIFEST-000098 and /dev/null differ diff --git a/packs/avantages/MANIFEST-000102 b/packs/avantages/MANIFEST-000102 new file mode 100644 index 0000000..1631443 Binary files /dev/null and b/packs/avantages/MANIFEST-000102 differ diff --git a/packs/capacites/000005.ldb b/packs/capacites/000005.ldb deleted file mode 100644 index 51ce702..0000000 Binary files a/packs/capacites/000005.ldb and /dev/null differ diff --git a/packs/capacites/000100.log b/packs/capacites/000104.log similarity index 100% rename from packs/capacites/000100.log rename to packs/capacites/000104.log diff --git a/packs/capacites/000106.ldb b/packs/capacites/000106.ldb new file mode 100644 index 0000000..759e8c6 Binary files /dev/null and b/packs/capacites/000106.ldb differ diff --git a/packs/capacites/CURRENT b/packs/capacites/CURRENT index 95395b2..e333c89 100644 --- a/packs/capacites/CURRENT +++ b/packs/capacites/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/capacites/LOG b/packs/capacites/LOG index 2a88f3a..3e2f2b5 100644 --- a/packs/capacites/LOG +++ b/packs/capacites/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.382877 7fcc5fe006c0 Recovering log #96 -2024/04/24-21:03:14.392582 7fcc5fe006c0 Delete type=3 #94 -2024/04/24-21:03:14.392719 7fcc5fe006c0 Delete type=0 #96 -2024/04/24-21:12:06.745861 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.745883 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.751942 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.758963 7fcc5e4006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.766233 7fcc5e4006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.594438 7f8046a006c0 Recovering log #100 +2024/05/23-10:57:45.605133 7f8046a006c0 Delete type=3 #98 +2024/05/23-10:57:45.605268 7f8046a006c0 Delete type=0 #100 +2024/05/23-11:25:01.333752 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.337048 7f803fe006c0 Level-0 table #105: 24250 bytes OK +2024/05/23-11:25:01.343059 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.354655 7f803fe006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.375782 7f803fe006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at '!items!yWDg2KlXEz33TSmZ' @ 72 : 1 +2024/05/23-11:25:01.375804 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.379818 7f803fe006c0 Generated table #106@1: 36 keys, 24250 bytes +2024/05/23-11:25:01.379847 7f803fe006c0 Compacted 1@1 + 1@2 files => 24250 bytes +2024/05/23-11:25:01.386783 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.386889 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.387092 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.397039 7f803fe006c0 Manual compaction at level-1 from '!items!yWDg2KlXEz33TSmZ' @ 72 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/LOG.old b/packs/capacites/LOG.old index 52bc64e..2a88f3a 100644 --- a/packs/capacites/LOG.old +++ b/packs/capacites/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.167153 7fcc64a006c0 Recovering log #92 -2024/04/24-21:00:50.178593 7fcc64a006c0 Delete type=3 #90 -2024/04/24-21:00:50.178677 7fcc64a006c0 Delete type=0 #92 -2024/04/24-21:03:07.398635 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.398683 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.405176 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.405342 7fcc5e4006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.405373 7fcc5e4006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.382877 7fcc5fe006c0 Recovering log #96 +2024/04/24-21:03:14.392582 7fcc5fe006c0 Delete type=3 #94 +2024/04/24-21:03:14.392719 7fcc5fe006c0 Delete type=0 #96 +2024/04/24-21:12:06.745861 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.745883 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.751942 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.758963 7fcc5e4006c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.766233 7fcc5e4006c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end) diff --git a/packs/capacites/MANIFEST-000098 b/packs/capacites/MANIFEST-000098 deleted file mode 100644 index 2f9209f..0000000 Binary files a/packs/capacites/MANIFEST-000098 and /dev/null differ diff --git a/packs/capacites/MANIFEST-000102 b/packs/capacites/MANIFEST-000102 new file mode 100644 index 0000000..1fc6d99 Binary files /dev/null and b/packs/capacites/MANIFEST-000102 differ diff --git a/packs/competences/000005.ldb b/packs/competences/000005.ldb deleted file mode 100644 index aa673e7..0000000 Binary files a/packs/competences/000005.ldb and /dev/null differ diff --git a/packs/competences/000100.log b/packs/competences/000104.log similarity index 100% rename from packs/competences/000100.log rename to packs/competences/000104.log diff --git a/packs/competences/000106.ldb b/packs/competences/000106.ldb new file mode 100644 index 0000000..3ca2bed Binary files /dev/null and b/packs/competences/000106.ldb differ diff --git a/packs/competences/CURRENT b/packs/competences/CURRENT index 95395b2..e333c89 100644 --- a/packs/competences/CURRENT +++ b/packs/competences/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/competences/LOG b/packs/competences/LOG index e5ff6df..ce4b4ec 100644 --- a/packs/competences/LOG +++ b/packs/competences/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.345134 7fcc64a006c0 Recovering log #96 -2024/04/24-21:03:14.355600 7fcc64a006c0 Delete type=3 #94 -2024/04/24-21:03:14.355657 7fcc64a006c0 Delete type=0 #96 -2024/04/24-21:12:06.723482 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.723520 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.730146 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.737428 7fcc5e4006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.745851 7fcc5e4006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.551260 7f80460006c0 Recovering log #100 +2024/05/23-10:57:45.562116 7f80460006c0 Delete type=3 #98 +2024/05/23-10:57:45.562204 7f80460006c0 Delete type=0 #100 +2024/05/23-11:25:01.313504 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.317069 7f803fe006c0 Level-0 table #105: 27947 bytes OK +2024/05/23-11:25:01.323555 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.354597 7f803fe006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.354715 7f803fe006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at '!items!zEl2NQsnCpELVWzh' @ 136 : 1 +2024/05/23-11:25:01.354732 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.358690 7f803fe006c0 Generated table #106@1: 68 keys, 27947 bytes +2024/05/23-11:25:01.358722 7f803fe006c0 Compacted 1@1 + 1@2 files => 27947 bytes +2024/05/23-11:25:01.364610 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.364754 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.364898 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.397013 7f803fe006c0 Manual compaction at level-1 from '!items!zEl2NQsnCpELVWzh' @ 136 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/LOG.old b/packs/competences/LOG.old index d14e690..e5ff6df 100644 --- a/packs/competences/LOG.old +++ b/packs/competences/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.125583 7fcc5fe006c0 Recovering log #92 -2024/04/24-21:00:50.136089 7fcc5fe006c0 Delete type=3 #90 -2024/04/24-21:00:50.136151 7fcc5fe006c0 Delete type=0 #92 -2024/04/24-21:03:07.371083 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.371109 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.378702 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.378854 7fcc5e4006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.378876 7fcc5e4006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.345134 7fcc64a006c0 Recovering log #96 +2024/04/24-21:03:14.355600 7fcc64a006c0 Delete type=3 #94 +2024/04/24-21:03:14.355657 7fcc64a006c0 Delete type=0 #96 +2024/04/24-21:12:06.723482 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.723520 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.730146 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.737428 7fcc5e4006c0 Manual compaction at level-0 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.745851 7fcc5e4006c0 Manual compaction at level-1 from '!items!0V86n4TU8NegrR2B' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end) diff --git a/packs/competences/MANIFEST-000098 b/packs/competences/MANIFEST-000098 deleted file mode 100644 index 8f81595..0000000 Binary files a/packs/competences/MANIFEST-000098 and /dev/null differ diff --git a/packs/competences/MANIFEST-000102 b/packs/competences/MANIFEST-000102 new file mode 100644 index 0000000..fff34a3 Binary files /dev/null and b/packs/competences/MANIFEST-000102 differ diff --git a/packs/desavantages/000005.ldb b/packs/desavantages/000005.ldb deleted file mode 100644 index eb37f82..0000000 Binary files a/packs/desavantages/000005.ldb and /dev/null differ diff --git a/packs/desavantages/000100.log b/packs/desavantages/000104.log similarity index 100% rename from packs/desavantages/000100.log rename to packs/desavantages/000104.log diff --git a/packs/desavantages/000106.ldb b/packs/desavantages/000106.ldb new file mode 100644 index 0000000..5b0ad28 Binary files /dev/null and b/packs/desavantages/000106.ldb differ diff --git a/packs/desavantages/CURRENT b/packs/desavantages/CURRENT index 95395b2..e333c89 100644 --- a/packs/desavantages/CURRENT +++ b/packs/desavantages/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/desavantages/LOG b/packs/desavantages/LOG index 4dd6375..9af673b 100644 --- a/packs/desavantages/LOG +++ b/packs/desavantages/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.370215 7fcc64a006c0 Recovering log #96 -2024/04/24-21:03:14.380871 7fcc64a006c0 Delete type=3 #94 -2024/04/24-21:03:14.380943 7fcc64a006c0 Delete type=0 #96 -2024/04/24-21:12:06.737478 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.737537 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.745719 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.752140 7fcc5e4006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.758974 7fcc5e4006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.580069 7f80474006c0 Recovering log #100 +2024/05/23-10:57:45.590125 7f80474006c0 Delete type=3 #98 +2024/05/23-10:57:45.590216 7f80474006c0 Delete type=0 #100 +2024/05/23-11:25:01.343215 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.347909 7f803fe006c0 Level-0 table #105: 32297 bytes OK +2024/05/23-11:25:01.354293 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.354677 7f803fe006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.387156 7f803fe006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at '!items!xzRJ6JP1HqoqxLdj' @ 130 : 1 +2024/05/23-11:25:01.387165 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.390635 7f803fe006c0 Generated table #106@1: 65 keys, 32297 bytes +2024/05/23-11:25:01.390672 7f803fe006c0 Compacted 1@1 + 1@2 files => 32297 bytes +2024/05/23-11:25:01.396695 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.396816 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.396942 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.397065 7f803fe006c0 Manual compaction at level-1 from '!items!xzRJ6JP1HqoqxLdj' @ 130 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/LOG.old b/packs/desavantages/LOG.old index 19d8034..4dd6375 100644 --- a/packs/desavantages/LOG.old +++ b/packs/desavantages/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.154218 7fcc5fe006c0 Recovering log #92 -2024/04/24-21:00:50.164265 7fcc5fe006c0 Delete type=3 #90 -2024/04/24-21:00:50.164327 7fcc5fe006c0 Delete type=0 #92 -2024/04/24-21:03:07.385211 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.385236 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.391768 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.405315 7fcc5e4006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.405356 7fcc5e4006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.370215 7fcc64a006c0 Recovering log #96 +2024/04/24-21:03:14.380871 7fcc64a006c0 Delete type=3 #94 +2024/04/24-21:03:14.380943 7fcc64a006c0 Delete type=0 #96 +2024/04/24-21:12:06.737478 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.737537 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.745719 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.752140 7fcc5e4006c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.758974 7fcc5e4006c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end) diff --git a/packs/desavantages/MANIFEST-000098 b/packs/desavantages/MANIFEST-000098 deleted file mode 100644 index bab042d..0000000 Binary files a/packs/desavantages/MANIFEST-000098 and /dev/null differ diff --git a/packs/desavantages/MANIFEST-000102 b/packs/desavantages/MANIFEST-000102 new file mode 100644 index 0000000..821e8eb Binary files /dev/null and b/packs/desavantages/MANIFEST-000102 differ diff --git a/packs/pouvoirs/000005.ldb b/packs/pouvoirs/000005.ldb deleted file mode 100644 index ab19aad..0000000 Binary files a/packs/pouvoirs/000005.ldb and /dev/null differ diff --git a/packs/pouvoirs/000100.log b/packs/pouvoirs/000104.log similarity index 100% rename from packs/pouvoirs/000100.log rename to packs/pouvoirs/000104.log diff --git a/packs/pouvoirs/000106.ldb b/packs/pouvoirs/000106.ldb new file mode 100644 index 0000000..fcee305 Binary files /dev/null and b/packs/pouvoirs/000106.ldb differ diff --git a/packs/pouvoirs/CURRENT b/packs/pouvoirs/CURRENT index 95395b2..e333c89 100644 --- a/packs/pouvoirs/CURRENT +++ b/packs/pouvoirs/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/pouvoirs/LOG b/packs/pouvoirs/LOG index 55777dd..6e7e2c8 100644 --- a/packs/pouvoirs/LOG +++ b/packs/pouvoirs/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.421201 7fcc64a006c0 Recovering log #96 -2024/04/24-21:03:14.431610 7fcc64a006c0 Delete type=3 #94 -2024/04/24-21:03:14.431661 7fcc64a006c0 Delete type=0 #96 -2024/04/24-21:12:06.766244 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.766271 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.772332 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.786941 7fcc5e4006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.793548 7fcc5e4006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.639116 7f80474006c0 Recovering log #100 +2024/05/23-10:57:45.650216 7f80474006c0 Delete type=3 #98 +2024/05/23-10:57:45.650332 7f80474006c0 Delete type=0 #100 +2024/05/23-11:25:01.429060 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.434691 7f803fe006c0 Level-0 table #105: 278813 bytes OK +2024/05/23-11:25:01.442092 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.442475 7f803fe006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.454285 7f803fe006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at '!items!zON0h5SjFyANjPnA' @ 270 : 1 +2024/05/23-11:25:01.454301 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.460432 7f803fe006c0 Generated table #106@1: 135 keys, 278813 bytes +2024/05/23-11:25:01.460474 7f803fe006c0 Compacted 1@1 + 1@2 files => 278813 bytes +2024/05/23-11:25:01.466560 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.466676 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.466841 7f803fe006c0 Delete type=2 #105 +2024/05/23-11:25:01.488770 7f803fe006c0 Manual compaction at level-1 from '!items!zON0h5SjFyANjPnA' @ 270 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/LOG.old b/packs/pouvoirs/LOG.old index 180a0fd..55777dd 100644 --- a/packs/pouvoirs/LOG.old +++ b/packs/pouvoirs/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.210067 7fcc5fe006c0 Recovering log #92 -2024/04/24-21:00:50.221093 7fcc5fe006c0 Delete type=3 #90 -2024/04/24-21:00:50.221151 7fcc5fe006c0 Delete type=0 #92 -2024/04/24-21:03:07.413577 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.413605 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.419750 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.434013 7fcc5e4006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.434051 7fcc5e4006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.421201 7fcc64a006c0 Recovering log #96 +2024/04/24-21:03:14.431610 7fcc64a006c0 Delete type=3 #94 +2024/04/24-21:03:14.431661 7fcc64a006c0 Delete type=0 #96 +2024/04/24-21:12:06.766244 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.766271 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.772332 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.786941 7fcc5e4006c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.793548 7fcc5e4006c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end) diff --git a/packs/pouvoirs/MANIFEST-000098 b/packs/pouvoirs/MANIFEST-000098 deleted file mode 100644 index e22ae1a..0000000 Binary files a/packs/pouvoirs/MANIFEST-000098 and /dev/null differ diff --git a/packs/pouvoirs/MANIFEST-000102 b/packs/pouvoirs/MANIFEST-000102 new file mode 100644 index 0000000..7129de8 Binary files /dev/null and b/packs/pouvoirs/MANIFEST-000102 differ diff --git a/packs/profils/000100.log b/packs/profils/000104.log similarity index 100% rename from packs/profils/000100.log rename to packs/profils/000104.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index 95395b2..e333c89 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs/profils/LOG b/packs/profils/LOG index 02696b1..924211d 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,7 +1,7 @@ -2024/04/24-21:03:14.447506 7fcc64a006c0 Recovering log #96 -2024/04/24-21:03:14.458045 7fcc64a006c0 Delete type=3 #94 -2024/04/24-21:03:14.458168 7fcc64a006c0 Delete type=0 #96 -2024/04/24-21:12:06.772537 7fcc5e4006c0 Level-0 table #101: started -2024/04/24-21:12:06.772571 7fcc5e4006c0 Level-0 table #101: 0 bytes OK -2024/04/24-21:12:06.780429 7fcc5e4006c0 Delete type=0 #99 -2024/04/24-21:12:06.786953 7fcc5e4006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.671074 7f80460006c0 Recovering log #100 +2024/05/23-10:57:45.681323 7f80460006c0 Delete type=3 #98 +2024/05/23-10:57:45.681382 7f80460006c0 Delete type=0 #100 +2024/05/23-11:25:01.496104 7f803fe006c0 Level-0 table #105: started +2024/05/23-11:25:01.496136 7f803fe006c0 Level-0 table #105: 0 bytes OK +2024/05/23-11:25:01.502167 7f803fe006c0 Delete type=0 #103 +2024/05/23-11:25:01.524678 7f803fe006c0 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 dc46dbd..02696b1 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,7 +1,7 @@ -2024/04/24-21:00:50.238991 7fcc5fe006c0 Recovering log #92 -2024/04/24-21:00:50.249789 7fcc5fe006c0 Delete type=3 #90 -2024/04/24-21:00:50.249856 7fcc5fe006c0 Delete type=0 #92 -2024/04/24-21:03:07.427061 7fcc5e4006c0 Level-0 table #97: started -2024/04/24-21:03:07.427101 7fcc5e4006c0 Level-0 table #97: 0 bytes OK -2024/04/24-21:03:07.433866 7fcc5e4006c0 Delete type=0 #95 -2024/04/24-21:03:07.434036 7fcc5e4006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.447506 7fcc64a006c0 Recovering log #96 +2024/04/24-21:03:14.458045 7fcc64a006c0 Delete type=3 #94 +2024/04/24-21:03:14.458168 7fcc64a006c0 Delete type=0 #96 +2024/04/24-21:12:06.772537 7fcc5e4006c0 Level-0 table #101: started +2024/04/24-21:12:06.772571 7fcc5e4006c0 Level-0 table #101: 0 bytes OK +2024/04/24-21:12:06.780429 7fcc5e4006c0 Delete type=0 #99 +2024/04/24-21:12:06.786953 7fcc5e4006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/profils/MANIFEST-000098 b/packs/profils/MANIFEST-000098 deleted file mode 100644 index 502185b..0000000 Binary files a/packs/profils/MANIFEST-000098 and /dev/null differ diff --git a/packs/profils/MANIFEST-000102 b/packs/profils/MANIFEST-000102 new file mode 100644 index 0000000..4a8beae Binary files /dev/null and b/packs/profils/MANIFEST-000102 differ diff --git a/packs/scenes/000005.ldb b/packs/scenes/000005.ldb deleted file mode 100644 index 485a205..0000000 Binary files a/packs/scenes/000005.ldb and /dev/null differ diff --git a/packs/scenes/000068.log b/packs/scenes/000072.log similarity index 100% rename from packs/scenes/000068.log rename to packs/scenes/000072.log diff --git a/packs/scenes/000074.ldb b/packs/scenes/000074.ldb new file mode 100644 index 0000000..79fb46a Binary files /dev/null and b/packs/scenes/000074.ldb differ diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT index 7873dc6..bcf1079 100644 --- a/packs/scenes/CURRENT +++ b/packs/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000066 +MANIFEST-000070 diff --git a/packs/scenes/LOG b/packs/scenes/LOG index b3dd1d5..935ea39 100644 --- a/packs/scenes/LOG +++ b/packs/scenes/LOG @@ -1,8 +1,15 @@ -2024/04/24-21:03:14.460264 7fcc5fe006c0 Recovering log #64 -2024/04/24-21:03:14.471026 7fcc5fe006c0 Delete type=3 #62 -2024/04/24-21:03:14.471085 7fcc5fe006c0 Delete type=0 #64 -2024/04/24-21:12:06.786961 7fcc5e4006c0 Level-0 table #69: started -2024/04/24-21:12:06.786984 7fcc5e4006c0 Level-0 table #69: 0 bytes OK -2024/04/24-21:12:06.793408 7fcc5e4006c0 Delete type=0 #67 -2024/04/24-21:12:06.800278 7fcc5e4006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) -2024/04/24-21:12:06.800312 7fcc5e4006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) +2024/05/23-10:57:45.683789 7f80456006c0 Recovering log #68 +2024/05/23-10:57:45.693418 7f80456006c0 Delete type=3 #66 +2024/05/23-10:57:45.693474 7f80456006c0 Delete type=0 #68 +2024/05/23-11:25:01.514263 7f803fe006c0 Level-0 table #73: started +2024/05/23-11:25:01.517780 7f803fe006c0 Level-0 table #73: 3022 bytes OK +2024/05/23-11:25:01.524517 7f803fe006c0 Delete type=0 #71 +2024/05/23-11:25:01.524699 7f803fe006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) +2024/05/23-11:25:01.524729 7f803fe006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at '!scenes!ypDutqjqZcr7lx6I' @ 8 : 1 +2024/05/23-11:25:01.524738 7f803fe006c0 Compacting 1@1 + 1@2 files +2024/05/23-11:25:01.528936 7f803fe006c0 Generated table #74@1: 4 keys, 3022 bytes +2024/05/23-11:25:01.528972 7f803fe006c0 Compacted 1@1 + 1@2 files => 3022 bytes +2024/05/23-11:25:01.535109 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2024/05/23-11:25:01.535211 7f803fe006c0 Delete type=2 #5 +2024/05/23-11:25:01.535345 7f803fe006c0 Delete type=2 #73 +2024/05/23-11:25:01.558900 7f803fe006c0 Manual compaction at level-1 from '!scenes!ypDutqjqZcr7lx6I' @ 8 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old index b86c9c3..b3dd1d5 100644 --- a/packs/scenes/LOG.old +++ b/packs/scenes/LOG.old @@ -1,8 +1,8 @@ -2024/04/24-21:00:50.251923 7fcc64a006c0 Recovering log #60 -2024/04/24-21:00:50.262770 7fcc64a006c0 Delete type=3 #58 -2024/04/24-21:00:50.262826 7fcc64a006c0 Delete type=0 #60 -2024/04/24-21:03:07.434179 7fcc5e4006c0 Level-0 table #65: started -2024/04/24-21:03:07.434204 7fcc5e4006c0 Level-0 table #65: 0 bytes OK -2024/04/24-21:03:07.440869 7fcc5e4006c0 Delete type=0 #63 -2024/04/24-21:03:07.448328 7fcc5e4006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) -2024/04/24-21:03:07.448358 7fcc5e4006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) +2024/04/24-21:03:14.460264 7fcc5fe006c0 Recovering log #64 +2024/04/24-21:03:14.471026 7fcc5fe006c0 Delete type=3 #62 +2024/04/24-21:03:14.471085 7fcc5fe006c0 Delete type=0 #64 +2024/04/24-21:12:06.786961 7fcc5e4006c0 Level-0 table #69: started +2024/04/24-21:12:06.786984 7fcc5e4006c0 Level-0 table #69: 0 bytes OK +2024/04/24-21:12:06.793408 7fcc5e4006c0 Delete type=0 #67 +2024/04/24-21:12:06.800278 7fcc5e4006c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) +2024/04/24-21:12:06.800312 7fcc5e4006c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/MANIFEST-000066 b/packs/scenes/MANIFEST-000066 deleted file mode 100644 index babd0c4..0000000 Binary files a/packs/scenes/MANIFEST-000066 and /dev/null differ diff --git a/packs/scenes/MANIFEST-000070 b/packs/scenes/MANIFEST-000070 new file mode 100644 index 0000000..886fdb5 Binary files /dev/null and b/packs/scenes/MANIFEST-000070 differ diff --git a/system.json b/system.json index b807d23..17e91f8 100644 --- a/system.json +++ b/system.json @@ -1,7 +1,7 @@ { "id": "fvtt-les-heritiers", "description": "Les Héritiers pour FoundryVTT", - "version": "11.0.14", + "version": "12.0.0", "authors": [ { "name": "Uberwald/LeRatierBretonnien", @@ -15,11 +15,13 @@ "esmodules": [ "modules/heritiers-main.js" ], - "gridDistance": 5, - "gridUnits": "m", + "grid": { + "distance": 5, + "units": "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.14.zip", + "download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-12.0.0.zip", "languages": [ { "lang": "fr", @@ -197,7 +199,7 @@ "url": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers", "background": "systems/fvtt-les-heritiers/assets/ui/wallpaper_foundry2.webp", "compatibility": { - "minimum": "10", - "verified": "11" + "minimum": "11", + "verified": "12" } } \ No newline at end of file diff --git a/templates/actor-pnj-sheet.html b/templates/actor-pnj-sheet.html index a69028f..883d823 100644 --- a/templates/actor-pnj-sheet.html +++ b/templates/actor-pnj-sheet.html @@ -52,11 +52,7 @@       @@ -117,11 +113,9 @@ {{skill.name}} - + {{selectOptions @root.config.listNiveau selected=skill.system.niveau}}
diff --git a/templates/actor-sheet.html b/templates/actor-sheet.html index 85ac708..d23462f 100644 --- a/templates/actor-sheet.html +++ b/templates/actor-sheet.html @@ -52,11 +52,7 @@       @@ -126,9 +122,7 @@
diff --git a/templates/creature-sheet.html b/templates/creature-sheet.html deleted file mode 100644 index 088e8d7..0000000 --- a/templates/creature-sheet.html +++ /dev/null @@ -1,356 +0,0 @@ -
- - {{!-- Sheet Header --}} -
-
-
- -
-

-
- -
    - -
  • -

    Ressources

    - -
  • -
-
-
-
-
- - {{!-- Sheet Tab Navigation --}} - - - {{!-- Sheet Body --}} -
- - {{!-- Main Tab --}} -
- -
- -
-
    - {{#each system.attributs as |attr key|}} -
  • - - {{attr.label}} - -
  • - {{/each}} -
  • - - Vitesse - -
  • -
-

Santé

-
    -
  • - - -
  • -
  • - - -
  • -
- -

Combat

-
    -
  • - -
  • -
- -
- -
-

Adversité

-
    - {{#each system.adversite as |adv key|}} -
  • - - -
    - -
    {{adv}}
    -
    - + -
     
    -
     
    -
     
    -
  • - {{/each}} -
- - -
- -
- -
- - {{!-- Competence Tab --}} -
- -
- -
-
    -
  • - -

    -
    - - - -
     
    -
  • - {{#each skills as |skill key|}} -
  • - - {{skill.name}} - - - {{#if (ne skill.system.attribut1 "none")}} - - {{/if}} - {{#if (ne skill.system.attribut2 "none")}} - - {{/if}} - {{#if (ne skill.system.attribut3 "none")}} - - {{/if}} - -
     
    -
    - - -
    -
  • - {{/each}} -
-
- -
- -
- - {{!-- Talents Tab --}} -
- -
- -
-
    -
  • - -

    -
    - - - -
     
    -
  • - {{#each talents as |talent key|}} -
  • - - {{talent.name}} - {{talent.system.resumebonus}} - -
     
    -
    - - -
    -
  • - {{/each}} -
-
-
- -
-
-
    -
  • - -

    -
    - - - -
     
    -
  • - {{#each talentsCell as |talent key|}} -
  • - - {{talent.name}} - {{talent.system.resumebonus}} -
     
    -
    - -
    -
  • - {{/each}} -
-
- -
- -
- - {{!-- Equipement Tab --}} -
- -
- -
-
    -
  • - -

    -
    - - - - - - - - - -
     
    -
    - -
    -
  • - {{#each armes as |arme key|}} -
  • - - {{arme.name}} - - - {{#if arme.system.equipped}} - - {{else}} - - {{/if}} - - - {{#if arme.system.isdefense}} - - {{else}} - - {{/if}} - - - {{#if arme.system.equipped}} - - {{else}} - - {{/if}} - - -
     
    - -
  • - {{/each}} -
-
- -
-
    -
  • - -

    -
    - - - -
     
    -
    - -
    -
  • - {{#each protections as |protection key|}} -
  • - - {{protection.name}} - - -
     
    -
    - - -
    -
  • - {{/each}} -
-
- -
- -
- - - {{!-- Biography Tab --}} -
- - -

Description

-
-
- {{editor description target="system.biodata.description" button=true owner=owner editable=editable}} -
- - -

Habitat

-
-
- {{editor habitat target="system.biodata.habitat" button=true owner=owner editable=editable}} -
- -
- -
-
\ No newline at end of file diff --git a/templates/item-arme-sheet.html b/templates/item-arme-sheet.html index 77b2532..af88fbf 100644 --- a/templates/item-arme-sheet.html +++ b/templates/item-arme-sheet.html @@ -16,11 +16,7 @@ @@ -28,11 +24,7 @@ @@ -74,22 +66,14 @@
  • diff --git a/templates/item-capacitenaturelle-sheet.html b/templates/item-capacitenaturelle-sheet.html index 8ba66f9..700265f 100644 --- a/templates/item-capacitenaturelle-sheet.html +++ b/templates/item-capacitenaturelle-sheet.html @@ -16,11 +16,7 @@
  • @@ -52,11 +48,7 @@ diff --git a/templates/item-competence-sheet.html b/templates/item-competence-sheet.html index d13f85d..4a9028a 100644 --- a/templates/item-competence-sheet.html +++ b/templates/item-competence-sheet.html @@ -16,11 +16,7 @@ @@ -28,11 +24,7 @@ diff --git a/templates/item-contact-sheet.html b/templates/item-contact-sheet.html index b53d2c5..c77a697 100644 --- a/templates/item-contact-sheet.html +++ b/templates/item-contact-sheet.html @@ -15,23 +15,14 @@
  • diff --git a/templates/item-fee-sheet.html b/templates/item-fee-sheet.html index caefac3..1419d10 100644 --- a/templates/item-fee-sheet.html +++ b/templates/item-fee-sheet.html @@ -17,11 +17,7 @@ diff --git a/templates/item-pouvoir-sheet.html b/templates/item-pouvoir-sheet.html index f3cdb1a..534ae1e 100644 --- a/templates/item-pouvoir-sheet.html +++ b/templates/item-pouvoir-sheet.html @@ -16,11 +16,8 @@ @@ -28,11 +25,8 @@ @@ -40,11 +34,8 @@ @@ -65,11 +56,7 @@ @@ -83,11 +70,7 @@ {{/if}} @@ -136,11 +119,7 @@ diff --git a/templates/item-profil-sheet.html b/templates/item-profil-sheet.html index 60476ed..176a0f6 100644 --- a/templates/item-profil-sheet.html +++ b/templates/item-profil-sheet.html @@ -15,10 +15,7 @@
  • diff --git a/templates/item-protection-sheet.html b/templates/item-protection-sheet.html index 5e94eb2..7789026 100644 --- a/templates/item-protection-sheet.html +++ b/templates/item-protection-sheet.html @@ -16,11 +16,7 @@ @@ -42,11 +38,7 @@
  • diff --git a/templates/partial-utile-skills.html b/templates/partial-utile-skills.html index d060790..e69c5e0 100644 --- a/templates/partial-utile-skills.html +++ b/templates/partial-utile-skills.html @@ -29,9 +29,7 @@ data-attr-key="tochoose">{{skill.name}}
    diff --git a/templates/roll-dialog-generic.html b/templates/roll-dialog-generic.html index 04008bd..99ea4ad 100644 --- a/templates/roll-dialog-generic.html +++ b/templates/roll-dialog-generic.html @@ -24,11 +24,7 @@
    Caracteristique
    {{/if}} @@ -67,12 +63,7 @@
    Points d'usage consommés :
    {{/if}} @@ -89,11 +80,7 @@ Attaque à plusieurs
    @@ -104,23 +91,14 @@ Attaque à deux armes
    Seconde arme
    {{/if}} @@ -129,11 +107,7 @@
  • @@ -144,21 +118,7 @@ Bonus/Malus
    @@ -170,11 +130,7 @@
    Difficulté
    {{/if}}