Compare commits

...

4 Commits

130 changed files with 402 additions and 380 deletions

View File

@@ -23,7 +23,7 @@
"bouclier": "Bouclier",
"modifier": "Modificateur",
"traitespece": "Trait d'Espèce"
}
}
},
"Adresse": "Adresse",
"Puissance": "Puissance",
@@ -36,7 +36,7 @@
"MNBL.feint": "Feinte",
"MNBL.dirtyattack": "Coup Bas",
"MNBL.charge": "Charger",
"MNBL.contain": "Contenir l'adversaire",
"MNBL.contain": "Contenir l'adversaire",
"MNBL.disarm": "Désarmer",
"MNBL.none": "Aucun",
@@ -96,7 +96,7 @@
"MNBL.bonus": "Bonus",
"MNBL.malus": "Malus",
"MNBL.nonlethal": "Non Létaux",
"MNBL.lethal": "Létaux",
"MNBL.lethal": "Létaux",
"MNBL.automalus" : "Malus Auto",
"MNBL.soul": "Ame",
"MNBL.currentmax": "Max Actuel",
@@ -115,7 +115,7 @@
"MNBL.highlanguage": "Haut Parler",
"MNBL.difficulty": "Difficulté",
"MNBL.tendancies": "Tendances",
"MNBL.chaotictraits": "Traits Chaotique",
"MNBL.chaotictraits": "Traits Chaotique",
"MNBL.activatedrunes": "Runes actives",
"MNBL.mode": "Mode",
"MNBL.duration": "Durée",
@@ -132,6 +132,7 @@
"MNBL.damage": "Dégats",
"MNBL.protections": "Protections",
"MNBL.equipments": "Equipements",
"MNBL.equipment": "Equipement",
"MNBL.origin": "Origine",
"MNBL.legacy": "Héritage",
"MNBL.profession": "Métier",
@@ -196,7 +197,7 @@
"MNBL.weapontype": "Type d'arme",
"MNBL.weaponbonusattack": "Bonus de maniement (offensif)",
"MNBL.weaponbonusdefense": "Bonus de maniement (défensif)",
"MNBL.isdefense": "Défensive",
"MNBL.isdefense": "Défensive",
"MNBL.twohands": "A deux mains",
"MNBL.ignorearmor": "Ignore l'armure",
"MNBL.creatureresourcecost": "Cout en Ressources (créatures)",
@@ -208,6 +209,10 @@
"MNBL.ressources": "Ressources",
"MNBL.weaponscapacities": "Armes/Capacités",
"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";
/* -------------------------------------------- */
export class MournbladeActorSheet extends ActorSheet {
export class MournbladeActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@@ -25,8 +25,8 @@ export class MournbladeActorSheet 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,
@@ -54,7 +54,7 @@ export class MournbladeActorSheet 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(),
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
modifiers: foundry.utils.duplicate(this.actor.getModifiers()),
monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
@@ -63,7 +63,7 @@ export class MournbladeActorSheet extends ActorSheet {
protectionTotal: this.actor.getProtectionTotal(),
santeMalus: this.actor.getStatusMalus(),
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,
owner: this.document.isOwner,
editScore: this.options.editScore,
@@ -75,7 +75,7 @@ export class MournbladeActorSheet extends ActorSheet {
return formData;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
@@ -83,14 +83,14 @@ export class MournbladeActorSheet 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");
@@ -105,7 +105,7 @@ export class MournbladeActorSheet 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 );
@@ -150,7 +150,7 @@ export class MournbladeActorSheet extends ActorSheet {
let armeId = li.data("item-id")
this.actor.rollArmeSpecial(armeId)
})
html.find('.roll-arme-degats').click((event) => {
const li = $(event.currentTarget).parents(".item")
let armeId = li.data("item-id")
@@ -175,19 +175,19 @@ export class MournbladeActorSheet extends ActorSheet {
this.actor.incDecAme(value)
})
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

@@ -17,8 +17,8 @@ export class MournbladeActor extends Actor {
/**
* Override the create() function to provide additional SoS functionality.
*
* This overrided create() function adds initial items
* Namely: Basic skills, money,
* This overrided create() function adds initial items
* Namely: Basic skills, money,
*
* @param {Object} data Barebones actor data which this function adds onto.
* @param {Object} options (Unused) Additional options which customize the creation workflow.
@@ -253,15 +253,6 @@ export class MournbladeActor extends Actor {
return combat
}
/* -------------------------------------------- */
prepareBaseData() {
}
/* -------------------------------------------- */
async prepareData() {
super.prepareData();
}
/* -------------------------------------------- */
prepareDerivedData() {
@@ -718,10 +709,11 @@ export class MournbladeActor extends Actor {
if (arme.type == "bouclier") {
arme = this.prepareBouclier(arme)
}
rollData.degatsFormula = arme.system.totalDegats
let roll = new Roll(arme.system.totalDegats).roll({ async: false })
//Unused rollData.degatsFormula = arme.system.totalDegats
let roll = await new Roll(arme.system.totalDegats).roll()
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
let rollData = {
degatsFormula:arme.system.totalDegats,
arme: arme,
finalResult: roll.total,
alias: this.name,
@@ -730,7 +722,7 @@ export class MournbladeActor extends Actor {
actionImg: arme.img,
}
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
* @extends {ItemSheet}
*/
export class MournbladeItemSheet extends ItemSheet {
export class MournbladeItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
@@ -49,7 +49,7 @@ export class MournbladeItemSheet 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,
@@ -63,14 +63,14 @@ export class MournbladeItemSheet extends ItemSheet {
limited: this.object.limited,
options: this.options,
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,
mr: (this.object.type == 'specialisation'),
isGM: game.user.isGM
}
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");
console.log("ITEM DATA", formData, this);
@@ -151,7 +151,7 @@ export class MournbladeItemSheet extends ItemSheet {
let pred = foundry.utils.duplicate(this.object.system.predilections)
pred[index].used = ev.currentTarget.checked
this.object.update( { 'system.predilections': pred })
})
})
html.find('#add-predilection').click(ev => {
let pred = foundry.utils.duplicate(this.object.system.predilections)
pred.push( { name: "Nouvelle prédilection", id: randomID(), used: false })

View File

@@ -30,7 +30,7 @@ Hooks.once("init", async function () {
MournbladeUtility.preloadHandlebarsTemplates();
/* -------------------------------------------- */
// Set an initiative formula for the system
// Set an initiative formula for the system
CONFIG.Combat.initiative = {
formula: "1d6",
decimals: 1
@@ -46,21 +46,21 @@ Hooks.once("init", async function () {
CONFIG.Combat.documentClass = MournbladeCombat
CONFIG.Actor.documentClass = MournbladeActor
CONFIG.Item.documentClass = MournbladeItem
game.system.mournblade = {
game.system.mournblade = {
config : MournbladeConfig.getConfig(),
}
/* -------------------------------------------- */
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true })
Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true })
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
foundry.documents.collections.Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true })
foundry.documents.collections.Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true })
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true })
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
foundry.documents.collections.Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true })
MournbladeUtility.init();
});
/* -------------------------------------------- */
@@ -92,7 +92,7 @@ async function importDefaultScene() {
/* -------------------------------------------- */
Hooks.once("ready", function () {
game.system.mournblade = {
game.system.mournblade = {
config : MournbladeConfig.getConfig(),
}
@@ -137,4 +137,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
}
return true;
});

View File

@@ -6,7 +6,7 @@ export class MournbladeRollDialog extends Dialog {
static async create(actor, rollData ) {
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 );
}
@@ -16,16 +16,16 @@ export class MournbladeRollDialog extends Dialog {
let conf = {
title: "Test de Capacité",
content: html,
buttons: {
buttons: {
rolld10: {
icon: '<i class="fas fa-check"></i>',
label: "Lancer 1d10",
callback: () => { this.roll("1d10") }
callback: () => { this.roll("1d10") }
},
rolld20: {
icon: '<i class="fas fa-check"></i>',
label: "Lancer 1d20",
callback: () => { this.roll("1d20") }
callback: () => { this.roll("1d20") }
},
cancel: {
icon: '<i class="fas fa-times"></i>',
@@ -73,45 +73,45 @@ export class MournbladeRollDialog extends Dialog {
})
html.find('#attrKey').change(async (event) => {
this.rollData.attrKey = String(event.currentTarget.value)
})
})
html.find('#runemode').change(async (event) => {
this.rollData.runemode = String(event.currentTarget.value)
})
})
html.find('#runeame').change(async (event) => {
this.rollData.runeame = Number(event.currentTarget.value)
})
})
html.find('#isMonte').change(async (event) => {
this.rollData.desavantages.isMonte = event.currentTarget.checked
})
})
html.find('#cibleausol').change(async (event) => {
this.rollData.desavantages.cibleausol = event.currentTarget.checked
})
})
html.find('#cibledesarmee').change(async (event) => {
this.rollData.desavantages.cibledesarmee = event.currentTarget.checked
})
})
html.find('#ciblerestreint').change(async (event) => {
this.rollData.desavantages.ciblerestreint = event.currentTarget.checked
})
})
html.find('#cibleimmobilisée').change(async (event) => {
this.rollData.desavantages.cibleimmobilisée = event.currentTarget.checked
})
})
html.find('#ciblesurplomb').change(async (event) => {
this.rollData.desavantages.ciblesurplomb = event.currentTarget.checked
})
})
html.find('#doubleD20').change(async (event) => {
this.rollData.doubleD20 = event.currentTarget.checked
})
})
html.find('#visee').change(async (event) => {
this.rollData.visee = event.currentTarget.checked
})
})
html.find('#cibleconsciente').change(async (event) => {
this.rollData.cibleconsciente = event.currentTarget.checked
})
})
html.find('#ciblecourt').change(async (event) => {
this.rollData.ciblecourt = event.currentTarget.checked
})
})
html.find('#typeCouvert').change(async (event) => {
this.rollData.typeCouvert = String(event.currentTarget.value)
})

