From 63c01538609bddb45738148c5c71f16f1ee41302 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnier Date: Tue, 14 Apr 2026 00:56:25 +0200 Subject: [PATCH] FIx v13/v14 --- module/documents/roll.mjs | 31 ++++++++++-------- .../aides-de-jeu/{000064.log => 000072.log} | 0 packs-system/aides-de-jeu/CURRENT | 2 +- packs-system/aides-de-jeu/LOG | 16 ++++----- packs-system/aides-de-jeu/LOG.old | 16 ++++----- .../{MANIFEST-000062 => MANIFEST-000070} | Bin 161 -> 161 bytes .../anomalies/{000114.log => 000124.log} | 0 .../anomalies/{000116.ldb => 000126.ldb} | Bin 6617 -> 6617 bytes packs-system/anomalies/CURRENT | 2 +- packs-system/anomalies/LOG | 30 ++++++++--------- packs-system/anomalies/LOG.old | 30 ++++++++--------- packs-system/anomalies/MANIFEST-000112 | Bin 289 -> 0 bytes packs-system/anomalies/MANIFEST-000122 | Bin 0 -> 289 bytes .../pretires/{000025.log => 000033.log} | 0 packs-system/pretires/CURRENT | 2 +- packs-system/pretires/LOG | 16 ++++----- packs-system/pretires/LOG.old | 16 ++++----- .../{MANIFEST-000023 => MANIFEST-000031} | Bin 196 -> 196 bytes .../scenes/{000064.log => 000072.log} | 0 packs-system/scenes/CURRENT | 2 +- packs-system/scenes/LOG | 16 ++++----- packs-system/scenes/LOG.old | 16 ++++----- .../{MANIFEST-000062 => MANIFEST-000070} | Bin 311 -> 311 bytes templates/roll-dialog.hbs | 6 ++-- 24 files changed, 103 insertions(+), 98 deletions(-) rename packs-system/aides-de-jeu/{000064.log => 000072.log} (100%) rename packs-system/aides-de-jeu/{MANIFEST-000062 => MANIFEST-000070} (79%) rename packs-system/anomalies/{000114.log => 000124.log} (100%) rename packs-system/anomalies/{000116.ldb => 000126.ldb} (97%) delete mode 100644 packs-system/anomalies/MANIFEST-000112 create mode 100644 packs-system/anomalies/MANIFEST-000122 rename packs-system/pretires/{000025.log => 000033.log} (100%) rename packs-system/pretires/{MANIFEST-000023 => MANIFEST-000031} (65%) rename packs-system/scenes/{000064.log => 000072.log} (100%) rename packs-system/scenes/{MANIFEST-000062 => MANIFEST-000070} (82%) diff --git a/module/documents/roll.mjs b/module/documents/roll.mjs index 0018136..4f3132c 100644 --- a/module/documents/roll.mjs +++ b/module/documents/roll.mjs @@ -383,7 +383,7 @@ export class CelestopolRoll extends Roll { puiserRessources: effectivePuiser, nbDice: (!isResistance && useFortune) ? 1 : nbDice, formula, - rollMode: rollContext.visibility ?? "publicroll", + rollMode: rollContext.visibility ?? "public", rollMoonDie: effectiveMoon, moonDieResult, moonFace, @@ -634,11 +634,20 @@ export class CelestopolRoll extends Roll { /** @override */ async toMessage(messageData = {}, { messageMode, rollMode, create = true } = {}) { - if (rollMode) { - messageMode = Roll._mapLegacyRollMode(rollMode) + const modernToLegacyRollMode = { + public: CONST.DICE_ROLL_MODES.PUBLIC, + gm: CONST.DICE_ROLL_MODES.PRIVATE, + blind: CONST.DICE_ROLL_MODES.BLIND, + self: CONST.DICE_ROLL_MODES.SELF, + ic: CONST.DICE_ROLL_MODES.PUBLIC, } - messageMode ||= game.settings.get("core", "messageMode") - if (!this._evaluated) await this.evaluate({ allowInteractive: messageMode !== "blind" }) + let effectiveRollMode = rollMode ?? messageMode ?? game.settings.get("core", "rollMode") ?? CONST.DICE_ROLL_MODES.PUBLIC + effectiveRollMode = modernToLegacyRollMode[effectiveRollMode] ?? effectiveRollMode + if (!Object.values(CONST.DICE_ROLL_MODES).includes(effectiveRollMode)) { + effectiveRollMode = game.settings.get("core", "rollMode") ?? CONST.DICE_ROLL_MODES.PUBLIC + } + + if (!this._evaluated) await this.evaluate({ allowInteractive: effectiveRollMode !== CONST.DICE_ROLL_MODES.BLIND }) const skillLocalized = this.skillLabel ? game.i18n.localize(this.skillLabel) : "" const statLocalized = this.options.statLabel @@ -650,7 +659,7 @@ export class CelestopolRoll extends Roll { actorUuid: this.options.actorUuid ?? null, actorId: this.options.actorId ?? null, }) - const content = await this.render({ isPrivate: messageMode !== "public" }) + const content = await this.render({ isPrivate: effectiveRollMode !== CONST.DICE_ROLL_MODES.PUBLIC }) const chatData = foundry.utils.mergeObject({ author: game.user.id, content, @@ -660,13 +669,9 @@ export class CelestopolRoll extends Roll { speaker: speakerActor ? ChatMessage.getSpeaker({ actor: speakerActor }) : undefined, style: CONST.CHAT_MESSAGE_STYLES.OTHER, }, messageData) - - const cls = foundry.utils.getDocumentClass("ChatMessage") - const msg = new cls(chatData) - msg.applyMode(messageMode) - - if (create) return cls.create(msg) - return msg.toObject() + ChatMessage.applyRollMode(chatData, effectiveRollMode) + if (create) return ChatMessage.create(chatData) + return chatData } /** diff --git a/packs-system/aides-de-jeu/000064.log b/packs-system/aides-de-jeu/000072.log similarity index 100% rename from packs-system/aides-de-jeu/000064.log rename to packs-system/aides-de-jeu/000072.log diff --git a/packs-system/aides-de-jeu/CURRENT b/packs-system/aides-de-jeu/CURRENT index 5ca571d..bcf1079 100644 --- a/packs-system/aides-de-jeu/CURRENT +++ b/packs-system/aides-de-jeu/CURRENT @@ -1 +1 @@ -MANIFEST-000062 +MANIFEST-000070 diff --git a/packs-system/aides-de-jeu/LOG b/packs-system/aides-de-jeu/LOG index cc87655..2a606b7 100644 --- a/packs-system/aides-de-jeu/LOG +++ b/packs-system/aides-de-jeu/LOG @@ -1,8 +1,8 @@ -2026/04/13-13:11:31.249954 7f2a6b7fe6c0 Recovering log #60 -2026/04/13-13:11:31.302525 7f2a6b7fe6c0 Delete type=3 #58 -2026/04/13-13:11:31.302579 7f2a6b7fe6c0 Delete type=0 #60 -2026/04/13-14:20:41.118813 7f2a69ffb6c0 Level-0 table #65: started -2026/04/13-14:20:41.118847 7f2a69ffb6c0 Level-0 table #65: 0 bytes OK -2026/04/13-14:20:41.156390 7f2a69ffb6c0 Delete type=0 #63 -2026/04/13-14:20:41.210923 7f2a69ffb6c0 Manual compaction at level-0 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) -2026/04/13-14:20:41.272745 7f2a69ffb6c0 Manual compaction at level-1 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) +2026/04/14-00:55:24.427256 7f68497ed6c0 Recovering log #68 +2026/04/14-00:55:24.442232 7f68497ed6c0 Delete type=3 #66 +2026/04/14-00:55:24.442302 7f68497ed6c0 Delete type=0 #68 +2026/04/14-00:56:01.490011 7f6833fff6c0 Level-0 table #73: started +2026/04/14-00:56:01.490050 7f6833fff6c0 Level-0 table #73: 0 bytes OK +2026/04/14-00:56:01.496026 7f6833fff6c0 Delete type=0 #71 +2026/04/14-00:56:01.502797 7f6833fff6c0 Manual compaction at level-0 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) +2026/04/14-00:56:01.513341 7f6833fff6c0 Manual compaction at level-1 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) diff --git a/packs-system/aides-de-jeu/LOG.old b/packs-system/aides-de-jeu/LOG.old index ecb68a6..d4bf04d 100644 --- a/packs-system/aides-de-jeu/LOG.old +++ b/packs-system/aides-de-jeu/LOG.old @@ -1,8 +1,8 @@ -2026/04/13-13:10:44.862648 7ff582bff6c0 Recovering log #56 -2026/04/13-13:10:44.908015 7ff582bff6c0 Delete type=3 #54 -2026/04/13-13:10:44.908061 7ff582bff6c0 Delete type=0 #56 -2026/04/13-13:10:47.939764 7ff580bfb6c0 Level-0 table #61: started -2026/04/13-13:10:47.939788 7ff580bfb6c0 Level-0 table #61: 0 bytes OK -2026/04/13-13:10:47.972855 7ff580bfb6c0 Delete type=0 #59 -2026/04/13-13:10:47.973045 7ff580bfb6c0 Manual compaction at level-0 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) -2026/04/13-13:10:48.030502 7ff580bfb6c0 Manual compaction at level-1 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) +2026/04/14-00:42:19.979759 7f68497ed6c0 Recovering log #64 +2026/04/14-00:42:19.989860 7f68497ed6c0 Delete type=3 #62 +2026/04/14-00:42:19.989918 7f68497ed6c0 Delete type=0 #64 +2026/04/14-00:50:27.807116 7f6833fff6c0 Level-0 table #69: started +2026/04/14-00:50:27.807197 7f6833fff6c0 Level-0 table #69: 0 bytes OK +2026/04/14-00:50:27.813335 7f6833fff6c0 Delete type=0 #67 +2026/04/14-00:50:27.836261 7f6833fff6c0 Manual compaction at level-0 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) +2026/04/14-00:50:27.836305 7f6833fff6c0 Manual compaction at level-1 from '!journal!eNYstmPK0mMmVJYC' @ 72057594037927935 : 1 .. '!journal.pages!eNYstmPK0mMmVJYC.r9h1ggd3G9hiqYJX' @ 0 : 0; will stop at (end) diff --git a/packs-system/aides-de-jeu/MANIFEST-000062 b/packs-system/aides-de-jeu/MANIFEST-000070 similarity index 79% rename from packs-system/aides-de-jeu/MANIFEST-000062 rename to packs-system/aides-de-jeu/MANIFEST-000070 index 8ea4cace4553bf00a846c6ad08b6fcc597041068..02510ce44305d522e5c9703b629fb23ef5b0a28d 100644 GIT binary patch delta 37 pcmZ3;xR7x|v)q{+HdYP>MkaSo24)Wywn>XO{0DJ8fLt#YHUP0@2mk;8 delta 37 pcmZ3;xR7x|vz+zO_q#b57@6!j8JHbd*re@SYCv2EAlHe74FJH&2fY9Q diff --git a/packs-system/anomalies/000114.log b/packs-system/anomalies/000124.log similarity index 100% rename from packs-system/anomalies/000114.log rename to packs-system/anomalies/000124.log diff --git a/packs-system/anomalies/000116.ldb b/packs-system/anomalies/000126.ldb similarity index 97% rename from packs-system/anomalies/000116.ldb rename to packs-system/anomalies/000126.ldb index c62bab1b49f89175861975cd0aa36dc8d1cca95b..77f5089f9fb80afca0e7538754bb47735d33f41d 100644 GIT binary patch delta 23 fcmca1mDEG*lf2%Ap+An_6aaQO+e delta 23 fcmca1mDEG#Q$D&Cv?LE 6617 bytes -2026/04/13-14:20:41.272334 7f2a69ffb6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2026/04/13-14:20:41.272481 7f2a69ffb6c0 Delete type=2 #111 -2026/04/13-14:20:41.272658 7f2a69ffb6c0 Delete type=2 #115 -2026/04/13-14:20:41.365704 7f2a69ffb6c0 Manual compaction at level-1 from '!items!null' @ 97 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/04/14-00:55:24.391968 7f6848fec6c0 Recovering log #119 +2026/04/14-00:55:24.406978 7f6848fec6c0 Delete type=3 #117 +2026/04/14-00:55:24.407044 7f6848fec6c0 Delete type=0 #119 +2026/04/14-00:56:01.480723 7f6833fff6c0 Level-0 table #125: started +2026/04/14-00:56:01.483872 7f6833fff6c0 Level-0 table #125: 3524 bytes OK +2026/04/14-00:56:01.489828 7f6833fff6c0 Delete type=0 #123 +2026/04/14-00:56:01.502786 7f6833fff6c0 Manual compaction at level-0 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/04/14-00:56:01.502828 7f6833fff6c0 Manual compaction at level-1 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 105 : 1 +2026/04/14-00:56:01.502835 7f6833fff6c0 Compacting 1@1 + 1@2 files +2026/04/14-00:56:01.506551 7f6833fff6c0 Generated table #126@1: 9 keys, 6617 bytes +2026/04/14-00:56:01.506586 7f6833fff6c0 Compacted 1@1 + 1@2 files => 6617 bytes +2026/04/14-00:56:01.512723 7f6833fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2026/04/14-00:56:01.513072 7f6833fff6c0 Delete type=2 #121 +2026/04/14-00:56:01.513274 7f6833fff6c0 Delete type=2 #125 +2026/04/14-00:56:01.519560 7f6833fff6c0 Manual compaction at level-1 from '!items!null' @ 105 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/anomalies/LOG.old b/packs-system/anomalies/LOG.old index 515a1f8..3eb03fc 100644 --- a/packs-system/anomalies/LOG.old +++ b/packs-system/anomalies/LOG.old @@ -1,15 +1,15 @@ -2026/04/13-13:10:44.750651 7ff581bfd6c0 Recovering log #104 -2026/04/13-13:10:44.797855 7ff581bfd6c0 Delete type=3 #102 -2026/04/13-13:10:44.797919 7ff581bfd6c0 Delete type=0 #104 -2026/04/13-13:10:47.796281 7ff580bfb6c0 Level-0 table #110: started -2026/04/13-13:10:47.824966 7ff580bfb6c0 Level-0 table #110: 3524 bytes OK -2026/04/13-13:10:47.857042 7ff580bfb6c0 Delete type=0 #108 -2026/04/13-13:10:47.973011 7ff580bfb6c0 Manual compaction at level-0 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) -2026/04/13-13:10:47.973057 7ff580bfb6c0 Manual compaction at level-1 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 93 : 1 -2026/04/13-13:10:47.973063 7ff580bfb6c0 Compacting 1@1 + 1@2 files -2026/04/13-13:10:47.995133 7ff580bfb6c0 Generated table #111@1: 9 keys, 6617 bytes -2026/04/13-13:10:47.995159 7ff580bfb6c0 Compacted 1@1 + 1@2 files => 6617 bytes -2026/04/13-13:10:48.030149 7ff580bfb6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2026/04/13-13:10:48.030263 7ff580bfb6c0 Delete type=2 #106 -2026/04/13-13:10:48.030388 7ff580bfb6c0 Delete type=2 #110 -2026/04/13-13:10:48.030511 7ff580bfb6c0 Manual compaction at level-1 from '!items!null' @ 93 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/04/14-00:42:19.950173 7f684a7ef6c0 Recovering log #114 +2026/04/14-00:42:19.961639 7f684a7ef6c0 Delete type=3 #112 +2026/04/14-00:42:19.961720 7f684a7ef6c0 Delete type=0 #114 +2026/04/14-00:50:27.813444 7f6833fff6c0 Level-0 table #120: started +2026/04/14-00:50:27.816594 7f6833fff6c0 Level-0 table #120: 3524 bytes OK +2026/04/14-00:50:27.823812 7f6833fff6c0 Delete type=0 #118 +2026/04/14-00:50:27.836273 7f6833fff6c0 Manual compaction at level-0 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at (end) +2026/04/14-00:50:27.836318 7f6833fff6c0 Manual compaction at level-1 from '!items!anomCommMorts001' @ 72057594037927935 : 1 .. '!items!null' @ 0 : 0; will stop at '!items!null' @ 101 : 1 +2026/04/14-00:50:27.836325 7f6833fff6c0 Compacting 1@1 + 1@2 files +2026/04/14-00:50:27.839513 7f6833fff6c0 Generated table #121@1: 9 keys, 6617 bytes +2026/04/14-00:50:27.839549 7f6833fff6c0 Compacted 1@1 + 1@2 files => 6617 bytes +2026/04/14-00:50:27.846476 7f6833fff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] +2026/04/14-00:50:27.846640 7f6833fff6c0 Delete type=2 #116 +2026/04/14-00:50:27.846851 7f6833fff6c0 Delete type=2 #120 +2026/04/14-00:50:27.853500 7f6833fff6c0 Manual compaction at level-1 from '!items!null' @ 101 : 1 .. '!items!null' @ 0 : 0; will stop at (end) diff --git a/packs-system/anomalies/MANIFEST-000112 b/packs-system/anomalies/MANIFEST-000112 deleted file mode 100644 index 50d69ff3fb8f07ed79e667a3e2ade95d0590a82a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmdlZKVLqZfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfDlSTVCCHMdwXuQVrz zF_r-g*qQQg8p}f^67%wNff{ms^NUJ~4Gat!IU$NrG$ugAPU1h G)LsDJJxIR* literal 0 HcmV?d00001 diff --git a/packs-system/pretires/000025.log b/packs-system/pretires/000033.log similarity index 100% rename from packs-system/pretires/000025.log rename to packs-system/pretires/000033.log diff --git a/packs-system/pretires/CURRENT b/packs-system/pretires/CURRENT index 7fbb623..d95f027 100644 --- a/packs-system/pretires/CURRENT +++ b/packs-system/pretires/CURRENT @@ -1 +1 @@ -MANIFEST-000023 +MANIFEST-000031 diff --git a/packs-system/pretires/LOG b/packs-system/pretires/LOG index 19c80ca..30b472b 100644 --- a/packs-system/pretires/LOG +++ b/packs-system/pretires/LOG @@ -1,8 +1,8 @@ -2026/04/13-13:11:31.193586 7f2a6b7fe6c0 Recovering log #21 -2026/04/13-13:11:31.247393 7f2a6b7fe6c0 Delete type=3 #19 -2026/04/13-13:11:31.247448 7f2a6b7fe6c0 Delete type=0 #21 -2026/04/13-14:20:41.081350 7f2a69ffb6c0 Level-0 table #26: started -2026/04/13-14:20:41.081377 7f2a69ffb6c0 Level-0 table #26: 0 bytes OK -2026/04/13-14:20:41.118613 7f2a69ffb6c0 Delete type=0 #24 -2026/04/13-14:20:41.210913 7f2a69ffb6c0 Manual compaction at level-0 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) -2026/04/13-14:20:41.210940 7f2a69ffb6c0 Manual compaction at level-1 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) +2026/04/14-00:55:24.409141 7f68497ed6c0 Recovering log #29 +2026/04/14-00:55:24.424702 7f68497ed6c0 Delete type=3 #27 +2026/04/14-00:55:24.424755 7f68497ed6c0 Delete type=0 #29 +2026/04/14-00:56:01.473754 7f6833fff6c0 Level-0 table #34: started +2026/04/14-00:56:01.473797 7f6833fff6c0 Level-0 table #34: 0 bytes OK +2026/04/14-00:56:01.480607 7f6833fff6c0 Delete type=0 #32 +2026/04/14-00:56:01.502772 7f6833fff6c0 Manual compaction at level-0 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) +2026/04/14-00:56:01.502817 7f6833fff6c0 Manual compaction at level-1 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) diff --git a/packs-system/pretires/LOG.old b/packs-system/pretires/LOG.old index 50d6cfb..2b438c1 100644 --- a/packs-system/pretires/LOG.old +++ b/packs-system/pretires/LOG.old @@ -1,8 +1,8 @@ -2026/04/13-13:10:44.800502 7ff582bff6c0 Recovering log #16 -2026/04/13-13:10:44.846821 7ff582bff6c0 Delete type=3 #14 -2026/04/13-13:10:44.846886 7ff582bff6c0 Delete type=0 #16 -2026/04/13-13:10:47.902261 7ff580bfb6c0 Level-0 table #22: started -2026/04/13-13:10:47.902285 7ff580bfb6c0 Level-0 table #22: 0 bytes OK -2026/04/13-13:10:47.939594 7ff580bfb6c0 Delete type=0 #20 -2026/04/13-13:10:47.973036 7ff580bfb6c0 Manual compaction at level-0 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) -2026/04/13-13:10:48.030491 7ff580bfb6c0 Manual compaction at level-1 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) +2026/04/14-00:42:19.965653 7f684a7ef6c0 Recovering log #25 +2026/04/14-00:42:19.975753 7f684a7ef6c0 Delete type=3 #23 +2026/04/14-00:42:19.975845 7f684a7ef6c0 Delete type=0 #25 +2026/04/14-00:50:27.823985 7f6833fff6c0 Level-0 table #30: started +2026/04/14-00:50:27.824016 7f6833fff6c0 Level-0 table #30: 0 bytes OK +2026/04/14-00:50:27.829926 7f6833fff6c0 Delete type=0 #28 +2026/04/14-00:50:27.836282 7f6833fff6c0 Manual compaction at level-0 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) +2026/04/14-00:50:27.846965 7f6833fff6c0 Manual compaction at level-1 from '!actors!6RZ6IzJUHm4dB5Ut' @ 72057594037927935 : 1 .. '!folders!MbFQgPdF6Gtbj5AU' @ 0 : 0; will stop at (end) diff --git a/packs-system/pretires/MANIFEST-000023 b/packs-system/pretires/MANIFEST-000031 similarity index 65% rename from packs-system/pretires/MANIFEST-000023 rename to packs-system/pretires/MANIFEST-000031 index 4bd2c689dc6a723c2b7ca45eebd75060938f73d0..a699e50fbe021ff980427cb9ac02bf2705955da9 100644 GIT binary patch delta 37 pcmX@Yc!Y7nGP$T0j}{IFMkWPL24+PT52Hhu_JO#HK&~>22LQnu2v`6B delta 37 pcmX@Yc!Y7nGP%D0sWu!8j7$=o49t=&9&WC0*g#xKAXl2j0|3G;2ekkI diff --git a/packs-system/scenes/000064.log b/packs-system/scenes/000072.log similarity index 100% rename from packs-system/scenes/000064.log rename to packs-system/scenes/000072.log diff --git a/packs-system/scenes/CURRENT b/packs-system/scenes/CURRENT index 5ca571d..bcf1079 100644 --- a/packs-system/scenes/CURRENT +++ b/packs-system/scenes/CURRENT @@ -1 +1 @@ -MANIFEST-000062 +MANIFEST-000070 diff --git a/packs-system/scenes/LOG b/packs-system/scenes/LOG index e94c044..4132912 100644 --- a/packs-system/scenes/LOG +++ b/packs-system/scenes/LOG @@ -1,8 +1,8 @@ -2026/04/13-13:11:31.305113 7f2a6a7fc6c0 Recovering log #60 -2026/04/13-13:11:31.358709 7f2a6a7fc6c0 Delete type=3 #58 -2026/04/13-13:11:31.358775 7f2a6a7fc6c0 Delete type=0 #60 -2026/04/13-14:20:41.045418 7f2a69ffb6c0 Level-0 table #65: started -2026/04/13-14:20:41.045487 7f2a69ffb6c0 Level-0 table #65: 0 bytes OK -2026/04/13-14:20:41.081154 7f2a69ffb6c0 Delete type=0 #63 -2026/04/13-14:20:41.210899 7f2a69ffb6c0 Manual compaction at level-0 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) -2026/04/13-14:20:41.210948 7f2a69ffb6c0 Manual compaction at level-1 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) +2026/04/14-00:55:24.444791 7f684a7ef6c0 Recovering log #68 +2026/04/14-00:55:24.460229 7f684a7ef6c0 Delete type=3 #66 +2026/04/14-00:55:24.460280 7f684a7ef6c0 Delete type=0 #68 +2026/04/14-00:56:01.496164 7f6833fff6c0 Level-0 table #73: started +2026/04/14-00:56:01.496194 7f6833fff6c0 Level-0 table #73: 0 bytes OK +2026/04/14-00:56:01.502678 7f6833fff6c0 Delete type=0 #71 +2026/04/14-00:56:01.502807 7f6833fff6c0 Manual compaction at level-0 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) +2026/04/14-00:56:01.513358 7f6833fff6c0 Manual compaction at level-1 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) diff --git a/packs-system/scenes/LOG.old b/packs-system/scenes/LOG.old index 8db2652..709df8c 100644 --- a/packs-system/scenes/LOG.old +++ b/packs-system/scenes/LOG.old @@ -1,8 +1,8 @@ -2026/04/13-13:10:44.916572 7ff5813fc6c0 Recovering log #55 -2026/04/13-13:10:44.960340 7ff5813fc6c0 Delete type=3 #53 -2026/04/13-13:10:44.960396 7ff5813fc6c0 Delete type=0 #55 -2026/04/13-13:10:47.857212 7ff580bfb6c0 Level-0 table #61: started -2026/04/13-13:10:47.857237 7ff580bfb6c0 Level-0 table #61: 0 bytes OK -2026/04/13-13:10:47.902098 7ff580bfb6c0 Delete type=0 #59 -2026/04/13-13:10:47.973025 7ff580bfb6c0 Manual compaction at level-0 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) -2026/04/13-13:10:48.030475 7ff580bfb6c0 Manual compaction at level-1 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) +2026/04/14-00:42:19.992614 7f684a7ef6c0 Recovering log #64 +2026/04/14-00:42:20.003193 7f684a7ef6c0 Delete type=3 #62 +2026/04/14-00:42:20.003267 7f684a7ef6c0 Delete type=0 #64 +2026/04/14-00:50:27.830098 7f6833fff6c0 Level-0 table #69: started +2026/04/14-00:50:27.830137 7f6833fff6c0 Level-0 table #69: 0 bytes OK +2026/04/14-00:50:27.836136 7f6833fff6c0 Delete type=0 #67 +2026/04/14-00:50:27.836294 7f6833fff6c0 Manual compaction at level-0 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) +2026/04/14-00:50:27.846944 7f6833fff6c0 Manual compaction at level-1 from '!scenes!Jr7lGxYk2RETlXRv' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!Jr7lGxYk2RETlXRv.6urwC5SVcou6UOAG.CTg4yBE12iMee1RU.BYT1CrA37R3Og0nu' @ 0 : 0; will stop at (end) diff --git a/packs-system/scenes/MANIFEST-000062 b/packs-system/scenes/MANIFEST-000070 similarity index 82% rename from packs-system/scenes/MANIFEST-000062 rename to packs-system/scenes/MANIFEST-000070 index ea8c1b885635dc8a4c32b963871af733229a0d44..064e64d9339dbc4c8aced8c01eb3d495541681d0 100644 GIT binary patch delta 38 qcmdnaw4G^#B%_?@0p&st21X`#P6lQV7CrCl6DNbX9zd=aiyi>3Z3n#o delta 38 qcmdnaw4G^#B%@qY<)v^A21X`(P6lQN7QLj`OC&&C2O!spMGpYKq6ixR diff --git a/templates/roll-dialog.hbs b/templates/roll-dialog.hbs index 089fb97..f7d0dbc 100644 --- a/templates/roll-dialog.hbs +++ b/templates/roll-dialog.hbs @@ -220,9 +220,9 @@