diff --git a/babele-register.js b/babele-register.js index c2bcb77..fb7740d 100644 --- a/babele-register.js +++ b/babele-register.js @@ -1,6 +1,5 @@ /************************************************************************************/ import statParserFR from "./modules/import-stat-2.js"; -import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js" /************************************************************************************/ var compmod = "wfrp4e-core"; @@ -589,6 +588,11 @@ Hooks.once('init', () => { /*---------------------------------------------------------------------*/ Hooks.once('ready', () => { - ClassCounter.registerUsageCount("wh4-fr-translation") + import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{ + //console.log("ClassCounter loaded", moduleCounter) + moduleCounter.ClassCounter.registerUsageCount("wh4-fr-translation") + }).catch(err=> + console.log("No stats available, giving up.") + ) }); \ No newline at end of file diff --git a/module.json b/module.json index 3df886c..fbea389 100644 --- a/module.json +++ b/module.json @@ -8,7 +8,7 @@ } ], "url": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr", - "version": "7.0.23", + "version": "7.0.24", "esmodules": [ "babele-register.js", "addon-register.js", @@ -116,7 +116,7 @@ } ], "manifest": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/raw/v10/module.json", - "download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-7.0.23.zip", + "download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-7.0.24.zip", "id": "wh4-fr-translation", "compatibility": { "minimum": "11", diff --git a/modules/import-stat-2.js b/modules/import-stat-2.js index f77e5fd..a5b6d1a 100644 --- a/modules/import-stat-2.js +++ b/modules/import-stat-2.js @@ -116,7 +116,7 @@ async function __findItem(itemName, itemType, location = null) { }) if (pack) { await pack.getIndex().then(index => itemList = index); - let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.originalName.toLowerCase() == toSearch || s.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch))); + let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.flags?.babele?.originalName.toLowerCase() == toSearch || s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch))); if (searchResult) { let item = await pack.getDocument(searchResult._id) return item.toObject() @@ -127,8 +127,8 @@ async function __findItem(itemName, itemType, location = null) { // If all else fails, search each pack for (let p of game.wfrp4e.tags.getPacksWithTag(itemType)) { await p.getIndex().then(index => itemList = index); - console.log("Seatch", itemType, toSearch); - let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.originalName.toLowerCase() == toSearch || s.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch))); + console.log("Seatch", itemType, toSearch, itemList); + let searchResult = itemList.find(t => (t.translated && t.type == itemType && (t.flags?.babele?.originalName.toLowerCase() == toSearch || t.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearch)) || (t.type == itemType && (t.name.toLowerCase() == toSearch || t.name.toLowerCase().split("(")[0].trim() == toSearch))); if (searchResult) { let item = await p.getDocument(searchResult._id) return item.toObject() @@ -153,10 +153,10 @@ async function __findSkill(skillName, value = undefined) { for (let pack of packs) { let skillList = await pack.getIndex(); // Search for specific skill (won't find unlisted specializations) - let searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.originalName.toLowerCase() == toSearch) || (s.type == "skill" && s.name.toLowerCase() == toSearch)); + let searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.flags?.babele?.originalName.toLowerCase() == toSearch) || (s.type == "skill" && s.name.toLowerCase() == toSearch)); if (!searchResult) { let toSearchClean = toSearch.split("(")[0].trim(); - searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) || + searchResult = skillList.find(s => (s.type == "skill" && s.translated && s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) || (s.type == "skill" && s.name.toLowerCase().split("(")[0].trim() == toSearchClean)); } if (searchResult) { @@ -198,10 +198,10 @@ async function __findTalent(talentName) { for (let pack of packs) { let talentList = await pack.getIndex(); // Search for specific talent (won't find unlisted specializations) - let searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.originalName.toLowerCase() == toSearch) || (s.type == "talent" && s.name.toLowerCase() == toSearch)); + let searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.flags?.babele?.originalName.toLowerCase() == toSearch) || (s.type == "talent" && s.name.toLowerCase() == toSearch)); if (!searchResult) { let toSearchClean = toSearch.split("(")[0].trim(); - searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) || + searchResult = talentList.find(s => (s.type == "talent" && s.translated && s.flags?.babele?.originalName.toLowerCase().split("(")[0].trim() == toSearchClean) || (s.type == "talent" && s.name.toLowerCase().split("(")[0].trim() == toSearchClean)); } if (searchResult) { @@ -272,9 +272,10 @@ export default async function statParserFR(statString, type = "npc") { // Extract the name let res1 = XRegExp.exec(statString, reg1) - console.log("REG", res1) let pnjStr = statString.substring(0, res1.index) + console.log("REG", res1, pnjStr, res) let nameRes = XRegExp.exec(pnjStr, regName) + console.log("REG", nameRes, regName) //console.log(nameRes) if (nameRes.tiers && nameRes.tiers.length > 0 && hasProperty(model, "details.status.value")) { let regTiers = XRegExp("(?[A-Za-z]*)\\s+(?[0-9]*)"); diff --git a/packs/aides-de-jeu-fr/000385.log b/packs/aides-de-jeu-fr/000453.log similarity index 100% rename from packs/aides-de-jeu-fr/000385.log rename to packs/aides-de-jeu-fr/000453.log diff --git a/packs/aides-de-jeu-fr/CURRENT b/packs/aides-de-jeu-fr/CURRENT index 25e3b7f..7bab257 100644 --- a/packs/aides-de-jeu-fr/CURRENT +++ b/packs/aides-de-jeu-fr/CURRENT @@ -1 +1 @@ -MANIFEST-000383 +MANIFEST-000451 diff --git a/packs/aides-de-jeu-fr/LOG b/packs/aides-de-jeu-fr/LOG index 324769b..e6d3da0 100644 --- a/packs/aides-de-jeu-fr/LOG +++ b/packs/aides-de-jeu-fr/LOG @@ -1,7 +1,7 @@ -2024/02/03-16:06:26.192273 7ff62f4006c0 Recovering log #381 -2024/02/03-16:06:26.202127 7ff62f4006c0 Delete type=3 #379 -2024/02/03-16:06:26.202208 7ff62f4006c0 Delete type=0 #381 -2024/02/03-16:07:06.807791 7ff62e6006c0 Level-0 table #386: started -2024/02/03-16:07:06.807822 7ff62e6006c0 Level-0 table #386: 0 bytes OK -2024/02/03-16:07:06.814017 7ff62e6006c0 Delete type=0 #384 -2024/02/03-16:07:06.828385 7ff62e6006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.589507 7f13374006c0 Recovering log #449 +2024/02/26-09:25:08.619503 7f13374006c0 Delete type=3 #447 +2024/02/26-09:25:08.619642 7f13374006c0 Delete type=0 #449 +2024/02/26-09:31:31.421231 7f132fe006c0 Level-0 table #454: started +2024/02/26-09:31:31.421275 7f132fe006c0 Level-0 table #454: 0 bytes OK +2024/02/26-09:31:31.565568 7f132fe006c0 Delete type=0 #452 +2024/02/26-09:31:31.566489 7f132fe006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu-fr/LOG.old b/packs/aides-de-jeu-fr/LOG.old index da61e1f..fb0f151 100644 --- a/packs/aides-de-jeu-fr/LOG.old +++ b/packs/aides-de-jeu-fr/LOG.old @@ -1,7 +1,7 @@ -2024/01/28-22:44:44.739420 7ff6ccbfa6c0 Recovering log #377 -2024/01/28-22:44:44.749472 7ff6ccbfa6c0 Delete type=3 #375 -2024/01/28-22:44:44.749596 7ff6ccbfa6c0 Delete type=0 #377 -2024/01/28-22:44:46.649248 7ff4363ff6c0 Level-0 table #382: started -2024/01/28-22:44:46.649449 7ff4363ff6c0 Level-0 table #382: 0 bytes OK -2024/01/28-22:44:46.655711 7ff4363ff6c0 Delete type=0 #380 -2024/01/28-22:44:46.655806 7ff4363ff6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.430119 7f1337e006c0 Recovering log #445 +2024/02/25-23:39:43.441308 7f1337e006c0 Delete type=3 #443 +2024/02/25-23:39:43.441411 7f1337e006c0 Delete type=0 #445 +2024/02/26-00:15:14.958948 7f132fe006c0 Level-0 table #450: started +2024/02/26-00:15:14.958985 7f132fe006c0 Level-0 table #450: 0 bytes OK +2024/02/26-00:15:14.994389 7f132fe006c0 Delete type=0 #448 +2024/02/26-00:15:15.032049 7f132fe006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end) diff --git a/packs/aides-de-jeu-fr/MANIFEST-000383 b/packs/aides-de-jeu-fr/MANIFEST-000451 similarity index 71% rename from packs/aides-de-jeu-fr/MANIFEST-000383 rename to packs/aides-de-jeu-fr/MANIFEST-000451 index ad240de..cd23ab6 100644 Binary files a/packs/aides-de-jeu-fr/MANIFEST-000383 and b/packs/aides-de-jeu-fr/MANIFEST-000451 differ diff --git a/packs/antidotes-and-remedes/000386.log b/packs/antidotes-and-remedes/000454.log similarity index 100% rename from packs/antidotes-and-remedes/000386.log rename to packs/antidotes-and-remedes/000454.log diff --git a/packs/antidotes-and-remedes/CURRENT b/packs/antidotes-and-remedes/CURRENT index 70d8a3a..f02e84e 100644 --- a/packs/antidotes-and-remedes/CURRENT +++ b/packs/antidotes-and-remedes/CURRENT @@ -1 +1 @@ -MANIFEST-000384 +MANIFEST-000452 diff --git a/packs/antidotes-and-remedes/LOG b/packs/antidotes-and-remedes/LOG index 0fbdb18..cac3860 100644 --- a/packs/antidotes-and-remedes/LOG +++ b/packs/antidotes-and-remedes/LOG @@ -1,7 +1,7 @@ -2024/02/03-16:06:26.206667 7ff6356006c0 Recovering log #382 -2024/02/03-16:06:26.216682 7ff6356006c0 Delete type=3 #380 -2024/02/03-16:06:26.216980 7ff6356006c0 Delete type=0 #382 -2024/02/03-16:07:06.800766 7ff62e6006c0 Level-0 table #387: started -2024/02/03-16:07:06.800837 7ff62e6006c0 Level-0 table #387: 0 bytes OK -2024/02/03-16:07:06.807671 7ff62e6006c0 Delete type=0 #385 -2024/02/03-16:07:06.828364 7ff62e6006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.622337 7f1337e006c0 Recovering log #450 +2024/02/26-09:25:08.650244 7f1337e006c0 Delete type=3 #448 +2024/02/26-09:25:08.650369 7f1337e006c0 Delete type=0 #450 +2024/02/26-09:31:31.219639 7f132fe006c0 Level-0 table #455: started +2024/02/26-09:31:31.219683 7f132fe006c0 Level-0 table #455: 0 bytes OK +2024/02/26-09:31:31.421058 7f132fe006c0 Delete type=0 #453 +2024/02/26-09:31:31.566461 7f132fe006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) diff --git a/packs/antidotes-and-remedes/LOG.old b/packs/antidotes-and-remedes/LOG.old index 453ccf8..6c3f05e 100644 --- a/packs/antidotes-and-remedes/LOG.old +++ b/packs/antidotes-and-remedes/LOG.old @@ -1,7 +1,7 @@ -2024/01/28-22:44:44.751723 7ff6b7fff6c0 Recovering log #378 -2024/01/28-22:44:44.761238 7ff6b7fff6c0 Delete type=3 #376 -2024/01/28-22:44:44.761415 7ff6b7fff6c0 Delete type=0 #378 -2024/01/28-22:44:46.621828 7ff4363ff6c0 Level-0 table #383: started -2024/01/28-22:44:46.621856 7ff4363ff6c0 Level-0 table #383: 0 bytes OK -2024/01/28-22:44:46.628296 7ff4363ff6c0 Delete type=0 #381 -2024/01/28-22:44:46.642188 7ff4363ff6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.443298 7f1336a006c0 Recovering log #446 +2024/02/25-23:39:43.452927 7f1336a006c0 Delete type=3 #444 +2024/02/25-23:39:43.452983 7f1336a006c0 Delete type=0 #446 +2024/02/26-00:15:14.994710 7f132fe006c0 Level-0 table #451: started +2024/02/26-00:15:14.994738 7f132fe006c0 Level-0 table #451: 0 bytes OK +2024/02/26-00:15:15.031682 7f132fe006c0 Delete type=0 #449 +2024/02/26-00:15:15.032058 7f132fe006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end) diff --git a/packs/antidotes-and-remedes/MANIFEST-000384 b/packs/antidotes-and-remedes/MANIFEST-000452 similarity index 71% rename from packs/antidotes-and-remedes/MANIFEST-000384 rename to packs/antidotes-and-remedes/MANIFEST-000452 index 3e42245..66262ae 100644 Binary files a/packs/antidotes-and-remedes/MANIFEST-000384 and b/packs/antidotes-and-remedes/MANIFEST-000452 differ diff --git a/packs/apothicarium/000385.log b/packs/apothicarium/000453.log similarity index 100% rename from packs/apothicarium/000385.log rename to packs/apothicarium/000453.log diff --git a/packs/apothicarium/CURRENT b/packs/apothicarium/CURRENT index 25e3b7f..7bab257 100644 --- a/packs/apothicarium/CURRENT +++ b/packs/apothicarium/CURRENT @@ -1 +1 @@ -MANIFEST-000383 +MANIFEST-000451 diff --git a/packs/apothicarium/LOG b/packs/apothicarium/LOG index 36a1c43..d6d0653 100644 --- a/packs/apothicarium/LOG +++ b/packs/apothicarium/LOG @@ -1,7 +1,7 @@ -2024/02/03-16:06:26.237972 7ff62fe006c0 Recovering log #381 -2024/02/03-16:06:26.248073 7ff62fe006c0 Delete type=3 #379 -2024/02/03-16:06:26.248319 7ff62fe006c0 Delete type=0 #381 -2024/02/03-16:07:06.821655 7ff62e6006c0 Level-0 table #386: started -2024/02/03-16:07:06.821686 7ff62e6006c0 Level-0 table #386: 0 bytes OK -2024/02/03-16:07:06.828202 7ff62e6006c0 Delete type=0 #384 -2024/02/03-16:07:06.828412 7ff62e6006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.685625 7f1337e006c0 Recovering log #449 +2024/02/26-09:25:08.716786 7f1337e006c0 Delete type=3 #447 +2024/02/26-09:25:08.717195 7f1337e006c0 Delete type=0 #449 +2024/02/26-09:31:31.566675 7f132fe006c0 Level-0 table #454: started +2024/02/26-09:31:31.566739 7f132fe006c0 Level-0 table #454: 0 bytes OK +2024/02/26-09:31:31.733942 7f132fe006c0 Delete type=0 #452 +2024/02/26-09:31:31.935375 7f132fe006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) diff --git a/packs/apothicarium/LOG.old b/packs/apothicarium/LOG.old index 8c10d40..85ecece 100644 --- a/packs/apothicarium/LOG.old +++ b/packs/apothicarium/LOG.old @@ -1,7 +1,7 @@ -2024/01/28-22:44:44.775955 7ff6b6ffd6c0 Recovering log #377 -2024/01/28-22:44:44.786000 7ff6b6ffd6c0 Delete type=3 #375 -2024/01/28-22:44:44.786162 7ff6b6ffd6c0 Delete type=0 #377 -2024/01/28-22:44:46.642394 7ff4363ff6c0 Level-0 table #382: started -2024/01/28-22:44:46.642417 7ff4363ff6c0 Level-0 table #382: 0 bytes OK -2024/01/28-22:44:46.649097 7ff4363ff6c0 Delete type=0 #380 -2024/01/28-22:44:46.655797 7ff4363ff6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.469451 7f1336a006c0 Recovering log #445 +2024/02/25-23:39:43.480769 7f1336a006c0 Delete type=3 #443 +2024/02/25-23:39:43.480913 7f1336a006c0 Delete type=0 #445 +2024/02/26-00:15:15.032190 7f132fe006c0 Level-0 table #450: started +2024/02/26-00:15:15.032219 7f132fe006c0 Level-0 table #450: 0 bytes OK +2024/02/26-00:15:15.093715 7f132fe006c0 Delete type=0 #448 +2024/02/26-00:15:15.173217 7f132fe006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end) diff --git a/packs/apothicarium/MANIFEST-000383 b/packs/apothicarium/MANIFEST-000451 similarity index 71% rename from packs/apothicarium/MANIFEST-000383 rename to packs/apothicarium/MANIFEST-000451 index 84cefb5..917183d 100644 Binary files a/packs/apothicarium/MANIFEST-000383 and b/packs/apothicarium/MANIFEST-000451 differ diff --git a/packs/dons-de-rhya/000385.log b/packs/dons-de-rhya/000453.log similarity index 100% rename from packs/dons-de-rhya/000385.log rename to packs/dons-de-rhya/000453.log diff --git a/packs/dons-de-rhya/CURRENT b/packs/dons-de-rhya/CURRENT index 25e3b7f..7bab257 100644 --- a/packs/dons-de-rhya/CURRENT +++ b/packs/dons-de-rhya/CURRENT @@ -1 +1 @@ -MANIFEST-000383 +MANIFEST-000451 diff --git a/packs/dons-de-rhya/LOG b/packs/dons-de-rhya/LOG index 529e2d2..88d33ed 100644 --- a/packs/dons-de-rhya/LOG +++ b/packs/dons-de-rhya/LOG @@ -1,7 +1,7 @@ -2024/02/03-16:06:26.176917 7ff62fe006c0 Recovering log #381 -2024/02/03-16:06:26.188154 7ff62fe006c0 Delete type=3 #379 -2024/02/03-16:06:26.188247 7ff62fe006c0 Delete type=0 #381 -2024/02/03-16:07:06.786927 7ff62e6006c0 Level-0 table #386: started -2024/02/03-16:07:06.786955 7ff62e6006c0 Level-0 table #386: 0 bytes OK -2024/02/03-16:07:06.793691 7ff62e6006c0 Delete type=0 #384 -2024/02/03-16:07:06.800562 7ff62e6006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.560987 7f1337e006c0 Recovering log #449 +2024/02/26-09:25:08.586267 7f1337e006c0 Delete type=3 #447 +2024/02/26-09:25:08.586576 7f1337e006c0 Delete type=0 #449 +2024/02/26-09:31:31.131912 7f132fe006c0 Level-0 table #454: started +2024/02/26-09:31:31.131952 7f132fe006c0 Level-0 table #454: 0 bytes OK +2024/02/26-09:31:31.219453 7f132fe006c0 Delete type=0 #452 +2024/02/26-09:31:31.566434 7f132fe006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) diff --git a/packs/dons-de-rhya/LOG.old b/packs/dons-de-rhya/LOG.old index a19379c..ead64cb 100644 --- a/packs/dons-de-rhya/LOG.old +++ b/packs/dons-de-rhya/LOG.old @@ -1,7 +1,7 @@ -2024/01/28-22:44:44.726678 7ff6b6ffd6c0 Recovering log #377 -2024/01/28-22:44:44.737307 7ff6b6ffd6c0 Delete type=3 #375 -2024/01/28-22:44:44.737352 7ff6b6ffd6c0 Delete type=0 #377 -2024/01/28-22:44:46.635876 7ff4363ff6c0 Level-0 table #382: started -2024/01/28-22:44:46.635918 7ff4363ff6c0 Level-0 table #382: 0 bytes OK -2024/01/28-22:44:46.642067 7ff4363ff6c0 Delete type=0 #380 -2024/01/28-22:44:46.642208 7ff4363ff6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.417564 7f1336a006c0 Recovering log #445 +2024/02/25-23:39:43.427993 7f1336a006c0 Delete type=3 #443 +2024/02/25-23:39:43.428043 7f1336a006c0 Delete type=0 #445 +2024/02/26-00:15:14.913793 7f132fe006c0 Level-0 table #450: started +2024/02/26-00:15:14.913841 7f132fe006c0 Level-0 table #450: 0 bytes OK +2024/02/26-00:15:14.958799 7f132fe006c0 Delete type=0 #448 +2024/02/26-00:15:15.032038 7f132fe006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end) diff --git a/packs/dons-de-rhya/MANIFEST-000383 b/packs/dons-de-rhya/MANIFEST-000451 similarity index 71% rename from packs/dons-de-rhya/MANIFEST-000383 rename to packs/dons-de-rhya/MANIFEST-000451 index ea9584c..3e2b4be 100644 Binary files a/packs/dons-de-rhya/MANIFEST-000383 and b/packs/dons-de-rhya/MANIFEST-000451 differ diff --git a/packs/plats-dauberges/000385.log b/packs/plats-dauberges/000453.log similarity index 100% rename from packs/plats-dauberges/000385.log rename to packs/plats-dauberges/000453.log diff --git a/packs/plats-dauberges/CURRENT b/packs/plats-dauberges/CURRENT index 25e3b7f..7bab257 100644 --- a/packs/plats-dauberges/CURRENT +++ b/packs/plats-dauberges/CURRENT @@ -1 +1 @@ -MANIFEST-000383 +MANIFEST-000451 diff --git a/packs/plats-dauberges/LOG b/packs/plats-dauberges/LOG index 5827033..f769317 100644 --- a/packs/plats-dauberges/LOG +++ b/packs/plats-dauberges/LOG @@ -1,7 +1,7 @@ -2024/02/03-16:06:26.159276 7ff634c006c0 Recovering log #381 -2024/02/03-16:06:26.170468 7ff634c006c0 Delete type=3 #379 -2024/02/03-16:06:26.170617 7ff634c006c0 Delete type=0 #381 -2024/02/03-16:07:06.779371 7ff62e6006c0 Level-0 table #386: started -2024/02/03-16:07:06.779422 7ff62e6006c0 Level-0 table #386: 0 bytes OK -2024/02/03-16:07:06.786762 7ff62e6006c0 Delete type=0 #384 -2024/02/03-16:07:06.800541 7ff62e6006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.525839 7f13374006c0 Recovering log #449 +2024/02/26-09:25:08.557135 7f13374006c0 Delete type=3 #447 +2024/02/26-09:25:08.557260 7f13374006c0 Delete type=0 #449 +2024/02/26-09:31:31.042099 7f132fe006c0 Level-0 table #454: started +2024/02/26-09:31:31.042171 7f132fe006c0 Level-0 table #454: 0 bytes OK +2024/02/26-09:31:31.131729 7f132fe006c0 Delete type=0 #452 +2024/02/26-09:31:31.566396 7f132fe006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) diff --git a/packs/plats-dauberges/LOG.old b/packs/plats-dauberges/LOG.old index e9d3ba0..24db0db 100644 --- a/packs/plats-dauberges/LOG.old +++ b/packs/plats-dauberges/LOG.old @@ -1,7 +1,7 @@ -2024/01/28-22:44:44.713843 7ff6b77fe6c0 Recovering log #377 -2024/01/28-22:44:44.723962 7ff6b77fe6c0 Delete type=3 #375 -2024/01/28-22:44:44.724064 7ff6b77fe6c0 Delete type=0 #377 -2024/01/28-22:44:46.615135 7ff4363ff6c0 Level-0 table #382: started -2024/01/28-22:44:46.615153 7ff4363ff6c0 Level-0 table #382: 0 bytes OK -2024/01/28-22:44:46.621749 7ff4363ff6c0 Delete type=0 #380 -2024/01/28-22:44:46.642174 7ff4363ff6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.405127 7f1337e006c0 Recovering log #445 +2024/02/25-23:39:43.415351 7f1337e006c0 Delete type=3 #443 +2024/02/25-23:39:43.415394 7f1337e006c0 Delete type=0 #445 +2024/02/26-00:15:14.876806 7f132fe006c0 Level-0 table #450: started +2024/02/26-00:15:14.876840 7f132fe006c0 Level-0 table #450: 0 bytes OK +2024/02/26-00:15:14.913526 7f132fe006c0 Delete type=0 #448 +2024/02/26-00:15:15.032020 7f132fe006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end) diff --git a/packs/plats-dauberges/MANIFEST-000383 b/packs/plats-dauberges/MANIFEST-000451 similarity index 83% rename from packs/plats-dauberges/MANIFEST-000383 rename to packs/plats-dauberges/MANIFEST-000451 index ebc08cd..1518e5e 100644 Binary files a/packs/plats-dauberges/MANIFEST-000383 and b/packs/plats-dauberges/MANIFEST-000451 differ diff --git a/packs/tables-des-traductions/000028.log b/packs/tables-des-traductions/000096.log similarity index 100% rename from packs/tables-des-traductions/000028.log rename to packs/tables-des-traductions/000096.log diff --git a/packs/tables-des-traductions/CURRENT b/packs/tables-des-traductions/CURRENT index 8b15215..0ab25fa 100644 --- a/packs/tables-des-traductions/CURRENT +++ b/packs/tables-des-traductions/CURRENT @@ -1 +1 @@ -MANIFEST-000026 +MANIFEST-000094 diff --git a/packs/tables-des-traductions/LOG b/packs/tables-des-traductions/LOG index 25db994..29ab7a8 100644 --- a/packs/tables-des-traductions/LOG +++ b/packs/tables-des-traductions/LOG @@ -1,8 +1,8 @@ -2024/02/03-16:06:26.222775 7ff634c006c0 Recovering log #24 -2024/02/03-16:06:26.234065 7ff634c006c0 Delete type=3 #22 -2024/02/03-16:06:26.234152 7ff634c006c0 Delete type=0 #24 -2024/02/03-16:07:06.814168 7ff62e6006c0 Level-0 table #29: started -2024/02/03-16:07:06.814205 7ff62e6006c0 Level-0 table #29: 0 bytes OK -2024/02/03-16:07:06.821510 7ff62e6006c0 Delete type=0 #27 -2024/02/03-16:07:06.828399 7ff62e6006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) -2024/02/03-16:07:06.828427 7ff62e6006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) +2024/02/26-09:25:08.653968 7f13374006c0 Recovering log #92 +2024/02/26-09:25:08.682862 7f13374006c0 Delete type=3 #90 +2024/02/26-09:25:08.683053 7f13374006c0 Delete type=0 #92 +2024/02/26-09:31:31.734136 7f132fe006c0 Level-0 table #97: started +2024/02/26-09:31:31.734187 7f132fe006c0 Level-0 table #97: 0 bytes OK +2024/02/26-09:31:31.935001 7f132fe006c0 Delete type=0 #95 +2024/02/26-09:31:31.935450 7f132fe006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) +2024/02/26-09:31:31.935494 7f132fe006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) diff --git a/packs/tables-des-traductions/LOG.old b/packs/tables-des-traductions/LOG.old index 99c2c6a..da2d85a 100644 --- a/packs/tables-des-traductions/LOG.old +++ b/packs/tables-des-traductions/LOG.old @@ -1,8 +1,8 @@ -2024/01/28-22:44:44.763295 7ff6b77fe6c0 Recovering log #20 -2024/01/28-22:44:44.773861 7ff6b77fe6c0 Delete type=3 #18 -2024/01/28-22:44:44.773944 7ff6b77fe6c0 Delete type=0 #20 -2024/01/28-22:44:46.628526 7ff4363ff6c0 Level-0 table #25: started -2024/01/28-22:44:46.628587 7ff4363ff6c0 Level-0 table #25: 0 bytes OK -2024/01/28-22:44:46.635682 7ff4363ff6c0 Delete type=0 #23 -2024/01/28-22:44:46.642199 7ff4363ff6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) -2024/01/28-22:44:46.642253 7ff4363ff6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) +2024/02/25-23:39:43.455535 7f1337e006c0 Recovering log #88 +2024/02/25-23:39:43.467033 7f1337e006c0 Delete type=3 #86 +2024/02/25-23:39:43.467172 7f1337e006c0 Delete type=0 #88 +2024/02/26-00:15:15.093842 7f132fe006c0 Level-0 table #93: started +2024/02/26-00:15:15.093872 7f132fe006c0 Level-0 table #93: 0 bytes OK +2024/02/26-00:15:15.172983 7f132fe006c0 Delete type=0 #91 +2024/02/26-00:15:15.173247 7f132fe006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) +2024/02/26-00:15:15.173282 7f132fe006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end) diff --git a/packs/tables-des-traductions/MANIFEST-000026 b/packs/tables-des-traductions/MANIFEST-000026 deleted file mode 100644 index 0a18df6..0000000 Binary files a/packs/tables-des-traductions/MANIFEST-000026 and /dev/null differ diff --git a/packs/tables-des-traductions/MANIFEST-000094 b/packs/tables-des-traductions/MANIFEST-000094 new file mode 100644 index 0000000..bff3610 Binary files /dev/null and b/packs/tables-des-traductions/MANIFEST-000094 differ