View File

@@ -8,9 +8,9 @@ export class MournbladeUtility {
/* -------------------------------------------- */
static async init() {
Hooks.on('renderChatLog', (log, html, data) => MournbladeUtility.chatListeners(html))
Hooks.on("getChatLogEntryContext", (html, options) => MournbladeUtility.chatRollMenu(html, options))
Hooks.on('renderChatMessage', (message, html, data) => MournbladeUtility.chatMessageHandler(message, html, data))
Hooks.on('renderChatMessageHTML', (log, html, data) => MournbladeUtility.chatListeners(html))
Hooks.on("getChatMessageContextOptions", (html, options) => MournbladeUtility.chatRollMenu(html, options))
Hooks.on('renderChatMessageHTML', (message, html, data) => MournbladeUtility.chatMessageHandler(message, html, data))
Hooks.on("getCombatTrackerEntryContext", (html, options) => {
MournbladeUtility.pushInitiativeOptions(html, options);
@@ -112,7 +112,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */
static async chatMessageHandler(message, html, data) {
const chatCard = html.find('.action-section')
const chatCard = $(html).find('.action-section')
if (chatCard.length > 0) {
// If the user is the message author or the actor owner, proceed
const actor = game.actors.get(data.message.speaker.actor)
@@ -127,7 +127,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */
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 = MournbladeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
@@ -139,7 +139,7 @@ export class MournbladeUtility {
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 message = game.messages.get(messageId)
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 message = game.messages.get(messageId)
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/partial-item-description.html'
]
return loadTemplates(templatePaths);
return foundry.applications.handlebars.loadTemplates(templatePaths);
}
/* -------------------------------------------- */
@@ -209,7 +209,7 @@ export class MournbladeUtility {
static createArrayOptionList(min, max) {
let options = [];
for (let i = min; i <= max; i++) {
options.push({key:`${i}`, label:`${i}`});
options.push({ key: `${i}`, label: `${i}` });
}
return options;
}
@@ -298,7 +298,11 @@ export class MournbladeUtility {
}
}
}
this.computeQualityResult(rollData)
}
/* -------------------------------------------- */
static computeQualityResult(rollData) {
//console.log("Result : ", rollData)
if (rollData.difficulte > 0 && !rollData.isDramatique) {
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
@@ -391,7 +395,7 @@ export class MournbladeUtility {
rollData.runeduree = 1
}
}
let myRoll = await new Roll(rollData.diceFormula).evaluate();
await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode"))
rollData.roll = foundry.utils.duplicate(myRoll)
@@ -423,7 +427,7 @@ export class MournbladeUtility {
actor.setModifier("Charge de Cavalerie : -5 défense pour le tour", "defense", -5)
}
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)
}
@@ -517,7 +521,7 @@ export class MournbladeUtility {
}
this.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)
}, rollData)
}
@@ -553,6 +557,8 @@ export class MournbladeUtility {
}
defender.incDecSante(type, +degats, rollData.ignoreDefenseArmor)
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.")
}
}
@@ -566,17 +572,17 @@ export class MournbladeUtility {
rollData.finalResult += rollData.bonusRoll.total
this.computeResult(rollData)
this.computeQualityResult(rollData)
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)
}
/* -------------------------------------------- */
static getUsers(filter) {
return game.users.filter(filter).map(user => user.data._id);
return game.users.filter(filter).map(user => user._id);
}
/* -------------------------------------------- */
@@ -694,7 +700,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */
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", "mournblade-roll")
@@ -713,7 +719,7 @@ export class MournbladeUtility {
/* -------------------------------------------- */
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", "mournblade-roll")
@@ -730,51 +736,51 @@ export class MournbladeUtility {
static chatRollMenu(html, options) {
let canApply = li => canvas.tokens.controlled.length && li.find(".mournblade-roll").length
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 actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "loyal")
}
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 actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "loyal")
}
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 actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 0 && actor.getAlignement() == "chaotique")
}
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 actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 2 && actor.getAlignement() == "chaotique")
}
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 actor = MournbladeUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getEclat() > 0 && actor.getAlignement() == "chaotique")
}
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 actor = MournbladeUtility.getActorFromRollData(rollData)
if (rollData.competence) {
let nbPred = rollData.competence.data.predilections.filter(pred => !pred.used).length
let nbPred = rollData.competence.system.predilections.filter(pred => !pred.used).length
return (!rollData.isReroll && rollData.competence && nbPred > 0)
}
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", "mournblade-roll")
let actor = MournbladeUtility.getActorFromRollData(rollData)
if (rollData.competence) {
return rollData.competence.data.doublebonus
return rollData.competence.system.doublebonus
}
return false
}

