From aaef4dd896b672bc9de98035c9de882a2f3a956b Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Sat, 10 May 2025 10:02:38 +0200 Subject: [PATCH] Replace and fix mortal field --- module/config/system.mjs | 23 ++++--------- module/models/character.mjs | 31 ++++++++++++++++-- .../lf-equipment/{000305.log => 000313.log} | 0 packs-system/lf-equipment/CURRENT | 2 +- packs-system/lf-equipment/LOG | 16 ++++----- packs-system/lf-equipment/LOG.old | 23 +++++-------- .../{MANIFEST-000303 => MANIFEST-000311} | Bin 178 -> 178 bytes .../lf-gifts/{000304.log => 000312.log} | 0 packs-system/lf-gifts/CURRENT | 2 +- packs-system/lf-gifts/LOG | 16 ++++----- packs-system/lf-gifts/LOG.old | 23 +++++-------- .../{MANIFEST-000302 => MANIFEST-000310} | Bin 175 -> 175 bytes .../lf-skills/{000304.log => 000312.log} | 0 packs-system/lf-skills/CURRENT | 2 +- packs-system/lf-skills/LOG | 16 ++++----- packs-system/lf-skills/LOG.old | 23 +++++-------- .../{MANIFEST-000302 => MANIFEST-000310} | Bin 178 -> 178 bytes .../{000004.log => 000012.log} | 0 packs-system/lf-spells-miracles/CURRENT | 2 +- packs-system/lf-spells-miracles/LOG | 13 +++++--- packs-system/lf-spells-miracles/LOG.old | 8 +++++ .../lf-spells-miracles/MANIFEST-000002 | Bin 138 -> 0 bytes .../lf-spells-miracles/MANIFEST-000010 | Bin 0 -> 139 bytes .../{000304.log => 000312.log} | 0 packs-system/lf-vulnerabilities/CURRENT | 2 +- packs-system/lf-vulnerabilities/LOG | 16 ++++----- packs-system/lf-vulnerabilities/LOG.old | 23 +++++-------- .../{MANIFEST-000302 => MANIFEST-000310} | Bin 176 -> 176 bytes 28 files changed, 120 insertions(+), 121 deletions(-) rename packs-system/lf-equipment/{000305.log => 000313.log} (100%) rename packs-system/lf-equipment/{MANIFEST-000303 => MANIFEST-000311} (71%) rename packs-system/lf-gifts/{000304.log => 000312.log} (100%) rename packs-system/lf-gifts/{MANIFEST-000302 => MANIFEST-000310} (73%) rename packs-system/lf-skills/{000304.log => 000312.log} (100%) rename packs-system/lf-skills/{MANIFEST-000302 => MANIFEST-000310} (71%) rename packs-system/lf-spells-miracles/{000004.log => 000012.log} (100%) create mode 100644 packs-system/lf-spells-miracles/LOG.old delete mode 100644 packs-system/lf-spells-miracles/MANIFEST-000002 create mode 100644 packs-system/lf-spells-miracles/MANIFEST-000010 rename packs-system/lf-vulnerabilities/{000304.log => 000312.log} (100%) rename packs-system/lf-vulnerabilities/{MANIFEST-000302 => MANIFEST-000310} (72%) diff --git a/module/config/system.mjs b/module/config/system.mjs index 60e7494..1c103c2 100644 --- a/module/config/system.mjs +++ b/module/config/system.mjs @@ -44,22 +44,13 @@ export const MONEY = { } export const MORTAL_CHOICES = { - "mankind": {label: "Mankind", value: "Mankind", defenseBonus: 0}, - "elf": {label: "Elf", value: "Elf", defenseBonus: 0}, - "dwarf": {label: "Dwarf", value: "Dwarf", defenseBonus: 0}, - "halfelf": {label: "Half-Elf", value: "Half-Elf", defenseBonus: 0}, - "halforc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0}, - "gnome": {label: "Gnome", value: "Gnome", defenseBonus: 2}, - "shirefolk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2}, - "Elf": {label: "Elf", value: "Elf", defenseBonus: 0}, - "Half-orc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0}, - "Half-Orc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0}, - "Dwarf": {label: "Dwarf", value: "Dwarf", defenseBonus: 0}, - "Half-elf": {label: "Half-Elf", value: "Half-Elf", defenseBonus: 0}, - "Gnome": {label: "Gnome", value: "Gnome", defenseBonus: 2}, - "Shire Folk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2}, - "Shire folk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2}, - "Mankind": {label: "Human", value: "Human", defenseBonus: 0}, + "mankind": {label: "Mankind", id: "mankind", defenseBonus: 0}, + "elf": {label: "Elf", id: "elf", defenseBonus: 0}, + "dwarf": {label: "Dwarf", id: "dwarf", defenseBonus: 0}, + "halfelf": {label: "Half-Elf", id: "halfelf", defenseBonus: 0}, + "halforc": {label: "Half-Orc", id: "halforc", defenseBonus: 0}, + "gnome": {label: "Gnome", id: "gnome", defenseBonus: 2}, + "halflings": {label: "Halflings", id: "halflings", defenseBonus: 2} } export const FAVOR_CHOICES = { diff --git a/module/models/character.mjs b/module/models/character.mjs index 93fb685..dfcdc79 100644 --- a/module/models/character.mjs +++ b/module/models/character.mjs @@ -174,6 +174,31 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod /** @override */ static LOCALIZATION_PREFIXES = ["LETHALFANTASY.Character"] + static migrateData(data) { + if (data?.biodata?.mortal) { + if (!SYSTEM.MORTAL_CHOICES[data.biodata.mortal]) { + for (let key in SYSTEM.MORTAL_CHOICES) { + let mortal = SYSTEM.MORTAL_CHOICES[key] + if ( mortal.label.toLowerCase() === data.biodata.mortal.toLowerCase()) { + data.biodata.mortal = mortal.id + } + if ( data.biodata.mortal.toLowerCase().includes("shire")) { + data.biodata.mortal = "halflings" + } + if ( data.biodata.mortal.toLowerCase().includes("human")) { + data.biodata.mortal = "mankind" + } + } + } + if (!SYSTEM.MORTAL_CHOICES[data.biodata.mortal]) { + console.warn("Lethal Fantasy | Migrate data: Mortal not found, forced to mankind", data.biodata.mortal) + data.biodata.mortal = "mankind" + } + } + + return super.migrateData(data) + } + prepareDerivedData() { super.prepareDerivedData(); let grit = 0 @@ -275,7 +300,7 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod actorName: this.parent.name, actorImage: this.parent.img, combatId, - combatantId , + combatantId, actorClass, maxInit, }) @@ -302,10 +327,10 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod let formula = "" if (s.type === "spell") { let dice = LethalFantasyUtils.getLethargyDice(s.system.level) - title = `${s.name} (Casting time: ${s.system.castingTime}, Lethargy: ${dice})` + title = `${s.name} (Casting time: ${s.system.castingTime}, Lethargy: ${dice})` formula = `${s.system.castingTime}+${dice}` } else { - title = `${s.name} (Prayer time: ${s.system.prayerTime})` + title = `${s.name} (Prayer time: ${s.system.prayerTime})` formula = `${s.system.prayerTime}` } weaponsChoices.push({ id: s.id, name: title, combatProgressionDice: formula }) diff --git a/packs-system/lf-equipment/000305.log b/packs-system/lf-equipment/000313.log similarity index 100% rename from packs-system/lf-equipment/000305.log rename to packs-system/lf-equipment/000313.log diff --git a/packs-system/lf-equipment/CURRENT b/packs-system/lf-equipment/CURRENT index 284c57b..cd37fac 100644 --- a/packs-system/lf-equipment/CURRENT +++ b/packs-system/lf-equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000303 +MANIFEST-000311 diff --git a/packs-system/lf-equipment/LOG b/packs-system/lf-equipment/LOG index 799fe35..565c495 100644 --- a/packs-system/lf-equipment/LOG +++ b/packs-system/lf-equipment/LOG @@ -1,8 +1,8 @@ -2025/05/06-10:52:19.288970 7fc4e7fff6c0 Recovering log #300 -2025/05/06-10:52:19.300271 7fc4e7fff6c0 Delete type=3 #298 -2025/05/06-10:52:19.300323 7fc4e7fff6c0 Delete type=0 #300 -2025/05/06-10:53:10.017977 7fc4e73ff6c0 Level-0 table #306: started -2025/05/06-10:53:10.018020 7fc4e73ff6c0 Level-0 table #306: 0 bytes OK -2025/05/06-10:53:10.024080 7fc4e73ff6c0 Delete type=0 #304 -2025/05/06-10:53:10.044191 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) -2025/05/06-10:53:10.044277 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) +2025/05/10-00:05:33.968698 7fc4edbfa6c0 Recovering log #309 +2025/05/10-00:05:33.979040 7fc4edbfa6c0 Delete type=3 #307 +2025/05/10-00:05:33.979178 7fc4edbfa6c0 Delete type=0 #309 +2025/05/10-00:18:03.109062 7fc4e73ff6c0 Level-0 table #314: started +2025/05/10-00:18:03.109102 7fc4e73ff6c0 Level-0 table #314: 0 bytes OK +2025/05/10-00:18:03.143055 7fc4e73ff6c0 Delete type=0 #312 +2025/05/10-00:18:03.213868 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) +2025/05/10-00:18:03.213931 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/LOG.old b/packs-system/lf-equipment/LOG.old index e1eb803..ecb7d1d 100644 --- a/packs-system/lf-equipment/LOG.old +++ b/packs-system/lf-equipment/LOG.old @@ -1,15 +1,8 @@ -2025/05/06-10:45:53.342160 7fc4ecbf86c0 Recovering log #296 -2025/05/06-10:45:53.353010 7fc4ecbf86c0 Delete type=3 #294 -2025/05/06-10:45:53.353081 7fc4ecbf86c0 Delete type=0 #296 -2025/05/06-10:51:12.708848 7fc4e73ff6c0 Level-0 table #301: started -2025/05/06-10:51:12.714248 7fc4e73ff6c0 Level-0 table #301: 213746 bytes OK -2025/05/06-10:51:12.720525 7fc4e73ff6c0 Delete type=0 #299 -2025/05/06-10:51:12.748598 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) -2025/05/06-10:51:12.748667 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at '!items!zw9RQocTdz3HRjZK' @ 564 : 1 -2025/05/06-10:51:12.748677 7fc4e73ff6c0 Compacting 1@1 + 1@2 files -2025/05/06-10:51:12.755813 7fc4e73ff6c0 Generated table #302@1: 485 keys, 214492 bytes -2025/05/06-10:51:12.755833 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 214492 bytes -2025/05/06-10:51:12.761728 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/05/06-10:51:12.761886 7fc4e73ff6c0 Delete type=2 #289 -2025/05/06-10:51:12.762144 7fc4e73ff6c0 Delete type=2 #301 -2025/05/06-10:51:12.795034 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zw9RQocTdz3HRjZK' @ 564 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) +2025/05/09-22:47:41.220359 7fc4ecbf86c0 Recovering log #305 +2025/05/09-22:47:41.271727 7fc4ecbf86c0 Delete type=3 #303 +2025/05/09-22:47:41.271792 7fc4ecbf86c0 Delete type=0 #305 +2025/05/09-22:48:57.689333 7fc4e73ff6c0 Level-0 table #310: started +2025/05/09-22:48:57.689356 7fc4e73ff6c0 Level-0 table #310: 0 bytes OK +2025/05/09-22:48:57.695394 7fc4e73ff6c0 Delete type=0 #308 +2025/05/09-22:48:57.708739 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) +2025/05/09-22:48:57.708810 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/MANIFEST-000303 b/packs-system/lf-equipment/MANIFEST-000311 similarity index 71% rename from packs-system/lf-equipment/MANIFEST-000303 rename to packs-system/lf-equipment/MANIFEST-000311 index 83377f8d14da5f36cf0ff207dbda1e2867e7b1f9..256a5b4188d5491323f15f31a8722f50ba51b670 100644 GIT binary patch delta 43 scmdnQxQTH>pGsHT0u^osMy4H1oD9r6nONFbjc;V;fkbwKM0SHj016%oo&W#< delta 43 tcmdnQxQTH>pUT4arBAsT7@0OOaWXJ(WMXM!{c$B`El6Y|NMtie1OPQ}3{L<6 diff --git a/packs-system/lf-gifts/000304.log b/packs-system/lf-gifts/000312.log similarity index 100% rename from packs-system/lf-gifts/000304.log rename to packs-system/lf-gifts/000312.log diff --git a/packs-system/lf-gifts/CURRENT b/packs-system/lf-gifts/CURRENT index 093b738..621932e 100644 --- a/packs-system/lf-gifts/CURRENT +++ b/packs-system/lf-gifts/CURRENT @@ -1 +1 @@ -MANIFEST-000302 +MANIFEST-000310 diff --git a/packs-system/lf-gifts/LOG b/packs-system/lf-gifts/LOG index ad0fdef..368aec2 100644 --- a/packs-system/lf-gifts/LOG +++ b/packs-system/lf-gifts/LOG @@ -1,8 +1,8 @@ -2025/05/06-10:52:19.304583 7fc4ed3f96c0 Recovering log #299 -2025/05/06-10:52:19.314806 7fc4ed3f96c0 Delete type=3 #297 -2025/05/06-10:52:19.314910 7fc4ed3f96c0 Delete type=0 #299 -2025/05/06-10:53:10.030599 7fc4e73ff6c0 Level-0 table #305: started -2025/05/06-10:53:10.030635 7fc4e73ff6c0 Level-0 table #305: 0 bytes OK -2025/05/06-10:53:10.036964 7fc4e73ff6c0 Delete type=0 #303 -2025/05/06-10:53:10.044214 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/05/06-10:53:10.044269 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/05/10-00:05:33.984133 7fc4e7fff6c0 Recovering log #308 +2025/05/10-00:05:33.996710 7fc4e7fff6c0 Delete type=3 #306 +2025/05/10-00:05:33.996815 7fc4e7fff6c0 Delete type=0 #308 +2025/05/10-00:18:03.143238 7fc4e73ff6c0 Level-0 table #313: started +2025/05/10-00:18:03.143277 7fc4e73ff6c0 Level-0 table #313: 0 bytes OK +2025/05/10-00:18:03.183026 7fc4e73ff6c0 Delete type=0 #311 +2025/05/10-00:18:03.213885 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/05/10-00:18:03.213947 7fc4e73ff6c0 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 677b208..349834b 100644 --- a/packs-system/lf-gifts/LOG.old +++ b/packs-system/lf-gifts/LOG.old @@ -1,15 +1,8 @@ -2025/05/06-10:45:53.355849 7fc4edbfa6c0 Recovering log #295 -2025/05/06-10:45:53.366571 7fc4edbfa6c0 Delete type=3 #293 -2025/05/06-10:45:53.366637 7fc4edbfa6c0 Delete type=0 #295 -2025/05/06-10:51:12.732133 7fc4e73ff6c0 Level-0 table #300: started -2025/05/06-10:51:12.736129 7fc4e73ff6c0 Level-0 table #300: 15304 bytes OK -2025/05/06-10:51:12.742079 7fc4e73ff6c0 Delete type=0 #298 -2025/05/06-10:51:12.748632 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/05/06-10:51:12.771871 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at '!items!zjvGljrLk5SshC9D' @ 65 : 1 -2025/05/06-10:51:12.771882 7fc4e73ff6c0 Compacting 1@1 + 1@2 files -2025/05/06-10:51:12.776442 7fc4e73ff6c0 Generated table #301@1: 31 keys, 15417 bytes -2025/05/06-10:51:12.776461 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 15417 bytes -2025/05/06-10:51:12.782727 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/05/06-10:51:12.782835 7fc4e73ff6c0 Delete type=2 #288 -2025/05/06-10:51:12.782952 7fc4e73ff6c0 Delete type=2 #300 -2025/05/06-10:51:12.795077 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zjvGljrLk5SshC9D' @ 65 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/05/09-22:47:41.276588 7fc4e7fff6c0 Recovering log #304 +2025/05/09-22:47:41.333577 7fc4e7fff6c0 Delete type=3 #302 +2025/05/09-22:47:41.333706 7fc4e7fff6c0 Delete type=0 #304 +2025/05/09-22:48:57.695515 7fc4e73ff6c0 Level-0 table #309: started +2025/05/09-22:48:57.695539 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK +2025/05/09-22:48:57.702267 7fc4e73ff6c0 Delete type=0 #307 +2025/05/09-22:48:57.708758 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/05/09-22:48:57.708826 7fc4e73ff6c0 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-000302 b/packs-system/lf-gifts/MANIFEST-000310 similarity index 73% rename from packs-system/lf-gifts/MANIFEST-000302 rename to packs-system/lf-gifts/MANIFEST-000310 index 7a9b112c2cb488ffed57c93911a887cf3a196c04..43c5d422a69e34d8a8ada6f5d58a9590ba3fd264 100644 GIT binary patch delta 41 scmZ3_xSnxBuacY7{JmTZj7-~^I2o9CFtNnM9qKp^64(I}*aZ{-0Q_eP&Hw-a delta 41 scmZ3_xSnxBuhKj2!w0w+7@5{HaWXJ(U}A|mXqL4KB(MP_un8yt00}1w;s5{u diff --git a/packs-system/lf-skills/000304.log b/packs-system/lf-skills/000312.log similarity index 100% rename from packs-system/lf-skills/000304.log rename to packs-system/lf-skills/000312.log diff --git a/packs-system/lf-skills/CURRENT b/packs-system/lf-skills/CURRENT index 093b738..621932e 100644 --- a/packs-system/lf-skills/CURRENT +++ b/packs-system/lf-skills/CURRENT @@ -1 +1 @@ -MANIFEST-000302 +MANIFEST-000310 diff --git a/packs-system/lf-skills/LOG b/packs-system/lf-skills/LOG index d5a0aef..1680ad0 100644 --- a/packs-system/lf-skills/LOG +++ b/packs-system/lf-skills/LOG @@ -1,8 +1,8 @@ -2025/05/06-10:52:19.275594 7fc4ecbf86c0 Recovering log #299 -2025/05/06-10:52:19.285984 7fc4ecbf86c0 Delete type=3 #297 -2025/05/06-10:52:19.286069 7fc4ecbf86c0 Delete type=0 #299 -2025/05/06-10:53:10.024277 7fc4e73ff6c0 Level-0 table #305: started -2025/05/06-10:53:10.024336 7fc4e73ff6c0 Level-0 table #305: 0 bytes OK -2025/05/06-10:53:10.030435 7fc4e73ff6c0 Delete type=0 #303 -2025/05/06-10:53:10.044204 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/05/06-10:53:10.044252 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/05/10-00:05:33.955181 7fc4ed3f96c0 Recovering log #308 +2025/05/10-00:05:33.965658 7fc4ed3f96c0 Delete type=3 #306 +2025/05/10-00:05:33.965713 7fc4ed3f96c0 Delete type=0 #308 +2025/05/10-00:18:03.078194 7fc4e73ff6c0 Level-0 table #313: started +2025/05/10-00:18:03.078263 7fc4e73ff6c0 Level-0 table #313: 0 bytes OK +2025/05/10-00:18:03.108887 7fc4e73ff6c0 Delete type=0 #311 +2025/05/10-00:18:03.213845 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/05/10-00:18:03.213916 7fc4e73ff6c0 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 574b60e..dd28608 100644 --- a/packs-system/lf-skills/LOG.old +++ b/packs-system/lf-skills/LOG.old @@ -1,15 +1,8 @@ -2025/05/06-10:45:53.317135 7fc4e7fff6c0 Recovering log #295 -2025/05/06-10:45:53.339293 7fc4e7fff6c0 Delete type=3 #293 -2025/05/06-10:45:53.339350 7fc4e7fff6c0 Delete type=0 #295 -2025/05/06-10:51:12.783010 7fc4e73ff6c0 Level-0 table #300: started -2025/05/06-10:51:12.787977 7fc4e73ff6c0 Level-0 table #300: 154604 bytes OK -2025/05/06-10:51:12.794741 7fc4e73ff6c0 Delete type=0 #298 -2025/05/06-10:51:12.795090 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/05/06-10:51:12.795140 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at '!items!zt8s7564ep1La4XQ' @ 281 : 1 -2025/05/06-10:51:12.795156 7fc4e73ff6c0 Compacting 1@1 + 1@2 files -2025/05/06-10:51:12.800410 7fc4e73ff6c0 Generated table #301@1: 95 keys, 121769 bytes -2025/05/06-10:51:12.800436 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 121769 bytes -2025/05/06-10:51:12.806480 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/05/06-10:51:12.806620 7fc4e73ff6c0 Delete type=2 #288 -2025/05/06-10:51:12.806871 7fc4e73ff6c0 Delete type=2 #300 -2025/05/06-10:51:12.827417 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zt8s7564ep1La4XQ' @ 281 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/05/09-22:47:41.162789 7fc4ed3f96c0 Recovering log #304 +2025/05/09-22:47:41.216906 7fc4ed3f96c0 Delete type=3 #302 +2025/05/09-22:47:41.217026 7fc4ed3f96c0 Delete type=0 #304 +2025/05/09-22:48:57.683143 7fc4e73ff6c0 Level-0 table #309: started +2025/05/09-22:48:57.683210 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK +2025/05/09-22:48:57.689209 7fc4e73ff6c0 Delete type=0 #307 +2025/05/09-22:48:57.708705 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/05/09-22:48:57.708793 7fc4e73ff6c0 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-000302 b/packs-system/lf-skills/MANIFEST-000310 similarity index 71% rename from packs-system/lf-skills/MANIFEST-000302 rename to packs-system/lf-skills/MANIFEST-000310 index 7734880ba21e24992abbf4c8b16ef62a57597159..b894a2222487c69bb3fa525715f1a354d7b8563d 100644 GIT binary patch delta 43 tcmdnQxQTH>pUPi{sj}P*j7-~^I2o9CFtMy*{p9-((^c~y`j7;m9I2o8XFtMy*Hr#4f020{%64?Y20RZ}o3Ml{p diff --git a/packs-system/lf-spells-miracles/000004.log b/packs-system/lf-spells-miracles/000012.log similarity index 100% rename from packs-system/lf-spells-miracles/000004.log rename to packs-system/lf-spells-miracles/000012.log diff --git a/packs-system/lf-spells-miracles/CURRENT b/packs-system/lf-spells-miracles/CURRENT index 1a84852..3051f81 100644 --- a/packs-system/lf-spells-miracles/CURRENT +++ b/packs-system/lf-spells-miracles/CURRENT @@ -1 +1 @@ -MANIFEST-000002 +MANIFEST-000010 diff --git a/packs-system/lf-spells-miracles/LOG b/packs-system/lf-spells-miracles/LOG index a95e90d..c70e5f0 100644 --- a/packs-system/lf-spells-miracles/LOG +++ b/packs-system/lf-spells-miracles/LOG @@ -1,5 +1,8 @@ -2025/05/06-10:52:19.344307 7fc4e7fff6c0 Delete type=3 #1 -2025/05/06-10:53:10.044408 7fc4e73ff6c0 Level-0 table #5: started -2025/05/06-10:53:10.051976 7fc4e73ff6c0 Level-0 table #5: 433603 bytes OK -2025/05/06-10:53:10.058524 7fc4e73ff6c0 Delete type=0 #3 -2025/05/06-10:53:10.078387 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end) +2025/05/10-00:05:34.011461 7fc4ed3f96c0 Recovering log #8 +2025/05/10-00:05:34.021952 7fc4ed3f96c0 Delete type=3 #6 +2025/05/10-00:05:34.022058 7fc4ed3f96c0 Delete type=0 #8 +2025/05/10-00:18:03.332662 7fc4e73ff6c0 Level-0 table #13: started +2025/05/10-00:18:03.332695 7fc4e73ff6c0 Level-0 table #13: 0 bytes OK +2025/05/10-00:18:03.375786 7fc4e73ff6c0 Delete type=0 #11 +2025/05/10-00:18:03.442324 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end) +2025/05/10-00:18:03.442380 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-spells-miracles/LOG.old b/packs-system/lf-spells-miracles/LOG.old new file mode 100644 index 0000000..2e5b4d7 --- /dev/null +++ b/packs-system/lf-spells-miracles/LOG.old @@ -0,0 +1,8 @@ +2025/05/09-22:47:41.385708 7fc4ed3f96c0 Recovering log #4 +2025/05/09-22:47:41.489161 7fc4ed3f96c0 Delete type=3 #2 +2025/05/09-22:47:41.489215 7fc4ed3f96c0 Delete type=0 #4 +2025/05/09-22:48:57.702401 7fc4e73ff6c0 Level-0 table #9: started +2025/05/09-22:48:57.702429 7fc4e73ff6c0 Level-0 table #9: 0 bytes OK +2025/05/09-22:48:57.708467 7fc4e73ff6c0 Delete type=0 #7 +2025/05/09-22:48:57.708776 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end) +2025/05/09-22:48:57.708842 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-spells-miracles/MANIFEST-000002 b/packs-system/lf-spells-miracles/MANIFEST-000002 deleted file mode 100644 index 0761ced803aa9e3e7b4e59549b68bdf1b5022f19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 138 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAe$kRS-TOEg7@3$k8JJmE z7+yKT(1~8CU%q&UGEmo}Z_AdxEHp%y?%5?V%H>+gKfXE-8 ez 20869 bytes -2025/05/06-10:51:12.771435 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ] -2025/05/06-10:51:12.771569 7fc4e73ff6c0 Delete type=2 #288 -2025/05/06-10:51:12.771746 7fc4e73ff6c0 Delete type=2 #300 -2025/05/06-10:51:12.795060 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zkK6ixtCsCw3RH9X' @ 62 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/05/09-22:47:41.336297 7fc4edbfa6c0 Recovering log #304 +2025/05/09-22:47:41.382633 7fc4edbfa6c0 Delete type=3 #302 +2025/05/09-22:47:41.382758 7fc4edbfa6c0 Delete type=0 #304 +2025/05/09-22:48:57.728106 7fc4e73ff6c0 Level-0 table #309: started +2025/05/09-22:48:57.728152 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK +2025/05/09-22:48:57.734043 7fc4e73ff6c0 Delete type=0 #307 +2025/05/09-22:48:57.734162 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/05/09-22:48:57.734181 7fc4e73ff6c0 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-000302 b/packs-system/lf-vulnerabilities/MANIFEST-000310 similarity index 72% rename from packs-system/lf-vulnerabilities/MANIFEST-000302 rename to packs-system/lf-vulnerabilities/MANIFEST-000310 index 98c130a1d79a3975a131a1bc1478f684ed91622d..c9edef0a1c21e22cd63b51990f659f157f354ae5 100644 GIT binary patch delta 41 scmdnMxPfs(pVGk{_Uc>=j7-~^I2o9CFtG&OG}nj)3G4s~>;eh^0P$!E+5i9m delta 41 scmdnMxPfs(pHk+sWECz3MyB;loD9qxm{