From 4b087fc9d81e1f2679ab067f3c98be1810306229 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Mon, 21 Apr 2025 17:40:43 +0200 Subject: [PATCH] Fix actions again --- lang/en.json | 2 +- module/documents/actor.mjs | 1 + module/documents/roll.mjs | 56 +++++++++++------- .../lf-equipment/{000217.log => 000221.log} | 0 packs-system/lf-equipment/CURRENT | 2 +- packs-system/lf-equipment/LOG | 16 ++--- packs-system/lf-equipment/LOG.old | 16 ++--- .../{MANIFEST-000215 => MANIFEST-000219} | Bin 176 -> 176 bytes .../lf-gifts/{000216.log => 000220.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-000214 | Bin 140 -> 0 bytes packs-system/lf-gifts/MANIFEST-000218 | Bin 0 -> 140 bytes .../lf-skills/{000216.log => 000220.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-000214 | Bin 141 -> 0 bytes packs-system/lf-skills/MANIFEST-000218 | Bin 0 -> 141 bytes .../{000216.log => 000220.log} | 0 packs-system/lf-vulnerabilities/CURRENT | 2 +- packs-system/lf-vulnerabilities/LOG | 16 ++--- packs-system/lf-vulnerabilities/LOG.old | 16 ++--- .../{MANIFEST-000214 => MANIFEST-000218} | Bin 141 -> 141 bytes 25 files changed, 105 insertions(+), 90 deletions(-) rename packs-system/lf-equipment/{000217.log => 000221.log} (100%) rename packs-system/lf-equipment/{MANIFEST-000215 => MANIFEST-000219} (72%) rename packs-system/lf-gifts/{000216.log => 000220.log} (100%) delete mode 100644 packs-system/lf-gifts/MANIFEST-000214 create mode 100644 packs-system/lf-gifts/MANIFEST-000218 rename packs-system/lf-skills/{000216.log => 000220.log} (100%) delete mode 100644 packs-system/lf-skills/MANIFEST-000214 create mode 100644 packs-system/lf-skills/MANIFEST-000218 rename packs-system/lf-vulnerabilities/{000216.log => 000220.log} (100%) rename packs-system/lf-vulnerabilities/{MANIFEST-000214 => MANIFEST-000218} (71%) diff --git a/lang/en.json b/lang/en.json index 7bd6632..6c00772 100644 --- a/lang/en.json +++ b/lang/en.json @@ -488,7 +488,7 @@ "rollFromWeapon": "Roll from an equipped weapon", "rollTypeNotFound": "Roll type not found", "skillNotFound": "Skill not found", - "messageProgressionOK": "{name} can perform a new action !", + "messageProgressionOK": "{name} can perform his action !", "messageLethargyOK": "Lethargy ended.
{name} can perform a new action !", "messageLethargyKO": "Lethargy stil ongoing ...", "messageProgressionKO": "{name} can't attack this second.", diff --git a/module/documents/actor.mjs b/module/documents/actor.mjs index 0e2a2f1..b702b3e 100644 --- a/module/documents/actor.mjs +++ b/module/documents/actor.mjs @@ -69,6 +69,7 @@ export default class LethalFantasyActor extends Actor { } async prepareRoll(rollType, rollKey, rollDice ) { + console.log("Preparing roll", rollType, rollKey, rollDice) let rollTarget switch (rollType) { case "granted": diff --git a/module/documents/roll.mjs b/module/documents/roll.mjs index 905c03f..95ebafe 100644 --- a/module/documents/roll.mjs +++ b/module/documents/roll.mjs @@ -221,8 +221,8 @@ export default class LethalFantasyRoll extends Roll { hasChangeDice = false options.rollTarget.value = options.rollTarget.actorModifiers.levelSpellModifier + options.rollTarget.actorModifiers.intSpellModifier options.rollTarget.charModifier = options.rollTarget.actorModifiers.intSpellModifier - hasStaticModifier = options.rollType === "spell-power" - hasModifier = options.rollType !== "spell-attack" + hasStaticModifier = true // options.rollType === "spell-power" + hasModifier = true //options.rollType !== "spell-attack" options.rollTarget.staticModifier = options.rollTarget.actorLevel } else if (options.rollType === "miracle" || options.rollType === "miracle-attack" || options.rollType === "miracle-power") { @@ -234,8 +234,8 @@ export default class LethalFantasyRoll extends Roll { hasChangeDice = false options.rollTarget.value = options.rollTarget.actorModifiers.levelMiracleModifier + options.rollTarget.actorModifiers.chaMiracleModifier options.rollTarget.charModifier = options.rollTarget.actorModifiers.chaMiracleModifier - hasStaticModifier = options.rollType === "spell-power" - hasModifier = options.rollType !== "miracle-attack" + hasStaticModifier = true // options.rollType === "spell-power" + hasModifier = true // options.rollType !== "miracle-attack" options.rollTarget.staticModifier = options.rollTarget.actorLevel } else if (options.rollType === "shield-roll") { @@ -373,6 +373,7 @@ export default class LethalFantasyRoll extends Roll { if (hasStaticModifier) { modifierFormula += ` + ${options.rollTarget.staticModifier}` } + modifierFormula += ` + ${options.rollTarget.charModifier}` let sign = fullModifier < 0 ? "-" : "+" if (hasExplode) { titleFormula = `${dice}E ${sign} ${modifierFormula}` @@ -640,11 +641,15 @@ export default class LethalFantasyRoll extends Roll { }) } else if (currentAction.type === "spell" || currentAction.type === "miracle") { let label = "" - if ( currentAction.castingDone) { - label = "Roll lethargy dice" - } else { + if ( currentAction.spellStatus === "castingTime") { label = "Wait casting time" } + if ( currentAction.spellStatus === "toBeCasted") { + label = "Cast spell/miracle" + } + if ( currentAction.spellStatus === "lethargy") { + label = "Roll lethargy dice" + } buttons.push({ action: "roll", label: label, @@ -675,7 +680,7 @@ export default class LethalFantasyRoll extends Roll { } }) - const rollContext = await foundry.applications.api.DialogV2.wait({ + let rollContext = await foundry.applications.api.DialogV2.wait({ window: { title: "Combat Action Dialog" }, classes: ["lethalfantasy"], content, @@ -715,34 +720,45 @@ export default class LethalFantasyRoll extends Roll { actionItem.progressionCount = 1 actionItem.rangedMode = rangedMode actionItem.castingTime = 1 - actionItem.castingDone = false + actionItem.spellStatus = "castingTime" // Set the flag on the combatant await combatant.setFlag(SYSTEM.id, "currentAction", actionItem) - let message = `${combatant.name} action : ${selectedItem.name}` + let message = `${combatant.name} action : ${selectedItem.name}, start rolling progression dice` ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: combatant.actor }) }) - - combatant.actor.prepareRoll(actionItem.type === "weapon" ? "weapon-attack" : "spell-attack", selectedChoice) - return + rollContext = (actionItem.type == "weapon") ? "rollProgressionDice" : "rollLethargyDice" // Set the roll context to rollProgressionDice + currentAction = actionItem } if (currentAction) { if (rollContext === "rollLethargyDice") { - if ( !currentAction.castingDone) { - if ( currentAction.castingTime <= currentAction.system.castingTime) { + if ( currentAction.spellStatus === "castingTime") { + if ( currentAction.castingTime < currentAction.system.castingTime) { let message = `Casting time : ${currentAction.name}, count : ${currentAction.castingTime}/${currentAction.system.castingTime}` ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: combatant.actor }) }) currentAction.castingTime += 1 await combatant.setFlag(SYSTEM.id, "currentAction", foundry.utils.duplicate(currentAction)) return } else { - let message = `Spell ${currentAction.name} has ben casted !` + let message = `Spell ${currentAction.name} ready to be cast on next second !` ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: combatant.actor }) }) currentAction.castingTime = 1 - currentAction.castingDone = true + currentAction.spellStatus = "toBeCasted" await combatant.setFlag(SYSTEM.id, "currentAction", foundry.utils.duplicate(currentAction)) return } - } else { + } + if ( currentAction.spellStatus === "toBeCasted") { + combatant.actor.prepareRoll( (currentAction.type === "spell") ? "spell-attack" : "miracle-attack" , currentAction._id) + if (currentAction.type === "spell") { + currentAction.spellStatus = "lethargy" + await combatant.setFlag(SYSTEM.id, "currentAction", foundry.utils.duplicate(currentAction)) + } else { + // No lethargy for miracle + await combatant.setFlag(SYSTEM.id, "currentAction", "") + } + return + } + if ( currentAction.spellStatus === "lethargy") { // Roll lethargy dice let dice = LethalFantasyUtils.getLethargyDice(currentAction.system.level) let roll = new Roll(dice) @@ -810,10 +826,8 @@ export default class LethalFantasyRoll extends Roll { // Notify that the player can act now with a chat message let message = game.i18n.format("LETHALFANTASY.Notifications.messageProgressionOK", { isMonster, name: combatant.actor.name, weapon: currentAction.name, roll: roll.total }) ChatMessage.create({ content: message, speaker: ChatMessage.getSpeaker({ actor: combatant.actor }) }) - // Update the combatant progression count await combatant.setFlag(SYSTEM.id, "currentAction", "") - // Display the action selection window again - combatant.actor.system.rollProgressionDice(options.combatId, options.combatantId ) + combatant.actor.prepareRoll(currentAction.type === "weapon" ? "weapon-attack" : "spell-attack", currentAction._id) } else { // Notify that the player cannot act now with a chat message currentAction.progressionCount += 1 diff --git a/packs-system/lf-equipment/000217.log b/packs-system/lf-equipment/000221.log similarity index 100% rename from packs-system/lf-equipment/000217.log rename to packs-system/lf-equipment/000221.log diff --git a/packs-system/lf-equipment/CURRENT b/packs-system/lf-equipment/CURRENT index 68076bd..7d68d99 100644 --- a/packs-system/lf-equipment/CURRENT +++ b/packs-system/lf-equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000215 +MANIFEST-000219 diff --git a/packs-system/lf-equipment/LOG b/packs-system/lf-equipment/LOG index f2a64fe..abcf656 100644 --- a/packs-system/lf-equipment/LOG +++ b/packs-system/lf-equipment/LOG @@ -1,8 +1,8 @@ -2025/04/17-17:21:12.564483 7f5c837fe6c0 Recovering log #213 -2025/04/17-17:21:12.575284 7f5c837fe6c0 Delete type=3 #211 -2025/04/17-17:21:12.575342 7f5c837fe6c0 Delete type=0 #213 -2025/04/17-17:34:42.493086 7f5c81bff6c0 Level-0 table #218: started -2025/04/17-17:34:42.493111 7f5c81bff6c0 Level-0 table #218: 0 bytes OK -2025/04/17-17:34:42.499036 7f5c81bff6c0 Delete type=0 #216 -2025/04/17-17:34:42.518959 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) -2025/04/17-17:34:42.519032 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/21-17:09:30.765172 7f5dceffd6c0 Recovering log #217 +2025/04/21-17:09:30.774995 7f5dceffd6c0 Delete type=3 #215 +2025/04/21-17:09:30.775106 7f5dceffd6c0 Delete type=0 #217 +2025/04/21-17:40:19.481504 7f5dcd3ff6c0 Level-0 table #222: started +2025/04/21-17:40:19.481549 7f5dcd3ff6c0 Level-0 table #222: 0 bytes OK +2025/04/21-17:40:19.518709 7f5dcd3ff6c0 Delete type=0 #220 +2025/04/21-17:40:19.572101 7f5dcd3ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/21-17:40:19.634424 7f5dcd3ff6c0 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 252cbd7..f2a64fe 100644 --- a/packs-system/lf-equipment/LOG.old +++ b/packs-system/lf-equipment/LOG.old @@ -1,8 +1,8 @@ -2025/04/16-20:52:43.295244 7f5c837fe6c0 Recovering log #209 -2025/04/16-20:52:43.351254 7f5c837fe6c0 Delete type=3 #207 -2025/04/16-20:52:43.351376 7f5c837fe6c0 Delete type=0 #209 -2025/04/16-22:34:18.463926 7f5c81bff6c0 Level-0 table #214: started -2025/04/16-22:34:18.463971 7f5c81bff6c0 Level-0 table #214: 0 bytes OK -2025/04/16-22:34:18.470667 7f5c81bff6c0 Delete type=0 #212 -2025/04/16-22:34:18.477404 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) -2025/04/16-22:34:18.477430 7f5c81bff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/17-17:21:12.564483 7f5c837fe6c0 Recovering log #213 +2025/04/17-17:21:12.575284 7f5c837fe6c0 Delete type=3 #211 +2025/04/17-17:21:12.575342 7f5c837fe6c0 Delete type=0 #213 +2025/04/17-17:34:42.493086 7f5c81bff6c0 Level-0 table #218: started +2025/04/17-17:34:42.493111 7f5c81bff6c0 Level-0 table #218: 0 bytes OK +2025/04/17-17:34:42.499036 7f5c81bff6c0 Delete type=0 #216 +2025/04/17-17:34:42.518959 7f5c81bff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!znm6T1ef4qQI8BX7' @ 0 : 0; will stop at (end) +2025/04/17-17:34:42.519032 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-000215 b/packs-system/lf-equipment/MANIFEST-000219 similarity index 72% rename from packs-system/lf-equipment/MANIFEST-000215 rename to packs-system/lf-equipment/MANIFEST-000219 index b6db18a2083f1ce76d1baa8dde6a30c14d3b93a7..7c55db23a28f03a49b3fe02ae47c313a775051ba 100644 GIT binary patch delta 41 scmdnMxPfs(pHhuqzZ(|=Bhwv5P6p`pgoS$2eSd>_jU&PL2x}i)_F)cqQCAFwn zu`(dsy{y8+E6K&rBP=*Cl2L&H4CECvOHy--6|1t!+;g&ue6mf0i!+=pT^Ly)@|A1X fui|20WV+7C$-sPrkwrmKcgGEozzvYVEua7ZBC;pJ diff --git a/packs-system/lf-gifts/MANIFEST-000218 b/packs-system/lf-gifts/MANIFEST-000218 new file mode 100644 index 0000000000000000000000000000000000000000..724fd6e3ee1caac3c6c16250c6ea701f5a9016c9 GIT binary patch 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)@}*B$ f*K#p1GTmn6WMIC-$fA(-#jFG*a0euC4=4Zt8G$E< literal 0 HcmV?d00001 diff --git a/packs-system/lf-skills/000216.log b/packs-system/lf-skills/000220.log similarity index 100% rename from packs-system/lf-skills/000216.log rename to packs-system/lf-skills/000220.log diff --git a/packs-system/lf-skills/CURRENT b/packs-system/lf-skills/CURRENT index f0a2cf1..e00ef3d 100644 --- a/packs-system/lf-skills/CURRENT +++ b/packs-system/lf-skills/CURRENT @@ -1 +1 @@ -MANIFEST-000214 +MANIFEST-000218 diff --git a/packs-system/lf-skills/LOG b/packs-system/lf-skills/LOG index 58658fd..0f07f91 100644 --- a/packs-system/lf-skills/LOG +++ b/packs-system/lf-skills/LOG @@ -1,8 +1,8 @@ -2025/04/17-17:21:12.549824 7f5c827fc6c0 Recovering log #212 -2025/04/17-17:21:12.560061 7f5c827fc6c0 Delete type=3 #210 -2025/04/17-17:21:12.560203 7f5c827fc6c0 Delete type=0 #212 -2025/04/17-17:34:42.505447 7f5c81bff6c0 Level-0 table #217: started -2025/04/17-17:34:42.505471 7f5c81bff6c0 Level-0 table #217: 0 bytes OK -2025/04/17-17:34:42.518767 7f5c81bff6c0 Delete type=0 #215 -2025/04/17-17:34:42.518998 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/04/17-17:34:42.519066 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/21-17:09:30.749204 7f5dce7fc6c0 Recovering log #216 +2025/04/21-17:09:30.759893 7f5dce7fc6c0 Delete type=3 #214 +2025/04/21-17:09:30.760044 7f5dce7fc6c0 Delete type=0 #216 +2025/04/21-17:40:19.292988 7f5dcd3ff6c0 Level-0 table #221: started +2025/04/21-17:40:19.293026 7f5dcd3ff6c0 Level-0 table #221: 0 bytes OK +2025/04/21-17:40:19.329102 7f5dcd3ff6c0 Delete type=0 #219 +2025/04/21-17:40:19.406586 7f5dcd3ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/21-17:40:19.406620 7f5dcd3ff6c0 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 b033783..58658fd 100644 --- a/packs-system/lf-skills/LOG.old +++ b/packs-system/lf-skills/LOG.old @@ -1,8 +1,8 @@ -2025/04/16-20:52:43.231833 7f5c83fff6c0 Recovering log #208 -2025/04/16-20:52:43.289908 7f5c83fff6c0 Delete type=3 #206 -2025/04/16-20:52:43.290001 7f5c83fff6c0 Delete type=0 #208 -2025/04/16-22:34:18.457209 7f5c81bff6c0 Level-0 table #213: started -2025/04/16-22:34:18.457243 7f5c81bff6c0 Level-0 table #213: 0 bytes OK -2025/04/16-22:34:18.463651 7f5c81bff6c0 Delete type=0 #211 -2025/04/16-22:34:18.477393 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/04/16-22:34:18.477438 7f5c81bff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/17-17:21:12.549824 7f5c827fc6c0 Recovering log #212 +2025/04/17-17:21:12.560061 7f5c827fc6c0 Delete type=3 #210 +2025/04/17-17:21:12.560203 7f5c827fc6c0 Delete type=0 #212 +2025/04/17-17:34:42.505447 7f5c81bff6c0 Level-0 table #217: started +2025/04/17-17:34:42.505471 7f5c81bff6c0 Level-0 table #217: 0 bytes OK +2025/04/17-17:34:42.518767 7f5c81bff6c0 Delete type=0 #215 +2025/04/17-17:34:42.518998 7f5c81bff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/04/17-17:34:42.519066 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-000214 b/packs-system/lf-skills/MANIFEST-000214 deleted file mode 100644 index 6cf961a0dd4d8cbf4364410bfc6d8ea7e08f2eda..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~L`0{4Id0BZjzq5uE@ literal 0 HcmV?d00001 diff --git a/packs-system/lf-vulnerabilities/000216.log b/packs-system/lf-vulnerabilities/000220.log similarity index 100% rename from packs-system/lf-vulnerabilities/000216.log rename to packs-system/lf-vulnerabilities/000220.log diff --git a/packs-system/lf-vulnerabilities/CURRENT b/packs-system/lf-vulnerabilities/CURRENT index f0a2cf1..e00ef3d 100644 --- a/packs-system/lf-vulnerabilities/CURRENT +++ b/packs-system/lf-vulnerabilities/CURRENT @@ -1 +1 @@ -MANIFEST-000214 +MANIFEST-000218 diff --git a/packs-system/lf-vulnerabilities/LOG b/packs-system/lf-vulnerabilities/LOG index 6493586..8b413c8 100644 --- a/packs-system/lf-vulnerabilities/LOG +++ b/packs-system/lf-vulnerabilities/LOG @@ -1,8 +1,8 @@ -2025/04/17-17:21:12.592168 7f5c83fff6c0 Recovering log #212 -2025/04/17-17:21:12.602692 7f5c83fff6c0 Delete type=3 #210 -2025/04/17-17:21:12.602743 7f5c83fff6c0 Delete type=0 #212 -2025/04/17-17:34:42.499156 7f5c81bff6c0 Level-0 table #217: started -2025/04/17-17:34:42.499188 7f5c81bff6c0 Level-0 table #217: 0 bytes OK -2025/04/17-17:34:42.505329 7f5c81bff6c0 Delete type=0 #215 -2025/04/17-17:34:42.518977 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/04/17-17:34:42.519047 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/21-17:09:30.792733 7f5dcf7fe6c0 Recovering log #216 +2025/04/21-17:09:30.802787 7f5dcf7fe6c0 Delete type=3 #214 +2025/04/21-17:09:30.802873 7f5dcf7fe6c0 Delete type=0 #216 +2025/04/21-17:40:19.329256 7f5dcd3ff6c0 Level-0 table #221: started +2025/04/21-17:40:19.329290 7f5dcd3ff6c0 Level-0 table #221: 0 bytes OK +2025/04/21-17:40:19.360850 7f5dcd3ff6c0 Delete type=0 #219 +2025/04/21-17:40:19.406600 7f5dcd3ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/21-17:40:19.406634 7f5dcd3ff6c0 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 7baf091..6493586 100644 --- a/packs-system/lf-vulnerabilities/LOG.old +++ b/packs-system/lf-vulnerabilities/LOG.old @@ -1,8 +1,8 @@ -2025/04/16-20:52:43.416942 7f5c827fc6c0 Recovering log #208 -2025/04/16-20:52:43.474631 7f5c827fc6c0 Delete type=3 #206 -2025/04/16-20:52:43.474742 7f5c827fc6c0 Delete type=0 #208 -2025/04/16-22:34:18.470873 7f5c81bff6c0 Level-0 table #213: started -2025/04/16-22:34:18.470925 7f5c81bff6c0 Level-0 table #213: 0 bytes OK -2025/04/16-22:34:18.477241 7f5c81bff6c0 Delete type=0 #211 -2025/04/16-22:34:18.477414 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/04/16-22:34:18.477446 7f5c81bff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/17-17:21:12.592168 7f5c83fff6c0 Recovering log #212 +2025/04/17-17:21:12.602692 7f5c83fff6c0 Delete type=3 #210 +2025/04/17-17:21:12.602743 7f5c83fff6c0 Delete type=0 #212 +2025/04/17-17:34:42.499156 7f5c81bff6c0 Level-0 table #217: started +2025/04/17-17:34:42.499188 7f5c81bff6c0 Level-0 table #217: 0 bytes OK +2025/04/17-17:34:42.505329 7f5c81bff6c0 Delete type=0 #215 +2025/04/17-17:34:42.518977 7f5c81bff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/04/17-17:34:42.519047 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-000214 b/packs-system/lf-vulnerabilities/MANIFEST-000218 similarity index 71% rename from packs-system/lf-vulnerabilities/MANIFEST-000214 rename to packs-system/lf-vulnerabilities/MANIFEST-000218 index f5d21f46f343c26e58800ad289a5e076a7ce5387..e8ba5faccca5ceb27a8908efb52a0c60333d1d54 100644 GIT binary patch delta 41 scmeBW>}8ygt+eIsp%q*Vj7+x~IT@JmFtW(3zWcKtBya~La1ST|03d!0EC2ui delta 41 scmeBW>}8ygt+Yd>a5)zPBhz(8P6p;1j4Uz_7FXQ`3ETh)+yV*!0Qq+c-v9sr