Binary file not shown.

BIN
packs/armes/000235.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000217
MANIFEST-000244

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:44.885743 7f7ed4e006c0 Recovering log #215
2024/09/10-07:14:44.956966 7f7ed4e006c0 Delete type=3 #213
2024/09/10-07:14:44.957144 7f7ed4e006c0 Delete type=0 #215
2024/09/10-07:20:33.463210 7f7ecd6006c0 Level-0 table #220: started
2024/09/10-07:20:33.463253 7f7ecd6006c0 Level-0 table #220: 0 bytes OK
2024/09/10-07:20:33.501220 7f7ecd6006c0 Delete type=0 #218
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)
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/24-22:08:06.141425 7f151effd6c0 Recovering log #242
2025/06/24-22:08:06.153628 7f151effd6c0 Delete type=3 #240
2025/06/24-22:08:06.153814 7f151effd6c0 Delete type=0 #242
2025/06/24-22:11:08.163131 7f151d7fa6c0 Level-0 table #247: started
2025/06/24-22:11:08.163238 7f151d7fa6c0 Level-0 table #247: 0 bytes OK
2025/06/24-22:11:08.170377 7f151d7fa6c0 Delete type=0 #245
2025/06/24-22:11:08.192063 7f151d7fa6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.192163 7f151d7fa6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.138004 7f7ecf4006c0 Recovering log #210
2024/09/09-21:51:17.149501 7f7ecf4006c0 Delete type=3 #208
2024/09/09-21:51:17.149609 7f7ecf4006c0 Delete type=0 #210
2024/09/09-21:52:48.597265 7f7ecd6006c0 Level-0 table #216: started
2024/09/09-21:52:48.597313 7f7ecd6006c0 Level-0 table #216: 0 bytes OK
2024/09/09-21:52:48.604438 7f7ecd6006c0 Delete type=0 #214
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)
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/06/03-13:38:34.829840 7f53e4df86c0 Recovering log #238
2025/06/03-13:38:34.883917 7f53e4df86c0 Delete type=3 #236
2025/06/03-13:38:34.884056 7f53e4df86c0 Delete type=0 #238
2025/06/03-13:46:40.549617 7f53df3ff6c0 Level-0 table #243: started
2025/06/03-13:46:40.549726 7f53df3ff6c0 Level-0 table #243: 0 bytes OK
2025/06/03-13:46:40.591881 7f53df3ff6c0 Delete type=0 #241
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)
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)

