5 Commits
13.1.0 ... main

Author SHA1 Message Date
29213f11ed Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 47s
2026-04-01 22:51:25 +02:00
21f91a52e6 Foundryv14 migration 2026-04-01 22:51:12 +02:00
a04032e002 Correction sur fenêtre d'attaq
All checks were successful
Release Creation / build (release) Successful in 3m15s
2026-03-27 22:47:36 +01:00
896fa512b5 Corrections sur attaque, equipement et compétences à 7 2026-03-27 14:26:41 +01:00
e7504d0ecb Update gitignore 2026-03-27 13:03:36 +01:00
174 changed files with 690 additions and 659 deletions

View File

@@ -60,4 +60,4 @@ jobs:
manifest: 'https://www.uberwald.me/gitea/public/fvtt-yggdrasill/releases/download/latest/system.json'
notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-yggdrasill.zip'
compatibility-minimum: '13'
compatibility-verified: '13'
compatibility-verified: '14'

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.history/
node_modules/
packs/_source/
.github/

View File

@@ -2682,3 +2682,19 @@ ul, li {
opacity: 0.9;
}
}
/* Fix: item-controls toujours visibles dans le tab combat (armures, boucliers) */
.fvtt-yggdrasill .sheet-body[data-tab="combat"] .item.flexrow {
flex-wrap: nowrap;
align-items: center;
.item-controls {
display: flex !important;
visibility: visible !important;
opacity: 1 !important;
position: static !important;
flex: 0 0 auto;
align-items: center;
gap: 0.25rem;
}
}

View File

