Ame/Ame max
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 10 KiB |
BIN
assets/icons/bonneaventure.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/icons/capacite.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 12 KiB |
BIN
assets/icons/don.webp
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
assets/icons/eclat.webp
Normal file
|
After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 15 KiB |
BIN
assets/icons/origine.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
assets/icons/pacte.webp
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 10 KiB |
BIN
assets/icons/rune.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
BIN
assets/icons/tendance.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/icons/traitchaotique.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 807 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 6.2 KiB |
@@ -2,7 +2,6 @@
|
||||
"TYPES": {
|
||||
"Actor": {
|
||||
"personnage": "Personnage",
|
||||
"cellule": "Cellule",
|
||||
"creature": "Créature"
|
||||
},
|
||||
"Item": {
|
||||
|
||||
116
modules/macro-replace-images.js
Normal file
@@ -0,0 +1,116 @@
|
||||
/**
|
||||
* Macro pour remplacer les chemins d'images dans les compendiums
|
||||
* Remplace "fvtt-hawkmoon-cyd" par "fvtt-mournblade-cyd2" dans tous les champs 'img'
|
||||
*/
|
||||
|
||||
(async () => {
|
||||
// Confirmation avant de procéder
|
||||
let confirm = await Dialog.confirm({
|
||||
title: "Remplacement des chemins d'images",
|
||||
content: `<p>Cette macro va :</p>
|
||||
<ul>
|
||||
<li>Déverrouiller tous les compendiums</li>
|
||||
<li>Remplacer "fvtt-hawkmoon-cyd" par "fvtt-mournblade-cyd2" dans tous les champs 'img'</li>
|
||||
<li>Reverrouiller les compendiums</li>
|
||||
</ul>
|
||||
<p><strong>Voulez-vous continuer ?</strong></p>`,
|
||||
defaultYes: false
|
||||
});
|
||||
|
||||
if (!confirm) {
|
||||
ui.notifications.info("Opération annulée");
|
||||
return;
|
||||
}
|
||||
|
||||
ui.notifications.info("Début du traitement des compendiums...");
|
||||
|
||||
let totalUpdated = 0;
|
||||
let compendiumsProcessed = 0;
|
||||
|
||||
// Parcourir tous les compendiums
|
||||
for (let pack of game.packs) {
|
||||
// Filtrer uniquement les compendiums du système mournblade
|
||||
if (!pack.metadata.packageName.includes("mournblade")) continue;
|
||||
|
||||
console.log(`Traitement du compendium: ${pack.metadata.label}`);
|
||||
compendiumsProcessed++;
|
||||
|
||||
try {
|
||||
// Unlock le compendium
|
||||
await pack.configure({ locked: false });
|
||||
|
||||
// Récupérer tous les documents du compendium
|
||||
let documents = await pack.getDocuments();
|
||||
let updatedInPack = 0;
|
||||
|
||||
for (let doc of documents) {
|
||||
let needsUpdate = false;
|
||||
let updateData = {};
|
||||
|
||||
// Vérifier le champ img principal
|
||||
if (doc.img && doc.img.includes("fvtt-hawkmoon-cyd")) {
|
||||
updateData.img = doc.img.replace(/fvtt-hawkmoon-cyd/g, "fvtt-mournblade-cyd2");
|
||||
needsUpdate = true;
|
||||
}
|
||||
|
||||
// Pour les acteurs, vérifier aussi prototypeToken.texture.src
|
||||
if (doc.documentName === "Actor" && doc.prototypeToken?.texture?.src) {
|
||||
if (doc.prototypeToken.texture.src.includes("fvtt-hawkmoon-cyd")) {
|
||||
updateData["prototypeToken.texture.src"] = doc.prototypeToken.texture.src.replace(/fvtt-hawkmoon-cyd/g, "fvtt-mournblade-cyd2");
|
||||
needsUpdate = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Pour les items contenus dans les acteurs
|
||||
if (doc.documentName === "Actor" && doc.items) {
|
||||
for (let item of doc.items) {
|
||||
if (item.img && item.img.includes("fvtt-hawkmoon-cyd")) {
|
||||
// Note: Les items embarqués nécessitent une approche différente
|
||||
needsUpdate = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Pour les scènes, vérifier background.src et les tokens
|
||||
if (doc.documentName === "Scene") {
|
||||
if (doc.background?.src && doc.background.src.includes("fvtt-hawkmoon-cyd")) {
|
||||
updateData["background.src"] = doc.background.src.replace(/fvtt-hawkmoon-cyd/g, "fvtt-mournblade-cyd2");
|
||||
needsUpdate = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Effectuer la mise à jour si nécessaire
|
||||
if (needsUpdate) {
|
||||
await doc.update(updateData);
|
||||
updatedInPack++;
|
||||
console.log(` - Mise à jour: ${doc.name}`);
|
||||
}
|
||||
}
|
||||
|
||||
// Lock le compendium
|
||||
await pack.configure({ locked: true });
|
||||
|
||||
if (updatedInPack > 0) {
|
||||
ui.notifications.info(`${pack.metadata.label}: ${updatedInPack} document(s) mis à jour`);
|
||||
totalUpdated += updatedInPack;
|
||||
}
|
||||
|
||||
} catch (error) {
|
||||
console.error(`Erreur lors du traitement de ${pack.metadata.label}:`, error);
|
||||
ui.notifications.error(`Erreur sur ${pack.metadata.label}: ${error.message}`);
|
||||
|
||||
// Tenter de reverrouiller en cas d'erreur
|
||||
try {
|
||||
await pack.configure({ locked: true });
|
||||
} catch (lockError) {
|
||||
console.error(`Impossible de reverrouiller ${pack.metadata.label}:`, lockError);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ui.notifications.info(`Traitement terminé ! ${totalUpdated} document(s) mis à jour dans ${compendiumsProcessed} compendium(s).`);
|
||||
console.log(`=== Résumé ===`);
|
||||
console.log(`Compendiums traités: ${compendiumsProcessed}`);
|
||||
console.log(`Total de documents mis à jour: ${totalUpdated}`);
|
||||
|
||||
})();
|
||||
@@ -53,7 +53,6 @@ export class MournbladeCYD2ActorSheet extends foundry.appv1.sheets.ActorSheet {
|
||||
traitsEspeces: foundry.utils.duplicate(this.actor.getTraitsEspeces() || []),
|
||||
aspect: this.actor.getAspect(),
|
||||
marge: this.actor.getMarge(),
|
||||
talentsCell: this.getCelluleTalents(),
|
||||
profils: foundry.utils.duplicate(this.actor.getProfils() || []),
|
||||
combat: this.actor.getCombatValues(),
|
||||
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
|
||||
@@ -82,20 +81,6 @@ export class MournbladeCYD2ActorSheet extends foundry.appv1.sheets.ActorSheet {
|
||||
return formData;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getCelluleTalents() {
|
||||
let talents = []
|
||||
for (let cellule of game.actors) {
|
||||
if (cellule.type == "cellule") {
|
||||
let found = cellule.system.members.find(it => it.id == this.actor.id)
|
||||
if (found) {
|
||||
talents = talents.concat(cellule.getTalents())
|
||||
}
|
||||
}
|
||||
}
|
||||
return talents
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/** @override */
|
||||
activateListeners(html) {
|
||||
|
||||
@@ -38,6 +38,7 @@ export class MournbladeCYD2Actor extends Actor {
|
||||
}
|
||||
|
||||
if (data.type == 'personnage') {
|
||||
console.log("Loading skills for personnage")
|
||||
const skills = await MournbladeCYD2Utility.loadCompendium("fvtt-mournblade-cyd2.skills")
|
||||
data.items = skills.map(i => i.toObject())
|
||||
}
|
||||
@@ -67,10 +68,6 @@ export class MournbladeCYD2Actor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareArme(arme) {
|
||||
if (this.type == "cellule") {
|
||||
return arme
|
||||
}
|
||||
|
||||
arme = foundry.utils.duplicate(arme)
|
||||
let combat = this.getCombatValues()
|
||||
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
|
||||
@@ -235,20 +232,6 @@ export class MournbladeCYD2Actor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getCombatValues() {
|
||||
if (this.type == "cellule") {
|
||||
return {
|
||||
initBase: 0,
|
||||
initTotal: 0,
|
||||
bonusDegats: 0,
|
||||
bonusDegatsTotal: 0,
|
||||
vitesseBase: 0,
|
||||
vitesseTotal: 0,
|
||||
defenseBase: 0,
|
||||
protection: 0,
|
||||
defenseTotal: 0
|
||||
}
|
||||
}
|
||||
|
||||
let combat = {
|
||||
initBase: this.system.attributs.adr.value,
|
||||
initTotal: this.system.attributs.adr.value + this.system.combat.initbonus,
|
||||
@@ -550,11 +533,16 @@ export class MournbladeCYD2Actor extends Actor {
|
||||
|
||||
// Gestion des états Traumatisé, Très Traumatisé et Brisé
|
||||
if (ame.etat == traumatiseValue) {
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Traumatisé !</strong>` })
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Traumatisé et subit 1 adversité bleue et 1 adversité noire !</strong>` })
|
||||
this.incDecAdversite("bleue", 1)
|
||||
this.incDecAdversite("noire", 1)
|
||||
} else if (ame.etat == tresTraumatiseValue) {
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Très Traumatisé !</strong>` })
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Très Traumatisé et subit 1 adversité bleue et 1 adversité noire !</strong>` })
|
||||
this.incDecAdversite("bleue", 1)
|
||||
this.incDecAdversite("noire", 1)
|
||||
} else if (ame.etat >= briseValue) {
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Brisé !</strong>` })
|
||||
ChatMessage.create({ content: `<strong>${this.name} est Brisé et subit 1 adversité noire !</strong>` })
|
||||
this.incDecAdversite("noire", 1)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,173 +0,0 @@
|
||||
/**
|
||||
* Extend the basic ActorSheet with some very simple modifications
|
||||
* @extends {ActorSheet}
|
||||
*/
|
||||
|
||||
import { MournbladeCYD2Utility } from "./mournblade-cyd2-utility.js";
|
||||
import { MournbladeCYD2Automation } from "./mournblade-cyd2-automation.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1, "equipement": 1, "protection": 1, "artefact": 1, "arme": 1, "monnaie": 1 }
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class MournbladeCYD2CelluleSheet extends foundry.appv1.sheets.ActorSheet {
|
||||
|
||||
/** @override */
|
||||
static get defaultOptions() {
|
||||
|
||||
return foundry.utils.mergeObject(super.defaultOptions, {
|
||||
classes: ["fvtt-mournblade-cyd2", "sheet", "actor"],
|
||||
template: "systems/fvtt-mournblade-cyd2/templates/cellule-sheet.html",
|
||||
width: 640,
|
||||
height: 720,
|
||||
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "talents" }],
|
||||
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
|
||||
editScore: false
|
||||
});
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async getData() {
|
||||
const objectData = foundry.utils.duplicate(this.object)
|
||||
|
||||
let formData = {
|
||||
title: this.title,
|
||||
id: objectData.id,
|
||||
type: objectData.type,
|
||||
img: objectData.img,
|
||||
name: objectData.name,
|
||||
editable: this.isEditable,
|
||||
cssClass: this.isEditable ? "editable" : "locked",
|
||||
system: objectData.system,
|
||||
effects: this.object.effects.map(e => foundry.utils.deepClone(e.data)),
|
||||
limited: this.object.limited,
|
||||
talents: foundry.utils.duplicate(this.actor.getTalents() || {}),
|
||||
ressources: foundry.utils.duplicate(this.actor.getRessources()),
|
||||
contacts: foundry.utils.duplicate(this.actor.getContacts()),
|
||||
members: this.getMembers(),
|
||||
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
|
||||
artefacts: foundry.utils.duplicate(this.actor.getArtefacts()),
|
||||
armes: foundry.utils.duplicate(this.actor.getWeapons()),
|
||||
monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
|
||||
protections: foundry.utils.duplicate(this.actor.getArmors()),
|
||||
richesse: this.actor.computeRichesse(),
|
||||
valeurEquipement: this.actor.computeValeurEquipement(),
|
||||
description: await TextEditor.enrichHTML(this.object.system.description, { async: true }),
|
||||
options: this.options,
|
||||
owner: this.document.isOwner,
|
||||
editScore: this.options.editScore,
|
||||
isGM: game.user.isGM,
|
||||
config: game.system.mournbladecyd2.config
|
||||
}
|
||||
this.formData = formData;
|
||||
|
||||
console.log("CELLULE : ", formData, this.object);
|
||||
return formData;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getMembers( ) {
|
||||
let membersFull = []
|
||||
for(let def of this.actor.system.members) {
|
||||
let actor = game.actors.get(def.id)
|
||||
membersFull.push( { name: actor.name, id: actor.id, img: actor.img } )
|
||||
}
|
||||
return membersFull
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/** @override */
|
||||
activateListeners(html) {
|
||||
super.activateListeners(html);
|
||||
|
||||
// Everything below here is only needed if the sheet is editable
|
||||
if (!this.options.editable) return;
|
||||
|
||||
// Update Inventory Item
|
||||
html.find('.actor-edit').click(ev => {
|
||||
const li = $(ev.currentTarget).parents(".item")
|
||||
let actorId = li.data("actor-id")
|
||||
const actor = game.actors.get(actorId)
|
||||
actor.sheet.render(true)
|
||||
})
|
||||
html.find('.actor-delete').click(ev => {
|
||||
const li = $(ev.currentTarget).parents(".item")
|
||||
let actorId = li.data("actor-id")
|
||||
this.actor.removeMember(actorId)
|
||||
})
|
||||
|
||||
// Update Inventory Item
|
||||
html.find('.item-edit').click(ev => {
|
||||
const li = $(ev.currentTarget).parents(".item")
|
||||
let itemId = li.data("item-id")
|
||||
const item = this.actor.items.get(itemId)
|
||||
item.sheet.render(true)
|
||||
})
|
||||
// Delete Inventory Item
|
||||
html.find('.item-delete').click(ev => {
|
||||
const li = $(ev.currentTarget).parents(".item");
|
||||
MournbladeCYD2Utility.confirmDelete(this, li);
|
||||
})
|
||||
html.find('.edit-item-data').change(ev => {
|
||||
const li = $(ev.currentTarget).parents(".item")
|
||||
let itemId = li.data("item-id")
|
||||
let itemType = li.data("item-type")
|
||||
let itemField = $(ev.currentTarget).data("item-field")
|
||||
let dataType = $(ev.currentTarget).data("dtype")
|
||||
let value = ev.currentTarget.value
|
||||
this.actor.editItemField(itemId, itemType, itemField, dataType, value)
|
||||
})
|
||||
html.find('.quantity-modify').click(event => {
|
||||
const li = $(event.currentTarget).parents(".item")
|
||||
const value = Number($(event.currentTarget).data("quantite-value"))
|
||||
this.actor.incDecQuantity( li.data("item-id"), value );
|
||||
})
|
||||
html.find('.item-add').click((event) => {
|
||||
const itemType = $(event.currentTarget).data("type")
|
||||
this.actor.createEmbeddedDocuments('Item', [{ name: `Nouveau ${itemType}`, type: itemType }], { renderSheet: true })
|
||||
})
|
||||
|
||||
html.find('.lock-unlock-sheet').click((event) => {
|
||||
this.options.editScore = !this.options.editScore;
|
||||
this.render(true);
|
||||
});
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async _onDropActor(event, dragData) {
|
||||
const actor = fromUuidSync(dragData.uuid)
|
||||
if (actor) {
|
||||
this.actor.addMember(actor.id)
|
||||
} else {
|
||||
ui.notifications.warn("Cet acteur n'a pas été trouvé.")
|
||||
}
|
||||
super._onDropActor(event)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async _onDropItem(event, dragData) {
|
||||
let data = event.dataTransfer.getData('text/plain')
|
||||
let dataItem = JSON.parse(data)
|
||||
let item = fromUuidSync(dataItem.uuid)
|
||||
if (item.pack) {
|
||||
item = await MournbladeCYD2Utility.searchItem(item)
|
||||
}
|
||||
if ( __ALLOWED_ITEM_CELLULE[item.type]) {
|
||||
super._onDropItem(event, dragData)
|
||||
return
|
||||
}
|
||||
ui.notification.info("Ce type d'item n'est pas autorisé sur une Cellule.")
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/** @override */
|
||||
setPosition(options = {}) {
|
||||
const position = super.setPosition(options);
|
||||
const sheetBody = this.element.find(".sheet-body");
|
||||
const bodyHeight = position.height - 192;
|
||||
sheetBody.css("height", bodyHeight);
|
||||
return position;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -121,7 +121,6 @@ export const MOURNBLADECYD2_CONFIG = {
|
||||
],
|
||||
optionsTypeTalent: [
|
||||
{ key: "personnage", label: "Personnage" },
|
||||
{ key: "cellule", label: "Cellule" },
|
||||
{ key: "traitespece", label: "Trait d'espèce" }
|
||||
],
|
||||
optionsUseTalent: [
|
||||
|
||||
@@ -12,7 +12,6 @@ import { MournbladeCYD2Actor } from "./mournblade-cyd2-actor.js";
|
||||
import { MournbladeCYD2ItemSheet } from "./mournblade-cyd2-item-sheet.js";
|
||||
import { MournbladeCYD2ActorSheet } from "./mournblade-cyd2-actor-sheet.js";
|
||||
import { MournbladeCYD2CreatureSheet } from "./mournblade-cyd2-creature-sheet.js";
|
||||
import { MournbladeCYD2CelluleSheet } from "./mournblade-cyd2-cellule-sheet.js";
|
||||
import { MournbladeCYD2Utility } from "./mournblade-cyd2-utility.js";
|
||||
import { MournbladeCYD2Combat } from "./mournblade-cyd2-combat.js";
|
||||
import { MournbladeCYD2Item } from "./mournblade-cyd2-item.js";
|
||||
@@ -60,7 +59,6 @@ Hooks.once("init", async function () {
|
||||
foundry.documents.collections.Actors.unregisterSheet("core", foundry.appv1.sheets.ActorSheet);
|
||||
foundry.documents.collections.Actors.registerSheet("fvtt-mournblade-cyd2", MournbladeCYD2ActorSheet, { types: ["personnage"], makeDefault: true })
|
||||
foundry.documents.collections.Actors.registerSheet("fvtt-mournblade-cyd2", MournbladeCYD2CreatureSheet, { types: ["creature"], makeDefault: true })
|
||||
foundry.documents.collections.Actors.registerSheet("fvtt-mournblade-cyd2", MournbladeCYD2CelluleSheet, { types: ["cellule"], makeDefault: true });
|
||||
|
||||
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
|
||||
foundry.documents.collections.Items.registerSheet("fvtt-mournblade-cyd2", MournbladeCYD2ItemSheet, { makeDefault: true })
|
||||
|
||||
@@ -882,20 +882,4 @@ export class MournbladeCYD2Utility {
|
||||
d.render(true);
|
||||
}
|
||||
|
||||
/************************************************************************************/
|
||||
static async __create_talents_table() {
|
||||
let compName = "fvtt-mournblade-cyd2.talents-cellule"
|
||||
const compData = await MournbladeCYD2Utility.loadCompendium(compName)
|
||||
let talents = compData.map(i => i.toObject())
|
||||
|
||||
let htmlTab = "<table border='1'><tbody>";
|
||||
for (let entryData of talents) {
|
||||
console.log(entryData)
|
||||
htmlTab += `<tr><td>@UUID[Compendium.${compName}.${entryData._id}]{${entryData.name}}</td>`
|
||||
htmlTab += `<td>${entryData.system.description}</td>`;
|
||||
htmlTab += "</tr>\n";
|
||||
}
|
||||
htmlTab += "</table>";
|
||||
await JournalEntry.create({ name: 'Liste des Talents de Cellule', content: htmlTab });
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000337
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.589363 7fe8067fc6c0 Recovering log #335
|
||||
2025/10/26-08:27:32.600405 7fe8067fc6c0 Delete type=3 #333
|
||||
2025/10/26-08:27:32.600472 7fe8067fc6c0 Delete type=0 #335
|
||||
2025/10/26-11:38:42.325088 7fe8057fa6c0 Recovering log #351
|
||||
2025/10/26-11:38:42.335319 7fe8057fa6c0 Delete type=3 #349
|
||||
2025/10/26-11:38:42.335396 7fe8057fa6c0 Delete type=0 #351
|
||||
2025/10/26-11:41:04.495246 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.495269 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.501616 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.501932 7fe804ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.501952 7fe804ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/10/26-00:43:48.182974 7fe806ffd6c0 Recovering log #331
|
||||
2025/10/26-00:43:48.193649 7fe806ffd6c0 Delete type=3 #329
|
||||
2025/10/26-00:43:48.193720 7fe806ffd6c0 Delete type=0 #331
|
||||
2025/10/26-00:50:38.091073 7fe804ff96c0 Level-0 table #336: started
|
||||
2025/10/26-00:50:38.091107 7fe804ff96c0 Level-0 table #336: 0 bytes OK
|
||||
2025/10/26-00:50:38.097587 7fe804ff96c0 Delete type=0 #334
|
||||
2025/10/26-00:50:38.104125 7fe804ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.114236 7fe804ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.119158 7fe805ffb6c0 Recovering log #347
|
||||
2025/10/26-11:16:26.129736 7fe805ffb6c0 Delete type=3 #345
|
||||
2025/10/26-11:16:26.129806 7fe805ffb6c0 Delete type=0 #347
|
||||
2025/10/26-11:38:38.895504 7fe804ff96c0 Level-0 table #352: started
|
||||
2025/10/26-11:38:38.895539 7fe804ff96c0 Level-0 table #352: 0 bytes OK
|
||||
2025/10/26-11:38:38.901860 7fe804ff96c0 Delete type=0 #350
|
||||
2025/10/26-11:38:38.902054 7fe804ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.934866 7fe804ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/armes/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.487484 7fe8067fc6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.497257 7fe8067fc6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.497321 7fe8067fc6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.232974 7fe8067fc6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.244289 7fe8067fc6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.244339 7fe8067fc6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.447880 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.447917 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.454486 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.475500 7fe804ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.475550 7fe804ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.082340 7fe8057fa6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.092212 7fe8057fa6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.092287 7fe8057fa6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:38.029897 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:38.029919 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.035762 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.048544 7fe804ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.048596 7fe804ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.031036 7fe806ffd6c0 Recovering log #346
|
||||
2025/10/26-11:16:26.041691 7fe806ffd6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:26.041762 7fe806ffd6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.792449 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.795923 7fe804ff96c0 Level-0 table #351: 14459 bytes OK
|
||||
2025/10/26-11:38:38.802482 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.823009 7fe804ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.833286 7fe804ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at '!items!wxrzP3NyiHiYnAMJ' @ 294 : 1
|
||||
2025/10/26-11:38:38.833297 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.837396 7fe804ff96c0 Generated table #352@1: 49 keys, 14459 bytes
|
||||
2025/10/26-11:38:38.837426 7fe804ff96c0 Compacted 1@1 + 1@2 files => 14459 bytes
|
||||
2025/10/26-11:38:38.844036 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.844160 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.844308 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.865571 7fe804ff96c0 Manual compaction at level-1 from '!items!wxrzP3NyiHiYnAMJ' @ 294 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/armes/MANIFEST-000353
Normal file
BIN
packs/competences-creatures/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.463219 7fe805ffb6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.472751 7fe805ffb6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.472808 7fe805ffb6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.208527 7fe805ffb6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.218414 7fe805ffb6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.218484 7fe805ffb6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.433987 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.434013 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.441418 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.447750 7fe804ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.447777 7fe804ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.058803 7fe806ffd6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.068066 7fe806ffd6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.068110 7fe806ffd6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:38.004403 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:38.004426 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.010395 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.023828 7fe804ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.023869 7fe804ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.005938 7fe8057fa6c0 Recovering log #346
|
||||
2025/10/26-11:16:26.016570 7fe8057fa6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:26.016642 7fe8057fa6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.708645 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.711905 7fe804ff96c0 Level-0 table #351: 7126 bytes OK
|
||||
2025/10/26-11:38:38.718774 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.740670 7fe804ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.740708 7fe804ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at '!items!tFU5yISK6spdNWco' @ 48 : 1
|
||||
2025/10/26-11:38:38.740715 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.744025 7fe804ff96c0 Generated table #352@1: 8 keys, 7126 bytes
|
||||
2025/10/26-11:38:38.744035 7fe804ff96c0 Compacted 1@1 + 1@2 files => 7126 bytes
|
||||
2025/10/26-11:38:38.750296 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.750402 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.750516 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.782239 7fe804ff96c0 Manual compaction at level-1 from '!items!tFU5yISK6spdNWco' @ 48 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/competences-creatures/MANIFEST-000353
Normal file
BIN
packs/competences/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.438564 7fe806ffd6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.448280 7fe806ffd6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.448338 7fe806ffd6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.183271 7fe8057fa6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.192790 7fe8057fa6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.192844 7fe8057fa6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.420939 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.420997 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.427654 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.447731 7fe804ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.447789 7fe804ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.027879 7fe805ffb6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.037843 7fe805ffb6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.037907 7fe805ffb6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:37.998468 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:37.998510 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.004321 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.023815 7fe804ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.023850 7fe804ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:25.980525 7fe805ffb6c0 Recovering log #346
|
||||
2025/10/26-11:16:25.990581 7fe805ffb6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:25.990652 7fe805ffb6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.729487 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.733516 7fe804ff96c0 Level-0 table #351: 16810 bytes OK
|
||||
2025/10/26-11:38:38.740534 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.740696 7fe804ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.772872 7fe804ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at '!items!yI1zY5k8mAdx9wHK' @ 90 : 1
|
||||
2025/10/26-11:38:38.772879 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.776083 7fe804ff96c0 Generated table #352@1: 15 keys, 16810 bytes
|
||||
2025/10/26-11:38:38.776098 7fe804ff96c0 Compacted 1@1 + 1@2 files => 16810 bytes
|
||||
2025/10/26-11:38:38.782013 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.782084 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.782174 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.782269 7fe804ff96c0 Manual compaction at level-1 from '!items!yI1zY5k8mAdx9wHK' @ 90 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/competences/MANIFEST-000353
Normal file
BIN
packs/equipement/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.511456 7fe806ffd6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.522106 7fe806ffd6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.522163 7fe806ffd6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.259855 7fe806ffd6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.270163 7fe806ffd6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.270216 7fe806ffd6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.468180 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.468227 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.475366 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.475533 7fe804ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.475567 7fe804ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.106637 7fe8067fc6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.116372 7fe8067fc6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.116424 7fe8067fc6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:38.035832 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:38.035856 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.042472 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.048554 7fe804ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.048588 7fe804ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.056392 7fe805ffb6c0 Recovering log #346
|
||||
2025/10/26-11:16:26.066232 7fe805ffb6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:26.066291 7fe805ffb6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.782346 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.786282 7fe804ff96c0 Level-0 table #351: 31906 bytes OK
|
||||
2025/10/26-11:38:38.792311 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.822993 7fe804ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.823050 7fe804ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at '!items!zYx0Ak2y1LNTcKlO' @ 906 : 1
|
||||
2025/10/26-11:38:38.823056 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.826797 7fe804ff96c0 Generated table #352@1: 151 keys, 31906 bytes
|
||||
2025/10/26-11:38:38.826816 7fe804ff96c0 Compacted 1@1 + 1@2 files => 31906 bytes
|
||||
2025/10/26-11:38:38.832912 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.833058 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.833200 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.865557 7fe804ff96c0 Manual compaction at level-1 from '!items!zYx0Ak2y1LNTcKlO' @ 906 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/equipement/MANIFEST-000353
Normal file
BIN
packs/historiques/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.475018 7fe806ffd6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.485011 7fe806ffd6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.485100 7fe806ffd6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.221258 7fe806ffd6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.230792 7fe806ffd6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.230851 7fe806ffd6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.427782 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.427812 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.433858 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.447742 7fe804ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.447782 7fe804ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.070161 7fe805ffb6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.080094 7fe805ffb6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.080181 7fe805ffb6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:38.017018 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:38.017045 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.023650 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.023844 7fe804ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.023863 7fe804ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.018970 7fe805ffb6c0 Recovering log #346
|
||||
2025/10/26-11:16:26.028588 7fe805ffb6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:26.028652 7fe805ffb6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.697991 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.702236 7fe804ff96c0 Level-0 table #351: 20348 bytes OK
|
||||
2025/10/26-11:38:38.708506 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.740657 7fe804ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.750608 7fe804ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at '!items!z1HtkvazCGHut7cz' @ 288 : 1
|
||||
2025/10/26-11:38:38.750618 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.755250 7fe804ff96c0 Generated table #352@1: 48 keys, 20348 bytes
|
||||
2025/10/26-11:38:38.755268 7fe804ff96c0 Compacted 1@1 + 1@2 files => 20348 bytes
|
||||
2025/10/26-11:38:38.761318 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.761375 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.761524 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.782249 7fe804ff96c0 Manual compaction at level-1 from '!items!z1HtkvazCGHut7cz' @ 288 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/historiques/MANIFEST-000353
Normal file
BIN
packs/mutations/000262.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000246
|
||||
MANIFEST-000263
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.450860 7fe8057fa6c0 Recovering log #244
|
||||
2025/10/26-08:27:32.460542 7fe8057fa6c0 Delete type=3 #242
|
||||
2025/10/26-08:27:32.460613 7fe8057fa6c0 Delete type=0 #244
|
||||
2025/10/26-11:38:42.195341 7fe8067fc6c0 Recovering log #260
|
||||
2025/10/26-11:38:42.206331 7fe8067fc6c0 Delete type=3 #258
|
||||
2025/10/26-11:38:42.206387 7fe8067fc6c0 Delete type=0 #260
|
||||
2025/10/26-11:41:04.441577 7fe804ff96c0 Level-0 table #266: started
|
||||
2025/10/26-11:41:04.441610 7fe804ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/10/26-11:41:04.447626 7fe804ff96c0 Delete type=0 #264
|
||||
2025/10/26-11:41:04.447757 7fe804ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.447771 7fe804ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.040126 7fe8067fc6c0 Recovering log #240
|
||||
2025/10/26-00:43:48.056153 7fe8067fc6c0 Delete type=3 #238
|
||||
2025/10/26-00:43:48.056216 7fe8067fc6c0 Delete type=0 #240
|
||||
2025/10/26-00:50:38.010479 7fe804ff96c0 Level-0 table #245: started
|
||||
2025/10/26-00:50:38.010501 7fe804ff96c0 Level-0 table #245: 0 bytes OK
|
||||
2025/10/26-00:50:38.016920 7fe804ff96c0 Delete type=0 #243
|
||||
2025/10/26-00:50:38.023837 7fe804ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.023856 7fe804ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:25.992694 7fe8067fc6c0 Recovering log #256
|
||||
2025/10/26-11:16:26.002875 7fe8067fc6c0 Delete type=3 #254
|
||||
2025/10/26-11:16:26.002931 7fe8067fc6c0 Delete type=0 #256
|
||||
2025/10/26-11:38:38.718910 7fe804ff96c0 Level-0 table #261: started
|
||||
2025/10/26-11:38:38.723103 7fe804ff96c0 Level-0 table #261: 58709 bytes OK
|
||||
2025/10/26-11:38:38.729322 7fe804ff96c0 Delete type=0 #259
|
||||
2025/10/26-11:38:38.740681 7fe804ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.761625 7fe804ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at '!items!zttESycGKltfwCzJ' @ 970 : 1
|
||||
2025/10/26-11:38:38.761642 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.765873 7fe804ff96c0 Generated table #262@1: 167 keys, 60029 bytes
|
||||
2025/10/26-11:38:38.765886 7fe804ff96c0 Compacted 1@1 + 1@2 files => 60029 bytes
|
||||
2025/10/26-11:38:38.772614 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.772696 7fe804ff96c0 Delete type=2 #185
|
||||
2025/10/26-11:38:38.772795 7fe804ff96c0 Delete type=2 #261
|
||||
2025/10/26-11:38:38.782258 7fe804ff96c0 Manual compaction at level-1 from '!items!zttESycGKltfwCzJ' @ 970 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
BIN
packs/mutations/MANIFEST-000263
Normal file
BIN
packs/profils/000352.ldb
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000336
|
||||
MANIFEST-000353
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2025/10/26-08:27:32.524768 7fe8067fc6c0 Recovering log #334
|
||||
2025/10/26-08:27:32.534933 7fe8067fc6c0 Delete type=3 #332
|
||||
2025/10/26-08:27:32.534997 7fe8067fc6c0 Delete type=0 #334
|
||||
2025/10/26-11:38:42.272869 7fe805ffb6c0 Recovering log #350
|
||||
2025/10/26-11:38:42.283588 7fe805ffb6c0 Delete type=3 #348
|
||||
2025/10/26-11:38:42.283643 7fe805ffb6c0 Delete type=0 #350
|
||||
2025/10/26-11:41:04.461870 7fe804ff96c0 Level-0 table #356: started
|
||||
2025/10/26-11:41:04.461889 7fe804ff96c0 Level-0 table #356: 0 bytes OK
|
||||
2025/10/26-11:41:04.467992 7fe804ff96c0 Delete type=0 #354
|
||||
2025/10/26-11:41:04.475524 7fe804ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:04.475559 7fe804ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,15 @@
|
||||
2025/10/26-00:43:48.118628 7fe805ffb6c0 Recovering log #330
|
||||
2025/10/26-00:43:48.128031 7fe805ffb6c0 Delete type=3 #328
|
||||
2025/10/26-00:43:48.128084 7fe805ffb6c0 Delete type=0 #330
|
||||
2025/10/26-00:50:38.024015 7fe804ff96c0 Level-0 table #335: started
|
||||
2025/10/26-00:50:38.024036 7fe804ff96c0 Level-0 table #335: 0 bytes OK
|
||||
2025/10/26-00:50:38.029822 7fe804ff96c0 Delete type=0 #333
|
||||
2025/10/26-00:50:38.048532 7fe804ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-00:50:38.048572 7fe804ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:16:26.068541 7fe806ffd6c0 Recovering log #346
|
||||
2025/10/26-11:16:26.078215 7fe806ffd6c0 Delete type=3 #344
|
||||
2025/10/26-11:16:26.078269 7fe806ffd6c0 Delete type=0 #346
|
||||
2025/10/26-11:38:38.802648 7fe804ff96c0 Level-0 table #351: started
|
||||
2025/10/26-11:38:38.806378 7fe804ff96c0 Level-0 table #351: 30193 bytes OK
|
||||
2025/10/26-11:38:38.812701 7fe804ff96c0 Delete type=0 #349
|
||||
2025/10/26-11:38:38.823022 7fe804ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:38:38.844399 7fe804ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at '!items!tFQqcxmkS3MT6ASE' @ 90 : 1
|
||||
2025/10/26-11:38:38.844409 7fe804ff96c0 Compacting 1@1 + 1@2 files
|
||||
2025/10/26-11:38:38.848050 7fe804ff96c0 Generated table #352@1: 15 keys, 30193 bytes
|
||||
2025/10/26-11:38:38.848100 7fe804ff96c0 Compacted 1@1 + 1@2 files => 30193 bytes
|
||||
2025/10/26-11:38:38.854857 7fe804ff96c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/10/26-11:38:38.855032 7fe804ff96c0 Delete type=2 #275
|
||||
2025/10/26-11:38:38.855211 7fe804ff96c0 Delete type=2 #351
|
||||
2025/10/26-11:38:38.865584 7fe804ff96c0 Manual compaction at level-1 from '!items!tFQqcxmkS3MT6ASE' @ 90 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
||||