Compare commits
2 Commits
5c4c6d73ee
...
bol-v11.1.
Author | SHA1 | Date | |
---|---|---|---|
5de40d4998 | |||
c7c26c0033 |
13
lang/fr.json
13
lang/fr.json
@ -139,6 +139,12 @@
|
||||
"BOL.ui.registerInit": "Enregistrer comme Init. de combat",
|
||||
"BOL.ui.initMalus": "Malus d'initiative",
|
||||
"BOL.ui.magicnewrules": "Règles supplémentaires (cf. supplément fan-made Sorcellerie!)",
|
||||
"BOL.ui.other":"Autre",
|
||||
"BOL.ui.career":"Carrière",
|
||||
"BOL.ui.boon":"Avantage",
|
||||
"BOL.ui.flaw":"Désanvatage",
|
||||
"BOL.ui.cost":"Cout XP",
|
||||
"BOL.ui.date":"Date",
|
||||
|
||||
"BOL.ui.isSorcerer": "Carrière de Sorcier ?",
|
||||
"BOL.ui.isAlchemist": "Carrière d'Alchimiste ?",
|
||||
@ -251,6 +257,7 @@
|
||||
"BOL.featureSubtypes.effects": "Effets",
|
||||
"BOL.featureSubtypes.boleffect": "Effet",
|
||||
"BOL.featureSubtypes.horoscope": "Horoscope",
|
||||
"BOL.featureSubtypes.xplog": "Log d'XP",
|
||||
|
||||
"BOL.fightOptionTypes.armor": "Attaque au défaut d'armure",
|
||||
"BOL.fightOptionTypes.intrepid": "Attaque intrépide",
|
||||
@ -581,6 +588,8 @@
|
||||
"BOL.ui.biosigns": "Signes distinctifs",
|
||||
"BOL.ui.biodescription": "Description",
|
||||
"BOL.ui.bionotes": "Notes",
|
||||
"BOL.ui.xplog":"Journal d'XP",
|
||||
"BOL.ui.value":"Valeur",
|
||||
|
||||
"BOL.chat.welcome1": "Bienvenue dans Barbarians of Lemuria (Ludospherik version)",
|
||||
"BOL.chat.welcome2": "Les livres nécessaires pour jouer sont disponibles sur le site de <a href='http://www.ludospherik.fr/content/14-barbarians-of-lemuria'>l'éditeur Ludospherik.</a>",
|
||||
@ -589,6 +598,10 @@
|
||||
"BOL.chat.welcome5": "Consulter l'aide en ligne pour plus d'informations : @UUID[Compendium.bol.aides-de-jeu.97rugQOtiwt8zPfQ]{Aide du Jeu}.",
|
||||
"BOL.chat.welcome6": "Bon jeu en Lemurie !",
|
||||
"BOL.chat.nodamage": "Ne pas appliquer les dommages",
|
||||
"BOL.chat.pcwarning": "Attention ! Aucun personnage n'est relié au joueur !",
|
||||
"BOL.chat.pcwarningmsg": "<b>ATTENTION</b> Le joueur n'est relié à aucun personnage !",
|
||||
"BOL.chat.pcnotlinked": "Le token du personnage joueur n'est pas relié à l'acteur",
|
||||
"BOL.chat.pcnotlinkedmsg": "<b>ATTENTION</b> Le token du personnage joueur n'est pas relié à l'acteur !",
|
||||
|
||||
"BOL.settings.rollArmor": "Effectuer des jets pour les armures",
|
||||
"BOL.settings.rollArmorTooltip": "Effectue un jet de dés pour les armures (valeur fixe si désactivé)",
|
||||
|
@ -27,7 +27,7 @@ export class BoLActorSheet extends ActorSheet {
|
||||
|
||||
function onLoad() {
|
||||
let logoSheet = BoLUtility.getLogoActorSheet()
|
||||
$(".bol-actor-form").css("backgroundImage",`url(${logoSheet})`)
|
||||
$(".bol-actor-form").css("backgroundImage", `url(${logoSheet})`)
|
||||
}
|
||||
// Setup everything onload
|
||||
$(function () { onLoad(); });
|
||||
@ -147,6 +147,7 @@ export class BoLActorSheet extends ActorSheet {
|
||||
formData.fightoptions = this.actor.fightoptions
|
||||
formData.ammos = this.actor.ammos
|
||||
formData.misc = this.actor.misc
|
||||
formData.xplog = this.actor.xplog
|
||||
formData.combat = this.actor.buildCombat()
|
||||
formData.initiativeRank = this.actor.getInitiativeRank()
|
||||
//formData.combatCreature = this.actor.buildCombatCreature()
|
||||
@ -155,12 +156,12 @@ export class BoLActorSheet extends ActorSheet {
|
||||
formData.options = this.options
|
||||
formData.owner = this.document.isOwner
|
||||
formData.editScore = this.options.editScore
|
||||
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
|
||||
formData.useBougette = (this.actor.type == "character" && BoLUtility.getUseBougette()) || false
|
||||
formData.bougette = this.actor.getBougette()
|
||||
formData.charType = this.actor.getCharType()
|
||||
formData.villainy = this.actor.getVillainy()
|
||||
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", {async: true})
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", {async: true})
|
||||
formData.villainy = this.actor.getVillainy()
|
||||
formData.biography = await TextEditor.enrichHTML(this.object.system.details?.biography || "", { async: true })
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.details.notes || "", { async: true })
|
||||
formData.isSorcerer = this.actor.isSorcerer()
|
||||
formData.isAlchemist = this.actor.isAlchemist()
|
||||
formData.isAstrologer = this.actor.isAstrologer()
|
||||
@ -248,22 +249,22 @@ export class BoLActorSheet extends ActorSheet {
|
||||
case "attributexp":
|
||||
this.actor.incAttributeXP(dataset.key)
|
||||
break;
|
||||
case "bougette":
|
||||
this.actor.rollBougette()
|
||||
break;
|
||||
case "careerxp":
|
||||
this.actor.incCareerXP( li.data("item-id"))
|
||||
this.actor.incCareerXP(li.data("item-id"))
|
||||
break;
|
||||
case "horoscope-minor":
|
||||
BoLRoll.horoscopeCheck(this.actor, event, "minor")
|
||||
break
|
||||
case "horoscope-major":
|
||||
BoLRoll.horoscopeCheck(this.actor, event, "major")
|
||||
break
|
||||
break
|
||||
case "horoscope-major-group":
|
||||
BoLRoll.horoscopeCheck(this.actor, event, "majorgroup")
|
||||
break
|
||||
|
||||
break
|
||||
case "bougette":
|
||||
this.actor.rollBougette()
|
||||
break;
|
||||
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
@ -204,6 +204,24 @@ export class BoLActor extends Actor {
|
||||
return undefined
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
addXPLog(type, name, cost, value) {
|
||||
let xplog = {
|
||||
name: "XP : "+game.i18n.localize(type), type: "feature",
|
||||
img: "icons/magic/symbols/chevron-elipse-circle-blue.webp",
|
||||
system: {
|
||||
subtype: "xplog", properties: {
|
||||
xptype: type,
|
||||
xpdate: new Date().toLocaleDateString(),
|
||||
xpname: name,
|
||||
xpcost: cost,
|
||||
xpvalue: value
|
||||
}
|
||||
}
|
||||
}
|
||||
this.createEmbeddedDocuments('Item', [xplog])
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
incAttributeXP(key) {
|
||||
let attr = duplicate(this.system.attributes[key])
|
||||
@ -214,6 +232,7 @@ export class BoLActor extends Actor {
|
||||
attr.value += 1
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.attributes.${key}`]: attr, [`system.xp`]: xp })
|
||||
this.addXPLog("attribute", key, nextXP, attr.value)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -230,6 +249,7 @@ export class BoLActor extends Actor {
|
||||
apt.value += 1
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.aptitudes.${key}`]: apt, [`system.xp`]: xp })
|
||||
this.addXPLog("aptitude", key, nextXP, apt.value)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -246,6 +266,7 @@ export class BoLActor extends Actor {
|
||||
xp.spent += nextXP
|
||||
this.update({ [`system.xp`]: xp })
|
||||
this.updateEmbeddedDocuments('Item', [{ _id: career._id, 'system.rank': career.system.rank + 1 }])
|
||||
this.addXPLog("career", career.name, nextXP, career.system.rank+1)
|
||||
} else {
|
||||
ui.notifications.warn("Pas assez de points d'expérience !")
|
||||
}
|
||||
@ -298,6 +319,9 @@ export class BoLActor extends Actor {
|
||||
get boleffects() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boleffect")
|
||||
}
|
||||
get xplog() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "xplog")
|
||||
}
|
||||
get horoscopes() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "horoscope")
|
||||
}
|
||||
|
@ -15,8 +15,9 @@ import { BoLCombatManager } from "./system/bol-combat.js"
|
||||
import { BoLTokenHud } from "./system/bol-action-hud.js"
|
||||
import { BoLHotbar } from "./system/bol-hotbar.js"
|
||||
import { BoLAdventureGenerator } from "./system/bol-adventure-generator.js"
|
||||
import { BoLCommands} from "./system/bol-commands.js"
|
||||
import { BoLCharacterSummary} from "./system/bol-character-summary.js"
|
||||
import { BoLCommands } from "./system/bol-commands.js"
|
||||
import { BoLCharacterSummary } from "./system/bol-character-summary.js"
|
||||
import { BoLRoll } from "./controllers/bol-rolls.js"
|
||||
|
||||
/* -------------------------------------------- */
|
||||
Hooks.once('init', async function () {
|
||||
@ -25,10 +26,11 @@ Hooks.once('init', async function () {
|
||||
BoLActor,
|
||||
BoLItem,
|
||||
BoLHotbar,
|
||||
BoLRoll,
|
||||
macros: Macros,
|
||||
config: BOL
|
||||
};
|
||||
|
||||
|
||||
// Game socket
|
||||
game.socket.on("system.bol", sockmsg => {
|
||||
BoLUtility.onSocketMessage(sockmsg);
|
||||
@ -43,7 +45,7 @@ Hooks.once('init', async function () {
|
||||
formula: "2d6+@attributes.mind.value+@aptitudes.init.value",
|
||||
decimals: 2
|
||||
};
|
||||
|
||||
|
||||
// Define custom Entity classes
|
||||
CONFIG.Actor.documentClass = BoLActor;
|
||||
CONFIG.Item.documentClass = BoLItem;
|
||||
@ -77,8 +79,8 @@ Hooks.once('init', async function () {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
// Register world usage statistics
|
||||
function registerUsageCount( registerKey ) {
|
||||
if ( game.user.isGM ) {
|
||||
function registerUsageCount(registerKey) {
|
||||
if (game.user.isGM) {
|
||||
game.settings.register(registerKey, "world-key", {
|
||||
name: "Unique world key",
|
||||
scope: "world",
|
||||
@ -88,14 +90,14 @@ function registerUsageCount( registerKey ) {
|
||||
});
|
||||
|
||||
let worldKey = game.settings.get(registerKey, "world-key")
|
||||
if ( worldKey == undefined || worldKey == "" ) {
|
||||
if (worldKey == undefined || worldKey == "") {
|
||||
worldKey = randomID(32)
|
||||
game.settings.set(registerKey, "world-key", worldKey )
|
||||
game.settings.set(registerKey, "world-key", worldKey)
|
||||
}
|
||||
// Simple API counter
|
||||
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
|
||||
//$.ajaxSetup({
|
||||
//headers: { 'Access-Control-Allow-Origin': '*' }
|
||||
//headers: { 'Access-Control-Allow-Origin': '*' }
|
||||
//})
|
||||
$.ajax(regURL)
|
||||
}
|
||||
@ -108,24 +110,40 @@ function welcomeMessage() {
|
||||
whisper: [game.user.id],
|
||||
content: `<div id="welcome-message-pegasus"><span class="rdd-roll-part">
|
||||
<strong>` + game.i18n.localize("BOL.chat.welcome1") + `</strong><p>` +
|
||||
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
|
||||
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
|
||||
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
|
||||
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
|
||||
game.i18n.localize("BOL.chat.welcome6")
|
||||
} )
|
||||
game.i18n.localize("BOL.chat.welcome2") + "<p>" +
|
||||
game.i18n.localize("BOL.chat.welcome3") + "<p>" +
|
||||
game.i18n.localize("BOL.chat.welcome4") + "</p>" +
|
||||
game.i18n.localize("BOL.chat.welcome5") + "<br>" +
|
||||
game.i18n.localize("BOL.chat.welcome6")
|
||||
})
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
Hooks.once('ready', async function () {
|
||||
|
||||
BoLUtility.ready()
|
||||
BoLCharacterSummary.ready()
|
||||
BoLCharacterSummary.ready()
|
||||
|
||||
registerUsageCount(game.system.id)
|
||||
|
||||
|
||||
welcomeMessage()
|
||||
|
||||
// User warning
|
||||
if (!game.user.isGM && game.user.character == undefined) {
|
||||
ui.notifications.info(game.i18n.localize("BOL.chat.pcwarning"));
|
||||
ChatMessage.create({
|
||||
content: game.i18n.localize("BOL.chat.pcwarningmsg") + game.user.name,
|
||||
user: game.user._id
|
||||
});
|
||||
}
|
||||
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
|
||||
ui.notifications.info(game.i18n.localize("BOL.chat.pcnotlinked"));
|
||||
ChatMessage.create({
|
||||
content: game.i18n.localize("BOL.chat.pcnotlinkedmsg") + game.user.name,
|
||||
user: game.user._id
|
||||
});
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
|
||||
|
@ -65,7 +65,6 @@ export class BoLRoll {
|
||||
adv: "0",
|
||||
mod: 0,
|
||||
modRanged: 0,
|
||||
aptValue: 0,
|
||||
bolEffects: actor.boleffects,
|
||||
horoscopeGroupList: this.buildHoroscopeGroupList()
|
||||
}
|
||||
@ -78,7 +77,7 @@ export class BoLRoll {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static attributeCheck(actor, key, event, combatData) {
|
||||
static attributeCheck(actor, key="vigor", event=undefined, combatData=undefined) {
|
||||
|
||||
let attribute = eval(`actor.system.attributes.${key}`)
|
||||
|
||||
@ -91,7 +90,7 @@ export class BoLRoll {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static aptitudeCheck(actor, key, event, combatData) {
|
||||
static aptitudeCheck(actor, key="init", event=undefined, combatData=undefined) {
|
||||
|
||||
let aptitude = eval(`actor.system.aptitudes.${key}`)
|
||||
let attrKey = this.getDefaultAttribute(key)
|
||||
|
@ -28,7 +28,9 @@ export class BoLItemSheet extends ItemSheet {
|
||||
data.isGM = game.user.isGM;
|
||||
data.itemProperties = this.item.itemProperties;
|
||||
data.description = await TextEditor.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) {
|
||||
|
@ -31,6 +31,15 @@ BOL.damageMultiplier = {
|
||||
"8": "x8"
|
||||
}
|
||||
|
||||
BOL.listTypes = {
|
||||
"attribute": "BOL.ui.attribute",
|
||||
"aptitude": "BOL.ui.aptitude",
|
||||
"career": "BOL.ui.career",
|
||||
"boon": "BOL.ui.boon",
|
||||
"flaw": "BOL.ui.flaw",
|
||||
"other": "BOL.ui.other"
|
||||
}
|
||||
|
||||
BOL.spellType = {
|
||||
"0": "BOL.spellItem.charm",
|
||||
"1": "BOL.spellItem.circle1",
|
||||
@ -271,6 +280,7 @@ BOL.featureSubtypes = {
|
||||
"fightoption" : "BOL.featureSubtypes.fightOption",
|
||||
"boleffect": "BOL.featureSubtypes.effect",
|
||||
"horoscope": "BOL.featureSubtypes.horoscope",
|
||||
"xplog": "BOL.featureSubtypes.xplog",
|
||||
}
|
||||
|
||||
BOL.fightOptionTypes = {
|
||||
@ -286,7 +296,7 @@ BOL.fightOptionTypes = {
|
||||
|
||||
BOL.itemIcons = {
|
||||
"item": "icons/containers/chest/chest-worn-oak-tan.webp",
|
||||
"capacity": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
|
||||
"feature": "icons/sundries/scrolls/scroll-plain-tan-red.webp",
|
||||
"species": "icons/environment/people/group.webp",
|
||||
"profile": "icons/sundries/documents/blueprint-axe.webp",
|
||||
"path": "icons/sundries/books/book-embossed-gold-red.webp"
|
||||
|
@ -43,6 +43,7 @@ export const preloadHandlebarsTemplates = async function () {
|
||||
"systems/bol/templates/item/parts/properties/feature/fightoption-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/item/weapon-vehicle-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/feature/horoscope-properties.hbs",
|
||||
"systems/bol/templates/item/parts/properties/feature/xplog-properties.hbs",
|
||||
|
||||
// DIALOGS
|
||||
"systems/bol/templates/chat/rolls/attack-damage-card.hbs",
|
||||
|
Binary file not shown.
BIN
packs/aides-de-jeu/000123.ldb
Normal file
BIN
packs/aides-de-jeu/000123.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000111
|
||||
MANIFEST-000164
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.412914 7f5b813fe6c0 Recovering log #109
|
||||
2023/12/05-10:19:09.423992 7f5b813fe6c0 Delete type=3 #107
|
||||
2023/12/05-10:19:09.424077 7f5b813fe6c0 Delete type=0 #109
|
||||
2023/12/05-10:22:46.862878 7f58eb7fe6c0 Level-0 table #114: started
|
||||
2023/12/05-10:22:46.862963 7f58eb7fe6c0 Level-0 table #114: 0 bytes OK
|
||||
2023/12/05-10:22:46.869980 7f58eb7fe6c0 Delete type=0 #112
|
||||
2023/12/05-10:22:46.891683 7f58eb7fe6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.891779 7f58eb7fe6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.654494 7f2aeffff6c0 Recovering log #162
|
||||
2024/01/12-17:58:00.703417 7f2aeffff6c0 Delete type=3 #160
|
||||
2024/01/12-17:58:00.703506 7f2aeffff6c0 Delete type=0 #162
|
||||
2024/01/12-18:33:25.126235 7f2aee3ff6c0 Level-0 table #167: started
|
||||
2024/01/12-18:33:25.126295 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
|
||||
2024/01/12-18:33:25.133198 7f2aee3ff6c0 Delete type=0 #165
|
||||
2024/01/12-18:33:25.139871 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139923 7f2aee3ff6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.430277 7f84f7fff6c0 Recovering log #105
|
||||
2023/12/04-21:16:34.440834 7f84f7fff6c0 Delete type=3 #103
|
||||
2023/12/04-21:16:34.440885 7f84f7fff6c0 Delete type=0 #105
|
||||
2023/12/04-21:29:36.294789 7f84f5ffb6c0 Level-0 table #110: started
|
||||
2023/12/04-21:29:36.294815 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
|
||||
2023/12/04-21:29:36.301173 7f84f5ffb6c0 Delete type=0 #108
|
||||
2023/12/04-21:29:36.301317 7f84f5ffb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.301343 7f84f5ffb6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!Yl1RKQb0BjVUtilk.kNb9ZrMbgONi1mlE' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.269402 7f2d849ff6c0 Recovering log #158
|
||||
2024/01/11-23:52:22.279265 7f2d849ff6c0 Delete type=3 #156
|
||||
2024/01/11-23:52:22.279317 7f2d849ff6c0 Delete type=0 #158
|
||||
2024/01/12-17:21:27.002365 7f2aee3ff6c0 Level-0 table #163: started
|
||||
2024/01/12-17:21:27.002416 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
|
||||
2024/01/12-17:21:27.035659 7f2aee3ff6c0 Delete type=0 #161
|
||||
2024/01/12-17:21:27.068240 7f2aee3ff6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068304 7f2aee3ff6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/aides-de-jeu/MANIFEST-000164
Normal file
BIN
packs/aides-de-jeu/MANIFEST-000164
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000018
|
||||
MANIFEST-000070
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.388365 7f58ebfff6c0 Recovering log #16
|
||||
2023/12/05-10:19:09.399094 7f58ebfff6c0 Delete type=3 #14
|
||||
2023/12/05-10:19:09.399150 7f58ebfff6c0 Delete type=0 #16
|
||||
2023/12/05-10:22:46.848470 7f58eb7fe6c0 Level-0 table #21: started
|
||||
2023/12/05-10:22:46.848503 7f58eb7fe6c0 Level-0 table #21: 0 bytes OK
|
||||
2023/12/05-10:22:46.855871 7f58eb7fe6c0 Delete type=0 #19
|
||||
2023/12/05-10:22:46.862471 7f58eb7fe6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.862599 7f58eb7fe6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.559279 7f2aeeffd6c0 Recovering log #68
|
||||
2024/01/12-17:58:00.603120 7f2aeeffd6c0 Delete type=3 #66
|
||||
2024/01/12-17:58:00.603243 7f2aeeffd6c0 Delete type=0 #68
|
||||
2024/01/12-18:33:25.082107 7f2aee3ff6c0 Level-0 table #73: started
|
||||
2024/01/12-18:33:25.082159 7f2aee3ff6c0 Level-0 table #73: 0 bytes OK
|
||||
2024/01/12-18:33:25.089101 7f2aee3ff6c0 Delete type=0 #71
|
||||
2024/01/12-18:33:25.111117 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.111206 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.402100 7f84f6ffd6c0 Recovering log #12
|
||||
2023/12/04-21:16:34.413052 7f84f6ffd6c0 Delete type=3 #10
|
||||
2023/12/04-21:16:34.413101 7f84f6ffd6c0 Delete type=0 #12
|
||||
2023/12/04-21:29:36.274254 7f84f5ffb6c0 Level-0 table #17: started
|
||||
2023/12/04-21:29:36.274306 7f84f5ffb6c0 Level-0 table #17: 0 bytes OK
|
||||
2023/12/04-21:29:36.281091 7f84f5ffb6c0 Delete type=0 #15
|
||||
2023/12/04-21:29:36.301284 7f84f5ffb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.301326 7f84f5ffb6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.245022 7f2aef7fe6c0 Recovering log #64
|
||||
2024/01/11-23:52:22.255738 7f2aef7fe6c0 Delete type=3 #62
|
||||
2024/01/11-23:52:22.255808 7f2aef7fe6c0 Delete type=0 #64
|
||||
2024/01/12-17:21:26.552390 7f2aee3ff6c0 Level-0 table #69: started
|
||||
2024/01/12-17:21:26.553565 7f2aee3ff6c0 Level-0 table #69: 0 bytes OK
|
||||
2024/01/12-17:21:26.587319 7f2aee3ff6c0 Delete type=0 #67
|
||||
2024/01/12-17:21:26.658367 7f2aee3ff6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.658422 7f2aee3ff6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/armors/MANIFEST-000070
Normal file
BIN
packs/armors/MANIFEST-000070
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/boons/000122.ldb
Normal file
BIN
packs/boons/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.243453 7f58ebfff6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.254734 7f58ebfff6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.254855 7f58ebfff6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.807255 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.807291 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.813375 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.828324 7f58eb7fe6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.835287 7f58eb7fe6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.159080 7f2aeeffd6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.204717 7f2aeeffd6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.204803 7f2aeeffd6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.003258 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.003305 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.009363 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.027341 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.038682 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.244782 7f84f6ffd6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.255803 7f84f6ffd6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.255859 7f84f6ffd6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.227120 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.227155 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.233490 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.247612 7f84f5ffb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.247638 7f84f5ffb6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.142717 7f2aef7fe6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.153108 7f2aef7fe6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.153152 7f2aef7fe6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.236099 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.236153 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.269940 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.270146 7f2aee3ff6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.329363 7f2aee3ff6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/boons/MANIFEST-000163
Normal file
BIN
packs/boons/MANIFEST-000163
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/boonsflawscreatures/000122.ldb
Normal file
BIN
packs/boonsflawscreatures/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.257627 7f5b80bfd6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.267269 7f5b80bfd6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.267320 7f5b80bfd6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.813487 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.813513 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.821758 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.828335 7f58eb7fe6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.835270 7f58eb7fe6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.207662 7f2d849ff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.250586 7f2d849ff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.250725 7f2d849ff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.054071 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.054116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.061185 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.075176 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081858 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.258787 7f84f77fe6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.268652 7f84f77fe6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.268705 7f84f77fe6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.233597 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.233621 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.239701 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.247623 7f84f5ffb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.247651 7f84f5ffb6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.156402 7f2aeeffd6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.165789 7f2aeeffd6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.165838 7f2aeeffd6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.379895 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.379934 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.407918 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.472414 7f2aee3ff6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510034 7f2aee3ff6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/boonsflawscreatures/MANIFEST-000163
Normal file
BIN
packs/boonsflawscreatures/MANIFEST-000163
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/careers/000122.ldb
Normal file
BIN
packs/careers/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.282801 7f5b81bff6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.293479 7f5b81bff6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.293574 7f5b81bff6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.828345 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.828365 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.835090 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.835303 7f58eb7fe6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.835334 7f58eb7fe6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.301181 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.347103 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.347210 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.067972 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.068005 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.074990 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.081825 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081885 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.285844 7f84f67fc6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.295915 7f84f67fc6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.295974 7f84f67fc6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.267733 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.267761 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.273875 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.274078 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.274142 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.180911 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.191351 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.191473 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.450798 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.450844 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.471880 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.510014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510071 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/careers/MANIFEST-000163
Normal file
BIN
packs/careers/MANIFEST-000163
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/cartes/000122.ldb
Normal file
BIN
packs/cartes/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.427439 7f5b81bff6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.437209 7f5b81bff6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.437271 7f5b81bff6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.876957 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.876983 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.884392 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.891737 7f58eb7fe6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.891822 7f58eb7fe6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.708420 7f2aef7fe6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.758343 7f2aef7fe6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.758928 7f2aef7fe6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.133341 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.133378 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.139690 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.139886 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139935 7f2aee3ff6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.444268 7f84f67fc6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.454337 7f84f67fc6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.454390 7f84f67fc6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.307716 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.307782 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.314556 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.327965 7f84f5ffb6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.328032 7f84f5ffb6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.282439 7f2aeffff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.293099 7f2aeffff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.293221 7f2aeffff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.685395 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.685435 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.712975 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.786099 7f2aee3ff6c0 Manual compaction at level-0 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.786181 7f2aee3ff6c0 Manual compaction at level-1 from '!scenes!1ZDXKpKixS12xzW3' @ 72057594037927935 : 1 .. '!scenes.tiles!78gEyXvSfBJi9iL1.rJglQmZXB0eRIL8y' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/cartes/MANIFEST-000163
Normal file
BIN
packs/cartes/MANIFEST-000163
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/creatures/000122.ldb
Normal file
BIN
packs/creatures/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.537819 7f5b80bfd6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.548670 7f5b80bfd6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.548725 7f5b80bfd6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.934967 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.935007 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.942182 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.949024 7f58eb7fe6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.949059 7f58eb7fe6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:01.104161 7f2d849ff6c0 Recovering log #161
|
||||
2024/01/12-17:58:01.153283 7f2d849ff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:01.153485 7f2d849ff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.169822 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.169874 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.176198 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.199264 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.199362 7f2aee3ff6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.555441 7f84f77fe6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.566877 7f84f77fe6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.566941 7f84f77fe6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.355366 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.355392 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.362705 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.362912 7f84f5ffb6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.362955 7f84f5ffb6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.387799 7f2aeeffd6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.398078 7f2aeeffd6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.398208 7f2aeeffd6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.929290 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.929361 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.964576 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:27.068192 7f2aee3ff6c0 Manual compaction at level-0 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068263 7f2aee3ff6c0 Manual compaction at level-1 from '!actors!1QGaindSWLCT4QXD' @ 72057594037927935 : 1 .. '!actors.items!yGlDTCiMiaH4vJTH.mvXGkWoCcRGjUpYV' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/creatures/MANIFEST-000163
Normal file
BIN
packs/creatures/MANIFEST-000163
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000162
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.524919 7f58ebfff6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.535781 7f58ebfff6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.535872 7f58ebfff6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.927846 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.927875 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.934810 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.949014 7f58eb7fe6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.949051 7f58eb7fe6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:01.054556 7f2aeeffd6c0 Recovering log #160
|
||||
2024/01/12-17:58:01.101242 7f2aeeffd6c0 Delete type=3 #158
|
||||
2024/01/12-17:58:01.101327 7f2aeeffd6c0 Delete type=0 #160
|
||||
2024/01/12-18:33:25.184427 7f2aee3ff6c0 Level-0 table #165: started
|
||||
2024/01/12-18:33:25.184480 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
|
||||
2024/01/12-18:33:25.191074 7f2aee3ff6c0 Delete type=0 #163
|
||||
2024/01/12-18:33:25.199320 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.199403 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.543411 7f84f6ffd6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.553517 7f84f6ffd6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.553574 7f84f6ffd6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.348547 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.348582 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.355093 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.355262 7f84f5ffb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.355296 7f84f5ffb6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.375443 7f2aef7fe6c0 Recovering log #156
|
||||
2024/01/11-23:52:22.385423 7f2aef7fe6c0 Delete type=3 #154
|
||||
2024/01/11-23:52:22.385520 7f2aef7fe6c0 Delete type=0 #156
|
||||
2024/01/12-17:21:26.964789 7f2aee3ff6c0 Level-0 table #161: started
|
||||
2024/01/12-17:21:26.964843 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
|
||||
2024/01/12-17:21:27.002161 7f2aee3ff6c0 Delete type=0 #159
|
||||
2024/01/12-17:21:27.068219 7f2aee3ff6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:27.068283 7f2aee3ff6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/effets-exemples/MANIFEST-000162
Normal file
BIN
packs/effets-exemples/MANIFEST-000162
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000112
|
||||
MANIFEST-000164
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.321953 7f5b813fe6c0 Recovering log #110
|
||||
2023/12/05-10:19:09.331688 7f5b813fe6c0 Delete type=3 #108
|
||||
2023/12/05-10:19:09.331799 7f5b813fe6c0 Delete type=0 #110
|
||||
2023/12/05-10:22:46.856017 7f58eb7fe6c0 Level-0 table #115: started
|
||||
2023/12/05-10:22:46.856048 7f58eb7fe6c0 Level-0 table #115: 0 bytes OK
|
||||
2023/12/05-10:22:46.862204 7f58eb7fe6c0 Delete type=0 #113
|
||||
2023/12/05-10:22:46.862520 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.862626 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.455820 7f2aeffff6c0 Recovering log #162
|
||||
2024/01/12-17:58:00.511511 7f2aeffff6c0 Delete type=3 #160
|
||||
2024/01/12-17:58:00.511604 7f2aeffff6c0 Delete type=0 #162
|
||||
2024/01/12-18:33:25.096428 7f2aee3ff6c0 Level-0 table #167: started
|
||||
2024/01/12-18:33:25.096474 7f2aee3ff6c0 Level-0 table #167: 0 bytes OK
|
||||
2024/01/12-18:33:25.102831 7f2aee3ff6c0 Delete type=0 #165
|
||||
2024/01/12-18:33:25.111155 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.111193 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.326886 7f84f7fff6c0 Recovering log #106
|
||||
2023/12/04-21:16:34.337231 7f84f7fff6c0 Delete type=3 #104
|
||||
2023/12/04-21:16:34.337341 7f84f7fff6c0 Delete type=0 #106
|
||||
2023/12/04-21:29:36.247774 7f84f5ffb6c0 Level-0 table #111: started
|
||||
2023/12/04-21:29:36.247806 7f84f5ffb6c0 Level-0 table #111: 0 bytes OK
|
||||
2023/12/04-21:29:36.253805 7f84f5ffb6c0 Delete type=0 #109
|
||||
2023/12/04-21:29:36.274024 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.274096 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.220063 7f2d849ff6c0 Recovering log #158
|
||||
2024/01/11-23:52:22.229888 7f2d849ff6c0 Delete type=3 #156
|
||||
2024/01/11-23:52:22.230000 7f2d849ff6c0 Delete type=0 #158
|
||||
2024/01/12-17:21:26.616976 7f2aee3ff6c0 Level-0 table #163: started
|
||||
2024/01/12-17:21:26.617027 7f2aee3ff6c0 Level-0 table #163: 0 bytes OK
|
||||
2024/01/12-17:21:26.658165 7f2aee3ff6c0 Delete type=0 #161
|
||||
2024/01/12-17:21:26.658399 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.658448 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000162
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.486474 7f5b80bfd6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.497087 7f5b80bfd6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.497144 7f5b80bfd6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.906415 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.906438 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.912712 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.921346 7f58eb7fe6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.921382 7f58eb7fe6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.918780 7f2d849ff6c0 Recovering log #160
|
||||
2024/01/12-17:58:00.957088 7f2d849ff6c0 Delete type=3 #158
|
||||
2024/01/12-17:58:00.957195 7f2d849ff6c0 Delete type=0 #160
|
||||
2024/01/12-18:33:25.147904 7f2aee3ff6c0 Level-0 table #165: started
|
||||
2024/01/12-18:33:25.147965 7f2aee3ff6c0 Level-0 table #165: 0 bytes OK
|
||||
2024/01/12-18:33:25.154391 7f2aee3ff6c0 Delete type=0 #163
|
||||
2024/01/12-18:33:25.169583 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169641 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.503638 7f84f77fe6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.513495 7f84f77fe6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.513540 7f84f77fe6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.328177 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.328221 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.334799 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.355226 7f84f5ffb6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.355270 7f84f5ffb6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.335396 7f2aeeffd6c0 Recovering log #156
|
||||
2024/01/11-23:52:22.346449 7f2aeeffd6c0 Delete type=3 #154
|
||||
2024/01/11-23:52:22.346560 7f2aeeffd6c0 Delete type=0 #156
|
||||
2024/01/12-17:21:26.786343 7f2aee3ff6c0 Level-0 table #161: started
|
||||
2024/01/12-17:21:26.790645 7f2aee3ff6c0 Level-0 table #161: 0 bytes OK
|
||||
2024/01/12-17:21:26.827682 7f2aee3ff6c0 Delete type=0 #159
|
||||
2024/01/12-17:21:26.928985 7f2aee3ff6c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929106 7f2aee3ff6c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/fightoptions/MANIFEST-000162
Normal file
BIN
packs/fightoptions/MANIFEST-000162
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/flaws/000122.ldb
Normal file
BIN
packs/flaws/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.269205 7f5b813fe6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.280059 7f5b813fe6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.280181 7f5b813fe6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.821955 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.821994 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.828244 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.835251 7f58eb7fe6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.835318 7f58eb7fe6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.253802 7f2aeffff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.296898 7f2aeffff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.297475 7f2aeffff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.061352 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.061404 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.067829 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.075201 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.081844 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.270727 7f84f7fff6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.281382 7f84f7fff6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.281438 7f84f7fff6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.239869 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.239936 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.247503 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.247631 7f84f5ffb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.247645 7f84f5ffb6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.167689 7f2d849ff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.178189 7f2d849ff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.178233 7f2d849ff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.408071 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.408107 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.450569 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.472440 7f2aee3ff6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.510048 7f2aee3ff6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/flaws/MANIFEST-000163
Normal file
BIN
packs/flaws/MANIFEST-000163
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/godsfaith/000122.ldb
Normal file
BIN
packs/godsfaith/000122.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000110
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.474864 7f58ebfff6c0 Recovering log #108
|
||||
2023/12/05-10:19:09.484493 7f58ebfff6c0 Delete type=3 #106
|
||||
2023/12/05-10:19:09.484588 7f58ebfff6c0 Delete type=0 #108
|
||||
2023/12/05-10:22:46.912894 7f58eb7fe6c0 Level-0 table #113: started
|
||||
2023/12/05-10:22:46.912944 7f58eb7fe6c0 Level-0 table #113: 0 bytes OK
|
||||
2023/12/05-10:22:46.921217 7f58eb7fe6c0 Delete type=0 #111
|
||||
2023/12/05-10:22:46.921355 7f58eb7fe6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.921388 7f58eb7fe6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.866994 7f2aeeffd6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.914618 7f2aeeffd6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.914708 7f2aeeffd6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.154621 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.154680 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.161613 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.169596 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.169665 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.491249 7f84f6ffd6c0 Recovering log #104
|
||||
2023/12/04-21:16:34.501377 7f84f6ffd6c0 Delete type=3 #102
|
||||
2023/12/04-21:16:34.501432 7f84f6ffd6c0 Delete type=0 #104
|
||||
2023/12/04-21:29:36.314691 7f84f5ffb6c0 Level-0 table #109: started
|
||||
2023/12/04-21:29:36.314743 7f84f5ffb6c0 Level-0 table #109: 0 bytes OK
|
||||
2023/12/04-21:29:36.320934 7f84f5ffb6c0 Delete type=0 #107
|
||||
2023/12/04-21:29:36.327985 7f84f5ffb6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.328049 7f84f5ffb6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.322553 7f2aef7fe6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.332811 7f2aef7fe6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.332913 7f2aef7fe6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.827883 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.827940 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.873780 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.929014 7f2aee3ff6c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.929127 7f2aee3ff6c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/godsfaith/MANIFEST-000163
Normal file
BIN
packs/godsfaith/MANIFEST-000163
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000111
|
||||
MANIFEST-000163
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/05-10:19:09.448049 7f5b813fe6c0 Recovering log #109
|
||||
2023/12/05-10:19:09.458101 7f5b813fe6c0 Delete type=3 #107
|
||||
2023/12/05-10:19:09.458174 7f5b813fe6c0 Delete type=0 #109
|
||||
2023/12/05-10:22:46.891994 7f58eb7fe6c0 Level-0 table #114: started
|
||||
2023/12/05-10:22:46.892063 7f58eb7fe6c0 Level-0 table #114: 0 bytes OK
|
||||
2023/12/05-10:22:46.898968 7f58eb7fe6c0 Delete type=0 #112
|
||||
2023/12/05-10:22:46.921326 7f58eb7fe6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2023/12/05-10:22:46.921365 7f58eb7fe6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:58:00.767444 7f2aeffff6c0 Recovering log #161
|
||||
2024/01/12-17:58:00.817424 7f2aeffff6c0 Delete type=3 #159
|
||||
2024/01/12-17:58:00.817537 7f2aeffff6c0 Delete type=0 #161
|
||||
2024/01/12-18:33:25.118054 7f2aee3ff6c0 Level-0 table #166: started
|
||||
2024/01/12-18:33:25.118116 7f2aee3ff6c0 Level-0 table #166: 0 bytes OK
|
||||
2024/01/12-18:33:25.126051 7f2aee3ff6c0 Delete type=0 #164
|
||||
2024/01/12-18:33:25.139855 7f2aee3ff6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-18:33:25.139911 7f2aee3ff6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/12/04-21:16:34.463477 7f84f7fff6c0 Recovering log #105
|
||||
2023/12/04-21:16:34.473557 7f84f7fff6c0 Delete type=3 #103
|
||||
2023/12/04-21:16:34.473612 7f84f7fff6c0 Delete type=0 #105
|
||||
2023/12/04-21:29:36.301429 7f84f5ffb6c0 Level-0 table #110: started
|
||||
2023/12/04-21:29:36.301456 7f84f5ffb6c0 Level-0 table #110: 0 bytes OK
|
||||
2023/12/04-21:29:36.307489 7f84f5ffb6c0 Delete type=0 #108
|
||||
2023/12/04-21:29:36.327942 7f84f5ffb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2023/12/04-21:29:36.328016 7f84f5ffb6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/11-23:52:22.298669 7f2d849ff6c0 Recovering log #157
|
||||
2024/01/11-23:52:22.307960 7f2d849ff6c0 Delete type=3 #155
|
||||
2024/01/11-23:52:22.308004 7f2d849ff6c0 Delete type=0 #157
|
||||
2024/01/12-17:21:26.713130 7f2aee3ff6c0 Level-0 table #162: started
|
||||
2024/01/12-17:21:26.713181 7f2aee3ff6c0 Level-0 table #162: 0 bytes OK
|
||||
2024/01/12-17:21:26.750594 7f2aee3ff6c0 Delete type=0 #160
|
||||
2024/01/12-17:21:26.786120 7f2aee3ff6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
2024/01/12-17:21:26.786202 7f2aee3ff6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user