Compare commits

..

1 Commits

Author SHA1 Message Date
1a0f4cd3e9 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 44s
2026-04-01 23:01:25 +02:00
114 changed files with 273 additions and 677 deletions

View File

@@ -1,119 +0,0 @@
import { BoLUtility } from "../system/bol-utility.js";
/**
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class BoLItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["bol", "sheet", "item"],
template: "systems/bol/templates/item/item-sheet.hbs",
width: 650,
height: 780,
dragDrop: [{ dragSelector: null, dropSelector: null }],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description" }]
});
}
/* -------------------------------------------- */
/** @override */
async getData(options) {
const data = super.getData(options)
let itemData = foundry.utils.duplicate(data.document)
data.config = game.bol.config
data.item = itemData
data.category = itemData.system.category
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {
itemData.system.category = "equipment"
}
if (itemData.system.category == "equipment" && itemData.system.properties.equipable) {
if (!itemData.system.properties.slot) {
itemData.system.properties.slot = "-"
}
}
if (itemData.system.category == 'spell') {
if (!itemData.system.properties.mandatoryconditions) {
itemData.system.properties.mandatoryconditions = []
}
if (!itemData.system.properties.optionnalconditions) {
itemData.system.properties.optionnalconditions = []
}
for (let i = 0; i < 4; i++) {
itemData.system.properties.mandatoryconditions[i] = itemData.system.properties.mandatoryconditions[i] ?? ""
}
for (let i = 0; i < 8; i++) {
itemData.system.properties.optionnalconditions[i] = itemData.system.properties.optionnalconditions[i] ?? ""
}
}
} else {
if (!itemData.system.subtype) {
itemData.system.category = "origin"
}
}
console.log("ITEMDATA", data);
return data;
}
/* -------------------------------------------- */
_getHeaderButtons() {
let buttons = super._getHeaderButtons();
buttons.unshift({
class: "post",
icon: "fas fa-comment",
onclick: ev => this.postItem()
});
return buttons
}
/* -------------------------------------------- */
postItem() {
let chatData = foundry.utils.duplicate(this.item)
if (this.actor) {
chatData.actor = { id: this.actor.id };
}
BoLUtility.postItem(chatData);
}
/* -------------------------------------------- */
/** @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;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
super.activateListeners(html);
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// Roll handlers, click handlers, etc. would go here.
html.find('.armorQuality').change(ev => {
const li = $(ev.currentTarget);
console.log(game.bol.config.soakFormulas[li.val()]);
$('.soakFormula').val(game.bol.config.soakFormulas[li.val()]);
});
}
}

View File

@@ -1,119 +0,0 @@
import { BoLUtility } from "../system/bol-utility.js";
/**
* Extend the basic ItemSheet with some very simple modifications
* @extends {ItemSheet}
*/
export class BoLItemSheet extends foundry.appv1.sheets.ItemSheet {
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
classes: ["bol", "sheet", "item"],
template: "systems/bol/templates/item/item-sheet.hbs",
width: 650,
height: 780,
dragDrop: [{ dragSelector: null, dropSelector: null }],
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description" }]
});
}
/* -------------------------------------------- */
/** @override */
async getData(options) {
const data = super.getData(options)
let itemData = foundry.utils.duplicate(data.document)
data.config = game.bol.config
data.item = itemData
data.category = itemData.system.category
data.isGM = game.user.isGM;
data.itemProperties = this.item.itemProperties;
data.description = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.object.system.description, { async: true })
if (data.document.actor) {
data.careers = data.document.actor.careers
}
// Dynamic default data fix/adapt
if (itemData.type == "item") {
if (!itemData.system.category) {
itemData.system.category = "equipment"
}
if (itemData.system.category == "equipment" && itemData.system.properties.equipable) {
if (!itemData.system.properties.slot) {
itemData.system.properties.slot = "-"
}
}
if (itemData.system.category == 'spell') {
if (!itemData.system.properties.mandatoryconditions) {
itemData.system.properties.mandatoryconditions = []
}
if (!itemData.system.properties.optionnalconditions) {
itemData.system.properties.optionnalconditions = []
}
for (let i = 0; i < 4; i++) {
itemData.system.properties.mandatoryconditions[i] = itemData.system.properties.mandatoryconditions[i] ?? ""
}
for (let i = 0; i < 8; i++) {
itemData.system.properties.optionnalconditions[i] = itemData.system.properties.optionnalconditions[i] ?? ""
}
}
} else {
if (!itemData.system.subtype) {
itemData.system.category = "origin"
}
}
console.log("ITEMDATA", data);
return data;
}
/* -------------------------------------------- */
_getHeaderButtons() {
let buttons = super._getHeaderButtons();
buttons.unshift({
class: "post",
icon: "fas fa-comment",
onclick: ev => this.postItem()
});
return buttons
}
/* -------------------------------------------- */
postItem() {
let chatData = foundry.utils.duplicate(this.item)
if (this.actor) {
chatData.actor = { id: this.actor.id };
}
BoLUtility.postItem(chatData);
}
/* -------------------------------------------- */
/** @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;
}
/* -------------------------------------------- */
/** @override */
activateListeners(html) {
super.activateListeners(html);
// Everything below here is only needed if the sheet is editable
if (!this.options.editable) return;
// Roll handlers, click handlers, etc. would go here.
html.find('.armorQuality').change(ev => {
const li = $(ev.currentTarget);
console.log(game.bol.config.soakFormulas[li.val()]);
$('.soakFormula').val(game.bol.config.soakFormulas[li.val()]);
});
}
}