Binary file not shown.

BIN
packs/armes/MANIFEST-000244 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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.086238 7f7ecf4006c0 Recovering log #214
2024/09/10-07:14:45.144857 7f7ecf4006c0 Delete type=3 #212
2024/09/10-07:14:45.145056 7f7ecf4006c0 Delete type=0 #214
2024/09/10-07:20:33.607105 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.607143 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.638955 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.191742 7f151f7fe6c0 Recovering log #241
2025/06/24-22:08:06.204340 7f151f7fe6c0 Delete type=3 #239
2025/06/24-22:08:06.204498 7f151f7fe6c0 Delete type=0 #241
2025/06/24-22:11:08.206136 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.206208 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.212753 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.221105 7f151d7fa6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.221189 7f151d7fa6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.180244 7f7ecea006c0 Recovering log #209
2024/09/09-21:51:17.191008 7f7ecea006c0 Delete type=3 #207
2024/09/09-21:51:17.191115 7f7ecea006c0 Delete type=0 #209
2024/09/09-21:52:48.625325 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.625386 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.631864 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:35.003129 7f53dffff6c0 Recovering log #237
2025/06/03-13:38:35.063448 7f53dffff6c0 Delete type=3 #235
2025/06/03-13:38:35.063543 7f53dffff6c0 Delete type=0 #237
2025/06/03-13:46:40.628405 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.628456 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.666357 7f53df3ff6c0 Delete type=0 #240
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)
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)

