This commit is contained in:
@@ -312,4 +312,31 @@
|
|||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
flex: 1;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2531,6 +2531,121 @@
|
|||||||
color: #5a2d00;
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -98,6 +98,73 @@ export class MournbladeCYD2Utility {
|
|||||||
.join(', ');
|
.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) {
|
Handlebars.registerHelper('select', function(value, opts) {
|
||||||
const html = opts.fn(this);
|
const html = opts.fn(this);
|
||||||
const escaped = String(value).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
const escaped = String(value).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-000455
|
MANIFEST-000459
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.319684 7f15cebfd6c0 Recovering log #453
|
2026/06/23-20:58:29.389338 7fc30fbff6c0 Recovering log #457
|
||||||
2026/06/08-07:56:30.328718 7f15cebfd6c0 Delete type=3 #451
|
2026/06/23-20:58:29.399260 7fc30fbff6c0 Delete type=3 #455
|
||||||
2026/06/08-07:56:30.328767 7f15cebfd6c0 Delete type=0 #453
|
2026/06/23-20:58:29.399318 7fc30fbff6c0 Delete type=0 #457
|
||||||
2026/06/08-07:57:05.089618 7f15cdbfb6c0 Level-0 table #458: started
|
2026/06/23-21:19:17.850248 7fc30cbff6c0 Level-0 table #462: started
|
||||||
2026/06/08-07:57:05.089633 7f15cdbfb6c0 Level-0 table #458: 0 bytes OK
|
2026/06/23-21:19:17.850270 7fc30cbff6c0 Level-0 table #462: 0 bytes OK
|
||||||
2026/06/08-07:57:05.096624 7f15cdbfb6c0 Delete type=0 #456
|
2026/06/23-21:19:17.859367 7fc30cbff6c0 Delete type=0 #460
|
||||||
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-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)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-000450
|
MANIFEST-000454
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.171449 7f15cfbff6c0 Recovering log #448
|
2026/06/23-20:58:29.227544 7fc30f3fe6c0 Recovering log #452
|
||||||
2026/06/08-07:56:30.181937 7f15cfbff6c0 Delete type=3 #446
|
2026/06/23-20:58:29.237846 7fc30f3fe6c0 Delete type=3 #450
|
||||||
2026/06/08-07:56:30.181977 7f15cfbff6c0 Delete type=0 #448
|
2026/06/23-20:58:29.237899 7fc30f3fe6c0 Delete type=0 #452
|
||||||
2026/06/08-07:57:04.989021 7f15cdbfb6c0 Level-0 table #453: started
|
2026/06/23-21:19:17.783455 7fc30cbff6c0 Level-0 table #457: started
|
||||||
2026/06/08-07:57:04.989044 7f15cdbfb6c0 Level-0 table #453: 0 bytes OK
|
2026/06/23-21:19:17.783508 7fc30cbff6c0 Level-0 table #457: 0 bytes OK
|
||||||
2026/06/08-07:57:04.995876 7f15cdbfb6c0 Delete type=0 #451
|
2026/06/23-21:19:17.789552 7fc30cbff6c0 Delete type=0 #455
|
||||||
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-21:19:17.801772 7fc30cbff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+7
-7
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.209220 7f15cfbff6c0 Recovering log #347
|
2026/06/23-20:58:29.269657 7fc30fbff6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.220547 7f15cfbff6c0 Delete type=3 #345
|
2026/06/23-20:58:29.279752 7fc30fbff6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.220580 7f15cfbff6c0 Delete type=0 #347
|
2026/06/23-20:58:29.279815 7fc30fbff6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.018247 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.789616 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.018257 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.789636 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.026595 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.795566 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.801779 7fc30cbff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+7
-7
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.194019 7f15ce3fc6c0 Recovering log #347
|
2026/06/23-20:58:29.255240 7fc30ebfd6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.206800 7f15ce3fc6c0 Delete type=3 #345
|
2026/06/23-20:58:29.266274 7fc30ebfd6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.206834 7f15ce3fc6c0 Delete type=0 #347
|
2026/06/23-20:58:29.266315 7fc30ebfd6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.010424 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.795610 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.010442 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.795623 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.018212 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.801707 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.801786 7fc30cbff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000466
|
MANIFEST-000470
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.155801 7f15ce3fc6c0 Recovering log #464
|
2026/06/23-20:58:29.213347 7fc30fbff6c0 Recovering log #468
|
||||||
2026/06/08-07:56:30.169834 7f15ce3fc6c0 Delete type=3 #462
|
2026/06/23-20:58:29.224768 7fc30fbff6c0 Delete type=3 #466
|
||||||
2026/06/08-07:56:30.169866 7f15ce3fc6c0 Delete type=0 #464
|
2026/06/23-20:58:29.224810 7fc30fbff6c0 Delete type=0 #468
|
||||||
2026/06/08-07:57:04.995917 7f15cdbfb6c0 Level-0 table #469: started
|
2026/06/23-21:19:17.756763 7fc30cbff6c0 Level-0 table #473: started
|
||||||
2026/06/08-07:57:04.995929 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK
|
2026/06/23-21:19:17.756830 7fc30cbff6c0 Level-0 table #473: 0 bytes OK
|
||||||
2026/06/08-07:57:05.002057 7f15cdbfb6c0 Delete type=0 #467
|
2026/06/23-21:19:17.763205 7fc30cbff6c0 Delete type=0 #471
|
||||||
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-21:19:17.783128 7fc30cbff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000466
|
MANIFEST-000470
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.266944 7f15cf3fe6c0 Recovering log #464
|
2026/06/23-20:58:29.325311 7fc30ebfd6c0 Recovering log #468
|
||||||
2026/06/08-07:56:30.278872 7f15cf3fe6c0 Delete type=3 #462
|
2026/06/23-20:58:29.336254 7fc30ebfd6c0 Delete type=3 #466
|
||||||
2026/06/08-07:56:30.278933 7f15cf3fe6c0 Delete type=0 #464
|
2026/06/23-20:58:29.336300 7fc30ebfd6c0 Delete type=0 #468
|
||||||
2026/06/08-07:57:05.051894 7f15cdbfb6c0 Level-0 table #469: started
|
2026/06/23-21:19:17.844106 7fc30cbff6c0 Level-0 table #473: started
|
||||||
2026/06/08-07:57:05.051903 7f15cdbfb6c0 Level-0 table #469: 0 bytes OK
|
2026/06/23-21:19:17.844125 7fc30cbff6c0 Level-0 table #473: 0 bytes OK
|
||||||
2026/06/08-07:57:05.059710 7f15cdbfb6c0 Delete type=0 #467
|
2026/06/23-21:19:17.850158 7fc30cbff6c0 Delete type=0 #471
|
||||||
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-21:19:17.868892 7fc30cbff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.183115 7f15cebfd6c0 Recovering log #347
|
2026/06/23-20:58:29.241545 7fc30e3fc6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.192642 7f15cebfd6c0 Delete type=3 #345
|
2026/06/23-20:58:29.251926 7fc30e3fc6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.192668 7f15cebfd6c0 Delete type=0 #347
|
2026/06/23-20:58:29.251980 7fc30e3fc6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.002185 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.776296 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.002225 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.776319 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.010347 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.783037 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.801761 7fc30cbff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.252693 7f15cfbff6c0 Recovering log #347
|
2026/06/23-20:58:29.311367 7fc30f3fe6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.265379 7f15cfbff6c0 Delete type=3 #345
|
2026/06/23-20:58:29.322080 7fc30f3fe6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.265405 7f15cfbff6c0 Delete type=0 #347
|
2026/06/23-20:58:29.322130 7fc30f3fe6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.043075 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.801888 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.043086 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.801907 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.051845 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.808397 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.828175 7fc30cbff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
+7
-7
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000297
|
MANIFEST-000301
|
||||||
|
|||||||
+14
-7
@@ -1,7 +1,14 @@
|
|||||||
2026/06/08-07:56:30.303527 7f15cebfd6c0 Recovering log #295
|
2026/06/23-20:58:29.370405 7fc30ebfd6c0 Recovering log #299
|
||||||
2026/06/08-07:56:30.313800 7f15cebfd6c0 Delete type=3 #293
|
2026/06/23-20:58:29.381365 7fc30ebfd6c0 Delete type=3 #297
|
||||||
2026/06/08-07:56:30.313855 7f15cebfd6c0 Delete type=0 #295
|
2026/06/23-20:58:29.381418 7fc30ebfd6c0 Delete type=0 #299
|
||||||
2026/06/08-07:57:05.068091 7f15cdbfb6c0 Level-0 table #300: started
|
2026/06/23-21:19:17.834268 7fc30cbff6c0 Level-0 table #304: started
|
||||||
2026/06/08-07:57:05.068111 7f15cdbfb6c0 Level-0 table #300: 0 bytes OK
|
2026/06/23-21:19:17.837305 7fc30cbff6c0 Level-0 table #304: 1626 bytes OK
|
||||||
2026/06/08-07:57:05.076017 7f15cdbfb6c0 Delete type=0 #298
|
2026/06/23-21:19:17.844003 7fc30cbff6c0 Delete type=0 #302
|
||||||
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-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)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000255
|
MANIFEST-000259
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.140632 7f15cfbff6c0 Recovering log #253
|
2026/06/23-20:58:29.200391 7fc30e3fc6c0 Recovering log #257
|
||||||
2026/06/08-07:56:30.153014 7f15cfbff6c0 Delete type=3 #251
|
2026/06/23-20:58:29.210894 7fc30e3fc6c0 Delete type=3 #255
|
||||||
2026/06/08-07:56:30.153043 7f15cfbff6c0 Delete type=0 #253
|
2026/06/23-20:58:29.210967 7fc30e3fc6c0 Delete type=0 #257
|
||||||
2026/06/08-07:57:04.981102 7f15cdbfb6c0 Level-0 table #258: started
|
2026/06/23-21:19:17.769673 7fc30cbff6c0 Level-0 table #262: started
|
||||||
2026/06/08-07:57:04.981123 7f15cdbfb6c0 Level-0 table #258: 0 bytes OK
|
2026/06/23-21:19:17.769694 7fc30cbff6c0 Level-0 table #262: 0 bytes OK
|
||||||
2026/06/08-07:57:04.988934 7f15cdbfb6c0 Delete type=0 #256
|
2026/06/23-21:19:17.776207 7fc30cbff6c0 Delete type=0 #260
|
||||||
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-21:19:17.783150 7fc30cbff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000347
|
MANIFEST-000351
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.129299 7f15cf3fe6c0 Recovering log #345
|
2026/06/23-20:58:29.184242 7fc30ebfd6c0 Recovering log #349
|
||||||
2026/06/08-07:56:30.139290 7f15cf3fe6c0 Delete type=3 #343
|
2026/06/23-20:58:29.196358 7fc30ebfd6c0 Delete type=3 #347
|
||||||
2026/06/08-07:56:30.139350 7f15cf3fe6c0 Delete type=0 #345
|
2026/06/23-20:58:29.196415 7fc30ebfd6c0 Delete type=0 #349
|
||||||
2026/06/08-07:57:04.972030 7f15cdbfb6c0 Level-0 table #350: started
|
2026/06/23-21:19:17.763277 7fc30cbff6c0 Level-0 table #354: started
|
||||||
2026/06/08-07:57:04.972088 7f15cdbfb6c0 Level-0 table #350: 0 bytes OK
|
2026/06/23-21:19:17.763296 7fc30cbff6c0 Level-0 table #354: 0 bytes OK
|
||||||
2026/06/08-07:57:04.981007 7f15cdbfb6c0 Delete type=0 #348
|
2026/06/23-21:19:17.769575 7fc30cbff6c0 Delete type=0 #352
|
||||||
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-21:19:17.783140 7fc30cbff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000448
|
MANIFEST-000452
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.291447 7f15cfbff6c0 Recovering log #446
|
2026/06/23-20:58:29.356312 7fc30e3fc6c0 Recovering log #450
|
||||||
2026/06/08-07:56:30.301749 7f15cfbff6c0 Delete type=3 #444
|
2026/06/23-20:58:29.366470 7fc30e3fc6c0 Delete type=3 #448
|
||||||
2026/06/08-07:56:30.301808 7f15cfbff6c0 Delete type=0 #446
|
2026/06/23-20:58:29.366523 7fc30e3fc6c0 Delete type=0 #450
|
||||||
2026/06/08-07:57:05.076075 7f15cdbfb6c0 Level-0 table #451: started
|
2026/06/23-21:19:17.828275 7fc30cbff6c0 Level-0 table #455: started
|
||||||
2026/06/08-07:57:05.076084 7f15cdbfb6c0 Level-0 table #451: 0 bytes OK
|
2026/06/23-21:19:17.828292 7fc30cbff6c0 Level-0 table #455: 0 bytes OK
|
||||||
2026/06/08-07:57:05.082329 7f15cdbfb6c0 Delete type=0 #449
|
2026/06/23-21:19:17.834161 7fc30cbff6c0 Delete type=0 #453
|
||||||
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-21:19:17.859437 7fc30cbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000473
|
MANIFEST-000477
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.280608 7f15cebfd6c0 Recovering log #471
|
2026/06/23-20:58:29.339361 7fc30fbff6c0 Recovering log #475
|
||||||
2026/06/08-07:56:30.289600 7f15cebfd6c0 Delete type=3 #469
|
2026/06/23-20:58:29.350082 7fc30fbff6c0 Delete type=3 #473
|
||||||
2026/06/08-07:56:30.289633 7f15cebfd6c0 Delete type=0 #471
|
2026/06/23-20:58:29.350156 7fc30fbff6c0 Delete type=0 #475
|
||||||
2026/06/08-07:57:05.059809 7f15cdbfb6c0 Level-0 table #476: started
|
2026/06/23-21:19:17.821284 7fc30cbff6c0 Level-0 table #480: started
|
||||||
2026/06/08-07:57:05.059830 7f15cdbfb6c0 Level-0 table #476: 0 bytes OK
|
2026/06/23-21:19:17.821308 7fc30cbff6c0 Level-0 table #480: 0 bytes OK
|
||||||
2026/06/08-07:57:05.068002 7f15cdbfb6c0 Delete type=0 #474
|
2026/06/23-21:19:17.828097 7fc30cbff6c0 Delete type=0 #478
|
||||||
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-21:19:17.828204 7fc30cbff6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.224120 7f15ce3fc6c0 Recovering log #347
|
2026/06/23-20:58:29.283215 7fc30f3fe6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.236084 7f15ce3fc6c0 Delete type=3 #345
|
2026/06/23-20:58:29.294125 7fc30f3fe6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.236118 7f15ce3fc6c0 Delete type=0 #347
|
2026/06/23-20:58:29.294171 7fc30f3fe6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.026634 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.814865 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.026644 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.814884 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.034894 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.821199 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.828196 7fc30cbff6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000349
|
MANIFEST-000353
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/06/08-07:56:30.240475 7f15cebfd6c0 Recovering log #347
|
2026/06/23-20:58:29.297307 7fc30fbff6c0 Recovering log #351
|
||||||
2026/06/08-07:56:30.250776 7f15cebfd6c0 Delete type=3 #345
|
2026/06/23-20:58:29.308090 7fc30fbff6c0 Delete type=3 #349
|
||||||
2026/06/08-07:56:30.250834 7f15cebfd6c0 Delete type=0 #347
|
2026/06/23-20:58:29.308151 7fc30fbff6c0 Delete type=0 #351
|
||||||
2026/06/08-07:57:05.035129 7f15cdbfb6c0 Level-0 table #352: started
|
2026/06/23-21:19:17.808465 7fc30cbff6c0 Level-0 table #356: started
|
||||||
2026/06/08-07:57:05.035151 7f15cdbfb6c0 Level-0 table #352: 0 bytes OK
|
2026/06/23-21:19:17.808485 7fc30cbff6c0 Level-0 table #356: 0 bytes OK
|
||||||
2026/06/08-07:57:05.043032 7f15cdbfb6c0 Delete type=0 #350
|
2026/06/23-21:19:17.814777 7fc30cbff6c0 Delete type=0 #354
|
||||||
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-21:19:17.828187 7fc30cbff6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Binary file not shown.
@@ -2167,6 +2167,104 @@ li {
|
|||||||
.mournblade-post-item .post-item-description i {
|
.mournblade-post-item .post-item-description i {
|
||||||
color: #5a2d00;
|
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 {
|
.mournblade-welcome-message {
|
||||||
background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(42, 20, 0, 0.2) 100%);
|
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 */
|
/* Field labels */
|
||||||
/* Editor fields */
|
/* Editor fields */
|
||||||
/* Section headings in item sheet tabs */
|
/* 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 {
|
.fvtt-mournblade-cyd-2-0.item .window-content {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@@ -2564,6 +2665,27 @@ li {
|
|||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
flex: 1;
|
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 ==================== */
|
/* ==================== Actor Sheet Styles ==================== */
|
||||||
.fvtt-mournblade-cyd-2-0.actor {
|
.fvtt-mournblade-cyd-2-0.actor {
|
||||||
background: url("../assets/ui/pc_sheet_bg.webp") repeat;
|
background: url("../assets/ui/pc_sheet_bg.webp") repeat;
|
||||||
|
|||||||
@@ -51,42 +51,42 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="sheet-box">
|
<div class="sheet-box">
|
||||||
<h3><label class="items-title-text">{{localize "MNBL.exercisedskills"}}</label></h3>
|
<h3 class="items-title-text">{{localize "MNBL.exercisedskills"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.competences enriched=enrichedCompetences value=system.competences name="system.competences" toggled=true label=false}}
|
{{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 class="items-title-text">{{localize "MNBL.initiateTalents"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.talentsinitie enriched=enrichedTalentsinitie value=system.talentsinitie name="system.talentsinitie" toggled=true label=false}}
|
{{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 class="items-title-text">{{localize "MNBL.prerequisitesAguerri"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.prerequisaguerri enriched=enrichedPrerequisaguerri value=system.prerequisaguerri name="system.prerequisaguerri" toggled=true label=false}}
|
{{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 class="items-title-text">{{localize "MNBL.aguerriTalents"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.talentsaguerri enriched=enrichedTalentsaguerri value=system.talentsaguerri name="system.talentsaguerri" toggled=true label=false}}
|
{{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 class="items-title-text">{{localize "MNBL.prerequisitesMaitre"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.prerequismaitre enriched=enrichedPrerequismaitre value=system.prerequismaitre name="system.prerequismaitre" toggled=true label=false}}
|
{{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 class="items-title-text">{{localize "MNBL.maitreTalents"}}</h3>
|
||||||
<div class="small-editor item-text-long-line">
|
<div class="small-editor item-text-long-line">
|
||||||
{{formInput systemFields.talentsmaitre enriched=enrichedTalentsmaitre value=system.talentsmaitre name="system.talentsmaitre" toggled=true label=false}}
|
{{formInput systemFields.talentsmaitre enriched=enrichedTalentsmaitre value=system.talentsmaitre name="system.talentsmaitre" toggled=true label=false}}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+116
-14
@@ -7,35 +7,54 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
<div class="post-item-title">
|
<div class="post-item-title">
|
||||||
<h3 class="post-item-name">{{name}}</h3>
|
<h3 class="post-item-name">{{name}}</h3>
|
||||||
<span class="post-item-type">{{type}}</span>
|
<span class="post-item-type">{{localizeItemType type}}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{!-- Statistiques selon le type --}}
|
{{!-- Stats -- Arme --}}
|
||||||
{{#if (eq type "arme")}}
|
{{#if (eq type "arme")}}
|
||||||
<div class="post-item-stats">
|
<div class="post-item-stats">
|
||||||
{{#if system.typearme}}<div class="post-stat"><span class="stat-label">Type</span><span class="stat-value">{{system.typearme}}</span></div>{{/if}}
|
{{#if system.typearme}}<div class="post-stat"><span class="stat-label">Type</span><span class="stat-value">{{localizeTypeArme system.typearme}}</span></div>{{/if}}
|
||||||
{{#if system.degats}}<div class="post-stat"><span class="stat-label">Dégâts</span><span class="stat-value">{{system.degats}}</span></div>{{/if}}
|
{{#if system.degats}}<div class="post-stat"><span class="stat-label">Dégâts</span><span class="stat-value">{{system.degats}}</span></div>{{/if}}
|
||||||
{{#if system.bonusmaniementoff}}<div class="post-stat"><span class="stat-label">Bonus off.</span><span class="stat-value">+{{system.bonusmaniementoff}}</span></div>{{/if}}
|
{{#if system.bonusmaniementoff}}<div class="post-stat"><span class="stat-label">Bonus maniement</span><span class="stat-value">{{system.bonusmaniementoff}}</span></div>{{/if}}
|
||||||
{{#if system.seuildefense}}<div class="post-stat"><span class="stat-label">Seuil def.</span><span class="stat-value">{{system.seuildefense}}</span></div>{{/if}}
|
{{#if system.seuildefense}}<div class="post-stat"><span class="stat-label">Seuil défense</span><span class="stat-value">{{system.seuildefense}}</span></div>{{/if}}
|
||||||
|
{{#if system.armenaturelle}}<div class="post-stat post-stat-bool"><span class="stat-label">Arme naturelle</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
|
{{#if system.armefortune}}<div class="post-stat post-stat-bool"><span class="stat-label">Arme fortune</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
|
{{#if system.deuxmains}}<div class="post-stat post-stat-bool"><span class="stat-label">Deux mains</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
|
{{#if system.onlevelonly}}<div class="post-stat post-stat-bool"><span class="stat-label">Niveau seul</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
|
{{#if system.percearmure}}<div class="post-stat"><span class="stat-label">Perce-armure</span><span class="stat-value">{{system.percearmurevalue}}</span></div>{{/if}}
|
||||||
|
{{#if (or system.courte (or system.moyenne (or system.longue system.tr)))}}
|
||||||
|
<div class="post-stat post-stat-full">
|
||||||
|
<span class="stat-label">Portées</span>
|
||||||
|
<span class="stat-value">
|
||||||
|
{{#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}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
{{#if system.equipped}}<div class="post-stat post-stat-bool"><span class="stat-label">Équipé</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Protection --}}
|
||||||
{{#if (eq type "protection")}}
|
{{#if (eq type "protection")}}
|
||||||
<div class="post-item-stats">
|
<div class="post-item-stats">
|
||||||
{{#if system.protection}}<div class="post-stat"><span class="stat-label">Protection</span><span class="stat-value">{{system.protection}}</span></div>{{/if}}
|
{{#if system.protection}}<div class="post-stat"><span class="stat-label">Protection</span><span class="stat-value">{{system.protection}}</span></div>{{/if}}
|
||||||
{{#if system.adversitepoids}}<div class="post-stat"><span class="stat-label">Adv. poids</span><span class="stat-value">{{system.adversitepoids}}</span></div>{{/if}}
|
{{#if system.adversitepoids}}<div class="post-stat"><span class="stat-label">Adv. poids</span><span class="stat-value">{{system.adversitepoids}}</span></div>{{/if}}
|
||||||
|
{{#if system.equipped}}<div class="post-stat post-stat-bool"><span class="stat-label">Équipé</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Compétence --}}
|
||||||
{{#if (eq type "competence")}}
|
{{#if (eq type "competence")}}
|
||||||
<div class="post-item-stats">
|
<div class="post-item-stats">
|
||||||
{{#if system.niveau}}<div class="post-stat"><span class="stat-label">Niveau</span><span class="stat-value">{{system.niveau}}</span></div>{{/if}}
|
{{#if system.niveau}}<div class="post-stat"><span class="stat-label">Niveau</span><span class="stat-value">{{system.niveau}}</span></div>{{/if}}
|
||||||
{{#if (ne system.attribut1 "none")}}<div class="post-stat"><span class="stat-label">Attribut 1</span><span class="stat-value">{{upper system.attribut1}}</span></div>{{/if}}
|
{{#if (ne system.attribut1 "none")}}<div class="post-stat"><span class="stat-label">Attribut 1</span><span class="stat-value">{{upper system.attribut1}}</span></div>{{/if}}
|
||||||
{{#if (ne system.attribut2 "none")}}<div class="post-stat"><span class="stat-label">Attribut 2</span><span class="stat-value">{{upper system.attribut2}}</span></div>{{/if}}
|
{{#if (ne system.attribut2 "none")}}<div class="post-stat"><span class="stat-label">Attribut 2</span><span class="stat-value">{{upper system.attribut2}}</span></div>{{/if}}
|
||||||
|
{{#if (ne system.attribut3 "none")}}<div class="post-stat"><span class="stat-label">Attribut 3</span><span class="stat-value">{{upper system.attribut3}}</span></div>{{/if}}
|
||||||
|
{{#if system.doublebonus}}<div class="post-stat post-stat-bool"><span class="stat-label">Double bonus</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{!-- Prédilections pour les compétences --}}
|
{{!-- Prédilections --}}
|
||||||
{{#if system.predilections}}
|
{{#if system.predilections}}
|
||||||
<div class="post-item-predilections">
|
<div class="post-item-predilections">
|
||||||
<h4>Prédilections</h4>
|
<h4>Prédilections</h4>
|
||||||
@@ -43,11 +62,11 @@
|
|||||||
{{#each system.predilections as |pred|}}
|
{{#each system.predilections as |pred|}}
|
||||||
{{#if pred.name}}
|
{{#if pred.name}}
|
||||||
<li>
|
<li>
|
||||||
<strong>{{pred.name}}</strong>
|
<span class="pred-name">{{pred.name}}</span>
|
||||||
{{#if pred.description}}<span>: {{pred.description}}</span>{{/if}}
|
{{#if pred.description}}<span class="pred-desc">: {{pred.description}}</span>{{/if}}
|
||||||
{{#if pred.maitrise}}<em> (Maîtrisée)</em>{{/if}}
|
{{#if pred.maitrise}}<span class="pred-badge pred-maitrise">Maîtrisée</span>{{/if}}
|
||||||
{{#if pred.acquise}}<em> [Acquise]</em>{{/if}}
|
{{#if pred.acquise}}<span class="pred-badge pred-acquise">Acquise</span>{{/if}}
|
||||||
{{#if pred.used}}<em> [Utilisée]</em>{{/if}}
|
{{#if pred.used}}<span class="pred-badge pred-used">Utilisée</span>{{/if}}
|
||||||
</li>
|
</li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
@@ -56,16 +75,99 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Rune --}}
|
||||||
{{#if (eq type "rune")}}
|
{{#if (eq type "rune")}}
|
||||||
<div class="post-item-stats">
|
<div class="post-item-stats">
|
||||||
{{#if system.formule}}<div class="post-stat"><span class="stat-label">Formule</span><span class="stat-value">{{system.formule}}</span></div>{{/if}}
|
{{#if system.formule}}<div class="post-stat"><span class="stat-label">Formule</span><span class="stat-value">{{system.formule}}</span></div>{{/if}}
|
||||||
{{#if system.seuil}}<div class="post-stat"><span class="stat-label">Seuil</span><span class="stat-value">{{system.seuil}}</span></div>{{/if}}
|
{{#if system.seuil}}<div class="post-stat"><span class="stat-label">Seuil</span><span class="stat-value">{{system.seuil}}</span></div>{{/if}}
|
||||||
{{#if system.prononcee}}<div class="post-stat post-stat-full"><span class="stat-label">{{localize "MNBL.pronounced"}}</span><span class="stat-value">{{system.prononcee}}</span></div>{{/if}}
|
{{#if system.prononcee}}<div class="post-stat post-stat-full"><span class="stat-label">Prononcée</span><span class="stat-value">{{system.prononcee}}</span></div>{{/if}}
|
||||||
{{#if system.tracee}}<div class="post-stat post-stat-full"><span class="stat-label">{{localize "MNBL.traced"}}</span><span class="stat-value">{{system.tracee}}</span></div>{{/if}}
|
{{#if system.tracee}}<div class="post-stat post-stat-full"><span class="stat-label">Tracée</span><span class="stat-value">{{system.tracee}}</span></div>{{/if}}
|
||||||
{{#if system.coutAme}}<div class="post-stat"><span class="stat-label">Coût en Pouvoir</span><span class="stat-value">{{system.coutAme}}</span></div>{{/if}}
|
{{#if system.coutAme}}<div class="post-stat"><span class="stat-label">Coût en Pouvoir</span><span class="stat-value">{{system.coutAme}}</span></div>{{/if}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Don --}}
|
||||||
|
{{#if (eq type "don")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.allegeance}}<div class="post-stat"><span class="stat-label">Allégeance</span><span class="stat-value">{{localizeAllegiance system.allegeance}}</span></div>{{/if}}
|
||||||
|
{{#if system.prerequis}}<div class="post-stat post-stat-full"><span class="stat-label">Prérequis</span><span class="stat-value">{{system.prerequis}}</span></div>{{/if}}
|
||||||
|
{{#if system.sacrifice}}<div class="post-stat post-stat-full"><span class="stat-label">Sacrifice</span><span class="stat-value">{{system.sacrifice}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Pacte --}}
|
||||||
|
{{#if (eq type "pacte")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.allegeance}}<div class="post-stat"><span class="stat-label">Allégeance</span><span class="stat-value">{{localizeAllegiance system.allegeance}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Tendance --}}
|
||||||
|
{{#if (eq type "tendance")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.allegeance}}<div class="post-stat"><span class="stat-label">Allégeance</span><span class="stat-value">{{localizeAllegiance system.allegeance}}</span></div>{{/if}}
|
||||||
|
{{#if system.donlie}}<div class="post-stat post-stat-full"><span class="stat-label">Don lié</span><span class="stat-value">{{system.donlie}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Talent --}}
|
||||||
|
{{#if (eq type "talent")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.talenttype}}<div class="post-stat"><span class="stat-label">Type</span><span class="stat-value">{{localizeTalentType system.talenttype}}</span></div>{{/if}}
|
||||||
|
{{#if system.utilisation}}<div class="post-stat"><span class="stat-label">Utilisation</span><span class="stat-value">{{localizeUtilisation system.utilisation}}</span></div>{{/if}}
|
||||||
|
{{#if system.prerequis}}<div class="post-stat post-stat-full"><span class="stat-label">Prérequis</span><span class="stat-value">{{system.prerequis}}</span></div>{{/if}}
|
||||||
|
{{#if system.resumebonus}}<div class="post-stat post-stat-full"><span class="stat-label">Résumé bonus</span><span class="stat-value">{{system.resumebonus}}</span></div>{{/if}}
|
||||||
|
{{#if system.used}}<div class="post-stat post-stat-bool post-stat-used"><span class="stat-label">Utilisé</span><span class="stat-value">✓</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- RuneEffect --}}
|
||||||
|
{{#if (eq type "runeeffect")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.rune}}<div class="post-stat"><span class="stat-label">Rune</span><span class="stat-value">{{system.rune}}</span></div>{{/if}}
|
||||||
|
{{#if system.mode}}<div class="post-stat"><span class="stat-label">Mode</span><span class="stat-value">{{localizeRuneMode system.mode}}</span></div>{{/if}}
|
||||||
|
{{#if system.duree}}<div class="post-stat"><span class="stat-label">Durée</span><span class="stat-value">{{system.duree}}</span></div>{{/if}}
|
||||||
|
{{#if system.pointame}}<div class="post-stat"><span class="stat-label">Points d'Âme</span><span class="stat-value">{{system.pointame}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Profil --}}
|
||||||
|
{{#if (eq type "profil")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if (ne system.attribut1 "none")}}<div class="post-stat"><span class="stat-label">Attribut 1</span><span class="stat-value">{{upper system.attribut1}}</span></div>{{/if}}
|
||||||
|
{{#if (ne system.attribut2 "none")}}<div class="post-stat"><span class="stat-label">Attribut 2</span><span class="stat-value">{{upper system.attribut2}}</span></div>{{/if}}
|
||||||
|
{{#if (ne system.attribut3 "none")}}<div class="post-stat"><span class="stat-label">Attribut 3</span><span class="stat-value">{{upper system.attribut3}}</span></div>{{/if}}
|
||||||
|
{{#if system.exemples}}<div class="post-stat post-stat-full"><span class="stat-label">Exemples</span><span class="stat-value">{{system.exemples}}</span></div>{{/if}}
|
||||||
|
{{#if system.equipement}}<div class="post-stat post-stat-full"><span class="stat-label">Équipement</span><span class="stat-value">{{system.equipement}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Stats -- Ressource --}}
|
||||||
|
{{#if (eq type "ressource")}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.pointdev}}<div class="post-stat"><span class="stat-label">Points de Vie</span><span class="stat-value">{{system.pointdev}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/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"))))))}}
|
||||||
|
<div class="post-item-stats">
|
||||||
|
{{#if system.bonusmalus}}<div class="post-stat post-stat-full"><span class="stat-label">Bonus/Malus</span><span class="stat-value">{{system.bonusmalus}}</span></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{!-- Prix -- commun aux items BaseItemWithPriceDataModel --}}
|
||||||
|
{{#if (or system.prixpo (or system.prixca (or system.prixsc system.rarete)))}}
|
||||||
|
<div class="post-item-price">
|
||||||
|
<span class="post-price-label">Valeur</span>
|
||||||
|
{{#if system.prixpo}}<span class="post-price">{{system.prixpo}} PO</span>{{/if}}
|
||||||
|
{{#if system.prixca}}<span class="post-price">{{system.prixca}} SA</span>{{/if}}
|
||||||
|
{{#if system.prixsc}}<span class="post-price">{{system.prixsc}} PB</span>{{/if}}
|
||||||
|
{{#if system.rarete}}<span class="post-price post-price-rarete">Rareté {{system.rarete}}</span>{{/if}}
|
||||||
|
{{#if system.quantite}}<span class="post-price">Qté: {{system.quantite}}</span>{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{!-- Description --}}
|
{{!-- Description --}}
|
||||||
{{#if system.description}}
|
{{#if system.description}}
|
||||||
<div class="post-item-description">
|
<div class="post-item-description">
|
||||||
|
|||||||
Reference in New Issue
Block a user