View File

@@ -1,36 +0,0 @@
/**
* Extend the basic Item with some very simple modifications.
* @extends {Item}
*/
export class BoLItem extends Item {
/**
* Augment the basic Item data model with additional dynamic data.
*/
prepareData() {
super.prepareData()
const actorData = this.actor ? this.actor.system : {}
}
/* -------------------------------------------- */
get properties() {
return this.system.properties
}
/* -------------------------------------------- */
/**
* Get the Array of item properties which are used in the small sidebar of the description tab
* @return {Array}
* @private
*/
get itemProperties() {
const props = [];
if ( this.type === "item" ) {
const entries = Object.entries(this.system.properties)
props.push(...entries.filter(e => e[1] === true).map(e => { return game.bol.config.itemProperties2[e[0]] }))
}
return props.filter(p => !!p)
}
}

View File

@@ -1,112 +0,0 @@
# BoL DataModels
Ce dossier contient les DataModels pour le système Barbarians of Lemuria (BoL).
## Structure
### Actors DataModels
- **character.mjs** : Personnages joueurs
- Attributs (Vigor, Agility, Mind, Appeal)
- Aptitudes (Initiative, Mêlée, Distance, Défense)
- Ressources (HP, Hero Points, Faith, Power, Alchemy, Astrology)
- XP et création
- Bougette (argent)
- **encounter.mjs** : PNJ et créatures
- Mêmes attributs que character
- Champs spécifiques : chartype (tough/villain), isundead, size, environment
- **horde.mjs** : Hordes de créatures
- Mêmes attributs de base
- Champs spécifiques : hordesize, hordebasehp, hasdamagerule, damagerule
- **vehicle.mjs** : Véhicules (navires, chars, etc.)
- Attributs véhicules : hull, crew, resources
- Champs spécifiques : vehicletype, row, spur, status
### Items DataModels
- **item.mjs** : Équipements et objets
- Propriétés (weapon, armor, magical, etc.)
- Équipement (quantity, weight, price, worn)
- Category et subtype
- **feature.mjs** : Capacités, traits, sorts
- Rank (niveau/rang)
- Description
- Category et subtype
## Architecture
Tous les DataModels héritent de `foundry.abstract.TypeDataModel` et définissent leur schéma via `defineSchema()`.
Exemple de structure :
```javascript
export default class BoLCharacterDataModel extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
const requiredInteger = { required: true, nullable: false, integer: true };
return {
// Définition des champs
};
}
static LOCALIZATION_PREFIXES = ["BOL.Character"];
// Méthodes personnalisées (à ajouter)
}
```
## Types de champs utilisés
- `StringField` : Chaînes de caractères
- `NumberField` : Nombres (avec option `integer: true` pour entiers)
- `BooleanField` : Booléens
- `HTMLField` : HTML enrichi (descriptions, biographies)
- `ArrayField` : Tableaux
- `SchemaField` : Objets imbriqués
## Export
Le fichier `_module.mjs` exporte tous les DataModels :
```javascript
export { default as BoLCharacter } from "./character.mjs"
export { default as BoLEncounter } from "./encounter.mjs"
export { default as BoLHorde } from "./horde.mjs"
export { default as BoLVehicle } from "./vehicle.mjs"
export { default as BoLItem } from "./item.mjs"
export { default as BoLFeature } from "./feature.mjs"
```
## Configuration dans bol.js
Les DataModels sont enregistrés dans `CONFIG` :
```javascript
CONFIG.Actor.dataModels = {
character: models.BoLCharacter,
encounter: models.BoLEncounter,
horde: models.BoLHorde,
vehicle: models.BoLVehicle
}
CONFIG.Item.dataModels = {
item: models.BoLItem,
feature: models.BoLFeature
}
```
## Compatibilité
Les DataModels sont compatibles avec le `template.json` existant. La migration est transparente pour les données existantes.
## Prochaines étapes
1. Ajouter `prepareDerivedData()` pour les calculs automatiques
2. Migrer la logique métier depuis actor.js
3. Ajouter des validations personnalisées
4. Documenter avec JSDoc

View File