@@ -75,7 +75,7 @@ export default class YggdrasillPersonnageSheet extends YggdrasillActorSheet {
}
context.optionsBase = {}
for (let i = 0; i <= 5; i++) {
for (let i = 0; i <= 10; i++) {
context.optionsBase[i] = i.toString()
}

View File

@@ -94,6 +94,18 @@ export class YggdrasillRollDialog {
})
}
// Pour armes : mettre à jour l'effet affiché quand le type d'attaque change
if (rollData.mode === "armecc" || rollData.mode === "armetir" || rollData.mode === "armedist") {
$("#typeAttack").on("change", () => {
rollData.attackDef = rollData.attackDef || {}
rollData.attackDef.typeAttack = $("#typeAttack").val()
this._updateAttackData(rollData, actor)
$("#attackDescr").text(rollData.attackData.description || "")
$("#caracName").text(`${rollData.attackData.categName || ""} / ${rollData.attackData.caracName || ""}`)
$("#malus").text(rollData.attackData.malus ?? 0)
})
}
// Pour Sejdr: recalculer srTotal quand DM change
if (rollData.mode === "sejdr") {
$("#bonusdefense").on("change", () => {
@@ -223,19 +235,20 @@ export class YggdrasillRollDialog {
* @private
*/
static _updateAttackData(rollData, actor) {
const config = game.system.yggdrasill.config
const attackType = rollData.attackDef.typeAttack
const attackMode = config.attackMode?.[attackType]
if (attackMode) {
rollData.attackData = rollData.attackData || {}
rollData.attackData.categName = attackMode.categName
rollData.attackData.caracName = attackMode.caracName
rollData.attackData.malus = this._computeValue(attackMode.malus, actor)
rollData.attackData.bonusdegats = this._computeValue(attackMode.bonusdegats, actor)
rollData.attackData.protection = this._computeValue(attackMode.protection, actor)
rollData.attackData.label = attackMode.label
rollData.attackData.description = attackMode.description
let attackData
if (rollData.mode === "armecc") {
attackData = actor.getAttaqueData(attackType)
} else {
attackData = actor.getTirData(attackType)
}
if (attackData) {
rollData.attackDef = { ...rollData.attackDef, ...attackData }
rollData.attackData = { ...rollData.attackDef }
// Mettre à jour la caractéristique utilisée pour le jet (nbDice)
rollData.selectedCarac = attackData.carac
}
}

View File

@@ -7,7 +7,7 @@ export default class ArmureDataModel extends foundry.abstract.TypeDataModel {
return {
categorie: new fields.StringField({ initial: "" }),
equipe: new fields.BooleanField({ initial: false }),
protection: new fields.StringField({ initial: "" }),
protection: new fields.NumberField({ initial: 0, integer: true }),
enc: new fields.NumberField({ initial: 0, integer: true }),
valeur: new fields.NumberField({ initial: 0, integer: true }),
description: new fields.HTMLField({ initial: "" })

View File

@@ -8,8 +8,10 @@ const statusEffects = [
{ yggdrasill: true, id: 'blesse', label: 'Blessé', icon: 'icons/svg/blood.svg' },
{ yggdrasill: true, id: 'meurtri', label: 'Meurtri', icon: 'icons/svg/falling.svg' }
]
const armeCategorieToCompetence = { "lutte": "Lutte", "improvisee": "Armes Improvisées", "courte":"Armes courtes", "longue": "Armes longues", "deuxmains": "Armes à deux mains",
"hast": "Armes d'Hast", "tir": "Armes de tir", "jet": "Lancer" }
const armeCategorieToCompetence = {
"lutte": "Lutte", "improvisee": "Armes Improvisées", "courte": "Armes courtes", "longue": "Armes longues", "deuxmains": "Armes à deux mains",
"hast": "Armes d'Hast", "tir": "Armes de tir", "jet": "Lancer"
}
const attackMode = {
"classique": {
"categName": "corps",
@@ -166,6 +168,9 @@ export class YggdrasillActor extends Actor {
/* -------------------------------------------- */
prepareBaseData() {
if (game.release.generation >= 14) {
super.prepareBaseData();
}
if (this.type == "personnage") {
this.computeCaracSecondaire();
}
@@ -597,18 +602,19 @@ export class YggdrasillActor extends Actor {
let attackData = foundry.utils.duplicate(attackMode[mode]);
if (attackData) {
attackData.mode = mode;
attackData.carac = foundry.utils.duplicate(this.system.carac[attackData.categName].carac[attackData.caracName]);
const categ = this.system.carac[attackData.categName];
attackData.carac = foundry.utils.duplicate(categ?.carac[attackData.caracName] ?? {});
if (attackData.malus != 0) {
let malusTab = attackData.malus.split(';');
attackData.malus = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.malus = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
if (attackData.protection != 0) {
let malusTab = attackData.protection.split(';');
attackData.protection = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.protection = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
if (attackData.bonusdegats != 0) {
let malusTab = attackData.bonusdegats.split(';');
attackData.bonusdegats = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.bonusdegats = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
}
return attackData;
@@ -619,18 +625,19 @@ export class YggdrasillActor extends Actor {
let attackData = foundry.utils.duplicate(tirMode[mode]);
if (attackData) {
attackData.mode = mode;
attackData.carac = foundry.utils.duplicate(this.system.carac[attackData.categName].carac[attackData.caracName]);
const categ = this.system.carac[attackData.categName];
attackData.carac = foundry.utils.duplicate(categ?.carac[attackData.caracName] ?? {});
if (attackData.malus != 0) {
let malusTab = attackData.malus.split(';');
attackData.malus = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.malus = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
if (attackData.protection != 0) {
let malusTab = attackData.protection.split(';');
attackData.protection = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.protection = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
if (attackData.bonusdegats != 0) {
let malusTab = attackData.bonusdegats.split(';');
attackData.bonusdegats = this.system.carac[attackData.categName].carac[malusTab[0]].value * Number(malusTab[1])
attackData.bonusdegats = (categ?.carac[malusTab[0]]?.value ?? 0) * Number(malusTab[1]);
}
}
return attackData;
@@ -730,13 +737,13 @@ export class YggdrasillActor extends Actor {
for (let item of this.items) {
if (item.type == "equipement" || item.type == "armecc"
|| item.type == "armedist" || item.type == "armure" || item.type == "monnaie" || item.type == "bouclier") {
encTotal += (item.system.enc * item.system.quantite);
encTotal += (item.system.enc * (item.system.quantite || 1));
}
}
for (let item of this.items) {
if (item.type == "bouclier" && item.system.equipe) {
encTotal -= (item.system.enc * item.system.quantite);
encTotal += (item.system.enccomb * item.system.quantite);
encTotal -= (item.system.enc * (item.system.quantite || 1));
encTotal += (item.system.enccomb * (item.system.quantite || 1));
}
}
return encTotal;

View File

@@ -6,7 +6,7 @@ export class YggdrasillCombat extends Combat {
/* -------------------------------------------- */
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
ids = typeof ids === "string" ? [ids] : ids;
const currentId = this.combatant._id;
const currentId = this.combatant?.id;
for (let cId = 0; cId < ids.length; cId++) {
const c = this.combatants.get(ids[cId]);
let initBonus = c.actor ? c.actor.getInitiativeScore() : 0;
@@ -17,7 +17,7 @@ export class YggdrasillCombat extends Combat {
}
if (roll.total <= 0) roll.total = 0;
//console.log("Compute init for", roll.total);
let id = c._id || c.id;
let id = c.id;
await this.updateEmbeddedDocuments("Combatant", [{ _id: id, initiative: roll.total }]);
// Send a chat message
@@ -25,9 +25,9 @@ export class YggdrasillCombat extends Combat {
let messageData = foundry.utils.mergeObject(
{
speaker: {
scene: canvas.scene._id,
actor: c.actor ? c.actor._id : null,
token: c.token._id,
scene: canvas.scene.id,
actor: c.actor ? c.actor.id : null,
token: c.token.id,
alias: c.token.name,
sound: CONFIG.sounds.dice,
},

View File

@@ -137,7 +137,7 @@ Hooks.once("ready", function () {
ui.notifications.info("Attention ! Vous n'est connecté à aucun personnage");
ChatMessage.create({
content: "<b>WARNING</b> Le joueur " + game.user.name + " n'est pas connecté à un personnage !",
user: game.user._id
user: game.user.id
});
}

View File

@@ -162,7 +162,7 @@ export class YggdrasillUtility {
/* -------------------------------------------- */
static async rollYggdrasill( rollData ) {
let sumDice = ( rollData.isEpuise | rollData.isMeurtri) ? 1 : 2;
let sumDice = ( rollData.isEpuise || rollData.isMeurtri) ? 1 : 2;
// Init stuff
let isCritical = false;
@@ -283,7 +283,7 @@ export class YggdrasillUtility {
/* -------------------------------------------- */
static getUsers(filter) {
return game.users.filter(filter).map(user => user.system._id);
return game.users.filter(filter).map(user => user.id);
}
/* -------------------------------------------- */
static getWhisperRecipients(rollMode, name) {

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.362261 7fd478fff6c0 Recovering log #51
2026/01/11-22:42:43.390767 7fd478fff6c0 Delete type=0 #51
2026/01/11-22:42:43.398607 7fd478fff6c0 Delete type=3 #49
2026/01/11-22:44:34.484930 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.484958 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.491990 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.498603 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.498641 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.686682 7fcfbebfe6c0 Delete type=3 #1
2026/04/01-22:51:01.547142 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.547164 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.554026 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.577068 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at '!items!x3aMYeKa73GxJ1Ge' @ 45 : 1
2026/04/01-22:51:01.577076 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.580113 7fcfbd3fb6c0 Generated table #65@0: 15 keys, 2327 bytes
2026/04/01-22:51:01.580125 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 2327 bytes
2026/04/01-22:51:01.586007 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.586098 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.606413 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!x3aMYeKa73GxJ1Ge' @ 45 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.324856 7fd4637fe6c0 Recovering log #47
2026/01/11-22:38:18.334440 7fd4637fe6c0 Delete type=3 #45
2026/01/11-22:38:18.334494 7fd4637fe6c0 Delete type=0 #47
2026/01/11-22:39:21.508921 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.508963 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.514976 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.515163 7fd4627fc6c0 Manual compaction at level-0 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.515223 7fd4627fc6c0 Manual compaction at level-1 from '!items!3VBHojfjdD504ibv' @ 72057594037927935 : 1 .. '!items!x3aMYeKa73GxJ1Ge' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.671549 7fcfbebfe6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.671646 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/armes/000059.log: OK
2026/04/01-22:41:42.671700 7fcfbebfe6c0 Table #40: 15 entries OK
2026/04/01-22:41:42.674961 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/armes; recovered 1 files; 2327 bytes. Some data may have been lost. ****

Binary file not shown.

BIN
packs/armes/MANIFEST-000061 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.415431 7fd4637fe6c0 Recovering log #51
2026/01/11-22:42:43.448752 7fd4637fe6c0 Delete type=0 #51
2026/01/11-22:42:43.448972 7fd4637fe6c0 Delete type=3 #49
2026/01/11-22:44:34.511453 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.511476 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.517400 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.523930 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.523965 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.704920 7fcfbf3ff6c0 Delete type=3 #1
2026/04/01-22:51:01.606510 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.606535 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.613032 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.632412 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at '!items!qUXBrstsh5Oo8FEx' @ 24 : 1
2026/04/01-22:51:01.632421 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.635699 7fcfbd3fb6c0 Generated table #65@0: 8 keys, 3197 bytes
2026/04/01-22:51:01.635720 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 3197 bytes
2026/04/01-22:51:01.641765 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.641877 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.672309 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!qUXBrstsh5Oo8FEx' @ 24 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.336786 7fd462ffd6c0 Recovering log #47
2026/01/11-22:38:18.346917 7fd462ffd6c0 Delete type=3 #45
2026/01/11-22:38:18.347006 7fd462ffd6c0 Delete type=0 #47
2026/01/11-22:39:21.528136 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.528192 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.534692 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.541091 7fd4627fc6c0 Manual compaction at level-0 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.541131 7fd4627fc6c0 Manual compaction at level-1 from '!items!4YGPuZ813BWQaNbq' @ 72057594037927935 : 1 .. '!items!qUXBrstsh5Oo8FEx' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.689771 7fcfbf3ff6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.689873 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/armures/000059.log: OK
2026/04/01-22:41:42.689938 7fcfbf3ff6c0 Table #40: 8 entries OK
2026/04/01-22:41:42.693096 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/armures; recovered 1 files; 3197 bytes. Some data may have been lost. ****

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.343711 7fd478fff6c0 Recovering log #51
2026/01/11-22:42:43.360165 7fd478fff6c0 Delete type=0 #51
2026/01/11-22:42:43.360231 7fd478fff6c0 Delete type=3 #49
2026/01/11-22:44:34.492077 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.492100 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.498484 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.498613 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.498635 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.668433 7fcfbdbfc6c0 Delete type=3 #1
2026/04/01-22:51:01.540998 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.541046 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.547060 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.566722 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at '!items!swTZ43FJRWkqjR75' @ 45 : 1
2026/04/01-22:51:01.566735 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.570029 7fcfbd3fb6c0 Generated table #65@0: 15 keys, 4373 bytes
2026/04/01-22:51:01.570048 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 4373 bytes
2026/04/01-22:51:01.576800 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.576950 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.606402 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!swTZ43FJRWkqjR75' @ 45 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.312395 7fd463fff6c0 Recovering log #47
2026/01/11-22:38:18.322989 7fd463fff6c0 Delete type=3 #45
2026/01/11-22:38:18.323061 7fd463fff6c0 Delete type=0 #47
2026/01/11-22:39:21.501777 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.501807 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.508771 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.515149 7fd4627fc6c0 Manual compaction at level-0 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.515211 7fd4627fc6c0 Manual compaction at level-1 from '!items!4rM9IvDuijsjbAhI' @ 72057594037927935 : 1 .. '!items!swTZ43FJRWkqjR75' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.652980 7fcfbdbfc6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.653141 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/blessures/000059.log: OK
2026/04/01-22:41:42.653213 7fcfbdbfc6c0 Table #40: 15 entries OK
2026/04/01-22:41:42.656556 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/blessures; recovered 1 files; 4373 bytes. Some data may have been lost. ****

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.240973 7fd463fff6c0 Recovering log #51
2026/01/11-22:42:43.255834 7fd463fff6c0 Delete type=0 #51
2026/01/11-22:42:43.255892 7fd463fff6c0 Delete type=3 #49
2026/01/11-22:44:34.459907 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.459930 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.466013 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.472607 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.472642 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.545198 7fcfbdbfc6c0 Delete type=3 #1
2026/04/01-22:51:01.489437 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.489459 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.495384 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.521152 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at '!items!ylqZMDyXujUlSorr' @ 90 : 1
2026/04/01-22:51:01.521160 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.524489 7fcfbd3fb6c0 Generated table #65@0: 30 keys, 18501 bytes
2026/04/01-22:51:01.524512 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 18501 bytes
2026/04/01-22:51:01.531301 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.531388 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.540868 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!ylqZMDyXujUlSorr' @ 90 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.238976 7fd4637fe6c0 Recovering log #47
2026/01/11-22:38:18.249505 7fd4637fe6c0 Delete type=3 #45
2026/01/11-22:38:18.249563 7fd4637fe6c0 Delete type=0 #47
2026/01/11-22:39:21.489412 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.489449 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.495431 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.515115 7fd4627fc6c0 Manual compaction at level-0 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.515177 7fd4627fc6c0 Manual compaction at level-1 from '!items!26CQEICWZs8Gw4Xi' @ 72057594037927935 : 1 .. '!items!ylqZMDyXujUlSorr' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.426252 7fcfbdbfc6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.426381 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-generales/000059.log: OK
2026/04/01-22:41:42.426460 7fcfbdbfc6c0 Table #40: 30 entries OK
2026/04/01-22:41:42.430037 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-generales; recovered 1 files; 18501 bytes. Some data may have been lost. ****

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.275614 7fd478fff6c0 Recovering log #51
2026/01/11-22:42:43.291244 7fd478fff6c0 Delete type=0 #51
2026/01/11-22:42:43.291308 7fd478fff6c0 Delete type=3 #49
2026/01/11-22:44:34.447688 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.447757 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.453835 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.472578 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.472629 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.586177 7fcfbf3ff6c0 Delete type=3 #1
2026/04/01-22:51:01.495499 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.495526 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.501507 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.531476 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at '!items!mIBiTKqfqiiepeyz' @ 9 : 1
2026/04/01-22:51:01.531484 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.534603 7fcfbd3fb6c0 Generated table #65@0: 3 keys, 1604 bytes
2026/04/01-22:51:01.534642 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 1604 bytes
2026/04/01-22:51:01.540569 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.540687 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.540878 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!mIBiTKqfqiiepeyz' @ 9 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.263695 7fd462ffd6c0 Recovering log #47
2026/01/11-22:38:18.273321 7fd462ffd6c0 Delete type=3 #45
2026/01/11-22:38:18.273380 7fd462ffd6c0 Delete type=0 #47
2026/01/11-22:39:21.475468 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.475500 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.482505 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.489246 7fd4627fc6c0 Manual compaction at level-0 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.489296 7fd4627fc6c0 Manual compaction at level-1 from '!items!RAhkadJOfEnVBLpy' @ 72057594037927935 : 1 .. '!items!mIBiTKqfqiiepeyz' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.569732 7fcfbf3ff6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.569913 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-magiques/000059.log: OK
2026/04/01-22:41:42.569980 7fcfbf3ff6c0 Table #40: 3 entries OK
2026/04/01-22:41:42.573380 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-magiques; recovered 1 files; 1604 bytes. Some data may have been lost. ****

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.257983 7fd4637fe6c0 Recovering log #51
2026/01/11-22:42:43.273297 7fd4637fe6c0 Delete type=0 #51
2026/01/11-22:42:43.273355 7fd4637fe6c0 Delete type=3 #49
2026/01/11-22:44:34.466106 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.466129 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.472447 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.472618 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.472649 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.566216 7fcfbf3ff6c0 Delete type=3 #1
2026/04/01-22:51:01.476136 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.476206 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.482761 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.501617 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at '!items!mJSWXawEGARKlNja' @ 24 : 1
2026/04/01-22:51:01.501625 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.505026 7fcfbd3fb6c0 Generated table #65@0: 8 keys, 3895 bytes
2026/04/01-22:51:01.505047 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 3895 bytes
2026/04/01-22:51:01.511271 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.511394 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.540842 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!mJSWXawEGARKlNja' @ 24 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.251489 7fd478fff6c0 Recovering log #47
2026/01/11-22:38:18.261390 7fd478fff6c0 Delete type=3 #45
2026/01/11-22:38:18.261445 7fd478fff6c0 Delete type=0 #47
2026/01/11-22:39:21.463016 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.463081 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.469148 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.489211 7fd4627fc6c0 Manual compaction at level-0 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.489274 7fd4627fc6c0 Manual compaction at level-1 from '!items!6IqVsJsYPrbxUJZX' @ 72057594037927935 : 1 .. '!items!mJSWXawEGARKlNja' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.548590 7fcfbf3ff6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.548732 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-martiales/000059.log: OK
2026/04/01-22:41:42.548798 7fcfbf3ff6c0 Table #40: 8 entries OK
2026/04/01-22:41:42.552583 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/competences-martiales; recovered 1 files; 3895 bytes. Some data may have been lost. ****

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.309910 7fd4637fe6c0 Recovering log #51
2026/01/11-22:42:43.324839 7fd4637fe6c0 Delete type=0 #51
2026/01/11-22:42:43.324904 7fd4637fe6c0 Delete type=3 #49
2026/01/11-22:44:34.472762 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.472789 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.478766 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.498581 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.498620 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.628340 7fcfbf3ff6c0 Delete type=3 #1
2026/04/01-22:51:01.554115 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.554138 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.560348 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.586192 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at '!items!wnIXKyfqCWT0r4iT' @ 90 : 1
2026/04/01-22:51:01.586200 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.589427 7fcfbd3fb6c0 Generated table #65@0: 30 keys, 8204 bytes
2026/04/01-22:51:01.589447 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 8204 bytes
2026/04/01-22:51:01.596772 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.596868 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.606424 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!wnIXKyfqCWT0r4iT' @ 90 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.288420 7fd478fff6c0 Recovering log #47
2026/01/11-22:38:18.298405 7fd478fff6c0 Delete type=3 #45
2026/01/11-22:38:18.298472 7fd478fff6c0 Delete type=0 #47
2026/01/11-22:39:21.469291 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.469324 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.475328 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.489231 7fd4627fc6c0 Manual compaction at level-0 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.489285 7fd4627fc6c0 Manual compaction at level-1 from '!items!1EVz9C1fDUBafPHj' @ 72057594037927935 : 1 .. '!items!wnIXKyfqCWT0r4iT' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.611200 7fcfbf3ff6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.611350 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/dons/000059.log: OK
2026/04/01-22:41:42.611419 7fcfbf3ff6c0 Table #40: 30 entries OK
2026/04/01-22:41:42.615200 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/dons; recovered 1 files; 8204 bytes. Some data may have been lost. ****

Binary file not shown.

BIN
packs/dons/MANIFEST-000061 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:44.393696 7fd463fff6c0 Recovering log #51
2026/01/11-22:42:44.416426 7fd463fff6c0 Delete type=0 #51
2026/01/11-22:42:44.416529 7fd463fff6c0 Delete type=3 #49
2026/01/11-22:44:34.564109 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.564140 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.570255 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.577526 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.577564 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.908621 7fcfbebfe6c0 Delete type=3 #1
2026/04/01-22:51:01.754431 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.754458 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.760579 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.787168 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at '!items!zC0kHoqZ9lkQFgI6' @ 423 : 1
2026/04/01-22:51:01.787176 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.791001 7fcfbd3fb6c0 Generated table #65@0: 141 keys, 22361 bytes
2026/04/01-22:51:01.791027 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 22361 bytes
2026/04/01-22:51:01.797048 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.797140 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.807669 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!zC0kHoqZ9lkQFgI6' @ 423 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.479236 7fd463fff6c0 Recovering log #47
2026/01/11-22:38:18.489180 7fd463fff6c0 Delete type=3 #45
2026/01/11-22:38:18.489248 7fd463fff6c0 Delete type=0 #47
2026/01/11-22:39:21.573677 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.573703 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.580176 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.593747 7fd4627fc6c0 Manual compaction at level-0 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.593789 7fd4627fc6c0 Manual compaction at level-1 from '!items!0tELaPFZgkeTUeVn' @ 72057594037927935 : 1 .. '!items!zC0kHoqZ9lkQFgI6' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.893935 7fcfbebfe6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.894040 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/equipement/000059.log: OK
2026/04/01-22:41:42.894131 7fcfbebfe6c0 Table #40: 141 entries OK
2026/04/01-22:41:42.897218 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/equipement; recovered 1 files; 22361 bytes. Some data may have been lost. ****

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:43.326689 7fd463fff6c0 Recovering log #51
2026/01/11-22:42:43.341778 7fd463fff6c0 Delete type=0 #51
2026/01/11-22:42:43.341831 7fd463fff6c0 Delete type=3 #49
2026/01/11-22:44:34.478868 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.478897 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.484840 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.498594 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.498628 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.648175 7fcfbebfe6c0 Delete type=3 #1
2026/04/01-22:51:01.560449 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.560473 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.566555 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.597000 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at '!items!xf1RAsIzBXQgbLq2' @ 78 : 1
2026/04/01-22:51:01.597010 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.600283 7fcfbd3fb6c0 Generated table #65@0: 26 keys, 7080 bytes
2026/04/01-22:51:01.600310 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 7080 bytes
2026/04/01-22:51:01.606229 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.606307 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.606433 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!xf1RAsIzBXQgbLq2' @ 78 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.300419 7fd462ffd6c0 Recovering log #47
2026/01/11-22:38:18.310203 7fd462ffd6c0 Delete type=3 #45
2026/01/11-22:38:18.310271 7fd462ffd6c0 Delete type=0 #47
2026/01/11-22:39:21.495581 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.495613 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.501662 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.515134 7fd4627fc6c0 Manual compaction at level-0 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.515199 7fd4627fc6c0 Manual compaction at level-1 from '!items!0EoL2kcGdYiYS8lY' @ 72057594037927935 : 1 .. '!items!xf1RAsIzBXQgbLq2' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.631882 7fcfbebfe6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.632028 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/faiblesses/000059.log: OK
2026/04/01-22:41:42.632100 7fcfbebfe6c0 Table #40: 26 entries OK
2026/04/01-22:41:42.635690 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/faiblesses; recovered 1 files; 7080 bytes. Some data may have been lost. ****

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:44.148711 7fd478fff6c0 Recovering log #51
2026/01/11-22:42:44.328978 7fd478fff6c0 Delete type=0 #51
2026/01/11-22:42:44.333280 7fd478fff6c0 Delete type=3 #49
2026/01/11-22:44:34.550589 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.550618 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.557017 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.577498 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.577548 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.891187 7fcfbdbfc6c0 Delete type=3 #1
2026/04/01-22:51:01.747339 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.747364 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.754314 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.777888 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at '!items!xw2gPhCxDVpkJnxL' @ 15 : 1
2026/04/01-22:51:01.777903 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.780970 7fcfbd3fb6c0 Generated table #65@0: 5 keys, 1937 bytes
2026/04/01-22:51:01.780984 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 1937 bytes
2026/04/01-22:51:01.786986 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.787074 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.807656 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!xw2gPhCxDVpkJnxL' @ 15 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.466539 7fd478fff6c0 Recovering log #47
2026/01/11-22:38:18.476924 7fd478fff6c0 Delete type=3 #45
2026/01/11-22:38:18.476983 7fd478fff6c0 Delete type=0 #47
2026/01/11-22:39:21.567455 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.567481 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.573559 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.593729 7fd4627fc6c0 Manual compaction at level-0 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.593781 7fd4627fc6c0 Manual compaction at level-1 from '!items!7VeQIQHxvw233Jzt' @ 72057594037927935 : 1 .. '!items!xw2gPhCxDVpkJnxL' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.876048 7fcfbdbfc6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.876183 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/galdr-charme/000059.log: OK
2026/04/01-22:41:42.876243 7fcfbdbfc6c0 Table #40: 5 entries OK
2026/04/01-22:41:42.879462 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/galdr-charme; recovered 1 files; 1937 bytes. Some data may have been lost. ****

Binary file not shown.

Binary file not shown.

View File

View File

@@ -1 +1 @@
MANIFEST-000053
MANIFEST-000061

View File

@@ -1,8 +1,11 @@
2026/01/11-22:42:44.042534 7fd462ffd6c0 Recovering log #51
2026/01/11-22:42:44.138306 7fd462ffd6c0 Delete type=0 #51
2026/01/11-22:42:44.141863 7fd462ffd6c0 Delete type=3 #49
2026/01/11-22:44:34.557135 7fd4627fc6c0 Level-0 table #56: started
2026/01/11-22:44:34.557161 7fd4627fc6c0 Level-0 table #56: 0 bytes OK
2026/01/11-22:44:34.563981 7fd4627fc6c0 Delete type=0 #54
2026/01/11-22:44:34.577513 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2026/01/11-22:44:34.577556 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.873011 7fcfbf3ff6c0 Delete type=3 #1
2026/04/01-22:51:01.740863 7fcfbd3fb6c0 Level-0 table #64: started
2026/04/01-22:51:01.740885 7fcfbd3fb6c0 Level-0 table #64: 0 bytes OK
2026/04/01-22:51:01.747240 7fcfbd3fb6c0 Delete type=0 #62
2026/04/01-22:51:01.767200 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at '!items!sH7HaKggOEaBVzn3' @ 15 : 1
2026/04/01-22:51:01.767215 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
2026/04/01-22:51:01.770464 7fcfbd3fb6c0 Generated table #65@0: 5 keys, 3029 bytes
2026/04/01-22:51:01.770483 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 3029 bytes
2026/04/01-22:51:01.777680 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-22:51:01.777776 7fcfbd3fb6c0 Delete type=2 #40
2026/04/01-22:51:01.807641 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!sH7HaKggOEaBVzn3' @ 15 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/11-22:38:18.454793 7fd4637fe6c0 Recovering log #47
2026/01/11-22:38:18.464425 7fd4637fe6c0 Delete type=3 #45
2026/01/11-22:38:18.464476 7fd4637fe6c0 Delete type=0 #47
2026/01/11-22:39:21.580301 7fd4627fc6c0 Level-0 table #52: started
2026/01/11-22:39:21.580327 7fd4627fc6c0 Level-0 table #52: 0 bytes OK
2026/01/11-22:39:21.587371 7fd4627fc6c0 Delete type=0 #50
2026/01/11-22:39:21.593760 7fd4627fc6c0 Manual compaction at level-0 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2026/01/11-22:39:21.593798 7fd4627fc6c0 Manual compaction at level-1 from '!items!89NwqZV3Qn9xWeO0' @ 72057594037927935 : 1 .. '!items!sH7HaKggOEaBVzn3' @ 0 : 0; will stop at (end)
2026/04/01-22:41:42.857047 7fcfbf3ff6c0 Log #59: 0 ops saved to Table #60 OK
2026/04/01-22:41:42.857168 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/galdr-illusions/000059.log: OK
2026/04/01-22:41:42.857244 7fcfbf3ff6c0 Table #40: 5 entries OK
2026/04/01-22:41:42.860446 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-yggdrasill/packs/galdr-illusions; recovered 1 files; 3029 bytes. Some data may have been lost. ****

Binary file not shown.

View File

View File

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