Compare commits

...

3 Commits
v12 ... main

Author SHA1 Message Date
a0502dc467 Corrections cosmetiques v13 2025-06-03 13:49:09 +02:00
c8b94b74a1 Corrections cosmetiques v13 2025-06-03 13:48:23 +02:00
c9e4f125b4 Foundry v13 migration 2025-05-01 20:40:20 +02:00
130 changed files with 406 additions and 373 deletions

View File

@ -132,6 +132,7 @@
"MNBL.damage": "Dégats", "MNBL.damage": "Dégats",
"MNBL.protections": "Protections", "MNBL.protections": "Protections",
"MNBL.equipments": "Equipements", "MNBL.equipments": "Equipements",
"MNBL.equipment": "Equipement",
"MNBL.origin": "Origine", "MNBL.origin": "Origine",
"MNBL.legacy": "Héritage", "MNBL.legacy": "Héritage",
"MNBL.profession": "Métier", "MNBL.profession": "Métier",
@ -208,6 +209,10 @@
"MNBL.ressources": "Ressources", "MNBL.ressources": "Ressources",
"MNBL.weaponscapacities": "Armes/Capacités", "MNBL.weaponscapacities": "Armes/Capacités",
"MNBL.use": "Utiliser", "MNBL.use": "Utiliser",
"MNBL.speciestrait": "Trait d'espèce" "MNBL.speciestrait": "Trait d'espèce",
"MNBL.attribute": "Attribut",
"MNBL.Protections": "Protections",
"MNBL.rune": "Rune"
} }

View File

@ -7,7 +7,7 @@ import { MournbladeUtility } from "./mournblade-utility.js";
import { MournbladeRollDialog } from "./mournblade-roll-dialog.js"; import { MournbladeRollDialog } from "./mournblade-roll-dialog.js";
/* -------------------------------------------- */ /* -------------------------------------------- */
export class MournbladeActorSheet extends ActorSheet { export class MournbladeActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */ /** @override */
static get defaultOptions() { static get defaultOptions() {
@ -63,7 +63,7 @@ export class MournbladeActorSheet extends ActorSheet {
protectionTotal: this.actor.getProtectionTotal(), protectionTotal: this.actor.getProtectionTotal(),
santeMalus: this.actor.getStatusMalus(), santeMalus: this.actor.getStatusMalus(),
ameMalus: this.actor.getAmeMalus(), ameMalus: this.actor.getAmeMalus(),
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}), description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.description, {async: true}),
options: this.options, options: this.options,
owner: this.document.isOwner, owner: this.document.isOwner,
editScore: this.options.editScore, editScore: this.options.editScore,

View File

@ -253,15 +253,6 @@ export class MournbladeActor extends Actor {
return combat return combat
} }
/* -------------------------------------------- */
prepareBaseData() {
}
/* -------------------------------------------- */
async prepareData() {
super.prepareData();
}
/* -------------------------------------------- */ /* -------------------------------------------- */
prepareDerivedData() { prepareDerivedData() {
@ -718,10 +709,11 @@ export class MournbladeActor extends Actor {
if (arme.type == "bouclier") { if (arme.type == "bouclier") {
arme = this.prepareBouclier(arme) arme = this.prepareBouclier(arme)
} }
rollData.degatsFormula = arme.system.totalDegats //Unused rollData.degatsFormula = arme.system.totalDegats
let roll = new Roll(arme.system.totalDegats).roll({ async: false }) let roll = await new Roll(arme.system.totalDegats).roll()
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode")); await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
let rollData = { let rollData = {
degatsFormula:arme.system.totalDegats,
arme: arme, arme: arme,
finalResult: roll.total, finalResult: roll.total,
alias: this.name, alias: this.name,
@ -730,7 +722,7 @@ export class MournbladeActor extends Actor {
actionImg: arme.img, actionImg: arme.img,
} }
MournbladeUtility.createChatWithRollMode(rollData.alias, { MournbladeUtility.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData) content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData)
}) })
} }

View File