Binary file not shown.

BIN
packs/dons/MANIFEST-000243 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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.020069 7f7ecfe006c0 Recovering log #214
2024/09/10-07:14:45.082360 7f7ecfe006c0 Delete type=3 #212
2024/09/10-07:14:45.082521 7f7ecfe006c0 Delete type=0 #214
2024/09/10-07:20:33.576805 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.576855 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.606927 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.175002 7f151e7fc6c0 Recovering log #241
2025/06/24-22:08:06.186353 7f151e7fc6c0 Delete type=3 #239
2025/06/24-22:08:06.186511 7f151e7fc6c0 Delete type=0 #241
2025/06/24-22:11:08.192335 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.192386 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.199137 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.221044 7f151d7fa6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.221148 7f151d7fa6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.166142 7f7ecfe006c0 Recovering log #209
2024/09/09-21:51:17.176865 7f7ecfe006c0 Delete type=3 #207
2024/09/09-21:51:17.176960 7f7ecfe006c0 Delete type=0 #209
2024/09/09-21:52:48.618041 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.618105 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.625105 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:34.942102 7f53e4df86c0 Recovering log #237
2025/06/03-13:38:35.000785 7f53e4df86c0 Delete type=3 #235
2025/06/03-13:38:35.000863 7f53e4df86c0 Delete type=0 #237
2025/06/03-13:46:40.592034 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.592075 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.628226 7f53df3ff6c0 Delete type=0 #240
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.210943 7f7ecea006c0 Recovering log #214
2024/09/10-07:14:45.265940 7f7ecea006c0 Delete type=3 #212
2024/09/10-07:14:45.266060 7f7ecea006c0 Delete type=0 #214
2024/09/10-07:20:33.678752 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.678827 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.713480 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.227286 7f151effd6c0 Recovering log #241
2025/06/24-22:08:06.239086 7f151effd6c0 Delete type=3 #239
2025/06/24-22:08:06.239261 7f151effd6c0 Delete type=0 #241
2025/06/24-22:11:08.221358 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.221416 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.227912 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.250102 7f151d7fa6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.250164 7f151d7fa6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.208104 7f7ed4e006c0 Recovering log #209
2024/09/09-21:51:17.219088 7f7ed4e006c0 Delete type=3 #207
2024/09/09-21:51:17.219197 7f7ed4e006c0 Delete type=0 #209
2024/09/09-21:52:48.639145 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.639185 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.646533 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:35.120991 7f53e4df86c0 Recovering log #237
2025/06/03-13:38:35.175559 7f53e4df86c0 Delete type=3 #235
2025/06/03-13:38:35.175657 7f53e4df86c0 Delete type=0 #237
2025/06/03-13:46:40.666519 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.666557 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.701027 7f53df3ff6c0 Delete type=0 #240
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.269926 7f7ecfe006c0 Recovering log #214
2024/09/10-07:14:45.328808 7f7ecfe006c0 Delete type=3 #212
2024/09/10-07:14:45.328977 7f7ecfe006c0 Delete type=0 #214
2024/09/10-07:20:33.783195 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.783241 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.816523 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.243911 7f151f7fe6c0 Recovering log #241
2025/06/24-22:08:06.256122 7f151f7fe6c0 Delete type=3 #239
2025/06/24-22:08:06.256320 7f151f7fe6c0 Delete type=0 #241
2025/06/24-22:11:08.228164 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.228233 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.234728 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.250125 7f151d7fa6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.250197 7f151d7fa6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.222186 7f7ecfe006c0 Recovering log #209
2024/09/09-21:51:17.233209 7f7ecfe006c0 Delete type=3 #207
2024/09/09-21:51:17.233359 7f7ecfe006c0 Delete type=0 #209
2024/09/09-21:52:48.646768 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.646827 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.653236 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:35.178238 7f53e5dfa6c0 Recovering log #237
2025/06/03-13:38:35.231112 7f53e5dfa6c0 Delete type=3 #235
2025/06/03-13:38:35.231235 7f53e5dfa6c0 Delete type=0 #237
2025/06/03-13:46:40.815886 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.815947 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.852810 7f53df3ff6c0 Delete type=0 #240
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.148885 7f7ed4e006c0 Recovering log #214
2024/09/10-07:14:45.204991 7f7ed4e006c0 Delete type=3 #212
2024/09/10-07:14:45.205146 7f7ed4e006c0 Delete type=0 #214
2024/09/10-07:20:33.639140 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.639178 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.677964 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.210155 7f151e7fc6c0 Recovering log #241
2025/06/24-22:08:06.221127 7f151e7fc6c0 Delete type=3 #239
2025/06/24-22:08:06.221259 7f151e7fc6c0 Delete type=0 #241
2025/06/24-22:11:08.213028 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.213100 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.220785 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.221127 7f151d7fa6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.221209 7f151d7fa6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.194403 7f7ecf4006c0 Recovering log #209
2024/09/09-21:51:17.204990 7f7ecf4006c0 Delete type=3 #207
2024/09/09-21:51:17.205104 7f7ecf4006c0 Delete type=0 #209
2024/09/09-21:52:48.632133 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.632191 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.638748 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:35.066449 7f53e55f96c0 Recovering log #237
2025/06/03-13:38:35.118619 7f53e55f96c0 Delete type=3 #235
2025/06/03-13:38:35.118742 7f53e55f96c0 Delete type=0 #237
2025/06/03-13:46:41.647962 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:41.648023 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:41.687775 7f53df3ff6c0 Delete type=0 #240
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)
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)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000112
MANIFEST-000139

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:44.657561 7f7ecf4006c0 Recovering log #110
2024/09/10-07:14:44.756808 7f7ecf4006c0 Delete type=3 #108
2024/09/10-07:14:44.756963 7f7ecf4006c0 Delete type=0 #110
2024/09/10-07:20:33.399722 7f7ecd6006c0 Level-0 table #115: started
2024/09/10-07:20:33.399823 7f7ecd6006c0 Level-0 table #115: 0 bytes OK
2024/09/10-07:20:33.426020 7f7ecd6006c0 Delete type=0 #113
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)
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/24-22:08:06.079240 7f151e7fc6c0 Recovering log #137
2025/06/24-22:08:06.090765 7f151e7fc6c0 Delete type=3 #135
2025/06/24-22:08:06.090897 7f151e7fc6c0 Delete type=0 #137
2025/06/24-22:11:08.184282 7f151d7fa6c0 Level-0 table #142: started
2025/06/24-22:11:08.184358 7f151d7fa6c0 Level-0 table #142: 0 bytes OK
2025/06/24-22:11:08.191832 7f151d7fa6c0 Delete type=0 #140
2025/06/24-22:11:08.192130 7f151d7fa6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.192195 7f151d7fa6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.088284 7f7ecea006c0 Recovering log #105
2024/09/09-21:51:17.099095 7f7ecea006c0 Delete type=3 #103
2024/09/09-21:51:17.099204 7f7ecea006c0 Delete type=0 #105
2024/09/09-21:52:48.582588 7f7ecd6006c0 Level-0 table #111: started
2024/09/09-21:52:48.582673 7f7ecd6006c0 Level-0 table #111: 0 bytes OK
2024/09/09-21:52:48.589717 7f7ecd6006c0 Delete type=0 #109
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)
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/06/03-13:38:34.627636 7f53dffff6c0 Recovering log #133
2025/06/03-13:38:34.686392 7f53dffff6c0 Delete type=3 #131
2025/06/03-13:38:34.686467 7f53dffff6c0 Delete type=0 #133
2025/06/03-13:46:40.512658 7f53df3ff6c0 Level-0 table #138: started
2025/06/03-13:46:40.512710 7f53df3ff6c0 Level-0 table #138: 0 bytes OK
2025/06/03-13:46:40.549233 7f53df3ff6c0 Delete type=0 #136
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:44.961549 7f7ecea006c0 Recovering log #214
2024/09/10-07:14:45.016222 7f7ecea006c0 Delete type=3 #212
2024/09/10-07:14:45.016606 7f7ecea006c0 Delete type=0 #214
2024/09/10-07:20:33.539100 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.539159 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.576585 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.159544 7f151dffb6c0 Recovering log #241
2025/06/24-22:08:06.170395 7f151dffb6c0 Delete type=3 #239
2025/06/24-22:08:06.170525 7f151dffb6c0 Delete type=0 #241
2025/06/24-22:11:08.199404 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.199472 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.205880 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.221080 7f151d7fa6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.221168 7f151d7fa6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.152829 7f7ed4e006c0 Recovering log #209
2024/09/09-21:51:17.163037 7f7ed4e006c0 Delete type=3 #207
2024/09/09-21:51:17.163143 7f7ed4e006c0 Delete type=0 #209
2024/09/09-21:52:48.611545 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.611586 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.617883 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:34.886970 7f53e5dfa6c0 Recovering log #237
2025/06/03-13:38:34.938703 7f53e5dfa6c0 Delete type=3 #235
2025/06/03-13:38:34.938794 7f53e5dfa6c0 Delete type=0 #237
2025/06/03-13:46:40.397410 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.397475 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.439766 7f53df3ff6c0 Delete type=0 #240
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.464393 7f7ecea006c0 Recovering log #214
2024/09/10-07:14:45.568041 7f7ecea006c0 Delete type=3 #212
2024/09/10-07:14:45.568192 7f7ecea006c0 Delete type=0 #214
2024/09/10-07:20:33.817119 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.817259 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.853842 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.294483 7f151e7fc6c0 Recovering log #241
2025/06/24-22:08:06.305233 7f151e7fc6c0 Delete type=3 #239
2025/06/24-22:08:06.305408 7f151e7fc6c0 Delete type=0 #241
2025/06/24-22:11:08.250393 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.250466 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.257117 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.284380 7f151d7fa6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.284487 7f151d7fa6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.266111 7f7ed4e006c0 Recovering log #209
2024/09/09-21:51:17.276764 7f7ed4e006c0 Delete type=3 #207
2024/09/09-21:51:17.276860 7f7ed4e006c0 Delete type=0 #209
2024/09/09-21:52:48.668305 7f7ecd6006c0 Level-0 table #215: started
2024/09/09-21:52:48.668347 7f7ecd6006c0 Level-0 table #215: 0 bytes OK
2024/09/09-21:52:48.674748 7f7ecd6006c0 Delete type=0 #213
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)
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/06/03-13:38:35.345564 7f53dffff6c0 Recovering log #237
2025/06/03-13:38:35.403155 7f53dffff6c0 Delete type=3 #235
2025/06/03-13:38:35.403235 7f53dffff6c0 Delete type=0 #237
2025/06/03-13:46:40.735477 7f53df3ff6c0 Level-0 table #242: started
2025/06/03-13:46:40.735517 7f53df3ff6c0 Level-0 table #242: 0 bytes OK
2025/06/03-13:46:40.773473 7f53df3ff6c0 Delete type=0 #240
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)
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)

