diff --git a/less/item-styles.less b/less/item-styles.less index 6299626..82f513c 100644 --- a/less/item-styles.less +++ b/less/item-styles.less @@ -312,4 +312,31 @@ border-radius: 3px; flex: 1; } + + /* Section title headings inside sheet-box (Profil, etc.) */ + .tab .sheet-box h3, + .tab .sheet-box .items-title-text { + font-family: "CentaurMT", "Palatino Linotype", serif; + font-size: 0.85rem; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 1px; + color: #f0dfc0 !important; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9); + margin: 0.25rem 0; + padding: 0.2rem 0; + } + + /* Suppress formInput label when heading already provides it */ + .tab .sheet-box .form-group > label { + display: none; + } + + /* ProseMirror editor in sheet-box — ensure readable background */ + .tab .sheet-box .editor { + min-height: 4rem; + background: rgba(255, 250, 240, 0.9); + border: 1px solid rgba(139, 69, 19, 0.35); + border-radius: 3px; + } } diff --git a/less/simple-converted.less b/less/simple-converted.less index adf7f83..bf349bb 100644 --- a/less/simple-converted.less +++ b/less/simple-converted.less @@ -2531,6 +2531,121 @@ color: #5a2d00; } } + + .post-item-price { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 6px; + padding: 5px 10px; + background: rgba(139, 69, 19, 0.06); + border-bottom: 1px solid rgba(139, 69, 19, 0.3); + font-size: 0.85rem; + + .post-price-label { + font-weight: bold; + color: #5a2d00; + font-size: 0.75rem; + text-transform: uppercase; + margin-right: 2px; + } + + .post-price { + background: rgba(255, 255, 255, 0.7); + border: 1px solid rgba(139, 69, 19, 0.3); + border-radius: 3px; + padding: 1px 6px; + color: #2a1400; + + &.post-price-rarete { + background: rgba(255, 215, 0, 0.15); + border-color: rgba(255, 215, 0, 0.4); + color: #8b6914; + } + } + } + + .post-stat-bool { + background: rgba(76, 175, 80, 0.12) !important; + border-color: rgba(76, 175, 80, 0.4) !important; + + .stat-value { + color: #2e7d32; + } + } + + .post-stat-used { + background: rgba(198, 40, 40, 0.12) !important; + border-color: rgba(198, 40, 40, 0.4) !important; + + .stat-value { + color: #c62828; + } + } + + .post-item-predilections { + padding: 6px 10px; + background: rgba(255, 255, 255, 0.5); + border-bottom: 1px solid rgba(139, 69, 19, 0.3); + + h4 { + margin: 0 0 4px 0; + color: #5a2d00; + font-size: 0.85rem; + text-transform: uppercase; + letter-spacing: 0.5px; + } + + ul { + margin: 0; + padding: 0; + list-style: none; + + li { + padding: 2px 0; + font-size: 0.85rem; + color: #2a1400; + border-bottom: 1px solid rgba(139, 69, 19, 0.1); + + &:last-child { border-bottom: none; } + } + } + + .pred-name { + color: #2a1400; + font-weight: bold; + } + + .pred-desc { + color: #5a2d00; + } + + .pred-badge { + display: inline-block; + font-size: 0.7rem; + padding: 0 4px; + border-radius: 2px; + margin-left: 3px; + } + + .pred-maitrise { + color: #1565c0; + background: rgba(21, 101, 192, 0.1); + border: 1px solid rgba(21, 101, 192, 0.3); + } + + .pred-acquise { + color: #2e7d32; + background: rgba(46, 125, 50, 0.1); + border: 1px solid rgba(46, 125, 50, 0.3); + } + + .pred-used { + color: #c62828; + background: rgba(198, 40, 40, 0.1); + border: 1px solid rgba(198, 40, 40, 0.3); + } + } } diff --git a/modules/mournblade-cyd2-utility.js b/modules/mournblade-cyd2-utility.js index 908d14b..dcd6721 100644 --- a/modules/mournblade-cyd2-utility.js +++ b/modules/mournblade-cyd2-utility.js @@ -98,6 +98,73 @@ export class MournbladeCYD2Utility { .join(', '); }); + // Helper pour localiser le type d'item + Handlebars.registerHelper('localizeItemType', function (type) { + const labels = { + arme: "Arme", + protection: "Protection", + competence: "Compétence", + rune: "Rune", + don: "Don", + pacte: "Pacte", + tendance: "Tendance", + talent: "Talent", + equipement: "Équipement", + monnaie: "Monnaie", + profil: "Profil", + historique: "Historique", + ressource: "Ressource", + traitespece: "Trait d'espèce", + traitchaotique: "Trait chaotique", + traitdemoniaque: "Trait démoniaque", + pouvoirselementaire: "Pouvoir élémentaire", + capaciteautomata: "Capacité d'Automata", + runeeffect: "Effet de Rune" + }; + return labels[type] || type; + }); + + // Helper pour localiser le type d'arme + Handlebars.registerHelper('localizeTypeArme', function (value) { + const map = { + contact: "Arme de contact", + contactjet: "Contact et Jet", + jet: "Arme de Jet", + tir: "Arme de Tir" + }; + return map[value] || value; + }); + + // Helper pour localiser le type de talent + Handlebars.registerHelper('localizeTalentType', function (value) { + const map = { + personnage: "Personnage", + traitespece: "Trait d'espèce" + }; + return map[value] || value; + }); + + // Helper pour localiser l'utilisation d'un talent + Handlebars.registerHelper('localizeUtilisation', function (value) { + const map = { + permanent: "Permanent", + sceance: "Une fois par séance", + scenario: "Une fois par scénario", + jour: "Une fois par jour", + unique: "Unique" + }; + return map[value] || value; + }); + + // Helper pour localiser le mode d'effet de rune + Handlebars.registerHelper('localizeRuneMode', function (value) { + const map = { + prononcee: "Prononcée", + inscrite: "Inscrite" + }; + return map[value] || value; + }); + Handlebars.registerHelper('select', function(value, opts) { const html = opts.fn(this); const escaped = String(value).replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); diff --git a/packs/aides-de-jeu/000457.log b/packs/aides-de-jeu/000461.log similarity index 100% rename from packs/aides-de-jeu/000457.log rename to packs/aides-de-jeu/000461.log diff --git a/packs/aides-de-jeu/CURRENT b/packs/aides-de-jeu/CURRENT index d52c190..896b93a 100644 --- a/packs/aides-de-jeu/CURRENT +++ b/packs/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000455 +MANIFEST-000459 diff --git a/packs/aides-de-jeu/LOG b/packs/aides-de-jeu/LOG index c20e260..f48e91d 100644 --- a/packs/aides-de-jeu/LOG +++ b/packs/aides-de-jeu/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.319684 7f15cebfd6c0 Recovering log #453 -2026/06/08-07:56:30.328718 7f15cebfd6c0 Delete type=3 #451 -2026/06/08-07:56:30.328767 7f15cebfd6c0 Delete type=0 #453 -2026/06/08-07:57:05.089618 7f15cdbfb6c0 Level-0 table #458: started -2026/06/08-07:57:05.089633 7f15cdbfb6c0 Level-0 table #458: 0 bytes OK -2026/06/08-07:57:05.096624 7f15cdbfb6c0 Delete type=0 #456 -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) +2026/06/23-20:58:29.389338 7fc30fbff6c0 Recovering log #457 +2026/06/23-20:58:29.399260 7fc30fbff6c0 Delete type=3 #455 +2026/06/23-20:58:29.399318 7fc30fbff6c0 Delete type=0 #457 +2026/06/23-21:19:17.850248 7fc30cbff6c0 Level-0 table #462: started +2026/06/23-21:19:17.850270 7fc30cbff6c0 Level-0 table #462: 0 bytes OK +2026/06/23-21:19:17.859367 7fc30cbff6c0 Delete type=0 #460 +2026/06/23-21:19:17.876008 7fc30cbff6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu/LOG.old b/packs/aides-de-jeu/LOG.old index 8a8ad1e..c20e260 100644 --- a/packs/aides-de-jeu/LOG.old +++ b/packs/aides-de-jeu/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.605565 7f15ce3fc6c0 Recovering log #449 -2026/06/07-23:29:46.614959 7f15ce3fc6c0 Delete type=3 #447 -2026/06/07-23:29:46.614979 7f15ce3fc6c0 Delete type=0 #449 -2026/06/07-23:51:38.199273 7f15cdbfb6c0 Level-0 table #454: started -2026/06/07-23:51:38.199286 7f15cdbfb6c0 Level-0 table #454: 0 bytes OK -2026/06/07-23:51:38.205066 7f15cdbfb6c0 Delete type=0 #452 -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:56:30.319684 7f15cebfd6c0 Recovering log #453 +2026/06/08-07:56:30.328718 7f15cebfd6c0 Delete type=3 #451 +2026/06/08-07:56:30.328767 7f15cebfd6c0 Delete type=0 #453 +2026/06/08-07:57:05.089618 7f15cdbfb6c0 Level-0 table #458: started +2026/06/08-07:57:05.089633 7f15cdbfb6c0 Level-0 table #458: 0 bytes OK +2026/06/08-07:57:05.096624 7f15cdbfb6c0 Delete type=0 #456 +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) diff --git a/packs/aides-de-jeu/MANIFEST-000455 b/packs/aides-de-jeu/MANIFEST-000459 similarity index 84% rename from packs/aides-de-jeu/MANIFEST-000455 rename to packs/aides-de-jeu/MANIFEST-000459 index bbf3c2f..d74dcdf 100644 Binary files a/packs/aides-de-jeu/MANIFEST-000455 and b/packs/aides-de-jeu/MANIFEST-000459 differ diff --git a/packs/armes/000452.log b/packs/armes/000456.log similarity index 100% rename from packs/armes/000452.log rename to packs/armes/000456.log diff --git a/packs/armes/CURRENT b/packs/armes/CURRENT index cf972fb..a169e3a 100644 --- a/packs/armes/CURRENT +++ b/packs/armes/CURRENT @@ -1 +1 @@ -MANIFEST-000450 +MANIFEST-000454 diff --git a/packs/armes/LOG b/packs/armes/LOG index 2adad48..b9b26b9 100644 --- a/packs/armes/LOG +++ b/packs/armes/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.171449 7f15cfbff6c0 Recovering log #448 -2026/06/08-07:56:30.181937 7f15cfbff6c0 Delete type=3 #446 -2026/06/08-07:56:30.181977 7f15cfbff6c0 Delete type=0 #448 -2026/06/08-07:57:04.989021 7f15cdbfb6c0 Level-0 table #453: started -2026/06/08-07:57:04.989044 7f15cdbfb6c0 Level-0 table #453: 0 bytes OK -2026/06/08-07:57:04.995876 7f15cdbfb6c0 Delete type=0 #451 -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) +2026/06/23-20:58:29.227544 7fc30f3fe6c0 Recovering log #452 +2026/06/23-20:58:29.237846 7fc30f3fe6c0 Delete type=3 #450 +2026/06/23-20:58:29.237899 7fc30f3fe6c0 Delete type=0 #452 +2026/06/23-21:19:17.783455 7fc30cbff6c0 Level-0 table #457: started +2026/06/23-21:19:17.783508 7fc30cbff6c0 Level-0 table #457: 0 bytes OK +2026/06/23-21:19:17.789552 7fc30cbff6c0 Delete type=0 #455 +2026/06/23-21:19:17.801772 7fc30cbff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) diff --git a/packs/armes/LOG.old b/packs/armes/LOG.old index 6d33bf1..2adad48 100644 --- a/packs/armes/LOG.old +++ b/packs/armes/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.486418 7f15ce3fc6c0 Recovering log #444 -2026/06/07-23:29:46.496573 7f15ce3fc6c0 Delete type=3 #442 -2026/06/07-23:29:46.496587 7f15ce3fc6c0 Delete type=0 #444 -2026/06/07-23:51:38.132071 7f15cdbfb6c0 Level-0 table #449: started -2026/06/07-23:51:38.132089 7f15cdbfb6c0 Level-0 table #449: 0 bytes OK -2026/06/07-23:51:38.138027 7f15cdbfb6c0 Delete type=0 #447 -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:56:30.171449 7f15cfbff6c0 Recovering log #448 +2026/06/08-07:56:30.181937 7f15cfbff6c0 Delete type=3 #446 +2026/06/08-07:56:30.181977 7f15cfbff6c0 Delete type=0 #448 +2026/06/08-07:57:04.989021 7f15cdbfb6c0 Level-0 table #453: started +2026/06/08-07:57:04.989044 7f15cdbfb6c0 Level-0 table #453: 0 bytes OK +2026/06/08-07:57:04.995876 7f15cdbfb6c0 Delete type=0 #451 +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) diff --git a/packs/armes/MANIFEST-000450 b/packs/armes/MANIFEST-000454 similarity index 73% rename from packs/armes/MANIFEST-000450 rename to packs/armes/MANIFEST-000454 index db53082..a936cdd 100644 Binary files a/packs/armes/MANIFEST-000450 and b/packs/armes/MANIFEST-000454 differ diff --git a/packs/dons/000351.log b/packs/dons/000355.log similarity index 100% rename from packs/dons/000351.log rename to packs/dons/000355.log diff --git a/packs/dons/CURRENT b/packs/dons/CURRENT index 4e1f234..70d0528 100644 --- a/packs/dons/CURRENT +++ b/packs/dons/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/dons/LOG b/packs/dons/LOG index a626bf9..a96e37c 100644 --- a/packs/dons/LOG +++ b/packs/dons/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.209220 7f15cfbff6c0 Recovering log #347 -2026/06/08-07:56:30.220547 7f15cfbff6c0 Delete type=3 #345 -2026/06/08-07:56:30.220580 7f15cfbff6c0 Delete type=0 #347 -2026/06/08-07:57:05.018247 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.018257 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.026595 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.269657 7fc30fbff6c0 Recovering log #351 +2026/06/23-20:58:29.279752 7fc30fbff6c0 Delete type=3 #349 +2026/06/23-20:58:29.279815 7fc30fbff6c0 Delete type=0 #351 +2026/06/23-21:19:17.789616 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.789636 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.795566 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.801779 7fc30cbff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) diff --git a/packs/dons/LOG.old b/packs/dons/LOG.old index 2138c3f..a626bf9 100644 --- a/packs/dons/LOG.old +++ b/packs/dons/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.519301 7f15cebfd6c0 Recovering log #343 -2026/06/07-23:29:46.528855 7f15cebfd6c0 Delete type=3 #341 -2026/06/07-23:29:46.528876 7f15cebfd6c0 Delete type=0 #343 -2026/06/07-23:51:38.149435 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.149444 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.155961 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.209220 7f15cfbff6c0 Recovering log #347 +2026/06/08-07:56:30.220547 7f15cfbff6c0 Delete type=3 #345 +2026/06/08-07:56:30.220580 7f15cfbff6c0 Delete type=0 #347 +2026/06/08-07:57:05.018247 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.018257 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.026595 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/dons/MANIFEST-000349 b/packs/dons/MANIFEST-000353 similarity index 73% rename from packs/dons/MANIFEST-000349 rename to packs/dons/MANIFEST-000353 index 7a290a5..de91d9a 100644 Binary files a/packs/dons/MANIFEST-000349 and b/packs/dons/MANIFEST-000353 differ diff --git a/packs/equipement/000351.log b/packs/equipement/000355.log similarity index 100% rename from packs/equipement/000351.log rename to packs/equipement/000355.log diff --git a/packs/equipement/CURRENT b/packs/equipement/CURRENT index 4e1f234..70d0528 100644 --- a/packs/equipement/CURRENT +++ b/packs/equipement/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/equipement/LOG b/packs/equipement/LOG index e21ae08..6406701 100644 --- a/packs/equipement/LOG +++ b/packs/equipement/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.194019 7f15ce3fc6c0 Recovering log #347 -2026/06/08-07:56:30.206800 7f15ce3fc6c0 Delete type=3 #345 -2026/06/08-07:56:30.206834 7f15ce3fc6c0 Delete type=0 #347 -2026/06/08-07:57:05.010424 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.010442 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.018212 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.255240 7fc30ebfd6c0 Recovering log #351 +2026/06/23-20:58:29.266274 7fc30ebfd6c0 Delete type=3 #349 +2026/06/23-20:58:29.266315 7fc30ebfd6c0 Delete type=0 #351 +2026/06/23-21:19:17.795610 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.795623 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.801707 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.801786 7fc30cbff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) diff --git a/packs/equipement/LOG.old b/packs/equipement/LOG.old index 07854e6..e21ae08 100644 --- a/packs/equipement/LOG.old +++ b/packs/equipement/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.508106 7f15ce3fc6c0 Recovering log #343 -2026/06/07-23:29:46.517793 7f15ce3fc6c0 Delete type=3 #341 -2026/06/07-23:29:46.517822 7f15ce3fc6c0 Delete type=0 #343 -2026/06/07-23:51:38.138162 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.138174 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.143807 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.194019 7f15ce3fc6c0 Recovering log #347 +2026/06/08-07:56:30.206800 7f15ce3fc6c0 Delete type=3 #345 +2026/06/08-07:56:30.206834 7f15ce3fc6c0 Delete type=0 #347 +2026/06/08-07:57:05.010424 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.010442 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.018212 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/equipement/MANIFEST-000349 b/packs/equipement/MANIFEST-000353 similarity index 73% rename from packs/equipement/MANIFEST-000349 rename to packs/equipement/MANIFEST-000353 index 4539d3e..00b79f0 100644 Binary files a/packs/equipement/MANIFEST-000349 and b/packs/equipement/MANIFEST-000353 differ diff --git a/packs/historiques/000468.log b/packs/historiques/000472.log similarity index 100% rename from packs/historiques/000468.log rename to packs/historiques/000472.log diff --git a/packs/historiques/CURRENT b/packs/historiques/CURRENT index 98d8b49..65eef60 100644 --- a/packs/historiques/CURRENT +++ b/packs/historiques/CURRENT @@ -1 +1 @@ -MANIFEST-000466 +MANIFEST-000470 diff --git a/packs/historiques/LOG b/packs/historiques/LOG index 312f387..bc7ae18 100644 --- a/packs/historiques/LOG +++ b/packs/historiques/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.155801 7f15ce3fc6c0 Recovering log #464 -2026/06/08-07:56:30.169834 7f15ce3fc6c0 Delete type=3 #462 -2026/06/08-07:56:30.169866 7f15ce3fc6c0 Delete type=0 #464 -2026/06/08-07:57:04.995917 7f15cdbfb6c0 Level-0 table #469: started -2026/06/08-07:57:04.995929 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK -2026/06/08-07:57:05.002057 7f15cdbfb6c0 Delete type=0 #467 -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) +2026/06/23-20:58:29.213347 7fc30fbff6c0 Recovering log #468 +2026/06/23-20:58:29.224768 7fc30fbff6c0 Delete type=3 #466 +2026/06/23-20:58:29.224810 7fc30fbff6c0 Delete type=0 #468 +2026/06/23-21:19:17.756763 7fc30cbff6c0 Level-0 table #473: started +2026/06/23-21:19:17.756830 7fc30cbff6c0 Level-0 table #473: 0 bytes OK +2026/06/23-21:19:17.763205 7fc30cbff6c0 Delete type=0 #471 +2026/06/23-21:19:17.783128 7fc30cbff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) diff --git a/packs/historiques/LOG.old b/packs/historiques/LOG.old index 0d7161a..312f387 100644 --- a/packs/historiques/LOG.old +++ b/packs/historiques/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.475874 7f15cebfd6c0 Recovering log #460 -2026/06/07-23:29:46.484893 7f15cebfd6c0 Delete type=3 #458 -2026/06/07-23:29:46.484912 7f15cebfd6c0 Delete type=0 #460 -2026/06/07-23:51:38.118698 7f15cdbfb6c0 Level-0 table #465: started -2026/06/07-23:51:38.118712 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK -2026/06/07-23:51:38.125251 7f15cdbfb6c0 Delete type=0 #463 -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:56:30.155801 7f15ce3fc6c0 Recovering log #464 +2026/06/08-07:56:30.169834 7f15ce3fc6c0 Delete type=3 #462 +2026/06/08-07:56:30.169866 7f15ce3fc6c0 Delete type=0 #464 +2026/06/08-07:57:04.995917 7f15cdbfb6c0 Level-0 table #469: started +2026/06/08-07:57:04.995929 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK +2026/06/08-07:57:05.002057 7f15cdbfb6c0 Delete type=0 #467 +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) diff --git a/packs/historiques/MANIFEST-000466 b/packs/historiques/MANIFEST-000470 similarity index 72% rename from packs/historiques/MANIFEST-000466 rename to packs/historiques/MANIFEST-000470 index 9783ad4..d360487 100644 Binary files a/packs/historiques/MANIFEST-000466 and b/packs/historiques/MANIFEST-000470 differ diff --git a/packs/profils/000468.log b/packs/profils/000472.log similarity index 100% rename from packs/profils/000468.log rename to packs/profils/000472.log diff --git a/packs/profils/CURRENT b/packs/profils/CURRENT index 98d8b49..65eef60 100644 --- a/packs/profils/CURRENT +++ b/packs/profils/CURRENT @@ -1 +1 @@ -MANIFEST-000466 +MANIFEST-000470 diff --git a/packs/profils/LOG b/packs/profils/LOG index 17ec2e2..d46f36e 100644 --- a/packs/profils/LOG +++ b/packs/profils/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.266944 7f15cf3fe6c0 Recovering log #464 -2026/06/08-07:56:30.278872 7f15cf3fe6c0 Delete type=3 #462 -2026/06/08-07:56:30.278933 7f15cf3fe6c0 Delete type=0 #464 -2026/06/08-07:57:05.051894 7f15cdbfb6c0 Level-0 table #469: started -2026/06/08-07:57:05.051903 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK -2026/06/08-07:57:05.059710 7f15cdbfb6c0 Delete type=0 #467 -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) +2026/06/23-20:58:29.325311 7fc30ebfd6c0 Recovering log #468 +2026/06/23-20:58:29.336254 7fc30ebfd6c0 Delete type=3 #466 +2026/06/23-20:58:29.336300 7fc30ebfd6c0 Delete type=0 #468 +2026/06/23-21:19:17.844106 7fc30cbff6c0 Level-0 table #473: started +2026/06/23-21:19:17.844125 7fc30cbff6c0 Level-0 table #473: 0 bytes OK +2026/06/23-21:19:17.850158 7fc30cbff6c0 Delete type=0 #471 +2026/06/23-21:19:17.868892 7fc30cbff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) diff --git a/packs/profils/LOG.old b/packs/profils/LOG.old index c5a8dbe..17ec2e2 100644 --- a/packs/profils/LOG.old +++ b/packs/profils/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.563294 7f15cfbff6c0 Recovering log #460 -2026/06/07-23:29:46.572186 7f15cfbff6c0 Delete type=3 #458 -2026/06/07-23:29:46.572202 7f15cfbff6c0 Delete type=0 #460 -2026/06/07-23:51:38.173581 7f15cdbfb6c0 Level-0 table #465: started -2026/06/07-23:51:38.173595 7f15cdbfb6c0 Level-0 table #465: 0 bytes OK -2026/06/07-23:51:38.180217 7f15cdbfb6c0 Delete type=0 #463 -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:56:30.266944 7f15cf3fe6c0 Recovering log #464 +2026/06/08-07:56:30.278872 7f15cf3fe6c0 Delete type=3 #462 +2026/06/08-07:56:30.278933 7f15cf3fe6c0 Delete type=0 #464 +2026/06/08-07:57:05.051894 7f15cdbfb6c0 Level-0 table #469: started +2026/06/08-07:57:05.051903 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK +2026/06/08-07:57:05.059710 7f15cdbfb6c0 Delete type=0 #467 +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) diff --git a/packs/profils/MANIFEST-000466 b/packs/profils/MANIFEST-000470 similarity index 73% rename from packs/profils/MANIFEST-000466 rename to packs/profils/MANIFEST-000470 index cb1e65d..48ab296 100644 Binary files a/packs/profils/MANIFEST-000466 and b/packs/profils/MANIFEST-000470 differ diff --git a/packs/protections/000351.log b/packs/protections/000355.log similarity index 100% rename from packs/protections/000351.log rename to packs/protections/000355.log diff --git a/packs/protections/CURRENT b/packs/protections/CURRENT index 4e1f234..70d0528 100644 --- a/packs/protections/CURRENT +++ b/packs/protections/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/protections/LOG b/packs/protections/LOG index 62b6a87..7e40468 100644 --- a/packs/protections/LOG +++ b/packs/protections/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.183115 7f15cebfd6c0 Recovering log #347 -2026/06/08-07:56:30.192642 7f15cebfd6c0 Delete type=3 #345 -2026/06/08-07:56:30.192668 7f15cebfd6c0 Delete type=0 #347 -2026/06/08-07:57:05.002185 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.002225 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.010347 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.241545 7fc30e3fc6c0 Recovering log #351 +2026/06/23-20:58:29.251926 7fc30e3fc6c0 Delete type=3 #349 +2026/06/23-20:58:29.251980 7fc30e3fc6c0 Delete type=0 #351 +2026/06/23-21:19:17.776296 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.776319 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.783037 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.801761 7fc30cbff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) diff --git a/packs/protections/LOG.old b/packs/protections/LOG.old index 7ee8289..62b6a87 100644 --- a/packs/protections/LOG.old +++ b/packs/protections/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.497786 7f15cebfd6c0 Recovering log #343 -2026/06/07-23:29:46.506890 7f15cebfd6c0 Delete type=3 #341 -2026/06/07-23:29:46.506907 7f15cebfd6c0 Delete type=0 #343 -2026/06/07-23:51:38.143833 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.143844 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.149406 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.183115 7f15cebfd6c0 Recovering log #347 +2026/06/08-07:56:30.192642 7f15cebfd6c0 Delete type=3 #345 +2026/06/08-07:56:30.192668 7f15cebfd6c0 Delete type=0 #347 +2026/06/08-07:57:05.002185 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.002225 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.010347 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/protections/MANIFEST-000349 b/packs/protections/MANIFEST-000353 similarity index 73% rename from packs/protections/MANIFEST-000349 rename to packs/protections/MANIFEST-000353 index c14a9d3..c46719d 100644 Binary files a/packs/protections/MANIFEST-000349 and b/packs/protections/MANIFEST-000353 differ diff --git a/packs/runes/000351.log b/packs/runes/000355.log similarity index 100% rename from packs/runes/000351.log rename to packs/runes/000355.log diff --git a/packs/runes/CURRENT b/packs/runes/CURRENT index 4e1f234..70d0528 100644 --- a/packs/runes/CURRENT +++ b/packs/runes/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/runes/LOG b/packs/runes/LOG index 452fd56..44cb41d 100644 --- a/packs/runes/LOG +++ b/packs/runes/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.252693 7f15cfbff6c0 Recovering log #347 -2026/06/08-07:56:30.265379 7f15cfbff6c0 Delete type=3 #345 -2026/06/08-07:56:30.265405 7f15cfbff6c0 Delete type=0 #347 -2026/06/08-07:57:05.043075 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.043086 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.051845 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.311367 7fc30f3fe6c0 Recovering log #351 +2026/06/23-20:58:29.322080 7fc30f3fe6c0 Delete type=3 #349 +2026/06/23-20:58:29.322130 7fc30f3fe6c0 Delete type=0 #351 +2026/06/23-21:19:17.801888 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.801907 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.808397 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.828175 7fc30cbff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) diff --git a/packs/runes/LOG.old b/packs/runes/LOG.old index 272def3..452fd56 100644 --- a/packs/runes/LOG.old +++ b/packs/runes/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.551905 7f15ce3fc6c0 Recovering log #343 -2026/06/07-23:29:46.561422 7f15ce3fc6c0 Delete type=3 #341 -2026/06/07-23:29:46.561439 7f15ce3fc6c0 Delete type=0 #343 -2026/06/07-23:51:38.162076 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.162089 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.167711 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.252693 7f15cfbff6c0 Recovering log #347 +2026/06/08-07:56:30.265379 7f15cfbff6c0 Delete type=3 #345 +2026/06/08-07:56:30.265405 7f15cfbff6c0 Delete type=0 #347 +2026/06/08-07:57:05.043075 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.043086 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.051845 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/runes/MANIFEST-000349 b/packs/runes/MANIFEST-000353 similarity index 72% rename from packs/runes/MANIFEST-000349 rename to packs/runes/MANIFEST-000353 index 2770cb1..ebe611e 100644 Binary files a/packs/runes/MANIFEST-000349 and b/packs/runes/MANIFEST-000353 differ diff --git a/packs/scenes/000260.ldb b/packs/scenes/000260.ldb deleted file mode 100644 index 02cf576..0000000 Binary files a/packs/scenes/000260.ldb and /dev/null differ diff --git a/packs/scenes/000299.log b/packs/scenes/000303.log similarity index 100% rename from packs/scenes/000299.log rename to packs/scenes/000303.log diff --git a/packs/scenes/000305.ldb b/packs/scenes/000305.ldb new file mode 100644 index 0000000..6f6d2e7 Binary files /dev/null and b/packs/scenes/000305.ldb differ diff --git a/packs/scenes/CURRENT b/packs/scenes/CURRENT index 4e9b3d7..066a17b 100644 --- a/packs/scenes/CURRENT +++ b/packs/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000297 +MANIFEST-000301 diff --git a/packs/scenes/LOG b/packs/scenes/LOG index 6450c09..bad690f 100644 --- a/packs/scenes/LOG +++ b/packs/scenes/LOG @@ -1,7 +1,14 @@ -2026/06/08-07:56:30.303527 7f15cebfd6c0 Recovering log #295 -2026/06/08-07:56:30.313800 7f15cebfd6c0 Delete type=3 #293 -2026/06/08-07:56:30.313855 7f15cebfd6c0 Delete type=0 #295 -2026/06/08-07:57:05.068091 7f15cdbfb6c0 Level-0 table #300: started -2026/06/08-07:57:05.068111 7f15cdbfb6c0 Level-0 table #300: 0 bytes OK -2026/06/08-07:57:05.076017 7f15cdbfb6c0 Delete type=0 #298 -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) +2026/06/23-20:58:29.370405 7fc30ebfd6c0 Recovering log #299 +2026/06/23-20:58:29.381365 7fc30ebfd6c0 Delete type=3 #297 +2026/06/23-20:58:29.381418 7fc30ebfd6c0 Delete type=0 #299 +2026/06/23-21:19:17.834268 7fc30cbff6c0 Level-0 table #304: started +2026/06/23-21:19:17.837305 7fc30cbff6c0 Level-0 table #304: 1626 bytes OK +2026/06/23-21:19:17.844003 7fc30cbff6c0 Delete type=0 #302 +2026/06/23-21:19:17.859456 7fc30cbff6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 110 : 1 +2026/06/23-21:19:17.859463 7fc30cbff6c0 Compacting 1@0 + 1@1 files +2026/06/23-21:19:17.862677 7fc30cbff6c0 Generated table #305@0: 2 keys, 1626 bytes +2026/06/23-21:19:17.862684 7fc30cbff6c0 Compacted 1@0 + 1@1 files => 1626 bytes +2026/06/23-21:19:17.868575 7fc30cbff6c0 compacted to: files[ 0 1 0 0 0 0 0 ] +2026/06/23-21:19:17.868727 7fc30cbff6c0 Delete type=2 #260 +2026/06/23-21:19:17.868832 7fc30cbff6c0 Delete type=2 #304 +2026/06/23-21:19:17.876018 7fc30cbff6c0 Manual compaction at level-0 from '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 110 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end) diff --git a/packs/scenes/LOG.old b/packs/scenes/LOG.old index e6ee060..6450c09 100644 --- a/packs/scenes/LOG.old +++ b/packs/scenes/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.594984 7f15cebfd6c0 Recovering log #291 -2026/06/07-23:29:46.603957 7f15cebfd6c0 Delete type=3 #289 -2026/06/07-23:29:46.603977 7f15cebfd6c0 Delete type=0 #291 -2026/06/07-23:51:38.192811 7f15cdbfb6c0 Level-0 table #296: started -2026/06/07-23:51:38.192828 7f15cdbfb6c0 Level-0 table #296: 0 bytes OK -2026/06/07-23:51:38.199207 7f15cdbfb6c0 Delete type=0 #294 -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:56:30.303527 7f15cebfd6c0 Recovering log #295 +2026/06/08-07:56:30.313800 7f15cebfd6c0 Delete type=3 #293 +2026/06/08-07:56:30.313855 7f15cebfd6c0 Delete type=0 #295 +2026/06/08-07:57:05.068091 7f15cdbfb6c0 Level-0 table #300: started +2026/06/08-07:57:05.068111 7f15cdbfb6c0 Level-0 table #300: 0 bytes OK +2026/06/08-07:57:05.076017 7f15cdbfb6c0 Delete type=0 #298 +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) diff --git a/packs/scenes/MANIFEST-000297 b/packs/scenes/MANIFEST-000297 deleted file mode 100644 index 6d9d703..0000000 Binary files a/packs/scenes/MANIFEST-000297 and /dev/null differ diff --git a/packs/scenes/MANIFEST-000301 b/packs/scenes/MANIFEST-000301 new file mode 100644 index 0000000..8d4fd3b Binary files /dev/null and b/packs/scenes/MANIFEST-000301 differ diff --git a/packs/skills-creatures/000257.log b/packs/skills-creatures/000261.log similarity index 100% rename from packs/skills-creatures/000257.log rename to packs/skills-creatures/000261.log diff --git a/packs/skills-creatures/CURRENT b/packs/skills-creatures/CURRENT index 380474a..4ee1a67 100644 --- a/packs/skills-creatures/CURRENT +++ b/packs/skills-creatures/CURRENT @@ -1 +1 @@ -MANIFEST-000255 +MANIFEST-000259 diff --git a/packs/skills-creatures/LOG b/packs/skills-creatures/LOG index beca5df..3f52987 100644 --- a/packs/skills-creatures/LOG +++ b/packs/skills-creatures/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.140632 7f15cfbff6c0 Recovering log #253 -2026/06/08-07:56:30.153014 7f15cfbff6c0 Delete type=3 #251 -2026/06/08-07:56:30.153043 7f15cfbff6c0 Delete type=0 #253 -2026/06/08-07:57:04.981102 7f15cdbfb6c0 Level-0 table #258: started -2026/06/08-07:57:04.981123 7f15cdbfb6c0 Level-0 table #258: 0 bytes OK -2026/06/08-07:57:04.988934 7f15cdbfb6c0 Delete type=0 #256 -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) +2026/06/23-20:58:29.200391 7fc30e3fc6c0 Recovering log #257 +2026/06/23-20:58:29.210894 7fc30e3fc6c0 Delete type=3 #255 +2026/06/23-20:58:29.210967 7fc30e3fc6c0 Delete type=0 #257 +2026/06/23-21:19:17.769673 7fc30cbff6c0 Level-0 table #262: started +2026/06/23-21:19:17.769694 7fc30cbff6c0 Level-0 table #262: 0 bytes OK +2026/06/23-21:19:17.776207 7fc30cbff6c0 Delete type=0 #260 +2026/06/23-21:19:17.783150 7fc30cbff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) diff --git a/packs/skills-creatures/LOG.old b/packs/skills-creatures/LOG.old index 7dffcc9..beca5df 100644 --- a/packs/skills-creatures/LOG.old +++ b/packs/skills-creatures/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.466064 7f15cf3fe6c0 Recovering log #249 -2026/06/07-23:29:46.475048 7f15cf3fe6c0 Delete type=3 #247 -2026/06/07-23:29:46.475064 7f15cf3fe6c0 Delete type=0 #249 -2026/06/07-23:51:38.125314 7f15cdbfb6c0 Level-0 table #254: started -2026/06/07-23:51:38.125332 7f15cdbfb6c0 Level-0 table #254: 0 bytes OK -2026/06/07-23:51:38.131999 7f15cdbfb6c0 Delete type=0 #252 -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:56:30.140632 7f15cfbff6c0 Recovering log #253 +2026/06/08-07:56:30.153014 7f15cfbff6c0 Delete type=3 #251 +2026/06/08-07:56:30.153043 7f15cfbff6c0 Delete type=0 #253 +2026/06/08-07:57:04.981102 7f15cdbfb6c0 Level-0 table #258: started +2026/06/08-07:57:04.981123 7f15cdbfb6c0 Level-0 table #258: 0 bytes OK +2026/06/08-07:57:04.988934 7f15cdbfb6c0 Delete type=0 #256 +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) diff --git a/packs/skills-creatures/MANIFEST-000255 b/packs/skills-creatures/MANIFEST-000259 similarity index 73% rename from packs/skills-creatures/MANIFEST-000255 rename to packs/skills-creatures/MANIFEST-000259 index 4192e49..fb3b2f0 100644 Binary files a/packs/skills-creatures/MANIFEST-000255 and b/packs/skills-creatures/MANIFEST-000259 differ diff --git a/packs/skills/000349.log b/packs/skills/000353.log similarity index 100% rename from packs/skills/000349.log rename to packs/skills/000353.log diff --git a/packs/skills/CURRENT b/packs/skills/CURRENT index 2033052..0ed3851 100644 --- a/packs/skills/CURRENT +++ b/packs/skills/CURRENT @@ -1 +1 @@ -MANIFEST-000347 +MANIFEST-000351 diff --git a/packs/skills/LOG b/packs/skills/LOG index 07ebd3c..2f5cab4 100644 --- a/packs/skills/LOG +++ b/packs/skills/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.129299 7f15cf3fe6c0 Recovering log #345 -2026/06/08-07:56:30.139290 7f15cf3fe6c0 Delete type=3 #343 -2026/06/08-07:56:30.139350 7f15cf3fe6c0 Delete type=0 #345 -2026/06/08-07:57:04.972030 7f15cdbfb6c0 Level-0 table #350: started -2026/06/08-07:57:04.972088 7f15cdbfb6c0 Level-0 table #350: 0 bytes OK -2026/06/08-07:57:04.981007 7f15cdbfb6c0 Delete type=0 #348 -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) +2026/06/23-20:58:29.184242 7fc30ebfd6c0 Recovering log #349 +2026/06/23-20:58:29.196358 7fc30ebfd6c0 Delete type=3 #347 +2026/06/23-20:58:29.196415 7fc30ebfd6c0 Delete type=0 #349 +2026/06/23-21:19:17.763277 7fc30cbff6c0 Level-0 table #354: started +2026/06/23-21:19:17.763296 7fc30cbff6c0 Level-0 table #354: 0 bytes OK +2026/06/23-21:19:17.769575 7fc30cbff6c0 Delete type=0 #352 +2026/06/23-21:19:17.783140 7fc30cbff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) diff --git a/packs/skills/LOG.old b/packs/skills/LOG.old index 972c934..07ebd3c 100644 --- a/packs/skills/LOG.old +++ b/packs/skills/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.455708 7f15cfbff6c0 Recovering log #341 -2026/06/07-23:29:46.465016 7f15cfbff6c0 Delete type=3 #339 -2026/06/07-23:29:46.465034 7f15cfbff6c0 Delete type=0 #341 -2026/06/07-23:51:38.112458 7f15cdbfb6c0 Level-0 table #346: started -2026/06/07-23:51:38.112490 7f15cdbfb6c0 Level-0 table #346: 0 bytes OK -2026/06/07-23:51:38.118647 7f15cdbfb6c0 Delete type=0 #344 -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:56:30.129299 7f15cf3fe6c0 Recovering log #345 +2026/06/08-07:56:30.139290 7f15cf3fe6c0 Delete type=3 #343 +2026/06/08-07:56:30.139350 7f15cf3fe6c0 Delete type=0 #345 +2026/06/08-07:57:04.972030 7f15cdbfb6c0 Level-0 table #350: started +2026/06/08-07:57:04.972088 7f15cdbfb6c0 Level-0 table #350: 0 bytes OK +2026/06/08-07:57:04.981007 7f15cdbfb6c0 Delete type=0 #348 +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) diff --git a/packs/skills/MANIFEST-000347 b/packs/skills/MANIFEST-000351 similarity index 73% rename from packs/skills/MANIFEST-000347 rename to packs/skills/MANIFEST-000351 index 3eebc3e..9727b77 100644 Binary files a/packs/skills/MANIFEST-000347 and b/packs/skills/MANIFEST-000351 differ diff --git a/packs/tables/000450.log b/packs/tables/000454.log similarity index 100% rename from packs/tables/000450.log rename to packs/tables/000454.log diff --git a/packs/tables/CURRENT b/packs/tables/CURRENT index cbf3119..f02e84e 100644 --- a/packs/tables/CURRENT +++ b/packs/tables/CURRENT @@ -1 +1 @@ -MANIFEST-000448 +MANIFEST-000452 diff --git a/packs/tables/LOG b/packs/tables/LOG index 2fe5c5e..68edc61 100644 --- a/packs/tables/LOG +++ b/packs/tables/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.291447 7f15cfbff6c0 Recovering log #446 -2026/06/08-07:56:30.301749 7f15cfbff6c0 Delete type=3 #444 -2026/06/08-07:56:30.301808 7f15cfbff6c0 Delete type=0 #446 -2026/06/08-07:57:05.076075 7f15cdbfb6c0 Level-0 table #451: started -2026/06/08-07:57:05.076084 7f15cdbfb6c0 Level-0 table #451: 0 bytes OK -2026/06/08-07:57:05.082329 7f15cdbfb6c0 Delete type=0 #449 -2026/06/08-07:57:05.082397 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2026/06/23-20:58:29.356312 7fc30e3fc6c0 Recovering log #450 +2026/06/23-20:58:29.366470 7fc30e3fc6c0 Delete type=3 #448 +2026/06/23-20:58:29.366523 7fc30e3fc6c0 Delete type=0 #450 +2026/06/23-21:19:17.828275 7fc30cbff6c0 Level-0 table #455: started +2026/06/23-21:19:17.828292 7fc30cbff6c0 Level-0 table #455: 0 bytes OK +2026/06/23-21:19:17.834161 7fc30cbff6c0 Delete type=0 #453 +2026/06/23-21:19:17.859437 7fc30cbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/LOG.old b/packs/tables/LOG.old index 92f207c..2fe5c5e 100644 --- a/packs/tables/LOG.old +++ b/packs/tables/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.584487 7f15ce3fc6c0 Recovering log #442 -2026/06/07-23:29:46.594077 7f15ce3fc6c0 Delete type=3 #440 -2026/06/07-23:29:46.594097 7f15ce3fc6c0 Delete type=0 #442 -2026/06/07-23:51:38.180421 7f15cdbfb6c0 Level-0 table #447: started -2026/06/07-23:51:38.180431 7f15cdbfb6c0 Level-0 table #447: 0 bytes OK -2026/06/07-23:51:38.186270 7f15cdbfb6c0 Delete type=0 #445 -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:56:30.291447 7f15cfbff6c0 Recovering log #446 +2026/06/08-07:56:30.301749 7f15cfbff6c0 Delete type=3 #444 +2026/06/08-07:56:30.301808 7f15cfbff6c0 Delete type=0 #446 +2026/06/08-07:57:05.076075 7f15cdbfb6c0 Level-0 table #451: started +2026/06/08-07:57:05.076084 7f15cdbfb6c0 Level-0 table #451: 0 bytes OK +2026/06/08-07:57:05.082329 7f15cdbfb6c0 Delete type=0 #449 +2026/06/08-07:57:05.082397 7f15cdbfb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/tables/MANIFEST-000448 b/packs/tables/MANIFEST-000448 deleted file mode 100644 index 251414d..0000000 Binary files a/packs/tables/MANIFEST-000448 and /dev/null differ diff --git a/packs/tables/MANIFEST-000452 b/packs/tables/MANIFEST-000452 new file mode 100644 index 0000000..8cfa995 Binary files /dev/null and b/packs/tables/MANIFEST-000452 differ diff --git a/packs/talents/000475.log b/packs/talents/000479.log similarity index 100% rename from packs/talents/000475.log rename to packs/talents/000479.log diff --git a/packs/talents/CURRENT b/packs/talents/CURRENT index 104ad81..ab03c43 100644 --- a/packs/talents/CURRENT +++ b/packs/talents/CURRENT @@ -1 +1 @@ -MANIFEST-000473 +MANIFEST-000477 diff --git a/packs/talents/LOG b/packs/talents/LOG index d5d7183..d2f8d10 100644 --- a/packs/talents/LOG +++ b/packs/talents/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.280608 7f15cebfd6c0 Recovering log #471 -2026/06/08-07:56:30.289600 7f15cebfd6c0 Delete type=3 #469 -2026/06/08-07:56:30.289633 7f15cebfd6c0 Delete type=0 #471 -2026/06/08-07:57:05.059809 7f15cdbfb6c0 Level-0 table #476: started -2026/06/08-07:57:05.059830 7f15cdbfb6c0 Level-0 table #476: 0 bytes OK -2026/06/08-07:57:05.068002 7f15cdbfb6c0 Delete type=0 #474 -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) +2026/06/23-20:58:29.339361 7fc30fbff6c0 Recovering log #475 +2026/06/23-20:58:29.350082 7fc30fbff6c0 Delete type=3 #473 +2026/06/23-20:58:29.350156 7fc30fbff6c0 Delete type=0 #475 +2026/06/23-21:19:17.821284 7fc30cbff6c0 Level-0 table #480: started +2026/06/23-21:19:17.821308 7fc30cbff6c0 Level-0 table #480: 0 bytes OK +2026/06/23-21:19:17.828097 7fc30cbff6c0 Delete type=0 #478 +2026/06/23-21:19:17.828204 7fc30cbff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) diff --git a/packs/talents/LOG.old b/packs/talents/LOG.old index 138f380..d5d7183 100644 --- a/packs/talents/LOG.old +++ b/packs/talents/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.573046 7f15cf3fe6c0 Recovering log #467 -2026/06/07-23:29:46.582721 7f15cf3fe6c0 Delete type=3 #465 -2026/06/07-23:29:46.582740 7f15cf3fe6c0 Delete type=0 #467 -2026/06/07-23:51:38.186317 7f15cdbfb6c0 Level-0 table #472: started -2026/06/07-23:51:38.186330 7f15cdbfb6c0 Level-0 table #472: 0 bytes OK -2026/06/07-23:51:38.192738 7f15cdbfb6c0 Delete type=0 #470 -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:56:30.280608 7f15cebfd6c0 Recovering log #471 +2026/06/08-07:56:30.289600 7f15cebfd6c0 Delete type=3 #469 +2026/06/08-07:56:30.289633 7f15cebfd6c0 Delete type=0 #471 +2026/06/08-07:57:05.059809 7f15cdbfb6c0 Level-0 table #476: started +2026/06/08-07:57:05.059830 7f15cdbfb6c0 Level-0 table #476: 0 bytes OK +2026/06/08-07:57:05.068002 7f15cdbfb6c0 Delete type=0 #474 +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) diff --git a/packs/talents/MANIFEST-000473 b/packs/talents/MANIFEST-000477 similarity index 72% rename from packs/talents/MANIFEST-000473 rename to packs/talents/MANIFEST-000477 index 59e49a0..b3921c8 100644 Binary files a/packs/talents/MANIFEST-000473 and b/packs/talents/MANIFEST-000477 differ diff --git a/packs/tendances/000351.log b/packs/tendances/000355.log similarity index 100% rename from packs/tendances/000351.log rename to packs/tendances/000355.log diff --git a/packs/tendances/CURRENT b/packs/tendances/CURRENT index 4e1f234..70d0528 100644 --- a/packs/tendances/CURRENT +++ b/packs/tendances/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/tendances/LOG b/packs/tendances/LOG index 77ec246..a247448 100644 --- a/packs/tendances/LOG +++ b/packs/tendances/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.224120 7f15ce3fc6c0 Recovering log #347 -2026/06/08-07:56:30.236084 7f15ce3fc6c0 Delete type=3 #345 -2026/06/08-07:56:30.236118 7f15ce3fc6c0 Delete type=0 #347 -2026/06/08-07:57:05.026634 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.026644 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.034894 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.283215 7fc30f3fe6c0 Recovering log #351 +2026/06/23-20:58:29.294125 7fc30f3fe6c0 Delete type=3 #349 +2026/06/23-20:58:29.294171 7fc30f3fe6c0 Delete type=0 #351 +2026/06/23-21:19:17.814865 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.814884 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.821199 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.828196 7fc30cbff6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) diff --git a/packs/tendances/LOG.old b/packs/tendances/LOG.old index 28eeaa2..77ec246 100644 --- a/packs/tendances/LOG.old +++ b/packs/tendances/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.530421 7f15cf3fe6c0 Recovering log #343 -2026/06/07-23:29:46.540058 7f15cf3fe6c0 Delete type=3 #341 -2026/06/07-23:29:46.540076 7f15cf3fe6c0 Delete type=0 #343 -2026/06/07-23:51:38.156014 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.156025 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.162030 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.224120 7f15ce3fc6c0 Recovering log #347 +2026/06/08-07:56:30.236084 7f15ce3fc6c0 Delete type=3 #345 +2026/06/08-07:56:30.236118 7f15ce3fc6c0 Delete type=0 #347 +2026/06/08-07:57:05.026634 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.026644 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.034894 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/tendances/MANIFEST-000349 b/packs/tendances/MANIFEST-000353 similarity index 74% rename from packs/tendances/MANIFEST-000349 rename to packs/tendances/MANIFEST-000353 index ad2c401..2698fcc 100644 Binary files a/packs/tendances/MANIFEST-000349 and b/packs/tendances/MANIFEST-000353 differ diff --git a/packs/traits-chaotiques/000351.log b/packs/traits-chaotiques/000355.log similarity index 100% rename from packs/traits-chaotiques/000351.log rename to packs/traits-chaotiques/000355.log diff --git a/packs/traits-chaotiques/CURRENT b/packs/traits-chaotiques/CURRENT index 4e1f234..70d0528 100644 --- a/packs/traits-chaotiques/CURRENT +++ b/packs/traits-chaotiques/CURRENT @@ -1 +1 @@ -MANIFEST-000349 +MANIFEST-000353 diff --git a/packs/traits-chaotiques/LOG b/packs/traits-chaotiques/LOG index acd0994..7a81b7c 100644 --- a/packs/traits-chaotiques/LOG +++ b/packs/traits-chaotiques/LOG @@ -1,7 +1,7 @@ -2026/06/08-07:56:30.240475 7f15cebfd6c0 Recovering log #347 -2026/06/08-07:56:30.250776 7f15cebfd6c0 Delete type=3 #345 -2026/06/08-07:56:30.250834 7f15cebfd6c0 Delete type=0 #347 -2026/06/08-07:57:05.035129 7f15cdbfb6c0 Level-0 table #352: started -2026/06/08-07:57:05.035151 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK -2026/06/08-07:57:05.043032 7f15cdbfb6c0 Delete type=0 #350 -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) +2026/06/23-20:58:29.297307 7fc30fbff6c0 Recovering log #351 +2026/06/23-20:58:29.308090 7fc30fbff6c0 Delete type=3 #349 +2026/06/23-20:58:29.308151 7fc30fbff6c0 Delete type=0 #351 +2026/06/23-21:19:17.808465 7fc30cbff6c0 Level-0 table #356: started +2026/06/23-21:19:17.808485 7fc30cbff6c0 Level-0 table #356: 0 bytes OK +2026/06/23-21:19:17.814777 7fc30cbff6c0 Delete type=0 #354 +2026/06/23-21:19:17.828187 7fc30cbff6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) diff --git a/packs/traits-chaotiques/LOG.old b/packs/traits-chaotiques/LOG.old index d4e3ae8..acd0994 100644 --- a/packs/traits-chaotiques/LOG.old +++ b/packs/traits-chaotiques/LOG.old @@ -1,7 +1,7 @@ -2026/06/07-23:29:46.541402 7f15cebfd6c0 Recovering log #343 -2026/06/07-23:29:46.550608 7f15cebfd6c0 Delete type=3 #341 -2026/06/07-23:29:46.550634 7f15cebfd6c0 Delete type=0 #343 -2026/06/07-23:51:38.167745 7f15cdbfb6c0 Level-0 table #348: started -2026/06/07-23:51:38.167758 7f15cdbfb6c0 Level-0 table #348: 0 bytes OK -2026/06/07-23:51:38.173528 7f15cdbfb6c0 Delete type=0 #346 -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:56:30.240475 7f15cebfd6c0 Recovering log #347 +2026/06/08-07:56:30.250776 7f15cebfd6c0 Delete type=3 #345 +2026/06/08-07:56:30.250834 7f15cebfd6c0 Delete type=0 #347 +2026/06/08-07:57:05.035129 7f15cdbfb6c0 Level-0 table #352: started +2026/06/08-07:57:05.035151 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK +2026/06/08-07:57:05.043032 7f15cdbfb6c0 Delete type=0 #350 +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) diff --git a/packs/traits-chaotiques/MANIFEST-000349 b/packs/traits-chaotiques/MANIFEST-000353 similarity index 73% rename from packs/traits-chaotiques/MANIFEST-000349 rename to packs/traits-chaotiques/MANIFEST-000353 index 6929861..b6d9d46 100644 Binary files a/packs/traits-chaotiques/MANIFEST-000349 and b/packs/traits-chaotiques/MANIFEST-000353 differ diff --git a/styles/mournblade-cyd2.css b/styles/mournblade-cyd2.css index c3fdd23..5411d4a 100644 --- a/styles/mournblade-cyd2.css +++ b/styles/mournblade-cyd2.css @@ -2167,6 +2167,104 @@ li { .mournblade-post-item .post-item-description i { color: #5a2d00; } +.mournblade-post-item .post-item-price { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 6px; + padding: 5px 10px; + background: rgba(139, 69, 19, 0.06); + border-bottom: 1px solid rgba(139, 69, 19, 0.3); + font-size: 0.85rem; +} +.mournblade-post-item .post-item-price .post-price-label { + font-weight: bold; + color: #5a2d00; + font-size: 0.75rem; + text-transform: uppercase; + margin-right: 2px; +} +.mournblade-post-item .post-item-price .post-price { + background: rgba(255, 255, 255, 0.7); + border: 1px solid rgba(139, 69, 19, 0.3); + border-radius: 3px; + padding: 1px 6px; + color: #2a1400; +} +.mournblade-post-item .post-item-price .post-price.post-price-rarete { + background: rgba(255, 215, 0, 0.15); + border-color: rgba(255, 215, 0, 0.4); + color: #8b6914; +} +.mournblade-post-item .post-stat-bool { + background: rgba(76, 175, 80, 0.12) !important; + border-color: rgba(76, 175, 80, 0.4) !important; +} +.mournblade-post-item .post-stat-bool .stat-value { + color: #2e7d32; +} +.mournblade-post-item .post-stat-used { + background: rgba(198, 40, 40, 0.12) !important; + border-color: rgba(198, 40, 40, 0.4) !important; +} +.mournblade-post-item .post-stat-used .stat-value { + color: #c62828; +} +.mournblade-post-item .post-item-predilections { + padding: 6px 10px; + background: rgba(255, 255, 255, 0.5); + border-bottom: 1px solid rgba(139, 69, 19, 0.3); +} +.mournblade-post-item .post-item-predilections h4 { + margin: 0 0 4px 0; + color: #5a2d00; + font-size: 0.85rem; + text-transform: uppercase; + letter-spacing: 0.5px; +} +.mournblade-post-item .post-item-predilections ul { + margin: 0; + padding: 0; + list-style: none; +} +.mournblade-post-item .post-item-predilections ul li { + padding: 2px 0; + font-size: 0.85rem; + color: #2a1400; + border-bottom: 1px solid rgba(139, 69, 19, 0.1); +} +.mournblade-post-item .post-item-predilections ul li:last-child { + border-bottom: none; +} +.mournblade-post-item .post-item-predilections .pred-name { + color: #2a1400; + font-weight: bold; +} +.mournblade-post-item .post-item-predilections .pred-desc { + color: #5a2d00; +} +.mournblade-post-item .post-item-predilections .pred-badge { + display: inline-block; + font-size: 0.7rem; + padding: 0 4px; + border-radius: 2px; + margin-left: 3px; +} +.mournblade-post-item .post-item-predilections .pred-maitrise { + color: #1565c0; + background: rgba(21, 101, 192, 0.1); + border: 1px solid rgba(21, 101, 192, 0.3); +} +.mournblade-post-item .post-item-predilections .pred-acquise { + color: #2e7d32; + background: rgba(46, 125, 50, 0.1); + border: 1px solid rgba(46, 125, 50, 0.3); +} +.mournblade-post-item .post-item-predilections .pred-used { + color: #c62828; + background: rgba(198, 40, 40, 0.1); + border: 1px solid rgba(198, 40, 40, 0.3); +} /* -------------------------------------------- */ .mournblade-welcome-message { background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(42, 20, 0, 0.2) 100%); @@ -2312,6 +2410,9 @@ li { /* Field labels */ /* Editor fields */ /* Section headings in item sheet tabs */ + /* Section title headings inside sheet-box (Profil, etc.) */ + /* Suppress formInput label when heading already provides it */ + /* ProseMirror editor in sheet-box — ensure readable background */ } .fvtt-mournblade-cyd-2-0.item .window-content { padding: 0; @@ -2564,6 +2665,27 @@ li { border-radius: 3px; flex: 1; } +.fvtt-mournblade-cyd-2-0.item .tab .sheet-box h3, +.fvtt-mournblade-cyd-2-0.item .tab .sheet-box .items-title-text { + font-family: "CentaurMT", "Palatino Linotype", serif; + font-size: 0.85rem; + font-weight: 700; + text-transform: uppercase; + letter-spacing: 1px; + color: #f0dfc0 !important; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9); + margin: 0.25rem 0; + padding: 0.2rem 0; +} +.fvtt-mournblade-cyd-2-0.item .tab .sheet-box .form-group > label { + display: none; +} +.fvtt-mournblade-cyd-2-0.item .tab .sheet-box .editor { + min-height: 4rem; + background: rgba(255, 250, 240, 0.9); + border: 1px solid rgba(139, 69, 19, 0.35); + border-radius: 3px; +} /* ==================== Actor Sheet Styles ==================== */ .fvtt-mournblade-cyd-2-0.actor { background: url("../assets/ui/pc_sheet_bg.webp") repeat; diff --git a/templates/item-profil-sheet.hbs b/templates/item-profil-sheet.hbs index 0edf60c..0062860 100644 --- a/templates/item-profil-sheet.hbs +++ b/templates/item-profil-sheet.hbs @@ -51,42 +51,42 @@
-

+

{{localize "MNBL.exercisedskills"}}

{{formInput systemFields.competences enriched=enrichedCompetences value=system.competences name="system.competences" toggled=true label=false}}
-

+

{{localize "MNBL.initiateTalents"}}

{{formInput systemFields.talentsinitie enriched=enrichedTalentsinitie value=system.talentsinitie name="system.talentsinitie" toggled=true label=false}}
-

+

{{localize "MNBL.prerequisitesAguerri"}}

{{formInput systemFields.prerequisaguerri enriched=enrichedPrerequisaguerri value=system.prerequisaguerri name="system.prerequisaguerri" toggled=true label=false}}
-

+

{{localize "MNBL.aguerriTalents"}}

{{formInput systemFields.talentsaguerri enriched=enrichedTalentsaguerri value=system.talentsaguerri name="system.talentsaguerri" toggled=true label=false}}
-

+

{{localize "MNBL.prerequisitesMaitre"}}

{{formInput systemFields.prerequismaitre enriched=enrichedPrerequismaitre value=system.prerequismaitre name="system.prerequismaitre" toggled=true label=false}}
-

+

{{localize "MNBL.maitreTalents"}}

{{formInput systemFields.talentsmaitre enriched=enrichedTalentsmaitre value=system.talentsmaitre name="system.talentsmaitre" toggled=true label=false}}
diff --git a/templates/post-item.hbs b/templates/post-item.hbs index d29f507..6c96449 100644 --- a/templates/post-item.hbs +++ b/templates/post-item.hbs @@ -7,35 +7,54 @@ {{/if}}

{{name}}

- {{type}} + {{localizeItemType type}}
- {{!-- Statistiques selon le type --}} + {{!-- Stats -- Arme --}} {{#if (eq type "arme")}}
- {{#if system.typearme}}
Type{{system.typearme}}
{{/if}} + {{#if system.typearme}}
Type{{localizeTypeArme system.typearme}}
{{/if}} {{#if system.degats}}
Dégâts{{system.degats}}
{{/if}} - {{#if system.bonusmaniementoff}}
Bonus off.+{{system.bonusmaniementoff}}
{{/if}} - {{#if system.seuildefense}}
Seuil def.{{system.seuildefense}}
{{/if}} + {{#if system.bonusmaniementoff}}
Bonus maniement{{system.bonusmaniementoff}}
{{/if}} + {{#if system.seuildefense}}
Seuil défense{{system.seuildefense}}
{{/if}} + {{#if system.armenaturelle}}
Arme naturelle
{{/if}} + {{#if system.armefortune}}
Arme fortune
{{/if}} + {{#if system.deuxmains}}
Deux mains
{{/if}} + {{#if system.onlevelonly}}
Niveau seul
{{/if}} + {{#if system.percearmure}}
Perce-armure{{system.percearmurevalue}}
{{/if}} + {{#if (or system.courte (or system.moyenne (or system.longue system.tr)))}} +
+ Portées + + {{#if system.courte}}C:{{system.courte}}{{/if}}{{#if system.moyenne}} M:{{system.moyenne}}{{/if}}{{#if system.longue}} L:{{system.longue}}{{/if}}{{#if system.tr}} Tr:{{system.tr}}{{/if}} + +
+ {{/if}} + {{#if system.equipped}}
Équipé
{{/if}}
{{/if}} + {{!-- Stats -- Protection --}} {{#if (eq type "protection")}}
{{#if system.protection}}
Protection{{system.protection}}
{{/if}} {{#if system.adversitepoids}}
Adv. poids{{system.adversitepoids}}
{{/if}} + {{#if system.equipped}}
Équipé
{{/if}}
{{/if}} + {{!-- Stats -- Compétence --}} {{#if (eq type "competence")}}
{{#if system.niveau}}
Niveau{{system.niveau}}
{{/if}} {{#if (ne system.attribut1 "none")}}
Attribut 1{{upper system.attribut1}}
{{/if}} {{#if (ne system.attribut2 "none")}}
Attribut 2{{upper system.attribut2}}
{{/if}} + {{#if (ne system.attribut3 "none")}}
Attribut 3{{upper system.attribut3}}
{{/if}} + {{#if system.doublebonus}}
Double bonus
{{/if}}
- - {{!-- Prédilections pour les compétences --}} + + {{!-- Prédilections --}} {{#if system.predilections}}

Prédilections

@@ -43,11 +62,11 @@ {{#each system.predilections as |pred|}} {{#if pred.name}}
  • - {{pred.name}} - {{#if pred.description}}: {{pred.description}}{{/if}} - {{#if pred.maitrise}} (Maîtrisée){{/if}} - {{#if pred.acquise}} [Acquise]{{/if}} - {{#if pred.used}} [Utilisée]{{/if}} + {{pred.name}} + {{#if pred.description}}: {{pred.description}}{{/if}} + {{#if pred.maitrise}}Maîtrisée{{/if}} + {{#if pred.acquise}}Acquise{{/if}} + {{#if pred.used}}Utilisée{{/if}}
  • {{/if}} {{/each}} @@ -56,16 +75,99 @@ {{/if}} {{/if}} + {{!-- Stats -- Rune --}} {{#if (eq type "rune")}}
    {{#if system.formule}}
    Formule{{system.formule}}
    {{/if}} {{#if system.seuil}}
    Seuil{{system.seuil}}
    {{/if}} - {{#if system.prononcee}}
    {{localize "MNBL.pronounced"}}{{system.prononcee}}
    {{/if}} - {{#if system.tracee}}
    {{localize "MNBL.traced"}}{{system.tracee}}
    {{/if}} + {{#if system.prononcee}}
    Prononcée{{system.prononcee}}
    {{/if}} + {{#if system.tracee}}
    Tracée{{system.tracee}}
    {{/if}} {{#if system.coutAme}}
    Coût en Pouvoir{{system.coutAme}}
    {{/if}}
    {{/if}} + {{!-- Stats -- Don --}} + {{#if (eq type "don")}} +
    + {{#if system.allegeance}}
    Allégeance{{localizeAllegiance system.allegeance}}
    {{/if}} + {{#if system.prerequis}}
    Prérequis{{system.prerequis}}
    {{/if}} + {{#if system.sacrifice}}
    Sacrifice{{system.sacrifice}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Pacte --}} + {{#if (eq type "pacte")}} +
    + {{#if system.allegeance}}
    Allégeance{{localizeAllegiance system.allegeance}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Tendance --}} + {{#if (eq type "tendance")}} +
    + {{#if system.allegeance}}
    Allégeance{{localizeAllegiance system.allegeance}}
    {{/if}} + {{#if system.donlie}}
    Don lié{{system.donlie}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Talent --}} + {{#if (eq type "talent")}} +
    + {{#if system.talenttype}}
    Type{{localizeTalentType system.talenttype}}
    {{/if}} + {{#if system.utilisation}}
    Utilisation{{localizeUtilisation system.utilisation}}
    {{/if}} + {{#if system.prerequis}}
    Prérequis{{system.prerequis}}
    {{/if}} + {{#if system.resumebonus}}
    Résumé bonus{{system.resumebonus}}
    {{/if}} + {{#if system.used}}
    Utilisé
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- RuneEffect --}} + {{#if (eq type "runeeffect")}} +
    + {{#if system.rune}}
    Rune{{system.rune}}
    {{/if}} + {{#if system.mode}}
    Mode{{localizeRuneMode system.mode}}
    {{/if}} + {{#if system.duree}}
    Durée{{system.duree}}
    {{/if}} + {{#if system.pointame}}
    Points d'Âme{{system.pointame}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Profil --}} + {{#if (eq type "profil")}} +
    + {{#if (ne system.attribut1 "none")}}
    Attribut 1{{upper system.attribut1}}
    {{/if}} + {{#if (ne system.attribut2 "none")}}
    Attribut 2{{upper system.attribut2}}
    {{/if}} + {{#if (ne system.attribut3 "none")}}
    Attribut 3{{upper system.attribut3}}
    {{/if}} + {{#if system.exemples}}
    Exemples{{system.exemples}}
    {{/if}} + {{#if system.equipement}}
    Équipement{{system.equipement}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Ressource --}} + {{#if (eq type "ressource")}} +
    + {{#if system.pointdev}}
    Points de Vie{{system.pointdev}}
    {{/if}} +
    + {{/if}} + + {{!-- Stats -- Types avec bonusmalus (Historique, Trait d'espèce, Trait chaotique, Trait démoniaque, Pouvoir élémentaire, Capacité Automata) --}} + {{#if (or (eq type "historique") (or (eq type "traitespece") (or (eq type "traitchaotique") (or (eq type "traitdemoniaque") (or (eq type "pouvoirselementaire") (eq type "capaciteautomata"))))))}} +
    + {{#if system.bonusmalus}}
    Bonus/Malus{{system.bonusmalus}}
    {{/if}} +
    + {{/if}} + + {{!-- Prix -- commun aux items BaseItemWithPriceDataModel --}} + {{#if (or system.prixpo (or system.prixca (or system.prixsc system.rarete)))}} +
    + Valeur + {{#if system.prixpo}}{{system.prixpo}} PO{{/if}} + {{#if system.prixca}}{{system.prixca}} SA{{/if}} + {{#if system.prixsc}}{{system.prixsc}} PB{{/if}} + {{#if system.rarete}}Rareté {{system.rarete}}{{/if}} + {{#if system.quantite}}Qté: {{system.quantite}}{{/if}} +
    + {{/if}} + {{!-- Description --}} {{#if system.description}}