@ -4,7 +4,7 @@ import { MournbladeUtility } from "./mournblade-utility.js";
* Extend the basic ItemSheet with some very simple modifications * Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet} * @extends {ItemSheet}
*/ */
export class MournbladeItemSheet extends ItemSheet { export class MournbladeItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */ /** @override */
static get defaultOptions() { static get defaultOptions() {
@ -63,14 +63,14 @@ export class MournbladeItemSheet extends ItemSheet {
limited: this.object.limited, limited: this.object.limited,
options: this.options, options: this.options,
owner: this.document.isOwner, owner: this.document.isOwner,
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}), description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, {async: true}),
config: game.system.mournblade.config, config: game.system.mournblade.config,
mr: (this.object.type == 'specialisation'), mr: (this.object.type == 'specialisation'),
isGM: game.user.isGM isGM: game.user.isGM
} }
if ( objectData.type == "don") { if ( objectData.type == "don") {
formData.sacrifice = await TextEditor.enrichHTML(this.object.system.sacrifice, {async: true}) formData.sacrifice = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.sacrifice, {async: true})
} }
//this.options.editable = !(this.object.origin == "embeddedItem"); //this.options.editable = !(this.object.origin == "embeddedItem");
console.log("ITEM DATA", formData, this); console.log("ITEM DATA", formData, this);

View File

@ -52,12 +52,12 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */ /* -------------------------------------------- */
// Register sheet application classes // Register sheet application classes
Actors.unregisterSheet("core", ActorSheet); foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true }) foundry.documents.collections.Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true })
Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true }) foundry.documents.collections.Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true })
Items.unregisterSheet("core", ItemSheet); foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true }) foundry.documents.collections.Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true })
MournbladeUtility.init(); MournbladeUtility.init();
@ -137,4 +137,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
} }
return true; return true;
}); });

View File

