Foundry v13 migration
This commit is contained in:
@ -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",
|
||||
@ -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"
|
||||
|
||||
}
|
@ -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() {
|
||||
@ -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,
|
||||
|
@ -253,15 +253,6 @@ export class MournbladeActor extends Actor {
|
||||
return combat
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareBaseData() {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async prepareData() {
|
||||
super.prepareData();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareDerivedData() {
|
||||
|
||||
@ -718,8 +709,8 @@ 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 = {
|
||||
arme: arme,
|
||||
|
@ -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() {
|
||||
@ -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);
|
||||
|
@ -52,12 +52,12 @@ Hooks.once("init", async function () {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
// 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();
|
||||
|
||||
@ -137,4 +137,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
|
||||
}
|
||||
return true;
|
||||
});
|
||||
|
||||
|
@ -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 );
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -423,7 +423,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)
|
||||
|
||||
}
|
||||
@ -553,6 +553,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.")
|
||||
}
|
||||
}
|
||||
|
||||
@ -694,7 +696,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 +715,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,37 +732,37 @@ 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) {
|
||||
@ -770,7 +772,7 @@ export class MournbladeUtility {
|
||||
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) {
|
||||
|
Binary file not shown.
BIN
packs/armes/000235.ldb
Normal file
BIN
packs/armes/000235.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000217
|
||||
MANIFEST-000221
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.404410 7fad8f7fe6c0 Recovering log #219
|
||||
2025/05/01-19:59:13.404447 7fad8f7fe6c0 Recovering log #231
|
||||
2025/05/01-19:59:13.456319 7fad8f7fe6c0 Delete type=0 #231
|
||||
2025/05/01-19:59:13.456390 7fad8f7fe6c0 Delete type=0 #219
|
||||
2025/05/01-19:59:13.456430 7fad8f7fe6c0 Delete type=3 #217
|
||||
2025/05/01-20:40:06.630698 7fad8effd6c0 Level-0 table #234: started
|
||||
2025/05/01-20:40:06.634192 7fad8effd6c0 Level-0 table #234: 14422 bytes OK
|
||||
2025/05/01-20:40:06.640500 7fad8effd6c0 Delete type=0 #232
|
||||
2025/05/01-20:40:06.664516 7fad8effd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.675130 7fad8effd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 239 : 1
|
||||
2025/05/01-20:40:06.675140 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.678758 7fad8effd6c0 Generated table #235@1: 48 keys, 14422 bytes
|
||||
2025/05/01-20:40:06.678804 7fad8effd6c0 Compacted 1@1 + 1@2 files => 14422 bytes
|
||||
2025/05/01-20:40:06.684949 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.685040 7fad8effd6c0 Delete type=2 #212
|
||||
2025/05/01-20:40:06.685158 7fad8effd6c0 Delete type=2 #234
|
||||
2025/05/01-20:40:06.711796 7fad8effd6c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 239 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/armes/MANIFEST-000221
Normal file
BIN
packs/armes/MANIFEST-000221
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/dons/000234.ldb
Normal file
BIN
packs/dons/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.580839 7fad8ffff6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.580868 7fad8ffff6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.634048 7fad8ffff6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.634180 7fad8ffff6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.634255 7fad8ffff6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.742304 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.745942 7fad8effd6c0 Level-0 table #233: 15890 bytes OK
|
||||
2025/05/01-20:40:06.753021 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753355 7fad8effd6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.785179 7fad8effd6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at '!items!zzz9JrtWjELdoAfK' @ 120 : 1
|
||||
2025/05/01-20:40:06.785187 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.788604 7fad8effd6c0 Generated table #234@1: 30 keys, 15890 bytes
|
||||
2025/05/01-20:40:06.788633 7fad8effd6c0 Compacted 1@1 + 1@2 files => 15890 bytes
|
||||
2025/05/01-20:40:06.794726 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.794865 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.794985 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795083 7fad8effd6c0 Manual compaction at level-1 from '!items!zzz9JrtWjELdoAfK' @ 120 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/dons/MANIFEST-000220
Normal file
BIN
packs/dons/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/equipement/000234.ldb
Normal file
BIN
packs/equipement/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.522396 7fad94ff96c0 Recovering log #218
|
||||
2025/05/01-19:59:13.522423 7fad94ff96c0 Recovering log #230
|
||||
2025/05/01-19:59:13.578113 7fad94ff96c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.578220 7fad94ff96c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.578283 7fad94ff96c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.722073 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.725291 7fad8effd6c0 Level-0 table #233: 9727 bytes OK
|
||||
2025/05/01-20:40:06.731851 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753320 7fad8effd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.763595 7fad8effd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1
|
||||
2025/05/01-20:40:06.763602 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.767733 7fad8effd6c0 Generated table #234@1: 55 keys, 9727 bytes
|
||||
2025/05/01-20:40:06.767783 7fad8effd6c0 Compacted 1@1 + 1@2 files => 9727 bytes
|
||||
2025/05/01-20:40:06.773941 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.774135 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.774350 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795066 7fad8effd6c0 Manual compaction at level-1 from '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/equipement/MANIFEST-000220
Normal file
BIN
packs/equipement/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/heritages/000234.ldb
Normal file
BIN
packs/heritages/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.692563 7fad8f7fe6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.692594 7fad8f7fe6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.751135 7fad8f7fe6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.751215 7fad8f7fe6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.751260 7fad8f7fe6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.795194 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.798717 7fad8effd6c0 Level-0 table #233: 6896 bytes OK
|
||||
2025/05/01-20:40:06.805344 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.836956 7fad8effd6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.837016 7fad8effd6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at '!items!ui4JGsGwHNlSXVK3' @ 40 : 1
|
||||
2025/05/01-20:40:06.837022 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.840346 7fad8effd6c0 Generated table #234@1: 10 keys, 6896 bytes
|
||||
2025/05/01-20:40:06.840376 7fad8effd6c0 Compacted 1@1 + 1@2 files => 6896 bytes
|
||||
2025/05/01-20:40:06.846429 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.846541 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.846672 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.878912 7fad8effd6c0 Manual compaction at level-1 from '!items!ui4JGsGwHNlSXVK3' @ 40 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/heritages/MANIFEST-000220
Normal file
BIN
packs/heritages/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/metiers/000234.ldb
Normal file
BIN
packs/metiers/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.753968 7fad94ff96c0 Recovering log #218
|
||||
2025/05/01-19:59:13.754006 7fad94ff96c0 Recovering log #230
|
||||
2025/05/01-19:59:13.815180 7fad94ff96c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.815253 7fad94ff96c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.815293 7fad94ff96c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.805500 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.809047 7fad8effd6c0 Level-0 table #233: 14917 bytes OK
|
||||
2025/05/01-20:40:06.815729 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.836975 7fad8effd6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.846758 7fad8effd6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at '!items!xlyFCQClBZ1N3O1B' @ 68 : 1
|
||||
2025/05/01-20:40:06.846768 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.850361 7fad8effd6c0 Generated table #234@1: 17 keys, 14917 bytes
|
||||
2025/05/01-20:40:06.850390 7fad8effd6c0 Compacted 1@1 + 1@2 files => 14917 bytes
|
||||
2025/05/01-20:40:06.856955 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.857113 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.857266 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.878923 7fad8effd6c0 Manual compaction at level-1 from '!items!xlyFCQClBZ1N3O1B' @ 68 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/metiers/MANIFEST-000220
Normal file
BIN
packs/metiers/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/origines/000234.ldb
Normal file
BIN
packs/origines/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.636438 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.636464 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.689669 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.689733 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.689767 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.732058 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.735754 7fad8effd6c0 Level-0 table #233: 9362 bytes OK
|
||||
2025/05/01-20:40:06.742187 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753338 7fad8effd6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.774492 7fad8effd6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at '!items!yBvkQb9S64s908sR' @ 80 : 1
|
||||
2025/05/01-20:40:06.774508 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.777817 7fad8effd6c0 Generated table #234@1: 20 keys, 9362 bytes
|
||||
2025/05/01-20:40:06.777855 7fad8effd6c0 Compacted 1@1 + 1@2 files => 9362 bytes
|
||||
2025/05/01-20:40:06.784851 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.784962 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.785089 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795076 7fad8effd6c0 Manual compaction at level-1 from '!items!yBvkQb9S64s908sR' @ 80 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/origines/MANIFEST-000220
Normal file
BIN
packs/origines/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/pnj-creatures/000130.ldb
Normal file
BIN
packs/pnj-creatures/000130.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000112
|
||||
MANIFEST-000116
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.228260 7fad94ff96c0 Recovering log #114
|
||||
2025/05/01-19:59:13.228290 7fad94ff96c0 Recovering log #126
|
||||
2025/05/01-19:59:13.284461 7fad94ff96c0 Delete type=0 #126
|
||||
2025/05/01-19:59:13.284677 7fad94ff96c0 Delete type=0 #114
|
||||
2025/05/01-19:59:13.284774 7fad94ff96c0 Delete type=3 #112
|
||||
2025/05/01-20:40:06.640617 7fad8effd6c0 Level-0 table #129: started
|
||||
2025/05/01-20:40:06.647756 7fad8effd6c0 Level-0 table #129: 423653 bytes OK
|
||||
2025/05/01-20:40:06.654365 7fad8effd6c0 Delete type=0 #127
|
||||
2025/05/01-20:40:06.664527 7fad8effd6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.695911 7fad8effd6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 2765 : 1
|
||||
2025/05/01-20:40:06.695928 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.704206 7fad8effd6c0 Generated table #130@1: 694 keys, 424214 bytes
|
||||
2025/05/01-20:40:06.704245 7fad8effd6c0 Compacted 1@1 + 1@2 files => 424214 bytes
|
||||
2025/05/01-20:40:06.711236 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.711415 7fad8effd6c0 Delete type=2 #107
|
||||
2025/05/01-20:40:06.711670 7fad8effd6c0 Delete type=2 #129
|
||||
2025/05/01-20:40:06.711825 7fad8effd6c0 Manual compaction at level-1 from '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 2765 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/pnj-creatures/MANIFEST-000116
Normal file
BIN
packs/pnj-creatures/MANIFEST-000116
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/protection/000234.ldb
Normal file
BIN
packs/protection/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.459137 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.459172 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.519467 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.519571 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.519639 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.711943 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.715460 7fad8effd6c0 Level-0 table #233: 2866 bytes OK
|
||||
2025/05/01-20:40:06.721938 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753295 7fad8effd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.753377 7fad8effd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at '!items!veoS6Gtzj6Dq087V' @ 28 : 1
|
||||
2025/05/01-20:40:06.753389 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.756847 7fad8effd6c0 Generated table #234@1: 7 keys, 2866 bytes
|
||||
2025/05/01-20:40:06.756890 7fad8effd6c0 Compacted 1@1 + 1@2 files => 2866 bytes
|
||||
2025/05/01-20:40:06.763265 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.763390 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.763517 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795056 7fad8effd6c0 Manual compaction at level-1 from '!items!veoS6Gtzj6Dq087V' @ 28 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/protection/MANIFEST-000220
Normal file
BIN
packs/protection/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/runes/000234.ldb
Normal file
BIN
packs/runes/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.951217 7fad8f7fe6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.951252 7fad8f7fe6c0 Recovering log #230
|
||||
2025/05/01-19:59:14.010531 7fad8f7fe6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:14.010644 7fad8f7fe6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:14.010710 7fad8f7fe6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.879005 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.882368 7fad8effd6c0 Level-0 table #233: 33708 bytes OK
|
||||
2025/05/01-20:40:06.889400 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.920445 7fad8effd6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.920540 7fad8effd6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at '!items!xnCf2xIPzdsUoBTy' @ 180 : 1
|
||||
2025/05/01-20:40:06.920554 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.924361 7fad8effd6c0 Generated table #234@1: 45 keys, 33708 bytes
|
||||
2025/05/01-20:40:06.924378 7fad8effd6c0 Compacted 1@1 + 1@2 files => 33708 bytes
|
||||
2025/05/01-20:40:06.930331 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.930441 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.930542 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.957681 7fad8effd6c0 Manual compaction at level-1 from '!items!xnCf2xIPzdsUoBTy' @ 180 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/runes/MANIFEST-000220
Normal file
BIN
packs/runes/MANIFEST-000220
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/scenes/000150.ldb
Normal file
BIN
packs/scenes/000150.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000132
|
||||
MANIFEST-000136
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:14.070146 7fad94ff96c0 Recovering log #134
|
||||
2025/05/01-19:59:14.070195 7fad94ff96c0 Recovering log #146
|
||||
2025/05/01-19:59:14.130070 7fad94ff96c0 Delete type=0 #146
|
||||
2025/05/01-19:59:14.130135 7fad94ff96c0 Delete type=0 #134
|
||||
2025/05/01-19:59:14.130165 7fad94ff96c0 Delete type=3 #132
|
||||
2025/05/01-20:40:06.899798 7fad8effd6c0 Level-0 table #149: started
|
||||
2025/05/01-20:40:06.903123 7fad8effd6c0 Level-0 table #149: 1383 bytes OK
|
||||
2025/05/01-20:40:06.909413 7fad8effd6c0 Delete type=0 #147
|
||||
2025/05/01-20:40:06.920493 7fad8effd6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.930617 7fad8effd6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1
|
||||
2025/05/01-20:40:06.930624 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.934015 7fad8effd6c0 Generated table #150@1: 1 keys, 1383 bytes
|
||||
2025/05/01-20:40:06.934056 7fad8effd6c0 Compacted 1@1 + 1@2 files => 1383 bytes
|
||||
2025/05/01-20:40:06.940412 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.940518 7fad8effd6c0 Delete type=2 #127
|
||||
2025/05/01-20:40:06.940625 7fad8effd6c0 Delete type=2 #149
|
||||
2025/05/01-20:40:06.957696 7fad8effd6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/scenes/MANIFEST-000136
Normal file
BIN
packs/scenes/MANIFEST-000136
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/skills-creatures/000142.ldb
Normal file
BIN
packs/skills-creatures/000142.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000124
|
||||
MANIFEST-000128
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.347156 7fad94ff96c0 Recovering log #126
|
||||
2025/05/01-19:59:13.347201 7fad94ff96c0 Recovering log #138
|
||||
2025/05/01-19:59:13.401747 7fad94ff96c0 Delete type=0 #138
|
||||
2025/05/01-19:59:13.401806 7fad94ff96c0 Delete type=0 #126
|
||||
2025/05/01-19:59:13.401834 7fad94ff96c0 Delete type=3 #124
|
||||
2025/05/01-20:40:06.654688 7fad8effd6c0 Level-0 table #141: started
|
||||
2025/05/01-20:40:06.657896 7fad8effd6c0 Level-0 table #141: 3853 bytes OK
|
||||
2025/05/01-20:40:06.664323 7fad8effd6c0 Delete type=0 #139
|
||||
2025/05/01-20:40:06.664536 7fad8effd6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.685220 7fad8effd6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at '!items!t692JcsGHG4YJIlM' @ 41 : 1
|
||||
2025/05/01-20:40:06.685228 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.688496 7fad8effd6c0 Generated table #142@1: 8 keys, 3853 bytes
|
||||
2025/05/01-20:40:06.688531 7fad8effd6c0 Compacted 1@1 + 1@2 files => 3853 bytes
|
||||
2025/05/01-20:40:06.695431 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.695565 7fad8effd6c0 Delete type=2 #119
|
||||
2025/05/01-20:40:06.695762 7fad8effd6c0 Delete type=2 #141
|
||||
2025/05/01-20:40:06.711805 7fad8effd6c0 Manual compaction at level-1 from '!items!t692JcsGHG4YJIlM' @ 41 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
|
@ -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)
|
||||
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)
|
||||
|
BIN
packs/skills-creatures/MANIFEST-000128
Normal file
BIN
packs/skills-creatures/MANIFEST-000128
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
packs/skills/000234.ldb
Normal file
BIN
packs/skills/000234.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000216
|
||||
MANIFEST-000220
|
||||
|
@ -1,8 +1,17 @@
|
||||
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/05/01-19:59:13.290979 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.291005 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.344860 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.344936 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.344980 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.620602 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.624373 7fad8effd6c0 Level-0 table #233: 8044 bytes OK
|
||||
2025/05/01-20:40:06.630551 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.664499 7fad8effd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.664555 7fad8effd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at '!items!tq6mEgXog7h4VyWk' @ 60 : 1
|
||||
2025/05/01-20:40:06.664563 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.668268 7fad8effd6c0 Generated table #234@1: 15 keys, 8044 bytes
|
||||
2025/05/01-20:40:06.668319 7fad8effd6c0 Compacted 1@1 + 1@2 files => 8044 bytes
|
||||
2025/05/01-20:40:06.674562 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.674814 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.675036 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.711783 7fad8effd6c0 Manual compaction at level-1 from '!items!tq6mEgXog7h4VyWk' @ 60 : 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
Reference in New Issue
Block a user