Compare commits

..

2 Commits

Author SHA1 Message Date
8112dae14d Fix stat import 2024-02-26 09:58:36 +01:00
4ead400c2e Enhance stats 2024-02-08 12:54:56 +01:00
35 changed files with 114 additions and 121 deletions

View File

@ -245,8 +245,8 @@ Hooks.once('init', () => {
let re = /(.*)\((.*)\)/i;
for (i = 0; i < len; i++) {
for (let compData of validCompendiums) {
//console.log("TALENT - Parsing : ", talents_list)
let translItem = game.babele.translate(compData.metadata.id, { name: talents_list[i], type: "talent" }, true);
let translItem = game.babele.translate(compData.metadata.id, { name: talents_list[i] }, true);
console.log("Search talent name:", compData.metadata.id, talents_list[i], translItem);
let transl = translItem?.name || undefined
if (!transl) transl = talents_list[i]
if (transl == talents_list[i]) {
@ -254,9 +254,9 @@ Hooks.once('init', () => {
if (res) {
let subword = game.i18n.localize(res[2].trim());
let s1 = res[1].trim(); // No () in talents table
translItem = game.babele.translate(compData.metadata.id, { name: s1, type: "talent" }, true)
translItem = game.babele.translate(compData.metadata.id, { name: s1 }, true)
let translw = translItem?.name || undefined
//console.log("Ssearch talent name:", compData.metadata.id, s1, translw);
console.log("Ssearch talent name:", compData.metadata.id, s1, translw);
if (translw && translw != s1) {
transl = translw + " (" + subword + ")";
}
@ -584,34 +584,15 @@ Hooks.once('init', () => {
});
/* -------------------------------------------- */
// Register world usage statistics
function registerUsageCount(registerKey) {
if (game.user.isGM) {
game.settings.register(registerKey, "world-key", {
name: "Unique world key",
scope: "world",
config: false,
default: "",
type: String
});
let worldKey = game.settings.get(registerKey, "world-key")
if (worldKey == undefined || worldKey == "") {
worldKey = randomID(32)
game.settings.set(registerKey, "world-key", worldKey)
}
// Simple API counter
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
$.ajax(regURL)
/* -------------------------------------------- */
}
}
/*---------------------------------------------------------------------*/
Hooks.once('ready', () => {
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.")
)
});

View File

@ -495,7 +495,7 @@
"Resolve" : "Détermination",
"Resilience" : "Résilience",
"Career" : "Carrière",
"Careers" : "Careers",
"Careers" : "Carrières",
"Level" : "Niveau",
"Biography" : "Biographie",
"Personal Ambitions" : "Ambitions personnelles",

View File

@ -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",

View File

@ -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("(?<name>[A-Za-z]*)\\s+(?<level>[0-9]*)");

View File

@ -1 +1 @@
MANIFEST-000359
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2023/11/15-17:42:16.143060 7fedf37fe6c0 Recovering log #357
2023/11/15-17:42:16.175280 7fedf37fe6c0 Delete type=3 #355
2023/11/15-17:42:16.175329 7fedf37fe6c0 Delete type=0 #357
2023/11/15-17:42:45.255642 7feb713c96c0 Level-0 table #362: started
2023/11/15-17:42:45.255700 7feb713c96c0 Level-0 table #362: 0 bytes OK
2023/11/15-17:42:45.262284 7feb713c96c0 Delete type=0 #360
2023/11/15-17:42:45.287250 7feb713c96c0 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)

View File

@ -1,7 +1,7 @@
2023/11/15-17:41:29.489267 7fee08df96c0 Recovering log #353
2023/11/15-17:41:29.499370 7fee08df96c0 Delete type=3 #351
2023/11/15-17:41:29.499459 7fee08df96c0 Delete type=0 #353
2023/11/15-17:41:59.426003 7feb713c96c0 Level-0 table #358: started
2023/11/15-17:41:59.426035 7feb713c96c0 Level-0 table #358: 0 bytes OK
2023/11/15-17:41:59.432389 7feb713c96c0 Delete type=0 #356
2023/11/15-17:41:59.446866 7feb713c96c0 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)

View File

@ -1 +1 @@
MANIFEST-000360
MANIFEST-000452

View File

@ -1,7 +1,7 @@
2023/11/15-17:42:16.177674 7fee095fa6c0 Recovering log #358
2023/11/15-17:42:16.210044 7fee095fa6c0 Delete type=3 #356
2023/11/15-17:42:16.210161 7fee095fa6c0 Delete type=0 #358
2023/11/15-17:42:45.262422 7feb713c96c0 Level-0 table #363: started
2023/11/15-17:42:45.262451 7feb713c96c0 Level-0 table #363: 0 bytes OK
2023/11/15-17:42:45.268977 7feb713c96c0 Delete type=0 #361
2023/11/15-17:42:45.287278 7feb713c96c0 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)

View File

@ -1,7 +1,7 @@
2023/11/15-17:41:29.501814 7fee095fa6c0 Recovering log #354
2023/11/15-17:41:29.511651 7fee095fa6c0 Delete type=3 #352
2023/11/15-17:41:29.511705 7fee095fa6c0 Delete type=0 #354
2023/11/15-17:41:59.410822 7feb713c96c0 Level-0 table #359: started
2023/11/15-17:41:59.410872 7feb713c96c0 Level-0 table #359: 0 bytes OK
2023/11/15-17:41:59.417451 7feb713c96c0 Delete type=0 #357
2023/11/15-17:41:59.425867 7feb713c96c0 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)

View File

@ -1 +1 @@
MANIFEST-000359
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2023/11/15-17:42:16.308041 7fedf37fe6c0 Recovering log #357
2023/11/15-17:42:16.334001 7fedf37fe6c0 Delete type=3 #355
2023/11/15-17:42:16.334121 7fedf37fe6c0 Delete type=0 #357
2023/11/15-17:42:45.287466 7feb713c96c0 Level-0 table #362: started
2023/11/15-17:42:45.287530 7feb713c96c0 Level-0 table #362: 0 bytes OK
2023/11/15-17:42:45.293998 7feb713c96c0 Delete type=0 #360
2023/11/15-17:42:45.294197 7feb713c96c0 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)

View File

@ -1,7 +1,7 @@
2023/11/15-17:41:29.527190 7fedf3fff6c0 Recovering log #353
2023/11/15-17:41:29.536787 7fedf3fff6c0 Delete type=3 #351
2023/11/15-17:41:29.536837 7fedf3fff6c0 Delete type=0 #353
2023/11/15-17:41:59.440723 7feb713c96c0 Level-0 table #358: started
2023/11/15-17:41:59.440745 7feb713c96c0 Level-0 table #358: 0 bytes OK
2023/11/15-17:41:59.446765 7feb713c96c0 Delete type=0 #356
2023/11/15-17:41:59.446886 7feb713c96c0 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)

View File

@ -1 +1 @@
MANIFEST-000359
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2023/11/15-17:42:16.111319 7fedf3fff6c0 Recovering log #357
2023/11/15-17:42:16.141307 7fedf3fff6c0 Delete type=3 #355
2023/11/15-17:42:16.141358 7fedf3fff6c0 Delete type=0 #357
2023/11/15-17:42:45.269172 7feb713c96c0 Level-0 table #362: started
2023/11/15-17:42:45.269251 7feb713c96c0 Level-0 table #362: 0 bytes OK
2023/11/15-17:42:45.275774 7feb713c96c0 Delete type=0 #360
2023/11/15-17:42:45.287295 7feb713c96c0 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)

