Compare commits

...

5 Commits

Author SHA1 Message Date
0cb764f1f3 Minor fixes and enhancements 2026-04-02 09:29:27 +02:00
81c1848e87 Correction sur jet de carac uniquement + bonus degats devant être à 0
All checks were successful
Release Creation / build (release) Successful in 42s
2026-04-01 23:49:20 +02:00
c172e20244 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 46s
2026-04-01 22:20:23 +02:00
d4f024f910 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 1m39s
2026-04-01 21:52:37 +02:00
3eab0ded89 Foundryv14 migration 2026-04-01 21:52:19 +02:00
94 changed files with 301 additions and 266 deletions

View File

@@ -60,4 +60,4 @@ jobs:
manifest: 'https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/releases/download/latest/system.json' manifest: 'https://www.uberwald.me/gitea/public/fvtt-hawkmoon-cyd/releases/download/latest/system.json'
notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-hawkmoon-cyd.zip' notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-hawkmoon-cyd.zip'
compatibility-minimum: '13' compatibility-minimum: '13'
compatibility-verified: '13' compatibility-verified: '14'

View File

@@ -148,26 +148,32 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
getSkills() { getSkills() {
let comp = [] // Utiliser filter et map pour éviter les duplications inutiles
for (let item of this.items) { const comp = this.items
item = foundry.utils.duplicate(item) .filter(item => item.type === "competence")
if (item.type == "competence") { .map(item => {
item.system.attribut1total = item.system.niveau + (this.system.attributs[item.system.attribut1]?.value || 0) const itemCopy = foundry.utils.duplicate(item);
item.system.attribut2total = item.system.niveau + (this.system.attributs[item.system.attribut2]?.value || 0) const attrs = this.system.attributs;
item.system.attribut3total = item.system.niveau + (this.system.attributs[item.system.attribut3]?.value || 0)
if (item.system.niveau == 0) { itemCopy.system.attribut1total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut1]?.value || 0);
item.system.attribut1total -= 3 itemCopy.system.attribut2total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut2]?.value || 0);
item.system.attribut2total -= 3 itemCopy.system.attribut3total = itemCopy.system.niveau + (attrs[itemCopy.system.attribut3]?.value || 0);
item.system.attribut3total -= 3
if (itemCopy.system.niveau === 0) {
itemCopy.system.attribut1total -= 3;
itemCopy.system.attribut2total -= 3;
itemCopy.system.attribut3total -= 3;
} }
item.system.attribut1label = this.system.attributs[item.system.attribut1]?.label || ""
item.system.attribut2label = this.system.attributs[item.system.attribut2]?.label || "" itemCopy.system.attribut1label = attrs[itemCopy.system.attribut1]?.label || "";
item.system.attribut3label = this.system.attributs[item.system.attribut3]?.label || "" itemCopy.system.attribut2label = attrs[itemCopy.system.attribut2]?.label || "";
comp.push(item) itemCopy.system.attribut3label = attrs[itemCopy.system.attribut3]?.label || "";
}
} return itemCopy;
HawkmoonUtility.sortArrayObjectsByName(comp) });
return comp
HawkmoonUtility.sortArrayObjectsByName(comp);
return comp;
} }
/* ----------------------- --------------------- */ /* ----------------------- --------------------- */
@@ -412,8 +418,7 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
getBonusDegats() { getBonusDegats() {
const idx = Math.min(this.system.attributs.pui.value, __degatsBonus.length - 1) return 0;
return __degatsBonus[idx] ?? 0
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
@@ -658,10 +663,15 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
async rollAttribut(attrKey, isInit = false) { async rollAttribut(attrKey, isInit = false) {
let rollData = this.getCommonRollData(attrKey) let rollData = this.getCommonRollData(attrKey)
rollData.multiplier = (isInit) ? 1 : 2
rollData.isInit = isInit rollData.isInit = isInit
if (isInit) { if (isInit) {
rollData.multiplier = 1
rollData.initbonus = this.system.combat.initbonus ?? 0 rollData.initbonus = this.system.combat.initbonus ?? 0
} else {
rollData.multiplier = 2 // fallback si attrKey2 vaut l'attribut principal
rollData.hasAttr2 = true
rollData.attrKey2 = attrKey // même attribut par défaut = ×2
rollData.selectableAttributes = this.system.attributs
} }
await HawkmoonRollDialog.create(this, rollData) await HawkmoonRollDialog.create(this, rollData)
} }
@@ -741,41 +751,48 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
async rollArmeDegats(armeId, targetVigueur = undefined, rollDataInput = undefined) { async rollArmeDegats(armeId, targetVigueur = undefined, rollDataInput = undefined) {
let arme = this.items.get(armeId) const arme = this.items.get(armeId);
if (!arme.system.equipped) { if (!arme) {
ui.notifications.warn("Cette arme doit être équipée pour pouvoir infliger des dégâts !") ui.notifications.warn("Arme non trouvée !");
return return;
} }
if (arme.type == "arme") {
arme = this.prepareArme(arme) if (!arme.system?.equipped) {
ui.notifications.warn("Cette arme doit être équipée pour pouvoir infliger des dégâts !");
return;
} }
console.log("DEGATS", arme, targetVigueur, rollDataInput)
let roll const preparedArme = arme.type === "arme" ? this.prepareArme(arme) : arme;
let bonus = 0 console.log("DEGATS", preparedArme, targetVigueur, rollDataInput);
let bonus2 = 0
let roll;
let bonus = 0;
let bonus2 = 0;
if (rollDataInput?.applyCoupDevastateur) { if (rollDataInput?.applyCoupDevastateur) {
bonus2 = Math.floor(this.system.attributs.pui.value / 2) bonus2 = Math.floor(this.system.attributs.pui.value / 2);
let talent = this.items.find(item => item.type == "talent" && item.name.toLowerCase() == "coup dévastateur") const talent = this.items.find(item => item.type === "talent" && item.name.toLowerCase() === "coup dévastateur");
this.updateEmbeddedDocuments('Item', [{ _id: talent.id, 'system.used': true }]) if (talent) {
await this.updateEmbeddedDocuments('Item', [{ _id: talent.id, 'system.used': true }]);
}
} }
if (rollDataInput?.isHeroique) { if (rollDataInput?.isHeroique) {
if (rollDataInput?.attaqueCharge) { if (rollDataInput?.attaqueCharge) {
bonus = 5 bonus = 5;
} }
if (rollDataInput?.chargeCavalerie) { if (rollDataInput?.chargeCavalerie) {
bonus = 6 bonus = 6;
} }
roll = await new Roll("2d10rr10+" + arme.system.totalDegats + "+" + bonus + "+" + bonus2).roll() roll = await new Roll("2d10rr10+" + preparedArme.system.totalDegats + "+" + bonus + "+" + bonus2).roll();
} else { } else {
if (rollDataInput?.attaqueCharge) { if (rollDataInput?.attaqueCharge) {
bonus = 3 bonus = 3;
} }
if (rollDataInput?.chargeCavalerie) { if (rollDataInput?.chargeCavalerie) {
bonus = 4 bonus = 4;
} }
roll = await new Roll("1d10+" + arme.system.totalDegats + "+" + bonus + "+" + bonus2).roll() roll = await new Roll("1d10+" + preparedArme.system.totalDegats + "+" + bonus + "+" + bonus2).roll();
} }
await HawkmoonUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode")); await HawkmoonUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
let nbEtatPerdus = 0 let nbEtatPerdus = 0
@@ -784,17 +801,17 @@ export class HawkmoonActor extends Actor {
} }
//console.log(roll) //console.log(roll)
let rollData = { let rollData = {
arme: arme, arme: preparedArme,
finalResult: roll.total, finalResult: roll.total,
formula: roll.formula, formula: roll.formula,
alias: this.name, alias: this.name,
actorImg: this.img, actorImg: this.img,
actorId: this.id, actorId: this.id,
defenderTokenId: rollDataInput?.defenderTokenId, defenderTokenId: rollDataInput?.defenderTokenId,
actionImg: arme.img, actionImg: preparedArme.img,
targetVigueur: targetVigueur, targetVigueur: targetVigueur,
nbEtatPerdus: nbEtatPerdus nbEtatPerdus: nbEtatPerdus
} };
HawkmoonUtility.createChatWithRollMode(rollData.alias, { HawkmoonUtility.createChatWithRollMode(rollData.alias, {
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-degats-result.hbs`, rollData) content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-degats-result.hbs`, rollData)
}) })

View File

@@ -106,8 +106,17 @@ export class HawkmoonUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static updatePauseLogo(html) { static updatePauseLogo(html) {
let logoPause = "systems/fvtt-hawkmoon-cyd/assets/logos/" + game.settings.get("fvtt-hawkmoon-cyd", "hawkmoon-pause-logo") + ".webp" const validLogos = ["hawkmoon_logo", "logo_pause_resistance", "logo_pause_hawkmoon_stone", "logo_pause_hawkmoon_violet", "logo_pause_hawkmoon_beige", "logo_pause_hawkmoon_rouge"];
console.log("Hawkmoon | Updating pause logo to:", logoPause) let logoName = game.settings.get("fvtt-hawkmoon-cyd", "hawkmoon-pause-logo");
// Validation du nom du logo
if (!validLogos.includes(logoName)) {
console.error("Hawkmoon | Invalid logo name:", logoName);
return;
}
let logoPause = "systems/fvtt-hawkmoon-cyd/assets/logos/" + logoName + ".webp";
console.log("Hawkmoon | Updating pause logo to:", logoPause);
// Supprimer l'ancien style s'il existe // Supprimer l'ancien style s'il existe
let oldStyle = document.getElementById('hawkmoon-pause-logo-override') let oldStyle = document.getElementById('hawkmoon-pause-logo-override')
@@ -138,13 +147,6 @@ export class HawkmoonUtility {
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
static createDirectOptionList(min, max) {
let options = {};
for (let i = min; i <= max; i++) {
options[`${i}`] = `${i}`;
}
return options;
}
static createArrayOptionList(min, max) { static createArrayOptionList(min, max) {
let options = []; let options = [];
for (let i = min; i <= max; i++) { for (let i = min; i <= max; i++) {
@@ -161,8 +163,19 @@ export class HawkmoonUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static async loadCompendium(compendium, filter = item => true) { static async loadCompendium(compendium, filter = item => true) {
let compendiumData = await HawkmoonUtility.loadCompendiumData(compendium); const pack = game.packs.get(compendium);
return compendiumData.filter(filter); if (!pack) {
console.warn(`Hawkmoon | Compendium not found: ${compendium}`);
return [];
}
try {
const compendiumData = await pack.getDocuments();
return compendiumData.filter(filter);
} catch (error) {
console.error(`Hawkmoon | Error loading compendium ${compendium}:`, error);
return [];
}
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
@@ -366,6 +379,12 @@ export class HawkmoonUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static computeResult(rollData) { static computeResult(rollData) {
// Validation des données de roll
if (!rollData.roll?.terms?.[0]?.results?.[0]?.result) {
console.error("Hawkmoon | Invalid roll data:", rollData);
return;
}
rollData.diceResult = rollData.roll.terms[0].results[0].result rollData.diceResult = rollData.roll.terms[0].results[0].result
if (rollData.mainDice.includes("d20")) { if (rollData.mainDice.includes("d20")) {
let diceValue = rollData.roll.terms[0].results[0].result let diceValue = rollData.roll.terms[0].results[0].result
@@ -379,7 +398,6 @@ export class HawkmoonUtility {
} }
} }
//console.log("Result : ", rollData
this.computeResultQuality(rollData) this.computeResultQuality(rollData)
} }

View File

@@ -1 +1 @@
MANIFEST-000406 MANIFEST-000427

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:18.246878 7f777a3fd6c0 Recovering log #404 2026/04/01-23:48:22.946320 7fe6ad3fe6c0 Recovering log #425
2026/03/10-20:38:18.304580 7f777a3fd6c0 Delete type=3 #402 2026/04/01-23:48:22.956435 7fe6ad3fe6c0 Delete type=3 #423
2026/03/10-20:38:18.304705 7f777a3fd6c0 Delete type=0 #404 2026/04/01-23:48:22.956489 7fe6ad3fe6c0 Delete type=0 #425
2026/03/10-20:50:08.701985 7f77793fb6c0 Level-0 table #409: started 2026/04/01-23:48:49.994348 7fe6977fe6c0 Level-0 table #430: started
2026/03/10-20:50:08.702036 7f77793fb6c0 Level-0 table #409: 0 bytes OK 2026/04/01-23:48:49.994365 7fe6977fe6c0 Level-0 table #430: 0 bytes OK
2026/03/10-20:50:08.708941 7f77793fb6c0 Delete type=0 #407 2026/04/01-23:48:50.000517 7fe6977fe6c0 Delete type=0 #428
2026/03/10-20:50:08.727471 7f77793fb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/04/01-23:48:50.021367 7fe6977fe6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:33.030287 7f777b3ff6c0 Recovering log #400 2026/04/01-23:46:40.702487 7fe6ad3fe6c0 Recovering log #420
2026/03/10-20:01:33.081765 7f777b3ff6c0 Delete type=3 #398 2026/04/01-23:46:40.761328 7fe6ad3fe6c0 Delete type=3 #418
2026/03/10-20:01:33.081890 7f777b3ff6c0 Delete type=0 #400 2026/04/01-23:46:40.761414 7fe6ad3fe6c0 Delete type=0 #420
2026/03/10-20:21:13.135357 7f77793fb6c0 Level-0 table #405: started 2026/04/01-23:48:06.570346 7fe6977fe6c0 Level-0 table #426: started
2026/03/10-20:21:13.135418 7f77793fb6c0 Level-0 table #405: 0 bytes OK 2026/04/01-23:48:06.570403 7fe6977fe6c0 Level-0 table #426: 0 bytes OK
2026/03/10-20:21:13.142162 7f77793fb6c0 Delete type=0 #403 2026/04/01-23:48:06.576732 7fe6977fe6c0 Delete type=0 #424
2026/03/10-20:21:13.168556 7f77793fb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.601089 7fe6977fe6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.741876 7f7779bfc6c0 Recovering log #403 2026/04/01-23:48:22.846060 7fe6acbfd6c0 Recovering log #424
2026/03/10-20:38:17.803600 7f7779bfc6c0 Delete type=3 #401 2026/04/01-23:48:22.856276 7fe6acbfd6c0 Delete type=3 #422
2026/03/10-20:38:17.803733 7f7779bfc6c0 Delete type=0 #403 2026/04/01-23:48:22.856340 7fe6acbfd6c0 Delete type=0 #424
2026/03/10-20:50:08.638578 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.941313 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.638645 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.941337 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.645249 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.947373 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.666593 7f77793fb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.967196 7fe6977fe6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.533110 7f777b3ff6c0 Recovering log #399 2026/04/01-23:46:40.215373 7fe697fff6c0 Recovering log #419
2026/03/10-20:01:32.590900 7f777b3ff6c0 Delete type=3 #397 2026/04/01-23:46:40.273392 7fe697fff6c0 Delete type=3 #417
2026/03/10-20:01:32.591034 7f777b3ff6c0 Delete type=0 #399 2026/04/01-23:46:40.273479 7fe697fff6c0 Delete type=0 #419
2026/03/10-20:21:13.080845 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.532308 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.080891 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.532350 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.087374 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.538189 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.108229 7f77793fb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.544356 7fe6977fe6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

BIN
packs/armes/MANIFEST-000426 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.619993 7f777b3ff6c0 Recovering log #403 2026/04/01-23:48:22.821542 7fe6ad3fe6c0 Recovering log #424
2026/03/10-20:38:17.673298 7f777b3ff6c0 Delete type=3 #401 2026/04/01-23:48:22.831720 7fe6ad3fe6c0 Delete type=3 #422
2026/03/10-20:38:17.673444 7f777b3ff6c0 Delete type=0 #403 2026/04/01-23:48:22.831773 7fe6ad3fe6c0 Delete type=0 #424
2026/03/10-20:50:08.617801 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.933594 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.617866 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.933618 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.624089 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.941087 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.638387 7f77793fb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.941234 7fe6977fe6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.413080 7f777abfe6c0 Recovering log #399 2026/04/01-23:46:40.104749 7fe697fff6c0 Recovering log #419
2026/03/10-20:01:32.463397 7f777abfe6c0 Delete type=3 #397 2026/04/01-23:46:40.156075 7fe697fff6c0 Delete type=3 #417
2026/03/10-20:01:32.463532 7f777abfe6c0 Delete type=0 #399 2026/04/01-23:46:40.156217 7fe697fff6c0 Delete type=0 #419
2026/03/10-20:21:13.059464 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.506267 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.059514 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.506290 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.066000 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.512158 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.080632 7f77793fb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.518617 7fe6977fe6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.498070 7f7779bfc6c0 Recovering log #403 2026/04/01-23:48:22.797623 7fe6ad3fe6c0 Recovering log #424
2026/03/10-20:38:17.553232 7f7779bfc6c0 Delete type=3 #401 2026/04/01-23:48:22.806917 7fe6ad3fe6c0 Delete type=3 #422
2026/03/10-20:38:17.553368 7f7779bfc6c0 Delete type=0 #403 2026/04/01-23:48:22.806976 7fe6ad3fe6c0 Delete type=0 #424
2026/03/10-20:50:08.631655 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.920356 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.631709 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.920405 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.638121 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.927156 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.638432 7f77793fb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.941217 7fe6977fe6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.259695 7f777a3fd6c0 Recovering log #399 2026/04/01-23:46:39.985628 7fe6acbfd6c0 Recovering log #419
2026/03/10-20:01:32.333029 7f777a3fd6c0 Delete type=3 #397 2026/04/01-23:46:40.048051 7fe6acbfd6c0 Delete type=3 #417
2026/03/10-20:01:32.333156 7f777a3fd6c0 Delete type=0 #399 2026/04/01-23:46:40.048122 7fe6acbfd6c0 Delete type=0 #419
2026/03/10-20:21:13.052633 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.492888 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.052714 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.492949 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.059252 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.499711 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.080609 7f77793fb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.518591 7fe6977fe6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.874593 7f777a3fd6c0 Recovering log #403 2026/04/01-23:48:22.870211 7fe6acbfd6c0 Recovering log #424
2026/03/10-20:38:17.931208 7f777a3fd6c0 Delete type=3 #401 2026/04/01-23:48:22.880811 7fe6acbfd6c0 Delete type=3 #422
2026/03/10-20:38:17.931376 7f777a3fd6c0 Delete type=0 #403 2026/04/01-23:48:22.880863 7fe6acbfd6c0 Delete type=0 #424
2026/03/10-20:50:08.645547 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.960933 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.645614 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.960956 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.651902 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.967033 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.666616 7f77793fb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.967228 7fe6977fe6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.664172 7f7779bfc6c0 Recovering log #399 2026/04/01-23:46:40.332623 7fe697fff6c0 Recovering log #419
2026/03/10-20:01:32.717172 7f7779bfc6c0 Delete type=3 #397 2026/04/01-23:46:40.390008 7fe697fff6c0 Delete type=3 #417
2026/03/10-20:01:32.717310 7f7779bfc6c0 Delete type=0 #399 2026/04/01-23:46:40.390084 7fe697fff6c0 Delete type=0 #419
2026/03/10-20:21:13.094090 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.525916 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.094135 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.525943 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.101029 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.532172 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.108277 7f77793fb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.544345 7fe6977fe6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.677228 7f777abfe6c0 Recovering log #403 2026/04/01-23:48:22.833629 7fe6adbff6c0 Recovering log #424
2026/03/10-20:38:17.737393 7f777abfe6c0 Delete type=3 #401 2026/04/01-23:48:22.843596 7fe6adbff6c0 Delete type=3 #422
2026/03/10-20:38:17.737534 7f777abfe6c0 Delete type=0 #403 2026/04/01-23:48:22.843651 7fe6adbff6c0 Delete type=0 #424
2026/03/10-20:50:08.624344 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.927280 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.624404 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.927306 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.631426 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.933442 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.638410 7f77793fb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.941227 7fe6977fe6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.471124 7f7779bfc6c0 Recovering log #399 2026/04/01-23:46:40.158559 7fe6acbfd6c0 Recovering log #419
2026/03/10-20:01:32.524119 7f7779bfc6c0 Delete type=3 #397 2026/04/01-23:46:40.212288 7fe6acbfd6c0 Delete type=3 #417
2026/03/10-20:01:32.524253 7f7779bfc6c0 Delete type=0 #399 2026/04/01-23:46:40.212362 7fe6acbfd6c0 Delete type=0 #419
2026/03/10-20:21:13.066259 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.499942 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.066338 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.499977 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.073170 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.506160 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.080653 7f77793fb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.518603 7fe6977fe6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000315 MANIFEST-000336

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.557794 7f777a3fd6c0 Recovering log #313 2026/04/01-23:48:22.809382 7fe6adbff6c0 Recovering log #334
2026/03/10-20:38:17.614981 7f777a3fd6c0 Delete type=3 #311 2026/04/01-23:48:22.819171 7fe6adbff6c0 Delete type=3 #332
2026/03/10-20:38:17.615104 7f777a3fd6c0 Delete type=0 #313 2026/04/01-23:48:22.819221 7fe6adbff6c0 Delete type=0 #334
2026/03/10-20:50:08.611143 7f77793fb6c0 Level-0 table #318: started 2026/04/01-23:48:49.913751 7fe6977fe6c0 Level-0 table #339: started
2026/03/10-20:50:08.611246 7f77793fb6c0 Level-0 table #318: 0 bytes OK 2026/04/01-23:48:49.913804 7fe6977fe6c0 Level-0 table #339: 0 bytes OK
2026/03/10-20:50:08.617634 7f77793fb6c0 Delete type=0 #316 2026/04/01-23:48:49.920133 7fe6977fe6c0 Delete type=0 #337
2026/03/10-20:50:08.638354 7f77793fb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.941206 7fe6977fe6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.340919 7f777b3ff6c0 Recovering log #309 2026/04/01-23:46:40.050045 7fe6adbff6c0 Recovering log #329
2026/03/10-20:01:32.393401 7f777b3ff6c0 Delete type=3 #307 2026/04/01-23:46:40.101269 7fe6adbff6c0 Delete type=3 #327
2026/03/10-20:01:32.393539 7f777b3ff6c0 Delete type=0 #309 2026/04/01-23:46:40.101341 7fe6adbff6c0 Delete type=0 #329
2026/03/10-20:21:13.073443 7f77793fb6c0 Level-0 table #314: started 2026/04/01-23:48:06.512281 7fe6977fe6c0 Level-0 table #335: started
2026/03/10-20:21:13.073504 7f77793fb6c0 Level-0 table #314: 0 bytes OK 2026/04/01-23:48:06.512319 7fe6977fe6c0 Level-0 table #335: 0 bytes OK
2026/03/10-20:21:13.080446 7f77793fb6c0 Delete type=0 #312 2026/04/01-23:48:06.518481 7fe6977fe6c0 Delete type=0 #333
2026/03/10-20:21:13.080670 7f77793fb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.518631 7fe6977fe6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

0
packs/profils/000428.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.936499 7f7779bfc6c0 Recovering log #403 2026/04/01-23:48:22.883202 7fe6adbff6c0 Recovering log #424
2026/03/10-20:38:17.986138 7f7779bfc6c0 Delete type=3 #401 2026/04/01-23:48:22.893602 7fe6adbff6c0 Delete type=3 #422
2026/03/10-20:38:17.986273 7f7779bfc6c0 Delete type=0 #403 2026/04/01-23:48:22.893656 7fe6adbff6c0 Delete type=0 #424
2026/03/10-20:50:08.652071 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.954179 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.652118 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.954203 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.659642 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.960785 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.666636 7f77793fb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.967220 7fe6977fe6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.727201 7f777a3fd6c0 Recovering log #399 2026/04/01-23:46:40.392616 7fe6acbfd6c0 Recovering log #419
2026/03/10-20:01:32.778403 7f777a3fd6c0 Delete type=3 #397 2026/04/01-23:46:40.462121 7fe6acbfd6c0 Delete type=3 #417
2026/03/10-20:01:32.778541 7f777a3fd6c0 Delete type=0 #399 2026/04/01-23:46:40.462174 7fe6acbfd6c0 Delete type=0 #419
2026/03/10-20:21:13.101279 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.551385 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.101353 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.551410 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.108024 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.557197 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.108299 7f77793fb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.570263 7fe6977fe6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.807970 7f777b3ff6c0 Recovering log #403 2026/04/01-23:48:22.858409 7fe6adbff6c0 Recovering log #424
2026/03/10-20:38:17.870626 7f777b3ff6c0 Delete type=3 #401 2026/04/01-23:48:22.868080 7fe6adbff6c0 Delete type=3 #422
2026/03/10-20:38:17.870757 7f777b3ff6c0 Delete type=0 #403 2026/04/01-23:48:22.868150 7fe6adbff6c0 Delete type=0 #424
2026/03/10-20:50:08.659869 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.947494 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.659933 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.947517 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.666413 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.954038 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.666653 7f77793fb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.967209 7fe6977fe6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.599396 7f777abfe6c0 Recovering log #399 2026/04/01-23:46:40.276042 7fe6adbff6c0 Recovering log #419
2026/03/10-20:01:32.656614 7f777abfe6c0 Delete type=3 #397 2026/04/01-23:46:40.330456 7fe6adbff6c0 Delete type=3 #417
2026/03/10-20:01:32.656755 7f777abfe6c0 Delete type=0 #399 2026/04/01-23:46:40.330513 7fe6adbff6c0 Delete type=0 #419
2026/03/10-20:21:13.087643 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.518741 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.087695 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.518815 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.093921 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.525794 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.108254 7f77793fb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.544334 7fe6977fe6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

0
packs/scenes/000267.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000244 MANIFEST-000265

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:18.178529 7f777abfe6c0 Recovering log #242 2026/04/01-23:48:22.933544 7fe6adbff6c0 Recovering log #263
2026/03/10-20:38:18.240116 7f777abfe6c0 Delete type=3 #240 2026/04/01-23:48:22.943164 7fe6adbff6c0 Delete type=3 #261
2026/03/10-20:38:18.240235 7f777abfe6c0 Delete type=0 #242 2026/04/01-23:48:22.943213 7fe6adbff6c0 Delete type=0 #263
2026/03/10-20:50:08.680374 7f77793fb6c0 Level-0 table #247: started 2026/04/01-23:48:49.987688 7fe6977fe6c0 Level-0 table #268: started
2026/03/10-20:50:08.680426 7f77793fb6c0 Level-0 table #247: 0 bytes OK 2026/04/01-23:48:49.987713 7fe6977fe6c0 Level-0 table #268: 0 bytes OK
2026/03/10-20:50:08.687346 7f77793fb6c0 Delete type=0 #245 2026/04/01-23:48:49.994129 7fe6977fe6c0 Delete type=0 #266
2026/03/10-20:50:08.694548 7f77793fb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.994269 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.970344 7f777abfe6c0 Recovering log #238 2026/04/01-23:46:40.645467 7fe6acbfd6c0 Recovering log #259
2026/03/10-20:01:33.023006 7f777abfe6c0 Delete type=3 #236 2026/04/01-23:46:40.699745 7fe6acbfd6c0 Delete type=3 #257
2026/03/10-20:01:33.023132 7f777abfe6c0 Delete type=0 #238 2026/04/01-23:46:40.699811 7fe6acbfd6c0 Delete type=0 #259
2026/03/10-20:21:13.128482 7f77793fb6c0 Level-0 table #243: started 2026/04/01-23:48:06.557277 7fe6977fe6c0 Level-0 table #264: started
2026/03/10-20:21:13.128530 7f77793fb6c0 Level-0 table #243: 0 bytes OK 2026/04/01-23:48:06.557303 7fe6977fe6c0 Level-0 table #264: 0 bytes OK
2026/03/10-20:21:13.134935 7f77793fb6c0 Delete type=0 #241 2026/04/01-23:48:06.563213 7fe6977fe6c0 Delete type=0 #262
2026/03/10-20:21:13.135207 7f77793fb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.570272 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

0
packs/tables/000422.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000400 MANIFEST-000420

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:18.112214 7f7779bfc6c0 Recovering log #398 2026/04/01-23:48:22.921132 7fe6acbfd6c0 Recovering log #418
2026/03/10-20:38:18.173779 7f7779bfc6c0 Delete type=3 #396 2026/04/01-23:48:22.931374 7fe6acbfd6c0 Delete type=3 #416
2026/03/10-20:38:18.173900 7f7779bfc6c0 Delete type=0 #398 2026/04/01-23:48:22.931423 7fe6acbfd6c0 Delete type=0 #418
2026/03/10-20:50:08.673436 7f77793fb6c0 Level-0 table #403: started 2026/04/01-23:48:49.967348 7fe6977fe6c0 Level-0 table #423: started
2026/03/10-20:50:08.673499 7f77793fb6c0 Level-0 table #403: 0 bytes OK 2026/04/01-23:48:49.967391 7fe6977fe6c0 Level-0 table #423: 0 bytes OK
2026/03/10-20:50:08.680153 7f77793fb6c0 Delete type=0 #401 2026/04/01-23:48:49.974582 7fe6977fe6c0 Delete type=0 #421
2026/03/10-20:50:08.694524 7f77793fb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.994242 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.907553 7f777b3ff6c0 Recovering log #394 2026/04/01-23:46:40.588821 7fe697fff6c0 Recovering log #414
2026/03/10-20:01:32.965198 7f777b3ff6c0 Delete type=3 #392 2026/04/01-23:46:40.643051 7fe697fff6c0 Delete type=3 #412
2026/03/10-20:01:32.965351 7f777b3ff6c0 Delete type=0 #394 2026/04/01-23:46:40.643109 7fe697fff6c0 Delete type=0 #414
2026/03/10-20:21:13.114970 7f77793fb6c0 Level-0 table #399: started 2026/04/01-23:48:06.563337 7fe6977fe6c0 Level-0 table #419: started
2026/03/10-20:21:13.115023 7f77793fb6c0 Level-0 table #399: 0 bytes OK 2026/04/01-23:48:06.563366 7fe6977fe6c0 Level-0 table #419: 0 bytes OK
2026/03/10-20:21:13.121384 7f77793fb6c0 Delete type=0 #397 2026/04/01-23:48:06.570149 7fe6977fe6c0 Delete type=0 #417
2026/03/10-20:21:13.135162 7f77793fb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.570290 7fe6977fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000405 MANIFEST-000426

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:18.047729 7f777abfe6c0 Recovering log #403 2026/04/01-23:48:22.908056 7fe6adbff6c0 Recovering log #424
2026/03/10-20:38:18.107891 7f777abfe6c0 Delete type=3 #401 2026/04/01-23:48:22.919119 7fe6adbff6c0 Delete type=3 #422
2026/03/10-20:38:18.108016 7f777abfe6c0 Delete type=0 #403 2026/04/01-23:48:22.919187 7fe6adbff6c0 Delete type=0 #424
2026/03/10-20:50:08.687508 7f77793fb6c0 Level-0 table #408: started 2026/04/01-23:48:49.980986 7fe6977fe6c0 Level-0 table #429: started
2026/03/10-20:50:08.687556 7f77793fb6c0 Level-0 table #408: 0 bytes OK 2026/04/01-23:48:49.981010 7fe6977fe6c0 Level-0 table #429: 0 bytes OK
2026/03/10-20:50:08.694225 7f77793fb6c0 Delete type=0 #406 2026/04/01-23:48:49.987529 7fe6977fe6c0 Delete type=0 #427
2026/03/10-20:50:08.694572 7f77793fb6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.994261 7fe6977fe6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.843808 7f7779bfc6c0 Recovering log #399 2026/04/01-23:46:40.523682 7fe6adbff6c0 Recovering log #419
2026/03/10-20:01:32.899754 7f7779bfc6c0 Delete type=3 #397 2026/04/01-23:46:40.586837 7fe6adbff6c0 Delete type=3 #417
2026/03/10-20:01:32.899891 7f7779bfc6c0 Delete type=0 #399 2026/04/01-23:46:40.586924 7fe6adbff6c0 Delete type=0 #419
2026/03/10-20:21:13.121568 7f77793fb6c0 Level-0 table #404: started 2026/04/01-23:48:06.544459 7fe6977fe6c0 Level-0 table #425: started
2026/03/10-20:21:13.121614 7f77793fb6c0 Level-0 table #404: 0 bytes OK 2026/04/01-23:48:06.544487 7fe6977fe6c0 Level-0 table #425: 0 bytes OK
2026/03/10-20:21:13.128278 7f77793fb6c0 Delete type=0 #402 2026/04/01-23:48:06.551282 7fe6977fe6c0 Delete type=0 #423
2026/03/10-20:21:13.135184 7f77793fb6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.570251 7fe6977fe6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

0
packs/talents/000430.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000407 MANIFEST-000428

View File

@@ -1,7 +1,7 @@
2026/03/10-20:38:17.990662 7f777b3ff6c0 Recovering log #405 2026/04/01-23:48:22.895979 7fe6ad3fe6c0 Recovering log #426
2026/03/10-20:38:18.041731 7f777b3ff6c0 Delete type=3 #403 2026/04/01-23:48:22.905597 7fe6ad3fe6c0 Delete type=3 #424
2026/03/10-20:38:18.041860 7f777b3ff6c0 Delete type=0 #405 2026/04/01-23:48:22.905646 7fe6ad3fe6c0 Delete type=0 #426
2026/03/10-20:50:08.666857 7f77793fb6c0 Level-0 table #410: started 2026/04/01-23:48:49.974727 7fe6977fe6c0 Level-0 table #431: started
2026/03/10-20:50:08.666902 7f77793fb6c0 Level-0 table #410: 0 bytes OK 2026/04/01-23:48:49.974752 7fe6977fe6c0 Level-0 table #431: 0 bytes OK
2026/03/10-20:50:08.673148 7f77793fb6c0 Delete type=0 #408 2026/04/01-23:48:49.980833 7fe6977fe6c0 Delete type=0 #429
2026/03/10-20:50:08.694494 7f77793fb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/04/01-23:48:49.994253 7fe6977fe6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2026/03/10-20:01:32.787438 7f777abfe6c0 Recovering log #401 2026/04/01-23:46:40.464245 7fe697fff6c0 Recovering log #421
2026/03/10-20:01:32.835751 7f777abfe6c0 Delete type=3 #399 2026/04/01-23:46:40.520872 7fe697fff6c0 Delete type=3 #419
2026/03/10-20:01:32.835894 7f777abfe6c0 Delete type=0 #401 2026/04/01-23:46:40.520959 7fe697fff6c0 Delete type=0 #421
2026/03/10-20:21:13.108508 7f77793fb6c0 Level-0 table #406: started 2026/04/01-23:48:06.538286 7fe6977fe6c0 Level-0 table #427: started
2026/03/10-20:21:13.108577 7f77793fb6c0 Level-0 table #406: 0 bytes OK 2026/04/01-23:48:06.538313 7fe6977fe6c0 Level-0 table #427: 0 bytes OK
2026/03/10-20:21:13.114792 7f77793fb6c0 Delete type=0 #404 2026/04/01-23:48:06.544240 7fe6977fe6c0 Delete type=0 #425
2026/03/10-20:21:13.135140 7f77793fb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/04/01-23:48:06.544370 7fe6977fe6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

View File

@@ -35,7 +35,7 @@
], ],
"compatibility": { "compatibility": {
"minimum": "13", "minimum": "13",
"verified": "13" "verified": "14"
}, },
"esmodules": [ "esmodules": [
"modules/hawkmoon-main.js" "modules/hawkmoon-main.js"

View File

@@ -27,7 +27,7 @@
<div class="dialog-content"> <div class="dialog-content">
{{!-- Attributs Section --}} {{!-- Attributs Section --}}
{{#if selectableAttributes}} {{#if (eq attrKey "tochoose")}}
<div class="form-group attributes-section"> <div class="form-group attributes-section">
<label>Attribut principal</label> <label>Attribut principal</label>
<select id="attrKey" name="attrKey"> <select id="attrKey" name="attrKey">
@@ -38,19 +38,19 @@
{{/each}} {{/each}}
</select> </select>
</div> </div>
{{/if}}
{{#if hasAttr2}} {{#if hasAttr2}}
<div class="form-group"> <div class="form-group">
<label>Attribut secondaire</label> <label>Attribut secondaire</label>
<select id="attrKey2" name="attrKey2"> <select id="attrKey2" name="attrKey2">
{{#each selectableAttributes as |attr key|}} {{#each selectableAttributes as |attr key|}}
<option value="{{key}}" {{#if (eq ../attrKey2 key)}}selected{{/if}}> <option value="{{key}}" {{#if (eq ../attrKey2 key)}}selected{{/if}}>
{{attr.label}} ({{attr.value}}) {{attr.label}} ({{attr.value}})
</option> </option>
{{/each}} {{/each}}
</select> </select>
</div> </div>
{{/if}}
{{/if}} {{/if}}
{{!-- Adversité et Modificateurs --}} {{!-- Adversité et Modificateurs --}}