@@ -1 +1 @@
MANIFEST-001084
MANIFEST-001105

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.197185 7f766a3fe6c0 Delete type=3 #1
2026/03/16-20:16:08.421989 7f7668bfb6c0 Level-0 table #1087: started
2026/03/16-20:16:08.422032 7f7668bfb6c0 Level-0 table #1087: 0 bytes OK
2026/03/16-20:16:08.428629 7f7668bfb6c0 Delete type=0 #1085
2026/03/16-20:16:08.454903 7f7668bfb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1
2026/03/16-20:16:08.454928 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.459641 7f7668bfb6c0 Generated table #1088@0: 24 keys, 28007 bytes
2026/03/16-20:16:08.459663 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 28007 bytes
2026/03/16-20:16:08.466040 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.466219 7f7668bfb6c0 Delete type=2 #774
2026/03/16-20:16:08.488702 7f7668bfb6c0 Manual compaction at level-0 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.991987 7ff9c7fff6c0 Recovering log #1103
2026/03/31-20:06:54.001305 7ff9c7fff6c0 Delete type=3 #1101
2026/03/31-20:06:54.001357 7ff9c7fff6c0 Delete type=0 #1103
2026/03/31-20:07:15.402162 7ff7477ef6c0 Level-0 table #1108: started
2026/03/31-20:07:15.402189 7ff7477ef6c0 Level-0 table #1108: 0 bytes OK
2026/03/31-20:07:15.409398 7ff7477ef6c0 Delete type=0 #1106
2026/03/31-20:07:15.409627 7ff7477ef6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.175786 7f766a3fe6c0 Log #1082: 0 ops saved to Table #1083 OK
2026/03/16-19:46:09.176080 7f766a3fe6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu/001082.log: OK
2026/03/16-19:46:09.177100 7f766a3fe6c0 Table #774: 24 entries OK
2026/03/16-19:46:09.180960 7f766a3fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu; recovered 1 files; 28007 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.078470 7ff9c7fff6c0 Recovering log #1099
2026/03/31-14:46:22.102288 7ff9c7fff6c0 Delete type=3 #1097
2026/03/31-14:46:22.102356 7ff9c7fff6c0 Delete type=0 #1099
2026/03/31-14:51:39.421905 7ff7477ef6c0 Level-0 table #1104: started
2026/03/31-14:51:39.421933 7ff7477ef6c0 Level-0 table #1104: 0 bytes OK
2026/03/31-14:51:39.492511 7ff7477ef6c0 Delete type=0 #1102
2026/03/31-14:51:39.632201 7ff7477ef6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000989
MANIFEST-001010

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.143692 7f7669bfd6c0 Delete type=3 #1
2026/03/16-20:16:08.436084 7f7668bfb6c0 Level-0 table #992: started
2026/03/16-20:16:08.436127 7f7668bfb6c0 Level-0 table #992: 0 bytes OK
2026/03/16-20:16:08.443698 7f7668bfb6c0 Delete type=0 #990
2026/03/16-20:16:08.477884 7f7668bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 42 : 1
2026/03/16-20:16:08.477902 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.481701 7f7668bfb6c0 Generated table #993@0: 6 keys, 5424 bytes
2026/03/16-20:16:08.481748 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 5424 bytes
2026/03/16-20:16:08.488315 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.488463 7f7668bfb6c0 Delete type=2 #679
2026/03/16-20:16:08.488751 7f7668bfb6c0 Manual compaction at level-0 from '!items!xhEcsi3WHjbt2ro9' @ 42 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.966374 7ff9fd1fe6c0 Recovering log #1008
2026/03/31-20:06:53.976141 7ff9fd1fe6c0 Delete type=3 #1006
2026/03/31-20:06:53.976208 7ff9fd1fe6c0 Delete type=0 #1008
2026/03/31-20:07:15.381727 7ff7477ef6c0 Level-0 table #1013: started
2026/03/31-20:07:15.381754 7ff7477ef6c0 Level-0 table #1013: 0 bytes OK
2026/03/31-20:07:15.388075 7ff7477ef6c0 Delete type=0 #1011
2026/03/31-20:07:15.409588 7ff7477ef6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.120613 7f7669bfd6c0 Log #987: 0 ops saved to Table #988 OK
2026/03/16-19:46:09.120850 7f7669bfd6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors/000987.log: OK
2026/03/16-19:46:09.121424 7f7669bfd6c0 Table #679: 6 entries OK
2026/03/16-19:46:09.125224 7f7669bfd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors; recovered 1 files; 5424 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.050419 7ff9fd9ff6c0 Recovering log #1004
2026/03/31-14:46:22.061129 7ff9fd9ff6c0 Delete type=3 #1002
2026/03/31-14:46:22.061186 7ff9fd9ff6c0 Delete type=0 #1004
2026/03/31-14:51:39.282491 7ff7477ef6c0 Level-0 table #1009: started
2026/03/31-14:51:39.282521 7ff7477ef6c0 Level-0 table #1009: 0 bytes OK
2026/03/31-14:51:39.343764 7ff7477ef6c0 Delete type=0 #1007
2026/03/31-14:51:39.421893 7ff7477ef6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001104

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:08.857890 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.265157 7f7668bfb6c0 Level-0 table #1086: started
2026/03/16-20:16:08.265207 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/16-20:16:08.272133 7f7668bfb6c0 Delete type=0 #1084
2026/03/16-20:16:08.299945 7f7668bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 533 : 1
2026/03/16-20:16:08.299966 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.305068 7f7668bfb6c0 Generated table #1087@0: 61 keys, 20970 bytes
2026/03/16-20:16:08.305111 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 20970 bytes
2026/03/16-20:16:08.311829 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.312005 7f7668bfb6c0 Delete type=2 #843
2026/03/16-20:16:08.335606 7f7668bfb6c0 Manual compaction at level-0 from '!items!zgspy1QKaxdEetEw' @ 533 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.857244 7ff9c7fff6c0 Recovering log #1102
2026/03/31-20:06:53.867361 7ff9c7fff6c0 Delete type=3 #1100
2026/03/31-20:06:53.867406 7ff9c7fff6c0 Delete type=0 #1102
2026/03/31-20:07:15.333382 7ff7477ef6c0 Level-0 table #1107: started
2026/03/31-20:07:15.333411 7ff7477ef6c0 Level-0 table #1107: 0 bytes OK
2026/03/31-20:07:15.339801 7ff7477ef6c0 Delete type=0 #1105
2026/03/31-20:07:15.353373 7ff7477ef6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:08.539383 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/03/16-19:46:08.539570 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons/001081.log: OK
2026/03/16-19:46:08.540406 7f766abff6c0 Table #843: 61 entries OK
2026/03/16-19:46:08.544540 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons; recovered 1 files; 20970 bytes. Some data may have been lost. ****
2026/03/31-14:46:21.936175 7ff9fc9fd6c0 Recovering log #1098
2026/03/31-14:46:21.946959 7ff9fc9fd6c0 Delete type=3 #1096
2026/03/31-14:46:21.947024 7ff9fc9fd6c0 Delete type=0 #1098
2026/03/31-14:51:38.889578 7ff7477ef6c0 Level-0 table #1103: started
2026/03/31-14:51:38.889609 7ff7477ef6c0 Level-0 table #1103: 0 bytes OK
2026/03/31-14:51:38.959453 7ff7477ef6c0 Delete type=0 #1101
2026/03/31-14:51:39.078798 7ff7477ef6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/boons/MANIFEST-001104 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:08.909016 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.272330 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.272372 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.279546 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.312273 7f7668bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 64 : 1
2026/03/16-20:16:08.312291 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.316030 7f7668bfb6c0 Generated table #1086@0: 8 keys, 2453 bytes
2026/03/16-20:16:08.316070 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 2453 bytes
2026/03/16-20:16:08.323057 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.323234 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335626 7f7668bfb6c0 Manual compaction at level-0 from '!items!yofwG0YrsL902G77' @ 64 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.872789 7ff9fc9fd6c0 Recovering log #1101
2026/03/31-20:06:53.882612 7ff9fc9fd6c0 Delete type=3 #1099
2026/03/31-20:06:53.882655 7ff9fc9fd6c0 Delete type=0 #1101
2026/03/31-20:07:15.346737 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.346766 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.353211 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.353392 7ff7477ef6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:08.865328 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:08.865565 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures/001080.log: OK
2026/03/16-19:46:08.865990 7f76693fc6c0 Table #772: 8 entries OK
2026/03/16-19:46:08.869744 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures; recovered 1 files; 2453 bytes. Some data may have been lost. ****
2026/03/31-14:46:21.951356 7ff9fd1fe6c0 Recovering log #1097
2026/03/31-14:46:21.961416 7ff9fd1fe6c0 Delete type=3 #1095
2026/03/31-14:46:21.961501 7ff9fd1fe6c0 Delete type=0 #1097
2026/03/31-14:51:38.959612 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:38.959651 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.018752 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.143657 7ff7477ef6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.002243 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.279807 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.279852 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.287482 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.323479 7f7668bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 215 : 1
2026/03/16-20:16:08.323495 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.328403 7f7668bfb6c0 Generated table #1086@0: 27 keys, 42639 bytes
2026/03/16-20:16:08.328434 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 42639 bytes
2026/03/16-20:16:08.335062 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.335267 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335642 7f7668bfb6c0 Manual compaction at level-0 from '!items!zxY3sW0iCJBvwjOS' @ 215 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.899920 7ff9fd9ff6c0 Recovering log #1101
2026/03/31-20:06:53.909847 7ff9fd9ff6c0 Delete type=3 #1099
2026/03/31-20:06:53.909916 7ff9fd9ff6c0 Delete type=0 #1101
2026/03/31-20:07:15.339949 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.339973 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.346571 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.353383 7ff7477ef6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:08.971933 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:08.972193 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers/001080.log: OK
2026/03/16-19:46:08.973605 7f76693fc6c0 Table #772: 27 entries OK
2026/03/16-19:46:08.977409 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers; recovered 1 files; 42639 bytes. Some data may have been lost. ****
2026/03/31-14:46:21.979659 7ff9fc9fd6c0 Recovering log #1097
2026/03/31-14:46:21.989353 7ff9fc9fd6c0 Delete type=3 #1095
2026/03/31-14:46:21.989419 7ff9fc9fd6c0 Delete type=0 #1097
2026/03/31-14:51:38.683653 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:38.683703 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:38.749228 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:38.889551 7ff7477ef6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001080
MANIFEST-001101

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.384452 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.596026 7f7668bfb6c0 Level-0 table #1083: started
2026/03/16-20:16:08.596072 7f7668bfb6c0 Level-0 table #1083: 0 bytes OK
2026/03/16-20:16:08.604284 7f7668bfb6c0 Delete type=0 #1081
2026/03/16-20:16:08.616512 7f7668bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 24 : 1
2026/03/16-20:16:08.616529 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.620595 7f7668bfb6c0 Generated table #1084@0: 4 keys, 990 bytes
2026/03/16-20:16:08.620628 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 990 bytes
2026/03/16-20:16:08.627657 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.627801 7f7668bfb6c0 Delete type=2 #770
2026/03/16-20:16:08.667532 7f7668bfb6c0 Manual compaction at level-0 from '!items!zwSNMO9HpiqUCMt8' @ 24 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.082205 7ff9fc9fd6c0 Recovering log #1099
2026/03/31-20:06:54.093327 7ff9fc9fd6c0 Delete type=3 #1097
2026/03/31-20:06:54.093384 7ff9fc9fd6c0 Delete type=0 #1099
2026/03/31-20:07:15.444437 7ff7477ef6c0 Level-0 table #1104: started
2026/03/31-20:07:15.444468 7ff7477ef6c0 Level-0 table #1104: 0 bytes OK
2026/03/31-20:07:15.450792 7ff7477ef6c0 Delete type=0 #1102
2026/03/31-20:07:15.465290 7ff7477ef6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.364109 7f766abff6c0 Log #1078: 0 ops saved to Table #1079 OK
2026/03/16-19:46:09.364398 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples/001078.log: OK
2026/03/16-19:46:09.364562 7f766abff6c0 Table #770: 4 entries OK
2026/03/16-19:46:09.368408 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples; recovered 1 files; 990 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.190057 7ff9fd1fe6c0 Recovering log #1095
2026/03/31-14:46:22.200351 7ff9fd1fe6c0 Delete type=3 #1093
2026/03/31-14:46:22.200449 7ff9fd1fe6c0 Delete type=0 #1095
2026/03/31-14:51:40.071820 7ff7477ef6c0 Level-0 table #1100: started
2026/03/31-14:51:40.071876 7ff7477ef6c0 Level-0 table #1100: 0 bytes OK
2026/03/31-14:51:40.145396 7ff7477ef6c0 Delete type=0 #1098
2026/03/31-14:51:40.339229 7ff7477ef6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001104

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.085657 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.351512 7f7668bfb6c0 Level-0 table #1086: started
2026/03/16-20:16:08.351558 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/16-20:16:08.358533 7f7668bfb6c0 Delete type=0 #1084
2026/03/16-20:16:08.390133 7f7668bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 499 : 1
2026/03/16-20:16:08.390150 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.394184 7f7668bfb6c0 Generated table #1087@0: 43 keys, 9886 bytes
2026/03/16-20:16:08.394206 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 9886 bytes
2026/03/16-20:16:08.401465 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.401654 7f7668bfb6c0 Delete type=2 #773
2026/03/16-20:16:08.413820 7f7668bfb6c0 Manual compaction at level-0 from '!items!yE8UH6YAgNGjKDEu' @ 499 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.939108 7ff9fd9ff6c0 Recovering log #1102
2026/03/31-20:06:53.949583 7ff9fd9ff6c0 Delete type=3 #1100
2026/03/31-20:06:53.949633 7ff9fd9ff6c0 Delete type=0 #1102
2026/03/31-20:07:15.353516 7ff7477ef6c0 Level-0 table #1107: started
2026/03/31-20:07:15.353537 7ff7477ef6c0 Level-0 table #1107: 0 bytes OK
2026/03/31-20:07:15.360004 7ff7477ef6c0 Delete type=0 #1105
2026/03/31-20:07:15.381550 7ff7477ef6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.065759 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/03/16-19:46:09.065989 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment/001081.log: OK
2026/03/16-19:46:09.066756 7f766abff6c0 Table #773: 43 entries OK
2026/03/16-19:46:09.070319 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment; recovered 1 files; 9886 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.022217 7ff9fd1fe6c0 Recovering log #1098
2026/03/31-14:46:22.031799 7ff9fd1fe6c0 Delete type=3 #1096
2026/03/31-14:46:22.031876 7ff9fd1fe6c0 Delete type=0 #1098
2026/03/31-14:51:39.078812 7ff7477ef6c0 Level-0 table #1103: started
2026/03/31-14:51:39.078841 7ff7477ef6c0 Level-0 table #1103: 0 bytes OK
2026/03/31-14:51:39.143521 7ff7477ef6c0 Delete type=0 #1101
2026/03/31-14:51:39.208918 7ff7477ef6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.274487 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.497329 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.497368 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.504561 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.531656 7f7668bfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at '!items!vGydqADwTsHZ9B3j' @ 189 : 1
2026/03/16-20:16:08.531672 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.535598 7f7668bfb6c0 Generated table #1086@0: 8 keys, 3773 bytes
2026/03/16-20:16:08.535643 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 3773 bytes
2026/03/16-20:16:08.542636 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.542859 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.567841 7f7668bfb6c0 Manual compaction at level-0 from '!items!vGydqADwTsHZ9B3j' @ 189 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.031544 7ff9fd1fe6c0 Recovering log #1101
2026/03/31-20:06:54.041287 7ff9fd1fe6c0 Delete type=3 #1099
2026/03/31-20:06:54.041342 7ff9fd1fe6c0 Delete type=0 #1101
2026/03/31-20:07:15.416507 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.416537 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.423296 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.437157 7ff7477ef6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.255299 7f766abff6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.255545 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptions/001080.log: OK
2026/03/16-19:46:09.255893 7f766abff6c0 Table #772: 8 entries OK
2026/03/16-19:46:09.259507 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptions; recovered 1 files; 3773 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.132692 7ff9fd1fe6c0 Recovering log #1097
2026/03/31-14:46:22.143399 7ff9fd1fe6c0 Delete type=3 #1095
2026/03/31-14:46:22.143467 7ff9fd1fe6c0 Delete type=0 #1097
2026/03/31-14:51:39.562744 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.562775 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.632049 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.698800 7ff7477ef6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000565
MANIFEST-000586

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.300193 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.488964 7f7668bfb6c0 Level-0 table #568: started
2026/03/16-20:16:08.489008 7f7668bfb6c0 Level-0 table #568: 0 bytes OK
2026/03/16-20:16:08.497158 7f7668bfb6c0 Delete type=0 #566
2026/03/16-20:16:08.519485 7f7668bfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at '!items!wYEpnhbyYaMkaNdL' @ 150 : 1
2026/03/16-20:16:08.519501 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.523489 7f7668bfb6c0 Generated table #569@0: 22 keys, 11387 bytes
2026/03/16-20:16:08.523515 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 11387 bytes
2026/03/16-20:16:08.531272 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.531422 7f7668bfb6c0 Delete type=2 #255
2026/03/16-20:16:08.567803 7f7668bfb6c0 Manual compaction at level-0 from '!items!wYEpnhbyYaMkaNdL' @ 150 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.043863 7ff9fd9ff6c0 Recovering log #584
2026/03/31-20:06:54.054130 7ff9fd9ff6c0 Delete type=3 #582
2026/03/31-20:06:54.054200 7ff9fd9ff6c0 Delete type=0 #584
2026/03/31-20:07:15.409740 7ff7477ef6c0 Level-0 table #589: started
2026/03/31-20:07:15.409767 7ff7477ef6c0 Level-0 table #589: 0 bytes OK
2026/03/31-20:07:15.416319 7ff7477ef6c0 Delete type=0 #587
2026/03/31-20:07:15.437145 7ff7477ef6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.280219 7f766abff6c0 Log #563: 0 ops saved to Table #564 OK
2026/03/16-19:46:09.280428 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptionsfanmade/000563.log: OK
2026/03/16-19:46:09.281032 7f766abff6c0 Table #255: 22 entries OK
2026/03/16-19:46:09.284890 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptionsfanmade; recovered 1 files; 11387 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.147793 7ff9fd9ff6c0 Recovering log #580
2026/03/31-14:46:22.157625 7ff9fd9ff6c0 Delete type=3 #578
2026/03/31-14:46:22.157691 7ff9fd9ff6c0 Delete type=0 #580
2026/03/31-14:51:39.632217 7ff7477ef6c0 Level-0 table #585: started
2026/03/31-14:51:39.632248 7ff7477ef6c0 Level-0 table #585: 0 bytes OK
2026/03/31-14:51:39.698676 7ff7477ef6c0 Delete type=0 #583
2026/03/31-14:51:39.756392 7ff7477ef6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001083
MANIFEST-001104

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:08.965448 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.257326 7f7668bfb6c0 Level-0 table #1086: started
2026/03/16-20:16:08.257444 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/16-20:16:08.264900 7f7668bfb6c0 Delete type=0 #1084
2026/03/16-20:16:08.287786 7f7668bfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 389 : 1
2026/03/16-20:16:08.287804 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.292298 7f7668bfb6c0 Generated table #1087@0: 44 keys, 16594 bytes
2026/03/16-20:16:08.292330 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 16594 bytes
2026/03/16-20:16:08.299319 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.299541 7f7668bfb6c0 Delete type=2 #843
2026/03/16-20:16:08.335584 7f7668bfb6c0 Manual compaction at level-0 from '!items!znd0K3b7HzYpdehs' @ 389 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.886779 7ff9fd1fe6c0 Recovering log #1102
2026/03/31-20:06:53.896326 7ff9fd1fe6c0 Delete type=3 #1100
2026/03/31-20:06:53.896392 7ff9fd1fe6c0 Delete type=0 #1102
2026/03/31-20:07:15.324903 7ff7477ef6c0 Level-0 table #1107: started
2026/03/31-20:07:15.324990 7ff7477ef6c0 Level-0 table #1107: 0 bytes OK
2026/03/31-20:07:15.333195 7ff7477ef6c0 Delete type=0 #1105
2026/03/31-20:07:15.353362 7ff7477ef6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:08.915033 7f76693fc6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/03/16-19:46:08.915328 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/flaws/001081.log: OK
2026/03/16-19:46:08.916460 7f76693fc6c0 Table #843: 44 entries OK
2026/03/16-19:46:08.920158 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/flaws; recovered 1 files; 16594 bytes. Some data may have been lost. ****
2026/03/31-14:46:21.964896 7ff9fd9ff6c0 Recovering log #1098
2026/03/31-14:46:21.975425 7ff9fd9ff6c0 Delete type=3 #1096
2026/03/31-14:46:21.975499 7ff9fd9ff6c0 Delete type=0 #1098
2026/03/31-14:51:38.819904 7ff7477ef6c0 Level-0 table #1103: started
2026/03/31-14:51:38.819927 7ff7477ef6c0 Level-0 table #1103: 0 bytes OK
2026/03/31-14:51:38.889404 7ff7477ef6c0 Delete type=0 #1101
2026/03/31-14:51:38.959597 7ff7477ef6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/flaws/MANIFEST-001104 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.224301 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.504805 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.504852 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.512168 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.543143 7f7668bfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at '!items!vaAQiuAHdyQrQiUX' @ 149 : 1
2026/03/16-20:16:08.543161 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.547871 7f7668bfb6c0 Generated table #1086@0: 18 keys, 7450 bytes
2026/03/16-20:16:08.547900 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 7450 bytes
2026/03/16-20:16:08.554898 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.555057 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.567873 7f7668bfb6c0 Manual compaction at level-0 from '!items!vaAQiuAHdyQrQiUX' @ 149 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.004766 7ff9fd9ff6c0 Recovering log #1101
2026/03/31-20:06:54.014532 7ff9fd9ff6c0 Delete type=3 #1099
2026/03/31-20:06:54.014594 7ff9fd9ff6c0 Delete type=0 #1101
2026/03/31-20:07:15.395636 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.395675 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.401990 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.409615 7ff7477ef6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.203644 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.203945 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/languages/001080.log: OK
2026/03/16-19:46:09.204343 7f76693fc6c0 Table #772: 18 entries OK
2026/03/16-19:46:09.208117 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/languages; recovered 1 files; 7450 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.106615 7ff9fd9ff6c0 Recovering log #1097
2026/03/31-14:46:22.117005 7ff9fd9ff6c0 Delete type=3 #1095
2026/03/31-14:46:22.117066 7ff9fd9ff6c0 Delete type=0 #1097
2026/03/31-14:51:39.343923 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.343954 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.421739 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.492649 7ff7477ef6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.357997 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.568156 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.568247 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.575396 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.604560 7f7668bfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at '!items!xVWrSPiX0Nwccsn6' @ 336 : 1
2026/03/16-20:16:08.604578 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.609023 7f7668bfb6c0 Generated table #1086@0: 42 keys, 14599 bytes
2026/03/16-20:16:08.609049 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 14599 bytes
2026/03/16-20:16:08.615902 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.616116 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.628018 7f7668bfb6c0 Manual compaction at level-0 from '!items!xVWrSPiX0Nwccsn6' @ 336 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.069608 7ff9fd1fe6c0 Recovering log #1101
2026/03/31-20:06:54.079242 7ff9fd1fe6c0 Delete type=3 #1099
2026/03/31-20:06:54.079310 7ff9fd1fe6c0 Delete type=0 #1101
2026/03/31-20:07:15.437295 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.437317 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.444242 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.465274 7ff7477ef6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.336145 7f766abff6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.336477 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/objets-alchimie/001080.log: OK
2026/03/16-19:46:09.337943 7f766abff6c0 Table #772: 42 entries OK
2026/03/16-19:46:09.342094 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/objets-alchimie; recovered 1 files; 14599 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.176712 7ff9c7fff6c0 Recovering log #1097
2026/03/31-14:46:22.186847 7ff9c7fff6c0 Delete type=3 #1095
2026/03/31-14:46:22.186918 7ff9c7fff6c0 Delete type=0 #1097
2026/03/31-14:51:39.756405 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.756437 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.830263 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:40.004547 7ff7477ef6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.034192 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.335957 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.336003 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.344170 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.366440 7f7668bfb6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at '!items!zIlZmEd9WAA473UX' @ 176 : 1
2026/03/16-20:16:08.366467 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.371241 7f7668bfb6c0 Generated table #1086@0: 22 keys, 23064 bytes
2026/03/16-20:16:08.371284 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 23064 bytes
2026/03/16-20:16:08.378042 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.378168 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.413780 7f7668bfb6c0 Manual compaction at level-0 from '!items!zIlZmEd9WAA473UX' @ 176 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.913243 7ff9fc9fd6c0 Recovering log #1101
2026/03/31-20:06:53.922930 7ff9fc9fd6c0 Delete type=3 #1099
2026/03/31-20:06:53.923003 7ff9fc9fd6c0 Delete type=0 #1101
2026/03/31-20:07:15.367148 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.367174 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.373568 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.381581 7ff7477ef6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.007873 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.008104 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/origins/001080.log: OK
2026/03/16-19:46:09.009307 7f76693fc6c0 Table #772: 22 entries OK
2026/03/16-19:46:09.012892 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/origins; recovered 1 files; 23064 bytes. Some data may have been lost. ****
2026/03/31-14:46:21.993898 7ff9c7fff6c0 Recovering log #1097
2026/03/31-14:46:22.003927 7ff9c7fff6c0 Delete type=3 #1095
2026/03/31-14:46:22.003996 7ff9c7fff6c0 Delete type=0 #1097
2026/03/31-14:51:38.749350 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:38.749373 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:38.819795 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:38.889564 7ff7477ef6c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.328874 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.512372 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.512412 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.519256 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.555301 7f7668bfb6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at '!items!y9NHZCxKXMZEqcRo' @ 296 : 1
2026/03/16-20:16:08.555318 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.559450 7f7668bfb6c0 Generated table #1086@0: 37 keys, 13209 bytes
2026/03/16-20:16:08.559472 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 13209 bytes
2026/03/16-20:16:08.567215 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.567418 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.567896 7f7668bfb6c0 Manual compaction at level-0 from '!items!y9NHZCxKXMZEqcRo' @ 296 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.057014 7ff9c7fff6c0 Recovering log #1101
2026/03/31-20:06:54.066942 7ff9c7fff6c0 Delete type=3 #1099
2026/03/31-20:06:54.067005 7ff9c7fff6c0 Delete type=0 #1101
2026/03/31-20:07:15.430649 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.430684 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.436984 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.437177 7ff7477ef6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.305898 7f766abff6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.306152 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/potions-alchimie/001080.log: OK
2026/03/16-19:46:09.306952 7f766abff6c0 Table #772: 37 entries OK
2026/03/16-19:46:09.311258 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/potions-alchimie; recovered 1 files; 13209 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.162170 7ff9fc9fd6c0 Recovering log #1097
2026/03/31-14:46:22.173336 7ff9fc9fd6c0 Delete type=3 #1095
2026/03/31-14:46:22.173419 7ff9fc9fd6c0 Delete type=0 #1097
2026/03/31-14:51:39.698810 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.698834 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.756238 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.907908 7ff7477ef6c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.060333 7f76693fc6c0 Delete type=3 #1
2026/03/16-20:16:08.344394 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.344437 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.351243 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.378402 7f7668bfb6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at '!items!oWexVALVtDXmedMy' @ 64 : 1
2026/03/16-20:16:08.378419 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.383166 7f7668bfb6c0 Generated table #1086@0: 8 keys, 11498 bytes
2026/03/16-20:16:08.383209 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 11498 bytes
2026/03/16-20:16:08.389762 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.389913 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.413802 7f7668bfb6c0 Manual compaction at level-0 from '!items!oWexVALVtDXmedMy' @ 64 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2026/03/31-20:06:53.925967 7ff9fd1fe6c0 Recovering log #1101
2026/03/31-20:06:53.935499 7ff9fd1fe6c0 Delete type=3 #1099
2026/03/31-20:06:53.935550 7ff9fd1fe6c0 Delete type=0 #1101
2026/03/31-20:07:15.360178 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.360204 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.366977 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.381567 7ff7477ef6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.039613 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.039846 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/races/001080.log: OK
2026/03/16-19:46:09.040452 7f76693fc6c0 Table #772: 8 entries OK
2026/03/16-19:46:09.044037 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/races; recovered 1 files; 11498 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.007264 7ff9fd9ff6c0 Recovering log #1097
2026/03/31-14:46:22.017900 7ff9fd9ff6c0 Delete type=3 #1095
2026/03/31-14:46:22.017957 7ff9fd9ff6c0 Delete type=0 #1097
2026/03/31-14:51:39.018917 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.018956 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.078678 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.143670 7ff7477ef6c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/races/MANIFEST-001103 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001082
MANIFEST-001103

