2 Commits

Author SHA1 Message Date
uberwald 0aa73f41b4 Sync compendiums
Release Creation / build (release) Successful in 8m40s
2026-06-27 22:11:56 +02:00
uberwald 24aac79101 fix: protection stacking + remove misleading def from combat card
getProtection(): replace threshold sum<4 with hasRealArmor check.
Old logic broke when two sub-4 items (e.g. shield 2 + light armor 3)
summed >=4 and lost the base+4 bonus — causing protection to decrease
when equipping them together.

actor-sheet.hbs: remove defenseTotal from top-right combat card.
This value excluded Mêlée skill, making it always wrong vs
the per-weapon defense shown in the combat tab.
2026-06-27 22:04:04 +02:00
85 changed files with 244 additions and 390 deletions
+8 -6
View File
@@ -221,16 +221,18 @@ export class MournbladeCYD2Actor extends Actor {
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
getProtection() { getProtection() {
let equipProtection = 0 let sum = 0
let hasRealArmor = false
for (let armor of this.items) { for (let armor of this.items) {
if (armor.type == "protection" && armor.system.equipped) { if (armor.type == "protection" && armor.system.equipped) {
equipProtection += Number(armor.system.protection) const val = Number(armor.system.protection)
sum += val
if (val >= 4) hasRealArmor = true
} }
} }
if (equipProtection < 4) { if (sum === 0) return 4 // Aucune protection → base 4
return 4 + equipProtection // Cas des boucliers + sans armure if (hasRealArmor) return sum // Au moins une vraie armure → somme directe
} return 4 + sum // Que des boucliers/protections légères → base + bonus
return equipProtection // Uniquement la protection des armures + boucliers
} }
getProtectionTotal() { getProtectionTotal() {
return this.getProtection() return this.getProtection()
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000467 MANIFEST-000479
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.451553 7f65c77ef6c0 Recovering log #465 2026/06/27-22:10:10.522157 7fef3b7ef6c0 Recovering log #477
2026/06/26-16:50:36.486921 7f65c77ef6c0 Delete type=3 #463 2026/06/27-22:10:10.531883 7fef3b7ef6c0 Delete type=3 #475
2026/06/26-16:50:36.486959 7f65c77ef6c0 Delete type=0 #465 2026/06/27-22:10:10.531964 7fef3b7ef6c0 Delete type=0 #477
2026/06/26-17:04:51.247295 7f65c57eb6c0 Level-0 table #470: started 2026/06/27-22:11:13.546104 7fef397eb6c0 Level-0 table #482: started
2026/06/26-17:04:51.247312 7f65c57eb6c0 Level-0 table #470: 0 bytes OK 2026/06/27-22:11:13.546130 7fef397eb6c0 Level-0 table #482: 0 bytes OK
2026/06/26-17:04:51.253147 7f65c57eb6c0 Delete type=0 #468 2026/06/27-22:11:13.552093 7fef397eb6c0 Delete type=0 #480
2026/06/26-17:04:51.262796 7f65c57eb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/06/27-22:11:13.568287 7fef397eb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.392559 7f65c67ed6c0 Recovering log #461 2026/06/27-22:07:25.099985 7fef3b7ef6c0 Recovering log #473
2026/06/26-16:44:09.402980 7f65c67ed6c0 Delete type=3 #459 2026/06/27-22:07:25.109973 7fef3b7ef6c0 Delete type=3 #471
2026/06/26-16:44:09.403009 7f65c67ed6c0 Delete type=0 #461 2026/06/27-22:07:25.110023 7fef3b7ef6c0 Delete type=0 #473
2026/06/26-16:50:27.994459 7f65c57eb6c0 Level-0 table #466: started 2026/06/27-22:07:50.096419 7fef397eb6c0 Level-0 table #478: started
2026/06/26-16:50:27.994505 7f65c57eb6c0 Level-0 table #466: 0 bytes OK 2026/06/27-22:07:50.096442 7fef397eb6c0 Level-0 table #478: 0 bytes OK
2026/06/26-16:50:28.050909 7f65c57eb6c0 Delete type=0 #464 2026/06/27-22:07:50.103172 7fef397eb6c0 Delete type=0 #476
2026/06/26-16:50:28.189532 7f65c57eb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.116885 7fef397eb6c0 Manual compaction at level-0 from '!journal!gVybbv17TFY8o3Y4' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000462 MANIFEST-000470
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:35.916508 7f65c77ef6c0 Recovering log #460 2026/06/27-22:07:24.969537 7fef39fec6c0 Recovering log #468
2026/06/26-16:50:35.964756 7f65c77ef6c0 Delete type=3 #458 2026/06/27-22:07:24.979034 7fef39fec6c0 Delete type=3 #466
2026/06/26-16:50:35.964784 7f65c77ef6c0 Delete type=0 #460 2026/06/27-22:07:24.979060 7fef39fec6c0 Delete type=0 #468
2026/06/26-17:04:51.185403 7f65c57eb6c0 Level-0 table #465: started 2026/06/27-22:07:50.030987 7fef397eb6c0 Level-0 table #473: started
2026/06/26-17:04:51.185425 7f65c57eb6c0 Level-0 table #465: 0 bytes OK 2026/06/27-22:07:50.030999 7fef397eb6c0 Level-0 table #473: 0 bytes OK
2026/06/26-17:04:51.191543 7f65c57eb6c0 Delete type=0 #463 2026/06/27-22:07:50.037240 7fef397eb6c0 Delete type=0 #471
2026/06/26-17:04:51.203372 7f65c57eb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.044161 7fef397eb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.236971 7f65c5fec6c0 Recovering log #456 2026/06/27-22:06:28.494041 7fef3a7ed6c0 Recovering log #464
2026/06/26-16:44:09.246951 7f65c5fec6c0 Delete type=3 #454 2026/06/27-22:06:28.503923 7fef3a7ed6c0 Delete type=3 #462
2026/06/26-16:44:09.247005 7f65c5fec6c0 Delete type=0 #456 2026/06/27-22:06:28.503955 7fef3a7ed6c0 Delete type=0 #464
2026/06/26-16:50:27.332281 7f65c57eb6c0 Level-0 table #461: started 2026/06/27-22:07:20.729063 7fef397eb6c0 Level-0 table #469: started
2026/06/26-16:50:27.332309 7f65c57eb6c0 Level-0 table #461: 0 bytes OK 2026/06/27-22:07:20.729079 7fef397eb6c0 Level-0 table #469: 0 bytes OK
2026/06/26-16:50:27.355690 7f65c57eb6c0 Delete type=0 #459 2026/06/27-22:07:20.735689 7fef397eb6c0 Delete type=0 #467
2026/06/26-16:50:27.356661 7f65c57eb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.742577 7fef397eb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.072363 7f65c5fec6c0 Recovering log #359 2026/06/27-22:07:25.004265 7fef3b7ef6c0 Recovering log #367
2026/06/26-16:50:36.112791 7f65c5fec6c0 Delete type=3 #357 2026/06/27-22:07:25.014169 7fef3b7ef6c0 Delete type=3 #365
2026/06/26-16:50:36.112853 7f65c5fec6c0 Delete type=0 #359 2026/06/27-22:07:25.014223 7fef3b7ef6c0 Delete type=0 #367
2026/06/26-17:04:51.191584 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.044164 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.191597 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.044172 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.197503 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.049945 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.203383 7f65c57eb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.063025 7fef397eb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.274842 7f65c67ed6c0 Recovering log #355 2026/06/27-22:06:28.537111 7fef3afee6c0 Recovering log #363
2026/06/26-16:44:09.284724 7f65c67ed6c0 Delete type=3 #353 2026/06/27-22:06:28.547182 7fef3afee6c0 Delete type=3 #361
2026/06/26-16:44:09.284787 7f65c67ed6c0 Delete type=0 #355 2026/06/27-22:06:28.547225 7fef3afee6c0 Delete type=0 #363
2026/06/26-16:50:27.739190 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.748711 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.739221 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.748726 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.774973 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.755037 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.775147 7f65c57eb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.762090 7fef397eb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
MANIFEST-000002
+5
View File
@@ -0,0 +1,5 @@
2026/06/27-22:10:10.494940 7fef3afee6c0 Delete type=3 #1
2026/06/27-22:11:13.479363 7fef397eb6c0 Level-0 table #5: started
2026/06/27-22:11:13.489259 7fef397eb6c0 Level-0 table #5: 410691 bytes OK
2026/06/27-22:11:13.495706 7fef397eb6c0 Delete type=0 #3
2026/06/27-22:11:13.496080 7fef397eb6c0 Manual compaction at level-0 from '!folders!2c89TW2fFtu0EI0s' @ 72057594037927935 : 1 .. '!items!zoUfpGudsIrJQWkL' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.029194 7f65c77ef6c0 Recovering log #359 2026/06/27-22:07:24.992150 7fef3afee6c0 Recovering log #367
2026/06/26-16:50:36.069865 7f65c77ef6c0 Delete type=3 #357 2026/06/27-22:07:25.002403 7fef3afee6c0 Delete type=3 #365
2026/06/26-16:50:36.069914 7f65c77ef6c0 Delete type=0 #359 2026/06/27-22:07:25.002442 7fef3afee6c0 Delete type=0 #367
2026/06/26-17:04:51.179133 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.037302 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.179173 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.037310 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.185310 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.044120 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.203363 7f65c57eb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.056401 7fef397eb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.261383 7f65c77ef6c0 Recovering log #355 2026/06/27-22:06:28.517875 7fef3a7ed6c0 Recovering log #363
2026/06/26-16:44:09.271306 7f65c77ef6c0 Delete type=3 #353 2026/06/27-22:06:28.527386 7fef3a7ed6c0 Delete type=3 #361
2026/06/26-16:44:09.271344 7f65c77ef6c0 Delete type=0 #355 2026/06/27-22:06:28.527444 7fef3a7ed6c0 Delete type=0 #363
2026/06/26-16:50:27.674012 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.742583 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.674033 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.742598 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.717676 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.748633 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.775124 7f65c57eb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.762082 7fef397eb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000478 MANIFEST-000486
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:35.877040 7f65c5fec6c0 Recovering log #476 2026/06/27-22:07:24.959045 7fef3a7ed6c0 Recovering log #484
2026/06/26-16:50:35.913887 7f65c5fec6c0 Delete type=3 #474 2026/06/27-22:07:24.968392 7fef3a7ed6c0 Delete type=3 #482
2026/06/26-16:50:35.913938 7f65c5fec6c0 Delete type=0 #476 2026/06/27-22:07:24.968409 7fef3a7ed6c0 Delete type=0 #484
2026/06/26-17:04:51.160172 7f65c57eb6c0 Level-0 table #481: started 2026/06/27-22:07:50.006277 7fef397eb6c0 Level-0 table #489: started
2026/06/26-17:04:51.160204 7f65c57eb6c0 Level-0 table #481: 0 bytes OK 2026/06/27-22:07:50.006287 7fef397eb6c0 Level-0 table #489: 0 bytes OK
2026/06/26-17:04:51.167067 7f65c57eb6c0 Delete type=0 #479 2026/06/27-22:07:50.012055 7fef397eb6c0 Delete type=0 #487
2026/06/26-17:04:51.178996 7f65c57eb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.024626 7fef397eb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.225400 7f65c67ed6c0 Recovering log #472 2026/06/27-22:06:28.481981 7fef3b7ef6c0 Recovering log #480
2026/06/26-16:44:09.234780 7f65c67ed6c0 Delete type=3 #470 2026/06/27-22:06:28.491563 7fef3b7ef6c0 Delete type=3 #478
2026/06/26-16:44:09.234844 7f65c67ed6c0 Delete type=0 #472 2026/06/27-22:06:28.491583 7fef3b7ef6c0 Delete type=0 #480
2026/06/26-16:50:27.312567 7f65c57eb6c0 Level-0 table #477: started 2026/06/27-22:07:20.722681 7fef397eb6c0 Level-0 table #485: started
2026/06/26-16:50:27.312595 7f65c57eb6c0 Level-0 table #477: 0 bytes OK 2026/06/27-22:07:20.722697 7fef397eb6c0 Level-0 table #485: 0 bytes OK
2026/06/26-16:50:27.332162 7f65c57eb6c0 Delete type=0 #475 2026/06/27-22:07:20.728980 7fef397eb6c0 Delete type=0 #483
2026/06/26-16:50:27.356584 7f65c57eb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.735771 7fef397eb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000478 MANIFEST-000486
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.268072 7f65c77ef6c0 Recovering log #476 2026/06/27-22:07:25.052064 7fef3a7ed6c0 Recovering log #484
2026/06/26-16:50:36.306497 7f65c77ef6c0 Delete type=3 #474 2026/06/27-22:07:25.062524 7fef3a7ed6c0 Delete type=3 #482
2026/06/26-16:50:36.306562 7f65c77ef6c0 Delete type=0 #476 2026/06/27-22:07:25.062569 7fef3a7ed6c0 Delete type=0 #484
2026/06/26-17:04:51.216386 7f65c57eb6c0 Level-0 table #481: started 2026/06/27-22:07:50.063043 7fef397eb6c0 Level-0 table #489: started
2026/06/26-17:04:51.216402 7f65c57eb6c0 Level-0 table #481: 0 bytes OK 2026/06/27-22:07:50.063061 7fef397eb6c0 Level-0 table #489: 0 bytes OK
2026/06/26-17:04:51.222365 7f65c57eb6c0 Delete type=0 #479 2026/06/27-22:07:50.069402 7fef397eb6c0 Delete type=0 #487
2026/06/26-17:04:51.228941 7f65c57eb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.082767 7fef397eb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.339296 7f65c6fee6c0 Recovering log #472 2026/06/27-22:06:28.588590 7fef3a7ed6c0 Recovering log #480
2026/06/26-16:44:09.348758 7f65c6fee6c0 Delete type=3 #470 2026/06/27-22:06:28.598755 7fef3a7ed6c0 Delete type=3 #478
2026/06/26-16:44:09.348823 7f65c6fee6c0 Delete type=0 #472 2026/06/27-22:06:28.598802 7fef3a7ed6c0 Delete type=0 #480
2026/06/26-16:50:27.840976 7f65c57eb6c0 Level-0 table #477: started 2026/06/27-22:07:20.774774 7fef397eb6c0 Level-0 table #485: started
2026/06/26-16:50:27.841010 7f65c57eb6c0 Level-0 table #477: 0 bytes OK 2026/06/27-22:07:20.774789 7fef397eb6c0 Level-0 table #485: 0 bytes OK
2026/06/26-16:50:27.876252 7f65c57eb6c0 Delete type=0 #475 2026/06/27-22:07:20.781136 7fef397eb6c0 Delete type=0 #483
2026/06/26-16:50:27.904913 7f65c57eb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.793827 7fef397eb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:35.968889 7f65c6fee6c0 Recovering log #359 2026/06/27-22:07:24.980928 7fef3a7ed6c0 Recovering log #367
2026/06/26-16:50:36.026849 7f65c6fee6c0 Delete type=3 #357 2026/06/27-22:07:24.990678 7fef3a7ed6c0 Delete type=3 #365
2026/06/26-16:50:36.026910 7f65c6fee6c0 Delete type=0 #359 2026/06/27-22:07:24.990698 7fef3a7ed6c0 Delete type=0 #367
2026/06/26-17:04:51.173152 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.012138 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.173175 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.012154 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.178902 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.018134 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.179012 7f65c57eb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.024632 7fef397eb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.249598 7f65c6fee6c0 Recovering log #355 2026/06/27-22:06:28.506105 7fef39fec6c0 Recovering log #363
2026/06/26-16:44:09.258938 7f65c6fee6c0 Delete type=3 #353 2026/06/27-22:06:28.515756 7fef39fec6c0 Delete type=3 #361
2026/06/26-16:44:09.258988 7f65c6fee6c0 Delete type=0 #355 2026/06/27-22:06:28.515796 7fef39fec6c0 Delete type=0 #363
2026/06/26-16:50:27.356685 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.735888 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.356708 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.735904 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.673910 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.742521 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.775105 7f65c57eb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.755105 7fef397eb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.210388 7f65c6fee6c0 Recovering log #359 2026/06/27-22:07:25.040151 7fef39fec6c0 Recovering log #367
2026/06/26-16:50:36.265029 7f65c6fee6c0 Delete type=3 #357 2026/06/27-22:07:25.050088 7fef39fec6c0 Delete type=3 #365
2026/06/26-16:50:36.265084 7f65c6fee6c0 Delete type=0 #359 2026/06/27-22:07:25.050135 7fef39fec6c0 Delete type=0 #367
2026/06/26-17:04:51.210224 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.056412 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.210239 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.056430 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.216342 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.062910 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.228933 7f65c57eb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.069509 7fef397eb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.327011 7f65c77ef6c0 Recovering log #355 2026/06/27-22:06:28.574707 7fef3b7ef6c0 Recovering log #363
2026/06/26-16:44:09.336426 7f65c77ef6c0 Delete type=3 #353 2026/06/27-22:06:28.584502 7fef3b7ef6c0 Delete type=3 #361
2026/06/26-16:44:09.336453 7f65c77ef6c0 Delete type=0 #355 2026/06/27-22:06:28.584555 7fef3b7ef6c0 Delete type=0 #363
2026/06/26-16:50:27.775254 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.768406 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.775279 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.768423 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.813769 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.774704 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.904882 7f65c57eb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.787208 7fef397eb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000310 MANIFEST-000322
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.405368 7f65c5fec6c0 Recovering log #308 2026/06/27-22:10:10.509339 7fef3afee6c0 Recovering log #320
2026/06/26-16:50:36.448564 7f65c5fec6c0 Delete type=3 #306 2026/06/27-22:10:10.519172 7fef3afee6c0 Delete type=3 #318
2026/06/26-16:50:36.448592 7f65c5fec6c0 Delete type=0 #308 2026/06/27-22:10:10.519223 7fef3afee6c0 Delete type=0 #320
2026/06/26-17:04:51.234862 7f65c57eb6c0 Level-0 table #313: started 2026/06/27-22:11:13.514787 7fef397eb6c0 Level-0 table #325: started
2026/06/26-17:04:51.234876 7f65c57eb6c0 Level-0 table #313: 0 bytes OK 2026/06/27-22:11:13.514801 7fef397eb6c0 Level-0 table #325: 0 bytes OK
2026/06/26-17:04:51.240676 7f65c57eb6c0 Delete type=0 #311 2026/06/27-22:11:13.520638 7fef397eb6c0 Delete type=0 #323
2026/06/26-17:04:51.253217 7f65c57eb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end) 2026/06/27-22:11:13.520836 7fef397eb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.379353 7f65c77ef6c0 Recovering log #303 2026/06/27-22:07:25.087887 7fef39fec6c0 Recovering log #316
2026/06/26-16:44:09.388416 7f65c77ef6c0 Delete type=3 #301 2026/06/27-22:07:25.098004 7fef39fec6c0 Delete type=3 #314
2026/06/26-16:44:09.388444 7f65c77ef6c0 Delete type=0 #303 2026/06/27-22:07:25.098052 7fef39fec6c0 Delete type=0 #316
2026/06/26-16:50:27.934717 7f65c57eb6c0 Level-0 table #309: started 2026/06/27-22:07:50.076983 7fef397eb6c0 Level-0 table #321: started
2026/06/26-16:50:27.934749 7f65c57eb6c0 Level-0 table #309: 0 bytes OK 2026/06/27-22:07:50.076994 7fef397eb6c0 Level-0 table #321: 0 bytes OK
2026/06/26-16:50:27.969220 7f65c57eb6c0 Delete type=0 #307 2026/06/27-22:07:50.082716 7fef397eb6c0 Delete type=0 #319
2026/06/26-16:50:28.051030 7f65c57eb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.088924 7fef397eb6c0 Manual compaction at level-0 from '!scenes!dYKdGdh2PbtXs32a' @ 72057594037927935 : 1 .. '!scenes.levels!dYKdGdh2PbtXs32a.defaultLevel0000' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000267 MANIFEST-000275
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:35.830639 7f65c6fee6c0 Recovering log #265 2026/06/27-22:07:24.947661 7fef3afee6c0 Recovering log #273
2026/06/26-16:50:35.873796 7f65c6fee6c0 Delete type=3 #263 2026/06/27-22:07:24.957688 7fef3afee6c0 Delete type=3 #271
2026/06/26-16:50:35.873865 7f65c6fee6c0 Delete type=0 #265 2026/06/27-22:07:24.957727 7fef3afee6c0 Delete type=0 #273
2026/06/26-17:04:51.167189 7f65c57eb6c0 Level-0 table #270: started 2026/06/27-22:07:50.018184 7fef397eb6c0 Level-0 table #278: started
2026/06/26-17:04:51.167221 7f65c57eb6c0 Level-0 table #270: 0 bytes OK 2026/06/27-22:07:50.018197 7fef397eb6c0 Level-0 table #278: 0 bytes OK
2026/06/26-17:04:51.173071 7f65c57eb6c0 Delete type=0 #268 2026/06/27-22:07:50.024562 7fef397eb6c0 Delete type=0 #276
2026/06/26-17:04:51.179005 7f65c57eb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.037297 7fef397eb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.214036 7f65c77ef6c0 Recovering log #261 2026/06/27-22:06:28.469095 7fef3afee6c0 Recovering log #269
2026/06/26-16:44:09.223612 7f65c77ef6c0 Delete type=3 #259 2026/06/27-22:06:28.479293 7fef3afee6c0 Delete type=3 #267
2026/06/26-16:44:09.223634 7f65c77ef6c0 Delete type=0 #261 2026/06/27-22:06:28.479341 7fef3afee6c0 Delete type=0 #269
2026/06/26-16:50:27.276005 7f65c57eb6c0 Level-0 table #266: started 2026/06/27-22:07:20.716602 7fef397eb6c0 Level-0 table #274: started
2026/06/26-16:50:27.276043 7f65c57eb6c0 Level-0 table #266: 0 bytes OK 2026/06/27-22:07:20.716622 7fef397eb6c0 Level-0 table #274: 0 bytes OK
2026/06/26-16:50:27.312464 7f65c57eb6c0 Delete type=0 #264 2026/06/27-22:07:20.722613 7fef397eb6c0 Delete type=0 #272
2026/06/26-16:50:27.356573 7f65c57eb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.735759 7fef397eb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000359 MANIFEST-000367
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:35.778574 7f65c67ed6c0 Recovering log #357 2026/06/27-22:07:24.936751 7fef3b7ef6c0 Recovering log #365
2026/06/26-16:50:35.827648 7f65c67ed6c0 Delete type=3 #355 2026/06/27-22:07:24.946330 7fef3b7ef6c0 Delete type=3 #363
2026/06/26-16:50:35.827701 7f65c67ed6c0 Delete type=0 #357 2026/06/27-22:07:24.946356 7fef3b7ef6c0 Delete type=0 #365
2026/06/26-17:04:51.153653 7f65c57eb6c0 Level-0 table #362: started 2026/06/27-22:07:49.999534 7fef397eb6c0 Level-0 table #370: started
2026/06/26-17:04:51.153710 7f65c57eb6c0 Level-0 table #362: 0 bytes OK 2026/06/27-22:07:49.999547 7fef397eb6c0 Level-0 table #370: 0 bytes OK
2026/06/26-17:04:51.160069 7f65c57eb6c0 Delete type=0 #360 2026/06/27-22:07:50.006241 7fef397eb6c0 Delete type=0 #368
2026/06/26-17:04:51.178981 7f65c57eb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.024619 7fef397eb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.202243 7f65c6fee6c0 Recovering log #353 2026/06/27-22:06:28.455906 7fef3a7ed6c0 Recovering log #361
2026/06/26-16:44:09.211998 7f65c6fee6c0 Delete type=3 #351 2026/06/27-22:06:28.466486 7fef3a7ed6c0 Delete type=3 #359
2026/06/26-16:44:09.212054 7f65c6fee6c0 Delete type=0 #353 2026/06/27-22:06:28.466512 7fef3a7ed6c0 Delete type=0 #361
2026/06/26-16:50:27.250032 7f65c57eb6c0 Level-0 table #358: started 2026/06/27-22:07:20.703405 7fef397eb6c0 Level-0 table #366: started
2026/06/26-16:50:27.250114 7f65c57eb6c0 Level-0 table #358: 0 bytes OK 2026/06/27-22:07:20.703433 7fef397eb6c0 Level-0 table #366: 0 bytes OK
2026/06/26-16:50:27.275860 7f65c57eb6c0 Delete type=0 #356 2026/06/27-22:07:20.709422 7fef397eb6c0 Delete type=0 #364
2026/06/26-16:50:27.356560 7f65c57eb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.709609 7fef397eb6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000460 MANIFEST-000472
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.359117 7f65c6fee6c0 Recovering log #458 2026/06/27-22:10:10.496722 7fef39fec6c0 Recovering log #470
2026/06/26-16:50:36.402497 7f65c6fee6c0 Delete type=3 #456 2026/06/27-22:10:10.506833 7fef39fec6c0 Delete type=3 #468
2026/06/26-16:50:36.402540 7f65c6fee6c0 Delete type=0 #458 2026/06/27-22:10:10.506894 7fef39fec6c0 Delete type=0 #470
2026/06/26-17:04:51.222425 7f65c57eb6c0 Level-0 table #463: started 2026/06/27-22:11:13.496319 7fef397eb6c0 Level-0 table #475: started
2026/06/26-17:04:51.222438 7f65c57eb6c0 Level-0 table #463: 0 bytes OK 2026/06/27-22:11:13.496334 7fef397eb6c0 Level-0 table #475: 0 bytes OK
2026/06/26-17:04:51.228880 7f65c57eb6c0 Delete type=0 #461 2026/06/27-22:11:13.502358 7fef397eb6c0 Delete type=0 #473
2026/06/26-17:04:51.234856 7f65c57eb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/06/27-22:11:13.520709 7fef397eb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.367262 7f65c67ed6c0 Recovering log #454 2026/06/27-22:07:25.077348 7fef3a7ed6c0 Recovering log #466
2026/06/26-16:44:09.376869 7f65c67ed6c0 Delete type=3 #452 2026/06/27-22:07:25.086559 7fef3a7ed6c0 Delete type=3 #464
2026/06/26-16:44:09.376898 7f65c67ed6c0 Delete type=0 #454 2026/06/27-22:07:25.086581 7fef3a7ed6c0 Delete type=0 #466
2026/06/26-16:50:27.905035 7f65c57eb6c0 Level-0 table #459: started 2026/06/27-22:07:50.069520 7fef397eb6c0 Level-0 table #471: started
2026/06/26-16:50:27.905069 7f65c57eb6c0 Level-0 table #459: 0 bytes OK 2026/06/27-22:07:50.069538 7fef397eb6c0 Level-0 table #471: 0 bytes OK
2026/06/26-16:50:27.934582 7f65c57eb6c0 Delete type=0 #457 2026/06/27-22:07:50.076928 7fef397eb6c0 Delete type=0 #469
2026/06/26-16:50:28.051015 7f65c57eb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.088916 7fef397eb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000485 MANIFEST-000493
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.309531 7f65c5fec6c0 Recovering log #483 2026/06/27-22:07:25.064707 7fef3afee6c0 Recovering log #491
2026/06/26-16:50:36.355315 7f65c5fec6c0 Delete type=3 #481 2026/06/27-22:07:25.074590 7fef3afee6c0 Delete type=3 #489
2026/06/26-16:50:36.355382 7f65c5fec6c0 Delete type=0 #483 2026/06/27-22:07:25.074634 7fef3afee6c0 Delete type=0 #491
2026/06/26-17:04:51.228946 7f65c57eb6c0 Level-0 table #488: started 2026/06/27-22:07:50.082774 7fef397eb6c0 Level-0 table #496: started
2026/06/26-17:04:51.228960 7f65c57eb6c0 Level-0 table #488: 0 bytes OK 2026/06/27-22:07:50.082786 7fef397eb6c0 Level-0 table #496: 0 bytes OK
2026/06/26-17:04:51.234799 7f65c57eb6c0 Delete type=0 #486 2026/06/27-22:07:50.088840 7fef397eb6c0 Delete type=0 #494
2026/06/26-17:04:51.247286 7f65c57eb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.096407 7fef397eb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.352314 7f65c5fec6c0 Recovering log #479 2026/06/27-22:06:28.601495 7fef3afee6c0 Recovering log #487
2026/06/26-16:44:09.362983 7f65c5fec6c0 Delete type=3 #477 2026/06/27-22:06:28.610925 7fef3afee6c0 Delete type=3 #485
2026/06/26-16:44:09.363059 7f65c5fec6c0 Delete type=0 #479 2026/06/27-22:06:28.610946 7fef3afee6c0 Delete type=0 #487
2026/06/26-16:50:27.876386 7f65c57eb6c0 Level-0 table #484: started 2026/06/27-22:07:20.781214 7fef397eb6c0 Level-0 table #492: started
2026/06/26-16:50:27.876417 7f65c57eb6c0 Level-0 table #484: 0 bytes OK 2026/06/27-22:07:20.781229 7fef397eb6c0 Level-0 table #492: 0 bytes OK
2026/06/26-16:50:27.904743 7f65c57eb6c0 Delete type=0 #482 2026/06/27-22:07:20.787144 7fef397eb6c0 Delete type=0 #490
2026/06/26-16:50:27.905020 7f65c57eb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.793835 7fef397eb6c0 Manual compaction at level-0 from '!items!07bq0fsbn653i81y' @ 72057594037927935 : 1 .. '!items!zKvlDHBalR4UdwUx' @ 0 : 0; will stop at (end)
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.115607 7f65c67ed6c0 Recovering log #359 2026/06/27-22:07:25.016038 7fef3afee6c0 Recovering log #367
2026/06/26-16:50:36.160048 7f65c67ed6c0 Delete type=3 #357 2026/06/27-22:07:25.026652 7fef3afee6c0 Delete type=3 #365
2026/06/26-16:50:36.160118 7f65c67ed6c0 Delete type=0 #359 2026/06/27-22:07:25.026703 7fef3afee6c0 Delete type=0 #367
2026/06/26-17:04:51.197561 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.024769 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.197577 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.024780 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.203315 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.030946 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.210217 7f65c57eb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.044157 7fef397eb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.287855 7f65c5fec6c0 Recovering log #355 2026/06/27-22:06:28.549679 7fef3b7ef6c0 Recovering log #363
2026/06/26-16:44:09.297609 7f65c5fec6c0 Delete type=3 #353 2026/06/27-22:06:28.558742 7fef3b7ef6c0 Delete type=3 #361
2026/06/26-16:44:09.297676 7f65c5fec6c0 Delete type=0 #355 2026/06/27-22:06:28.558795 7fef3b7ef6c0 Delete type=0 #363
2026/06/26-16:50:27.717794 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.755111 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.717817 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.755127 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.739064 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.761995 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.775136 7f65c57eb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.768400 7fef397eb6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000361 MANIFEST-000369
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:50:36.163491 7f65c5fec6c0 Recovering log #359 2026/06/27-22:07:25.028516 7fef3b7ef6c0 Recovering log #367
2026/06/26-16:50:36.207600 7f65c5fec6c0 Delete type=3 #357 2026/06/27-22:07:25.038446 7fef3b7ef6c0 Delete type=3 #365
2026/06/26-16:50:36.207635 7f65c5fec6c0 Delete type=0 #359 2026/06/27-22:07:25.038486 7fef3b7ef6c0 Delete type=0 #367
2026/06/26-17:04:51.203528 7f65c57eb6c0 Level-0 table #364: started 2026/06/27-22:07:50.049986 7fef397eb6c0 Level-0 table #372: started
2026/06/26-17:04:51.203544 7f65c57eb6c0 Level-0 table #364: 0 bytes OK 2026/06/27-22:07:50.049997 7fef397eb6c0 Level-0 table #372: 0 bytes OK
2026/06/26-17:04:51.210174 7f65c57eb6c0 Delete type=0 #362 2026/06/27-22:07:50.056305 7fef397eb6c0 Delete type=0 #370
2026/06/26-17:04:51.222418 7f65c57eb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) 2026/06/27-22:07:50.063035 7fef397eb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/06/26-16:44:09.301416 7f65c67ed6c0 Recovering log #355 2026/06/27-22:06:28.561359 7fef39fec6c0 Recovering log #363
2026/06/26-16:44:09.324026 7f65c67ed6c0 Delete type=3 #353 2026/06/27-22:06:28.571801 7fef39fec6c0 Delete type=3 #361
2026/06/26-16:44:09.324113 7f65c67ed6c0 Delete type=0 #355 2026/06/27-22:06:28.571848 7fef39fec6c0 Delete type=0 #363
2026/06/26-16:50:27.813918 7f65c57eb6c0 Level-0 table #360: started 2026/06/27-22:07:20.762096 7fef397eb6c0 Level-0 table #368: started
2026/06/26-16:50:27.813948 7f65c57eb6c0 Level-0 table #360: 0 bytes OK 2026/06/27-22:07:20.762112 7fef397eb6c0 Level-0 table #368: 0 bytes OK
2026/06/26-16:50:27.840848 7f65c57eb6c0 Delete type=0 #358 2026/06/27-22:07:20.768318 7fef397eb6c0 Delete type=0 #366
2026/06/26-16:50:27.904900 7f65c57eb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end) 2026/06/27-22:07:20.781208 7fef397eb6c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
+5 -155
View File
@@ -71,29 +71,11 @@
"color": "#00435c", "color": "#00435c",
"folders": [ "folders": [
{ {
"name": "Création de Personnage", "name": "ELéments du Jeu",
"sorting": "a", "sorting": "a",
"color": "#00435c", "color": "#00435c",
"packs": [ "packs": [
"skills", "elements-du-jeu"
"dons",
"tendances",
"traits-chaotiques",
"runes",
"historiques",
"profils",
"talents"
],
"folders": []
},
{
"name": "Equipement",
"sorting": "a",
"color": "#00435c",
"packs": [
"armes",
"protections",
"equipement"
], ],
"folders": [] "folders": []
}, },
@@ -117,141 +99,9 @@
"packs": [ "packs": [
{ {
"type": "Item", "type": "Item",
"label": "Compétences", "label": "Eléments du Jeu",
"name": "skills", "name": "elements-du-jeu",
"path": "packs/skills", "path": "packs/elements-du-jeu",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Compétences de Créatures",
"name": "skills-creatures",
"path": "packs/skills-creatures",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Historiques",
"name": "historiques",
"path": "packs/historiques",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Armes",
"name": "armes",
"path": "packs/armes",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Protections",
"name": "protections",
"path": "packs/protections",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Equipement",
"name": "equipement",
"path": "packs/equipement",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"label": "Dons",
"type": "Item",
"name": "dons",
"path": "packs/dons",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Tendances",
"name": "tendances",
"path": "packs/tendances",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Traits chaotiques",
"name": "traits-chaotiques",
"path": "packs/traits-chaotiques",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Runes",
"name": "runes",
"path": "packs/runes",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Profils",
"name": "profils",
"path": "packs/profils",
"system": "fvtt-mournblade-cyd-2-0",
"flags": {},
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"type": "Item",
"label": "Talents de Personnage",
"name": "talents",
"path": "packs/talents",
"system": "fvtt-mournblade-cyd-2-0", "system": "fvtt-mournblade-cyd-2-0",
"flags": {}, "flags": {},
"ownership": { "ownership": {
-4
View File
@@ -111,10 +111,6 @@
<label>{{localize "MNBL.initShort"}}</label> <label>{{localize "MNBL.initShort"}}</label>
<span>{{combat.initTotal}}</span> <span>{{combat.initTotal}}</span>
</div> </div>
<div class="stat-field">
<label>{{localize "MNBL.defShort"}}</label>
<span>{{combat.defenseTotal}}</span>
</div>
<div class="stat-field"> <div class="stat-field">
<label>{{localize "MNBL.protShort"}}</label> <label>{{localize "MNBL.protShort"}}</label>
<span>{{protectionTotal}}</span> <span>{{protectionTotal}}</span>