Amelioration des talents et quelques corrections

This commit is contained in:
2026-06-23 17:40:57 +02:00
parent d1fbe611ef
commit dd0276e7e1
87 changed files with 366 additions and 245 deletions
+50 -2
View File
@@ -1316,6 +1316,56 @@
} }
} }
} }
// ── Talent Used Toggle ──────────────────────────────────────────
.talent-used-toggle {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
cursor: pointer;
border-radius: 3px;
transition: all 0.15s;
text-decoration: none;
margin-right: 0.25rem;
i {
font-size: 0.95rem;
color: #8a7a5a;
}
&:hover {
background: rgba(139, 69, 19, 0.2);
transform: scale(1.1);
i {
color: #2a1a0a;
}
}
&.used i {
color: #4a7c59;
}
&.used:hover i {
color: #2d5a3a;
}
}
// Talent row in used state — dimmed appearance
.item-list li.item.talent-used {
opacity: 0.6;
.item-name-img {
filter: grayscale(60%);
}
.talent-used-toggle.used i {
color: #6aaa7a;
}
}
} }
/* ==================== Creature Sheet Specific Styles ==================== */ /* ==================== Creature Sheet Specific Styles ==================== */
@@ -1429,8 +1479,6 @@
} }
} }
} }
// GM Tools section - labels plus larges // GM Tools section - labels plus larges
.gm-tools-section { .gm-tools-section {
.grid { .grid {
@@ -66,6 +66,7 @@ export default class MournbladeCYD2ActorSheetV2 extends HandlebarsApplicationMix
deleteEffect: MournbladeCYD2ActorSheetV2.#onDeleteEffect, deleteEffect: MournbladeCYD2ActorSheetV2.#onDeleteEffect,
toggleEffect: MournbladeCYD2ActorSheetV2.#onToggleEffect, toggleEffect: MournbladeCYD2ActorSheetV2.#onToggleEffect,
applyEffect: MournbladeCYD2ActorSheetV2.#onApplyEffect, applyEffect: MournbladeCYD2ActorSheetV2.#onApplyEffect,
toggleTalentUsed: MournbladeCYD2ActorSheetV2.#onToggleTalentUsed,
}, },
}; };
@@ -502,4 +503,20 @@ export default class MournbladeCYD2ActorSheetV2 extends HandlebarsApplicationMix
} }
// #endregion // #endregion
// #region Talent Management
/**
* Toggle the used state of a talent item
* @param {Event} event - The click event
* @param {HTMLElement} target - The clicked element
*/
static async #onToggleTalentUsed(event, target) {
event.preventDefault();
const li = target.closest('[data-item-id]');
const item = this.document.items.get(li?.dataset.itemId);
if (item) await item.update({ "system.used": !item.system.used });
}
// #endregion
} }
@@ -64,6 +64,8 @@ export default class MournbladeCYD2ItemSheetV2 extends HandlebarsApplicationMixi
), ),
isEditMode: this.isEditMode, isEditMode: this.isEditMode,
isEditable: this.isEditable, isEditable: this.isEditable,
editable: this.isEditable,
owner: this.document.isOwner,
isGM: game.user.isGM, isGM: game.user.isGM,
}; };
} }
@@ -22,6 +22,16 @@ export default class MournbladeCYD2ProfilSheet extends MournbladeCYD2ItemSheetV2
/** @override */ /** @override */
async _prepareContext() { async _prepareContext() {
const context = await super._prepareContext(); const context = await super._prepareContext();
const item = this.document;
// Enrich each HTMLField for ProseMirror display
for (const field of ["competences", "talentsinitie", "prerequisaguerri", "talentsaguerri", "prerequismaitre", "talentsmaitre"]) {
const enrichedKey = `enriched${field.charAt(0).toUpperCase() + field.slice(1)}`;
context[enrichedKey] = await foundry.applications.ux.TextEditor.implementation.enrichHTML(
item.system[field] || "", { async: true }
);
}
return context; return context;
} }
} }
+3 -4
View File
@@ -13,11 +13,10 @@ export class MournbladeCYD2Utility {
/* -------------------------------------------- */ /* -------------------------------------------- */
// Helper pour calculer la valeur totale d'un item en SC (Sous de Cuivre / Pièces de Bronze) // Helper pour calculer la valeur totale d'un item en PB (Pièces de Bronze)
// Conversion selon le lore Mournblade : // Conversion selon le lore Mournblade :
// 1 SA (Sou d'Argent / Pièce d'Argent) = 10 PB (Pièces de Bronze / Sous de Cuivre) // 1 SA (Sou d'Argent) = 10 PB (Pièces de Bronze)
// 1 PO (Pièce d'Or) = 10 SA = 100 PB // 1 PO (Pièce d'Or) = 10 SA = 100 PB
// Donc : 1 PA (Pièce d'Argent) = 10 SC, 1 PO (Pièce d'Or) = 100 SC
static calculateItemValueSC(prixpo, prixca, prixsc) { static calculateItemValueSC(prixpo, prixca, prixsc) {
const po = parseInt(prixpo) || 0; const po = parseInt(prixpo) || 0;
const ca = parseInt(prixca) || 0; const ca = parseInt(prixca) || 0;
@@ -384,7 +383,7 @@ export class MournbladeCYD2Utility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static computeMonnaieDetails(valueSC) { static computeMonnaieDetails(valueSC) {
// Conversion selon le lore Mournblade : // Conversion selon le lore Mournblade :
// 1 PO = 100 SC, 1 CA (PA) = 10 SC // 1 PO = 100 PB, 1 SA = 10 PB
let po = Math.floor(valueSC / 100) let po = Math.floor(valueSC / 100)
let pa = Math.floor((valueSC - (po * 100)) / 10) let pa = Math.floor((valueSC - (po * 100)) / 10)
let sc = valueSC - (po * 100) - (pa * 10) let sc = valueSC - (po * 100) - (pa * 10)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000451 MANIFEST-000455
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.605565 7f15ce3fc6c0 Recovering log #449 2026/06/08-07:56:30.319684 7f15cebfd6c0 Recovering log #453
2026/06/07-23:29:46.614959 7f15ce3fc6c0 Delete type=3 #447 2026/06/08-07:56:30.328718 7f15cebfd6c0 Delete type=3 #451
2026/06/07-23:29:46.614979 7f15ce3fc6c0 Delete type=0 #449 2026/06/08-07:56:30.328767 7f15cebfd6c0 Delete type=0 #453
2026/06/07-23:51:38.199273 7f15cdbfb6c0 Level-0 table #454: started 2026/06/08-07:57:05.089618 7f15cdbfb6c0 Level-0 table #458: started
2026/06/07-23:51:38.199286 7f15cdbfb6c0 Level-0 table #454: 0 bytes OK 2026/06/08-07:57:05.089633 7f15cdbfb6c0 Level-0 table #458: 0 bytes OK
2026/06/07-23:51:38.205066 7f15cdbfb6c0 Delete type=0 #452 2026/06/08-07:57:05.096624 7f15cdbfb6c0 Delete type=0 #456
2026/06/07-23:51:38.211362 7f15cdbfb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.112186 7f15cdbfb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.395630 7f15cfbff6c0 Recovering log #445 2026/06/07-23:29:46.605565 7f15ce3fc6c0 Recovering log #449
2026/06/07-22:26:23.404603 7f15cfbff6c0 Delete type=3 #443 2026/06/07-23:29:46.614959 7f15ce3fc6c0 Delete type=3 #447
2026/06/07-22:26:23.404618 7f15cfbff6c0 Delete type=0 #445 2026/06/07-23:29:46.614979 7f15ce3fc6c0 Delete type=0 #449
2026/06/07-23:28:18.037162 7f15cdbfb6c0 Level-0 table #450: started 2026/06/07-23:51:38.199273 7f15cdbfb6c0 Level-0 table #454: started
2026/06/07-23:28:18.037182 7f15cdbfb6c0 Level-0 table #450: 0 bytes OK 2026/06/07-23:51:38.199286 7f15cdbfb6c0 Level-0 table #454: 0 bytes OK
2026/06/07-23:28:18.043745 7f15cdbfb6c0 Delete type=0 #448 2026/06/07-23:51:38.205066 7f15cdbfb6c0 Delete type=0 #452
2026/06/07-23:28:18.050582 7f15cdbfb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.211362 7f15cdbfb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000446 MANIFEST-000450
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.486418 7f15ce3fc6c0 Recovering log #444 2026/06/08-07:56:30.171449 7f15cfbff6c0 Recovering log #448
2026/06/07-23:29:46.496573 7f15ce3fc6c0 Delete type=3 #442 2026/06/08-07:56:30.181937 7f15cfbff6c0 Delete type=3 #446
2026/06/07-23:29:46.496587 7f15ce3fc6c0 Delete type=0 #444 2026/06/08-07:56:30.181977 7f15cfbff6c0 Delete type=0 #448
2026/06/07-23:51:38.132071 7f15cdbfb6c0 Level-0 table #449: started 2026/06/08-07:57:04.989021 7f15cdbfb6c0 Level-0 table #453: started
2026/06/07-23:51:38.132089 7f15cdbfb6c0 Level-0 table #449: 0 bytes OK 2026/06/08-07:57:04.989044 7f15cdbfb6c0 Level-0 table #453: 0 bytes OK
2026/06/07-23:51:38.138027 7f15cdbfb6c0 Delete type=0 #447 2026/06/08-07:57:04.995876 7f15cdbfb6c0 Delete type=0 #451
2026/06/07-23:51:38.149430 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.002112 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.277424 7f15cf3fe6c0 Recovering log #440 2026/06/07-23:29:46.486418 7f15ce3fc6c0 Recovering log #444
2026/06/07-22:26:23.287266 7f15cf3fe6c0 Delete type=3 #438 2026/06/07-23:29:46.496573 7f15ce3fc6c0 Delete type=3 #442
2026/06/07-22:26:23.287281 7f15cf3fe6c0 Delete type=0 #440 2026/06/07-23:29:46.496587 7f15ce3fc6c0 Delete type=0 #444
2026/06/07-23:28:17.956926 7f15cdbfb6c0 Level-0 table #445: started 2026/06/07-23:51:38.132071 7f15cdbfb6c0 Level-0 table #449: started
2026/06/07-23:28:17.956939 7f15cdbfb6c0 Level-0 table #445: 0 bytes OK 2026/06/07-23:51:38.132089 7f15cdbfb6c0 Level-0 table #449: 0 bytes OK
2026/06/07-23:28:17.962818 7f15cdbfb6c0 Delete type=0 #443 2026/06/07-23:51:38.138027 7f15cdbfb6c0 Delete type=0 #447
2026/06/07-23:28:17.968789 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.149430 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.519301 7f15cebfd6c0 Recovering log #343 2026/06/08-07:56:30.209220 7f15cfbff6c0 Recovering log #347
2026/06/07-23:29:46.528855 7f15cebfd6c0 Delete type=3 #341 2026/06/08-07:56:30.220547 7f15cfbff6c0 Delete type=3 #345
2026/06/07-23:29:46.528876 7f15cebfd6c0 Delete type=0 #343 2026/06/08-07:56:30.220580 7f15cfbff6c0 Delete type=0 #347
2026/06/07-23:51:38.149435 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.018247 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.149444 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.018257 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.155961 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.026595 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.162070 7f15cdbfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.034999 7f15cdbfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.309282 7f15cfbff6c0 Recovering log #339 2026/06/07-23:29:46.519301 7f15cebfd6c0 Recovering log #343
2026/06/07-22:26:23.319052 7f15cfbff6c0 Delete type=3 #337 2026/06/07-23:29:46.528855 7f15cebfd6c0 Delete type=3 #341
2026/06/07-22:26:23.319068 7f15cfbff6c0 Delete type=0 #339 2026/06/07-23:29:46.528876 7f15cebfd6c0 Delete type=0 #343
2026/06/07-23:28:17.984230 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.149435 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:17.984244 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.149444 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:17.993689 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.155961 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:17.999974 7f15cdbfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.162070 7f15cdbfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.508106 7f15ce3fc6c0 Recovering log #343 2026/06/08-07:56:30.194019 7f15ce3fc6c0 Recovering log #347
2026/06/07-23:29:46.517793 7f15ce3fc6c0 Delete type=3 #341 2026/06/08-07:56:30.206800 7f15ce3fc6c0 Delete type=3 #345
2026/06/07-23:29:46.517822 7f15ce3fc6c0 Delete type=0 #343 2026/06/08-07:56:30.206834 7f15ce3fc6c0 Delete type=0 #347
2026/06/07-23:51:38.138162 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.010424 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.138174 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.010442 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.143807 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.018212 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.156002 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.034993 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.298745 7f15cf3fe6c0 Recovering log #339 2026/06/07-23:29:46.508106 7f15ce3fc6c0 Recovering log #343
2026/06/07-22:26:23.307825 7f15cf3fe6c0 Delete type=3 #337 2026/06/07-23:29:46.517793 7f15ce3fc6c0 Delete type=3 #341
2026/06/07-22:26:23.307846 7f15cf3fe6c0 Delete type=0 #339 2026/06/07-23:29:46.517822 7f15ce3fc6c0 Delete type=0 #343
2026/06/07-23:28:17.978225 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.138162 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:17.978242 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.138174 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:17.984167 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.143807 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:17.999966 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.156002 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000462 MANIFEST-000466
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.475874 7f15cebfd6c0 Recovering log #460 2026/06/08-07:56:30.155801 7f15ce3fc6c0 Recovering log #464
2026/06/07-23:29:46.484893 7f15cebfd6c0 Delete type=3 #458 2026/06/08-07:56:30.169834 7f15ce3fc6c0 Delete type=3 #462
2026/06/07-23:29:46.484912 7f15cebfd6c0 Delete type=0 #460 2026/06/08-07:56:30.169866 7f15ce3fc6c0 Delete type=0 #464
2026/06/07-23:51:38.118698 7f15cdbfb6c0 Level-0 table #465: started 2026/06/08-07:57:04.995917 7f15cdbfb6c0 Level-0 table #469: started
2026/06/07-23:51:38.118712 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK 2026/06/08-07:57:04.995929 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK
2026/06/07-23:51:38.125251 7f15cdbfb6c0 Delete type=0 #463 2026/06/08-07:57:05.002057 7f15cdbfb6c0 Delete type=0 #467
2026/06/07-23:51:38.138081 7f15cdbfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.002117 7f15cdbfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.266894 7f15ce3fc6c0 Recovering log #456 2026/06/07-23:29:46.475874 7f15cebfd6c0 Recovering log #460
2026/06/07-22:26:23.275979 7f15ce3fc6c0 Delete type=3 #454 2026/06/07-23:29:46.484893 7f15cebfd6c0 Delete type=3 #458
2026/06/07-22:26:23.275997 7f15ce3fc6c0 Delete type=0 #456 2026/06/07-23:29:46.484912 7f15cebfd6c0 Delete type=0 #460
2026/06/07-23:28:17.941519 7f15cdbfb6c0 Level-0 table #461: started 2026/06/07-23:51:38.118698 7f15cdbfb6c0 Level-0 table #465: started
2026/06/07-23:28:17.941549 7f15cdbfb6c0 Level-0 table #461: 0 bytes OK 2026/06/07-23:51:38.118712 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK
2026/06/07-23:28:17.949985 7f15cdbfb6c0 Delete type=0 #459 2026/06/07-23:51:38.125251 7f15cdbfb6c0 Delete type=0 #463
2026/06/07-23:28:17.968775 7f15cdbfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.138081 7f15cdbfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000462 MANIFEST-000466
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.563294 7f15cfbff6c0 Recovering log #460 2026/06/08-07:56:30.266944 7f15cf3fe6c0 Recovering log #464
2026/06/07-23:29:46.572186 7f15cfbff6c0 Delete type=3 #458 2026/06/08-07:56:30.278872 7f15cf3fe6c0 Delete type=3 #462
2026/06/07-23:29:46.572202 7f15cfbff6c0 Delete type=0 #460 2026/06/08-07:56:30.278933 7f15cf3fe6c0 Delete type=0 #464
2026/06/07-23:51:38.173581 7f15cdbfb6c0 Level-0 table #465: started 2026/06/08-07:57:05.051894 7f15cdbfb6c0 Level-0 table #469: started
2026/06/07-23:51:38.173595 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK 2026/06/08-07:57:05.051903 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK
2026/06/07-23:51:38.180217 7f15cdbfb6c0 Delete type=0 #463 2026/06/08-07:57:05.059710 7f15cdbfb6c0 Delete type=0 #467
2026/06/07-23:51:38.186311 7f15cdbfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.082380 7f15cdbfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.352823 7f15cfbff6c0 Recovering log #456 2026/06/07-23:29:46.563294 7f15cfbff6c0 Recovering log #460
2026/06/07-22:26:23.361852 7f15cfbff6c0 Delete type=3 #454 2026/06/07-23:29:46.572186 7f15cfbff6c0 Delete type=3 #458
2026/06/07-22:26:23.361868 7f15cfbff6c0 Delete type=0 #456 2026/06/07-23:29:46.572202 7f15cfbff6c0 Delete type=0 #460
2026/06/07-23:28:18.012534 7f15cdbfb6c0 Level-0 table #461: started 2026/06/07-23:51:38.173581 7f15cdbfb6c0 Level-0 table #465: started
2026/06/07-23:28:18.012548 7f15cdbfb6c0 Level-0 table #461: 0 bytes OK 2026/06/07-23:51:38.173595 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK
2026/06/07-23:28:18.018384 7f15cdbfb6c0 Delete type=0 #459 2026/06/07-23:51:38.180217 7f15cdbfb6c0 Delete type=0 #463
2026/06/07-23:28:18.025111 7f15cdbfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.186311 7f15cdbfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.497786 7f15cebfd6c0 Recovering log #343 2026/06/08-07:56:30.183115 7f15cebfd6c0 Recovering log #347
2026/06/07-23:29:46.506890 7f15cebfd6c0 Delete type=3 #341 2026/06/08-07:56:30.192642 7f15cebfd6c0 Delete type=3 #345
2026/06/07-23:29:46.506907 7f15cebfd6c0 Delete type=0 #343 2026/06/08-07:56:30.192668 7f15cebfd6c0 Delete type=0 #347
2026/06/07-23:51:38.143833 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.002185 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.143844 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.002225 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.149406 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.010347 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.156008 7f15cdbfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.034984 7f15cdbfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.288575 7f15cebfd6c0 Recovering log #339 2026/06/07-23:29:46.497786 7f15cebfd6c0 Recovering log #343
2026/06/07-22:26:23.297862 7f15cebfd6c0 Delete type=3 #337 2026/06/07-23:29:46.506890 7f15cebfd6c0 Delete type=3 #341
2026/06/07-22:26:23.297882 7f15cebfd6c0 Delete type=0 #339 2026/06/07-23:29:46.506907 7f15cebfd6c0 Delete type=0 #343
2026/06/07-23:28:17.968876 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.143833 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:17.968886 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.143844 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:17.978161 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.149406 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:17.999957 7f15cdbfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.156008 7f15cdbfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.551905 7f15ce3fc6c0 Recovering log #343 2026/06/08-07:56:30.252693 7f15cfbff6c0 Recovering log #347
2026/06/07-23:29:46.561422 7f15ce3fc6c0 Delete type=3 #341 2026/06/08-07:56:30.265379 7f15cfbff6c0 Delete type=3 #345
2026/06/07-23:29:46.561439 7f15ce3fc6c0 Delete type=0 #343 2026/06/08-07:56:30.265405 7f15cfbff6c0 Delete type=0 #347
2026/06/07-23:51:38.162076 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.043075 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.162089 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.043086 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.167711 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.051845 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.180316 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.059803 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.341945 7f15cf3fe6c0 Recovering log #339 2026/06/07-23:29:46.551905 7f15ce3fc6c0 Recovering log #343
2026/06/07-22:26:23.351548 7f15cf3fe6c0 Delete type=3 #337 2026/06/07-23:29:46.561422 7f15ce3fc6c0 Delete type=3 #341
2026/06/07-22:26:23.351562 7f15cf3fe6c0 Delete type=0 #339 2026/06/07-23:29:46.561439 7f15ce3fc6c0 Delete type=0 #343
2026/06/07-23:28:18.006777 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.162076 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:18.006789 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.162089 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:18.012488 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.167711 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:18.025106 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.180316 7f15cdbfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000293 MANIFEST-000297
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.594984 7f15cebfd6c0 Recovering log #291 2026/06/08-07:56:30.303527 7f15cebfd6c0 Recovering log #295
2026/06/07-23:29:46.603957 7f15cebfd6c0 Delete type=3 #289 2026/06/08-07:56:30.313800 7f15cebfd6c0 Delete type=3 #293
2026/06/07-23:29:46.603977 7f15cebfd6c0 Delete type=0 #291 2026/06/08-07:56:30.313855 7f15cebfd6c0 Delete type=0 #295
2026/06/07-23:51:38.192811 7f15cdbfb6c0 Level-0 table #296: started 2026/06/08-07:57:05.068091 7f15cdbfb6c0 Level-0 table #300: started
2026/06/07-23:51:38.192828 7f15cdbfb6c0 Level-0 table #296: 0 bytes OK 2026/06/08-07:57:05.068111 7f15cdbfb6c0 Level-0 table #300: 0 bytes OK
2026/06/07-23:51:38.199207 7f15cdbfb6c0 Delete type=0 #294 2026/06/08-07:57:05.076017 7f15cdbfb6c0 Delete type=0 #298
2026/06/07-23:51:38.205129 7f15cdbfb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.082392 7f15cdbfb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.384369 7f15ce3fc6c0 Recovering log #287 2026/06/07-23:29:46.594984 7f15cebfd6c0 Recovering log #291
2026/06/07-22:26:23.393736 7f15ce3fc6c0 Delete type=3 #285 2026/06/07-23:29:46.603957 7f15cebfd6c0 Delete type=3 #289
2026/06/07-22:26:23.393754 7f15ce3fc6c0 Delete type=0 #287 2026/06/07-23:29:46.603977 7f15cebfd6c0 Delete type=0 #291
2026/06/07-23:28:18.030882 7f15cdbfb6c0 Level-0 table #292: started 2026/06/07-23:51:38.192811 7f15cdbfb6c0 Level-0 table #296: started
2026/06/07-23:28:18.030892 7f15cdbfb6c0 Level-0 table #292: 0 bytes OK 2026/06/07-23:51:38.192828 7f15cdbfb6c0 Level-0 table #296: 0 bytes OK
2026/06/07-23:28:18.037057 7f15cdbfb6c0 Delete type=0 #290 2026/06/07-23:51:38.199207 7f15cdbfb6c0 Delete type=0 #294
2026/06/07-23:28:18.050563 7f15cdbfb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.205129 7f15cdbfb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000251 MANIFEST-000255
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.466064 7f15cf3fe6c0 Recovering log #249 2026/06/08-07:56:30.140632 7f15cfbff6c0 Recovering log #253
2026/06/07-23:29:46.475048 7f15cf3fe6c0 Delete type=3 #247 2026/06/08-07:56:30.153014 7f15cfbff6c0 Delete type=3 #251
2026/06/07-23:29:46.475064 7f15cf3fe6c0 Delete type=0 #249 2026/06/08-07:56:30.153043 7f15cfbff6c0 Delete type=0 #253
2026/06/07-23:51:38.125314 7f15cdbfb6c0 Level-0 table #254: started 2026/06/08-07:57:04.981102 7f15cdbfb6c0 Level-0 table #258: started
2026/06/07-23:51:38.125332 7f15cdbfb6c0 Level-0 table #254: 0 bytes OK 2026/06/08-07:57:04.981123 7f15cdbfb6c0 Level-0 table #258: 0 bytes OK
2026/06/07-23:51:38.131999 7f15cdbfb6c0 Delete type=0 #252 2026/06/08-07:57:04.988934 7f15cdbfb6c0 Delete type=0 #256
2026/06/07-23:51:38.138087 7f15cdbfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.002107 7f15cdbfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.257110 7f15cfbff6c0 Recovering log #245 2026/06/07-23:29:46.466064 7f15cf3fe6c0 Recovering log #249
2026/06/07-22:26:23.265916 7f15cfbff6c0 Delete type=3 #243 2026/06/07-23:29:46.475048 7f15cf3fe6c0 Delete type=3 #247
2026/06/07-22:26:23.265933 7f15cfbff6c0 Delete type=0 #245 2026/06/07-23:29:46.475064 7f15cf3fe6c0 Delete type=0 #249
2026/06/07-23:28:17.950047 7f15cdbfb6c0 Level-0 table #250: started 2026/06/07-23:51:38.125314 7f15cdbfb6c0 Level-0 table #254: started
2026/06/07-23:28:17.950062 7f15cdbfb6c0 Level-0 table #250: 0 bytes OK 2026/06/07-23:51:38.125332 7f15cdbfb6c0 Level-0 table #254: 0 bytes OK
2026/06/07-23:28:17.956864 7f15cdbfb6c0 Delete type=0 #248 2026/06/07-23:51:38.131999 7f15cdbfb6c0 Delete type=0 #252
2026/06/07-23:28:17.968783 7f15cdbfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.138087 7f15cdbfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000343 MANIFEST-000347
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.455708 7f15cfbff6c0 Recovering log #341 2026/06/08-07:56:30.129299 7f15cf3fe6c0 Recovering log #345
2026/06/07-23:29:46.465016 7f15cfbff6c0 Delete type=3 #339 2026/06/08-07:56:30.139290 7f15cf3fe6c0 Delete type=3 #343
2026/06/07-23:29:46.465034 7f15cfbff6c0 Delete type=0 #341 2026/06/08-07:56:30.139350 7f15cf3fe6c0 Delete type=0 #345
2026/06/07-23:51:38.112458 7f15cdbfb6c0 Level-0 table #346: started 2026/06/08-07:57:04.972030 7f15cdbfb6c0 Level-0 table #350: started
2026/06/07-23:51:38.112490 7f15cdbfb6c0 Level-0 table #346: 0 bytes OK 2026/06/08-07:57:04.972088 7f15cdbfb6c0 Level-0 table #350: 0 bytes OK
2026/06/07-23:51:38.118647 7f15cdbfb6c0 Delete type=0 #344 2026/06/08-07:57:04.981007 7f15cdbfb6c0 Delete type=0 #348
2026/06/07-23:51:38.138072 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.002098 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.246051 7f15cebfd6c0 Recovering log #337 2026/06/07-23:29:46.455708 7f15cfbff6c0 Recovering log #341
2026/06/07-22:26:23.256115 7f15cebfd6c0 Delete type=3 #335 2026/06/07-23:29:46.465016 7f15cfbff6c0 Delete type=3 #339
2026/06/07-22:26:23.256136 7f15cebfd6c0 Delete type=0 #337 2026/06/07-23:29:46.465034 7f15cfbff6c0 Delete type=0 #341
2026/06/07-23:28:17.962867 7f15cdbfb6c0 Level-0 table #342: started 2026/06/07-23:51:38.112458 7f15cdbfb6c0 Level-0 table #346: started
2026/06/07-23:28:17.962881 7f15cdbfb6c0 Level-0 table #342: 0 bytes OK 2026/06/07-23:51:38.112490 7f15cdbfb6c0 Level-0 table #346: 0 bytes OK
2026/06/07-23:28:17.968718 7f15cdbfb6c0 Delete type=0 #340 2026/06/07-23:51:38.118647 7f15cdbfb6c0 Delete type=0 #344
2026/06/07-23:28:17.968872 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.138072 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000444 MANIFEST-000448
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.584487 7f15ce3fc6c0 Recovering log #442 2026/06/08-07:56:30.291447 7f15cfbff6c0 Recovering log #446
2026/06/07-23:29:46.594077 7f15ce3fc6c0 Delete type=3 #440 2026/06/08-07:56:30.301749 7f15cfbff6c0 Delete type=3 #444
2026/06/07-23:29:46.594097 7f15ce3fc6c0 Delete type=0 #442 2026/06/08-07:56:30.301808 7f15cfbff6c0 Delete type=0 #446
2026/06/07-23:51:38.180421 7f15cdbfb6c0 Level-0 table #447: started 2026/06/08-07:57:05.076075 7f15cdbfb6c0 Level-0 table #451: started
2026/06/07-23:51:38.180431 7f15cdbfb6c0 Level-0 table #447: 0 bytes OK 2026/06/08-07:57:05.076084 7f15cdbfb6c0 Level-0 table #451: 0 bytes OK
2026/06/07-23:51:38.186270 7f15cdbfb6c0 Delete type=0 #445 2026/06/08-07:57:05.082329 7f15cdbfb6c0 Delete type=0 #449
2026/06/07-23:51:38.199263 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.082397 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.373874 7f15cebfd6c0 Recovering log #438 2026/06/07-23:29:46.584487 7f15ce3fc6c0 Recovering log #442
2026/06/07-22:26:23.383224 7f15cebfd6c0 Delete type=3 #436 2026/06/07-23:29:46.594077 7f15ce3fc6c0 Delete type=3 #440
2026/06/07-22:26:23.383242 7f15cebfd6c0 Delete type=0 #438 2026/06/07-23:29:46.594097 7f15ce3fc6c0 Delete type=0 #442
2026/06/07-23:28:18.025158 7f15cdbfb6c0 Level-0 table #443: started 2026/06/07-23:51:38.180421 7f15cdbfb6c0 Level-0 table #447: started
2026/06/07-23:28:18.025168 7f15cdbfb6c0 Level-0 table #443: 0 bytes OK 2026/06/07-23:51:38.180431 7f15cdbfb6c0 Level-0 table #447: 0 bytes OK
2026/06/07-23:28:18.030846 7f15cdbfb6c0 Delete type=0 #441 2026/06/07-23:51:38.186270 7f15cdbfb6c0 Delete type=0 #445
2026/06/07-23:28:18.050542 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.199263 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000469 MANIFEST-000473
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.573046 7f15cf3fe6c0 Recovering log #467 2026/06/08-07:56:30.280608 7f15cebfd6c0 Recovering log #471
2026/06/07-23:29:46.582721 7f15cf3fe6c0 Delete type=3 #465 2026/06/08-07:56:30.289600 7f15cebfd6c0 Delete type=3 #469
2026/06/07-23:29:46.582740 7f15cf3fe6c0 Delete type=0 #467 2026/06/08-07:56:30.289633 7f15cebfd6c0 Delete type=0 #471
2026/06/07-23:51:38.186317 7f15cdbfb6c0 Level-0 table #472: started 2026/06/08-07:57:05.059809 7f15cdbfb6c0 Level-0 table #476: started
2026/06/07-23:51:38.186330 7f15cdbfb6c0 Level-0 table #472: 0 bytes OK 2026/06/08-07:57:05.059830 7f15cdbfb6c0 Level-0 table #476: 0 bytes OK
2026/06/07-23:51:38.192738 7f15cdbfb6c0 Delete type=0 #470 2026/06/08-07:57:05.068002 7f15cdbfb6c0 Delete type=0 #474
2026/06/07-23:51:38.205122 7f15cdbfb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.082386 7f15cdbfb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.363033 7f15cf3fe6c0 Recovering log #463 2026/06/07-23:29:46.573046 7f15cf3fe6c0 Recovering log #467
2026/06/07-22:26:23.372436 7f15cf3fe6c0 Delete type=3 #461 2026/06/07-23:29:46.582721 7f15cf3fe6c0 Delete type=3 #465
2026/06/07-22:26:23.372455 7f15cf3fe6c0 Delete type=0 #463 2026/06/07-23:29:46.582740 7f15cf3fe6c0 Delete type=0 #467
2026/06/07-23:28:18.018436 7f15cdbfb6c0 Level-0 table #468: started 2026/06/07-23:51:38.186317 7f15cdbfb6c0 Level-0 table #472: started
2026/06/07-23:28:18.018450 7f15cdbfb6c0 Level-0 table #468: 0 bytes OK 2026/06/07-23:51:38.186330 7f15cdbfb6c0 Level-0 table #472: 0 bytes OK
2026/06/07-23:28:18.025050 7f15cdbfb6c0 Delete type=0 #466 2026/06/07-23:51:38.192738 7f15cdbfb6c0 Delete type=0 #470
2026/06/07-23:28:18.025114 7f15cdbfb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.205122 7f15cdbfb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.530421 7f15cf3fe6c0 Recovering log #343 2026/06/08-07:56:30.224120 7f15ce3fc6c0 Recovering log #347
2026/06/07-23:29:46.540058 7f15cf3fe6c0 Delete type=3 #341 2026/06/08-07:56:30.236084 7f15ce3fc6c0 Delete type=3 #345
2026/06/07-23:29:46.540076 7f15cf3fe6c0 Delete type=0 #343 2026/06/08-07:56:30.236118 7f15ce3fc6c0 Delete type=0 #347
2026/06/07-23:51:38.156014 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.026634 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.156025 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.026644 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.162030 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.034894 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.180301 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.051889 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.320290 7f15ce3fc6c0 Recovering log #339 2026/06/07-23:29:46.530421 7f15cf3fe6c0 Recovering log #343
2026/06/07-22:26:23.329632 7f15ce3fc6c0 Delete type=3 #337 2026/06/07-23:29:46.540058 7f15cf3fe6c0 Delete type=3 #341
2026/06/07-22:26:23.329650 7f15ce3fc6c0 Delete type=0 #339 2026/06/07-23:29:46.540076 7f15cf3fe6c0 Delete type=0 #343
2026/06/07-23:28:17.993768 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.156014 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:17.993784 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.156025 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:17.999897 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.162030 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:18.000045 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.180301 7f15cdbfb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000345 MANIFEST-000349
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-23:29:46.541402 7f15cebfd6c0 Recovering log #343 2026/06/08-07:56:30.240475 7f15cebfd6c0 Recovering log #347
2026/06/07-23:29:46.550608 7f15cebfd6c0 Delete type=3 #341 2026/06/08-07:56:30.250776 7f15cebfd6c0 Delete type=3 #345
2026/06/07-23:29:46.550634 7f15cebfd6c0 Delete type=0 #343 2026/06/08-07:56:30.250834 7f15cebfd6c0 Delete type=0 #347
2026/06/07-23:51:38.167745 7f15cdbfb6c0 Level-0 table #348: started 2026/06/08-07:57:05.035129 7f15cdbfb6c0 Level-0 table #352: started
2026/06/07-23:51:38.167758 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK 2026/06/08-07:57:05.035151 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
2026/06/07-23:51:38.173528 7f15cdbfb6c0 Delete type=0 #346 2026/06/08-07:57:05.043032 7f15cdbfb6c0 Delete type=0 #350
2026/06/07-23:51:38.180328 7f15cdbfb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) 2026/06/08-07:57:05.059795 7f15cdbfb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/07-22:26:23.331166 7f15cfbff6c0 Recovering log #339 2026/06/07-23:29:46.541402 7f15cebfd6c0 Recovering log #343
2026/06/07-22:26:23.340799 7f15cfbff6c0 Delete type=3 #337 2026/06/07-23:29:46.550608 7f15cebfd6c0 Delete type=3 #341
2026/06/07-22:26:23.340822 7f15cfbff6c0 Delete type=0 #339 2026/06/07-23:29:46.550634 7f15cebfd6c0 Delete type=0 #343
2026/06/07-23:28:18.000062 7f15cdbfb6c0 Level-0 table #344: started 2026/06/07-23:51:38.167745 7f15cdbfb6c0 Level-0 table #348: started
2026/06/07-23:28:18.000087 7f15cdbfb6c0 Level-0 table #344: 0 bytes OK 2026/06/07-23:51:38.167758 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK
2026/06/07-23:28:18.006733 7f15cdbfb6c0 Delete type=0 #342 2026/06/07-23:51:38.173528 7f15cdbfb6c0 Delete type=0 #346
2026/06/07-23:28:18.025099 7f15cdbfb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) 2026/06/07-23:51:38.180328 7f15cdbfb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+39
View File
@@ -3736,6 +3736,45 @@ li {
border-radius: 2px; border-radius: 2px;
color: #f0dfc0; color: #f0dfc0;
} }
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
cursor: pointer;
border-radius: 3px;
transition: all 0.15s;
text-decoration: none;
margin-right: 0.25rem;
}
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle i {
font-size: 0.95rem;
color: #8a7a5a;
}
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle:hover {
background: rgba(139, 69, 19, 0.2);
transform: scale(1.1);
}
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle:hover i {
color: #2a1a0a;
}
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle.used i {
color: #4a7c59;
}
.fvtt-mournblade-cyd-2-0.actor .talent-used-toggle.used:hover i {
color: #2d5a3a;
}
.fvtt-mournblade-cyd-2-0.actor .item-list li.item.talent-used {
opacity: 0.6;
}
.fvtt-mournblade-cyd-2-0.actor .item-list li.item.talent-used .item-name-img {
filter: grayscale(60%);
}
.fvtt-mournblade-cyd-2-0.actor .item-list li.item.talent-used .talent-used-toggle.used i {
color: #6aaa7a;
}
/* ==================== Creature Sheet Specific Styles ==================== */ /* ==================== Creature Sheet Specific Styles ==================== */
.fvtt-mournblade-cyd-2-0.actor.creature-sheet .background-sheet-header-creature { .fvtt-mournblade-cyd-2-0.actor.creature-sheet .background-sheet-header-creature {
background: linear-gradient(135deg, rgba(0, 60, 0, 0.15) 0%, rgba(20, 80, 20, 0.1) 100%); background: linear-gradient(135deg, rgba(0, 60, 0, 0.15) 0%, rgba(20, 80, 20, 0.1) 100%);
+6 -3
View File
@@ -229,8 +229,11 @@
</div> </div>
</li> </li>
{{#each talents as |talent key|}} {{#each talents as |talent key|}}
<li class="item flexrow " data-item-id="{{talent._id}}" data-item-type="talent"> <li class="item flexrow {{#if talent.system.used}}talent-used{{/if}}" data-item-id="{{talent._id}}" data-item-type="talent">
<img class="item-name-img" src="{{talent.img}}" /> <img class="item-name-img" src="{{talent.img}}" />
<a class="talent-used-toggle {{#if talent.system.used}}used{{/if}}" data-action="toggleTalentUsed" data-tooltip="{{#if talent.system.used}}Marquer comme non utilisé{{else}}Marquer comme utilisé{{/if}}">
<i class="{{#if talent.system.used}}fas fa-check-circle{{else}}far fa-circle{{/if}}"></i>
</a>
<span class="item-name-label competence-name">{{talent.name}}</span> <span class="item-name-label competence-name">{{talent.name}}</span>
<span class="item-name-label item-field-label-long2">{{talent.system.resumebonus}}</span> <span class="item-name-label item-field-label-long2">{{talent.system.resumebonus}}</span>
@@ -720,7 +723,7 @@
<div class="sheet-box color-bg-archetype"> <div class="sheet-box color-bg-archetype">
<h4> <h4>
<label class="argent-total-text"> <label class="argent-total-text">
Argent Total : {{richesse.po}} PO - {{richesse.pa}} PA - {{richesse.sc}} SC (total {{richesse.valueSC}} SC) Argent Total : {{richesse.po}} PO - {{richesse.pa}} SA - {{richesse.sc}} PB (total {{richesse.valueSC}} PB)
</label> </label>
</h4> </h4>
</div> </div>
@@ -763,7 +766,7 @@
<div class="sheet-box color-bg-archetype"> <div class="sheet-box color-bg-archetype">
<h4> <h4>
<label class="argent-total-text"> <label class="argent-total-text">
Valeur Total Equipement : {{valeurEquipement.po}} PO - {{valeurEquipement.pa}} PA - {{valeurEquipement.sc}} SC (total {{valeurEquipement.valueSC}} SC) Valeur Total Equipement : {{valeurEquipement.po}} PO - {{valeurEquipement.pa}} SA - {{valeurEquipement.sc}} PB (total {{valeurEquipement.valueSC}} PB)
</label> </label>
</h4> </h4>
</div> </div>
+4 -1
View File
@@ -311,8 +311,11 @@
</div> </div>
</li> </li>
{{#each talents as |talent key|}} {{#each talents as |talent key|}}
<li class="item flexrow" data-item-id="{{talent._id}}" data-item-type="talent"> <li class="item flexrow {{#if talent.system.used}}talent-used{{/if}}" data-item-id="{{talent._id}}" data-item-type="talent">
<img class="item-name-img" src="{{talent.img}}" /> <img class="item-name-img" src="{{talent.img}}" />
<a class="talent-used-toggle {{#if talent.system.used}}used{{/if}}" data-action="toggleTalentUsed" data-tooltip="{{#if talent.system.used}}Marquer comme non utilisé{{else}}Marquer comme utilisé{{/if}}">
<i class="{{#if talent.system.used}}fas fa-check-circle{{else}}far fa-circle{{/if}}"></i>
</a>
<span class="item-name-label competence-name">{{talent.name}}</span> <span class="item-name-label competence-name">{{talent.name}}</span>
<span class="item-name-label item-field-label-long2">{{talent.system.resumebonus}}</span> <span class="item-name-label item-field-label-long2">{{talent.system.resumebonus}}</span>
<div class="item-filler">&nbsp;</div> <div class="item-filler">&nbsp;</div>
+1 -1
View File
@@ -20,7 +20,7 @@
</li> </li>
<li class="flexrow item"> <li class="flexrow item">
<label class="generic-label item-field-label-long">Valeur en Sous de Cuivre (SC)</label> <label class="generic-label item-field-label-long">Valeur en Pièces de Bronze (PB)</label>
<input type="text" class="numeric-input item-field-label-short" name="system.prixsc" value="{{system.prixsc}}" <input type="text" class="numeric-input item-field-label-short" name="system.prixsc" value="{{system.prixsc}}"
data-dtype="Number" /> data-dtype="Number" />
</li> </li>
+6 -6
View File
@@ -53,42 +53,42 @@
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.exercisedskills"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.exercisedskills"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor competences target="system.competences" button=true owner=owner editable=editable}} {{formInput systemFields.competences enriched=enrichedCompetences value=system.competences name="system.competences" toggled=true label=false}}
</div> </div>
</div> </div>
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.initiateTalents"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.initiateTalents"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor talentsinitie target="system.talentsinitie" button=true owner=owner editable=editable}} {{formInput systemFields.talentsinitie enriched=enrichedTalentsinitie value=system.talentsinitie name="system.talentsinitie" toggled=true label=false}}
</div> </div>
</div> </div>
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.prerequisitesAguerri"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.prerequisitesAguerri"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor prerequisaguerri target="system.prerequisaguerri" button=true owner=owner editable=editable}} {{formInput systemFields.prerequisaguerri enriched=enrichedPrerequisaguerri value=system.prerequisaguerri name="system.prerequisaguerri" toggled=true label=false}}
</div> </div>
</div> </div>
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.aguerriTalents"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.aguerriTalents"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor talentsaguerri target="system.talentsaguerri" button=true owner=owner editable=editable}} {{formInput systemFields.talentsaguerri enriched=enrichedTalentsaguerri value=system.talentsaguerri name="system.talentsaguerri" toggled=true label=false}}
</div> </div>
</div> </div>
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.prerequisitesMaitre"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.prerequisitesMaitre"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor prerequismaitre target="system.prerequismaitre" button=true owner=owner editable=editable}} {{formInput systemFields.prerequismaitre enriched=enrichedPrerequismaitre value=system.prerequismaitre name="system.prerequismaitre" toggled=true label=false}}
</div> </div>
</div> </div>
<div class="sheet-box"> <div class="sheet-box">
<h3><label class="items-title-text">{{localize "MNBL.maitreTalents"}}</label></h3> <h3><label class="items-title-text">{{localize "MNBL.maitreTalents"}}</label></h3>
<div class="small-editor item-text-long-line"> <div class="small-editor item-text-long-line">
{{editor talentsmaitre target="system.talentsmaitre" button=true owner=owner editable=editable}} {{formInput systemFields.talentsmaitre enriched=enrichedTalentsmaitre value=system.talentsmaitre name="system.talentsmaitre" toggled=true label=false}}
</div> </div>
</div> </div>
+3 -3
View File
@@ -24,13 +24,13 @@
<input type="text" class="numeric-input item-field-label-short" name="system.prixca" value="{{system.prixca}}" <input type="text" class="numeric-input item-field-label-short" name="system.prixca" value="{{system.prixca}}"
data-dtype="Number" /> data-dtype="Number" />
<label class="generic-label item-field-label-short">PA </label> <label class="generic-label item-field-label-short">SA </label>
<input type="text" class="numeric-input item-field-label-short" name="system.prixsc" value="{{system.prixsc}}" <input type="text" class="numeric-input item-field-label-short" name="system.prixsc" value="{{system.prixsc}}"
data-dtype="Number" /> data-dtype="Number" />
<label class="generic-label item-field-label-short">SC </label> <label class="generic-label item-field-label-short">PB </label>
</li> </li>
<li class="flexrow item"> <li class="flexrow item">
<label class="generic-label item-field-label-long">Valeur totale </label> <label class="generic-label item-field-label-long">Valeur totale </label>
<span class="item-field-label-long">{{calculateItemValueSC system.prixpo system.prixca system.prixsc}} SC</span> <span class="item-field-label-long">{{calculateItemValueSC system.prixpo system.prixca system.prixsc}} PB</span>
</li> </li>