Compare commits

...

6 Commits

40 changed files with 178 additions and 115 deletions

View File

@ -41,7 +41,7 @@ Hooks.once('init', () => {
}
/*---------------------------------------------------------------------*/
game.wfrp4e.entities.ItemWfrp4e.prototype.computeSpellDamage = function (formula, isMagicMissile) {
/* DEPRECATED : game.wfrp4e.entities.ItemWfrp4e.prototype.computeSpellDamage = function (formula, isMagicMissile) {
try {
formula = formula.toLowerCase();
@ -85,10 +85,10 @@ Hooks.once('init', () => {
catch (e) {
throw ui.notifications.error("Error: could not parse spell damage. See console for details")
}
}
}*/
/*---------------------------------------------------------------------*/
game.wfrp4e.entities.ItemWfrp4e.prototype.computeSpellPrayerFormula = function (type, aoe = false, formulaOverride) {
/* DEPRECATED : game.wfrp4e.entities.ItemWfrp4e.prototype.computeSpellPrayerFormula = function (type, aoe = false, formulaOverride) {
let formula = formulaOverride || this[type]?.value
if (Number.isNumeric(formula))
return formula
@ -134,7 +134,7 @@ Hooks.once('init', () => {
//console.log("calculateSpellAttributes -> " + formula );
return formula.capitalize();
}
}*/
/*---------------------------------------------------------------------*/
// Converters area

View File

@ -0,0 +1,23 @@
{
"label": "Tables (Starter Set)",
"mapping": {
"results": {
"path": "results",
"converter": "resultConverter"
}
},
"entries": {
"3m4LPj58xoNju80B": {
"name": "Blessures Critiques - Tête (Starter Set)"
},
"BlDLji1LeqHOVj8r": {
"name": "Blessures Critiques - Jambe (Starter Set)"
},
"yYfGtudjckO3bubF": {
"name": "Blessures Critiques - Bras (Starter Set)"
},
"yvzv7xxQuxX7N16b": {
"name": "Blessures Critiques - Corps (Starter Set)"
}
}
}

View File

@ -0,0 +1,23 @@
{
"label": "Tables (Up In Arms)",
"mapping": {
"results": {
"path": "results",
"converter": "resultConverter"
}
},
"entries": {
"Head Critical Wounds (Up In Arms)": {
"name": "Head Critical Wounds (Up In Arms)"
},
"Leg Critical Wounds (Up In Arms)": {
"name": "Leg Critical Wounds (Up In Arms)"
},
"Arm Critical Wounds (Up In Arms)": {
"name": "Arm Critical Wounds (Up In Arms)"
},
"Body Critical Wounds (Up In Arms)": {
"name": "Body Critical Wounds (Up In Arms)"
}
}
}

View File

@ -8,7 +8,7 @@
}
],
"url": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr",
"version": "7.0.15",
"version": "7.0.18",
"esmodules": [
"babele-register.js",
"addon-register.js",
@ -111,14 +111,15 @@
"aides-de-jeu-fr",
"dons-de-rhya",
"plats-dauberges"
]
],
"folders": []
}
],
"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.15.zip",
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-7.0.18.zip",
"id": "wh4-fr-translation",
"compatibility": {
"minimum": "10",
"minimum": "11",
"verified": "11"
},
"relationships": {
@ -137,4 +138,4 @@
}
]
}
}
}

View File