Binary file not shown.

BIN
packs/runes/MANIFEST-000243 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-000159

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:45.696006 7f7ecf4006c0 Recovering log #130
2024/09/10-07:14:45.752701 7f7ecf4006c0 Delete type=3 #128
2024/09/10-07:14:45.752833 7f7ecf4006c0 Delete type=0 #130
2024/09/10-07:20:33.897005 7f7ecd6006c0 Level-0 table #135: started
2024/09/10-07:20:33.897068 7f7ecd6006c0 Level-0 table #135: 0 bytes OK
2024/09/10-07:20:33.928636 7f7ecd6006c0 Delete type=0 #133
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)
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/24-22:08:06.329702 7f151effd6c0 Recovering log #157
2025/06/24-22:08:06.342000 7f151effd6c0 Delete type=3 #155
2025/06/24-22:08:06.342128 7f151effd6c0 Delete type=0 #157
2025/06/24-22:11:08.265735 7f151d7fa6c0 Level-0 table #162: started
2025/06/24-22:11:08.265793 7f151d7fa6c0 Level-0 table #162: 0 bytes OK
2025/06/24-22:11:08.272230 7f151d7fa6c0 Delete type=0 #160
2025/06/24-22:11:08.284444 7f151d7fa6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.284525 7f151d7fa6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.296296 7f7ecea006c0 Recovering log #125
2024/09/09-21:51:17.307966 7f7ecea006c0 Delete type=3 #123
2024/09/09-21:51:17.308176 7f7ecea006c0 Delete type=0 #125
2024/09/09-21:52:48.682640 7f7ecd6006c0 Level-0 table #131: started
2024/09/09-21:52:48.682688 7f7ecd6006c0 Level-0 table #131: 0 bytes OK
2024/09/09-21:52:48.689372 7f7ecd6006c0 Delete type=0 #129
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)
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/06/03-13:38:35.466878 7f53e5dfa6c0 Recovering log #153
2025/06/03-13:38:35.524013 7f53e5dfa6c0 Delete type=3 #151
2025/06/03-13:38:35.524182 7f53e5dfa6c0 Delete type=0 #153
2025/06/03-13:46:41.106617 7f53df3ff6c0 Level-0 table #158: started
2025/06/03-13:46:41.106700 7f53df3ff6c0 Level-0 table #158: 0 bytes OK
2025/06/03-13:46:41.168352 7f53df3ff6c0 Delete type=0 #156
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)
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)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000124
MANIFEST-000151

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:44.824622 7f7ecf4006c0 Recovering log #122
2024/09/10-07:14:44.881625 7f7ecf4006c0 Delete type=3 #120
2024/09/10-07:14:44.881742 7f7ecf4006c0 Delete type=0 #122
2024/09/10-07:20:33.426241 7f7ecd6006c0 Level-0 table #127: started
2024/09/10-07:20:33.426287 7f7ecd6006c0 Level-0 table #127: 0 bytes OK
2024/09/10-07:20:33.462927 7f7ecd6006c0 Delete type=0 #125
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)
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/24-22:08:06.125215 7f151e7fc6c0 Recovering log #149
2025/06/24-22:08:06.136838 7f151e7fc6c0 Delete type=3 #147
2025/06/24-22:08:06.136973 7f151e7fc6c0 Delete type=0 #149
2025/06/24-22:11:08.177503 7f151d7fa6c0 Level-0 table #154: started
2025/06/24-22:11:08.177574 7f151d7fa6c0 Level-0 table #154: 0 bytes OK
2025/06/24-22:11:08.184008 7f151d7fa6c0 Delete type=0 #152
2025/06/24-22:11:08.192112 7f151d7fa6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.192179 7f151d7fa6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/09/09-21:51:17.124273 7f7ecea006c0 Recovering log #117
2024/09/09-21:51:17.134938 7f7ecea006c0 Delete type=3 #115
2024/09/09-21:51:17.135076 7f7ecea006c0 Delete type=0 #117
2024/09/09-21:52:48.604710 7f7ecd6006c0 Level-0 table #123: started
2024/09/09-21:52:48.604782 7f7ecd6006c0 Level-0 table #123: 0 bytes OK
2024/09/09-21:52:48.611122 7f7ecd6006c0 Delete type=0 #121
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)
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/06/03-13:38:34.776748 7f53dffff6c0 Recovering log #145
2025/06/03-13:38:34.827114 7f53dffff6c0 Delete type=3 #143
2025/06/03-13:38:34.827190 7f53dffff6c0 Delete type=0 #145
2025/06/03-13:46:40.477248 7f53df3ff6c0 Level-0 table #150: started
2025/06/03-13:46:40.477333 7f53df3ff6c0 Level-0 table #150: 0 bytes OK
2025/06/03-13:46:40.512489 7f53df3ff6c0 Delete type=0 #148
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)
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)

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-000243

View File

@@ -1,8 +1,8 @@
2024/09/10-07:14:44.767296 7f7ecfe006c0 Recovering log #214
2024/09/10-07:14:44.820594 7f7ecfe006c0 Delete type=3 #212
2024/09/10-07:14:44.820691 7f7ecfe006c0 Delete type=0 #214
2024/09/10-07:20:33.501559 7f7ecd6006c0 Level-0 table #219: started
2024/09/10-07:20:33.501629 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
2024/09/10-07:20:33.538595 7f7ecd6006c0 Delete type=0 #217
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)
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/24-22:08:06.108516 7f151f7fe6c0 Recovering log #241
2025/06/24-22:08:06.120056 7f151f7fe6c0 Delete type=3 #239
2025/06/24-22:08:06.120239 7f151f7fe6c0 Delete type=0 #241
2025/06/24-22:11:08.170655 7f151d7fa6c0 Level-0 table #246: started
2025/06/24-22:11:08.170719 7f151d7fa6c0 Level-0 table #246: 0 bytes OK
2025/06/24-22:11:08.177193 7f151d7fa6c0 Delete type=0 #244
2025/06/24-22:11:08.192091 7f151d7fa6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2025/06/24-22:11:08.192147 7f151d7fa6c0 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