From cb60bb60278adafd860fb86b0373de3692bdd3d9 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Wed, 16 Apr 2025 08:33:18 +0200 Subject: [PATCH] Fix lethargy/cast again --- module/applications/combat.mjs | 15 ++++ module/documents/roll.mjs | 79 ++++++++++++------ .../lf-equipment/{000205.log => 000209.log} | 0 packs-system/lf-equipment/CURRENT | 2 +- packs-system/lf-equipment/LOG | 16 ++-- packs-system/lf-equipment/LOG.old | 16 ++-- .../{MANIFEST-000203 => MANIFEST-000207} | Bin 176 -> 176 bytes .../lf-gifts/{000204.log => 000208.log} | 0 packs-system/lf-gifts/CURRENT | 2 +- packs-system/lf-gifts/LOG | 16 ++-- packs-system/lf-gifts/LOG.old | 16 ++-- packs-system/lf-gifts/MANIFEST-000202 | Bin 140 -> 0 bytes packs-system/lf-gifts/MANIFEST-000206 | Bin 0 -> 140 bytes .../lf-skills/{000204.log => 000208.log} | 0 packs-system/lf-skills/CURRENT | 2 +- packs-system/lf-skills/LOG | 16 ++-- packs-system/lf-skills/LOG.old | 16 ++-- packs-system/lf-skills/MANIFEST-000202 | Bin 141 -> 0 bytes packs-system/lf-skills/MANIFEST-000206 | Bin 0 -> 141 bytes .../{000204.log => 000208.log} | 0 packs-system/lf-vulnerabilities/CURRENT | 2 +- packs-system/lf-vulnerabilities/LOG | 16 ++-- packs-system/lf-vulnerabilities/LOG.old | 16 ++-- .../{MANIFEST-000202 => MANIFEST-000206} | Bin 141 -> 141 bytes 24 files changed, 136 insertions(+), 94 deletions(-) rename packs-system/lf-equipment/{000205.log => 000209.log} (100%) rename packs-system/lf-equipment/{MANIFEST-000203 => MANIFEST-000207} (72%) rename packs-system/lf-gifts/{000204.log => 000208.log} (100%) delete mode 100644 packs-system/lf-gifts/MANIFEST-000202 create mode 100644 packs-system/lf-gifts/MANIFEST-000206 rename packs-system/lf-skills/{000204.log => 000208.log} (100%) delete mode 100644 packs-system/lf-skills/MANIFEST-000202 create mode 100644 packs-system/lf-skills/MANIFEST-000206 rename packs-system/lf-vulnerabilities/{000204.log => 000208.log} (100%) rename packs-system/lf-vulnerabilities/{MANIFEST-000202 => MANIFEST-000206} (71%) diff --git a/module/applications/combat.mjs b/module/applications/combat.mjs index 612346f..2f87ff1 100644 --- a/module/applications/combat.mjs +++ b/module/applications/combat.mjs @@ -93,6 +93,21 @@ export class LethalFantasyCombat extends Combat { c.update({ 'system.progressionCount': 0 }); } + setCasting(cId) { + let c = this.combatants.get(cId); + c.setFlag(SYSTEM.id, "casting", true); + } + + resetCasting(cId) { + let c = this.combatants.get(cId); + c.setFlag(SYSTEM.id, "casting", false); + } + + isCasting(cId) { + let c = this.combatants.get(cId); + return c.getFlag(SYSTEM.id, "casting"); + } + async nextTurn() { console.log("NEXT TURN"); diff --git a/module/documents/roll.mjs b/module/documents/roll.mjs index 5dc9e3c..9f4cc1a 100644 --- a/module/documents/roll.mjs +++ b/module/documents/roll.mjs @@ -636,6 +636,13 @@ export default class LethalFantasyRoll extends Roll { return output }, }, + { + action: "cast", + label: "Cast a spell", + callback: (event, button, dialog) => { + return "casting" + }, + }, { action: "cancel", label: "Other action, no progression dice", @@ -648,15 +655,26 @@ export default class LethalFantasyRoll extends Roll { }) console.log("RollContext", dialogContext,rollContext) - if (rollContext === null || !rollContext?.progressionDiceId) { - let combat = game.combats.get(options.combatId) - let combatant = combat.combatants.get(options.combatantId) - combatant.update({ 'system.progressionCount': 0 }) + let combat = game.combats.get(options.combatId) + let actor = game.actors.get(options.actorId) + + if ( rollContext === "casting") { + combat.setCasting(options.combatantId) + let message = `Starting casting a spell !` + ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) }) return } + if (rollContext === null || !rollContext?.progressionDiceId) { + c.resetCasting(options.combatantId) + combat.resetProgression(options.combatantId) + let message = `${actor.name} : Other action, progression reset` + ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) }) + return + } + + // Get the weapons from the actor items - let actor = game.actors.get(options.actorId) let rangedMode let searchId = rollContext.progressionDiceId if ( searchId.match("simpleAim")) { @@ -676,27 +694,36 @@ export default class LethalFantasyRoll extends Roll { searchId = searchId.replace("spell", "") let spell = actor.items.find(i => i.type === "spell" && i.id === searchId) let dice = LethalFantasyUtils.getLethargyDice(spell.system.level) - if (options.rollProgressionCount <= spell.system.castingTime ) { - let message = `Spell casting time : ${spell.name}, count : ${options.rollProgressionCount}/${spell.system.castingTime}` - ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) }) - return - } - let formula = dice - let roll = new Roll(formula) - await roll.evaluate() - let max = roll.dice[0].faces - 1 - let toCompare = Math.min(options.rollProgressionCount-spell.system.castingTime, max) - let message - if (roll.total > toCompare) { - message = `Spell Lethargy ongoing ... (${roll.total}/${toCompare}, spell level ${spell.system.level})` - } else { - let combat = game.combats.get(options.combatId) - combat.resetProgression(options.combatantId) - message = `Spell Lethargy ended ! (${roll.total}/${toCompare}, spell level ${spell.system.level})` - } - let msg = await roll.toMessage({ flavor: message }, { rollMode: rollContext.visibility }) - if (game?.dice3d) { - await game.dice3d.waitFor3DAnimationByMessageID(msg.id) + if (combat.isCasting(options.combatantId)) { + if (options.rollProgressionCount <= spell.system.castingTime ) { + let message = `Spell casting time : ${spell.name}, count : ${options.rollProgressionCount}/${spell.system.castingTime}` + ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) }) + return + } + if (options.rollProgressionCount > spell.system.castingTime) { + let message = `Spell ${spell.name} has been cast !` + ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: actor }) }) + combat.resetCasting(options.combatantId) + combat.resetProgression(options.combatantId) + return + } + } else{ + let formula = dice + let roll = new Roll(formula) + await roll.evaluate() + let max = roll.dice[0].faces - 1 + let toCompare = Math.min(options.rollProgressionCount, max) + let message + if (roll.total > toCompare) { + message = `Spell Lethargy ongoing ... (${roll.total}/${toCompare}, spell level ${spell.system.level})` + } else { + combat.resetProgression(options.combatantId) + message = `Spell Lethargy ended ! (${roll.total}/${toCompare}, spell level ${spell.system.level})
${actor.name} can return to normal actions.` + } + let msg = await roll.toMessage({ flavor: message }, { rollMode: rollContext.visibility }) + if (game?.dice3d) { + await game.dice3d.waitFor3DAnimationByMessageID(msg.id) + } } return } diff --git a/packs-system/lf-equipment/000205.log b/packs-system/lf-equipment/000209.log similarity index 100% rename from packs-system/lf-equipment/000205.log rename to packs-system/lf-equipment/000209.log diff --git a/packs-system/lf-equipment/CURRENT b/packs-system/lf-equipment/CURRENT index 183d782..c692fd1 100644 --- a/packs-system/lf-equipment/CURRENT +++ b/packs-system/lf-equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000203 +MANIFEST-000207 diff --git a/packs-system/lf-equipment/LOG b/packs-system/lf-equipment/LOG index 4ca40b4..e4b75c2 100644 --- a/packs-system/lf-equipment/LOG +++ b/packs-system/lf-equipment/LOG @@ -1,8 +1,8 @@ -2025/04/15-20:28:27.909693 7f5c827fc6c0 Recovering log #201 -2025/04/15-20:28:27.920405 7f5c827fc6c0 Delete type=3 #199 -2025/04/15-20:28:27.920498 7f5c827fc6c0 Delete type=0 #201 -2025/04/15-20:29:29.823399 7f5c81bff6c0 Level-0 table #206: started -2025/04/15-20:29:29.823453 7f5c81bff6c0 Level-0 table #206: 0 bytes OK -2025/04/15-20:29:29.855733 7f5c81bff6c0 Delete type=0 #204 -2025/04/15-20:29:29.869881 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) -2025/04/15-20:29:29.899952 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/16-08:18:09.103824 7f5c83fff6c0 Recovering log #205 +2025/04/16-08:18:09.114815 7f5c83fff6c0 Delete type=3 #203 +2025/04/16-08:18:09.114932 7f5c83fff6c0 Delete type=0 #205 +2025/04/16-08:32:26.394277 7f5c81bff6c0 Level-0 table #210: started +2025/04/16-08:32:26.394334 7f5c81bff6c0 Level-0 table #210: 0 bytes OK +2025/04/16-08:32:26.400532 7f5c81bff6c0 Delete type=0 #208 +2025/04/16-08:32:26.400730 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/16-08:32:26.400790 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/LOG.old b/packs-system/lf-equipment/LOG.old index fa7c909..4ca40b4 100644 --- a/packs-system/lf-equipment/LOG.old +++ b/packs-system/lf-equipment/LOG.old @@ -1,8 +1,8 @@ -2025/04/15-20:12:44.848433 7f5c83fff6c0 Recovering log #197 -2025/04/15-20:12:44.863682 7f5c83fff6c0 Delete type=3 #195 -2025/04/15-20:12:44.863747 7f5c83fff6c0 Delete type=0 #197 -2025/04/15-20:17:42.198359 7f5c81bff6c0 Level-0 table #202: started -2025/04/15-20:17:42.198471 7f5c81bff6c0 Level-0 table #202: 0 bytes OK -2025/04/15-20:17:42.205479 7f5c81bff6c0 Delete type=0 #200 -2025/04/15-20:17:42.225325 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) -2025/04/15-20:17:42.225430 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/15-20:28:27.909693 7f5c827fc6c0 Recovering log #201 +2025/04/15-20:28:27.920405 7f5c827fc6c0 Delete type=3 #199 +2025/04/15-20:28:27.920498 7f5c827fc6c0 Delete type=0 #201 +2025/04/15-20:29:29.823399 7f5c81bff6c0 Level-0 table #206: started +2025/04/15-20:29:29.823453 7f5c81bff6c0 Level-0 table #206: 0 bytes OK +2025/04/15-20:29:29.855733 7f5c81bff6c0 Delete type=0 #204 +2025/04/15-20:29:29.869881 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/15-20:29:29.899952 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/MANIFEST-000203 b/packs-system/lf-equipment/MANIFEST-000207 similarity index 72% rename from packs-system/lf-equipment/MANIFEST-000203 rename to packs-system/lf-equipment/MANIFEST-000207 index e63e2ff37826566b50da631090d506ddc149170b..3d9dc7f64d83c69ecd2a8fec1691153ec4f2403b 100644 GIT binary patch delta 41 scmdnMxPfs(pVEtYpP0EA7@00GaxySqWMm1e=55dg30wpTTm}jN00j>Uf&c&j delta 41 scmdnMxPfs(pHh&UPYV|VBhwj1P6p<)j4WXbcidY85;zMII1dy60Qpr54FCWD diff --git a/packs-system/lf-gifts/000204.log b/packs-system/lf-gifts/000208.log similarity index 100% rename from packs-system/lf-gifts/000204.log rename to packs-system/lf-gifts/000208.log diff --git a/packs-system/lf-gifts/CURRENT b/packs-system/lf-gifts/CURRENT index 5639343..b04a015 100644 --- a/packs-system/lf-gifts/CURRENT +++ b/packs-system/lf-gifts/CURRENT @@ -1 +1 @@ -MANIFEST-000202 +MANIFEST-000206 diff --git a/packs-system/lf-gifts/LOG b/packs-system/lf-gifts/LOG index 457df4c..13b6914 100644 --- a/packs-system/lf-gifts/LOG +++ b/packs-system/lf-gifts/LOG @@ -1,8 +1,8 @@ -2025/04/15-20:28:27.924832 7f5c83fff6c0 Recovering log #200 -2025/04/15-20:28:27.935942 7f5c83fff6c0 Delete type=3 #198 -2025/04/15-20:28:27.936056 7f5c83fff6c0 Delete type=0 #200 -2025/04/15-20:29:29.646786 7f5c81bff6c0 Level-0 table #205: started -2025/04/15-20:29:29.646851 7f5c81bff6c0 Level-0 table #205: 0 bytes OK -2025/04/15-20:29:29.673575 7f5c81bff6c0 Delete type=0 #203 -2025/04/15-20:29:29.759542 7f5c81bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/04/15-20:29:29.759654 7f5c81bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/04/16-08:18:09.118755 7f5c82ffd6c0 Recovering log #204 +2025/04/16-08:18:09.129516 7f5c82ffd6c0 Delete type=3 #202 +2025/04/16-08:18:09.129610 7f5c82ffd6c0 Delete type=0 #204 +2025/04/16-08:32:26.380608 7f5c81bff6c0 Level-0 table #209: started +2025/04/16-08:32:26.380651 7f5c81bff6c0 Level-0 table #209: 0 bytes OK +2025/04/16-08:32:26.386680 7f5c81bff6c0 Delete type=0 #207 +2025/04/16-08:32:26.400698 7f5c81bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/04/16-08:32:26.400776 7f5c81bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-gifts/LOG.old b/packs-system/lf-gifts/LOG.old index add613c..457df4c 100644 --- a/packs-system/lf-gifts/LOG.old +++ b/packs-system/lf-gifts/LOG.old @@ -1,8 +1,8 @@ -2025/04/15-20:12:44.869154 7f5c82ffd6c0 Recovering log #196 -2025/04/15-20:12:44.884227 7f5c82ffd6c0 Delete type=3 #194 -2025/04/15-20:12:44.884371 7f5c82ffd6c0 Delete type=0 #196 -2025/04/15-20:17:42.205662 7f5c81bff6c0 Level-0 table #201: started -2025/04/15-20:17:42.205704 7f5c81bff6c0 Level-0 table #201: 0 bytes OK -2025/04/15-20:17:42.212053 7f5c81bff6c0 Delete type=0 #199 -2025/04/15-20:17:42.225357 7f5c81bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/04/15-20:17:42.225453 7f5c81bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/04/15-20:28:27.924832 7f5c83fff6c0 Recovering log #200 +2025/04/15-20:28:27.935942 7f5c83fff6c0 Delete type=3 #198 +2025/04/15-20:28:27.936056 7f5c83fff6c0 Delete type=0 #200 +2025/04/15-20:29:29.646786 7f5c81bff6c0 Level-0 table #205: started +2025/04/15-20:29:29.646851 7f5c81bff6c0 Level-0 table #205: 0 bytes OK +2025/04/15-20:29:29.673575 7f5c81bff6c0 Delete type=0 #203 +2025/04/15-20:29:29.759542 7f5c81bff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/04/15-20:29:29.759654 7f5c81bff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-gifts/MANIFEST-000202 b/packs-system/lf-gifts/MANIFEST-000202 deleted file mode 100644 index 4a2048b65eb940f93fe9e950c4bdcfd4e6472f9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmZQ=x?Pvdz{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&PL2x}i)_F)cqQCAFwn zu`(dsy{y8+E6K&rBP=*Cl2L&H4CECvOHy--6|1t!+;g&ue6mf0i!+=pT^Ly)^3rQg fedJ`pgoS$2eSd>_jU&PL2x}i)_F)cqQCAFwn zu`(dsy{y8+E6K&rBP=*Cl2L&H4CECvOHy--6|1t!+;g&ue6mf0i!+=pT^Ly)@*C%W fUeCqA$aJ2OlY#jHBa6bn6H(hi0vA96mw*BQK%6NJ literal 0 HcmV?d00001 diff --git a/packs-system/lf-skills/000204.log b/packs-system/lf-skills/000208.log similarity index 100% rename from packs-system/lf-skills/000204.log rename to packs-system/lf-skills/000208.log diff --git a/packs-system/lf-skills/CURRENT b/packs-system/lf-skills/CURRENT index 5639343..b04a015 100644 --- a/packs-system/lf-skills/CURRENT +++ b/packs-system/lf-skills/CURRENT @@ -1 +1 @@ -MANIFEST-000202 +MANIFEST-000206 diff --git a/packs-system/lf-skills/LOG b/packs-system/lf-skills/LOG index 6978d65..585c1e4 100644 --- a/packs-system/lf-skills/LOG +++ b/packs-system/lf-skills/LOG @@ -1,8 +1,8 @@ -2025/04/15-20:28:27.891776 7f5c82ffd6c0 Recovering log #200 -2025/04/15-20:28:27.903632 7f5c82ffd6c0 Delete type=3 #198 -2025/04/15-20:28:27.903749 7f5c82ffd6c0 Delete type=0 #200 -2025/04/15-20:29:29.673732 7f5c81bff6c0 Level-0 table #205: started -2025/04/15-20:29:29.673787 7f5c81bff6c0 Level-0 table #205: 0 bytes OK -2025/04/15-20:29:29.697981 7f5c81bff6c0 Delete type=0 #203 -2025/04/15-20:29:29.759583 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/04/15-20:29:29.759670 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/16-08:18:09.087776 7f5c837fe6c0 Recovering log #204 +2025/04/16-08:18:09.098866 7f5c837fe6c0 Delete type=3 #202 +2025/04/16-08:18:09.098959 7f5c837fe6c0 Delete type=0 #204 +2025/04/16-08:32:26.386837 7f5c81bff6c0 Level-0 table #209: started +2025/04/16-08:32:26.386877 7f5c81bff6c0 Level-0 table #209: 0 bytes OK +2025/04/16-08:32:26.394093 7f5c81bff6c0 Delete type=0 #207 +2025/04/16-08:32:26.400713 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/16-08:32:26.400808 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-skills/LOG.old b/packs-system/lf-skills/LOG.old index d5b94af..6978d65 100644 --- a/packs-system/lf-skills/LOG.old +++ b/packs-system/lf-skills/LOG.old @@ -1,8 +1,8 @@ -2025/04/15-20:12:44.823825 7f5c827fc6c0 Recovering log #196 -2025/04/15-20:12:44.842141 7f5c827fc6c0 Delete type=3 #194 -2025/04/15-20:12:44.842235 7f5c827fc6c0 Delete type=0 #196 -2025/04/15-20:17:42.218838 7f5c81bff6c0 Level-0 table #201: started -2025/04/15-20:17:42.218876 7f5c81bff6c0 Level-0 table #201: 0 bytes OK -2025/04/15-20:17:42.225069 7f5c81bff6c0 Delete type=0 #199 -2025/04/15-20:17:42.225407 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/04/15-20:17:42.225476 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/15-20:28:27.891776 7f5c82ffd6c0 Recovering log #200 +2025/04/15-20:28:27.903632 7f5c82ffd6c0 Delete type=3 #198 +2025/04/15-20:28:27.903749 7f5c82ffd6c0 Delete type=0 #200 +2025/04/15-20:29:29.673732 7f5c81bff6c0 Level-0 table #205: started +2025/04/15-20:29:29.673787 7f5c81bff6c0 Level-0 table #205: 0 bytes OK +2025/04/15-20:29:29.697981 7f5c81bff6c0 Delete type=0 #203 +2025/04/15-20:29:29.759583 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/15-20:29:29.759670 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-skills/MANIFEST-000202 b/packs-system/lf-skills/MANIFEST-000202 deleted file mode 100644 index 124ccbe9c653715479d2a8a0fa3374e3bd6b6fd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmYdufBGqffss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfd5@L?mnqGDQpPD*M~ zv7&jFg@?IIQm#{yWoT8RQ3PW$0~p9FW|pMp7AsbjSQML^nwg{)82TidL<{9 literal 0 HcmV?d00001 diff --git a/packs-system/lf-vulnerabilities/000204.log b/packs-system/lf-vulnerabilities/000208.log similarity index 100% rename from packs-system/lf-vulnerabilities/000204.log rename to packs-system/lf-vulnerabilities/000208.log diff --git a/packs-system/lf-vulnerabilities/CURRENT b/packs-system/lf-vulnerabilities/CURRENT index 5639343..b04a015 100644 --- a/packs-system/lf-vulnerabilities/CURRENT +++ b/packs-system/lf-vulnerabilities/CURRENT @@ -1 +1 @@ -MANIFEST-000202 +MANIFEST-000206 diff --git a/packs-system/lf-vulnerabilities/LOG b/packs-system/lf-vulnerabilities/LOG index 303ec44..4aa1d49 100644 --- a/packs-system/lf-vulnerabilities/LOG +++ b/packs-system/lf-vulnerabilities/LOG @@ -1,8 +1,8 @@ -2025/04/15-20:28:27.940175 7f5c837fe6c0 Recovering log #200 -2025/04/15-20:28:27.952060 7f5c837fe6c0 Delete type=3 #198 -2025/04/15-20:28:27.952156 7f5c837fe6c0 Delete type=0 #200 -2025/04/15-20:29:29.698145 7f5c81bff6c0 Level-0 table #205: started -2025/04/15-20:29:29.698204 7f5c81bff6c0 Level-0 table #205: 0 bytes OK -2025/04/15-20:29:29.733235 7f5c81bff6c0 Delete type=0 #203 -2025/04/15-20:29:29.759616 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/04/15-20:29:29.759685 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/16-08:18:09.132463 7f5c827fc6c0 Recovering log #204 +2025/04/16-08:18:09.143030 7f5c827fc6c0 Delete type=3 #202 +2025/04/16-08:18:09.143156 7f5c827fc6c0 Delete type=0 #204 +2025/04/16-08:32:26.374134 7f5c81bff6c0 Level-0 table #209: started +2025/04/16-08:32:26.374198 7f5c81bff6c0 Level-0 table #209: 0 bytes OK +2025/04/16-08:32:26.380413 7f5c81bff6c0 Delete type=0 #207 +2025/04/16-08:32:26.400678 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/16-08:32:26.400747 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-vulnerabilities/LOG.old b/packs-system/lf-vulnerabilities/LOG.old index 97bd11c..303ec44 100644 --- a/packs-system/lf-vulnerabilities/LOG.old +++ b/packs-system/lf-vulnerabilities/LOG.old @@ -1,8 +1,8 @@ -2025/04/15-20:12:44.888845 7f5c837fe6c0 Recovering log #196 -2025/04/15-20:12:44.908246 7f5c837fe6c0 Delete type=3 #194 -2025/04/15-20:12:44.908316 7f5c837fe6c0 Delete type=0 #196 -2025/04/15-20:17:42.212289 7f5c81bff6c0 Level-0 table #201: started -2025/04/15-20:17:42.212400 7f5c81bff6c0 Level-0 table #201: 0 bytes OK -2025/04/15-20:17:42.218709 7f5c81bff6c0 Delete type=0 #199 -2025/04/15-20:17:42.225383 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/04/15-20:17:42.225497 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/15-20:28:27.940175 7f5c837fe6c0 Recovering log #200 +2025/04/15-20:28:27.952060 7f5c837fe6c0 Delete type=3 #198 +2025/04/15-20:28:27.952156 7f5c837fe6c0 Delete type=0 #200 +2025/04/15-20:29:29.698145 7f5c81bff6c0 Level-0 table #205: started +2025/04/15-20:29:29.698204 7f5c81bff6c0 Level-0 table #205: 0 bytes OK +2025/04/15-20:29:29.733235 7f5c81bff6c0 Delete type=0 #203 +2025/04/15-20:29:29.759616 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/15-20:29:29.759685 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-vulnerabilities/MANIFEST-000202 b/packs-system/lf-vulnerabilities/MANIFEST-000206 similarity index 71% rename from packs-system/lf-vulnerabilities/MANIFEST-000202 rename to packs-system/lf-vulnerabilities/MANIFEST-000206 index 6dc0695691ff5672d11396aee778b2cef82c6575..17f943be4339b8c9a98c205f765e6a64b0f8e547 100644 GIT binary patch delta 41 rcmeBW>}8ygtyExTx`c~?k?A}mCj;{ZMiv=+ff>6%0vA96mw*BQ)b|M$ delta 41 rcmeBW>}8ygt#nI;;~5tNBhzU{P6p;Pj4U!wx0qRj1kQj2&H)7g>NyG5