@ -176,6 +176,22 @@ export class WH4FRPatchConfig {
game.wfrp4e.config.species["welf"] = "Elfe Sylvain";
}
if (game.wfrp4e.config.charastericticsBonus) {
game.wfrp4e.config.charastericticsBonus =
{
"ws": "Bonus de Capacité de Combat",
"bs": "Bonus de Capacité de Tir",
"s": "Bonus de Force",
"t": "Bonus d'Endurance",
"i": "Bonus d'Initiative",
"ag": "Bonus d'Agilité",
"dex": "Bonus de Dexterité",
"int": "Bonus d'Intelligence",
"wp": "Bonus de Force Mentale",
"fel": "Bonus de Sociabilité"
}
}
if (game.wfrp4e.config.classTrappings) {
for(const c of Object.keys(game.wfrp4e.config.classTrappings)) {
game.wfrp4e.config.classTrappings[game.i18n.localize(c)] = game.wfrp4e.config.classTrappings[c];

View File

@ -52,7 +52,7 @@ import "./xregexp-all.js";
const us_carac = 'm\\s+ws\\s+bs\\s+s\\s+t\\s+i\\s+agi?\\s+dex\\s+int\\s+\\wp\\s+fel\\s+w';
const fr_carac = 'm\\s+cc\\s+ct\\s+f\\s+e\\s+i\\s+agi?\\s+dex\\s+int\\s+fm\\s+soc\\s+b';
const carac_val = '(?<m>[0-9\\-]+)\\s+(?<ws>[0-9\\-]+)\\s+(?<bs>[0-9\\-]+)\\s+(?<s>[0-9\\-]+)\\s+(?<t>[0-9\\-]+)\\s+(?<i>[0-9\\-]+)\\s+(?<ag>[0-9\\-]+)\\s+(?<dex>[0-9\\-]+)\\s+(?<int>[0-9\\-]+)\\s+(?<wp>[0-9\\-]+)\\s+(?<fel>[0-9\\-]+)\\s+(?<w>[0-9\\-\*]+)';
const name_val = '(?<name>[a-zA-Z\\s\\-,]*)[\\s\\r\\na-zA-Z]*(?<tiers>.*|[\\(\\)a-z0-9]+)';
const name_val = '(?<name>[a-zA-Z\\s\\-,\']*)[\\s\\r\\na-zA-Z]*(?<tiers>.*|[\\(\\)a-z0-9]+)';
let sectionDataFR = [
{ name: "trait", toFind: "Traits\\s*:", secondParse: '(?<name>[a-zöàéè\\s]*)[\\s\\+]*(?<value>.*|[\\+0-9]+)', index: -1 },
{ name: "skill", toFind: "Compétences\\s*:", secondParse: '(?<name>[a-zàéè\\s\\(\\)]*)[\\s\\+]*(?<value>.*|[0-9]+)', index: -1 },
@ -75,7 +75,7 @@ let sectionDataUS = [
{ name: "spelllore", toFind: "Spells\\s*\\(Lore\\s*of\\s*(?<lore>[a-z\\s]*)\\)*:", secondParse: '(?<name>[a-zö\\-\\s]*)', index: -1 }
]
let moneyUS = [ {name:" gold crown", key: "gc"}, {name: " gc", key: "gc"},
{name:" silver shilling", key:"ss"}, {name:" ss", key: "ss"}, {name:"/-", key: "ss"}, {name:" brass penny", key: "bp"}, {name:" bp", key: "bp"} ]
{name:" silver shilling", key:"ss"}, {name:" ss", key: "ss"}, {name:"/-", key: "ss"}, {name:" brass penn", key: "bp"}, {name:" bp", key: "bp"} ]
let moneyFR = [ {name:" couronnes d", key: "gc"}, {name: " co", key: "gc"},
{name:" pistoles ", key:"ss"}, {name:" pa", key: "ss"}, {name:"/-", key: "ss"}, {name:" sous de cuivre", key: "bp"}, {name:" sc", key: "bp"} ]
let regSep = XRegExp('\\s*,\\s*', 'gi'); // Term separator, with auto trim
@ -375,7 +375,7 @@ export default async function statParserFR(statString, type = "npc") {
} else {
itemFound.system.specification.value = game.i18n.localize(value)
}
itemFound.name += "(" + value + ")"
//itemFound.name += "(" + value + ")"
}
if (!itemFound)
ui.notifications.error("Trait non trouvé, à ajouter manuellement : " + name, { permanent: true })
@ -438,7 +438,7 @@ export default async function statParserFR(statString, type = "npc") {
// Searching money stuff
for (let mondeyDef of moneyLang) {
if (name.toLowerCase().includes(mondeyDef.name)) {
let regMoney = XRegExp("(\\d+)\\s+" + mondeyDef.name.trim(), 'gi')
let regMoney = XRegExp("(\\d+)\\s*" + mondeyDef.name.trim(), 'gi')
let moneyParsed = XRegExp.exec(name.toLowerCase(), regMoney)
console.log("Parsing money", name, moneyParsed)
moneys[mondeyDef.key] += (moneyParsed && moneyParsed[1]) ? Number(moneyParsed[1]) : 0

View File

@ -1 +1 @@
MANIFEST-000298
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.297188 7ffafdffa6c0 Recovering log #296
2023/10/11-22:55:17.307975 7ffafdffa6c0 Delete type=3 #294
2023/10/11-22:55:17.308100 7ffafdffa6c0 Delete type=0 #296
2023/10/11-23:48:48.301384 7ff865e026c0 Level-0 table #301: started
2023/10/11-23:48:48.301411 7ff865e026c0 Level-0 table #301: 0 bytes OK
2023/10/11-23:48:48.307533 7ff865e026c0 Delete type=0 #299
2023/10/11-23:48:48.322262 7ff865e026c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.322291 7ff865e026c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.953443 7f81077fe6c0 Recovering log #316
2023/10/19-11:08:46.964774 7f81077fe6c0 Delete type=3 #314
2023/10/19-11:08:46.964901 7f81077fe6c0 Delete type=0 #316
2023/10/19-11:10:20.709636 7f7e677006c0 Level-0 table #321: started
2023/10/19-11:10:20.709685 7f7e677006c0 Level-0 table #321: 0 bytes OK
2023/10/19-11:10:20.715704 7f7e677006c0 Delete type=0 #319
2023/10/19-11:10:20.722403 7f7e677006c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.722544 7f7e677006c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.121926 7ff867fff6c0 Recovering log #292
2023/10/11-21:14:58.133721 7ff867fff6c0 Delete type=3 #290
2023/10/11-21:14:58.133830 7ff867fff6c0 Delete type=0 #292
2023/10/11-21:31:23.896143 7ff865e026c0 Level-0 table #297: started
2023/10/11-21:31:23.896186 7ff865e026c0 Level-0 table #297: 0 bytes OK
2023/10/11-21:31:23.931933 7ff865e026c0 Delete type=0 #295
2023/10/11-21:31:24.006990 7ff865e026c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/11-21:31:24.007070 7ff865e026c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.057111 7f4c89ffb6c0 Recovering log #312
2023/10/13-16:28:21.068010 7f4c89ffb6c0 Delete type=3 #310
2023/10/13-16:28:21.068066 7f4c89ffb6c0 Delete type=0 #312
2023/10/14-11:19:49.010183 7f49ebbff6c0 Level-0 table #317: started
2023/10/14-11:19:49.010233 7f49ebbff6c0 Level-0 table #317: 0 bytes OK
2023/10/14-11:19:49.016647 7f49ebbff6c0 Delete type=0 #315
2023/10/14-11:19:49.036780 7f49ebbff6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.036835 7f49ebbff6c0 Manual compaction at level-1 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal!suuYN87Al1ZZWtQQ' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000299
MANIFEST-000319

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.310381 7ffafd7f96c0 Recovering log #297
2023/10/11-22:55:17.320551 7ffafd7f96c0 Delete type=3 #295
2023/10/11-22:55:17.320609 7ffafd7f96c0 Delete type=0 #297
2023/10/11-23:48:48.287205 7ff865e026c0 Level-0 table #302: started
2023/10/11-23:48:48.287236 7ff865e026c0 Level-0 table #302: 0 bytes OK
2023/10/11-23:48:48.294393 7ff865e026c0 Delete type=0 #300
2023/10/11-23:48:48.301256 7ff865e026c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.301301 7ff865e026c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.968605 7f8106ffd6c0 Recovering log #317
2023/10/19-11:08:46.979104 7f8106ffd6c0 Delete type=3 #315
2023/10/19-11:08:46.979193 7f8106ffd6c0 Delete type=0 #317
2023/10/19-11:10:20.695436 7f7e677006c0 Level-0 table #322: started
2023/10/19-11:10:20.695463 7f7e677006c0 Level-0 table #322: 0 bytes OK
2023/10/19-11:10:20.701565 7f7e677006c0 Delete type=0 #320
2023/10/19-11:10:20.709345 7f7e677006c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.709376 7f7e677006c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.138350 7ffafd7f96c0 Recovering log #293
2023/10/11-21:14:58.148369 7ffafd7f96c0 Delete type=3 #291
2023/10/11-21:14:58.148659 7ffafd7f96c0 Delete type=0 #293
2023/10/11-21:31:23.853759 7ff865e026c0 Level-0 table #298: started
2023/10/11-21:31:23.853829 7ff865e026c0 Level-0 table #298: 0 bytes OK
2023/10/11-21:31:23.895978 7ff865e026c0 Delete type=0 #296
2023/10/11-21:31:24.006958 7ff865e026c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/11-21:31:24.007094 7ff865e026c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.070662 7f4c88ff96c0 Recovering log #313
2023/10/13-16:28:21.084243 7f4c88ff96c0 Delete type=3 #311
2023/10/13-16:28:21.084383 7f4c88ff96c0 Delete type=0 #313
2023/10/14-11:19:49.030249 7f49ebbff6c0 Level-0 table #318: started
2023/10/14-11:19:49.030295 7f49ebbff6c0 Level-0 table #318: 0 bytes OK
2023/10/14-11:19:49.036636 7f49ebbff6c0 Delete type=0 #316
2023/10/14-11:19:49.036823 7f49ebbff6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.036870 7f49ebbff6c0 Manual compaction at level-1 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000298
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.334971 7ff867fff6c0 Recovering log #296
2023/10/11-22:55:17.346776 7ff867fff6c0 Delete type=3 #294
2023/10/11-22:55:17.346859 7ff867fff6c0 Delete type=0 #296
2023/10/11-23:48:48.307650 7ff865e026c0 Level-0 table #301: started
2023/10/11-23:48:48.307681 7ff865e026c0 Level-0 table #301: 0 bytes OK
2023/10/11-23:48:48.315242 7ff865e026c0 Delete type=0 #299
2023/10/11-23:48:48.322273 7ff865e026c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.322783 7ff865e026c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.995155 7f8105ffb6c0 Recovering log #316
2023/10/19-11:08:47.005388 7f8105ffb6c0 Delete type=3 #314
2023/10/19-11:08:47.005442 7f8105ffb6c0 Delete type=0 #316
2023/10/19-11:10:20.715823 7f7e677006c0 Level-0 table #321: started
2023/10/19-11:10:20.715852 7f7e677006c0 Level-0 table #321: 0 bytes OK
2023/10/19-11:10:20.722283 7f7e677006c0 Delete type=0 #319
2023/10/19-11:10:20.722516 7f7e677006c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.722536 7f7e677006c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.169861 7ffafcff86c0 Recovering log #292
2023/10/11-21:14:58.181832 7ffafcff86c0 Delete type=3 #290
2023/10/11-21:14:58.182015 7ffafcff86c0 Delete type=0 #292
2023/10/11-21:31:23.932150 7ff865e026c0 Level-0 table #297: started
2023/10/11-21:31:23.932216 7ff865e026c0 Level-0 table #297: 0 bytes OK
2023/10/11-21:31:23.968965 7ff865e026c0 Delete type=0 #295
2023/10/11-21:31:24.007017 7ff865e026c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/11-21:31:24.007149 7ff865e026c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.103262 7f4c897fa6c0 Recovering log #312
2023/10/13-16:28:21.121031 7f4c897fa6c0 Delete type=3 #310
2023/10/13-16:28:21.121082 7f4c897fa6c0 Delete type=0 #312
2023/10/14-11:19:49.037115 7f49ebbff6c0 Level-0 table #317: started
2023/10/14-11:19:49.037157 7f49ebbff6c0 Level-0 table #317: 0 bytes OK
2023/10/14-11:19:49.044674 7f49ebbff6c0 Delete type=0 #315
2023/10/14-11:19:49.044861 7f49ebbff6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.044895 7f49ebbff6c0 Manual compaction at level-1 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal!cZtNgayIw2QFhC9u' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000298
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.284908 7ff867fff6c0 Recovering log #296
2023/10/11-22:55:17.294836 7ff867fff6c0 Delete type=3 #294
2023/10/11-22:55:17.294902 7ff867fff6c0 Delete type=0 #296
2023/10/11-23:48:48.294503 7ff865e026c0 Level-0 table #301: started
2023/10/11-23:48:48.294529 7ff865e026c0 Level-0 table #301: 0 bytes OK
2023/10/11-23:48:48.301042 7ff865e026c0 Delete type=0 #299
2023/10/11-23:48:48.301267 7ff865e026c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.301291 7ff865e026c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.939482 7f8105ffb6c0 Recovering log #316
2023/10/19-11:08:46.949313 7f8105ffb6c0 Delete type=3 #314
2023/10/19-11:08:46.949363 7f8105ffb6c0 Delete type=0 #316
2023/10/19-11:10:20.688936 7f7e677006c0 Level-0 table #321: started
2023/10/19-11:10:20.688969 7f7e677006c0 Level-0 table #321: 0 bytes OK
2023/10/19-11:10:20.695333 7f7e677006c0 Delete type=0 #319
2023/10/19-11:10:20.709333 7f7e677006c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.709368 7f7e677006c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.107089 7ffafcff86c0 Recovering log #292
2023/10/11-21:14:58.117778 7ffafcff86c0 Delete type=3 #290
2023/10/11-21:14:58.117905 7ffafcff86c0 Delete type=0 #292
2023/10/11-21:31:23.815068 7ff865e026c0 Level-0 table #297: started
2023/10/11-21:31:23.815093 7ff865e026c0 Level-0 table #297: 0 bytes OK
2023/10/11-21:31:23.853158 7ff865e026c0 Delete type=0 #295
2023/10/11-21:31:23.853470 7ff865e026c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/11-21:31:23.853564 7ff865e026c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.042041 7f4c897fa6c0 Recovering log #312
2023/10/13-16:28:21.053124 7f4c897fa6c0 Delete type=3 #310
2023/10/13-16:28:21.053191 7f4c897fa6c0 Delete type=0 #312
2023/10/14-11:19:49.023618 7f49ebbff6c0 Level-0 table #317: started
2023/10/14-11:19:49.023662 7f49ebbff6c0 Level-0 table #317: 0 bytes OK
2023/10/14-11:19:49.030113 7f49ebbff6c0 Delete type=0 #315
2023/10/14-11:19:49.036810 7f49ebbff6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.036858 7f49ebbff6c0 Manual compaction at level-1 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal!yzw9I0r3hCK7PJnz' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000298
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.266209 7ffafcff86c0 Recovering log #296
2023/10/11-22:55:17.281214 7ffafcff86c0 Delete type=3 #294
2023/10/11-22:55:17.281272 7ffafcff86c0 Delete type=0 #296
2023/10/11-23:48:48.281025 7ff865e026c0 Level-0 table #301: started
2023/10/11-23:48:48.281102 7ff865e026c0 Level-0 table #301: 0 bytes OK
2023/10/11-23:48:48.287113 7ff865e026c0 Delete type=0 #299
2023/10/11-23:48:48.301224 7ff865e026c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.301283 7ff865e026c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.923678 7f81067fc6c0 Recovering log #316
2023/10/19-11:08:46.934876 7f81067fc6c0 Delete type=3 #314
2023/10/19-11:08:46.934971 7f81067fc6c0 Delete type=0 #316
2023/10/19-11:10:20.682121 7f7e677006c0 Level-0 table #321: started
2023/10/19-11:10:20.682211 7f7e677006c0 Level-0 table #321: 0 bytes OK
2023/10/19-11:10:20.688833 7f7e677006c0 Delete type=0 #319
2023/10/19-11:10:20.709319 7f7e677006c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.709361 7f7e677006c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.092033 7ffafdffa6c0 Recovering log #292
2023/10/11-21:14:58.102808 7ffafdffa6c0 Delete type=3 #290
2023/10/11-21:14:58.102982 7ffafdffa6c0 Delete type=0 #292
2023/10/11-21:31:23.777784 7ff865e026c0 Level-0 table #297: started
2023/10/11-21:31:23.777834 7ff865e026c0 Level-0 table #297: 0 bytes OK
2023/10/11-21:31:23.814914 7ff865e026c0 Delete type=0 #295
2023/10/11-21:31:23.853440 7ff865e026c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/11-21:31:23.853538 7ff865e026c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.026860 7f4c8a7fc6c0 Recovering log #312
2023/10/13-16:28:21.037384 7f4c8a7fc6c0 Delete type=3 #310
2023/10/13-16:28:21.037699 7f4c8a7fc6c0 Delete type=0 #312
2023/10/14-11:19:49.002928 7f49ebbff6c0 Level-0 table #317: started
2023/10/14-11:19:49.002970 7f49ebbff6c0 Level-0 table #317: 0 bytes OK
2023/10/14-11:19:49.009689 7f49ebbff6c0 Delete type=0 #315
2023/10/14-11:19:49.009944 7f49ebbff6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.010002 7f49ebbff6c0 Manual compaction at level-1 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000298
MANIFEST-000318

View File

@ -1,8 +1,8 @@
2023/10/11-22:55:17.323178 7ffafcff86c0 Recovering log #296
2023/10/11-22:55:17.333063 7ffafcff86c0 Delete type=3 #294
2023/10/11-22:55:17.333136 7ffafcff86c0 Delete type=0 #296
2023/10/11-23:48:48.315450 7ff865e026c0 Level-0 table #301: started
2023/10/11-23:48:48.315773 7ff865e026c0 Level-0 table #301: 0 bytes OK
2023/10/11-23:48:48.322181 7ff865e026c0 Delete type=0 #299
2023/10/11-23:48:48.322811 7ff865e026c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/11-23:48:48.322856 7ff865e026c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/19-11:08:46.983055 7f81067fc6c0 Recovering log #316
2023/10/19-11:08:46.992141 7f81067fc6c0 Delete type=3 #314
2023/10/19-11:08:46.992183 7f81067fc6c0 Delete type=0 #316
2023/10/19-11:10:20.701671 7f7e677006c0 Level-0 table #321: started
2023/10/19-11:10:20.701694 7f7e677006c0 Level-0 table #321: 0 bytes OK
2023/10/19-11:10:20.709132 7f7e677006c0 Delete type=0 #319
2023/10/19-11:10:20.709354 7f7e677006c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/19-11:10:20.709386 7f7e677006c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/10/11-21:14:58.153045 7ffafdffa6c0 Recovering log #292
2023/10/11-21:14:58.164845 7ffafdffa6c0 Delete type=3 #290
2023/10/11-21:14:58.165021 7ffafdffa6c0 Delete type=0 #292
2023/10/11-21:31:23.969144 7ff865e026c0 Level-0 table #297: started
2023/10/11-21:31:23.969192 7ff865e026c0 Level-0 table #297: 0 bytes OK
2023/10/11-21:31:24.006733 7ff865e026c0 Delete type=0 #295
2023/10/11-21:31:24.007046 7ff865e026c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/11-21:31:24.007121 7ff865e026c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/13-16:28:21.088262 7f4c8a7fc6c0 Recovering log #312
2023/10/13-16:28:21.100561 7f4c8a7fc6c0 Delete type=3 #310
2023/10/13-16:28:21.100612 7f4c8a7fc6c0 Delete type=0 #312
2023/10/14-11:19:49.016843 7f49ebbff6c0 Level-0 table #317: started
2023/10/14-11:19:49.016902 7f49ebbff6c0 Level-0 table #317: 0 bytes OK
2023/10/14-11:19:49.023489 7f49ebbff6c0 Delete type=0 #315
2023/10/14-11:19:49.036796 7f49ebbff6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)
2023/10/14-11:19:49.036847 7f49ebbff6c0 Manual compaction at level-1 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal!yfZxl4I7XAuUF6r3' @ 0 : 0; will stop at (end)

Binary file not shown.