Move to new compendiums

This commit is contained in:
LeRatierBretonnien 2024-11-19 23:54:30 +01:00
parent ad488bb36d
commit 434a18b284
90 changed files with 367 additions and 360 deletions

View File

@ -10,7 +10,7 @@ export class VadentisActorSheet extends ActorSheet {
/** @override */
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["vadentis", "sheet", "actor"],
template: "systems/foundryvtt-vadentis/templates/actor-sheet.html",
width: 680,

View File

@ -30,7 +30,7 @@ export class VadentisActor extends Actor {
if (data instanceof Array) {
return super.create(data, options);
}
// If the created actor has items (only applicable to duplicated actors) bypass the new actor creation logic
// If the created actor has items (only applicable to foundry.utils.duplicated actors) bypass the new actor creation logic
if (data.items) {
let actor = super.create(data, options);
return actor;
@ -46,48 +46,48 @@ export class VadentisActor extends Actor {
/* -------------------------------------------- */
getCompetences() {
return duplicate( this.items.filter( item => item.type == 'competence') || [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'competence') || [] );
}
/* -------------------------------------------- */
getDonnees() {
return duplicate( this.items.filter( item => item.type == 'donnee')|| [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'donnee')|| [] );
}
/* -------------------------------------------- */
getEglises() {
return duplicate( this.items.filter( item => item.type == 'eglise')|| [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'eglise')|| [] );
}
/* -------------------------------------------- */
getSorts() {
return duplicate( this.items.filter( item => item.type == 'sort')|| [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'sort')|| [] );
}
/* -------------------------------------------- */
getAttributs() {
return duplicate( this.items.filter( item => item.type == 'attribut')|| [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'attribut')|| [] );
}
/* -------------------------------------------- */
getTechniques() {
return duplicate( this.items.filter( item => item.type == 'technique') || [] );
return foundry.utils.duplicate( this.items.filter( item => item.type == 'technique') || [] );
}
/* -------------------------------------------- */
getDevotions() {
return duplicate(this.items.filter( item => item.type == 'devotion')|| [] );
return foundry.utils.duplicate(this.items.filter( item => item.type == 'devotion')|| [] );
}
/* -------------------------------------------- */
getEquipements() {
return duplicate(this.items.filter( item => item.type == 'equipement' ) || [] );
return foundry.utils.duplicate(this.items.filter( item => item.type == 'equipement' ) || [] );
}
/* -------------------------------------------- */
getArmes() {
return duplicate(this.items.filter( item => item.type == 'armecc' || item.type == 'tir' ) || [] );
return foundry.utils.duplicate(this.items.filter( item => item.type == 'armecc' || item.type == 'tir' ) || [] );
}
/* -------------------------------------------- */
getArmures() {
return duplicate(this.items.filter( item => item.type == 'armurebouclier' ) || [] );
return foundry.utils.duplicate(this.items.filter( item => item.type == 'armurebouclier' ) || [] );
}
/* -------------------------------------------- */
getMonnaies() {
return duplicate(this.items.filter( item => item.type == 'monnaie' ) || [] );
return foundry.utils.duplicate(this.items.filter( item => item.type == 'monnaie' ) || [] );
}
/* -------------------------------------------- */
@ -291,7 +291,7 @@ export class VadentisActor extends Actor {
async rollSort( sortId ) {
let sort = this.items.get( sortId );
if ( sort ) {
sort = duplicate(sort)
sort = foundry.utils.duplicate(sort)
this.processSortDevotion( "sort", sort);
}
}
@ -300,7 +300,7 @@ export class VadentisActor extends Actor {
async rollDevotion( devotionId ) {
let devotion = this.items.get( devotionId );
if ( devotion ) {
devotion = duplicate(devotion)
devotion = foundry.utils.duplicate(devotion)
this.processSortDevotion( "devotion", devotion);
}
}
@ -316,7 +316,7 @@ export class VadentisActor extends Actor {
async rollTechnique( techniqueId ) {
let technique = this.items.get( techniqueId )
if (technique) {
technique = duplicate(technique)
technique = foundry.utils.duplicate(technique)
let msgData = {
alias: this.name,
img: technique.img,
@ -344,7 +344,7 @@ export class VadentisActor extends Actor {
console.log(competenceId)
let competence = this.items.get( competenceId);
if ( competence) {
competence = duplicate(competence)
competence = foundry.utils.duplicate(competence)
let msgData = {
alias: this.name,
img: competence.img,
@ -424,7 +424,7 @@ export class VadentisActor extends Actor {
async incrementeArgent( arme ) {
let monnaie = this.items.find( item => item.type == 'monnaie' && item.name == arme.name);
if (monnaie) {
monnaie = duplicate(monnaie)
monnaie = foundry.utils.duplicate(monnaie)
let newValeur = monnaie.system.nombre + 1;
await this.updateEmbeddedDocuments( 'Item', [{ _id: monnaie._id, 'system.nombre': newValeur }] );
}
@ -433,7 +433,7 @@ export class VadentisActor extends Actor {
async decrementeArgent( arme ) {
let monnaie = this.items.find( item => item.type == 'monnaie' && item.name == arme.name);
if (monnaie) {
monnaie = duplicate(monnaie)
monnaie = foundry.utils.duplicate(monnaie)
let newValeur = monnaie.system.nombre - 1;
newValeur = (newValeur <= 0) ? 0 : newValeur;
await this.updateEmbeddedDocuments( "Item", [{ _id: monnaie._id, 'system.nombre': newValeur }] );
@ -444,7 +444,7 @@ export class VadentisActor extends Actor {
async incrementeMunition( arme ) {
let armeTir = this.items.find( item => item.type == 'tir' && item.name == arme.name);
if (armeTir) {
armeTir = duplicate(armeTir)
armeTir = foundry.utils.duplicate(armeTir)
let newMunition = armeTir.system.munition + 1;
await this.updateEmbeddedDocuments( "Item", [{ _id: armeTir._id, 'system.munition': newMunition }] );
}
@ -453,7 +453,7 @@ export class VadentisActor extends Actor {
async decrementeMunition( arme ) {
let armeTir = this.items.find( item => item.type == 'tir' && item.name == arme.name);
if (armeTir) {
armeTir = duplicate(armeTir)
armeTir = foundry.utils.duplicate(armeTir)
let newMunition = armeTir.system.munition - 1;
newMunition = (newMunition <= 0) ? 0 : newMunition;
await this.updateEmbeddedDocuments( "Item", [{ _id: armeTir._id, 'system.munition': newMunition } ]);
@ -464,7 +464,7 @@ export class VadentisActor extends Actor {
async incrementeQuantite( objet ) {
let objetQ = this.items.find( item => item._id == objet._id );
if (objetQ) {
objetQ = duplicate(objetQ)
objetQ = foundry.utils.duplicate(objetQ)
let newQ = objetQ.system.quantite + 1;
await this.updateEmbeddedDocuments( "Item", [{ _id: objetQ._id, 'system.quantite': newQ } ] );
}
@ -474,7 +474,7 @@ export class VadentisActor extends Actor {
async decrementeQuantite( objet ) {
let objetQ = this.items.find( item => item._id == objet._id );
if (objetQ) {
objetQ = duplicate(objetQ)
objetQ = foundry.utils.duplicate(objetQ)
let newQ = objetQ.system.quantite - 1;
newQ = (newQ <= 0) ? 0 : newQ;
await this.updateEmbeddedDocuments( "Item", [{ _id: objetQ._id, 'system.quantite': newQ } ]);
@ -488,7 +488,7 @@ export class VadentisActor extends Actor {
if ( target ) {
let arme = this.items.find( item => (item.type == 'armecc' || item.type == 'tir') && item.id == armeId);
if (arme) {
arme = duplicate(arme)
arme = foundry.utils.duplicate(arme)
if ( arme.type == 'tir' && arme.system.munition <= 0 ) {
ui.notifications.warn("Vous n'avez plus de munitions avec cette arme.");
return;
@ -496,7 +496,7 @@ export class VadentisActor extends Actor {
let combatData = {
attackerActorId: this.id,
targetActorId: target.actor.id,
arme: duplicate(arme)
arme: foundry.utils.duplicate(arme)
}
if (game.user.isGM) {
VadentisUtility.performAttack( combatData);

View File

@ -23,7 +23,7 @@ export class VadentisCombat extends Combat {
// Send a chat message
let rollMode = messageOptions.rollMode || game.settings.get("core", "rollMode");
let messageData = mergeObject(
let messageData = foundry.utils.mergeObject(
{
speaker: {
scene: canvas.scene.id,

View File

@ -8,7 +8,7 @@ export class VadentisItemSheet extends ItemSheet {
/** @override */
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["foundryvtt-vadentis", "sheet", "item"],
template: "systems/foundryvtt-vadentis/templates/item-sheet.html",
width: 550,

View File

@ -6,6 +6,13 @@ export class VadentisUtility {
/* -------------------------------------------- */
static async preloadHandlebarsTemplates() {
// Handle v12 removal of this helper
Handlebars.registerHelper('select', function (selected, options) {
const escapedValue = RegExp.escape(Handlebars.escapeExpression(selected));
const rgx = new RegExp(' value=[\"\']' + escapedValue + '[\"\']');
const html = options.fn(this);
return html.replace(rgx, "$& selected");
});
const templatePaths = [
'systems/foundryvtt-vadentis/templates/actor-sheet.html',
@ -84,7 +91,7 @@ export class VadentisUtility {
/* -------------------------------------------- */
static async processRoll(formula, rollMode) {
let myRoll = new Roll(formula);
myRoll.roll( { async: false} );
await myRoll.roll();
if (game.modules.get("dice-so-nice")?.active) {
await game.dice3d.showForRoll(myRoll, game.user, true);
}

View File

@ -1 +1 @@
MANIFEST-000117
MANIFEST-000121

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.856139 7fa1053f96c0 Recovering log #115
2024/11/19-23:17:43.866464 7fa1053f96c0 Delete type=3 #113
2024/11/19-23:17:43.866517 7fa1053f96c0 Delete type=0 #115
2024/11/19-23:38:11.014992 7fa0ff3ff6c0 Level-0 table #120: started
2024/11/19-23:38:11.015024 7fa0ff3ff6c0 Level-0 table #120: 0 bytes OK
2024/11/19-23:38:11.049336 7fa0ff3ff6c0 Delete type=0 #118
2024/11/19-23:38:11.254727 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!2kE4DZEroVJcotCG' @ 72057594037927935 : 1 .. '!items!yAxHWBTO5DJ3PKod' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.365245 7fa1053f96c0 Recovering log #119
2024/11/19-23:44:40.375278 7fa1053f96c0 Delete type=3 #117
2024/11/19-23:44:40.375368 7fa1053f96c0 Delete type=0 #119
2024/11/19-23:54:21.222520 7fa0ff3ff6c0 Level-0 table #124: started
2024/11/19-23:54:21.222546 7fa0ff3ff6c0 Level-0 table #124: 0 bytes OK
2024/11/19-23:54:21.253824 7fa0ff3ff6c0 Delete type=0 #122
2024/11/19-23:54:21.395591 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!2kE4DZEroVJcotCG' @ 72057594037927935 : 1 .. '!items!yAxHWBTO5DJ3PKod' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.785474 7fa105bfa6c0 Recovering log #111
2024/11/19-22:33:16.795224 7fa105bfa6c0 Delete type=3 #109
2024/11/19-22:33:16.795283 7fa105bfa6c0 Delete type=0 #111
2024/11/19-22:41:18.542597 7fa0ff3ff6c0 Level-0 table #116: started
2024/11/19-22:41:18.542627 7fa0ff3ff6c0 Level-0 table #116: 0 bytes OK
2024/11/19-22:41:18.548585 7fa0ff3ff6c0 Delete type=0 #114
2024/11/19-22:41:18.561962 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!2kE4DZEroVJcotCG' @ 72057594037927935 : 1 .. '!items!yAxHWBTO5DJ3PKod' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.856139 7fa1053f96c0 Recovering log #115
2024/11/19-23:17:43.866464 7fa1053f96c0 Delete type=3 #113
2024/11/19-23:17:43.866517 7fa1053f96c0 Delete type=0 #115
2024/11/19-23:38:11.014992 7fa0ff3ff6c0 Level-0 table #120: started
2024/11/19-23:38:11.015024 7fa0ff3ff6c0 Level-0 table #120: 0 bytes OK
2024/11/19-23:38:11.049336 7fa0ff3ff6c0 Delete type=0 #118
2024/11/19-23:38:11.254727 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!2kE4DZEroVJcotCG' @ 72057594037927935 : 1 .. '!items!yAxHWBTO5DJ3PKod' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000116
MANIFEST-000120

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.868804 7fa104bf86c0 Recovering log #114
2024/11/19-23:17:43.878498 7fa104bf86c0 Delete type=3 #112
2024/11/19-23:17:43.878554 7fa104bf86c0 Delete type=0 #114
2024/11/19-23:38:11.078913 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:11.078950 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.254505 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254753 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0QCeV9EpbTodw6k5' @ 72057594037927935 : 1 .. '!items!vPHsctPv8Cj1SjVM' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.378128 7fa104bf86c0 Recovering log #118
2024/11/19-23:44:40.388150 7fa104bf86c0 Delete type=3 #116
2024/11/19-23:44:40.388203 7fa104bf86c0 Delete type=0 #118
2024/11/19-23:54:21.253958 7fa0ff3ff6c0 Level-0 table #123: started
2024/11/19-23:54:21.253984 7fa0ff3ff6c0 Level-0 table #123: 0 bytes OK
2024/11/19-23:54:21.298347 7fa0ff3ff6c0 Delete type=0 #121
2024/11/19-23:54:21.395603 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0QCeV9EpbTodw6k5' @ 72057594037927935 : 1 .. '!items!vPHsctPv8Cj1SjVM' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.797576 7fa1053f96c0 Recovering log #110
2024/11/19-22:33:16.808073 7fa1053f96c0 Delete type=3 #108
2024/11/19-22:33:16.808131 7fa1053f96c0 Delete type=0 #110
2024/11/19-22:41:18.548678 7fa0ff3ff6c0 Level-0 table #115: started
2024/11/19-22:41:18.548703 7fa0ff3ff6c0 Level-0 table #115: 0 bytes OK
2024/11/19-22:41:18.555033 7fa0ff3ff6c0 Delete type=0 #113
2024/11/19-22:41:18.561983 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0QCeV9EpbTodw6k5' @ 72057594037927935 : 1 .. '!items!vPHsctPv8Cj1SjVM' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.868804 7fa104bf86c0 Recovering log #114
2024/11/19-23:17:43.878498 7fa104bf86c0 Delete type=3 #112
2024/11/19-23:17:43.878554 7fa104bf86c0 Delete type=0 #114
2024/11/19-23:38:11.078913 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:11.078950 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.254505 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254753 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0QCeV9EpbTodw6k5' @ 72057594037927935 : 1 .. '!items!vPHsctPv8Cj1SjVM' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000117
MANIFEST-000121

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.798993 7fa0fffff6c0 Recovering log #115
2024/11/19-23:17:43.808624 7fa0fffff6c0 Delete type=3 #113
2024/11/19-23:17:43.808674 7fa0fffff6c0 Delete type=0 #115
2024/11/19-23:38:10.859732 7fa0ff3ff6c0 Level-0 table #120: started
2024/11/19-23:38:10.859764 7fa0ff3ff6c0 Level-0 table #120: 0 bytes OK
2024/11/19-23:38:10.897836 7fa0ff3ff6c0 Delete type=0 #118
2024/11/19-23:38:10.972581 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0BGkxXfyGSKT7YDr' @ 72057594037927935 : 1 .. '!items!ztesHAuG7th5y6HL' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.306788 7fa0fffff6c0 Recovering log #119
2024/11/19-23:44:40.317500 7fa0fffff6c0 Delete type=3 #117
2024/11/19-23:44:40.317586 7fa0fffff6c0 Delete type=0 #119
2024/11/19-23:54:21.155899 7fa0ff3ff6c0 Level-0 table #124: started
2024/11/19-23:54:21.155978 7fa0ff3ff6c0 Level-0 table #124: 0 bytes OK
2024/11/19-23:54:21.167301 7fa0ff3ff6c0 Delete type=0 #122
2024/11/19-23:54:21.222385 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0BGkxXfyGSKT7YDr' @ 72057594037927935 : 1 .. '!items!ztesHAuG7th5y6HL' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.729282 7fa104bf86c0 Recovering log #111
2024/11/19-22:33:16.740170 7fa104bf86c0 Delete type=3 #109
2024/11/19-22:33:16.740245 7fa104bf86c0 Delete type=0 #111
2024/11/19-22:41:18.529176 7fa0ff3ff6c0 Level-0 table #116: started
2024/11/19-22:41:18.529204 7fa0ff3ff6c0 Level-0 table #116: 0 bytes OK
2024/11/19-22:41:18.535123 7fa0ff3ff6c0 Delete type=0 #114
2024/11/19-22:41:18.535269 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0BGkxXfyGSKT7YDr' @ 72057594037927935 : 1 .. '!items!ztesHAuG7th5y6HL' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.798993 7fa0fffff6c0 Recovering log #115
2024/11/19-23:17:43.808624 7fa0fffff6c0 Delete type=3 #113
2024/11/19-23:17:43.808674 7fa0fffff6c0 Delete type=0 #115
2024/11/19-23:38:10.859732 7fa0ff3ff6c0 Level-0 table #120: started
2024/11/19-23:38:10.859764 7fa0ff3ff6c0 Level-0 table #120: 0 bytes OK
2024/11/19-23:38:10.897836 7fa0ff3ff6c0 Delete type=0 #118
2024/11/19-23:38:10.972581 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0BGkxXfyGSKT7YDr' @ 72057594037927935 : 1 .. '!items!ztesHAuG7th5y6HL' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.916855 7fa104bf86c0 Recovering log #28
2024/11/19-23:17:43.927641 7fa104bf86c0 Delete type=3 #26
2024/11/19-23:17:43.927691 7fa104bf86c0 Delete type=0 #28
2024/11/19-23:38:11.292399 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.292423 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.334317 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.414041 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0jimB8DWnA96lhVe' @ 72057594037927935 : 1 .. '!folders!xOKP1pYnZ1jfQIGx' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.427761 7fa104bf86c0 Recovering log #32
2024/11/19-23:44:40.437518 7fa104bf86c0 Delete type=3 #30
2024/11/19-23:44:40.437592 7fa104bf86c0 Delete type=0 #32
2024/11/19-23:54:21.485919 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.485968 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.520659 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.520857 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0jimB8DWnA96lhVe' @ 72057594037927935 : 1 .. '!folders!xOKP1pYnZ1jfQIGx' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.849405 7fa1053f96c0 Recovering log #24
2024/11/19-22:33:16.858915 7fa1053f96c0 Delete type=3 #22
2024/11/19-22:33:16.858984 7fa1053f96c0 Delete type=0 #24
2024/11/19-22:41:18.568454 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.568495 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.575302 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.588157 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0jimB8DWnA96lhVe' @ 72057594037927935 : 1 .. '!folders!xOKP1pYnZ1jfQIGx' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.916855 7fa104bf86c0 Recovering log #28
2024/11/19-23:17:43.927641 7fa104bf86c0 Delete type=3 #26
2024/11/19-23:17:43.927691 7fa104bf86c0 Delete type=0 #28
2024/11/19-23:38:11.292399 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.292423 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.334317 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.414041 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0jimB8DWnA96lhVe' @ 72057594037927935 : 1 .. '!folders!xOKP1pYnZ1jfQIGx' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000115
MANIFEST-000119

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.810745 7fa105bfa6c0 Recovering log #113
2024/11/19-23:17:43.820849 7fa105bfa6c0 Delete type=3 #111
2024/11/19-23:17:43.820898 7fa105bfa6c0 Delete type=0 #113
2024/11/19-23:38:10.940164 7fa0ff3ff6c0 Level-0 table #118: started
2024/11/19-23:38:10.940188 7fa0ff3ff6c0 Level-0 table #118: 0 bytes OK
2024/11/19-23:38:10.972436 7fa0ff3ff6c0 Delete type=0 #116
2024/11/19-23:38:10.972602 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0tzWkCUDta6Cg5tp' @ 72057594037927935 : 1 .. '!journal.pages!zv1SXg1qCuG8O4up.GDKdaQhvwCVhH7qn' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.319984 7fa105bfa6c0 Recovering log #117
2024/11/19-23:44:40.329839 7fa105bfa6c0 Delete type=3 #115
2024/11/19-23:44:40.329926 7fa105bfa6c0 Delete type=0 #117
2024/11/19-23:54:21.167446 7fa0ff3ff6c0 Level-0 table #122: started
2024/11/19-23:54:21.167476 7fa0ff3ff6c0 Level-0 table #122: 0 bytes OK
2024/11/19-23:54:21.193245 7fa0ff3ff6c0 Delete type=0 #120
2024/11/19-23:54:21.222399 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0tzWkCUDta6Cg5tp' @ 72057594037927935 : 1 .. '!journal.pages!zv1SXg1qCuG8O4up.GDKdaQhvwCVhH7qn' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.742799 7fa0fffff6c0 Recovering log #109
2024/11/19-22:33:16.752158 7fa0fffff6c0 Delete type=3 #107
2024/11/19-22:33:16.752242 7fa0fffff6c0 Delete type=0 #109
2024/11/19-22:41:18.523134 7fa0ff3ff6c0 Level-0 table #114: started
2024/11/19-22:41:18.523166 7fa0ff3ff6c0 Level-0 table #114: 0 bytes OK
2024/11/19-22:41:18.529084 7fa0ff3ff6c0 Delete type=0 #112
2024/11/19-22:41:18.535252 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0tzWkCUDta6Cg5tp' @ 72057594037927935 : 1 .. '!journal.pages!zv1SXg1qCuG8O4up.GDKdaQhvwCVhH7qn' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.810745 7fa105bfa6c0 Recovering log #113
2024/11/19-23:17:43.820849 7fa105bfa6c0 Delete type=3 #111
2024/11/19-23:17:43.820898 7fa105bfa6c0 Delete type=0 #113
2024/11/19-23:38:10.940164 7fa0ff3ff6c0 Level-0 table #118: started
2024/11/19-23:38:10.940188 7fa0ff3ff6c0 Level-0 table #118: 0 bytes OK
2024/11/19-23:38:10.972436 7fa0ff3ff6c0 Delete type=0 #116
2024/11/19-23:38:10.972602 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0tzWkCUDta6Cg5tp' @ 72057594037927935 : 1 .. '!journal.pages!zv1SXg1qCuG8O4up.GDKdaQhvwCVhH7qn' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000100
MANIFEST-000104

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.892327 7fa105bfa6c0 Recovering log #98
2024/11/19-23:17:43.902317 7fa105bfa6c0 Delete type=3 #96
2024/11/19-23:17:43.902392 7fa105bfa6c0 Delete type=0 #98
2024/11/19-23:38:11.254853 7fa0ff3ff6c0 Level-0 table #103: started
2024/11/19-23:38:11.254915 7fa0ff3ff6c0 Level-0 table #103: 0 bytes OK
2024/11/19-23:38:11.292267 7fa0ff3ff6c0 Delete type=0 #101
2024/11/19-23:38:11.414022 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0ucEZljGCpWJuLyB' @ 72057594037927935 : 1 .. '!items!a6XZCsjBPGE64UEM' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.402049 7fa105bfa6c0 Recovering log #102
2024/11/19-23:44:40.412604 7fa105bfa6c0 Delete type=3 #100
2024/11/19-23:44:40.412660 7fa105bfa6c0 Delete type=0 #102
2024/11/19-23:54:21.411450 7fa0ff3ff6c0 Level-0 table #107: started
2024/11/19-23:54:21.411483 7fa0ff3ff6c0 Level-0 table #107: 0 bytes OK
2024/11/19-23:54:21.448909 7fa0ff3ff6c0 Delete type=0 #105
2024/11/19-23:54:21.520830 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0ucEZljGCpWJuLyB' @ 72057594037927935 : 1 .. '!items!a6XZCsjBPGE64UEM' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.823286 7fa0fffff6c0 Recovering log #94
2024/11/19-22:33:16.833718 7fa0fffff6c0 Delete type=3 #92
2024/11/19-22:33:16.833780 7fa0fffff6c0 Delete type=0 #94
2024/11/19-22:41:18.562069 7fa0ff3ff6c0 Level-0 table #99: started
2024/11/19-22:41:18.562099 7fa0ff3ff6c0 Level-0 table #99: 0 bytes OK
2024/11/19-22:41:18.568275 7fa0ff3ff6c0 Delete type=0 #97
2024/11/19-22:41:18.588143 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0ucEZljGCpWJuLyB' @ 72057594037927935 : 1 .. '!items!a6XZCsjBPGE64UEM' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.892327 7fa105bfa6c0 Recovering log #98
2024/11/19-23:17:43.902317 7fa105bfa6c0 Delete type=3 #96
2024/11/19-23:17:43.902392 7fa105bfa6c0 Delete type=0 #98
2024/11/19-23:38:11.254853 7fa0ff3ff6c0 Level-0 table #103: started
2024/11/19-23:38:11.254915 7fa0ff3ff6c0 Level-0 table #103: 0 bytes OK
2024/11/19-23:38:11.292267 7fa0ff3ff6c0 Delete type=0 #101
2024/11/19-23:38:11.414022 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0ucEZljGCpWJuLyB' @ 72057594037927935 : 1 .. '!items!a6XZCsjBPGE64UEM' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.999382 7fa105bfa6c0 Recovering log #28
2024/11/19-23:17:44.010850 7fa105bfa6c0 Delete type=3 #26
2024/11/19-23:17:44.010927 7fa105bfa6c0 Delete type=0 #28
2024/11/19-23:38:11.549567 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.549602 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.577830 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.654745 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!2AcVLSsp0r0nRsnH' @ 72057594037927935 : 1 .. '!items!zri9TTYZH6fwxqS8' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.513098 7fa105bfa6c0 Recovering log #32
2024/11/19-23:44:40.523420 7fa105bfa6c0 Delete type=3 #30
2024/11/19-23:44:40.523495 7fa105bfa6c0 Delete type=0 #32
2024/11/19-23:54:21.649887 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.649922 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.667160 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.792525 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!2AcVLSsp0r0nRsnH' @ 72057594037927935 : 1 .. '!items!zri9TTYZH6fwxqS8' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.930600 7fa0fffff6c0 Recovering log #24
2024/11/19-22:33:16.940333 7fa0fffff6c0 Delete type=3 #22
2024/11/19-22:33:16.940383 7fa0fffff6c0 Delete type=0 #24
2024/11/19-22:41:18.615287 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.615314 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.621585 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.645730 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!2AcVLSsp0r0nRsnH' @ 72057594037927935 : 1 .. '!items!zri9TTYZH6fwxqS8' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.999382 7fa105bfa6c0 Recovering log #28
2024/11/19-23:17:44.010850 7fa105bfa6c0 Delete type=3 #26
2024/11/19-23:17:44.010927 7fa105bfa6c0 Delete type=0 #28
2024/11/19-23:38:11.549567 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.549602 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.577830 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.654745 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!2AcVLSsp0r0nRsnH' @ 72057594037927935 : 1 .. '!items!zri9TTYZH6fwxqS8' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000086

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.905043 7fa1053f96c0 Recovering log #80
2024/11/19-23:17:43.914769 7fa1053f96c0 Delete type=3 #78
2024/11/19-23:17:43.914824 7fa1053f96c0 Delete type=0 #80
2024/11/19-23:38:11.334444 7fa0ff3ff6c0 Level-0 table #85: started
2024/11/19-23:38:11.334469 7fa0ff3ff6c0 Level-0 table #85: 0 bytes OK
2024/11/19-23:38:11.371706 7fa0ff3ff6c0 Delete type=0 #83
2024/11/19-23:38:11.414055 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!3pgtvr0pvCZ1TxaL' @ 72057594037927935 : 1 .. '!items!zSAyg8zqviEh6CKc' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.414737 7fa1053f96c0 Recovering log #84
2024/11/19-23:44:40.425339 7fa1053f96c0 Delete type=3 #82
2024/11/19-23:44:40.425410 7fa1053f96c0 Delete type=0 #84
2024/11/19-23:54:21.395723 7fa0ff3ff6c0 Level-0 table #89: started
2024/11/19-23:54:21.395752 7fa0ff3ff6c0 Level-0 table #89: 0 bytes OK
2024/11/19-23:54:21.411284 7fa0ff3ff6c0 Delete type=0 #87
2024/11/19-23:54:21.520809 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!3pgtvr0pvCZ1TxaL' @ 72057594037927935 : 1 .. '!items!zSAyg8zqviEh6CKc' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.835855 7fa105bfa6c0 Recovering log #76
2024/11/19-22:33:16.846607 7fa105bfa6c0 Delete type=3 #74
2024/11/19-22:33:16.846666 7fa105bfa6c0 Delete type=0 #76
2024/11/19-22:41:18.575428 7fa0ff3ff6c0 Level-0 table #81: started
2024/11/19-22:41:18.575459 7fa0ff3ff6c0 Level-0 table #81: 0 bytes OK
2024/11/19-22:41:18.581540 7fa0ff3ff6c0 Delete type=0 #79
2024/11/19-22:41:18.588167 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!3pgtvr0pvCZ1TxaL' @ 72057594037927935 : 1 .. '!items!zSAyg8zqviEh6CKc' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.905043 7fa1053f96c0 Recovering log #80
2024/11/19-23:17:43.914769 7fa1053f96c0 Delete type=3 #78
2024/11/19-23:17:43.914824 7fa1053f96c0 Delete type=0 #80
2024/11/19-23:38:11.334444 7fa0ff3ff6c0 Level-0 table #85: started
2024/11/19-23:38:11.334469 7fa0ff3ff6c0 Level-0 table #85: 0 bytes OK
2024/11/19-23:38:11.371706 7fa0ff3ff6c0 Delete type=0 #83
2024/11/19-23:38:11.414055 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!3pgtvr0pvCZ1TxaL' @ 72057594037927935 : 1 .. '!items!zSAyg8zqviEh6CKc' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.934084 7fa1053f96c0 Recovering log #28
2024/11/19-23:17:43.944397 7fa1053f96c0 Delete type=3 #26
2024/11/19-23:17:43.944457 7fa1053f96c0 Delete type=0 #28
2024/11/19-23:38:11.371823 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.371847 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.413824 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.414079 7fa0ff3ff6c0 Manual compaction at level-0 from '!journal!dREAndyyUZV4jFd3' @ 72057594037927935 : 1 .. '!journal.pages!dREAndyyUZV4jFd3.oZ9XWTj8PjvV3ElF' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.444673 7fa1053f96c0 Recovering log #32
2024/11/19-23:44:40.455966 7fa1053f96c0 Delete type=3 #30
2024/11/19-23:44:40.456074 7fa1053f96c0 Delete type=0 #32
2024/11/19-23:54:21.449072 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.449108 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.485776 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.520843 7fa0ff3ff6c0 Manual compaction at level-0 from '!journal!dREAndyyUZV4jFd3' @ 72057594037927935 : 1 .. '!journal.pages!dREAndyyUZV4jFd3.oZ9XWTj8PjvV3ElF' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.864283 7fa105bfa6c0 Recovering log #24
2024/11/19-22:33:16.874484 7fa105bfa6c0 Delete type=3 #22
2024/11/19-22:33:16.874652 7fa105bfa6c0 Delete type=0 #24
2024/11/19-22:41:18.581649 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.581676 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.588031 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.588179 7fa0ff3ff6c0 Manual compaction at level-0 from '!journal!dREAndyyUZV4jFd3' @ 72057594037927935 : 1 .. '!journal.pages!dREAndyyUZV4jFd3.oZ9XWTj8PjvV3ElF' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.934084 7fa1053f96c0 Recovering log #28
2024/11/19-23:17:43.944397 7fa1053f96c0 Delete type=3 #26
2024/11/19-23:17:43.944457 7fa1053f96c0 Delete type=0 #28
2024/11/19-23:38:11.371823 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.371847 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.413824 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.414079 7fa0ff3ff6c0 Manual compaction at level-0 from '!journal!dREAndyyUZV4jFd3' @ 72057594037927935 : 1 .. '!journal.pages!dREAndyyUZV4jFd3.oZ9XWTj8PjvV3ElF' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000116
MANIFEST-000120

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.836594 7fa104bf86c0 Recovering log #114
2024/11/19-23:17:43.846367 7fa104bf86c0 Delete type=3 #112
2024/11/19-23:17:43.846428 7fa104bf86c0 Delete type=0 #114
2024/11/19-23:38:10.972732 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:10.972773 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.014835 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254705 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!4Ttms111WFnwvOXH' @ 72057594037927935 : 1 .. '!scenes.walls!xywEQQB1ECQ7Xj2T.v66UtJZkHQoVmoZF' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.346191 7fa104bf86c0 Recovering log #118
2024/11/19-23:44:40.356403 7fa104bf86c0 Delete type=3 #116
2024/11/19-23:44:40.356479 7fa104bf86c0 Delete type=0 #118
2024/11/19-23:54:21.340763 7fa0ff3ff6c0 Level-0 table #123: started
2024/11/19-23:54:21.340796 7fa0ff3ff6c0 Level-0 table #123: 0 bytes OK
2024/11/19-23:54:21.395446 7fa0ff3ff6c0 Delete type=0 #121
2024/11/19-23:54:21.395623 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!4Ttms111WFnwvOXH' @ 72057594037927935 : 1 .. '!scenes.walls!xywEQQB1ECQ7Xj2T.v66UtJZkHQoVmoZF' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.767200 7fa1053f96c0 Recovering log #110
2024/11/19-22:33:16.777783 7fa1053f96c0 Delete type=3 #108
2024/11/19-22:33:16.777851 7fa1053f96c0 Delete type=0 #110
2024/11/19-22:41:18.535365 7fa0ff3ff6c0 Level-0 table #115: started
2024/11/19-22:41:18.535398 7fa0ff3ff6c0 Level-0 table #115: 0 bytes OK
2024/11/19-22:41:18.542494 7fa0ff3ff6c0 Delete type=0 #113
2024/11/19-22:41:18.561948 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!4Ttms111WFnwvOXH' @ 72057594037927935 : 1 .. '!scenes.walls!xywEQQB1ECQ7Xj2T.v66UtJZkHQoVmoZF' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.836594 7fa104bf86c0 Recovering log #114
2024/11/19-23:17:43.846367 7fa104bf86c0 Delete type=3 #112
2024/11/19-23:17:43.846428 7fa104bf86c0 Delete type=0 #114
2024/11/19-23:38:10.972732 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:10.972773 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.014835 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254705 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!4Ttms111WFnwvOXH' @ 72057594037927935 : 1 .. '!scenes.walls!xywEQQB1ECQ7Xj2T.v66UtJZkHQoVmoZF' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000116
MANIFEST-000120

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.880149 7fa0fffff6c0 Recovering log #114
2024/11/19-23:17:43.890662 7fa0fffff6c0 Delete type=3 #112
2024/11/19-23:17:43.890716 7fa0fffff6c0 Delete type=0 #114
2024/11/19-23:38:11.049523 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:11.049568 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.078779 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254741 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0t9HyBo8uKHGkyfm' @ 72057594037927935 : 1 .. '!items!zgxIFRYKU6qDRxKL' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.390209 7fa0fffff6c0 Recovering log #118
2024/11/19-23:44:40.399860 7fa0fffff6c0 Delete type=3 #116
2024/11/19-23:44:40.399937 7fa0fffff6c0 Delete type=0 #118
2024/11/19-23:54:21.298568 7fa0ff3ff6c0 Level-0 table #123: started
2024/11/19-23:54:21.298604 7fa0ff3ff6c0 Level-0 table #123: 0 bytes OK
2024/11/19-23:54:21.340612 7fa0ff3ff6c0 Delete type=0 #121
2024/11/19-23:54:21.395613 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0t9HyBo8uKHGkyfm' @ 72057594037927935 : 1 .. '!items!zgxIFRYKU6qDRxKL' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.810303 7fa104bf86c0 Recovering log #110
2024/11/19-22:33:16.820709 7fa104bf86c0 Delete type=3 #108
2024/11/19-22:33:16.820768 7fa104bf86c0 Delete type=0 #110
2024/11/19-22:41:18.555138 7fa0ff3ff6c0 Level-0 table #115: started
2024/11/19-22:41:18.555165 7fa0ff3ff6c0 Level-0 table #115: 0 bytes OK
2024/11/19-22:41:18.561841 7fa0ff3ff6c0 Delete type=0 #113
2024/11/19-22:41:18.561999 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0t9HyBo8uKHGkyfm' @ 72057594037927935 : 1 .. '!items!zgxIFRYKU6qDRxKL' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.880149 7fa0fffff6c0 Recovering log #114
2024/11/19-23:17:43.890662 7fa0fffff6c0 Delete type=3 #112
2024/11/19-23:17:43.890716 7fa0fffff6c0 Delete type=0 #114
2024/11/19-23:38:11.049523 7fa0ff3ff6c0 Level-0 table #119: started
2024/11/19-23:38:11.049568 7fa0ff3ff6c0 Level-0 table #119: 0 bytes OK
2024/11/19-23:38:11.078779 7fa0ff3ff6c0 Delete type=0 #117
2024/11/19-23:38:11.254741 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!0t9HyBo8uKHGkyfm' @ 72057594037927935 : 1 .. '!items!zgxIFRYKU6qDRxKL' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.987124 7fa0fffff6c0 Recovering log #28
2024/11/19-23:17:43.997065 7fa0fffff6c0 Delete type=3 #26
2024/11/19-23:17:43.997121 7fa0fffff6c0 Delete type=0 #28
2024/11/19-23:38:11.515136 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.515183 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.549274 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.612611 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!Md4AVwBopGLjHWQz' @ 72057594037927935 : 1 .. '!actors.items!vu7xErjpIZBpNb5f.sMPIxkvfPHBhIGlM' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.500231 7fa0fffff6c0 Recovering log #32
2024/11/19-23:44:40.510208 7fa0fffff6c0 Delete type=3 #30
2024/11/19-23:44:40.510275 7fa0fffff6c0 Delete type=0 #32
2024/11/19-23:54:21.621331 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.621397 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.649591 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.649800 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!Md4AVwBopGLjHWQz' @ 72057594037927935 : 1 .. '!actors.items!vu7xErjpIZBpNb5f.sMPIxkvfPHBhIGlM' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.917068 7fa104bf86c0 Recovering log #24
2024/11/19-22:33:16.927789 7fa104bf86c0 Delete type=3 #22
2024/11/19-22:33:16.927859 7fa104bf86c0 Delete type=0 #24
2024/11/19-22:41:18.608875 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.608906 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.614956 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.615163 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!Md4AVwBopGLjHWQz' @ 72057594037927935 : 1 .. '!actors.items!vu7xErjpIZBpNb5f.sMPIxkvfPHBhIGlM' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.987124 7fa0fffff6c0 Recovering log #28
2024/11/19-23:17:43.997065 7fa0fffff6c0 Delete type=3 #26
2024/11/19-23:17:43.997121 7fa0fffff6c0 Delete type=0 #28
2024/11/19-23:38:11.515136 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.515183 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.549274 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.612611 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!Md4AVwBopGLjHWQz' @ 72057594037927935 : 1 .. '!actors.items!vu7xErjpIZBpNb5f.sMPIxkvfPHBhIGlM' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.946902 7fa104bf86c0 Recovering log #28
2024/11/19-23:17:43.956792 7fa104bf86c0 Delete type=3 #26
2024/11/19-23:17:43.956843 7fa104bf86c0 Delete type=0 #28
2024/11/19-23:38:11.448223 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.448264 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.479938 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549450 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!J8V79HmW3lf2rpL3' @ 72057594037927935 : 1 .. '!journal.pages!svMz611ffpsxiWdu.sA6YdJpO1QUpWYA3' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.459655 7fa104bf86c0 Recovering log #32
2024/11/19-23:44:40.470395 7fa104bf86c0 Delete type=3 #30
2024/11/19-23:44:40.470471 7fa104bf86c0 Delete type=0 #32
2024/11/19-23:54:21.520944 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.520971 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.553589 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.649750 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!J8V79HmW3lf2rpL3' @ 72057594037927935 : 1 .. '!journal.pages!svMz611ffpsxiWdu.sA6YdJpO1QUpWYA3' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.876741 7fa1053f96c0 Recovering log #24
2024/11/19-22:33:16.887482 7fa1053f96c0 Delete type=3 #22
2024/11/19-22:33:16.887552 7fa1053f96c0 Delete type=0 #24
2024/11/19-22:41:18.595395 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.595415 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.601347 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.615138 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!J8V79HmW3lf2rpL3' @ 72057594037927935 : 1 .. '!journal.pages!svMz611ffpsxiWdu.sA6YdJpO1QUpWYA3' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.946902 7fa104bf86c0 Recovering log #28
2024/11/19-23:17:43.956792 7fa104bf86c0 Delete type=3 #26
2024/11/19-23:17:43.956843 7fa104bf86c0 Delete type=0 #28
2024/11/19-23:38:11.448223 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.448264 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.479938 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549450 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!J8V79HmW3lf2rpL3' @ 72057594037927935 : 1 .. '!journal.pages!svMz611ffpsxiWdu.sA6YdJpO1QUpWYA3' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.973697 7fa105bfa6c0 Recovering log #28
2024/11/19-23:17:43.983715 7fa105bfa6c0 Delete type=3 #26
2024/11/19-23:17:43.983773 7fa105bfa6c0 Delete type=0 #28
2024/11/19-23:38:11.414247 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.414286 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.448050 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549432 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!SpVGbtHM4C264X7J' @ 72057594037927935 : 1 .. '!scenes.walls!rquIdQN1nRvELR23.wfAypPPCdzIvAV2w' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.486154 7fa105bfa6c0 Recovering log #32
2024/11/19-23:44:40.496228 7fa105bfa6c0 Delete type=3 #30
2024/11/19-23:44:40.496318 7fa105bfa6c0 Delete type=0 #32
2024/11/19-23:54:21.553766 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.553807 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.586440 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.649770 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!SpVGbtHM4C264X7J' @ 72057594037927935 : 1 .. '!scenes.walls!rquIdQN1nRvELR23.wfAypPPCdzIvAV2w' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.902799 7fa0fffff6c0 Recovering log #24
2024/11/19-22:33:16.913455 7fa0fffff6c0 Delete type=3 #22
2024/11/19-22:33:16.913508 7fa0fffff6c0 Delete type=0 #24
2024/11/19-22:41:18.601457 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.601480 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.608720 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.615151 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!SpVGbtHM4C264X7J' @ 72057594037927935 : 1 .. '!scenes.walls!rquIdQN1nRvELR23.wfAypPPCdzIvAV2w' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.973697 7fa105bfa6c0 Recovering log #28
2024/11/19-23:17:43.983715 7fa105bfa6c0 Delete type=3 #26
2024/11/19-23:17:43.983773 7fa105bfa6c0 Delete type=0 #28
2024/11/19-23:38:11.414247 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.414286 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.448050 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549432 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!SpVGbtHM4C264X7J' @ 72057594037927935 : 1 .. '!scenes.walls!rquIdQN1nRvELR23.wfAypPPCdzIvAV2w' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000030
MANIFEST-000034

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.959698 7fa0fffff6c0 Recovering log #28
2024/11/19-23:17:43.970716 7fa0fffff6c0 Delete type=3 #26
2024/11/19-23:17:43.970799 7fa0fffff6c0 Delete type=0 #28
2024/11/19-23:38:11.480068 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.480093 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.514912 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549465 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0WpJouFs3ayiYvbf' @ 72057594037927935 : 1 .. '!folders!qKfD0LHxW5z8ajsC' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.473387 7fa0fffff6c0 Recovering log #32
2024/11/19-23:44:40.483080 7fa0fffff6c0 Delete type=3 #30
2024/11/19-23:44:40.483136 7fa0fffff6c0 Delete type=0 #32
2024/11/19-23:54:21.586588 7fa0ff3ff6c0 Level-0 table #37: started
2024/11/19-23:54:21.586613 7fa0ff3ff6c0 Level-0 table #37: 0 bytes OK
2024/11/19-23:54:21.621180 7fa0ff3ff6c0 Delete type=0 #35
2024/11/19-23:54:21.649784 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0WpJouFs3ayiYvbf' @ 72057594037927935 : 1 .. '!folders!qKfD0LHxW5z8ajsC' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.890370 7fa104bf86c0 Recovering log #24
2024/11/19-22:33:16.899682 7fa104bf86c0 Delete type=3 #22
2024/11/19-22:33:16.899754 7fa104bf86c0 Delete type=0 #24
2024/11/19-22:41:18.588276 7fa0ff3ff6c0 Level-0 table #29: started
2024/11/19-22:41:18.588302 7fa0ff3ff6c0 Level-0 table #29: 0 bytes OK
2024/11/19-22:41:18.595315 7fa0ff3ff6c0 Delete type=0 #27
2024/11/19-22:41:18.615120 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0WpJouFs3ayiYvbf' @ 72057594037927935 : 1 .. '!folders!qKfD0LHxW5z8ajsC' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.959698 7fa0fffff6c0 Recovering log #28
2024/11/19-23:17:43.970716 7fa0fffff6c0 Delete type=3 #26
2024/11/19-23:17:43.970799 7fa0fffff6c0 Delete type=0 #28
2024/11/19-23:38:11.480068 7fa0ff3ff6c0 Level-0 table #33: started
2024/11/19-23:38:11.480093 7fa0ff3ff6c0 Level-0 table #33: 0 bytes OK
2024/11/19-23:38:11.514912 7fa0ff3ff6c0 Delete type=0 #31
2024/11/19-23:38:11.549465 7fa0ff3ff6c0 Manual compaction at level-0 from '!actors!0WpJouFs3ayiYvbf' @ 72057594037927935 : 1 .. '!folders!qKfD0LHxW5z8ajsC' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000124
MANIFEST-000128

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.782540 7fa104bf86c0 Recovering log #122
2024/11/19-23:17:43.792942 7fa104bf86c0 Delete type=3 #120
2024/11/19-23:17:43.792999 7fa104bf86c0 Delete type=0 #122
2024/11/19-23:38:10.828173 7fa0ff3ff6c0 Level-0 table #127: started
2024/11/19-23:38:10.828237 7fa0ff3ff6c0 Level-0 table #127: 0 bytes OK
2024/11/19-23:38:10.859578 7fa0ff3ff6c0 Delete type=0 #125
2024/11/19-23:38:10.972568 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0bR9mWx1KJtdLaMo' @ 72057594037927935 : 1 .. '!items!zqiB0zbIYLpweMBL' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.292450 7fa104bf86c0 Recovering log #126
2024/11/19-23:44:40.302526 7fa104bf86c0 Delete type=3 #124
2024/11/19-23:44:40.302584 7fa104bf86c0 Delete type=0 #126
2024/11/19-23:54:21.114918 7fa0ff3ff6c0 Level-0 table #131: started
2024/11/19-23:54:21.114977 7fa0ff3ff6c0 Level-0 table #131: 0 bytes OK
2024/11/19-23:54:21.155688 7fa0ff3ff6c0 Delete type=0 #129
2024/11/19-23:54:21.222368 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0bR9mWx1KJtdLaMo' @ 72057594037927935 : 1 .. '!items!zqiB0zbIYLpweMBL' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.713063 7fa1053f96c0 Recovering log #118
2024/11/19-22:33:16.723393 7fa1053f96c0 Delete type=3 #116
2024/11/19-22:33:16.723481 7fa1053f96c0 Delete type=0 #118
2024/11/19-22:41:18.516374 7fa0ff3ff6c0 Level-0 table #123: started
2024/11/19-22:41:18.516425 7fa0ff3ff6c0 Level-0 table #123: 0 bytes OK
2024/11/19-22:41:18.522994 7fa0ff3ff6c0 Delete type=0 #121
2024/11/19-22:41:18.535231 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0bR9mWx1KJtdLaMo' @ 72057594037927935 : 1 .. '!items!zqiB0zbIYLpweMBL' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.782540 7fa104bf86c0 Recovering log #122
2024/11/19-23:17:43.792942 7fa104bf86c0 Delete type=3 #120
2024/11/19-23:17:43.792999 7fa104bf86c0 Delete type=0 #122
2024/11/19-23:38:10.828173 7fa0ff3ff6c0 Level-0 table #127: started
2024/11/19-23:38:10.828237 7fa0ff3ff6c0 Level-0 table #127: 0 bytes OK
2024/11/19-23:38:10.859578 7fa0ff3ff6c0 Delete type=0 #125
2024/11/19-23:38:10.972568 7fa0ff3ff6c0 Manual compaction at level-0 from '!folders!0bR9mWx1KJtdLaMo' @ 72057594037927935 : 1 .. '!items!zqiB0zbIYLpweMBL' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000115
MANIFEST-000119

View File

@ -1,7 +1,7 @@
2024/11/19-23:17:43.823705 7fa1053f96c0 Recovering log #113
2024/11/19-23:17:43.833622 7fa1053f96c0 Delete type=3 #111
2024/11/19-23:17:43.833670 7fa1053f96c0 Delete type=0 #113
2024/11/19-23:38:10.897991 7fa0ff3ff6c0 Level-0 table #118: started
2024/11/19-23:38:10.898023 7fa0ff3ff6c0 Level-0 table #118: 0 bytes OK
2024/11/19-23:38:10.940034 7fa0ff3ff6c0 Delete type=0 #116
2024/11/19-23:38:10.972592 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!1P9msxRCXQy78xlZ' @ 72057594037927935 : 1 .. '!items!z3cJdEU5iH9uB8zS' @ 0 : 0; will stop at (end)
2024/11/19-23:44:40.332775 7fa1053f96c0 Recovering log #117
2024/11/19-23:44:40.343208 7fa1053f96c0 Delete type=3 #115
2024/11/19-23:44:40.343272 7fa1053f96c0 Delete type=0 #117
2024/11/19-23:54:21.193368 7fa0ff3ff6c0 Level-0 table #122: started
2024/11/19-23:54:21.193393 7fa0ff3ff6c0 Level-0 table #122: 0 bytes OK
2024/11/19-23:54:21.222232 7fa0ff3ff6c0 Delete type=0 #120
2024/11/19-23:54:21.222412 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!1P9msxRCXQy78xlZ' @ 72057594037927935 : 1 .. '!items!z3cJdEU5iH9uB8zS' @ 0 : 0; will stop at (end)

View File

@ -1,7 +1,7 @@
2024/11/19-22:33:16.755024 7fa105bfa6c0 Recovering log #109
2024/11/19-22:33:16.764806 7fa105bfa6c0 Delete type=3 #107
2024/11/19-22:33:16.764856 7fa105bfa6c0 Delete type=0 #109
2024/11/19-22:41:18.510057 7fa0ff3ff6c0 Level-0 table #114: started
2024/11/19-22:41:18.510095 7fa0ff3ff6c0 Level-0 table #114: 0 bytes OK
2024/11/19-22:41:18.516275 7fa0ff3ff6c0 Delete type=0 #112
2024/11/19-22:41:18.535217 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!1P9msxRCXQy78xlZ' @ 72057594037927935 : 1 .. '!items!z3cJdEU5iH9uB8zS' @ 0 : 0; will stop at (end)
2024/11/19-23:17:43.823705 7fa1053f96c0 Recovering log #113
2024/11/19-23:17:43.833622 7fa1053f96c0 Delete type=3 #111
2024/11/19-23:17:43.833670 7fa1053f96c0 Delete type=0 #113
2024/11/19-23:38:10.897991 7fa0ff3ff6c0 Level-0 table #118: started
2024/11/19-23:38:10.898023 7fa0ff3ff6c0 Level-0 table #118: 0 bytes OK
2024/11/19-23:38:10.940034 7fa0ff3ff6c0 Delete type=0 #116
2024/11/19-23:38:10.972592 7fa0ff3ff6c0 Manual compaction at level-0 from '!items!1P9msxRCXQy78xlZ' @ 72057594037927935 : 1 .. '!items!z3cJdEU5iH9uB8zS' @ 0 : 0; will stop at (end)