View File

@@ -1,11 +1,7 @@
2026/03/16-19:46:09.249592 7f766abff6c0 Delete type=3 #1
2026/03/16-20:16:08.414067 7f7668bfb6c0 Level-0 table #1085: started
2026/03/16-20:16:08.414108 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/16-20:16:08.421789 7f7668bfb6c0 Delete type=0 #1083
2026/03/16-20:16:08.443904 7f7668bfb6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at '!items!zq5h9kCpo8gK4oIH' @ 32 : 1
2026/03/16-20:16:08.443920 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/16-20:16:08.447690 7f7668bfb6c0 Generated table #1086@0: 4 keys, 3389 bytes
2026/03/16-20:16:08.447718 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 3389 bytes
2026/03/16-20:16:08.454489 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.454645 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.488681 7f7668bfb6c0 Manual compaction at level-0 from '!items!zq5h9kCpo8gK4oIH' @ 32 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2026/03/31-20:06:54.017077 7ff9c7fff6c0 Recovering log #1101
2026/03/31-20:06:54.027830 7ff9c7fff6c0 Delete type=3 #1099
2026/03/31-20:06:54.027893 7ff9c7fff6c0 Delete type=0 #1101
2026/03/31-20:07:15.423465 7ff7477ef6c0 Level-0 table #1106: started
2026/03/31-20:07:15.423492 7ff7477ef6c0 Level-0 table #1106: 0 bytes OK
2026/03/31-20:07:15.430474 7ff7477ef6c0 Delete type=0 #1104
2026/03/31-20:07:15.437167 7ff7477ef6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@@ -1,4 +1,7 @@
2026/03/16-19:46:09.229822 7f766abff6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/03/16-19:46:09.230058 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/spells/001080.log: OK
2026/03/16-19:46:09.230725 7f766abff6c0 Table #772: 4 entries OK
2026/03/16-19:46:09.234346 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/spells; recovered 1 files; 3389 bytes. Some data may have been lost. ****
2026/03/31-14:46:22.119526 7ff9c7fff6c0 Recovering log #1097
2026/03/31-14:46:22.129435 7ff9c7fff6c0 Delete type=3 #1095
2026/03/31-14:46:22.129505 7ff9c7fff6c0 Delete type=0 #1097
2026/03/31-14:51:39.492666 7ff7477ef6c0 Level-0 table #1102: started
2026/03/31-14:51:39.492693 7ff7477ef6c0 Level-0 table #1102: 0 bytes OK
2026/03/31-14:51:39.562609 7ff7477ef6c0 Delete type=0 #1100
2026/03/31-14:51:39.698790 7ff7477ef6c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

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