Fix E dice in dice Tray
All checks were successful
Release Creation / build (release) Successful in 55s

This commit is contained in:
2026-04-17 23:21:49 +02:00
parent 7f15450566
commit b8174d5e22
26 changed files with 117 additions and 104 deletions

View File

@@ -75,39 +75,53 @@ export function injectDiceTray(_chatLog, html) {
/**
* Roll one or more dice of the given type and post the result to chat.
* For exploding dice, follows the Lethal Fantasy rule: each exploded reroll
* contributes (result 1) to the total, same as all other system rolls.
*
* @param {string} dieType Die face, e.g. "d20"
* @param {number} count Number of dice to roll (19)
* @param {boolean} explode Whether to use the exploding modifier (x = max-value explode)
* @param {boolean} explode Whether to use the exploding variant (max triggers reroll at 1)
* @returns {Promise<void>}
*/
export async function rollFreeDie(dieType, count = 1, explode = false) {
const sides = parseInt(dieType.replace("d", "")) || 20
const formula = explode ? `${count}d${sides}x` : `${count}d${sides}`
const baseFormula = `1d${sides}`
const label = explode
? `${count}${dieType.toUpperCase()}E`
: `${count}${dieType.toUpperCase()}`
const roll = new Roll(formula)
await roll.evaluate()
const results = roll.terms
.filter(t => t.results)
.flatMap(t => t.results)
const total = roll.total
const dieLabel = dieType.toUpperCase()
const resultHtml = results.map(r => {
const val = r.result
const isMax = val === sides
const isMin = val === 1
const explodeIcon = r.exploded ? `<i class="fa-solid fa-burst lf-dt-explode-icon"></i>` : ""
const dieChips = []
let total = 0
for (let i = 0; i < count; i++) {
const r0 = await new Roll(baseFormula).evaluate()
if (game?.dice3d) await game.dice3d.showForRoll(r0, game.user, true)
let diceResult = r0.dice[0].results[0].result
dieChips.push({ label: dieLabel, value: diceResult, exploded: false })
total += diceResult
if (explode) {
while (diceResult === sides) {
const rx = await new Roll(baseFormula).evaluate()
if (game?.dice3d) await game.dice3d.showForRoll(rx, game.user, true)
diceResult = rx.dice[0].results[0].result
const contrib = diceResult - 1
dieChips.push({ label: `${dieLabel}-1`, value: contrib, exploded: true })
total += contrib
}
}
}
const resultHtml = dieChips.map(chip => {
const isMax = !chip.exploded && chip.value === sides
const isMin = chip.value === 1
const explodeIcon = chip.exploded ? `<i class="fa-solid fa-burst lf-dt-explode-icon"></i>` : ""
const classes = ["lf-frc-die-chip", isMax ? "lf-frc-max" : "", isMin ? "lf-frc-min" : ""].filter(Boolean).join(" ")
return `<div class="${classes}">
<span class="lf-frc-die-type">${dieLabel}</span>
<span class="lf-frc-die-type">${chip.label}</span>
<span class="lf-frc-die-sep">→</span>
<span class="lf-frc-die-val">${val}${explodeIcon}</span>
<span class="lf-frc-die-val">${chip.value}${explodeIcon}</span>
</div>`
}).join("")
@@ -131,7 +145,6 @@ export async function rollFreeDie(dieType, count = 1, explode = false) {
const msgData = {
speaker: ChatMessage.getSpeaker(),
content,
rolls: [roll],
sound: CONFIG.sounds.dice,
}
ChatMessage.applyRollMode(msgData, rollMode)

View File

@@ -1 +1 @@
MANIFEST-000567
MANIFEST-000571

View File

@@ -1,8 +1,8 @@
2026/04/17-15:59:28.854423 7fc1d9fbd6c0 Recovering log #565
2026/04/17-15:59:28.865018 7fc1d9fbd6c0 Delete type=3 #563
2026/04/17-15:59:28.865088 7fc1d9fbd6c0 Delete type=0 #565
2026/04/17-17:32:42.752073 7fc1d8fbb6c0 Level-0 table #570: started
2026/04/17-17:32:42.752102 7fc1d8fbb6c0 Level-0 table #570: 0 bytes OK
2026/04/17-17:32:42.757979 7fc1d8fbb6c0 Delete type=0 #568
2026/04/17-17:32:42.764071 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764104 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/17-23:19:16.304838 7fc1d9fbd6c0 Recovering log #569
2026/04/17-23:19:16.314937 7fc1d9fbd6c0 Delete type=3 #567
2026/04/17-23:19:16.314986 7fc1d9fbd6c0 Delete type=0 #569
2026/04/17-23:21:33.253358 7fc1d8fbb6c0 Level-0 table #574: started
2026/04/17-23:21:33.253399 7fc1d8fbb6c0 Level-0 table #574: 0 bytes OK
2026/04/17-23:21:33.259366 7fc1d8fbb6c0 Delete type=0 #572
2026/04/17-23:21:33.272517 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/17-23:21:33.272537 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2026/04/16-08:58:49.556234 7fc1d97bc6c0 Recovering log #561
2026/04/16-08:58:49.566786 7fc1d97bc6c0 Delete type=3 #559
2026/04/16-08:58:49.566849 7fc1d97bc6c0 Delete type=0 #561
2026/04/16-10:53:23.903167 7fc1d8fbb6c0 Level-0 table #566: started
2026/04/16-10:53:23.903203 7fc1d8fbb6c0 Level-0 table #566: 0 bytes OK
2026/04/16-10:53:23.909050 7fc1d8fbb6c0 Delete type=0 #564
2026/04/16-10:53:23.921766 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/16-10:53:23.921790 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/17-15:59:28.854423 7fc1d9fbd6c0 Recovering log #565
2026/04/17-15:59:28.865018 7fc1d9fbd6c0 Delete type=3 #563
2026/04/17-15:59:28.865088 7fc1d9fbd6c0 Delete type=0 #565
2026/04/17-17:32:42.752073 7fc1d8fbb6c0 Level-0 table #570: started
2026/04/17-17:32:42.752102 7fc1d8fbb6c0 Level-0 table #570: 0 bytes OK
2026/04/17-17:32:42.757979 7fc1d8fbb6c0 Delete type=0 #568
2026/04/17-17:32:42.764071 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764104 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000564
MANIFEST-000568

View File

@@ -1,8 +1,8 @@
2026/04/17-15:59:28.871085 7fc1dafbf6c0 Recovering log #562
2026/04/17-15:59:28.880683 7fc1dafbf6c0 Delete type=3 #560
2026/04/17-15:59:28.880729 7fc1dafbf6c0 Delete type=0 #562
2026/04/17-17:32:42.744598 7fc1d8fbb6c0 Level-0 table #567: started
2026/04/17-17:32:42.744627 7fc1d8fbb6c0 Level-0 table #567: 0 bytes OK
2026/04/17-17:32:42.751972 7fc1d8fbb6c0 Delete type=0 #565
2026/04/17-17:32:42.764061 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764085 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/17-23:19:16.318519 7fc1da7be6c0 Recovering log #566
2026/04/17-23:19:16.328366 7fc1da7be6c0 Delete type=3 #564
2026/04/17-23:19:16.328429 7fc1da7be6c0 Delete type=0 #566
2026/04/17-23:21:33.266428 7fc1d8fbb6c0 Level-0 table #571: started
2026/04/17-23:21:33.266454 7fc1d8fbb6c0 Level-0 table #571: 0 bytes OK
2026/04/17-23:21:33.272429 7fc1d8fbb6c0 Delete type=0 #569
2026/04/17-23:21:33.272532 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/17-23:21:33.272553 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2026/04/16-08:58:49.571861 7fc1da7be6c0 Recovering log #558
2026/04/16-08:58:49.581625 7fc1da7be6c0 Delete type=3 #556
2026/04/16-08:58:49.581687 7fc1da7be6c0 Delete type=0 #558
2026/04/16-10:53:23.896992 7fc1d8fbb6c0 Level-0 table #563: started
2026/04/16-10:53:23.897059 7fc1d8fbb6c0 Level-0 table #563: 0 bytes OK
2026/04/16-10:53:23.903074 7fc1d8fbb6c0 Delete type=0 #561
2026/04/16-10:53:23.921755 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/16-10:53:23.921797 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/17-15:59:28.871085 7fc1dafbf6c0 Recovering log #562
2026/04/17-15:59:28.880683 7fc1dafbf6c0 Delete type=3 #560
2026/04/17-15:59:28.880729 7fc1dafbf6c0 Delete type=0 #562
2026/04/17-17:32:42.744598 7fc1d8fbb6c0 Level-0 table #567: started
2026/04/17-17:32:42.744627 7fc1d8fbb6c0 Level-0 table #567: 0 bytes OK
2026/04/17-17:32:42.751972 7fc1d8fbb6c0 Delete type=0 #565
2026/04/17-17:32:42.764061 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764085 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000569
MANIFEST-000573

View File

@@ -1,8 +1,8 @@
2026/04/17-15:59:28.839432 7fc1da7be6c0 Recovering log #567
2026/04/17-15:59:28.849242 7fc1da7be6c0 Delete type=3 #565
2026/04/17-15:59:28.849292 7fc1da7be6c0 Delete type=0 #567
2026/04/17-17:32:42.764151 7fc1d8fbb6c0 Level-0 table #572: started
2026/04/17-17:32:42.764181 7fc1d8fbb6c0 Level-0 table #572: 0 bytes OK
2026/04/17-17:32:42.770357 7fc1d8fbb6c0 Delete type=0 #570
2026/04/17-17:32:42.789018 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.789049 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/17-23:19:16.291897 7fc1dafbf6c0 Recovering log #571
2026/04/17-23:19:16.301798 7fc1dafbf6c0 Delete type=3 #569
2026/04/17-23:19:16.301852 7fc1dafbf6c0 Delete type=0 #571
2026/04/17-23:21:33.247119 7fc1d8fbb6c0 Level-0 table #576: started
2026/04/17-23:21:33.247158 7fc1d8fbb6c0 Level-0 table #576: 0 bytes OK
2026/04/17-23:21:33.253108 7fc1d8fbb6c0 Delete type=0 #574
2026/04/17-23:21:33.272508 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/17-23:21:33.272542 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2026/04/16-08:58:49.542216 7fc1dafbf6c0 Recovering log #563
2026/04/16-08:58:49.551998 7fc1dafbf6c0 Delete type=3 #561
2026/04/16-08:58:49.552067 7fc1dafbf6c0 Delete type=0 #563
2026/04/16-10:53:23.915570 7fc1d8fbb6c0 Level-0 table #568: started
2026/04/16-10:53:23.915589 7fc1d8fbb6c0 Level-0 table #568: 0 bytes OK
2026/04/16-10:53:23.921669 7fc1d8fbb6c0 Delete type=0 #566
2026/04/16-10:53:23.921782 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/16-10:53:23.921813 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/17-15:59:28.839432 7fc1da7be6c0 Recovering log #567
2026/04/17-15:59:28.849242 7fc1da7be6c0 Delete type=3 #565
2026/04/17-15:59:28.849292 7fc1da7be6c0 Delete type=0 #567
2026/04/17-17:32:42.764151 7fc1d8fbb6c0 Level-0 table #572: started
2026/04/17-17:32:42.764181 7fc1d8fbb6c0 Level-0 table #572: 0 bytes OK
2026/04/17-17:32:42.770357 7fc1d8fbb6c0 Delete type=0 #570
2026/04/17-17:32:42.789018 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.789049 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000264
MANIFEST-000268

View File

@@ -1,8 +1,8 @@
2026/04/17-15:59:28.899464 7fc1d97bc6c0 Recovering log #262
2026/04/17-15:59:28.910004 7fc1d97bc6c0 Delete type=3 #260
2026/04/17-15:59:28.910074 7fc1d97bc6c0 Delete type=0 #262
2026/04/17-17:32:42.770457 7fc1d8fbb6c0 Level-0 table #267: started
2026/04/17-17:32:42.770479 7fc1d8fbb6c0 Level-0 table #267: 0 bytes OK
2026/04/17-17:32:42.777091 7fc1d8fbb6c0 Delete type=0 #265
2026/04/17-17:32:42.789028 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.789054 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/17-23:19:16.342745 7fc1d9fbd6c0 Recovering log #266
2026/04/17-23:19:16.352598 7fc1d9fbd6c0 Delete type=3 #264
2026/04/17-23:19:16.352656 7fc1d9fbd6c0 Delete type=0 #266
2026/04/17-23:21:33.291630 7fc1d8fbb6c0 Level-0 table #271: started
2026/04/17-23:21:33.291664 7fc1d8fbb6c0 Level-0 table #271: 0 bytes OK
2026/04/17-23:21:33.297690 7fc1d8fbb6c0 Delete type=0 #269
2026/04/17-23:21:33.297852 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/17-23:21:33.297866 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2026/04/16-08:58:49.600337 7fc1dafbf6c0 Recovering log #258
2026/04/16-08:58:49.610136 7fc1dafbf6c0 Delete type=3 #256
2026/04/16-08:58:49.610209 7fc1dafbf6c0 Delete type=0 #258
2026/04/16-10:53:23.940580 7fc1d8fbb6c0 Level-0 table #263: started
2026/04/16-10:53:23.940611 7fc1d8fbb6c0 Level-0 table #263: 0 bytes OK
2026/04/16-10:53:23.947242 7fc1d8fbb6c0 Delete type=0 #261
2026/04/16-10:53:23.947402 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/16-10:53:23.947419 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/17-15:59:28.899464 7fc1d97bc6c0 Recovering log #262
2026/04/17-15:59:28.910004 7fc1d97bc6c0 Delete type=3 #260
2026/04/17-15:59:28.910074 7fc1d97bc6c0 Delete type=0 #262
2026/04/17-17:32:42.770457 7fc1d8fbb6c0 Level-0 table #267: started
2026/04/17-17:32:42.770479 7fc1d8fbb6c0 Level-0 table #267: 0 bytes OK
2026/04/17-17:32:42.777091 7fc1d8fbb6c0 Delete type=0 #265
2026/04/17-17:32:42.789028 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.789054 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000563
MANIFEST-000567

View File

@@ -1,8 +1,8 @@
2026/04/17-15:59:28.886104 7fc1da7be6c0 Recovering log #561
2026/04/17-15:59:28.896104 7fc1da7be6c0 Delete type=3 #559
2026/04/17-15:59:28.896157 7fc1da7be6c0 Delete type=0 #561
2026/04/17-17:32:42.758102 7fc1d8fbb6c0 Level-0 table #566: started
2026/04/17-17:32:42.758128 7fc1d8fbb6c0 Level-0 table #566: 0 bytes OK
2026/04/17-17:32:42.763950 7fc1d8fbb6c0 Delete type=0 #564
2026/04/17-17:32:42.764079 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764099 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/17-23:19:16.330906 7fc1dafbf6c0 Recovering log #565
2026/04/17-23:19:16.340561 7fc1dafbf6c0 Delete type=3 #563
2026/04/17-23:19:16.340605 7fc1dafbf6c0 Delete type=0 #565
2026/04/17-23:21:33.259495 7fc1d8fbb6c0 Level-0 table #570: started
2026/04/17-23:21:33.259518 7fc1d8fbb6c0 Level-0 table #570: 0 bytes OK
2026/04/17-23:21:33.266305 7fc1d8fbb6c0 Delete type=0 #568
2026/04/17-23:21:33.272525 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/17-23:21:33.272548 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2026/04/16-08:58:49.586323 7fc1d9fbd6c0 Recovering log #557
2026/04/16-08:58:49.596973 7fc1d9fbd6c0 Delete type=3 #555
2026/04/16-08:58:49.597026 7fc1d9fbd6c0 Delete type=0 #557
2026/04/16-10:53:23.909144 7fc1d8fbb6c0 Level-0 table #562: started
2026/04/16-10:53:23.909174 7fc1d8fbb6c0 Level-0 table #562: 0 bytes OK
2026/04/16-10:53:23.915478 7fc1d8fbb6c0 Delete type=0 #560
2026/04/16-10:53:23.921775 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/16-10:53:23.921804 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/17-15:59:28.886104 7fc1da7be6c0 Recovering log #561
2026/04/17-15:59:28.896104 7fc1da7be6c0 Delete type=3 #559
2026/04/17-15:59:28.896157 7fc1da7be6c0 Delete type=0 #561
2026/04/17-17:32:42.758102 7fc1d8fbb6c0 Level-0 table #566: started
2026/04/17-17:32:42.758128 7fc1d8fbb6c0 Level-0 table #566: 0 bytes OK
2026/04/17-17:32:42.763950 7fc1d8fbb6c0 Delete type=0 #564
2026/04/17-17:32:42.764079 7fc1d8fbb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
2026/04/17-17:32:42.764099 7fc1d8fbb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)