@ -6,7 +6,7 @@ export class MournbladeRollDialog extends Dialog {
static async create(actor, rollData ) { static async create(actor, rollData ) {
let options = { classes: ["MournbladeDialog"], width: 340, height: 'fit-content', 'z-index': 99999 }; let options = { classes: ["MournbladeDialog"], width: 340, height: 'fit-content', 'z-index': 99999 };
let html = await renderTemplate('systems/fvtt-mournblade/templates/roll-dialog-generic.html', rollData); let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-mournblade/templates/roll-dialog-generic.html', rollData);
return new MournbladeRollDialog(actor, rollData, html, options ); return new MournbladeRollDialog(actor, rollData, html, options );
} }

View File

@ -8,9 +8,9 @@ export class MournbladeUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static async init() { static async init() {
Hooks.on('renderChatLog', (log, html, data) => MournbladeUtility.chatListeners(html)) Hooks.on('renderChatMessageHTML', (log, html, data) => MournbladeUtility.chatListeners(html))
Hooks.on("getChatLogEntryContext", (html, options) => MournbladeUtility.chatRollMenu(html, options)) Hooks.on("getChatMessageContextOptions", (html, options) => MournbladeUtility.chatRollMenu(html, options))
Hooks.on('renderChatMessage', (message, html, data) => MournbladeUtility.chatMessageHandler(message, html, data)) Hooks.on('renderChatMessageHTML', (message, html, data) => MournbladeUtility.chatMessageHandler(message, html, data))
Hooks.on("getCombatTrackerEntryContext", (html, options) => { Hooks.on("getCombatTrackerEntryContext", (html, options) => {
MournbladeUtility.pushInitiativeOptions(html, options); MournbladeUtility.pushInitiativeOptions(html, options);
@ -112,7 +112,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static async chatMessageHandler(message, html, data) { static async chatMessageHandler(message, html, data) {
const chatCard = html.find('.action-section') const chatCard = $(html).find('.action-section')
if (chatCard.length > 0) { if (chatCard.length > 0) {
// If the user is the message author or the actor owner, proceed // If the user is the message author or the actor owner, proceed
const actor = game.actors.get(data.message.speaker.actor) const actor = game.actors.get(data.message.speaker.actor)
@ -127,7 +127,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static async chatListeners(html) { 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 predIdx = $(event.currentTarget).data("predilection-index")
let messageId = MournbladeUtility.findChatMessageId(event.currentTarget) let messageId = MournbladeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId) let message = game.messages.get(messageId)
@ -139,7 +139,7 @@ export class MournbladeUtility {
await MournbladeUtility.rollMournblade(rollData) await MournbladeUtility.rollMournblade(rollData)
}) })
html.on("click", '.arme-roll-degats', async event => { $(html).on("click", '.arme-roll-degats', async event => {
let messageId = MournbladeUtility.findChatMessageId(event.currentTarget) let messageId = MournbladeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId) let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
@ -147,7 +147,7 @@ export class MournbladeUtility {
}) })
html.on("click", '.arme-apply-degats', async event => { $(html).on("click", '.arme-apply-degats', async event => {
let messageId = MournbladeUtility.findChatMessageId(event.currentTarget) let messageId = MournbladeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId) let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
@ -166,7 +166,7 @@ export class MournbladeUtility {
'systems/fvtt-mournblade/templates/editor-notes-gm.html', 'systems/fvtt-mournblade/templates/editor-notes-gm.html',
'systems/fvtt-mournblade/templates/partial-item-description.html' 'systems/fvtt-mournblade/templates/partial-item-description.html'
] ]
return loadTemplates(templatePaths); return foundry.applications.handlebars.loadTemplates(templatePaths);
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
@ -423,7 +423,7 @@ export class MournbladeUtility {
actor.setModifier("Charge de Cavalerie : -5 défense pour le tour", "defense", -5) actor.setModifier("Charge de Cavalerie : -5 défense pour le tour", "defense", -5)
} }
this.createChatWithRollMode(rollData.alias, { this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-generic-result.html`, rollData) content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-generic-result.html`, rollData)
}, rollData) }, rollData)
} }
@ -553,6 +553,8 @@ export class MournbladeUtility {
} }
defender.incDecSante(type, +degats, rollData.ignoreDefenseArmor) defender.incDecSante(type, +degats, rollData.ignoreDefenseArmor)
ui.notifications.info(defender.name + "a subi " + degats + " points de santé " + type + ".") ui.notifications.info(defender.name + "a subi " + degats + " points de santé " + type + ".")
} else {
ui.notifications.warn("Pas de cible sélectionnée ou pas d'arme de défense équipée.")
} }
} }
@ -694,7 +696,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static applyBonneAventureRoll(li, changed, addedBonus) { static applyBonneAventureRoll(li, changed, addedBonus) {
let msgId = li.data("message-id") let msgId = $(li).data("message-id")
let msg = game.messages.get(msgId) let msg = game.messages.get(msgId)
if (msg) { if (msg) {
let rollData = msg.getFlag("world", "mournblade-roll") let rollData = msg.getFlag("world", "mournblade-roll")
@ -713,7 +715,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static applyEclatRoll(li, changed, addedBonus) { static applyEclatRoll(li, changed, addedBonus) {
let msgId = li.data("message-id") let msgId = $(li).data("message-id")
let msg = game.messages.get(msgId) let msg = game.messages.get(msgId)
if (msg) { if (msg) {
let rollData = msg.getFlag("world", "mournblade-roll") let rollData = msg.getFlag("world", "mournblade-roll")
@ -730,37 +732,37 @@ export class MournbladeUtility {
static chatRollMenu(html, options) { static chatRollMenu(html, options) {
let canApply = li => canvas.tokens.controlled.length && li.find(".mournblade-roll").length let canApply = li => canvas.tokens.controlled.length && li.find(".mournblade-roll").length
let canApplyBALoyal = function (li) { let canApplyBALoyal = 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "loyal") return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "loyal")
} }
let canApplyPELoyal = function (li) { let canApplyPELoyal = 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "loyal") return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "loyal")
} }
let canApplyBAChaotique = function (li) { let canApplyBAChaotique = 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "chaotique") return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "chaotique")
} }
let canApplyBAChaotique3 = function (li) { let canApplyBAChaotique3 = 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 2 && actor.getAlignement() == "chaotique") return (!rollData.isReroll && actor.getBonneAventure() > 2 && actor.getAlignement() == "chaotique")
} }
let canApplyPEChaotique = function (li) { let canApplyPEChaotique = 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "chaotique") return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "chaotique")
} }
let hasPredilection = function (li) { 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
if (rollData.competence) { if (rollData.competence) {
@ -770,7 +772,7 @@ export class MournbladeUtility {
return false return false
} }
let canCompetenceDouble = function (li) { 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", "mournblade-roll") let rollData = message.getFlag("world", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData) let actor = MournbladeUtility.getActorFromRollData(rollData)
if (rollData.competence) { if (rollData.competence) {

Binary file not shown.

BIN
packs/armes/000235.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000217 MANIFEST-000240

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:44.885743 7f7ed4e006c0 Recovering log #215 2025/06/03-13:38:34.829840 7f53e4df86c0 Recovering log #238
2024/09/10-07:14:44.956966 7f7ed4e006c0 Delete type=3 #213 2025/06/03-13:38:34.883917 7f53e4df86c0 Delete type=3 #236
2024/09/10-07:14:44.957144 7f7ed4e006c0 Delete type=0 #215 2025/06/03-13:38:34.884056 7f53e4df86c0 Delete type=0 #238
2024/09/10-07:20:33.463210 7f7ecd6006c0 Level-0 table #220: started 2025/06/03-13:46:40.549617 7f53df3ff6c0 Level-0 table #243: started
2024/09/10-07:20:33.463253 7f7ecd6006c0 Level-0 table #220: 0 bytes OK 2025/06/03-13:46:40.549726 7f53df3ff6c0 Level-0 table #243: 0 bytes OK
2024/09/10-07:20:33.501220 7f7ecd6006c0 Delete type=0 #218 2025/06/03-13:46:40.591881 7f53df3ff6c0 Delete type=0 #241
2024/09/10-07:20:33.538862 7f7ecd6006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701236 7f53df3ff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.538937 7f7ecd6006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701447 7f53df3ff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.138004 7f7ecf4006c0 Recovering log #210 2025/05/29-15:55:26.176609 7f53e5dfa6c0 Recovering log #233
2024/09/09-21:51:17.149501 7f7ecf4006c0 Delete type=3 #208 2025/05/29-15:55:26.190009 7f53e5dfa6c0 Delete type=3 #229
2024/09/09-21:51:17.149609 7f7ecf4006c0 Delete type=0 #210 2025/05/29-15:55:26.190103 7f53e5dfa6c0 Delete type=3 #221
2024/09/09-21:52:48.597265 7f7ecd6006c0 Level-0 table #216: started 2025/05/29-15:55:26.190162 7f53e5dfa6c0 Delete type=0 #233
2024/09/09-21:52:48.597313 7f7ecd6006c0 Level-0 table #216: 0 bytes OK 2025/05/29-16:03:58.142314 7f53df3ff6c0 Level-0 table #239: started
2024/09/09-21:52:48.604438 7f7ecd6006c0 Delete type=0 #214 2025/05/29-16:03:58.142371 7f53df3ff6c0 Level-0 table #239: 0 bytes OK
2024/09/09-21:52:48.611351 7f7ecd6006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.149718 7f53df3ff6c0 Delete type=0 #237
2024/09/09-21:52:48.611418 7f7ecd6006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.170022 7f53df3ff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.170098 7f53df3ff6c0 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-000240 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/dons/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.086238 7f7ecf4006c0 Recovering log #214 2025/06/03-13:38:35.003129 7f53dffff6c0 Recovering log #237
2024/09/10-07:14:45.144857 7f7ecf4006c0 Delete type=3 #212 2025/06/03-13:38:35.063448 7f53dffff6c0 Delete type=3 #235
2024/09/10-07:14:45.145056 7f7ecf4006c0 Delete type=0 #214 2025/06/03-13:38:35.063543 7f53dffff6c0 Delete type=0 #237
2024/09/10-07:20:33.607105 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.628405 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.607143 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.628456 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.638955 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.666357 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.678483 7f7ecd6006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701286 7f53df3ff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.678561 7f7ecd6006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701434 7f53df3ff6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.180244 7f7ecea006c0 Recovering log #209 2025/05/29-15:55:26.234910 7f53dffff6c0 Recovering log #232
2024/09/09-21:51:17.191008 7f7ecea006c0 Delete type=3 #207 2025/05/29-15:55:26.245499 7f53dffff6c0 Delete type=3 #228
2024/09/09-21:51:17.191115 7f7ecea006c0 Delete type=0 #209 2025/05/29-15:55:26.245611 7f53dffff6c0 Delete type=3 #220
2024/09/09-21:52:48.625325 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.245670 7f53dffff6c0 Delete type=0 #232
2024/09/09-21:52:48.625386 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.183794 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.631864 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.183822 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.638978 7f7ecd6006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.189942 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.639033 7f7ecd6006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.196960 7f53df3ff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.197030 7f53df3ff6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/dons/MANIFEST-000239 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.020069 7f7ecfe006c0 Recovering log #214 2025/06/03-13:38:34.942102 7f53e4df86c0 Recovering log #237
2024/09/10-07:14:45.082360 7f7ecfe006c0 Delete type=3 #212 2025/06/03-13:38:35.000785 7f53e4df86c0 Delete type=3 #235
2024/09/10-07:14:45.082521 7f7ecfe006c0 Delete type=0 #214 2025/06/03-13:38:35.000863 7f53e4df86c0 Delete type=0 #237
2024/09/10-07:20:33.576805 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.592034 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.576855 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.592075 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.606927 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.628226 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.678460 7f7ecd6006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701268 7f53df3ff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.678542 7f7ecd6006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701319 7f53df3ff6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.166142 7f7ecfe006c0 Recovering log #209 2025/05/29-15:55:26.213516 7f53e4df86c0 Recovering log #232
2024/09/09-21:51:17.176865 7f7ecfe006c0 Delete type=3 #207 2025/05/29-15:55:26.225680 7f53e4df86c0 Delete type=3 #228
2024/09/09-21:51:17.176960 7f7ecfe006c0 Delete type=0 #209 2025/05/29-15:55:26.225779 7f53e4df86c0 Delete type=3 #220
2024/09/09-21:52:48.618041 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.225833 7f53e4df86c0 Delete type=0 #232
2024/09/09-21:52:48.618105 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.177296 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.625105 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.177336 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.638957 7f7ecd6006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.183675 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.639048 7f7ecd6006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.196949 7f53df3ff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.197004 7f53df3ff6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/heritages/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.210943 7f7ecea006c0 Recovering log #214 2025/06/03-13:38:35.120991 7f53e4df86c0 Recovering log #237
2024/09/10-07:14:45.265940 7f7ecea006c0 Delete type=3 #212 2025/06/03-13:38:35.175559 7f53e4df86c0 Delete type=3 #235
2024/09/10-07:14:45.266060 7f7ecea006c0 Delete type=0 #214 2025/06/03-13:38:35.175657 7f53e4df86c0 Delete type=0 #237
2024/09/10-07:20:33.678752 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.666519 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.678827 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.666557 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.713480 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.701027 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.816847 7f7ecd6006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.701306 7f53df3ff6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.816952 7f7ecd6006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.815749 7f53df3ff6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.208104 7f7ed4e006c0 Recovering log #209 2025/05/29-15:55:26.270465 7f53e55f96c0 Recovering log #232
2024/09/09-21:51:17.219088 7f7ed4e006c0 Delete type=3 #207 2025/05/29-15:55:26.282262 7f53e55f96c0 Delete type=3 #228
2024/09/09-21:51:17.219197 7f7ed4e006c0 Delete type=0 #209 2025/05/29-15:55:26.282411 7f53e55f96c0 Delete type=3 #220
2024/09/09-21:52:48.639145 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.282478 7f53e55f96c0 Delete type=0 #232
2024/09/09-21:52:48.639185 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.203630 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.646533 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.203677 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.668071 7f7ecd6006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.209907 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.668151 7f7ecd6006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.224352 7f53df3ff6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.224420 7f53df3ff6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/metiers/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.269926 7f7ecfe006c0 Recovering log #214 2025/06/03-13:38:35.178238 7f53e5dfa6c0 Recovering log #237
2024/09/10-07:14:45.328808 7f7ecfe006c0 Delete type=3 #212 2025/06/03-13:38:35.231112 7f53e5dfa6c0 Delete type=3 #235
2024/09/10-07:14:45.328977 7f7ecfe006c0 Delete type=0 #214 2025/06/03-13:38:35.231235 7f53e5dfa6c0 Delete type=0 #237
2024/09/10-07:20:33.783195 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.815886 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.783241 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.815947 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.816523 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.852810 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.816931 7f7ecd6006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.963250 7f53df3ff6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.817030 7f7ecd6006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.963359 7f53df3ff6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.222186 7f7ecfe006c0 Recovering log #209 2025/05/29-15:55:26.287199 7f53dffff6c0 Recovering log #232
2024/09/09-21:51:17.233209 7f7ecfe006c0 Delete type=3 #207 2025/05/29-15:55:26.297484 7f53dffff6c0 Delete type=3 #228
2024/09/09-21:51:17.233359 7f7ecfe006c0 Delete type=0 #209 2025/05/29-15:55:26.298188 7f53dffff6c0 Delete type=3 #220
2024/09/09-21:52:48.646768 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.298300 7f53dffff6c0 Delete type=0 #232
2024/09/09-21:52:48.646827 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.210092 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.653236 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.210134 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.668098 7f7ecd6006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.216327 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.668166 7f7ecd6006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.224370 7f53df3ff6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.224436 7f53df3ff6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/origines/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.148885 7f7ed4e006c0 Recovering log #214 2025/06/03-13:38:35.066449 7f53e55f96c0 Recovering log #237
2024/09/10-07:14:45.204991 7f7ed4e006c0 Delete type=3 #212 2025/06/03-13:38:35.118619 7f53e55f96c0 Delete type=3 #235
2024/09/10-07:14:45.205146 7f7ed4e006c0 Delete type=0 #214 2025/06/03-13:38:35.118742 7f53e55f96c0 Delete type=0 #237
2024/09/10-07:20:33.639140 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:41.647962 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.639178 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:41.648023 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.677964 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:41.687775 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.678505 7f7ecd6006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) 2025/06/03-13:46:41.746023 7f53df3ff6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.678580 7f7ecd6006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) 2025/06/03-13:46:41.785457 7f53df3ff6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.194403 7f7ecf4006c0 Recovering log #209 2025/05/29-15:55:26.251480 7f53e5dfa6c0 Recovering log #232
2024/09/09-21:51:17.204990 7f7ecf4006c0 Delete type=3 #207 2025/05/29-15:55:26.263256 7f53e5dfa6c0 Delete type=3 #228
2024/09/09-21:51:17.205104 7f7ecf4006c0 Delete type=0 #209 2025/05/29-15:55:26.263429 7f53e5dfa6c0 Delete type=3 #220
2024/09/09-21:52:48.632133 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.263489 7f53e5dfa6c0 Delete type=0 #232
2024/09/09-21:52:48.632191 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.190030 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.638748 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.190053 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.638992 7f7ecd6006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.196709 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.639018 7f7ecd6006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.196970 7f53df3ff6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.197022 7f53df3ff6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000112 MANIFEST-000135

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:44.657561 7f7ecf4006c0 Recovering log #110 2025/06/03-13:38:34.627636 7f53dffff6c0 Recovering log #133
2024/09/10-07:14:44.756808 7f7ecf4006c0 Delete type=3 #108 2025/06/03-13:38:34.686392 7f53dffff6c0 Delete type=3 #131
2024/09/10-07:14:44.756963 7f7ecf4006c0 Delete type=0 #110 2025/06/03-13:38:34.686467 7f53dffff6c0 Delete type=0 #133
2024/09/10-07:20:33.399722 7f7ecd6006c0 Level-0 table #115: started 2025/06/03-13:46:40.512658 7f53df3ff6c0 Level-0 table #138: started
2024/09/10-07:20:33.399823 7f7ecd6006c0 Level-0 table #115: 0 bytes OK 2025/06/03-13:46:40.512710 7f53df3ff6c0 Level-0 table #138: 0 bytes OK
2024/09/10-07:20:33.426020 7f7ecd6006c0 Delete type=0 #113 2025/06/03-13:46:40.549233 7f53df3ff6c0 Delete type=0 #136
2024/09/10-07:20:33.538803 7f7ecd6006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549463 7f53df3ff6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.538898 7f7ecd6006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549512 7f53df3ff6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.088284 7f7ecea006c0 Recovering log #105 2025/05/29-15:55:26.112642 7f53e4df86c0 Recovering log #128
2024/09/09-21:51:17.099095 7f7ecea006c0 Delete type=3 #103 2025/05/29-15:55:26.125187 7f53e4df86c0 Delete type=3 #124
2024/09/09-21:51:17.099204 7f7ecea006c0 Delete type=0 #105 2025/05/29-15:55:26.126018 7f53e4df86c0 Delete type=3 #116
2024/09/09-21:52:48.582588 7f7ecd6006c0 Level-0 table #111: started 2025/05/29-15:55:26.126088 7f53e4df86c0 Delete type=0 #128
2024/09/09-21:52:48.582673 7f7ecd6006c0 Level-0 table #111: 0 bytes OK 2025/05/29-16:03:58.156641 7f53df3ff6c0 Level-0 table #134: started
2024/09/09-21:52:48.589717 7f7ecd6006c0 Delete type=0 #109 2025/05/29-16:03:58.156669 7f53df3ff6c0 Level-0 table #134: 0 bytes OK
2024/09/09-21:52:48.611309 7f7ecd6006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.162999 7f53df3ff6c0 Delete type=0 #132
2024/09/09-21:52:48.611384 7f7ecd6006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.170062 7f53df3ff6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.170152 7f53df3ff6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/protection/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:44.961549 7f7ecea006c0 Recovering log #214 2025/06/03-13:38:34.886970 7f53e5dfa6c0 Recovering log #237
2024/09/10-07:14:45.016222 7f7ecea006c0 Delete type=3 #212 2025/06/03-13:38:34.938703 7f53e5dfa6c0 Delete type=3 #235
2024/09/10-07:14:45.016606 7f7ecea006c0 Delete type=0 #214 2025/06/03-13:38:34.938794 7f53e5dfa6c0 Delete type=0 #237
2024/09/10-07:20:33.539100 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.397410 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.539159 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.397475 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.576585 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.439766 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.678420 7f7ecd6006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549407 7f53df3ff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.678524 7f7ecd6006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549475 7f53df3ff6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.152829 7f7ed4e006c0 Recovering log #209 2025/05/29-15:55:26.196026 7f53e55f96c0 Recovering log #232
2024/09/09-21:51:17.163037 7f7ed4e006c0 Delete type=3 #207 2025/05/29-15:55:26.208075 7f53e55f96c0 Delete type=3 #228
2024/09/09-21:51:17.163143 7f7ed4e006c0 Delete type=0 #209 2025/05/29-15:55:26.208295 7f53e55f96c0 Delete type=3 #220
2024/09/09-21:52:48.611545 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.208392 7f53e55f96c0 Delete type=0 #232
2024/09/09-21:52:48.611586 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.170302 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.617883 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.170428 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.638938 7f7ecd6006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.177127 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.639004 7f7ecd6006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.196930 7f53df3ff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.197013 7f53df3ff6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/runes/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.464393 7f7ecea006c0 Recovering log #214 2025/06/03-13:38:35.345564 7f53dffff6c0 Recovering log #237
2024/09/10-07:14:45.568041 7f7ecea006c0 Delete type=3 #212 2025/06/03-13:38:35.403155 7f53dffff6c0 Delete type=3 #235
2024/09/10-07:14:45.568192 7f7ecea006c0 Delete type=0 #214 2025/06/03-13:38:35.403235 7f53dffff6c0 Delete type=0 #237
2024/09/10-07:20:33.817119 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.735477 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.817259 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.735517 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.853842 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.773473 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.990487 7f7ecd6006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.815790 7f53df3ff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.990597 7f7ecd6006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.815824 7f53df3ff6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.266111 7f7ed4e006c0 Recovering log #209 2025/05/29-15:55:26.334851 7f53dffff6c0 Recovering log #232
2024/09/09-21:51:17.276764 7f7ed4e006c0 Delete type=3 #207 2025/05/29-15:55:26.345350 7f53dffff6c0 Delete type=3 #228
2024/09/09-21:51:17.276860 7f7ed4e006c0 Delete type=0 #209 2025/05/29-15:55:26.345513 7f53dffff6c0 Delete type=3 #220
2024/09/09-21:52:48.668305 7f7ecd6006c0 Level-0 table #215: started 2025/05/29-15:55:26.345620 7f53dffff6c0 Delete type=0 #232
2024/09/09-21:52:48.668347 7f7ecd6006c0 Level-0 table #215: 0 bytes OK 2025/05/29-16:03:58.224627 7f53df3ff6c0 Level-0 table #238: started
2024/09/09-21:52:48.674748 7f7ecd6006c0 Delete type=0 #213 2025/05/29-16:03:58.224684 7f53df3ff6c0 Level-0 table #238: 0 bytes OK
2024/09/09-21:52:48.696639 7f7ecd6006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.230871 7f53df3ff6c0 Delete type=0 #236
2024/09/09-21:52:48.696713 7f7ecd6006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.251598 7f53df3ff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.251678 7f53df3ff6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/runes/MANIFEST-000239 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/scenes/000150.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000132 MANIFEST-000155

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:45.696006 7f7ecf4006c0 Recovering log #130 2025/06/03-13:38:35.466878 7f53e5dfa6c0 Recovering log #153
2024/09/10-07:14:45.752701 7f7ecf4006c0 Delete type=3 #128 2025/06/03-13:38:35.524013 7f53e5dfa6c0 Delete type=3 #151
2024/09/10-07:14:45.752833 7f7ecf4006c0 Delete type=0 #130 2025/06/03-13:38:35.524182 7f53e5dfa6c0 Delete type=0 #153
2024/09/10-07:20:33.897005 7f7ecd6006c0 Level-0 table #135: started 2025/06/03-13:46:41.106617 7f53df3ff6c0 Level-0 table #158: started
2024/09/10-07:20:33.897068 7f7ecd6006c0 Level-0 table #135: 0 bytes OK 2025/06/03-13:46:41.106700 7f53df3ff6c0 Level-0 table #158: 0 bytes OK
2024/09/10-07:20:33.928636 7f7ecd6006c0 Delete type=0 #133 2025/06/03-13:46:41.168352 7f53df3ff6c0 Delete type=0 #156
2024/09/10-07:20:33.990553 7f7ecd6006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) 2025/06/03-13:46:41.206505 7f53df3ff6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.990640 7f7ecd6006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) 2025/06/03-13:46:41.268057 7f53df3ff6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.296296 7f7ecea006c0 Recovering log #125 2025/05/29-15:55:26.369188 7f53e4df86c0 Recovering log #148
2024/09/09-21:51:17.307966 7f7ecea006c0 Delete type=3 #123 2025/05/29-15:55:26.380021 7f53e4df86c0 Delete type=3 #144
2024/09/09-21:51:17.308176 7f7ecea006c0 Delete type=0 #125 2025/05/29-15:55:26.380196 7f53e4df86c0 Delete type=3 #136
2024/09/09-21:52:48.682640 7f7ecd6006c0 Level-0 table #131: started 2025/05/29-15:55:26.380295 7f53e4df86c0 Delete type=0 #148
2024/09/09-21:52:48.682688 7f7ecd6006c0 Level-0 table #131: 0 bytes OK 2025/05/29-16:03:58.231076 7f53df3ff6c0 Level-0 table #154: started
2024/09/09-21:52:48.689372 7f7ecd6006c0 Delete type=0 #129 2025/05/29-16:03:58.231127 7f53df3ff6c0 Level-0 table #154: 0 bytes OK
2024/09/09-21:52:48.696686 7f7ecd6006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.237794 7f53df3ff6c0 Delete type=0 #152
2024/09/09-21:52:48.696741 7f7ecd6006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.251622 7f53df3ff6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.251695 7f53df3ff6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000124 MANIFEST-000147

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:44.824622 7f7ecf4006c0 Recovering log #122 2025/06/03-13:38:34.776748 7f53dffff6c0 Recovering log #145
2024/09/10-07:14:44.881625 7f7ecf4006c0 Delete type=3 #120 2025/06/03-13:38:34.827114 7f53dffff6c0 Delete type=3 #143
2024/09/10-07:14:44.881742 7f7ecf4006c0 Delete type=0 #122 2025/06/03-13:38:34.827190 7f53dffff6c0 Delete type=0 #145
2024/09/10-07:20:33.426241 7f7ecd6006c0 Level-0 table #127: started 2025/06/03-13:46:40.477248 7f53df3ff6c0 Level-0 table #150: started
2024/09/10-07:20:33.426287 7f7ecd6006c0 Level-0 table #127: 0 bytes OK 2025/06/03-13:46:40.477333 7f53df3ff6c0 Level-0 table #150: 0 bytes OK
2024/09/10-07:20:33.462927 7f7ecd6006c0 Delete type=0 #125 2025/06/03-13:46:40.512489 7f53df3ff6c0 Delete type=0 #148
2024/09/10-07:20:33.538838 7f7ecd6006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549448 7f53df3ff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.538919 7f7ecd6006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549499 7f53df3ff6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,9 @@
2024/09/09-21:51:17.124273 7f7ecea006c0 Recovering log #117 2025/05/29-15:55:26.158830 7f53e4df86c0 Recovering log #140
2024/09/09-21:51:17.134938 7f7ecea006c0 Delete type=3 #115 2025/05/29-15:55:26.171542 7f53e4df86c0 Delete type=3 #136
2024/09/09-21:51:17.135076 7f7ecea006c0 Delete type=0 #117 2025/05/29-15:55:26.171988 7f53e4df86c0 Delete type=3 #128
2024/09/09-21:52:48.604710 7f7ecd6006c0 Level-0 table #123: started 2025/05/29-15:55:26.172310 7f53e4df86c0 Delete type=0 #140
2024/09/09-21:52:48.604782 7f7ecd6006c0 Level-0 table #123: 0 bytes OK 2025/05/29-16:03:58.163179 7f53df3ff6c0 Level-0 table #146: started
2024/09/09-21:52:48.611122 7f7ecd6006c0 Delete type=0 #121 2025/05/29-16:03:58.163230 7f53df3ff6c0 Level-0 table #146: 0 bytes OK
2024/09/09-21:52:48.611368 7f7ecd6006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.169828 7f53df3ff6c0 Delete type=0 #144
2024/09/09-21:52:48.611434 7f7ecd6006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end) 2025/05/29-16:03:58.170080 7f53df3ff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2025/05/29-16:03:58.170133 7f53df3ff6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/skills/000234.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000216 MANIFEST-000239

