Compare commits

...

3 Commits

Author SHA1 Message Date
627ccc707b Fouindry v13 support 2025-04-30 23:51:45 +02:00
fdf28c4978 Fix v12 Wasteland 2025-03-14 14:09:51 +01:00
e0eac58bc9 Fix v12 Wasteland 2025-03-14 14:08:17 +01:00
142 changed files with 546 additions and 500 deletions

View File

@ -1,3 +1,6 @@
# 12.0.1
- Fix v12 version
# 11.0.22

View File

@ -7,7 +7,7 @@ import { WastelandUtility } from "./wasteland-utility.js";
import { WastelandRollDialog } from "./wasteland-roll-dialog.js";
/* -------------------------------------------- */
export class WastelandActorSheet extends ActorSheet {
export class WastelandActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@ -25,8 +25,8 @@ export class WastelandActorSheet extends ActorSheet {
/* -------------------------------------------- */
async getData() {
const objectData = foundry.utils.duplicate(this.object)
let actorData = objectData
const objectData = foundry.utils.duplicate(this.object)
let actorData = objectData
let formData = {
title: this.title,
@ -52,15 +52,15 @@ export class WastelandActorSheet extends ActorSheet {
origine: foundry.utils.duplicate(this.actor.getOrigine() || {}),
heritage: foundry.utils.duplicate(this.actor.getHeritage() || {}),
metier: foundry.utils.duplicate(this.actor.getMetier() || {}),
combat: this.actor.getCombatValues(),
combat: this.actor.getCombatValues(),
config: foundry.utils.duplicate(game.system.wasteland.config),
capacites: foundry.utils.duplicate(this.actor.getCapacites()),
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
mutations: foundry.utils.duplicate(this.actor.getMutations()),
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
comportement: await TextEditor.enrichHTML(this.object.system.biodata.comportement, {async: true}),
habitat: await TextEditor.enrichHTML(this.object.system.biodata.habitat, {async: true}),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.description, {async: true}),
comportement: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.comportement, {async: true}),
habitat: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.habitat, {async: true}),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,
@ -73,7 +73,7 @@ export class WastelandActorSheet extends ActorSheet {
return formData;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
@ -81,14 +81,14 @@ export class WastelandActorSheet extends ActorSheet {
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// Update Inventory Item
html.find('.item-edit').click(ev => {
const li = $(ev.currentTarget).parents(".item")
let itemId = li.data("item-id")
const item = this.actor.items.get( itemId )
item.sheet.render(true)
})
})
// Delete Inventory Item
html.find('.item-delete').click(ev => {
const li = $(ev.currentTarget).parents(".item");
@ -103,7 +103,7 @@ export class WastelandActorSheet extends ActorSheet {
let value = ev.currentTarget.value
this.actor.editItemField(itemId, itemType, itemField, dataType, value)
})
html.find('.quantity-minus').click(event => {
const li = $(event.currentTarget).parents(".item");
this.actor.incDecQuantity( li.data("item-id"), -1 );
@ -129,7 +129,7 @@ export class WastelandActorSheet extends ActorSheet {
let charmeId = li.data("item-id")
this.actor.rollCharme(charmeId)
})
html.find('.roll-pouvoir').click((event) => {
const li = $(event.currentTarget).parents(".item")
let pouvoirId = li.data("item-id")
@ -155,19 +155,19 @@ export class WastelandActorSheet extends ActorSheet {
this.actor.createEmbeddedDocuments('Item', [{ name: `Nouveau ${itemType}`, type: itemType }], { renderSheet: true })
})
html.find('.lock-unlock-sheet').click((event) => {
this.options.editScore = !this.options.editScore;
this.render(true);
});
});
html.find('.item-equip').click(ev => {
const li = $(ev.currentTarget).parents(".item");
this.actor.equipItem( li.data("item-id") );
this.render(true);
this.render(true);
});
}
/* -------------------------------------------- */
/** @override */
setPosition(options = {}) {

View File

@ -4,7 +4,7 @@ import { WastelandUtility } from "./wasteland-utility.js";
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class WastelandItemSheet extends ItemSheet {
export class WastelandItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
@ -49,7 +49,7 @@ export class WastelandItemSheet extends ItemSheet {
/* -------------------------------------------- */
async getData() {
const objectData = foundry.utils.duplicate(this.object)
let itemData = objectData
let itemData = objectData
let formData = {
title: this.title,
id: this.id,
@ -147,10 +147,10 @@ export class WastelandItemSheet extends ItemSheet {
let pred = foundry.utils.duplicate(this.object.system.predilections)
pred[index].used = ev.currentTarget.checked
this.object.update( { 'data.predilections': pred })
})
})
html.find('#add-predilection').click(ev => {
let pred = foundry.utils.duplicate(this.object.system.predilections)
pred.push( { name: "Nouvelle prédilection", used: false })
pred.push( { name: "Nouvelle prédilection", used: false })
this.object.update( { 'data.predilections': pred })
})
// Update Inventory Item

View File

@ -30,7 +30,7 @@ Hooks.once("init", async function () {
WastelandUtility.preloadHandlebarsTemplates();
/* -------------------------------------------- */
// Set an initiative formula for the system
// Set an initiative formula for the system
CONFIG.Combat.initiative = {
formula: "1d6",
decimals: 1
@ -52,12 +52,12 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-wasteland", WastelandActorSheet, { types: ["personnage"], makeDefault: true })
Actors.registerSheet("fvtt-wasteland", WastelandCreatureSheet, { types: ["creature"], makeDefault: false });
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
foundry.documents.collections.Actors.registerSheet("fvtt-wasteland", WastelandActorSheet, { types: ["personnage"], makeDefault: true })
foundry.documents.collections.Actors.registerSheet("fvtt-wasteland", WastelandCreatureSheet, { types: ["creature"], makeDefault: false });
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-wasteland", WastelandItemSheet, { makeDefault: true })
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
foundry.documents.collections.Items.registerSheet("fvtt-wasteland", WastelandItemSheet, { makeDefault: true })
WastelandUtility.init();
@ -136,4 +136,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
}
return true;
});

View File

@ -6,7 +6,7 @@ export class WastelandRollDialog extends Dialog {
static async create(actor, rollData) {
let options = { classes: ["WastelandDialog"], width: 340, height: 'fit-content', 'z-index': 99999 };
let html = await renderTemplate('systems/fvtt-wasteland/templates/roll-dialog-generic.html', rollData);
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-wasteland/templates/roll-dialog-generic.html', rollData);
return new WastelandRollDialog(actor, rollData, html, options);
}
@ -68,7 +68,6 @@ export class WastelandRollDialog extends Dialog {
activateListeners(html) {
super.activateListeners(html);
var dialog = this;
function onLoad() {
}
$(function () { onLoad(); });

View File

@ -4,7 +4,7 @@ import { WastelandCommands } from "./wasteland-commands.js";
/* -------------------------------------------- */
const __contrecouptCharme = {
1 : {name: "Effet chromatique", description: "le corps du kobold prend des teintes aussi étranges que voyantes. L'effet sestompe progressivement et 24 heures plus tard, le kobold retrouve ses couleurs dorigine." },
1 : {name: "Effet chromatique", description: "le corps du kobold prend des teintes aussi étranges que voyantes. L'effet sestompe progressivement et 24 heures plus tard, le kobold retrouve ses couleurs dorigine." },
3 : {name: "Enivrement Kobold", description: "très excité par son premier tour, le kobold doit immédiatement faire un autre tour, pour lequel il emploiera un dé plus gros." },
5 : {name: "Mutisme superstitieux", description: "le kobold ne doit plus parler» pendant les prochaines 24 heures. S'il le fait malgré tout, les effets de son tour sarrêtent." },
7 : {name: "Agité!", description: "le kobold ne tient plus en place. Il ne peut se reposer pendant les prochaines 12 heures. Dès. que 12 heures se sont écoulées, il s'effondre comme une masse et dort 12 heures d'affilée dun sommeil enchanté dont rien ne pourra le réveiller." },
@ -14,7 +14,7 @@ const __contrecouptCharme = {
15 : {name: "La petite Mort", description: "le kobold s'endort pour 1420 heures. Rien ni personne ne pourra le tirer de ce sommeil enchanté avant que ce contrecoup ne prenne fin." },
17 : {name: "Angoisse cauchemardesque", description: "le kobold a une brève vision de pure horreur. Il perd 1420 points de Psyché {s'il doit en perdre plus qu'il nen a, il tombe à 0)." },
19 : {name: "Anémie Kobold", description: "le kobold se met à saigner du nez, des oreilles et même dautres endroits. Il perd 1420 point(s) de Santé." }
}
}
/* -------------------------------------------- */
export class WastelandUtility {
@ -23,14 +23,11 @@ export class WastelandUtility {
/* -------------------------------------------- */
static async init() {
Hooks.on('renderChatLog', (log, html, data) => WastelandUtility.chatListeners(html))
Hooks.on("getChatLogEntryContext", (html, options) => WastelandUtility.chatRollMenu(html, options))
Hooks.on("getChatMessageContextOptions", (html, options) => WastelandUtility.chatRollMenu(html, options))
Hooks.on("getCombatTrackerEntryContext", (html, options) => {
WastelandUtility.pushInitiativeOptions(html, options);
})
Hooks.on("dropCanvasData", (canvas, data) => {
WastelandUtility.dropItemOnToken(canvas, data)
});
this.rollDataStore = {}
this.defenderStore = {}
@ -121,7 +118,7 @@ export class WastelandUtility {
game.system.wasteland.config.pointsAmeOptions = WastelandUtility.createDirectOptionList(0, 20)
}
/* -------------------------------------------- */
static createDirectOptionList(min, max) {
let options = {};
@ -157,7 +154,7 @@ export class WastelandUtility {
/* -------------------------------------------- */
static async chatListeners(html) {
html.on("click", '.predilection-reroll', async event => {
$(html).on("click", '.predilection-reroll', async event => {
let predIdx = $(event.currentTarget).data("predilection-index")
let messageId = WastelandUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
@ -176,7 +173,7 @@ export class WastelandUtility {
'systems/fvtt-wasteland/templates/editor-notes-gm.html',
'systems/fvtt-wasteland/templates/partial-item-description.html'
]
return loadTemplates(templatePaths);
return foundry.applications.handlebars.loadTemplates(templatePaths);
}
/* -------------------------------------------- */
@ -239,7 +236,7 @@ export class WastelandUtility {
static saveRollData(rollData) {
game.socket.emit("system.fvtt-wasteland", {
name: "msg_update_roll", data: rollData
}); // Notify all other clients of the roll
}); // Notify all other clients of the roll
this.updateRollData(rollData);
}
@ -325,8 +322,8 @@ export class WastelandUtility {
}
}
if (rollData.charme.system.charmetype == "charme") {
rollData.charmeSante = effectRoll.total
actor.incDecSante(rollData.charmeSante)
rollData.charmeSante = effectRoll.total
actor.incDecSante(rollData.charmeSante)
}
} else {
if (rollData.mainDice == "1d20") {
@ -342,13 +339,13 @@ export class WastelandUtility {
}
}
}
//console.log("Result : ", rollData)
if (rollData.difficulte > 0 && !rollData.isDramatique) {
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
rollData.isHeroique = ((rollData.finalResult - rollData.difficulte) >= 10)
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
}
}
}
}
@ -373,7 +370,7 @@ export class WastelandUtility {
if (!rollData.isReroll) {
actor.changeEclat(-1)
}
}
}
}
//console.log("BEFORE COMP", rollData)
@ -398,7 +395,7 @@ export class WastelandUtility {
await this.computeResult(rollData, actor)
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-wasteland/templates/chat-generic-result.html`, rollData)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-wasteland/templates/chat-generic-result.html`, rollData)
}, rollData)
}
@ -538,7 +535,7 @@ export class WastelandUtility {
/* -------------------------------------------- */
static applyBonneAventureRoll(li, changed, addedBonus) {
let msgId = li.data("message-id")
let msgId = $(li).data("message-id")
let msg = game.messages.get(msgId)
if (msg) {
let rollData = msg.getFlag("world", "wasteland-roll")
@ -557,7 +554,7 @@ export class WastelandUtility {
/* -------------------------------------------- */
static applyEclatRoll(li, changed, addedBonus) {
let msgId = li.data("message-id")
let msgId = $(li).data("message-id")
let msg = game.messages.get(msgId)
if (msg) {
let rollData = msg.getFlag("world", "wasteland-roll")
@ -574,7 +571,7 @@ export class WastelandUtility {
static chatRollMenu(html, options) {
let canApply = li => canvas.tokens.controlled.length && li.find(".wasteland-roll").length
let hasBA = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData?.actorId) {
let actor = game.actors.get(rollData.actorId)
@ -584,7 +581,7 @@ export class WastelandUtility {
return false
}
let hasBA2 = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData?.actorId) {
let actor = game.actors.get(rollData.actorId)
@ -594,7 +591,7 @@ export class WastelandUtility {
return false
}
let hasBA3 = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData?.actorId) {
let actor = game.actors.get(rollData.actorId)
@ -604,7 +601,7 @@ export class WastelandUtility {
return false
}
let hasPE = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData?.actorId) {
let actor = game.actors.get(rollData.actorId)
@ -614,7 +611,7 @@ export class WastelandUtility {
return false
}
let hasPredilection = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData.competence) {
let nbPred = rollData.competence.data.predilections.filter(pred => !pred.used).length
@ -623,7 +620,7 @@ export class WastelandUtility {
return false
}
let canCompetenceDouble = function (li) {
let message = game.messages.get(li.attr("data-message-id"))
let message = game.messages.get($(li).attr("data-message-id"))
let rollData = message.getFlag("world", "wasteland-roll")
if (rollData.competence) {
return rollData.competence.data.doublebonus

Binary file not shown.

BIN
packs/armes/000211.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000171
MANIFEST-000207

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.361119 7f80456006c0 Recovering log #168
2024/05/23-11:36:26.371702 7f80456006c0 Delete type=3 #166
2024/05/23-11:36:26.371759 7f80456006c0 Delete type=0 #168
2024/05/23-11:38:27.058615 7f803fe006c0 Level-0 table #174: started
2024/05/23-11:38:27.058646 7f803fe006c0 Level-0 table #174: 0 bytes OK
2024/05/23-11:38:27.093797 7f803fe006c0 Delete type=0 #172
2024/05/23-11:38:27.127595 7f803fe006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.127630 7f803fe006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.843982 7f4b377fe6c0 Recovering log #205
2025/04/30-23:34:36.854202 7f4b377fe6c0 Delete type=3 #203
2025/04/30-23:34:36.854267 7f4b377fe6c0 Delete type=0 #205
2025/04/30-23:48:18.868020 7f4b35bff6c0 Level-0 table #210: started
2025/04/30-23:48:18.871615 7f4b35bff6c0 Level-0 table #210: 9139 bytes OK
2025/04/30-23:48:18.878237 7f4b35bff6c0 Delete type=0 #208
2025/04/30-23:48:18.899179 7f4b35bff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.908897 7f4b35bff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 198 : 1
2025/04/30-23:48:18.908911 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.912613 7f4b35bff6c0 Generated table #211@1: 40 keys, 9139 bytes
2025/04/30-23:48:18.912644 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 9139 bytes
2025/04/30-23:48:18.918969 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.919113 7f4b35bff6c0 Delete type=2 #170
2025/04/30-23:48:18.919322 7f4b35bff6c0 Delete type=2 #210
2025/04/30-23:48:18.940456 7f4b35bff6c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 198 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.400918 7f80456006c0 Recovering log #164
2024/05/23-11:35:06.459624 7f80456006c0 Delete type=3 #162
2024/05/23-11:35:06.459697 7f80456006c0 Delete type=0 #164
2024/05/23-11:35:52.325511 7f803fe006c0 Level-0 table #169: started
2024/05/23-11:35:52.328985 7f803fe006c0 Level-0 table #169: 9019 bytes OK
2024/05/23-11:35:52.335531 7f803fe006c0 Delete type=0 #167
2024/05/23-11:35:52.356802 7f803fe006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.367167 7f803fe006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 158 : 1
2024/05/23-11:35:52.367178 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.370637 7f803fe006c0 Generated table #170@1: 40 keys, 9019 bytes
2024/05/23-11:35:52.370658 7f803fe006c0 Compacted 1@1 + 1@2 files => 9019 bytes
2024/05/23-11:35:52.376833 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.376889 7f803fe006c0 Delete type=2 #161
2024/05/23-11:35:52.376979 7f803fe006c0 Delete type=2 #169
2024/05/23-11:35:52.397741 7f803fe006c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 158 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.222563 7fba4cff96c0 Recovering log #201
2025/03/14-14:12:16.331822 7fba4cff96c0 Delete type=3 #199
2025/03/14-14:12:16.331880 7fba4cff96c0 Delete type=0 #201
2025/03/14-14:12:43.151120 7fb7affff6c0 Level-0 table #206: started
2025/03/14-14:12:43.151177 7fb7affff6c0 Level-0 table #206: 0 bytes OK
2025/03/14-14:12:43.158103 7fb7affff6c0 Delete type=0 #204
2025/03/14-14:12:43.158243 7fb7affff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.158267 7fb7affff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000207 Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000068

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.402766 7f8046a006c0 Recovering log #29
2024/05/23-11:36:26.414036 7f8046a006c0 Delete type=3 #27
2024/05/23-11:36:26.414100 7f8046a006c0 Delete type=0 #29
2024/05/23-11:38:26.981582 7f803fe006c0 Level-0 table #35: started
2024/05/23-11:38:26.981632 7f803fe006c0 Level-0 table #35: 0 bytes OK
2024/05/23-11:38:27.023703 7f803fe006c0 Delete type=0 #33
2024/05/23-11:38:27.127575 7f803fe006c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.127615 7f803fe006c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.895184 7f4b377fe6c0 Recovering log #66
2025/04/30-23:34:36.905592 7f4b377fe6c0 Delete type=3 #64
2025/04/30-23:34:36.905651 7f4b377fe6c0 Delete type=0 #66
2025/04/30-23:48:18.878429 7f4b35bff6c0 Level-0 table #71: started
2025/04/30-23:48:18.882400 7f4b35bff6c0 Level-0 table #71: 1326 bytes OK
2025/04/30-23:48:18.888668 7f4b35bff6c0 Delete type=0 #69
2025/04/30-23:48:18.899190 7f4b35bff6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.929965 7f4b35bff6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at '!items!irEA0eyE731viEYl' @ 8 : 1
2025/04/30-23:48:18.929978 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.933899 7f4b35bff6c0 Generated table #72@1: 2 keys, 1326 bytes
2025/04/30-23:48:18.933939 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 1326 bytes
2025/04/30-23:48:18.940009 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.940137 7f4b35bff6c0 Delete type=2 #31
2025/04/30-23:48:18.940329 7f4b35bff6c0 Delete type=2 #71
2025/04/30-23:48:18.940491 7f4b35bff6c0 Manual compaction at level-1 from '!items!irEA0eyE731viEYl' @ 8 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.584295 7f80460006c0 Recovering log #25
2024/05/23-11:35:06.677479 7f80460006c0 Delete type=3 #23
2024/05/23-11:35:06.677553 7f80460006c0 Delete type=0 #25
2024/05/23-11:35:52.346618 7f803fe006c0 Level-0 table #30: started
2024/05/23-11:35:52.349648 7f803fe006c0 Level-0 table #30: 1316 bytes OK
2024/05/23-11:35:52.356522 7f803fe006c0 Delete type=0 #28
2024/05/23-11:35:52.356854 7f803fe006c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.386880 7f803fe006c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at '!items!irEA0eyE731viEYl' @ 6 : 1
2024/05/23-11:35:52.386890 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.391029 7f803fe006c0 Generated table #31@1: 2 keys, 1316 bytes
2024/05/23-11:35:52.391071 7f803fe006c0 Compacted 1@1 + 1@2 files => 1316 bytes
2024/05/23-11:35:52.397189 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.397318 7f803fe006c0 Delete type=2 #22
2024/05/23-11:35:52.397533 7f803fe006c0 Delete type=2 #30
2024/05/23-11:35:52.397799 7f803fe006c0 Manual compaction at level-1 from '!items!irEA0eyE731viEYl' @ 6 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.547348 7fba4dffb6c0 Recovering log #62
2025/03/14-14:12:16.651982 7fba4dffb6c0 Delete type=3 #60
2025/03/14-14:12:16.652055 7fba4dffb6c0 Delete type=0 #62
2025/03/14-14:12:43.177170 7fb7affff6c0 Level-0 table #67: started
2025/03/14-14:12:43.177222 7fb7affff6c0 Level-0 table #67: 0 bytes OK
2025/03/14-14:12:43.183990 7fb7affff6c0 Delete type=0 #65
2025/03/14-14:12:43.184112 7fb7affff6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.184172 7fb7affff6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/bestiaire/000084.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000044
MANIFEST-000080

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.253738 7f80456006c0 Recovering log #41
2024/05/23-11:36:26.264899 7f80456006c0 Delete type=3 #39
2024/05/23-11:36:26.264953 7f80456006c0 Delete type=0 #41
2024/05/23-11:38:26.682932 7f803fe006c0 Level-0 table #47: started
2024/05/23-11:38:26.682974 7f803fe006c0 Level-0 table #47: 0 bytes OK
2024/05/23-11:38:26.717379 7f803fe006c0 Delete type=0 #45
2024/05/23-11:38:26.832745 7f803fe006c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.832821 7f803fe006c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.716442 7f4b37fff6c0 Recovering log #78
2025/04/30-23:34:36.727453 7f4b37fff6c0 Delete type=3 #76
2025/04/30-23:34:36.727523 7f4b37fff6c0 Delete type=0 #78
2025/04/30-23:48:18.706181 7f4b35bff6c0 Level-0 table #83: started
2025/04/30-23:48:18.709827 7f4b35bff6c0 Level-0 table #83: 44954 bytes OK
2025/04/30-23:48:18.715963 7f4b35bff6c0 Delete type=0 #81
2025/04/30-23:48:18.728104 7f4b35bff6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.762918 7f4b35bff6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at '!actors.items!zYffQLFKlxJ5Li83.vNpsdvHgD5qBYYPt' @ 207 : 1
2025/04/30-23:48:18.762928 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.767038 7f4b35bff6c0 Generated table #84@1: 54 keys, 45104 bytes
2025/04/30-23:48:18.767074 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 45104 bytes
2025/04/30-23:48:18.773021 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.773163 7f4b35bff6c0 Delete type=2 #43
2025/04/30-23:48:18.773348 7f4b35bff6c0 Delete type=2 #83
2025/04/30-23:48:18.773485 7f4b35bff6c0 Manual compaction at level-1 from '!actors.items!zYffQLFKlxJ5Li83.vNpsdvHgD5qBYYPt' @ 207 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:05.880008 7f80474006c0 Recovering log #37
2024/05/23-11:35:05.932900 7f80474006c0 Delete type=3 #35
2024/05/23-11:35:05.933004 7f80474006c0 Delete type=0 #37
2024/05/23-11:35:52.164884 7f803fe006c0 Level-0 table #42: started
2024/05/23-11:35:52.168554 7f803fe006c0 Level-0 table #42: 44719 bytes OK
2024/05/23-11:35:52.174606 7f803fe006c0 Delete type=0 #40
2024/05/23-11:35:52.186487 7f803fe006c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.210133 7f803fe006c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at '!actors.items!zYffQLFKlxJ5Li83.vNpsdvHgD5qBYYPt' @ 154 : 1
2024/05/23-11:35:52.210149 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.213977 7f803fe006c0 Generated table #43@1: 54 keys, 44868 bytes
2024/05/23-11:35:52.214008 7f803fe006c0 Compacted 1@1 + 1@2 files => 44868 bytes
2024/05/23-11:35:52.220101 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.220270 7f803fe006c0 Delete type=2 #34
2024/05/23-11:35:52.220430 7f803fe006c0 Delete type=2 #42
2024/05/23-11:35:52.230758 7f803fe006c0 Manual compaction at level-1 from '!actors.items!zYffQLFKlxJ5Li83.vNpsdvHgD5qBYYPt' @ 154 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.226965 7fba4cff96c0 Recovering log #74
2025/03/14-14:12:15.314781 7fba4cff96c0 Delete type=3 #72
2025/03/14-14:12:15.314848 7fba4cff96c0 Delete type=0 #74
2025/03/14-14:12:43.118957 7fb7affff6c0 Level-0 table #79: started
2025/03/14-14:12:43.119018 7fb7affff6c0 Level-0 table #79: 0 bytes OK
2025/03/14-14:12:43.124987 7fb7affff6c0 Delete type=0 #77
2025/03/14-14:12:43.132203 7fb7affff6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.132285 7fb7affff6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000068

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.416647 7f80456006c0 Recovering log #29
2024/05/23-11:36:26.426755 7f80456006c0 Delete type=3 #27
2024/05/23-11:36:26.426807 7f80456006c0 Delete type=0 #29
2024/05/23-11:38:27.127735 7f803fe006c0 Level-0 table #35: started
2024/05/23-11:38:27.127767 7f803fe006c0 Level-0 table #35: 0 bytes OK
2024/05/23-11:38:27.156818 7f803fe006c0 Delete type=0 #33
2024/05/23-11:38:27.283239 7f803fe006c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.283288 7f803fe006c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.908748 7f4b367fc6c0 Recovering log #66
2025/04/30-23:34:36.918361 7f4b367fc6c0 Delete type=3 #64
2025/04/30-23:34:36.918414 7f4b367fc6c0 Delete type=0 #66
2025/04/30-23:48:18.972361 7f4b35bff6c0 Level-0 table #71: started
2025/04/30-23:48:18.975642 7f4b35bff6c0 Level-0 table #71: 901 bytes OK
2025/04/30-23:48:18.982652 7f4b35bff6c0 Delete type=0 #69
2025/04/30-23:48:18.982859 7f4b35bff6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.992964 7f4b35bff6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at '!items!LaiHuZ30K4iJr6ce' @ 8 : 1
2025/04/30-23:48:18.992976 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.996523 7f4b35bff6c0 Generated table #72@1: 2 keys, 901 bytes
2025/04/30-23:48:18.996557 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 901 bytes
2025/04/30-23:48:19.002824 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:19.002965 7f4b35bff6c0 Delete type=2 #31
2025/04/30-23:48:19.003117 7f4b35bff6c0 Delete type=2 #71
2025/04/30-23:48:19.023817 7f4b35bff6c0 Manual compaction at level-1 from '!items!LaiHuZ30K4iJr6ce' @ 8 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.681079 7f80456006c0 Recovering log #25
2024/05/23-11:35:06.733585 7f80456006c0 Delete type=3 #23
2024/05/23-11:35:06.733676 7f80456006c0 Delete type=0 #25
2024/05/23-11:35:52.408695 7f803fe006c0 Level-0 table #30: started
2024/05/23-11:35:52.412094 7f803fe006c0 Level-0 table #30: 891 bytes OK
2024/05/23-11:35:52.418332 7f803fe006c0 Delete type=0 #28
2024/05/23-11:35:52.438798 7f803fe006c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.448865 7f803fe006c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at '!items!LaiHuZ30K4iJr6ce' @ 6 : 1
2024/05/23-11:35:52.448875 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.451938 7f803fe006c0 Generated table #31@1: 2 keys, 891 bytes
2024/05/23-11:35:52.451952 7f803fe006c0 Compacted 1@1 + 1@2 files => 891 bytes
2024/05/23-11:35:52.459187 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.459337 7f803fe006c0 Delete type=2 #22
2024/05/23-11:35:52.459554 7f803fe006c0 Delete type=2 #30
2024/05/23-11:35:52.479901 7f803fe006c0 Manual compaction at level-1 from '!items!LaiHuZ30K4iJr6ce' @ 6 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.654330 7fba4cff96c0 Recovering log #62
2025/03/14-14:12:16.746293 7fba4cff96c0 Delete type=3 #60
2025/03/14-14:12:16.746409 7fba4cff96c0 Delete type=0 #62
2025/03/14-14:12:43.196799 7fb7affff6c0 Level-0 table #67: started
2025/03/14-14:12:43.196824 7fb7affff6c0 Level-0 table #67: 0 bytes OK
2025/03/14-14:12:43.203033 7fb7affff6c0 Delete type=0 #65
2025/03/14-14:12:43.209580 7fb7affff6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.209649 7fb7affff6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000165.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000125
MANIFEST-000161

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.390072 7f80474006c0 Recovering log #122
2024/05/23-11:36:26.400169 7f80474006c0 Delete type=3 #120
2024/05/23-11:36:26.400273 7f80474006c0 Delete type=0 #122
2024/05/23-11:38:27.094008 7f803fe006c0 Level-0 table #128: started
2024/05/23-11:38:27.094074 7f803fe006c0 Level-0 table #128: 0 bytes OK
2024/05/23-11:38:27.127448 7f803fe006c0 Delete type=0 #126
2024/05/23-11:38:27.127606 7f803fe006c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.127638 7f803fe006c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.870151 7f4b36ffd6c0 Recovering log #159
2025/04/30-23:34:36.881113 7f4b36ffd6c0 Delete type=3 #157
2025/04/30-23:34:36.881239 7f4b36ffd6c0 Delete type=0 #159
2025/04/30-23:48:18.888821 7f4b35bff6c0 Level-0 table #164: started
2025/04/30-23:48:18.892155 7f4b35bff6c0 Level-0 table #164: 12597 bytes OK
2025/04/30-23:48:18.899021 7f4b35bff6c0 Delete type=0 #162
2025/04/30-23:48:18.899201 7f4b35bff6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.919452 7f4b35bff6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at '!items!zjMDuxKHKJ4vE5UV' @ 418 : 1
2025/04/30-23:48:18.919468 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.923147 7f4b35bff6c0 Generated table #165@1: 70 keys, 13743 bytes
2025/04/30-23:48:18.923180 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 13743 bytes
2025/04/30-23:48:18.929583 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.929705 7f4b35bff6c0 Delete type=2 #124
2025/04/30-23:48:18.929864 7f4b35bff6c0 Delete type=2 #164
2025/04/30-23:48:18.940473 7f4b35bff6c0 Manual compaction at level-1 from '!items!zjMDuxKHKJ4vE5UV' @ 418 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.519383 7f80474006c0 Recovering log #118
2024/05/23-11:35:06.577392 7f80474006c0 Delete type=3 #116
2024/05/23-11:35:06.577476 7f80474006c0 Delete type=0 #118
2024/05/23-11:35:52.335647 7f803fe006c0 Level-0 table #123: started
2024/05/23-11:35:52.340197 7f803fe006c0 Level-0 table #123: 12499 bytes OK
2024/05/23-11:35:52.346521 7f803fe006c0 Delete type=0 #121
2024/05/23-11:35:52.356830 7f803fe006c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.377068 7f803fe006c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at '!items!zjMDuxKHKJ4vE5UV' @ 357 : 1
2024/05/23-11:35:52.377077 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.380413 7f803fe006c0 Generated table #124@1: 70 keys, 13583 bytes
2024/05/23-11:35:52.380434 7f803fe006c0 Compacted 1@1 + 1@2 files => 13583 bytes
2024/05/23-11:35:52.386645 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.386706 7f803fe006c0 Delete type=2 #115
2024/05/23-11:35:52.386806 7f803fe006c0 Delete type=2 #123
2024/05/23-11:35:52.397769 7f803fe006c0 Manual compaction at level-1 from '!items!zjMDuxKHKJ4vE5UV' @ 357 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.441764 7fba4e7fc6c0 Recovering log #155
2025/03/14-14:12:16.537350 7fba4e7fc6c0 Delete type=3 #153
2025/03/14-14:12:16.537465 7fba4e7fc6c0 Delete type=0 #155
2025/03/14-14:12:43.170716 7fb7affff6c0 Level-0 table #160: started
2025/03/14-14:12:43.170742 7fb7affff6c0 Level-0 table #160: 0 bytes OK
2025/03/14-14:12:43.176998 7fb7affff6c0 Delete type=0 #158
2025/03/14-14:12:43.184102 7fb7affff6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.184156 7fb7affff6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/heritages/000235.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000195
MANIFEST-000231

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.322524 7f80460006c0 Recovering log #192
2024/05/23-11:36:26.332618 7f80460006c0 Delete type=3 #190
2024/05/23-11:36:26.332687 7f80460006c0 Delete type=0 #192
2024/05/23-11:38:26.870469 7f803fe006c0 Level-0 table #198: started
2024/05/23-11:38:26.870492 7f803fe006c0 Level-0 table #198: 0 bytes OK
2024/05/23-11:38:26.915350 7f803fe006c0 Delete type=0 #196
2024/05/23-11:38:26.981362 7f803fe006c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.981444 7f803fe006c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.801202 7f4b377fe6c0 Recovering log #229
2025/04/30-23:34:36.811770 7f4b377fe6c0 Delete type=3 #227
2025/04/30-23:34:36.811874 7f4b377fe6c0 Delete type=0 #229
2025/04/30-23:48:18.794531 7f4b35bff6c0 Level-0 table #234: started
2025/04/30-23:48:18.797886 7f4b35bff6c0 Level-0 table #234: 9428 bytes OK
2025/04/30-23:48:18.803898 7f4b35bff6c0 Delete type=0 #232
2025/04/30-23:48:18.814497 7f4b35bff6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.835756 7f4b35bff6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at '!items!nYYX7rtSMGFO4xVY' @ 50 : 1
2025/04/30-23:48:18.835774 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.839323 7f4b35bff6c0 Generated table #235@1: 10 keys, 9428 bytes
2025/04/30-23:48:18.839351 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 9428 bytes
2025/04/30-23:48:18.846314 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.846437 7f4b35bff6c0 Delete type=2 #194
2025/04/30-23:48:18.846585 7f4b35bff6c0 Delete type=2 #234
2025/04/30-23:48:18.856744 7f4b35bff6c0 Manual compaction at level-1 from '!items!nYYX7rtSMGFO4xVY' @ 50 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.205974 7f8046a006c0 Recovering log #188
2024/05/23-11:35:06.271007 7f8046a006c0 Delete type=3 #186
2024/05/23-11:35:06.271061 7f8046a006c0 Delete type=0 #188
2024/05/23-11:35:52.230900 7f803fe006c0 Level-0 table #193: started
2024/05/23-11:35:52.234050 7f803fe006c0 Level-0 table #193: 9381 bytes OK
2024/05/23-11:35:52.240165 7f803fe006c0 Delete type=0 #191
2024/05/23-11:35:52.270922 7f803fe006c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.270981 7f803fe006c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at '!items!nYYX7rtSMGFO4xVY' @ 40 : 1
2024/05/23-11:35:52.270989 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.274464 7f803fe006c0 Generated table #194@1: 10 keys, 9381 bytes
2024/05/23-11:35:52.274500 7f803fe006c0 Compacted 1@1 + 1@2 files => 9381 bytes
2024/05/23-11:35:52.280886 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.281019 7f803fe006c0 Delete type=2 #185
2024/05/23-11:35:52.281168 7f803fe006c0 Delete type=2 #193
2024/05/23-11:35:52.314050 7f803fe006c0 Manual compaction at level-1 from '!items!nYYX7rtSMGFO4xVY' @ 40 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.786018 7fba4d7fa6c0 Recovering log #225
2025/03/14-14:12:15.880213 7fba4d7fa6c0 Delete type=3 #223
2025/03/14-14:12:15.880325 7fba4d7fa6c0 Delete type=0 #225
2025/03/14-14:12:43.138938 7fb7affff6c0 Level-0 table #230: started
2025/03/14-14:12:43.138968 7fb7affff6c0 Level-0 table #230: 0 bytes OK
2025/03/14-14:12:43.144957 7fb7affff6c0 Delete type=0 #228
2025/03/14-14:12:43.158220 7fb7affff6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.158259 7fb7affff6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/heros/000072.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000068

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.267731 7f80460006c0 Recovering log #29
2024/05/23-11:36:26.278255 7f80460006c0 Delete type=3 #27
2024/05/23-11:36:26.278434 7f80460006c0 Delete type=0 #29
2024/05/23-11:38:26.717554 7f803fe006c0 Level-0 table #35: started
2024/05/23-11:38:26.717597 7f803fe006c0 Level-0 table #35: 0 bytes OK
2024/05/23-11:38:26.753723 7f803fe006c0 Delete type=0 #33
2024/05/23-11:38:26.832776 7f803fe006c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.832830 7f803fe006c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.740855 7f4b367fc6c0 Recovering log #66
2025/04/30-23:34:36.750397 7f4b367fc6c0 Delete type=3 #64
2025/04/30-23:34:36.750518 7f4b367fc6c0 Delete type=0 #66
2025/04/30-23:48:18.693918 7f4b35bff6c0 Level-0 table #71: started
2025/04/30-23:48:18.699827 7f4b35bff6c0 Level-0 table #71: 216867 bytes OK
2025/04/30-23:48:18.705987 7f4b35bff6c0 Delete type=0 #69
2025/04/30-23:48:18.728095 7f4b35bff6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.737814 7f4b35bff6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 1036 : 1
2025/04/30-23:48:18.737824 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.744036 7f4b35bff6c0 Generated table #72@1: 261 keys, 216867 bytes
2025/04/30-23:48:18.744064 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 216867 bytes
2025/04/30-23:48:18.749918 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.750041 7f4b35bff6c0 Delete type=2 #31
2025/04/30-23:48:18.750188 7f4b35bff6c0 Delete type=2 #71
2025/04/30-23:48:18.773461 7f4b35bff6c0 Manual compaction at level-1 from '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 1036 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:05.941241 7f80456006c0 Recovering log #25
2024/05/23-11:35:05.993757 7f80456006c0 Delete type=3 #23
2024/05/23-11:35:05.993818 7f80456006c0 Delete type=0 #25
2024/05/23-11:35:52.152396 7f803fe006c0 Level-0 table #30: started
2024/05/23-11:35:52.158444 7f803fe006c0 Level-0 table #30: 216163 bytes OK
2024/05/23-11:35:52.164693 7f803fe006c0 Delete type=0 #28
2024/05/23-11:35:52.186477 7f803fe006c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.197755 7f803fe006c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 775 : 1
2024/05/23-11:35:52.197768 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.203516 7f803fe006c0 Generated table #31@1: 261 keys, 216163 bytes
2024/05/23-11:35:52.203556 7f803fe006c0 Compacted 1@1 + 1@2 files => 216163 bytes
2024/05/23-11:35:52.209578 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.209730 7f803fe006c0 Delete type=2 #22
2024/05/23-11:35:52.209958 7f803fe006c0 Delete type=2 #30
2024/05/23-11:35:52.230747 7f803fe006c0 Manual compaction at level-1 from '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 775 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.324808 7fba4d7fa6c0 Recovering log #62
2025/03/14-14:12:15.411092 7fba4d7fa6c0 Delete type=3 #60
2025/03/14-14:12:15.411167 7fba4d7fa6c0 Delete type=0 #62
2025/03/14-14:12:43.105838 7fb7affff6c0 Level-0 table #67: started
2025/03/14-14:12:43.105882 7fb7affff6c0 Level-0 table #67: 0 bytes OK
2025/03/14-14:12:43.112421 7fb7affff6c0 Delete type=0 #65
2025/03/14-14:12:43.132151 7fb7affff6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.132247 7fb7affff6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/heros/MANIFEST-000068 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/metiers/000235.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000195
MANIFEST-000231

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.335215 7f80474006c0 Recovering log #192
2024/05/23-11:36:26.345427 7f80474006c0 Delete type=3 #190
2024/05/23-11:36:26.345523 7f80474006c0 Delete type=0 #192
2024/05/23-11:38:26.915537 7f803fe006c0 Level-0 table #198: started
2024/05/23-11:38:26.915581 7f803fe006c0 Level-0 table #198: 0 bytes OK
2024/05/23-11:38:26.944084 7f803fe006c0 Delete type=0 #196
2024/05/23-11:38:26.981384 7f803fe006c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.981463 7f803fe006c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.814963 7f4b37fff6c0 Recovering log #229
2025/04/30-23:34:36.825386 7f4b37fff6c0 Delete type=3 #227
2025/04/30-23:34:36.825500 7f4b37fff6c0 Delete type=0 #229
2025/04/30-23:48:18.783696 7f4b35bff6c0 Level-0 table #234: started
2025/04/30-23:48:18.787900 7f4b35bff6c0 Level-0 table #234: 36752 bytes OK
2025/04/30-23:48:18.794332 7f4b35bff6c0 Delete type=0 #232
2025/04/30-23:48:18.814486 7f4b35bff6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.824946 7f4b35bff6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at '!items!y0G0VMyygxIj4Y7F' @ 95 : 1
2025/04/30-23:48:18.824958 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.829069 7f4b35bff6c0 Generated table #235@1: 19 keys, 36752 bytes
2025/04/30-23:48:18.829106 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 36752 bytes
2025/04/30-23:48:18.835188 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.835339 7f4b35bff6c0 Delete type=2 #194
2025/04/30-23:48:18.835566 7f4b35bff6c0 Delete type=2 #234
2025/04/30-23:48:18.856732 7f4b35bff6c0 Manual compaction at level-1 from '!items!y0G0VMyygxIj4Y7F' @ 95 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.278280 7f80474006c0 Recovering log #188
2024/05/23-11:35:06.332353 7f80474006c0 Delete type=3 #186
2024/05/23-11:35:06.332410 7f80474006c0 Delete type=0 #188
2024/05/23-11:35:52.250869 7f803fe006c0 Level-0 table #193: started
2024/05/23-11:35:52.254343 7f803fe006c0 Level-0 table #193: 36654 bytes OK
2024/05/23-11:35:52.260633 7f803fe006c0 Delete type=0 #191
2024/05/23-11:35:52.270953 7f803fe006c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.303626 7f803fe006c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at '!items!y0G0VMyygxIj4Y7F' @ 76 : 1
2024/05/23-11:35:52.303648 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.307460 7f803fe006c0 Generated table #194@1: 19 keys, 36654 bytes
2024/05/23-11:35:52.307509 7f803fe006c0 Compacted 1@1 + 1@2 files => 36654 bytes
2024/05/23-11:35:52.313555 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.313756 7f803fe006c0 Delete type=2 #185
2024/05/23-11:35:52.313942 7f803fe006c0 Delete type=2 #193
2024/05/23-11:35:52.314103 7f803fe006c0 Manual compaction at level-1 from '!items!y0G0VMyygxIj4Y7F' @ 76 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.896685 7fba4e7fc6c0 Recovering log #225
2025/03/14-14:12:16.010368 7fba4e7fc6c0 Delete type=3 #223
2025/03/14-14:12:16.010445 7fba4e7fc6c0 Delete type=0 #225
2025/03/14-14:12:43.145023 7fb7affff6c0 Level-0 table #230: started
2025/03/14-14:12:43.145042 7fb7affff6c0 Level-0 table #230: 0 bytes OK
2025/03/14-14:12:43.150990 7fb7affff6c0 Delete type=0 #228
2025/03/14-14:12:43.158232 7fb7affff6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.158274 7fb7affff6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/mutations/000072.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000068

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.429066 7f80460006c0 Recovering log #29
2024/05/23-11:36:26.438996 7f80460006c0 Delete type=3 #27
2024/05/23-11:36:26.439054 7f80460006c0 Delete type=0 #29
2024/05/23-11:38:27.243155 7f803fe006c0 Level-0 table #35: started
2024/05/23-11:38:27.243202 7f803fe006c0 Level-0 table #35: 0 bytes OK
2024/05/23-11:38:27.283099 7f803fe006c0 Delete type=0 #33
2024/05/23-11:38:27.283279 7f803fe006c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.283310 7f803fe006c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.921742 7f4b36ffd6c0 Recovering log #66
2025/04/30-23:34:36.932497 7f4b36ffd6c0 Delete type=3 #64
2025/04/30-23:34:36.932569 7f4b36ffd6c0 Delete type=0 #66
2025/04/30-23:48:18.951413 7f4b35bff6c0 Level-0 table #71: started
2025/04/30-23:48:18.954652 7f4b35bff6c0 Level-0 table #71: 592 bytes OK
2025/04/30-23:48:18.960998 7f4b35bff6c0 Delete type=0 #69
2025/04/30-23:48:18.982837 7f4b35bff6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2025/04/30-23:48:19.003217 7f4b35bff6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at '!items!Vnpf6cKVHyd3ugnY' @ 4 : 1
2025/04/30-23:48:19.003230 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:19.006452 7f4b35bff6c0 Generated table #72@1: 1 keys, 592 bytes
2025/04/30-23:48:19.006478 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 592 bytes
2025/04/30-23:48:19.012900 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:19.013022 7f4b35bff6c0 Delete type=2 #31
2025/04/30-23:48:19.013154 7f4b35bff6c0 Delete type=2 #71
2025/04/30-23:48:19.023828 7f4b35bff6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 4 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.736762 7f8046a006c0 Recovering log #25
2024/05/23-11:35:06.788893 7f8046a006c0 Delete type=3 #23
2024/05/23-11:35:06.788978 7f8046a006c0 Delete type=0 #25
2024/05/23-11:35:52.397933 7f803fe006c0 Level-0 table #30: started
2024/05/23-11:35:52.401383 7f803fe006c0 Level-0 table #30: 582 bytes OK
2024/05/23-11:35:52.408461 7f803fe006c0 Delete type=0 #28
2024/05/23-11:35:52.438777 7f803fe006c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.438859 7f803fe006c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at '!items!Vnpf6cKVHyd3ugnY' @ 3 : 1
2024/05/23-11:35:52.438874 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.442540 7f803fe006c0 Generated table #31@1: 1 keys, 582 bytes
2024/05/23-11:35:52.442555 7f803fe006c0 Compacted 1@1 + 1@2 files => 582 bytes
2024/05/23-11:35:52.448654 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.448721 7f803fe006c0 Delete type=2 #22
2024/05/23-11:35:52.448803 7f803fe006c0 Delete type=2 #30
2024/05/23-11:35:52.479889 7f803fe006c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 3 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.749353 7fba4d7fa6c0 Recovering log #62
2025/03/14-14:12:16.836584 7fba4d7fa6c0 Delete type=3 #60
2025/03/14-14:12:16.836694 7fba4d7fa6c0 Delete type=0 #62
2025/03/14-14:12:43.184290 7fb7affff6c0 Level-0 table #67: started
2025/03/14-14:12:43.184339 7fb7affff6c0 Level-0 table #67: 0 bytes OK
2025/03/14-14:12:43.190473 7fb7affff6c0 Delete type=0 #65
2025/03/14-14:12:43.209530 7fb7affff6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.209635 7fb7affff6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/origines/000236.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000196
MANIFEST-000232

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.309345 7f80456006c0 Recovering log #193
2024/05/23-11:36:26.319454 7f80456006c0 Delete type=3 #191
2024/05/23-11:36:26.319584 7f80456006c0 Delete type=0 #193
2024/05/23-11:38:26.833035 7f803fe006c0 Level-0 table #199: started
2024/05/23-11:38:26.833072 7f803fe006c0 Level-0 table #199: 0 bytes OK
2024/05/23-11:38:26.870362 7f803fe006c0 Delete type=0 #197
2024/05/23-11:38:26.981334 7f803fe006c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.981425 7f803fe006c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.786043 7f4b367fc6c0 Recovering log #230
2025/04/30-23:34:36.796376 7f4b367fc6c0 Delete type=3 #228
2025/04/30-23:34:36.796441 7f4b367fc6c0 Delete type=0 #230
2025/04/30-23:48:18.773627 7f4b35bff6c0 Level-0 table #235: started
2025/04/30-23:48:18.777371 7f4b35bff6c0 Level-0 table #235: 32632 bytes OK
2025/04/30-23:48:18.783554 7f4b35bff6c0 Delete type=0 #233
2025/04/30-23:48:18.814472 7f4b35bff6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.814519 7f4b35bff6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at '!items!xox7R7Uuuz0eGL0p' @ 132 : 1
2025/04/30-23:48:18.814527 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.818195 7f4b35bff6c0 Generated table #236@1: 23 keys, 32632 bytes
2025/04/30-23:48:18.818225 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 32632 bytes
2025/04/30-23:48:18.824550 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.824674 7f4b35bff6c0 Delete type=2 #195
2025/04/30-23:48:18.824850 7f4b35bff6c0 Delete type=2 #235
2025/04/30-23:48:18.856716 7f4b35bff6c0 Manual compaction at level-1 from '!items!xox7R7Uuuz0eGL0p' @ 132 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.148229 7f80456006c0 Recovering log #189
2024/05/23-11:35:06.199374 7f80456006c0 Delete type=3 #187
2024/05/23-11:35:06.199441 7f80456006c0 Delete type=0 #189
2024/05/23-11:35:52.240294 7f803fe006c0 Level-0 table #194: started
2024/05/23-11:35:52.244436 7f803fe006c0 Level-0 table #194: 32532 bytes OK
2024/05/23-11:35:52.250742 7f803fe006c0 Delete type=0 #192
2024/05/23-11:35:52.270939 7f803fe006c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.281258 7f803fe006c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at '!items!xox7R7Uuuz0eGL0p' @ 109 : 1
2024/05/23-11:35:52.281270 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.285296 7f803fe006c0 Generated table #195@1: 23 keys, 32532 bytes
2024/05/23-11:35:52.285328 7f803fe006c0 Compacted 1@1 + 1@2 files => 32532 bytes
2024/05/23-11:35:52.291433 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.291544 7f803fe006c0 Delete type=2 #186
2024/05/23-11:35:52.291679 7f803fe006c0 Delete type=2 #194
2024/05/23-11:35:52.314072 7f803fe006c0 Manual compaction at level-1 from '!items!xox7R7Uuuz0eGL0p' @ 109 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.672681 7fba4cff96c0 Recovering log #226
2025/03/14-14:12:15.776484 7fba4cff96c0 Delete type=3 #224
2025/03/14-14:12:15.776560 7fba4cff96c0 Delete type=0 #226
2025/03/14-14:12:43.132507 7fb7affff6c0 Level-0 table #231: started
2025/03/14-14:12:43.132565 7fb7affff6c0 Level-0 table #231: 0 bytes OK
2025/03/14-14:12:43.138828 7fb7affff6c0 Delete type=0 #229
2025/03/14-14:12:43.158208 7fb7affff6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.158251 7fb7affff6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/peuples/000072.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000032
MANIFEST-000068

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.441282 7f80474006c0 Recovering log #29
2024/05/23-11:36:26.452393 7f80474006c0 Delete type=3 #27
2024/05/23-11:36:26.452506 7f80474006c0 Delete type=0 #29
2024/05/23-11:38:27.198934 7f803fe006c0 Level-0 table #35: started
2024/05/23-11:38:27.198962 7f803fe006c0 Level-0 table #35: 0 bytes OK
2024/05/23-11:38:27.242954 7f803fe006c0 Delete type=0 #33
2024/05/23-11:38:27.283268 7f803fe006c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2024/05/23-11:38:27.283302 7f803fe006c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.934886 7f4b37fff6c0 Recovering log #66
2025/04/30-23:34:36.945113 7f4b37fff6c0 Delete type=3 #64
2025/04/30-23:34:36.945238 7f4b37fff6c0 Delete type=0 #66
2025/04/30-23:48:18.940588 7f4b35bff6c0 Level-0 table #71: started
2025/04/30-23:48:18.943892 7f4b35bff6c0 Level-0 table #71: 5232 bytes OK
2025/04/30-23:48:18.951132 7f4b35bff6c0 Delete type=0 #69
2025/04/30-23:48:18.982821 7f4b35bff6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.982870 7f4b35bff6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at '!items!qAmsD4MHgywYj6XV' @ 16 : 1
2025/04/30-23:48:18.982879 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.986553 7f4b35bff6c0 Generated table #72@1: 4 keys, 5232 bytes
2025/04/30-23:48:18.986608 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 5232 bytes
2025/04/30-23:48:18.992660 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.992762 7f4b35bff6c0 Delete type=2 #31
2025/04/30-23:48:18.992886 7f4b35bff6c0 Delete type=2 #71
2025/04/30-23:48:19.023804 7f4b35bff6c0 Manual compaction at level-1 from '!items!qAmsD4MHgywYj6XV' @ 16 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.791733 7f80474006c0 Recovering log #25
2024/05/23-11:35:06.845539 7f80474006c0 Delete type=3 #23
2024/05/23-11:35:06.845613 7f80474006c0 Delete type=0 #25
2024/05/23-11:35:52.418615 7f803fe006c0 Level-0 table #30: started
2024/05/23-11:35:52.422508 7f803fe006c0 Level-0 table #30: 5215 bytes OK
2024/05/23-11:35:52.428577 7f803fe006c0 Delete type=0 #28
2024/05/23-11:35:52.438818 7f803fe006c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.459722 7f803fe006c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at '!items!qAmsD4MHgywYj6XV' @ 12 : 1
2024/05/23-11:35:52.459744 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.463213 7f803fe006c0 Generated table #31@1: 4 keys, 5215 bytes
2024/05/23-11:35:52.463233 7f803fe006c0 Compacted 1@1 + 1@2 files => 5215 bytes
2024/05/23-11:35:52.469233 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.469300 7f803fe006c0 Delete type=2 #22
2024/05/23-11:35:52.469386 7f803fe006c0 Delete type=2 #30
2024/05/23-11:35:52.479911 7f803fe006c0 Manual compaction at level-1 from '!items!qAmsD4MHgywYj6XV' @ 12 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2025/03/14-14:12:16.838771 7fba4e7fc6c0 Recovering log #62
2025/03/14-14:12:16.935874 7fba4e7fc6c0 Delete type=3 #60
2025/03/14-14:12:16.935944 7fba4e7fc6c0 Delete type=0 #62
2025/03/14-14:12:43.190599 7fb7affff6c0 Level-0 table #67: started
2025/03/14-14:12:43.190626 7fb7affff6c0 Level-0 table #67: 0 bytes OK
2025/03/14-14:12:43.196678 7fb7affff6c0 Delete type=0 #65
2025/03/14-14:12:43.209556 7fb7affff6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.209620 7fb7affff6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/pouvoirs/000153.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000113
MANIFEST-000149

View File

@ -1,8 +1,15 @@
2024/05/23-11:36:26.295446 7f8046a006c0 Recovering log #110
2024/05/23-11:36:26.305790 7f8046a006c0 Delete type=3 #108
2024/05/23-11:36:26.305908 7f8046a006c0 Delete type=0 #110
2024/05/23-11:38:26.791111 7f803fe006c0 Level-0 table #116: started
2024/05/23-11:38:26.791169 7f803fe006c0 Level-0 table #116: 0 bytes OK
2024/05/23-11:38:26.832536 7f803fe006c0 Delete type=0 #114
2024/05/23-11:38:26.832812 7f803fe006c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2024/05/23-11:38:26.832852 7f803fe006c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2025/04/30-23:34:36.771818 7f4b36ffd6c0 Recovering log #147
2025/04/30-23:34:36.781579 7f4b36ffd6c0 Delete type=3 #145
2025/04/30-23:34:36.781640 7f4b36ffd6c0 Delete type=0 #147
2025/04/30-23:48:18.716175 7f4b35bff6c0 Level-0 table #152: started
2025/04/30-23:48:18.721440 7f4b35bff6c0 Level-0 table #152: 108337 bytes OK
2025/04/30-23:48:18.727911 7f4b35bff6c0 Delete type=0 #150
2025/04/30-23:48:18.728113 7f4b35bff6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2025/04/30-23:48:18.750321 7f4b35bff6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at '!items!zmaCOCCpgO3YtEn6' @ 684 : 1
2025/04/30-23:48:18.750337 7f4b35bff6c0 Compacting 1@1 + 1@2 files
2025/04/30-23:48:18.755975 7f4b35bff6c0 Generated table #153@1: 157 keys, 110260 bytes
2025/04/30-23:48:18.756005 7f4b35bff6c0 Compacted 1@1 + 1@2 files => 110260 bytes
2025/04/30-23:48:18.762518 7f4b35bff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2025/04/30-23:48:18.762661 7f4b35bff6c0 Delete type=2 #112
2025/04/30-23:48:18.762823 7f4b35bff6c0 Delete type=2 #152
2025/04/30-23:48:18.773473 7f4b35bff6c0 Manual compaction at level-1 from '!items!zmaCOCCpgO3YtEn6' @ 684 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)

View File

@ -1,15 +1,8 @@
2024/05/23-11:35:06.079621 7f80460006c0 Recovering log #106
2024/05/23-11:35:06.139251 7f80460006c0 Delete type=3 #104
2024/05/23-11:35:06.139321 7f80460006c0 Delete type=0 #106
2024/05/23-11:35:52.141545 7f803fe006c0 Level-0 table #111: started
2024/05/23-11:35:52.145956 7f803fe006c0 Level-0 table #111: 107383 bytes OK
2024/05/23-11:35:52.152106 7f803fe006c0 Delete type=0 #109
2024/05/23-11:35:52.186460 7f803fe006c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2024/05/23-11:35:52.186514 7f803fe006c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at '!items!zmaCOCCpgO3YtEn6' @ 542 : 1
2024/05/23-11:35:52.186524 7f803fe006c0 Compacting 1@1 + 1@2 files
2024/05/23-11:35:52.191105 7f803fe006c0 Generated table #112@1: 157 keys, 109300 bytes
2024/05/23-11:35:52.191134 7f803fe006c0 Compacted 1@1 + 1@2 files => 109300 bytes
2024/05/23-11:35:52.197154 7f803fe006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/05/23-11:35:52.197356 7f803fe006c0 Delete type=2 #103
2024/05/23-11:35:52.197666 7f803fe006c0 Delete type=2 #111
2024/05/23-11:35:52.230735 7f803fe006c0 Manual compaction at level-1 from '!items!zmaCOCCpgO3YtEn6' @ 542 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2025/03/14-14:12:15.547468 7fba4dffb6c0 Recovering log #143
2025/03/14-14:12:15.648623 7fba4dffb6c0 Delete type=3 #141
2025/03/14-14:12:15.648747 7fba4dffb6c0 Delete type=0 #143
2025/03/14-14:12:43.125129 7fb7affff6c0 Level-0 table #148: started
2025/03/14-14:12:43.125169 7fb7affff6c0 Level-0 table #148: 0 bytes OK
2025/03/14-14:12:43.131940 7fb7affff6c0 Delete type=0 #146
2025/03/14-14:12:43.132226 7fb7affff6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2025/03/14-14:12:43.132304 7fb7affff6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More