Compare commits

...

8 Commits

Author SHA1 Message Date
c172e20244 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 46s
2026-04-01 22:20:23 +02:00
d4f024f910 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 1m39s
2026-04-01 21:52:37 +02:00
3eab0ded89 Foundryv14 migration 2026-04-01 21:52:19 +02:00
7d9aaa0085 Fix for v14 2026-03-29 20:53:07 +02:00
fcf5c10346 Correction initiative et meilleur affichage sur jet D20 2026-03-10 21:00:00 +01:00
71b384c963 Correction initiative et meilleur affichage sur jet D20
All checks were successful
Release Creation / build (release) Successful in 51s
2026-03-10 20:50:43 +01:00
f0a74d5daa Correction des biodatas
All checks were successful
Release Creation / build (release) Successful in 49s
2026-01-18 18:08:57 +01:00
9eb97a1acd Ajout release process 2026-01-09 17:46:36 +01:00
131 changed files with 310 additions and 256 deletions

View File

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

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@ todo.md
/jsconfig.json /jsconfig.json
/package.json /package.json
/package-lock.json /package-lock.json
.github/

View File

@@ -2678,6 +2678,32 @@ textarea {
} }
} }
.d20-impair {
text-align: center;
flex: 1;
padding: 2px 6px;
background: rgba(255, 152, 0, 0.15);
border: 1px dashed #ff9800;
border-radius: 4px;
font-size: 0.8rem !important;
color: #b36200 !important;
i {
color: #ff9800 !important;
font-size: 0.85rem !important;
display: inline !important;
margin-right: 4px;
}
span.dice-value {
font-size: 0.8rem !important;
display: inline !important;
font-weight: normal !important;
color: #b36200 !important;
text-shadow: none !important;
}
}
.predilection-section { .predilection-section {
padding: 8px 10px; padding: 8px 10px;
background: rgba(156, 39, 176, 0.1); background: rgba(156, 39, 176, 0.1);

View File

@@ -34,7 +34,7 @@ export default class HawkmoonActorSheet extends HandlebarsApplicationMixin(found
}, },
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: "form" }], dragDrop: [{ dragSelector: ".item-list .item", dropSelector: "form" }],
actions: { actions: {
editImage: HawkmoonActorSheet.#onEditImage, //editImage: HawkmoonActorSheet.#onEditImage,
toggleSheet: HawkmoonActorSheet.#onToggleSheet, toggleSheet: HawkmoonActorSheet.#onToggleSheet,
editItem: HawkmoonActorSheet.#onEditItem, editItem: HawkmoonActorSheet.#onEditItem,
deleteItem: HawkmoonActorSheet.#onDeleteItem, deleteItem: HawkmoonActorSheet.#onDeleteItem,
@@ -335,7 +335,7 @@ export default class HawkmoonActorSheet extends HandlebarsApplicationMixin(found
* @private * @private
*/ */
static async #onEditImage(event, target) { static async #onEditImage(event, target) {
const fp = new FilePicker({ const fp = new foundry.applications.apps.FilePicker.implementation({
type: "image", type: "image",
current: this.actor.img, current: this.actor.img,
callback: (path) => { callback: (path) => {

View File

@@ -75,7 +75,7 @@ export class HawkmoonActor extends Actor {
let combat = this.getCombatValues() let combat = this.getCombatValues()
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") { if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
let bonusDefense = this.getBonusDefenseFromTalents() let bonusDefense = this.getBonusDefenseFromTalents()
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée")) arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "mêlée") ?? { system: { niveau: 0 } })
arme.system.attrKey = "pui" arme.system.attrKey = "pui"
arme.system.totalDegats = arme.system.degats + "+" + combat.bonusDegatsTotal arme.system.totalDegats = arme.system.degats + "+" + combat.bonusDegatsTotal
arme.system.totalOffensif = this.system.attributs.pui.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + (this.system.combat.monte ? 3 : 0) arme.system.totalOffensif = this.system.attributs.pui.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff + (this.system.combat.monte ? 3 : 0)
@@ -86,7 +86,7 @@ export class HawkmoonActor extends Actor {
arme.system.isDistance = false arme.system.isDistance = false
} }
if (arme.system.typearme == "jet" || arme.system.typearme == "tir") { if (arme.system.typearme == "jet" || arme.system.typearme == "tir") {
arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance")) arme.system.competence = foundry.utils.duplicate(this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "armes à distance") ?? { system: { niveau: 0 } })
arme.system.attrKey = "adr" arme.system.attrKey = "adr"
arme.system.totalOffensif = this.system.attributs.adr.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff arme.system.totalOffensif = this.system.attributs.adr.value + arme.system.competence.system.niveau + arme.system.bonusmaniementoff
arme.system.totalDegats = arme.system.degats arme.system.totalDegats = arme.system.degats
@@ -188,7 +188,8 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
getVitesseBase() { getVitesseBase() {
return 5 + __vitesseBonus[this.system.attributs.adr.value] const idx = Math.min(this.system.attributs.adr.value, __vitesseBonus.length - 1)
return 5 + (__vitesseBonus[idx] ?? 0)
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
getProtection() { getProtection() {
@@ -236,6 +237,9 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
prepareBaseData() { prepareBaseData() {
if (game.release.generation >= 14) {
super.prepareBaseData();
}
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
@@ -305,7 +309,7 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
checkAttribut(attribut, minLevel) { checkAttribut(attribut, minLevel) {
let attr = this.system.attributs.find(at => at.labelnorm == attribut.toLowerCase()) let attr = Object.values(this.system.attributs).find(at => at.labelnorm == attribut.toLowerCase())
if (attr && attr.value >= minLevel) { if (attr && attr.value >= minLevel) {
return { isValid: true, attr: foundry.utils.duplicate(attr) } return { isValid: true, attr: foundry.utils.duplicate(attr) }
} }
@@ -403,12 +407,13 @@ export class HawkmoonActor extends Actor {
/* -------------------------------------------- */ /* -------------------------------------------- */
getAttribute(attrKey) { getAttribute(attrKey) {
return this.system.attributes[attrKey] return this.system.attributs[attrKey]
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
getBonusDegats() { getBonusDegats() {
return 0; const idx = Math.min(this.system.attributs.pui.value, __degatsBonus.length - 1)
return __degatsBonus[idx] ?? 0
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
@@ -655,6 +660,9 @@ export class HawkmoonActor extends Actor {
let rollData = this.getCommonRollData(attrKey) let rollData = this.getCommonRollData(attrKey)
rollData.multiplier = (isInit) ? 1 : 2 rollData.multiplier = (isInit) ? 1 : 2
rollData.isInit = isInit rollData.isInit = isInit
if (isInit) {
rollData.initbonus = this.system.combat.initbonus ?? 0
}
await HawkmoonRollDialog.create(this, rollData) await HawkmoonRollDialog.create(this, rollData)
} }

View File

@@ -10,7 +10,14 @@ export class HawkmoonCombat extends Combat {
const c = this.combatants.get(cId); const c = this.combatants.get(cId);
console.log("Init for combattant", c, ids) console.log("Init for combattant", c, ids)
let id = c._id || c.id let id = c._id || c.id
let initValue = c.actor ? c.actor.getInitiativeScore() : 0 let initValue = 0
if (c.actor) {
const combat = c.actor.getCombatValues()
const roll = await new Roll(`1d10 + ${combat.initTotal}`).roll()
await HawkmoonUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"))
initValue = roll.total
await c.actor.setFlag("world", "last-initiative", initValue)
}
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initValue } ]); await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initValue } ]);
} }

View File

@@ -89,7 +89,7 @@ export class HawkmoonCommands {
if (command && command.func) { if (command && command.func) {
const result = command.func(content, msg, params); const result = command.func(content, msg, params);
if (result == false) { if (result == false) {
RdDCommands._chatAnswer(msg, command.descr); HawkmoonCommands._chatAnswer(msg, command.descr);
} }
return true; return true;
} }
@@ -98,8 +98,8 @@ export class HawkmoonCommands {
/* -------------------------------------------- */ /* -------------------------------------------- */
async createChar(msg) { async createChar(msg) {
game.system.Hawkmoon.creator = new HawkmoonActorCreate(); game.system.hawkmoon.creator = new HawkmoonActorCreate();
game.system.Hawkmoon.creator.start(); game.system.hawkmoon.creator.start();
} }
/* -------------------------------------------- */ /* -------------------------------------------- */

View File

@@ -199,7 +199,7 @@ Hooks.on("chatMessage", (html, content, msg) => {
if (content[0] == '/') { if (content[0] == '/') {
let regExp = /(\S+)/g; let regExp = /(\S+)/g;
let commands = content.match(regExp); let commands = content.match(regExp);
if (game.system.mournblade.commands.processChatCommand(commands, content, msg)) { if (game.system.hawkmoon.commands.processChatCommand(commands, content, msg)) {
return false; return false;
} }
} }

View File

@@ -370,7 +370,7 @@ export class HawkmoonUtility {
if (rollData.mainDice.includes("d20")) { if (rollData.mainDice.includes("d20")) {
let diceValue = rollData.roll.terms[0].results[0].result let diceValue = rollData.roll.terms[0].results[0].result
if (diceValue % 2 == 1) { if (diceValue % 2 == 1) {
//console.log("PAIR/IMP2", diceValue) rollData.isD20Impair = true
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
if (diceValue == 1 || diceValue == 11) { if (diceValue == 1 || diceValue == 11) {
rollData.isDramatique = true rollData.isDramatique = true
@@ -395,8 +395,8 @@ export class HawkmoonUtility {
/* -------------------------------------------- */ /* -------------------------------------------- */
static applyCombativite(rollData, value) { static applyCombativite(rollData, value) {
if (game.user.isGM) { if (game.user.isGM) {
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
defender.changeEtatCombativite(value) defender?.changeEtatCombativite(value)
} else { } else {
game.socket.emit("system.fvtt-hawkmoon-cyd", { msg: "msg_apply_combativite", data: { defenderTokenId: rollData.defenderTokenId, value } }); game.socket.emit("system.fvtt-hawkmoon-cyd", { msg: "msg_apply_combativite", data: { defenderTokenId: rollData.defenderTokenId, value } });
} }
@@ -450,6 +450,9 @@ export class HawkmoonUtility {
rollData.diceFormula += `+${rollData.attr.value}+${rollData.attr2.value}+${rollData.modificateur}` rollData.diceFormula += `+${rollData.attr.value}+${rollData.attr2.value}+${rollData.modificateur}`
} else { } else {
rollData.diceFormula += `+${rollData.attr.value}*${rollData.multiplier}+${rollData.modificateur}` rollData.diceFormula += `+${rollData.attr.value}*${rollData.multiplier}+${rollData.modificateur}`
if (rollData.isInit && rollData.initbonus) {
rollData.diceFormula += `+${rollData.initbonus}`
}
} }
// Bonus arme naturelle en défense // Bonus arme naturelle en défense
@@ -535,8 +538,8 @@ export class HawkmoonUtility {
this.applyCombativite(rollData, rollData.nbCombativitePerdu) this.applyCombativite(rollData, rollData.nbCombativitePerdu)
} }
if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) { if (rollData.coupBas && rollData.isSuccess && rollData.defenderTokenId) {
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
defender.incDecAdversite("bleue", -2) defender?.incDecAdversite("bleue", -2)
} }
} }
@@ -705,7 +708,8 @@ export class HawkmoonUtility {
} }
// Utiliser la cible déjà enregistrée si aucune cible n'est actuellement sélectionnée // Utiliser la cible déjà enregistrée si aucune cible n'est actuellement sélectionnée
if (rollData.defenderTokenId) { if (rollData.defenderTokenId) {
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
if (!defender) return
console.log("updateWithTarget - Defender actor:", defender.name) console.log("updateWithTarget - Defender actor:", defender.name)
rollData.armeDefense = defender.getBestDefenseValue() rollData.armeDefense = defender.getBestDefenseValue()
console.log("updateWithTarget - armeDefense:", rollData.armeDefense) console.log("updateWithTarget - armeDefense:", rollData.armeDefense)

View File

@@ -9,16 +9,17 @@ export default class PersonnageDataModel extends foundry.abstract.TypeDataModel
biodata: new fields.SchemaField({ biodata: new fields.SchemaField({
name: new fields.StringField({ initial: "" }), name: new fields.StringField({ initial: "" }),
age: new fields.NumberField({ initial: 0, integer: true }), age: new fields.NumberField({ initial: 0, integer: true }),
poids: new fields.StringField({ initial: "" }), poids: new fields.StringField({ initial: "70" }),
taille: new fields.StringField({ initial: "" }), taille: new fields.StringField({ initial: "1,80m" }),
cheveux: new fields.StringField({ initial: "" }), cheveux: new fields.StringField({ initial: "Brun" }),
sexe: new fields.StringField({ initial: "" }), sexe: new fields.StringField({ initial: "" }),
yeux: new fields.StringField({ initial: "" }), yeux: new fields.StringField({ initial: "Verts" }),
description: new fields.HTMLField({ initial: "" }), description: new fields.HTMLField({ initial: "" }),
habitat: new fields.HTMLField({ initial: "" }), habitat: new fields.HTMLField({ initial: "" }),
notes: new fields.HTMLField({ initial: "" }), notes: new fields.HTMLField({ initial: "" }),
statut: new fields.StringField({ initial: "" }), statut: new fields.StringField({ initial: "" }),
gmnotes: new fields.HTMLField({ initial: "" }), gmnotes: new fields.HTMLField({ initial: "" }),
mainpreferee: new fields.StringField({ initial: "Droite" }),
statutresistant: new fields.StringField({ initial: "commun" }) statutresistant: new fields.StringField({ initial: "commun" })
}), }),
// Template core // Template core

View File

@@ -1 +1 @@
MANIFEST-000377 MANIFEST-000418

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.997473 7f1c563fe6c0 Recovering log #375 2026/04/01-21:50:37.518083 7f3054fed6c0 Delete type=3 #1
2026/01/09-17:40:08.091717 7f1c563fe6c0 Delete type=0 #375 2026/04/01-21:52:26.545082 7f303effd6c0 Level-0 table #421: started
2026/01/09-17:40:08.091792 7f1c563fe6c0 Delete type=3 #373 2026/04/01-21:52:26.545109 7f303effd6c0 Level-0 table #421: 0 bytes OK
2026/01/09-17:44:28.072757 7f1c54bfb6c0 Level-0 table #380: started 2026/04/01-21:52:26.552279 7f303effd6c0 Delete type=0 #419
2026/01/09-17:44:28.072827 7f1c54bfb6c0 Level-0 table #380: 0 bytes OK 2026/04/01-21:52:26.566131 7f303effd6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1
2026/01/09-17:44:28.079432 7f1c54bfb6c0 Delete type=0 #378 2026/04/01-21:52:26.566150 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.105106 7f1c54bfb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.569834 7f303effd6c0 Generated table #422@0: 4 keys, 41333 bytes
2026/01/09-17:44:28.117150 7f1c54bfb6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.569864 7f303effd6c0 Compacted 1@0 + 0@1 files => 41333 bytes
2026/04/01-21:52:26.575990 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.576118 7f303effd6c0 Delete type=2 #389
2026/04/01-21:52:26.588378 7f303effd6c0 Manual compaction at level-0 from '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 23 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.713116 7f93ea7fc6c0 Recovering log #371 2026/04/01-21:50:37.488954 7f3054fed6c0 Log #416: 0 ops saved to Table #417 OK
2026/01/08-08:15:08.722804 7f93ea7fc6c0 Delete type=3 #369 2026/04/01-21:50:37.489105 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu/000416.log: OK
2026/01/08-08:15:08.722873 7f93ea7fc6c0 Delete type=0 #371 2026/04/01-21:50:37.491269 7f3054fed6c0 Table #389: 4 entries OK
2026/01/08-08:28:05.068912 7f93e9ffb6c0 Level-0 table #376: started 2026/04/01-21:50:37.498288 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/aides-de-jeu; recovered 1 files; 41333 bytes. Some data may have been lost. ****
2026/01/08-08:28:05.068957 7f93e9ffb6c0 Level-0 table #376: 0 bytes OK
2026/01/08-08:28:05.106033 7f93e9ffb6c0 Delete type=0 #374
2026/01/08-08:28:05.217659 7f93e9ffb6c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
2026/01/08-08:28:05.217719 7f93e9ffb6c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.215100 7f1c563fe6c0 Recovering log #374 2026/04/01-21:50:37.248910 7f3054fed6c0 Delete type=3 #1
2026/01/09-17:40:07.308808 7f1c563fe6c0 Delete type=0 #374 2026/04/01-21:52:26.427980 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.308890 7f1c563fe6c0 Delete type=3 #372 2026/04/01-21:52:26.428011 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.036990 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.433923 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.037073 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.453062 7f303effd6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1
2026/01/09-17:44:28.043547 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.453075 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.043784 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.456518 7f303effd6c0 Generated table #421@0: 49 keys, 14167 bytes
2026/01/09-17:44:28.043823 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.456558 7f303effd6c0 Compacted 1@0 + 0@1 files => 14167 bytes
2026/04/01-21:52:26.462451 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.462557 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.496365 7f303effd6c0 Manual compaction at level-0 from '!items!wxrzP3NyiHiYnAMJ' @ 245 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.609938 7f93eaffd6c0 Recovering log #370 2026/04/01-21:50:37.223069 7f3054fed6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.619765 7f93eaffd6c0 Delete type=3 #368 2026/04/01-21:50:37.223194 7f3054fed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes/000415.log: OK
2026/01/08-08:15:08.619830 7f93eaffd6c0 Delete type=0 #370 2026/04/01-21:50:37.223591 7f3054fed6c0 Table #388: 49 entries OK
2026/01/08-08:28:04.844266 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.228238 7f3054fed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/armes; recovered 1 files; 14167 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.844294 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.883113 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.919770 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.919798 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000417 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.033899 7f1c55bfd6c0 Recovering log #374 2026/04/01-21:50:37.187910 7f303f7fe6c0 Delete type=3 #1
2026/01/09-17:40:07.115529 7f1c55bfd6c0 Delete type=0 #374 2026/04/01-21:52:26.373765 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.115669 7f1c55bfd6c0 Delete type=3 #372 2026/04/01-21:52:26.373792 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.002424 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.380614 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.002453 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.407289 7f303effd6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at '!items!tFU5yISK6spdNWco' @ 40 : 1
2026/01/09-17:44:28.008591 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.407300 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.016607 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.410410 7f303effd6c0 Generated table #421@0: 8 keys, 7054 bytes
2026/01/09-17:44:28.016651 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.410437 7f303effd6c0 Compacted 1@0 + 0@1 files => 7054 bytes
2026/04/01-21:52:26.416293 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.416365 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.427860 7f303effd6c0 Manual compaction at level-0 from '!items!tFU5yISK6spdNWco' @ 40 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.584392 7f93eb7fe6c0 Recovering log #370 2026/04/01-21:50:37.159826 7f303f7fe6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.595037 7f93eb7fe6c0 Delete type=3 #368 2026/04/01-21:50:37.159989 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures/000415.log: OK
2026/01/08-08:15:08.595129 7f93eb7fe6c0 Delete type=0 #370 2026/04/01-21:50:37.160305 7f303f7fe6c0 Table #388: 8 entries OK
2026/01/08-08:28:04.658126 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.165673 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences-creatures; recovered 1 files; 7054 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.658154 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.696322 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.770719 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.770775 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:06.860640 7f1c553fc6c0 Recovering log #374 2026/04/01-21:50:37.104198 7f30557ee6c0 Delete type=3 #1
2026/01/09-17:40:06.945970 7f1c553fc6c0 Delete type=0 #374 2026/04/01-21:52:26.361275 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:06.946049 7f1c553fc6c0 Delete type=3 #372 2026/04/01-21:52:26.361358 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:27.995662 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.367336 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:27.995696 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.387152 7f303effd6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at '!items!yI1zY5k8mAdx9wHK' @ 75 : 1
2026/01/09-17:44:28.002283 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.387166 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.016595 7f1c54bfb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.390737 7f303effd6c0 Generated table #421@0: 15 keys, 16660 bytes
2026/01/09-17:44:28.016641 7f1c54bfb6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.390778 7f303effd6c0 Compacted 1@0 + 0@1 files => 16660 bytes
2026/04/01-21:52:26.396659 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.396752 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.427832 7f303effd6c0 Manual compaction at level-0 from '!items!yI1zY5k8mAdx9wHK' @ 75 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.560342 7f93eaffd6c0 Recovering log #370 2026/04/01-21:50:35.374153 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.570307 7f93eaffd6c0 Delete type=3 #368 2026/04/01-21:50:35.374279 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences/000415.log: OK
2026/01/08-08:15:08.570398 7f93eaffd6c0 Delete type=0 #370 2026/04/01-21:50:35.376008 7f30557ee6c0 Table #388: 15 entries OK
2026/01/08-08:28:04.883258 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:35.381569 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/competences; recovered 1 files; 16660 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.883283 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.919585 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.919781 7f93e9ffb6c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.919805 7f93e9ffb6c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.398683 7f1c55bfd6c0 Recovering log #374 2026/04/01-21:50:37.312218 7f30557ee6c0 Delete type=3 #1
2026/01/09-17:40:07.488253 7f1c55bfd6c0 Delete type=0 #374 2026/04/01-21:52:26.446652 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.488337 7f1c55bfd6c0 Delete type=3 #372 2026/04/01-21:52:26.446674 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.016766 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.452925 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.016805 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.484989 7f303effd6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1
2026/01/09-17:44:28.023141 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.485002 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.043713 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.488643 7f303effd6c0 Generated table #421@0: 151 keys, 31834 bytes
2026/01/09-17:44:28.043764 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.488676 7f303effd6c0 Compacted 1@0 + 0@1 files => 31834 bytes
2026/04/01-21:52:26.496082 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.496215 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.496407 7f303effd6c0 Manual compaction at level-0 from '!items!zYx0Ak2y1LNTcKlO' @ 755 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.634608 7f93eb7fe6c0 Recovering log #370 2026/04/01-21:50:37.283827 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.644771 7f93eb7fe6c0 Delete type=3 #368 2026/04/01-21:50:37.283988 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement/000415.log: OK
2026/01/08-08:15:08.644849 7f93eb7fe6c0 Delete type=0 #370 2026/04/01-21:50:37.285401 7f30557ee6c0 Table #388: 151 entries OK
2026/01/08-08:28:04.770939 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.292810 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/equipement; recovered 1 files; 31834 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.770974 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.807757 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.919742 7f93e9ffb6c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.919789 7f93e9ffb6c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.118312 7f1c553fc6c0 Recovering log #374 2026/04/01-21:50:37.218059 7f303ffff6c0 Delete type=3 #1
2026/01/09-17:40:07.212316 7f1c553fc6c0 Delete type=0 #374 2026/04/01-21:52:26.367478 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.212395 7f1c553fc6c0 Delete type=3 #372 2026/04/01-21:52:26.367515 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.008871 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.373589 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.008958 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.396908 7f303effd6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at '!items!z1HtkvazCGHut7cz' @ 240 : 1
2026/01/09-17:44:28.016332 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.396921 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.016621 7f1c54bfb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.400605 7f303effd6c0 Generated table #421@0: 48 keys, 19976 bytes
2026/01/09-17:44:28.016661 7f1c54bfb6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.400631 7f303effd6c0 Compacted 1@0 + 0@1 files => 19976 bytes
2026/04/01-21:52:26.407058 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.407177 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.427846 7f303effd6c0 Manual compaction at level-0 from '!items!z1HtkvazCGHut7cz' @ 240 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.597802 7f93ea7fc6c0 Recovering log #370 2026/04/01-21:50:37.191100 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.607783 7f93ea7fc6c0 Delete type=3 #368 2026/04/01-21:50:37.191694 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques/000415.log: OK
2026/01/08-08:15:08.607847 7f93ea7fc6c0 Delete type=0 #370 2026/04/01-21:50:37.192374 7f303ffff6c0 Table #388: 48 entries OK
2026/01/08-08:28:04.733376 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.197077 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/historiques; recovered 1 files; 19976 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.733403 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.770489 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.770754 7f93e9ffb6c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.770794 7f93e9ffb6c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000286 MANIFEST-000327

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:06.948771 7f1c563fe6c0 Recovering log #284 2026/04/01-21:50:37.156100 7f30557ee6c0 Delete type=3 #1
2026/01/09-17:40:07.030884 7f1c563fe6c0 Delete type=0 #284 2026/04/01-21:52:26.380729 7f303effd6c0 Level-0 table #330: started
2026/01/09-17:40:07.030949 7f1c563fe6c0 Delete type=3 #282 2026/04/01-21:52:26.380762 7f303effd6c0 Level-0 table #330: 0 bytes OK
2026/01/09-17:44:27.988602 7f1c54bfb6c0 Level-0 table #289: started 2026/04/01-21:52:26.386955 7f303effd6c0 Delete type=0 #328
2026/01/09-17:44:27.988662 7f1c54bfb6c0 Level-0 table #289: 0 bytes OK 2026/04/01-21:52:26.416451 7f303effd6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at '!items!zttESycGKltfwCzJ' @ 811 : 1
2026/01/09-17:44:27.995503 7f1c54bfb6c0 Delete type=0 #287 2026/04/01-21:52:26.416461 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.016581 7f1c54bfb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.420353 7f303effd6c0 Generated table #331@0: 167 keys, 58927 bytes
2026/01/09-17:44:28.016631 7f1c54bfb6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.420388 7f303effd6c0 Compacted 1@0 + 0@1 files => 58927 bytes
2026/04/01-21:52:26.427596 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.427710 7f303effd6c0 Delete type=2 #298
2026/04/01-21:52:26.427871 7f303effd6c0 Manual compaction at level-0 from '!items!zttESycGKltfwCzJ' @ 811 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.572263 7f93ebfff6c0 Recovering log #280 2026/04/01-21:50:37.107344 7f30557ee6c0 Log #325: 0 ops saved to Table #326 OK
2026/01/08-08:15:08.581752 7f93ebfff6c0 Delete type=3 #278 2026/04/01-21:50:37.107463 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations/000325.log: OK
2026/01/08-08:15:08.581804 7f93ebfff6c0 Delete type=0 #280 2026/04/01-21:50:37.109027 7f30557ee6c0 Table #298: 167 entries OK
2026/01/08-08:28:04.623048 7f93e9ffb6c0 Level-0 table #285: started 2026/04/01-21:50:37.118243 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/mutations; recovered 1 files; 58927 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.623109 7f93e9ffb6c0 Level-0 table #285: 0 bytes OK
2026/01/08-08:28:04.657992 7f93e9ffb6c0 Delete type=0 #283
2026/01/08-08:28:04.770699 7f93e9ffb6c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.770767 7f93e9ffb6c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

0
packs/profils/000419.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.491383 7f1c563fe6c0 Recovering log #374 2026/04/01-21:50:37.342651 7f303ffff6c0 Delete type=3 #1
2026/01/09-17:40:07.586434 7f1c563fe6c0 Delete type=0 #374 2026/04/01-21:52:26.496497 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.586511 7f1c563fe6c0 Delete type=3 #372 2026/04/01-21:52:26.496541 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.051505 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.502642 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.051547 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.522927 7f303effd6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at '!items!tFQqcxmkS3MT6ASE' @ 75 : 1
2026/01/09-17:44:28.058087 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.522944 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.072587 7f1c54bfb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.527492 7f303effd6c0 Generated table #421@0: 15 keys, 29941 bytes
2026/01/09-17:44:28.072630 7f1c54bfb6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.527526 7f303effd6c0 Compacted 1@0 + 0@1 files => 29941 bytes
2026/04/01-21:52:26.534565 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.534675 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.545065 7f303effd6c0 Manual compaction at level-0 from '!items!tFQqcxmkS3MT6ASE' @ 75 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.648157 7f93ea7fc6c0 Recovering log #370 2026/04/01-21:50:37.315932 7f303ffff6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.657922 7f93ea7fc6c0 Delete type=3 #368 2026/04/01-21:50:37.316044 7f303ffff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils/000415.log: OK
2026/01/08-08:15:08.657990 7f93ea7fc6c0 Delete type=0 #370 2026/04/01-21:50:37.318377 7f303ffff6c0 Table #388: 15 entries OK
2026/01/08-08:28:04.807939 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.323861 7f303ffff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/profils; recovered 1 files; 29941 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.807972 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.844126 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.919757 7f93e9ffb6c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.919814 7f93e9ffb6c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000376 MANIFEST-000417

View File

@@ -1,8 +1,11 @@
2026/01/09-17:40:07.312206 7f1c56bff6c0 Recovering log #374 2026/04/01-21:50:37.281179 7f30557ee6c0 Delete type=3 #1
2026/01/09-17:40:07.395670 7f1c56bff6c0 Delete type=0 #374 2026/04/01-21:52:26.434016 7f303effd6c0 Level-0 table #420: started
2026/01/09-17:40:07.395743 7f1c56bff6c0 Delete type=3 #372 2026/04/01-21:52:26.434045 7f303effd6c0 Level-0 table #420: 0 bytes OK
2026/01/09-17:44:28.030121 7f1c54bfb6c0 Level-0 table #379: started 2026/04/01-21:52:26.440140 7f303effd6c0 Delete type=0 #418
2026/01/09-17:44:28.030156 7f1c54bfb6c0 Level-0 table #379: 0 bytes OK 2026/04/01-21:52:26.462672 7f303effd6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at '!items!yszkersMTE4p9VzP' @ 70 : 1
2026/01/09-17:44:28.036628 7f1c54bfb6c0 Delete type=0 #377 2026/04/01-21:52:26.462684 7f303effd6c0 Compacting 1@0 + 0@1 files
2026/01/09-17:44:28.043749 7f1c54bfb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.465883 7f303effd6c0 Generated table #421@0: 14 keys, 3496 bytes
2026/01/09-17:44:28.043794 7f1c54bfb6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end) 2026/04/01-21:52:26.465922 7f303effd6c0 Compacted 1@0 + 0@1 files => 3496 bytes
2026/04/01-21:52:26.472735 7f303effd6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/01-21:52:26.472846 7f303effd6c0 Delete type=2 #388
2026/04/01-21:52:26.496383 7f303effd6c0 Manual compaction at level-0 from '!items!yszkersMTE4p9VzP' @ 70 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/01/08-08:15:08.621917 7f93ebfff6c0 Recovering log #370 2026/04/01-21:50:37.251714 7f30557ee6c0 Log #415: 0 ops saved to Table #416 OK
2026/01/08-08:15:08.632677 7f93ebfff6c0 Delete type=3 #368 2026/04/01-21:50:37.251834 7f30557ee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections/000415.log: OK
2026/01/08-08:15:08.632727 7f93ebfff6c0 Delete type=0 #370 2026/04/01-21:50:37.252077 7f30557ee6c0 Table #388: 14 entries OK
2026/01/08-08:28:04.696491 7f93e9ffb6c0 Level-0 table #375: started 2026/04/01-21:50:37.259533 7f30557ee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/protections; recovered 1 files; 3496 bytes. Some data may have been lost. ****
2026/01/08-08:28:04.696521 7f93e9ffb6c0 Level-0 table #375: 0 bytes OK
2026/01/08-08:28:04.733225 7f93e9ffb6c0 Delete type=0 #373
2026/01/08-08:28:04.770736 7f93e9ffb6c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
2026/01/08-08:28:04.770784 7f93e9ffb6c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

Binary file not shown.

0
packs/scenes/000259.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000215 MANIFEST-000257

View File

@@ -1,8 +1,5 @@
2026/01/09-17:40:07.897787 7f1c55bfd6c0 Recovering log #213 2026/04/01-21:50:37.485134 7f303f7fe6c0 Delete type=3 #1
2026/01/09-17:40:07.993513 7f1c55bfd6c0 Delete type=0 #213 2026/04/01-21:52:26.509551 7f303effd6c0 Level-0 table #260: started
2026/01/09-17:40:07.993589 7f1c55bfd6c0 Delete type=3 #211 2026/04/01-21:52:26.509586 7f303effd6c0 Level-0 table #260: 0 bytes OK
2026/01/09-17:44:28.065440 7f1c54bfb6c0 Level-0 table #218: started 2026/04/01-21:52:26.516307 7f303effd6c0 Delete type=0 #258
2026/01/09-17:44:28.065531 7f1c54bfb6c0 Level-0 table #218: 0 bytes OK 2026/04/01-21:52:26.534813 7f303effd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2026/01/09-17:44:28.072412 7f1c54bfb6c0 Delete type=0 #216
2026/01/09-17:44:28.072612 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2026/01/09-17:44:28.072640 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,3 @@
2026/01/08-08:15:08.698526 7f93ebfff6c0 Recovering log #209 2026/04/01-21:50:37.458686 7f303f7fe6c0 Log #255: 0 ops saved to Table #256 OK
2026/01/08-08:15:08.709578 7f93ebfff6c0 Delete type=3 #207 2026/04/01-21:50:37.458799 7f303f7fe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes/000255.log: OK
2026/01/08-08:15:08.709656 7f93ebfff6c0 Delete type=0 #209 2026/04/01-21:50:37.463339 7f303f7fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-hawkmoon-cyd/packs/scenes; recovered 0 files; 0 bytes. Some data may have been lost. ****
2026/01/08-08:28:05.031270 7f93e9ffb6c0 Level-0 table #214: started
2026/01/08-08:28:05.031324 7f93e9ffb6c0 Level-0 table #214: 0 bytes OK
2026/01/08-08:28:05.068560 7f93e9ffb6c0 Delete type=0 #212
2026/01/08-08:28:05.068827 7f93e9ffb6c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
2026/01/08-08:28:05.068856 7f93e9ffb6c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

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