View File

@ -1,7 +1,7 @@
2023/11/15-17:41:29.475001 7fedf3fff6c0 Recovering log #353
2023/11/15-17:41:29.485837 7fedf3fff6c0 Delete type=3 #351
2023/11/15-17:41:29.485890 7fedf3fff6c0 Delete type=0 #353
2023/11/15-17:41:59.403681 7feb713c96c0 Level-0 table #358: started
2023/11/15-17:41:59.403727 7feb713c96c0 Level-0 table #358: 0 bytes OK
2023/11/15-17:41:59.410630 7feb713c96c0 Delete type=0 #356
2023/11/15-17:41:59.425858 7feb713c96c0 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)

View File

@ -1 +1 @@
MANIFEST-000359
MANIFEST-000451

View File

@ -1,7 +1,7 @@
2023/11/15-17:42:16.080813 7fee08df96c0 Recovering log #357
2023/11/15-17:42:16.108691 7fee08df96c0 Delete type=3 #355
2023/11/15-17:42:16.108769 7fee08df96c0 Delete type=0 #357
2023/11/15-17:42:45.247895 7feb713c96c0 Level-0 table #362: started
2023/11/15-17:42:45.247927 7feb713c96c0 Level-0 table #362: 0 bytes OK
2023/11/15-17:42:45.255226 7feb713c96c0 Delete type=0 #360
2023/11/15-17:42:45.255421 7feb713c96c0 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)

View File

@ -1,7 +1,7 @@
2023/11/15-17:41:29.460484 7fedf37fe6c0 Recovering log #353
2023/11/15-17:41:29.471536 7fedf37fe6c0 Delete type=3 #351
2023/11/15-17:41:29.471666 7fedf37fe6c0 Delete type=0 #353
2023/11/15-17:41:59.417645 7feb713c96c0 Level-0 table #358: started
2023/11/15-17:41:59.417700 7feb713c96c0 Level-0 table #358: 0 bytes OK
2023/11/15-17:41:59.425759 7feb713c96c0 Delete type=0 #356
2023/11/15-17:41:59.425889 7feb713c96c0 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)

View File

@ -1 +1 @@
MANIFEST-000002
MANIFEST-000094

View File

@ -1,5 +1,8 @@
2023/11/15-17:42:16.246765 7fee08df96c0 Delete type=3 #1
2023/11/15-17:42:45.275880 7feb713c96c0 Level-0 table #5: started
2023/11/15-17:42:45.279591 7feb713c96c0 Level-0 table #5: 64121 bytes OK
2023/11/15-17:42:45.286793 7feb713c96c0 Delete type=0 #3
2023/11/15-17:42:45.287310 7feb713c96c0 Manual compaction at level-0 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)

View File

@ -0,0 +1,8 @@
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)

Binary file not shown.