Compare commits

...

13 Commits

113 changed files with 408 additions and 369 deletions

View File

@@ -7,7 +7,7 @@ import { HawkmoonUtility } from "./hawkmoon-utility.js";
import { HawkmoonAutomation } from "./hawkmoon-automation.js";
/* -------------------------------------------- */
export class HawkmoonActorSheet extends ActorSheet {
export class HawkmoonActorSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {
@@ -56,8 +56,8 @@ export class HawkmoonActorSheet extends ActorSheet {
nbCombativite: this.actor.system.sante.nbcombativite,
combativiteList: HawkmoonUtility.getCombativiteList(this.actor.system.sante.nbcombativite),
initiative: this.actor.getFlag("world", "last-initiative") || -1,
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
habitat: await TextEditor.enrichHTML(this.object.system.biodata.habitat, {async: true}),
description: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.description, {async: true}),
habitat: await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.biodata.habitat, {async: true}),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,

View File

@@ -424,7 +424,7 @@ export class HawkmoonActor extends Actor {
if (sante.etat == this.system.sante.nbcombativite) {
ChatMessage.create({ content: `<strong>${this.name} est vaincu !</strong>` })
}
this.processCombativite(sante)
// Duplicated ! this.processCombativite(sante)
}
/* -------------------------------------------- */
@@ -543,6 +543,23 @@ export class HawkmoonActor extends Actor {
return init || -1
}
/* -------------------------------------------- */
getBestAttackValue() {
let attackList = this.items.filter(item => (item.type == "arme" || item.type == "talent") && item.system.equipped)
let maxOff = 0
let bestArme
for (let arme of attackList) {
if (arme.type == "arme") {
arme = this.prepareArme(arme)
}
if (arme.system.totalOffensif > maxOff) {
maxOff = arme.system.totalOffensif
bestArme = foundry.utils.duplicate(arme)
}
}
return bestArme
}
/* -------------------------------------------- */
getBestDefenseValue() {
let defenseList = this.items.filter(item => (item.type == "arme") && item.system.equipped)

View File

@@ -10,7 +10,7 @@ import { HawkmoonAutomation } from "./hawkmoon-automation.js";
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1, "equipement": 1, "protection": 1, "artefact": 1, "arme": 1, "monnaie": 1 }
/* -------------------------------------------- */
export class HawkmoonCelluleSheet extends ActorSheet {
export class HawkmoonCelluleSheet extends foundry.appv1.sheets.ActorSheet {
/** @override */
static get defaultOptions() {

View File

@@ -22,7 +22,7 @@ export class HawkmoonTokenHud {
const hudData = { actor: actor }
const controlIconActions = html.find('.control-icon[data-action=combat]');
const controlIconActions = $(html).find('.control-icon[data-action=combat]');
// initiative
await HawkmoonTokenHud._configureSubMenu(controlIconActions, 'systems/fvtt-hawkmoon-cyd/templates/hud-adversites.html', hudData,
(event) => {
@@ -34,7 +34,7 @@ export class HawkmoonTokenHud {
/* -------------------------------------------- */
static async addTokenHudExtensions(app, html, tokenId) {
const controlIconCombat = html.find('.control-icon[data-action=combat]')
const controlIconCombat = $(html).find('.control-icon[data-action=combat]')
if (controlIconCombat.length>0 ) {
HawkmoonTokenHud.addExtensionHud(app, html, tokenId);
}
@@ -42,7 +42,7 @@ export class HawkmoonTokenHud {
/* -------------------------------------------- */
static async _configureSubMenu(insertionPoint, template, hudData, onMenuItem) {
const hud = $(await renderTemplate(template, hudData))
const hud = $(await foundry.applications.handlebars.renderTemplate(template, hudData))
const list = hud.find('div.hawkmoon-hud-list')
HawkmoonTokenHud._toggleHudListActive(hud, list);

View File

@@ -4,7 +4,7 @@ import { HawkmoonUtility } from "./hawkmoon-utility.js";
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class HawkmoonItemSheet extends ItemSheet {
export class HawkmoonItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {

View File

@@ -56,14 +56,14 @@ Hooks.once("init", async function () {
}
/* -------------------------------------------- */
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonActorSheet, { types: ["personnage"], makeDefault: true })
Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCreatureSheet, { types: ["creature"], makeDefault: true })
Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCelluleSheet, { types: ["cellule"], makeDefault: true });
// Regster sheet application classes
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
foundry.documents.collections.Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonActorSheet, { types: ["personnage"], makeDefault: true })
foundry.documents.collections.Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCreatureSheet, { types: ["creature"], makeDefault: true })
foundry.documents.collections.Actors.registerSheet("fvtt-hawkmoon-cyd", HawkmoonCelluleSheet, { types: ["cellule"], makeDefault: true });
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-hawkmoon-cyd", HawkmoonItemSheet, { makeDefault: true })
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
foundry.documents.collections.Items.registerSheet("fvtt-hawkmoon-cyd", HawkmoonItemSheet, { makeDefault: true })
HawkmoonUtility.init()
HawkmoonAutomation.init()
@@ -138,4 +138,3 @@ Hooks.on("chatMessage", (html, content, msg) => {
}
return true;
});

View File

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

View File

@@ -15,8 +15,7 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
static async init() {
Hooks.on('renderChatLog', (log, html, data) => HawkmoonUtility.chatListeners(html))
Hooks.on("getChatLogEntryContext", (html, options) => HawkmoonUtility.chatRollMenu(html, options))
Hooks.on("getChatMessageContextOptions", (html, options) => HawkmoonUtility.chatRollMenu(html, options))
Hooks.on("getCombatTrackerEntryContext", (html, options) => {
HawkmoonUtility.pushInitiativeOptions(html, options);
})
@@ -155,7 +154,7 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
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 = HawkmoonUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
@@ -166,14 +165,14 @@ export class HawkmoonUtility {
HawkmoonUtility.rollHawkmoon(rollData)
})
html.on("click", '.roll-chat-degat', async event => {
$(html).on("click", '.roll-chat-degat', async event => {
let messageId = HawkmoonUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "hawkmoon-roll")
let actor = HawkmoonUtility.getActorFromRollData(rollData)
actor.rollArmeDegats(rollData.arme._id, rollData.targetVigueur, rollData)
})
html.on("click", '.roll-chat-degat-devastateur', async event => {
$(html).on("click", '.roll-chat-degat-devastateur', async event => {
let messageId = HawkmoonUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "hawkmoon-roll")
@@ -196,7 +195,7 @@ export class HawkmoonUtility {
'systems/fvtt-hawkmoon-cyd/templates/partial-automation.html',
'systems/fvtt-hawkmoon-cyd/templates/hud-adversites.html',
]
return loadTemplates(templatePaths);
return foundry.applications.handlebars.loadTemplates(templatePaths);
}
/* -------------------------------------------- */
@@ -279,9 +278,13 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
static onSocketMesssage(msg) {
if (msg.name == "msg_apply_combativite") {
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
if (msg.msg == "msg_apply_combativite") {
let defender = game.canvas.tokens.get(msg.data.defenderTokenId)?.actor
if (defender) {
defender.changeEtatCombativite(msg.data.value)
} else {
console.warn("HawkmoonUtility.onSocketMesssage : Impossible de trouver le token pour appliquer la combativité", msg.defenderTokenId)
}
}
}
@@ -355,14 +358,19 @@ export class HawkmoonUtility {
}
}
//console.log("Result : ", rollData)
//console.log("Result : ", rollData
this.computeResultQuality(rollData)
}
/* -------------------------------------------- */
static computeResultQuality(rollData) {
if (rollData.difficulte > 0 && !rollData.isDramatique) {
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
rollData.isHeroique = ((rollData.finalResult - rollData.difficulte) >= 10)
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
}
}
/* -------------------------------------------- */
static applyCombativite(rollData, value) {
if (game.user.isGM) {
@@ -432,10 +440,10 @@ export class HawkmoonUtility {
rollData.diceFormula += `+3`
}
if (rollData.hasAmbidextre) {
if ( rollData.attaqueAmbidextre1) {
if (rollData.ambidextre1) {
rollData.diceFormula += `-3`
} else if ( rollData.attaqueAmbidextre2) {
rollData.diceFormula += `-5`
} else if (rollData.ambidextre2) {
rollData.diceFormula += `-6`
}
}
if (rollData.defenseurAuSol) {
@@ -500,7 +508,7 @@ export class HawkmoonUtility {
}
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
}, rollData)
if ((rollData.coupBas || rollData.arme) && rollData.isSuccess && rollData.defenderTokenId) {
@@ -527,17 +535,22 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
static async bonusRollHawkmoon(rollData) {
rollData.bonusFormula = rollData.addedBonus
console.log("Bonus Roll Hawkmoon", rollData.bonusFormula)
if (!Number(rollData.bonusFormula)) {
let bonusRoll = await new Roll(rollData.bonusFormula).roll()
await this.showDiceSoNice(bonusRoll, game.settings.get("core", "rollMode"));
rollData.bonusRoll = foundry.utils.duplicate(bonusRoll)
rollData.finalResult += Number(rollData.bonusRoll.total)
} else {
rollData.finalResult += Number(rollData.bonusFormula)
console.log("Bonus Roll Hawkmoon 2", rollData.finalResult)
}
rollData.finalResult += rollData.bonusRoll.total
this.computeResult(rollData)
this.computeResultQuality(rollData)
this.createChatWithRollMode(rollData.alias, {
content: await renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-hawkmoon-cyd/templates/chat-generic-result.html`, rollData)
}, rollData)
}
@@ -663,6 +676,7 @@ export class HawkmoonUtility {
rollData.defenderTokenId = target.id
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
rollData.armeDefense = defender.getBestDefenseValue()
rollData.armeAttaqueDefenseur = defender.getBestAttackValue()
rollData.targetVigueur = defender.getVigueur()
rollData.protectionDefenseur = defender.getProtection()
if (rollData.immobiliser || rollData.repousser) {
@@ -673,6 +687,8 @@ export class HawkmoonUtility {
rollData.difficulte = combatValues.defenseTotal
} else if (rollData.assomer) {
rollData.difficulte = 3 + (defender.system.attributs.tre.value * 2)
} else if (rollData.desengager) {
rollData.difficulte = rollData.armeAttaqueDefenseur?.system?.totalOffensif || 0;
} else if (rollData.armeDefense) {
rollData.difficulte = rollData.armeDefense.system.totalDefensif
if (!rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune) {
@@ -693,7 +709,7 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
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", "hawkmoon-roll")
@@ -712,7 +728,7 @@ export class HawkmoonUtility {
/* -------------------------------------------- */
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", "hawkmoon-roll")
@@ -733,13 +749,13 @@ export class HawkmoonUtility {
static chatRollMenu(html, options) {
let canApply = li => canvas.tokens.controlled.length && li.find(".hawkmoon-roll").length
let canApplyBA = 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", "hawkmoon-roll")
let actor = HawkmoonUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getBonneAventure() > 0)
}
let canApplyPE = 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", "hawkmoon-roll")
let actor = HawkmoonUtility.getActorFromRollData(rollData)
return (!rollData.isReroll && actor.getEclat() > 0)
@@ -765,7 +781,7 @@ export class HawkmoonUtility {
name: "Relancer le dé (1 point d'Eclat)",
icon: "<i class='fas fa-user-plus'></i>",
condition: canApply && canApplyPE,
callback: li => HawkmoonUtility.applyEclatRoll(li, -3, "reroll")
callback: li => HawkmoonUtility.applyEclatRoll(li, -1, "reroll")
}
)
return options

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000309

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.546930 7f679aa006c0 Recovering log #228
2024/08/22-14:01:55.557048 7f679aa006c0 Delete type=3 #226
2024/08/22-14:01:55.557151 7f679aa006c0 Delete type=0 #228
2024/08/22-14:20:19.478989 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.479098 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.485098 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.512356 7f679a0006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.512401 7f679a0006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.800687 7f99ca7fc6c0 Recovering log #307
2025/08/24-16:39:04.811571 7f99ca7fc6c0 Delete type=3 #305
2025/08/24-16:39:04.811645 7f99ca7fc6c0 Delete type=0 #307
2025/08/24-16:59:15.773185 7f99c8ff96c0 Level-0 table #312: started
2025/08/24-16:59:15.773255 7f99c8ff96c0 Level-0 table #312: 0 bytes OK
2025/08/24-16:59:15.779965 7f99c8ff96c0 Delete type=0 #310
2025/08/24-16:59:15.786903 7f99c8ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.786956 7f99c8ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:41.045957 7fef816006c0 Recovering log #224
2024/07/02-23:02:41.056555 7fef816006c0 Delete type=3 #222
2024/07/02-23:02:41.056613 7fef816006c0 Delete type=0 #224
2024/07/02-23:03:53.693029 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.693099 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.699219 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.699404 7fef7f2006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.699443 7fef7f2006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.187484 7f0798bfa6c0 Recovering log #303
2025/07/02-22:46:22.198111 7f0798bfa6c0 Delete type=3 #301
2025/07/02-22:46:22.198158 7f0798bfa6c0 Delete type=0 #303
2025/07/02-22:48:09.734542 7f07923ff6c0 Level-0 table #308: started
2025/07/02-22:48:09.734569 7f07923ff6c0 Level-0 table #308: 0 bytes OK
2025/07/02-22:48:09.744356 7f07923ff6c0 Delete type=0 #306
2025/07/02-22:48:09.791085 7f07923ff6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.791154 7f07923ff6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/armes/000275.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.422620 7f679b4006c0 Recovering log #228
2024/08/22-14:01:55.432987 7f679b4006c0 Delete type=3 #226
2024/08/22-14:01:55.433138 7f679b4006c0 Delete type=0 #228
2024/08/22-14:20:19.439915 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.439953 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.445868 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.453304 7f679a0006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.453384 7f679a0006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.657736 7f99ca7fc6c0 Recovering log #306
2025/08/24-16:39:04.668479 7f99ca7fc6c0 Delete type=3 #304
2025/08/24-16:39:04.668567 7f99ca7fc6c0 Delete type=0 #306
2025/08/24-16:59:15.720000 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.720030 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.726074 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.733124 7f99c8ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.733174 7f99c8ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.880826 7fef802006c0 Recovering log #224
2024/07/02-23:02:40.890760 7fef802006c0 Delete type=3 #222
2024/07/02-23:02:40.890824 7fef802006c0 Delete type=0 #224
2024/07/02-23:03:53.630571 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.630595 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.637592 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.637811 7fef7f2006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.637854 7fef7f2006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.075956 7f07937fe6c0 Recovering log #302
2025/07/02-22:46:22.086980 7f07937fe6c0 Delete type=3 #300
2025/07/02-22:46:22.087033 7f07937fe6c0 Delete type=0 #302
2025/07/02-22:48:09.675327 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.675362 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.686702 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.686958 7f07923ff6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.686996 7f07923ff6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000308 Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.397936 7f679aa006c0 Recovering log #228
2024/08/22-14:01:55.407608 7f679aa006c0 Delete type=3 #226
2024/08/22-14:01:55.407662 7f679aa006c0 Delete type=0 #228
2024/08/22-14:20:19.402386 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.402465 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.408589 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.427406 7f679a0006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.427445 7f679a0006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.627677 7f99c97fa6c0 Recovering log #306
2025/08/24-16:39:04.637852 7f99c97fa6c0 Delete type=3 #304
2025/08/24-16:39:04.637963 7f99c97fa6c0 Delete type=0 #306
2025/08/24-16:59:15.678161 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.678292 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.685710 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.705541 7f99c8ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.705635 7f99c8ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.852140 7fef802006c0 Recovering log #224
2024/07/02-23:02:40.862615 7fef802006c0 Delete type=3 #222
2024/07/02-23:02:40.862685 7fef802006c0 Delete type=0 #224
2024/07/02-23:03:53.609481 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.609507 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.615707 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.630547 7fef7f2006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.637780 7fef7f2006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.050017 7f0793fff6c0 Recovering log #302
2025/07/02-22:46:22.059979 7f0793fff6c0 Delete type=3 #300
2025/07/02-22:46:22.060037 7f0793fff6c0 Delete type=0 #302
2025/07/02-22:48:09.634420 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.634441 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.644014 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.644146 7f07923ff6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.644167 7f07923ff6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.370959 7f679b4006c0 Recovering log #228
2024/08/22-14:01:55.381567 7f679b4006c0 Delete type=3 #226
2024/08/22-14:01:55.381665 7f679b4006c0 Delete type=0 #228
2024/08/22-14:20:19.420924 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.420947 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.427335 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.427434 7f679a0006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.427488 7f679a0006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.595109 7f99caffd6c0 Recovering log #306
2025/08/24-16:39:04.604941 7f99caffd6c0 Delete type=3 #304
2025/08/24-16:39:04.605009 7f99caffd6c0 Delete type=0 #306
2025/08/24-16:59:15.698867 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.698952 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.705403 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.705617 7f99c8ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.705693 7f99c8ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.817125 7fef802006c0 Recovering log #224
2024/07/02-23:02:40.827441 7fef802006c0 Delete type=3 #222
2024/07/02-23:02:40.827574 7fef802006c0 Delete type=0 #224
2024/07/02-23:03:53.592762 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.592791 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.598806 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.598989 7fef7f2006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.609470 7fef7f2006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.022022 7f07937fe6c0 Recovering log #302
2025/07/02-22:46:22.031802 7f07937fe6c0 Delete type=3 #300
2025/07/02-22:46:22.031862 7f07937fe6c0 Delete type=0 #302
2025/07/02-22:48:09.604476 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.604540 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.616123 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.644121 7f07923ff6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.644157 7f07923ff6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000275.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.448753 7f679aa006c0 Recovering log #228
2024/08/22-14:01:55.458732 7f679aa006c0 Delete type=3 #226
2024/08/22-14:01:55.458797 7f679aa006c0 Delete type=0 #228
2024/08/22-14:20:19.427565 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.427601 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.433658 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.453255 7f679a0006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.453345 7f679a0006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.685664 7f99c9ffb6c0 Recovering log #306
2025/08/24-16:39:04.696583 7f99c9ffb6c0 Delete type=3 #304
2025/08/24-16:39:04.696664 7f99c9ffb6c0 Delete type=0 #306
2025/08/24-16:59:15.713614 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.713701 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.719863 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.733110 7f99c8ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.733164 7f99c8ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.907806 7fef802006c0 Recovering log #224
2024/07/02-23:02:40.917816 7fef802006c0 Delete type=3 #222
2024/07/02-23:02:40.917877 7fef802006c0 Delete type=0 #224
2024/07/02-23:03:53.644849 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.644873 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.650781 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.664857 7fef7f2006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.664937 7fef7f2006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.103691 7f0798bfa6c0 Recovering log #302
2025/07/02-22:46:22.113425 7f0798bfa6c0 Delete type=3 #300
2025/07/02-22:46:22.113488 7f0798bfa6c0 Delete type=0 #302
2025/07/02-22:48:09.644254 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.644276 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.654757 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.686905 7f07923ff6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.686969 7f07923ff6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 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-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.409582 7f679be006c0 Recovering log #228
2024/08/22-14:01:55.420093 7f679be006c0 Delete type=3 #226
2024/08/22-14:01:55.420194 7f679be006c0 Delete type=0 #228
2024/08/22-14:20:19.408703 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.408725 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.414674 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.427416 7f679a0006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.427460 7f679a0006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.642541 7f99c9ffb6c0 Recovering log #306
2025/08/24-16:39:04.652781 7f99c9ffb6c0 Delete type=3 #304
2025/08/24-16:39:04.652862 7f99c9ffb6c0 Delete type=0 #306
2025/08/24-16:59:15.685953 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.686013 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.692263 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.705571 7f99c8ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.705656 7f99c8ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.865598 7fef816006c0 Recovering log #224
2024/07/02-23:02:40.876242 7fef816006c0 Delete type=3 #222
2024/07/02-23:02:40.876319 7fef816006c0 Delete type=0 #224
2024/07/02-23:03:53.624137 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.624168 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.630406 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.637760 7fef7f2006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.637825 7fef7f2006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.062411 7f0798bfa6c0 Recovering log #302
2025/07/02-22:46:22.072211 7f0798bfa6c0 Delete type=3 #300
2025/07/02-22:46:22.072276 7f0798bfa6c0 Delete type=0 #302
2025/07/02-22:48:09.625684 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.625708 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.634315 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.644139 7f07923ff6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.644162 7f07923ff6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/mutations/000185.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000140
MANIFEST-000218

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.384667 7f67a10006c0 Recovering log #138
2024/08/22-14:01:55.394800 7f67a10006c0 Delete type=3 #136
2024/08/22-14:01:55.394860 7f67a10006c0 Delete type=0 #138
2024/08/22-14:20:19.414840 7f679a0006c0 Level-0 table #143: started
2024/08/22-14:20:19.414881 7f679a0006c0 Level-0 table #143: 0 bytes OK
2024/08/22-14:20:19.420821 7f679a0006c0 Delete type=0 #141
2024/08/22-14:20:19.427425 7f679a0006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.427475 7f679a0006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.611112 7f99ca7fc6c0 Recovering log #216
2025/08/24-16:39:04.621971 7f99ca7fc6c0 Delete type=3 #214
2025/08/24-16:39:04.622127 7f99ca7fc6c0 Delete type=0 #216
2025/08/24-16:59:15.692465 7f99c8ff96c0 Level-0 table #221: started
2025/08/24-16:59:15.692517 7f99c8ff96c0 Level-0 table #221: 0 bytes OK
2025/08/24-16:59:15.698622 7f99c8ff96c0 Delete type=0 #219
2025/08/24-16:59:15.705597 7f99c8ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.705674 7f99c8ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.833787 7fef816006c0 Recovering log #134
2024/07/02-23:02:40.843772 7fef816006c0 Delete type=3 #132
2024/07/02-23:02:40.843826 7fef816006c0 Delete type=0 #134
2024/07/02-23:03:53.615917 7fef7f2006c0 Level-0 table #139: started
2024/07/02-23:03:53.615967 7fef7f2006c0 Level-0 table #139: 0 bytes OK
2024/07/02-23:03:53.623883 7fef7f2006c0 Delete type=0 #137
2024/07/02-23:03:53.630560 7fef7f2006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.637795 7fef7f2006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.035824 7f0798bfa6c0 Recovering log #212
2025/07/02-22:46:22.046033 7f0798bfa6c0 Delete type=3 #210
2025/07/02-22:46:22.046089 7f0798bfa6c0 Delete type=0 #212
2025/07/02-22:48:09.616234 7f07923ff6c0 Level-0 table #217: started
2025/07/02-22:48:09.616258 7f07923ff6c0 Level-0 table #217: 0 bytes OK
2025/07/02-22:48:09.625537 7f07923ff6c0 Delete type=0 #215
2025/07/02-22:48:09.644131 7f07923ff6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.644152 7f07923ff6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/profils/000275.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.461352 7f679be006c0 Recovering log #228
2024/08/22-14:01:55.471080 7f679be006c0 Delete type=3 #226
2024/08/22-14:01:55.471143 7f679be006c0 Delete type=0 #228
2024/08/22-14:20:19.433763 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.433785 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.439767 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.453281 7f679a0006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.453364 7f679a0006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.701459 7f99caffd6c0 Recovering log #306
2025/08/24-16:39:04.712420 7f99caffd6c0 Delete type=3 #304
2025/08/24-16:39:04.712492 7f99caffd6c0 Delete type=0 #306
2025/08/24-16:59:15.746507 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.746545 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.752641 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.759929 7f99c8ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.759962 7f99c8ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.921899 7fef816006c0 Recovering log #224
2024/07/02-23:02:40.932636 7fef816006c0 Delete type=3 #222
2024/07/02-23:02:40.932733 7fef816006c0 Delete type=0 #224
2024/07/02-23:03:53.637944 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.637980 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.644742 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.664843 7fef7f2006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.664921 7fef7f2006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.117261 7f07937fe6c0 Recovering log #302
2025/07/02-22:46:22.127319 7f07937fe6c0 Delete type=3 #300
2025/07/02-22:46:22.127379 7f07937fe6c0 Delete type=0 #302
2025/07/02-22:48:09.664713 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.664747 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.675149 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.686945 7f07923ff6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.686987 7f07923ff6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 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-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.435763 7f67a10006c0 Recovering log #228
2024/08/22-14:01:55.445700 7f67a10006c0 Delete type=3 #226
2024/08/22-14:01:55.445757 7f67a10006c0 Delete type=0 #228
2024/08/22-14:20:19.445979 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.446002 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.453041 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.453325 7f679a0006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.453404 7f679a0006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.672110 7f99c97fa6c0 Recovering log #306
2025/08/24-16:39:04.682415 7f99c97fa6c0 Delete type=3 #304
2025/08/24-16:39:04.682496 7f99c97fa6c0 Delete type=0 #306
2025/08/24-16:59:15.705816 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.705873 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.713330 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.733088 7f99c8ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.733151 7f99c8ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.894670 7fef816006c0 Recovering log #224
2024/07/02-23:02:40.905143 7fef816006c0 Delete type=3 #222
2024/07/02-23:02:40.905210 7fef816006c0 Delete type=0 #224
2024/07/02-23:03:53.650903 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.650965 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.658370 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.664868 7fef7f2006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.664945 7fef7f2006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.089999 7f0793fff6c0 Recovering log #302
2025/07/02-22:46:22.100226 7f0793fff6c0 Delete type=3 #300
2025/07/02-22:46:22.100296 7f0793fff6c0 Delete type=0 #302
2025/07/02-22:48:09.654876 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.654897 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.664567 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.686931 7f07923ff6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.686978 7f07923ff6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/scenes/000114.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000067
MANIFEST-000147

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.511493 7f679be006c0 Recovering log #65
2024/08/22-14:01:55.543234 7f679be006c0 Delete type=3 #63
2024/08/22-14:01:55.543305 7f679be006c0 Delete type=0 #65
2024/08/22-14:20:19.472308 7f679a0006c0 Level-0 table #70: started
2024/08/22-14:20:19.472330 7f679a0006c0 Level-0 table #70: 0 bytes OK
2024/08/22-14:20:19.478725 7f679a0006c0 Delete type=0 #68
2024/08/22-14:20:19.478891 7f679a0006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta!CXx90Qk7nXEd2uTh.CNEJkNtOKi9pF1RF.JWM7P6qyhe2EKEzg' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.478923 7f679a0006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta!CXx90Qk7nXEd2uTh.CNEJkNtOKi9pF1RF.JWM7P6qyhe2EKEzg' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.786487 7f99c97fa6c0 Recovering log #145
2025/08/24-16:39:04.796655 7f99c97fa6c0 Delete type=3 #143
2025/08/24-16:39:04.796726 7f99c97fa6c0 Delete type=0 #145
2025/08/24-16:59:15.752769 7f99c8ff96c0 Level-0 table #150: started
2025/08/24-16:59:15.752800 7f99c8ff96c0 Level-0 table #150: 0 bytes OK
2025/08/24-16:59:15.759765 7f99c8ff96c0 Delete type=0 #148
2025/08/24-16:59:15.759940 7f99c8ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.759971 7f99c8ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:41.032036 7fef816006c0 Recovering log #60
2024/07/02-23:02:41.041976 7fef816006c0 Delete type=3 #58
2024/07/02-23:02:41.042034 7fef816006c0 Delete type=0 #60
2024/07/02-23:03:53.685375 7fef7f2006c0 Level-0 table #66: started
2024/07/02-23:03:53.685400 7fef7f2006c0 Level-0 table #66: 0 bytes OK
2024/07/02-23:03:53.692712 7fef7f2006c0 Delete type=0 #64
2024/07/02-23:03:53.692839 7fef7f2006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta!CXx90Qk7nXEd2uTh.CNEJkNtOKi9pF1RF.JWM7P6qyhe2EKEzg' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.692868 7fef7f2006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta!CXx90Qk7nXEd2uTh.CNEJkNtOKi9pF1RF.JWM7P6qyhe2EKEzg' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.172671 7f0793fff6c0 Recovering log #141
2025/07/02-22:46:22.182219 7f0793fff6c0 Delete type=3 #139
2025/07/02-22:46:22.182282 7f0793fff6c0 Delete type=0 #141
2025/07/02-22:48:09.722959 7f07923ff6c0 Level-0 table #146: started
2025/07/02-22:48:09.722995 7f07923ff6c0 Level-0 table #146: 0 bytes OK
2025/07/02-22:48:09.734269 7f07923ff6c0 Delete type=0 #144
2025/07/02-22:48:09.734444 7f07923ff6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.734466 7f07923ff6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000228
MANIFEST-000304

View File

@@ -1,7 +1,7 @@
2024/08/22-14:01:55.498999 7f679aa006c0 Recovering log #226
2024/08/22-14:01:55.508705 7f679aa006c0 Delete type=3 #224
2024/08/22-14:01:55.508805 7f679aa006c0 Delete type=0 #226
2024/08/22-14:20:19.453657 7f679a0006c0 Level-0 table #231: started
2024/08/22-14:20:19.453702 7f679a0006c0 Level-0 table #231: 0 bytes OK
2024/08/22-14:20:19.459655 7f679a0006c0 Delete type=0 #229
2024/08/22-14:20:19.478852 7f679a0006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.771948 7f99ca7fc6c0 Recovering log #302
2025/08/24-16:39:04.782426 7f99ca7fc6c0 Delete type=3 #300
2025/08/24-16:39:04.782565 7f99ca7fc6c0 Delete type=0 #302
2025/08/24-16:59:15.733312 7f99c8ff96c0 Level-0 table #307: started
2025/08/24-16:59:15.733353 7f99c8ff96c0 Level-0 table #307: 0 bytes OK
2025/08/24-16:59:15.740079 7f99c8ff96c0 Delete type=0 #305
2025/08/24-16:59:15.759900 7f99c8ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2024/07/02-23:02:40.966350 7fef802006c0 Recovering log #222
2024/07/02-23:02:41.028013 7fef802006c0 Delete type=3 #220
2024/07/02-23:02:41.028152 7fef802006c0 Delete type=0 #222
2024/07/02-23:03:53.671785 7fef7f2006c0 Level-0 table #227: started
2024/07/02-23:03:53.671835 7fef7f2006c0 Level-0 table #227: 0 bytes OK
2024/07/02-23:03:53.679068 7fef7f2006c0 Delete type=0 #225
2024/07/02-23:03:53.692823 7fef7f2006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.159913 7f07937fe6c0 Recovering log #298
2025/07/02-22:46:22.169652 7f07937fe6c0 Delete type=3 #296
2025/07/02-22:46:22.169703 7f07937fe6c0 Delete type=0 #298
2025/07/02-22:48:09.697135 7f07923ff6c0 Level-0 table #303: started
2025/07/02-22:48:09.697160 7f07923ff6c0 Level-0 table #303: 0 bytes OK
2025/07/02-22:48:09.712571 7f07923ff6c0 Delete type=0 #301
2025/07/02-22:48:09.734426 7f07923ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 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-000230
MANIFEST-000308

View File

@@ -1,8 +1,8 @@
2024/08/22-14:01:55.486965 7f67a10006c0 Recovering log #228
2024/08/22-14:01:55.497000 7f67a10006c0 Delete type=3 #226
2024/08/22-14:01:55.497066 7f67a10006c0 Delete type=0 #228
2024/08/22-14:20:19.459805 7f679a0006c0 Level-0 table #233: started
2024/08/22-14:20:19.459844 7f679a0006c0 Level-0 table #233: 0 bytes OK
2024/08/22-14:20:19.465867 7f679a0006c0 Delete type=0 #231
2024/08/22-14:20:19.478871 7f679a0006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2024/08/22-14:20:19.478898 7f679a0006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/08/24-16:39:04.733160 7f99c9ffb6c0 Recovering log #306
2025/08/24-16:39:04.744154 7f99c9ffb6c0 Delete type=3 #304
2025/08/24-16:39:04.744234 7f99c9ffb6c0 Delete type=0 #306
2025/08/24-16:59:15.740237 7f99c8ff96c0 Level-0 table #311: started
2025/08/24-16:59:15.740282 7f99c8ff96c0 Level-0 table #311: 0 bytes OK
2025/08/24-16:59:15.746375 7f99c8ff96c0 Delete type=0 #309
2025/08/24-16:59:15.759915 7f99c8ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/08/24-16:59:15.759952 7f99c8ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2024/07/02-23:02:40.953723 7fef816006c0 Recovering log #224
2024/07/02-23:02:40.963602 7fef816006c0 Delete type=3 #222
2024/07/02-23:02:40.963658 7fef816006c0 Delete type=0 #224
2024/07/02-23:03:53.665162 7fef7f2006c0 Level-0 table #229: started
2024/07/02-23:03:53.665193 7fef7f2006c0 Level-0 table #229: 0 bytes OK
2024/07/02-23:03:53.671567 7fef7f2006c0 Delete type=0 #227
2024/07/02-23:03:53.692812 7fef7f2006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2024/07/02-23:03:53.692846 7fef7f2006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/07/02-22:46:22.145913 7f0798bfa6c0 Recovering log #302
2025/07/02-22:46:22.155615 7f0798bfa6c0 Delete type=3 #300
2025/07/02-22:46:22.155666 7f0798bfa6c0 Delete type=0 #302
2025/07/02-22:48:09.687134 7f07923ff6c0 Level-0 table #307: started
2025/07/02-22:48:09.687193 7f07923ff6c0 Level-0 table #307: 0 bytes OK
2025/07/02-22:48:09.697012 7f07923ff6c0 Delete type=0 #305
2025/07/02-22:48:09.734415 7f07923ff6c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
2025/07/02-22:48:09.734451 7f07923ff6c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)

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