View File

@ -1,8 +1,8 @@
2024/09/10-07:14:44.767296 7f7ecfe006c0 Recovering log #214 2025/06/03-13:38:34.719711 7f53e55f96c0 Recovering log #237
2024/09/10-07:14:44.820594 7f7ecfe006c0 Delete type=3 #212 2025/06/03-13:38:34.773679 7f53e55f96c0 Delete type=3 #235
2024/09/10-07:14:44.820691 7f7ecfe006c0 Delete type=0 #214 2025/06/03-13:38:34.773831 7f53e55f96c0 Delete type=0 #237
2024/09/10-07:20:33.501559 7f7ecd6006c0 Level-0 table #219: started 2025/06/03-13:46:40.440019 7f53df3ff6c0 Level-0 table #242: started
2024/09/10-07:20:33.501629 7f7ecd6006c0 Level-0 table #219: 0 bytes OK 2025/06/03-13:46:40.440103 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2024/09/10-07:20:33.538595 7f7ecd6006c0 Delete type=0 #217 2025/06/03-13:46:40.476978 7f53df3ff6c0 Delete type=0 #240
2024/09/10-07:20:33.538881 7f7ecd6006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549431 7f53df3ff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2024/09/10-07:20:33.538953 7f7ecd6006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end) 2025/06/03-13:46:40.549488 7f53df3ff6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)

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