Compare commits

..

6 Commits

Author SHA1 Message Date
4ee45273b3 COrrection sur Natation - again 2025-10-13 20:59:50 +02:00
94ca8cb6ea Align to v9.2.X 2025-09-23 16:44:41 +02:00
6af8d03d22 Fix natation/swim 2025-07-25 15:03:04 +02:00
7afcadfb6f Fix natation/swim 2025-07-25 10:51:41 +02:00
5801a5270f Fix translated talents ... 2025-07-20 10:17:55 +02:00
f8908617a1 Fix translated talents ... 2025-07-20 10:17:37 +02:00
34 changed files with 110 additions and 95 deletions

10
fr.json
View File

@@ -314,6 +314,10 @@
"SHEET.NPCSheetNoTheme":"Fiche de PNJ (sans thème)",
"SHEET.VehicleSheet":"Fiche de véhicule",
"SHEET.VehicleSheetNoTheme":"Fiche de véhicule (sans thème)",
"SHEET.Append":"Ajouter après",
"SHEET.Prepend":"Ajouter avant",
"SHEET.SkillName":"Nom de la compétence",
"SHEET.TalentName":"Nom du Talent",
"SHEETS.Actor.vehicle":"Fiche de Véhicule",
"SHEETS.Item.ammunition":"Fiche de Munitions",
@@ -645,6 +649,7 @@
"Hide": "Cacher",
"Targets": "Cibles",
"Melee": "Corps à corps",
"Swim":" Natation",
"Cost": "Prix",
"Length": "Longueur",
"Cargo": "Cargaison",
@@ -737,7 +742,6 @@
"Stat Block Parser":"Parser de fiches de PNJ",
"Submit":"Soumettre",
"SuccessLevels":"DR",
"Swim":"Nager",
"TBRed":"BE",
"TookDamage":"Encaisse {damage} dommages",
"ToughnessDesc":"Endurance",
@@ -1184,6 +1188,7 @@
"CHAT.Vital":"Vital",
"CHAT.DiseaseRollError":"Une erreur s'est produite lors du jet d'incubation ou de durée de la maladie.",
"CHAT.ExpReceivedNoReason":"Vous avez reçu <b>{amount}</b> points d'expérience",
"CHAT.CriticalDeflection":"Déviation de Critique",
"Error.SpeciesSkills" : "Impossible d'ajouter des compétences pour les races",
"Error.SpeciesTalents" : "Impossible d'ajouter des talents pour les races",
@@ -2696,6 +2701,9 @@
"major":"Majeur",
"minor":"Mineur",
"moderate":"Modéré",
"DurationPlaceholder":"Texte concernant a durée",
"ErrorArmourDamagePermission":"Vous n'avez pas les droits pour endommager l'armure de cet acteur.",
"IncubationPlaceholder":"Texte concernant l'incubation",
"WH":{
"TransferType":{

View File

@@ -8,7 +8,7 @@
}
],
"url": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr",
"version": "9.1.3",
"version": "9.2.1",
"esmodules": [
"modules/babele-register.js",
"modules/addon-register.js",
@@ -119,7 +119,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-9-1-3.zip",
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-9-2-1.zip",
"id": "wh4-fr-translation",
"compatibility": {
"minimum": "13",

View File

@@ -8,8 +8,11 @@ export class WH4FRPatchConfig {
let newList = [];
for( let compName of skillList) {
// Trim compName
compName = compName.trim();
let special = "";
let newName = compName;
let baseName = compName
if ( compName.includes("(") && compName.includes(")") ) { // Then process specific skills name with (xxxx) inside
let re = /(.*) +\((.*)\)/i;
let res = re.exec( compName );
@@ -20,6 +23,10 @@ export class WH4FRPatchConfig {
if (compNameFR.name != compName) { // Translation OK
newName = compNameFR.name + special;
}
// DEBUG console.log("Translating skill ", compName, baseName, " to ", newName, special);
if ( !newName || newName == "" || newName === undefined || newName === "undefined" ) { // If no translation, keep the original name
newName = baseName; // If no translation, keep the original name
}
newList.push(newName);
}
return newList;

File diff suppressed because one or more lines are too long

View File

@@ -1 +1 @@
MANIFEST-001142
MANIFEST-001210

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.538144 7ff25affd6c0 Recovering log #1140
2025/06/04-19:41:39.549313 7ff25affd6c0 Delete type=3 #1138
2025/06/04-19:41:39.549457 7ff25affd6c0 Delete type=0 #1140
2025/06/04-19:57:50.962467 7ff25a3ff6c0 Level-0 table #1145: started
2025/06/04-19:57:50.962508 7ff25a3ff6c0 Level-0 table #1145: 0 bytes OK
2025/06/04-19:57:50.968762 7ff25a3ff6c0 Delete type=0 #1143
2025/06/04-19:57:50.982716 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.026251 7f189ffff6c0 Recovering log #1208
2025/10/13-20:51:30.036172 7f189ffff6c0 Delete type=3 #1206
2025/10/13-20:51:30.036225 7f189ffff6c0 Delete type=0 #1208
2025/10/13-20:58:55.958283 7f189e7fc6c0 Level-0 table #1213: started
2025/10/13-20:58:55.958313 7f189e7fc6c0 Level-0 table #1213: 0 bytes OK
2025/10/13-20:58:55.964593 7f189e7fc6c0 Delete type=0 #1211
2025/10/13-20:58:55.985538 7f189e7fc6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/04-19:39:36.647042 7ff25bfff6c0 Recovering log #1136
2025/06/04-19:39:36.657683 7ff25bfff6c0 Delete type=3 #1134
2025/06/04-19:39:36.657749 7ff25bfff6c0 Delete type=0 #1136
2025/06/04-19:39:59.536407 7ff25a3ff6c0 Level-0 table #1141: started
2025/06/04-19:39:59.536481 7ff25a3ff6c0 Level-0 table #1141: 0 bytes OK
2025/06/04-19:39:59.543440 7ff25a3ff6c0 Delete type=0 #1139
2025/06/04-19:39:59.565026 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.059843 7f189f7fe6c0 Recovering log #1204
2025/10/13-20:40:04.069741 7f189f7fe6c0 Delete type=3 #1202
2025/10/13-20:40:04.069791 7f189f7fe6c0 Delete type=0 #1204
2025/10/13-20:45:59.586645 7f189e7fc6c0 Level-0 table #1209: started
2025/10/13-20:45:59.586692 7f189e7fc6c0 Level-0 table #1209: 0 bytes OK
2025/10/13-20:45:59.620022 7f189e7fc6c0 Delete type=0 #1207
2025/10/13-20:45:59.620203 7f189e7fc6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-001144
MANIFEST-001212

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.552657 7ff25bfff6c0 Recovering log #1142
2025/06/04-19:41:39.562973 7ff25bfff6c0 Delete type=3 #1140
2025/06/04-19:41:39.563043 7ff25bfff6c0 Delete type=0 #1142
2025/06/04-19:57:50.982905 7ff25a3ff6c0 Level-0 table #1147: started
2025/06/04-19:57:50.982939 7ff25a3ff6c0 Level-0 table #1147: 0 bytes OK
2025/06/04-19:57:50.990059 7ff25a3ff6c0 Delete type=0 #1145
2025/06/04-19:57:51.012060 7ff25a3ff6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.039766 7f189ffff6c0 Recovering log #1210
2025/10/13-20:51:30.049183 7f189ffff6c0 Delete type=3 #1208
2025/10/13-20:51:30.049237 7f189ffff6c0 Delete type=0 #1210
2025/10/13-20:58:55.972493 7f189e7fc6c0 Level-0 table #1215: started
2025/10/13-20:58:55.972514 7f189e7fc6c0 Level-0 table #1215: 0 bytes OK
2025/10/13-20:58:55.978671 7f189e7fc6c0 Delete type=0 #1213
2025/10/13-20:58:55.985570 7f189e7fc6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/04-19:39:36.661476 7ff25affd6c0 Recovering log #1138
2025/06/04-19:39:36.671782 7ff25affd6c0 Delete type=3 #1136
2025/06/04-19:39:36.671934 7ff25affd6c0 Delete type=0 #1138
2025/06/04-19:39:59.550475 7ff25a3ff6c0 Level-0 table #1143: started
2025/06/04-19:39:59.550504 7ff25a3ff6c0 Level-0 table #1143: 0 bytes OK
2025/06/04-19:39:59.558216 7ff25a3ff6c0 Delete type=0 #1141
2025/06/04-19:39:59.565076 7ff25a3ff6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.073059 7f189f7fe6c0 Recovering log #1206
2025/10/13-20:40:04.082320 7f189f7fe6c0 Delete type=3 #1204
2025/10/13-20:40:04.082396 7f189f7fe6c0 Delete type=0 #1206
2025/10/13-20:45:59.620883 7f189e7fc6c0 Level-0 table #1211: started
2025/10/13-20:45:59.620913 7f189e7fc6c0 Level-0 table #1211: 0 bytes OK
2025/10/13-20:45:59.655200 7f189e7fc6c0 Delete type=0 #1209
2025/10/13-20:45:59.655399 7f189e7fc6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-001142
MANIFEST-001210

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.579753 7ff25b7fe6c0 Recovering log #1140
2025/06/04-19:41:39.591676 7ff25b7fe6c0 Delete type=3 #1138
2025/06/04-19:41:39.591835 7ff25b7fe6c0 Delete type=0 #1140
2025/06/04-19:57:50.990284 7ff25a3ff6c0 Level-0 table #1145: started
2025/06/04-19:57:50.990348 7ff25a3ff6c0 Level-0 table #1145: 0 bytes OK
2025/06/04-19:57:50.997867 7ff25a3ff6c0 Delete type=0 #1143
2025/06/04-19:57:51.012102 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.065149 7f18a4ffa6c0 Recovering log #1208
2025/10/13-20:51:30.074202 7f18a4ffa6c0 Delete type=3 #1206
2025/10/13-20:51:30.074263 7f18a4ffa6c0 Delete type=0 #1208
2025/10/13-20:58:55.985678 7f189e7fc6c0 Level-0 table #1213: started
2025/10/13-20:58:55.985714 7f189e7fc6c0 Level-0 table #1213: 0 bytes OK
2025/10/13-20:58:55.992909 7f189e7fc6c0 Delete type=0 #1211
2025/10/13-20:58:56.016686 7f189e7fc6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/04-19:39:36.690188 7ff25affd6c0 Recovering log #1136
2025/06/04-19:39:36.700266 7ff25affd6c0 Delete type=3 #1134
2025/06/04-19:39:36.700336 7ff25affd6c0 Delete type=0 #1136
2025/06/04-19:39:59.558368 7ff25a3ff6c0 Level-0 table #1141: started
2025/06/04-19:39:59.558395 7ff25a3ff6c0 Level-0 table #1141: 0 bytes OK
2025/06/04-19:39:59.564814 7ff25a3ff6c0 Delete type=0 #1139
2025/06/04-19:39:59.565096 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.098338 7f18a4ffa6c0 Recovering log #1204
2025/10/13-20:40:04.107962 7f18a4ffa6c0 Delete type=3 #1202
2025/10/13-20:40:04.108019 7f18a4ffa6c0 Delete type=0 #1204
2025/10/13-20:45:59.692466 7f189e7fc6c0 Level-0 table #1209: started
2025/10/13-20:45:59.692489 7f189e7fc6c0 Level-0 table #1209: 0 bytes OK
2025/10/13-20:45:59.729240 7f189e7fc6c0 Delete type=0 #1207
2025/10/13-20:45:59.729423 7f189e7fc6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-001142
MANIFEST-001210

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.525306 7ff2609fa6c0 Recovering log #1140
2025/06/04-19:41:39.534933 7ff2609fa6c0 Delete type=3 #1138
2025/06/04-19:41:39.535006 7ff2609fa6c0 Delete type=0 #1140
2025/06/04-19:57:50.975975 7ff25a3ff6c0 Level-0 table #1145: started
2025/06/04-19:57:50.976033 7ff25a3ff6c0 Level-0 table #1145: 0 bytes OK
2025/06/04-19:57:50.982538 7ff25a3ff6c0 Delete type=0 #1143
2025/06/04-19:57:50.982740 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.014097 7f189ffff6c0 Recovering log #1208
2025/10/13-20:51:30.023727 7f189ffff6c0 Delete type=3 #1206
2025/10/13-20:51:30.023794 7f189ffff6c0 Delete type=0 #1208
2025/10/13-20:58:55.964704 7f189e7fc6c0 Level-0 table #1213: started
2025/10/13-20:58:55.964734 7f189e7fc6c0 Level-0 table #1213: 0 bytes OK
2025/10/13-20:58:55.972375 7f189e7fc6c0 Delete type=0 #1211
2025/10/13-20:58:55.985556 7f189e7fc6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/04-19:39:36.632014 7ff2609fa6c0 Recovering log #1136
2025/06/04-19:39:36.643639 7ff2609fa6c0 Delete type=3 #1134
2025/06/04-19:39:36.643779 7ff2609fa6c0 Delete type=0 #1136
2025/06/04-19:39:59.529217 7ff25a3ff6c0 Level-0 table #1141: started
2025/06/04-19:39:59.529246 7ff25a3ff6c0 Level-0 table #1141: 0 bytes OK
2025/06/04-19:39:59.535955 7ff25a3ff6c0 Delete type=0 #1139
2025/06/04-19:39:59.536241 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.047360 7f189f7fe6c0 Recovering log #1204
2025/10/13-20:40:04.057386 7f189f7fe6c0 Delete type=3 #1202
2025/10/13-20:40:04.057445 7f189f7fe6c0 Delete type=0 #1204
2025/10/13-20:45:59.550286 7f189e7fc6c0 Level-0 table #1209: started
2025/10/13-20:45:59.550321 7f189e7fc6c0 Level-0 table #1209: 0 bytes OK
2025/10/13-20:45:59.585680 7f189e7fc6c0 Delete type=0 #1207
2025/10/13-20:45:59.585866 7f189e7fc6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-001142
MANIFEST-001210

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.510754 7ff25affd6c0 Recovering log #1140
2025/06/04-19:41:39.521463 7ff25affd6c0 Delete type=3 #1138
2025/06/04-19:41:39.521531 7ff25affd6c0 Delete type=0 #1140
2025/06/04-19:57:50.969079 7ff25a3ff6c0 Level-0 table #1145: started
2025/06/04-19:57:50.969151 7ff25a3ff6c0 Level-0 table #1145: 0 bytes OK
2025/06/04-19:57:50.975744 7ff25a3ff6c0 Delete type=0 #1143
2025/06/04-19:57:50.982728 7ff25a3ff6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.000150 7f18a4ffa6c0 Recovering log #1208
2025/10/13-20:51:30.010745 7f18a4ffa6c0 Delete type=3 #1206
2025/10/13-20:51:30.010844 7f18a4ffa6c0 Delete type=0 #1208
2025/10/13-20:58:55.951435 7f189e7fc6c0 Level-0 table #1213: started
2025/10/13-20:58:55.951483 7f189e7fc6c0 Level-0 table #1213: 0 bytes OK
2025/10/13-20:58:55.957942 7f189e7fc6c0 Delete type=0 #1211
2025/10/13-20:58:55.958168 7f189e7fc6c0 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 @@
2025/06/04-19:39:36.618882 7ff25b7fe6c0 Recovering log #1136
2025/06/04-19:39:36.628823 7ff25b7fe6c0 Delete type=3 #1134
2025/06/04-19:39:36.628913 7ff25b7fe6c0 Delete type=0 #1136
2025/06/04-19:39:59.522519 7ff25a3ff6c0 Level-0 table #1141: started
2025/06/04-19:39:59.522571 7ff25a3ff6c0 Level-0 table #1141: 0 bytes OK
2025/06/04-19:39:59.529048 7ff25a3ff6c0 Delete type=0 #1139
2025/06/04-19:39:59.536218 7ff25a3ff6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.033243 7f18a4ffa6c0 Recovering log #1204
2025/10/13-20:40:04.043812 7f18a4ffa6c0 Delete type=3 #1202
2025/10/13-20:40:04.043882 7f18a4ffa6c0 Delete type=0 #1204
2025/10/13-20:45:59.516419 7f189e7fc6c0 Level-0 table #1209: started
2025/10/13-20:45:59.516460 7f189e7fc6c0 Level-0 table #1209: 0 bytes OK
2025/10/13-20:45:59.549549 7f189e7fc6c0 Delete type=0 #1207
2025/10/13-20:45:59.549682 7f189e7fc6c0 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-000785
MANIFEST-000853

View File

@@ -1,7 +1,7 @@
2025/06/04-19:41:39.566007 7ff25affd6c0 Recovering log #783
2025/06/04-19:41:39.575843 7ff25affd6c0 Delete type=3 #781
2025/06/04-19:41:39.575932 7ff25affd6c0 Delete type=0 #783
2025/06/04-19:57:51.004365 7ff25a3ff6c0 Level-0 table #788: started
2025/06/04-19:57:51.004432 7ff25a3ff6c0 Level-0 table #788: 0 bytes OK
2025/06/04-19:57:51.011786 7ff25a3ff6c0 Delete type=0 #786
2025/06/04-19:57:51.012158 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
2025/10/13-20:51:30.051499 7f18a4ffa6c0 Recovering log #851
2025/10/13-20:51:30.062133 7f18a4ffa6c0 Delete type=3 #849
2025/10/13-20:51:30.062204 7f18a4ffa6c0 Delete type=0 #851
2025/10/13-20:58:55.978922 7f189e7fc6c0 Level-0 table #856: started
2025/10/13-20:58:55.978979 7f189e7fc6c0 Level-0 table #856: 0 bytes OK
2025/10/13-20:58:55.985424 7f189e7fc6c0 Delete type=0 #854
2025/10/13-20:58:55.985583 7f189e7fc6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/04-19:39:36.675374 7ff25bfff6c0 Recovering log #779
2025/06/04-19:39:36.686819 7ff25bfff6c0 Delete type=3 #777
2025/06/04-19:39:36.686965 7ff25bfff6c0 Delete type=0 #779
2025/06/04-19:39:59.543592 7ff25a3ff6c0 Level-0 table #784: started
2025/06/04-19:39:59.543622 7ff25a3ff6c0 Level-0 table #784: 0 bytes OK
2025/06/04-19:39:59.550325 7ff25a3ff6c0 Delete type=0 #782
2025/06/04-19:39:59.565053 7ff25a3ff6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
2025/10/13-20:40:04.084989 7f18a4ffa6c0 Recovering log #847
2025/10/13-20:40:04.095584 7f18a4ffa6c0 Delete type=3 #845
2025/10/13-20:40:04.095650 7f18a4ffa6c0 Delete type=0 #847
2025/10/13-20:45:59.656500 7f189e7fc6c0 Level-0 table #852: started
2025/10/13-20:45:59.656553 7f189e7fc6c0 Level-0 table #852: 0 bytes OK
2025/10/13-20:45:59.691824 7f189e7fc6c0 Delete type=0 #850
2025/10/13-20:45:59.691954 7f189e7fc6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)