Compare commits
11 Commits
fvtt-hawkm
...
master
Author | SHA1 | Date | |
---|---|---|---|
436b282ff5 | |||
39f8cfdbcc | |||
24a57a906e | |||
667f3678fb | |||
d5dd9e5bf7 | |||
3403b72d1f | |||
8a4487c833 | |||
4eece5aaf4 | |||
b574ba76ef | |||
0b9e1a80af | |||
6505b1c969 |
BIN
assets/scenes/hawkmoon_map_europe.webp
Normal file
BIN
assets/scenes/hawkmoon_map_europe.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 807 KiB |
@ -67,6 +67,10 @@ export class HawkmoonActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareArme(arme) {
|
||||
if (this.type == "cellule") {
|
||||
return arme
|
||||
}
|
||||
|
||||
arme = foundry.utils.duplicate(arme)
|
||||
let combat = this.getCombatValues()
|
||||
if (arme.system.typearme == "contact" || arme.system.typearme == "contactjet") {
|
||||
@ -202,6 +206,20 @@ export class HawkmoonActor extends Actor {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getCombatValues() {
|
||||
if (this.type == "cellule") {
|
||||
return {
|
||||
initBase: 0,
|
||||
initTotal: 0,
|
||||
bonusDegats: 0,
|
||||
bonusDegatsTotal: 0,
|
||||
vitesseBase: 0,
|
||||
vitesseTotal: 0,
|
||||
defenseBase: 0,
|
||||
protection: 0,
|
||||
defenseTotal: 0
|
||||
}
|
||||
}
|
||||
|
||||
let combat = {
|
||||
initBase: this.system.attributs.adr.value,
|
||||
initTotal: this.system.attributs.adr.value + this.system.combat.initbonus,
|
||||
@ -525,6 +543,23 @@ export class HawkmoonActor extends Actor {
|
||||
return init || -1
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getBestAttackValue() {
|
||||
let attackList = this.items.filter(item => (item.type == "arme" || item.type == "talent") && item.system.equipped)
|
||||
let maxOff = 0
|
||||
let bestArme
|
||||
for (let arme of attackList) {
|
||||
if (arme.type == "arme") {
|
||||
arme = this.prepareArme(arme)
|
||||
}
|
||||
if (arme.system.totalOffensif > maxOff) {
|
||||
maxOff = arme.system.totalOffensif
|
||||
bestArme = foundry.utils.duplicate(arme)
|
||||
}
|
||||
}
|
||||
return bestArme
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getBestDefenseValue() {
|
||||
let defenseList = this.items.filter(item => (item.type == "arme") && item.system.equipped)
|
||||
|
@ -7,7 +7,7 @@ import { HawkmoonUtility } from "./hawkmoon-utility.js";
|
||||
import { HawkmoonAutomation } from "./hawkmoon-automation.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1}
|
||||
const __ALLOWED_ITEM_CELLULE = { "talent": 1, "ressource": 1, "contact": 1, "equipement": 1, "protection": 1, "artefact": 1, "arme": 1, "monnaie": 1 }
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class HawkmoonCelluleSheet extends ActorSheet {
|
||||
@ -45,6 +45,13 @@ export class HawkmoonCelluleSheet extends ActorSheet {
|
||||
ressources: foundry.utils.duplicate(this.actor.getRessources()),
|
||||
contacts: foundry.utils.duplicate(this.actor.getContacts()),
|
||||
members: this.getMembers(),
|
||||
equipements: foundry.utils.duplicate(this.actor.getEquipments()),
|
||||
artefacts: foundry.utils.duplicate(this.actor.getArtefacts()),
|
||||
armes: foundry.utils.duplicate(this.actor.getWeapons()),
|
||||
monnaies: foundry.utils.duplicate(this.actor.getMonnaies()),
|
||||
protections: foundry.utils.duplicate(this.actor.getArmors()),
|
||||
richesse: this.actor.computeRichesse(),
|
||||
valeurEquipement: this.actor.computeValeurEquipement(),
|
||||
description: await TextEditor.enrichHTML(this.object.system.description, { async: true }),
|
||||
options: this.options,
|
||||
owner: this.document.isOwner,
|
||||
@ -110,15 +117,15 @@ export class HawkmoonCelluleSheet extends ActorSheet {
|
||||
let value = ev.currentTarget.value
|
||||
this.actor.editItemField(itemId, itemType, itemField, dataType, value)
|
||||
})
|
||||
|
||||
html.find('.quantity-minus').click(event => {
|
||||
const li = $(event.currentTarget).parents(".item");
|
||||
this.actor.incDecQuantity(li.data("item-id"), -1);
|
||||
});
|
||||
html.find('.quantity-plus').click(event => {
|
||||
const li = $(event.currentTarget).parents(".item");
|
||||
this.actor.incDecQuantity(li.data("item-id"), +1);
|
||||
});
|
||||
html.find('.quantity-modify').click(event => {
|
||||
const li = $(event.currentTarget).parents(".item")
|
||||
const value = Number($(event.currentTarget).data("quantite-value"))
|
||||
this.actor.incDecQuantity( li.data("item-id"), value );
|
||||
})
|
||||
html.find('.item-add').click((event) => {
|
||||
const itemType = $(event.currentTarget).data("type")
|
||||
this.actor.createEmbeddedDocuments('Item', [{ name: `Nouveau ${itemType}`, type: itemType }], { renderSheet: true })
|
||||
})
|
||||
|
||||
html.find('.lock-unlock-sheet').click((event) => {
|
||||
this.options.editScore = !this.options.editScore;
|
||||
@ -149,7 +156,7 @@ export class HawkmoonCelluleSheet extends ActorSheet {
|
||||
super._onDropItem(event, dragData)
|
||||
return
|
||||
}
|
||||
ui.notifications("Ce type d'item n'est pas autorisé sur une Cellule.")
|
||||
ui.notification.info("Ce type d'item n'est pas autorisé sur une Cellule.")
|
||||
}
|
||||
|
||||
|
||||
|
@ -3,10 +3,30 @@ export const HAWKMOON_CONFIG = {
|
||||
optionsDifficulte: [
|
||||
{ key: "0", label: "Aucune/Inconnue" },
|
||||
{ key: "5", label: "Facile (5)" },
|
||||
{ key: "6", label: "(6)" },
|
||||
{ key: "7", label: "(7)" },
|
||||
{ key: "8", label: "(8)" },
|
||||
{ key: "9", label: "(9)" },
|
||||
{ key: "10", label: "Moyenne (10)" },
|
||||
{ key: "11", label: "(11)" },
|
||||
{ key: "12", label: "(12)" },
|
||||
{ key: "13", label: "(13)" },
|
||||
{ key: "14", label: "(14)" },
|
||||
{ key: "15", label: "Ardue (15)" },
|
||||
{ key: "16", label: "(16)" },
|
||||
{ key: "17", label: "(17)" },
|
||||
{ key: "18", label: "(18)" },
|
||||
{ key: "19", label: "(19)" },
|
||||
{ key: "20", label: "Hasardeuse (20)" },
|
||||
{ key: "21", label: "(21)" },
|
||||
{ key: "22", label: "(22)" },
|
||||
{ key: "23", label: "(23)" },
|
||||
{ key: "24", label: "(24)" },
|
||||
{ key: "25", label: "Insensée (25)" },
|
||||
{ key: "26", label: "(26)" },
|
||||
{ key: "27", label: "(27)" },
|
||||
{ key: "28", label: "(28)" },
|
||||
{ key: "29", label: "(29)" },
|
||||
{ key: "30", label: "Pure Folie (30)" }
|
||||
],
|
||||
optionsDistanceTir: [
|
||||
@ -15,6 +35,12 @@ export const HAWKMOON_CONFIG = {
|
||||
{ key: "porteelongue", label: "Longue ({protectionDefenseur}+14)" }
|
||||
],
|
||||
optionsBonusMalus: [
|
||||
{ key: "-10", label: "-10" },
|
||||
{ key: "-9", label: "-9" },
|
||||
{ key: "-8", label: "-8" },
|
||||
{ key: "-7", label: "-7" },
|
||||
{ key: "-6", label: "-6" },
|
||||
{ key: "-5", label: "-5" },
|
||||
{ key: "-4", label: "-4" },
|
||||
{ key: "-3", label: "-3" },
|
||||
{ key: "-2", label: "-2" },
|
||||
@ -23,7 +49,13 @@ export const HAWKMOON_CONFIG = {
|
||||
{ key: "1", label: "+1" },
|
||||
{ key: "2", label: "+2" },
|
||||
{ key: "3", label: "+3" },
|
||||
{ key: "4", label: "+4" }
|
||||
{ key: "4", label: "+4" },
|
||||
{ key: "5", label: "+5" },
|
||||
{ key: "6", label: "+6" },
|
||||
{ key: "7", label: "+7" },
|
||||
{ key: "8", label: "+8" },
|
||||
{ key: "9", label: "+9" },
|
||||
{ key: "10", label: "+10" }
|
||||
],
|
||||
optionsTailleCible: [
|
||||
{ key: "normal", label: "Normal (SD+0)" },
|
||||
|
@ -315,10 +315,10 @@ export class HawkmoonUtility {
|
||||
switch (rollMode) {
|
||||
case "blindroll": //GM only
|
||||
blind = true;
|
||||
case "gmroll": //GM + rolling player
|
||||
case "gmroll": // GM + rolling player
|
||||
whisper = this.getUsers(user => user.isGM);
|
||||
break;
|
||||
case "roll": //everybody
|
||||
case "roll": // everybody
|
||||
whisper = this.getUsers(user => user.active);
|
||||
break;
|
||||
case "selfroll":
|
||||
@ -432,10 +432,10 @@ export class HawkmoonUtility {
|
||||
rollData.diceFormula += `+3`
|
||||
}
|
||||
if (rollData.hasAmbidextre) {
|
||||
if ( rollData.attaqueAmbidextre1) {
|
||||
if ( rollData.ambidextre1) {
|
||||
rollData.diceFormula += `-3`
|
||||
} else if ( rollData.attaqueAmbidextre2) {
|
||||
rollData.diceFormula += `-5`
|
||||
} else if ( rollData.ambidextre2) {
|
||||
rollData.diceFormula += `-6`
|
||||
}
|
||||
}
|
||||
if (rollData.defenseurAuSol) {
|
||||
@ -514,16 +514,16 @@ export class HawkmoonUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getCombativiteList(nbActivite) {
|
||||
let list = [ { value: 0, label: "Combatif"}]
|
||||
let list = [ { value: String(0), label: "Combatif"}]
|
||||
for (let i = 1; i < nbActivite-2; i++) {
|
||||
list.push({ value: i, label:"Eprouvé " + i} )
|
||||
list.push({ value: String(i), label:"Eprouvé " + i} )
|
||||
}
|
||||
list[nbActivite-2] = { value: nbActivite-2, label:"Affaibli"}
|
||||
list[nbActivite-1] = { value: nbActivite-1, label:"Très Affaibli"}
|
||||
list[nbActivite] = { value: nbActivite, label:"Vaincu"}
|
||||
list[nbActivite-2] = { value: String(nbActivite-2), label:"Affaibli"}
|
||||
list[nbActivite-1] = { value: String(nbActivite-1), label:"Très Affaibli"}
|
||||
list[nbActivite] = { value: String(nbActivite), label:"Vaincu"}
|
||||
return list
|
||||
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async bonusRollHawkmoon(rollData) {
|
||||
rollData.bonusFormula = rollData.addedBonus
|
||||
@ -663,6 +663,7 @@ export class HawkmoonUtility {
|
||||
rollData.defenderTokenId = target.id
|
||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
||||
rollData.armeDefense = defender.getBestDefenseValue()
|
||||
rollData.armeAttaqueDefenseur = defender.getBestAttackValue()
|
||||
rollData.targetVigueur = defender.getVigueur()
|
||||
rollData.protectionDefenseur = defender.getProtection()
|
||||
if (rollData.immobiliser || rollData.repousser) {
|
||||
@ -673,6 +674,8 @@ export class HawkmoonUtility {
|
||||
rollData.difficulte = combatValues.defenseTotal
|
||||
}else if ( rollData.assomer) {
|
||||
rollData.difficulte = 3 + (defender.system.attributs.tre.value * 2)
|
||||
} else if (rollData.desengager) {
|
||||
rollData.difficulte = rollData.armeAttaqueDefenseur?.system?.totalOffensif || 0;
|
||||
} else if (rollData.armeDefense) {
|
||||
rollData.difficulte = rollData.armeDefense.system.totalDefensif
|
||||
if ( !rollData.desengager && !rollData.arme.system.armenaturelle && !rollData.arme.system.armefortune ){
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000268
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:37.060687 7f19c6a006c0 Recovering log #195
|
||||
2024/05/31-14:00:37.518017 7f19c6a006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:37.518100 7f19c6a006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.240513 7f9cf5ffb6c0 Recovering log #266
|
||||
2025/03/28-18:06:54.252115 7f9cf5ffb6c0 Delete type=3 #264
|
||||
2025/03/28-18:06:54.252178 7f9cf5ffb6c0 Delete type=0 #266
|
||||
2025/03/28-18:09:08.872875 7f9cf4ff96c0 Level-0 table #271: started
|
||||
2025/03/28-18:09:08.872910 7f9cf4ff96c0 Level-0 table #271: 0 bytes OK
|
||||
2025/03/28-18:09:08.879279 7f9cf4ff96c0 Delete type=0 #269
|
||||
2025/03/28-18:09:08.892832 7f9cf4ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.903986 7f9cf4ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.916087 7ff4c34006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.933156 7ff4c34006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.933245 7ff4c34006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.395846 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.395899 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.427199 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.427384 7ff4c0c006c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.427410 7ff4c0c006c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.414284 7f9cf5ffb6c0 Recovering log #261
|
||||
2025/03/28-14:48:51.424277 7f9cf5ffb6c0 Delete type=3 #259
|
||||
2025/03/28-14:48:51.424333 7f9cf5ffb6c0 Delete type=0 #261
|
||||
2025/03/28-14:56:17.706645 7f9cf4ff96c0 Level-0 table #267: started
|
||||
2025/03/28-14:56:17.706686 7f9cf4ff96c0 Level-0 table #267: 0 bytes OK
|
||||
2025/03/28-14:56:17.715753 7f9cf4ff96c0 Delete type=0 #265
|
||||
2025/03/28-14:56:17.747853 7f9cf4ff96c0 Manual compaction at level-0 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.747898 7f9cf4ff96c0 Manual compaction at level-1 from '!journal!MUbViCE2PkVxlzqe' @ 72057594037927935 : 1 .. '!journal.pages!gVybbv17TFY8o3Y4.fQidyqfF1TbsZKHM' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/aides-de-jeu/MANIFEST-000268
Normal file
BIN
packs/aides-de-jeu/MANIFEST-000268
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/armes/000262.ldb
Normal file
BIN
packs/armes/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.354612 7f19c7e006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.408905 7f19c7e006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.408966 7f19c7e006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.129546 7f9cf57fa6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.140296 7f9cf57fa6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.140354 7f9cf57fa6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.799681 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.799712 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.806126 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806364 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806424 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.748705 7ff4c16006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.770253 7ff4c16006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.770411 7ff4c16006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.047232 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.047254 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.081200 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.081367 7ff4c0c006c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.081387 7ff4c0c006c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.294919 7f9cf67fc6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.304807 7f9cf67fc6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.304864 7f9cf67fc6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.643826 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.643859 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.653389 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.664831 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.664877 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0fit7HelSjaFtXcW' @ 72057594037927935 : 1 .. '!items!wxrzP3NyiHiYnAMJ' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/armes/MANIFEST-000267
Normal file
BIN
packs/armes/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/competences-creatures/000262.ldb
Normal file
BIN
packs/competences-creatures/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.234976 7f19c7e006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.287333 7f19c7e006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.287419 7f19c7e006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.103361 7f9cf5ffb6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.113349 7f9cf5ffb6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.113428 7f9cf5ffb6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.786685 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.786722 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.793132 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806327 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806394 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.720508 7ff4c16006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.731510 7ff4c16006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.731576 7ff4c16006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:05.963820 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:05.963879 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:05.997883 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.081326 7ff4c0c006c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.081373 7ff4c0c006c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.264974 7f9cf5ffb6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.275685 7f9cf5ffb6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.275752 7f9cf5ffb6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.599288 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.599333 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.609691 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.621022 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.621095 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0nhTxujlIUB63Aqt' @ 72057594037927935 : 1 .. '!items!tFU5yISK6spdNWco' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/competences-creatures/MANIFEST-000267
Normal file
BIN
packs/competences-creatures/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/competences/000262.ldb
Normal file
BIN
packs/competences/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.096613 7f19c7e006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.152261 7f19c7e006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.152502 7f19c7e006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.075285 7f9cf57fa6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.086230 7f9cf57fa6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.086300 7f9cf57fa6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.813600 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.813626 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.819856 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833880 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833915 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.675461 7ff4c16006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.692897 7ff4c16006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.692957 7ff4c16006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:05.824069 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:05.824141 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:05.864619 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:05.864879 7ff4c0c006c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:05.923774 7ff4c0c006c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.234537 7f9cf67fc6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.245515 7f9cf67fc6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.245574 7f9cf67fc6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.609952 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.609988 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.620719 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.621043 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.621110 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15IDGG6JoZnRCQtY' @ 72057594037927935 : 1 .. '!items!yI1zY5k8mAdx9wHK' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/competences/MANIFEST-000267
Normal file
BIN
packs/competences/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/equipement/000262.ldb
Normal file
BIN
packs/equipement/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.506398 7f19c7e006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.606726 7f19c7e006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.606779 7f19c7e006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.156515 7f9cf5ffb6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.167920 7f9cf5ffb6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.168006 7f9cf5ffb6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.806529 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.806589 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.813486 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833864 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833923 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.786440 7ff4c16006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.796746 7ff4c16006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.796849 7ff4c16006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.081452 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.081472 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.114237 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.229981 7ff4c0c006c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.230018 7ff4c0c006c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.322258 7f9cf5ffb6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.332966 7f9cf5ffb6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.333025 7f9cf5ffb6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.653610 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.653676 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.664679 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.664840 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.664885 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0BopmCu8vGK2923j' @ 72057594037927935 : 1 .. '!items!zYx0Ak2y1LNTcKlO' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/equipement/MANIFEST-000267
Normal file
BIN
packs/equipement/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/historiques/000262.ldb
Normal file
BIN
packs/historiques/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.294606 7f19c6a006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.348946 7f19c6a006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.349029 7f19c6a006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.116086 7f9cf67fc6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.126771 7f9cf67fc6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.126828 7f9cf67fc6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.793243 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.793267 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.799520 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806348 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806409 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.733842 7ff4c34006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.743469 7ff4c34006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.743550 7ff4c34006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:05.998107 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:05.998163 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.047044 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.081347 7ff4c0c006c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.081380 7ff4c0c006c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.280283 7f9cf57fa6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.290774 7f9cf57fa6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.290830 7f9cf57fa6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.575147 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.575265 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.588993 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.620966 7f9cf4ff96c0 Manual compaction at level-0 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.621063 7f9cf4ff96c0 Manual compaction at level-1 from '!items!15foLG7y3LUXNzkK' @ 72057594037927935 : 1 .. '!items!z1HtkvazCGHut7cz' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/historiques/MANIFEST-000267
Normal file
BIN
packs/historiques/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/mutations/000172.ldb
Normal file
BIN
packs/mutations/000172.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000107
|
||||
MANIFEST-000177
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.158899 7f19c6a006c0 Recovering log #105
|
||||
2024/05/31-14:00:36.211355 7f19c6a006c0 Delete type=3 #103
|
||||
2024/05/31-14:00:36.211422 7f19c6a006c0 Delete type=0 #105
|
||||
2025/03/28-18:06:54.089587 7f9cf6ffd6c0 Recovering log #175
|
||||
2025/03/28-18:06:54.100163 7f9cf6ffd6c0 Delete type=3 #173
|
||||
2025/03/28-18:06:54.100221 7f9cf6ffd6c0 Delete type=0 #175
|
||||
2025/03/28-18:09:08.826965 7f9cf4ff96c0 Level-0 table #180: started
|
||||
2025/03/28-18:09:08.826991 7f9cf4ff96c0 Level-0 table #180: 0 bytes OK
|
||||
2025/03/28-18:09:08.833674 7f9cf4ff96c0 Delete type=0 #178
|
||||
2025/03/28-18:09:08.833905 7f9cf4ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833931 7f9cf4ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.697920 7ff4c34006c0 Recovering log #101
|
||||
2024/05/30-08:20:34.715302 7ff4c34006c0 Delete type=3 #99
|
||||
2024/05/30-08:20:34.715376 7ff4c34006c0 Delete type=0 #101
|
||||
2024/05/30-08:30:05.923786 7ff4c0c006c0 Level-0 table #106: started
|
||||
2024/05/30-08:30:05.923812 7ff4c0c006c0 Level-0 table #106: 0 bytes OK
|
||||
2024/05/30-08:30:05.963487 7ff4c0c006c0 Delete type=0 #104
|
||||
2024/05/30-08:30:06.047218 7ff4c0c006c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.081359 7ff4c0c006c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.249116 7f9cf6ffd6c0 Recovering log #170
|
||||
2025/03/28-14:48:51.259201 7f9cf6ffd6c0 Delete type=3 #168
|
||||
2025/03/28-14:48:51.259300 7f9cf6ffd6c0 Delete type=0 #170
|
||||
2025/03/28-14:56:17.589172 7f9cf4ff96c0 Level-0 table #176: started
|
||||
2025/03/28-14:56:17.589229 7f9cf4ff96c0 Level-0 table #176: 0 bytes OK
|
||||
2025/03/28-14:56:17.599147 7f9cf4ff96c0 Delete type=0 #174
|
||||
2025/03/28-14:56:17.621000 7f9cf4ff96c0 Manual compaction at level-0 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.621080 7f9cf4ff96c0 Manual compaction at level-1 from '!folders!5d4Zn28TUcPxRyXd' @ 72057594037927935 : 1 .. '!items!zttESycGKltfwCzJ' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/mutations/MANIFEST-000177
Normal file
BIN
packs/mutations/MANIFEST-000177
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/profils/000262.ldb
Normal file
BIN
packs/profils/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.614314 7f19c6a006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.664608 7f19c6a006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.664740 7f19c6a006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.172273 7f9cf67fc6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.183178 7f9cf67fc6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.183275 7f9cf67fc6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.820046 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.820086 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.826845 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.833893 7f9cf4ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.833939 7f9cf4ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.800876 7ff4c34006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.812006 7ff4c34006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.812097 7ff4c34006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.155084 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.155158 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.197414 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.230004 7ff4c0c006c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.230039 7ff4c0c006c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.338096 7f9cf57fa6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.348604 7f9cf57fa6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.348690 7f9cf57fa6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.632377 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.632408 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.643709 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.664820 7f9cf4ff96c0 Manual compaction at level-0 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.664869 7f9cf4ff96c0 Manual compaction at level-1 from '!items!26mRstKhCJoXkhu1' @ 72057594037927935 : 1 .. '!items!tFQqcxmkS3MT6ASE' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/profils/MANIFEST-000267
Normal file
BIN
packs/profils/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/protections/000262.ldb
Normal file
BIN
packs/protections/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.416695 7f19c6a006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.489832 7f19c6a006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.489937 7f19c6a006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.142912 7f9cf6ffd6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.152918 7f9cf6ffd6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.153055 7f9cf6ffd6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.779338 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.779431 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.786537 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.806298 7f9cf4ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.806379 7f9cf4ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.773528 7ff4c34006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.783658 7ff4c34006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.783714 7ff4c34006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.114430 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.114476 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.154788 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.229993 7ff4c0c006c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.230025 7ff4c0c006c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.307945 7f9cf6ffd6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.319172 7f9cf6ffd6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.319256 7f9cf6ffd6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.621210 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.621292 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.632240 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.664806 7f9cf4ff96c0 Manual compaction at level-0 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.664849 7f9cf4ff96c0 Manual compaction at level-1 from '!items!16iPa2yIzB0V3pxb' @ 72057594037927935 : 1 .. '!items!yszkersMTE4p9VzP' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/protections/MANIFEST-000267
Normal file
BIN
packs/protections/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/scenes/000101.ldb
Normal file
BIN
packs/scenes/000101.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000033
|
||||
MANIFEST-000106
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.977032 7f19c6a006c0 Recovering log #31
|
||||
2024/05/31-14:00:37.050459 7f19c6a006c0 Delete type=3 #29
|
||||
2024/05/31-14:00:37.050537 7f19c6a006c0 Delete type=0 #31
|
||||
2025/03/28-18:06:54.226942 7f9cf67fc6c0 Recovering log #104
|
||||
2025/03/28-18:06:54.236785 7f9cf67fc6c0 Delete type=3 #102
|
||||
2025/03/28-18:06:54.236844 7f9cf67fc6c0 Delete type=0 #104
|
||||
2025/03/28-18:09:08.854204 7f9cf4ff96c0 Level-0 table #109: started
|
||||
2025/03/28-18:09:08.854246 7f9cf4ff96c0 Level-0 table #109: 0 bytes OK
|
||||
2025/03/28-18:09:08.861935 7f9cf4ff96c0 Delete type=0 #107
|
||||
2025/03/28-18:09:08.862106 7f9cf4ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.862134 7f9cf4ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.900298 7ff4c34006c0 Recovering log #27
|
||||
2024/05/30-08:20:34.910330 7ff4c34006c0 Delete type=3 #25
|
||||
2024/05/30-08:20:34.910386 7ff4c34006c0 Delete type=0 #27
|
||||
2024/05/30-08:30:06.313985 7ff4c0c006c0 Level-0 table #32: started
|
||||
2024/05/30-08:30:06.314032 7ff4c0c006c0 Level-0 table #32: 0 bytes OK
|
||||
2024/05/30-08:30:06.351730 7ff4c0c006c0 Delete type=0 #30
|
||||
2024/05/30-08:30:06.395708 7ff4c0c006c0 Manual compaction at level-0 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.395765 7ff4c0c006c0 Manual compaction at level-1 from '!scenes!CXx90Qk7nXEd2uTh' @ 72057594037927935 : 1 .. '!scenes.tokens.delta.items!j6RYn1X7KfhTioX5.FPPNsxboEnoqyAoh.JxMmMrhEE67GWHQD.t9lh152OxZDg41sm' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.398097 7f9cf57fa6c0 Recovering log #99
|
||||
2025/03/28-14:48:51.409374 7f9cf57fa6c0 Delete type=3 #97
|
||||
2025/03/28-14:48:51.409433 7f9cf57fa6c0 Delete type=0 #99
|
||||
2025/03/28-14:56:17.695479 7f9cf4ff96c0 Level-0 table #105: started
|
||||
2025/03/28-14:56:17.695512 7f9cf4ff96c0 Level-0 table #105: 0 bytes OK
|
||||
2025/03/28-14:56:17.706325 7f9cf4ff96c0 Delete type=0 #103
|
||||
2025/03/28-14:56:17.706520 7f9cf4ff96c0 Manual compaction at level-0 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.706557 7f9cf4ff96c0 Manual compaction at level-1 from '!scenes!VOzC5ey4qi1C34MY' @ 72057594037927935 : 1 .. '!scenes!mfosNsLsHN5Pf4TO' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/scenes/MANIFEST-000106
Normal file
BIN
packs/scenes/MANIFEST-000106
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000196
|
||||
MANIFEST-000264
|
||||
|
@ -1,3 +1,7 @@
|
||||
2024/05/31-14:00:36.856788 7f19c7e006c0 Recovering log #194
|
||||
2024/05/31-14:00:36.974747 7f19c7e006c0 Delete type=3 #192
|
||||
2024/05/31-14:00:36.974809 7f19c7e006c0 Delete type=0 #194
|
||||
2025/03/28-18:06:54.214203 7f9cf5ffb6c0 Recovering log #262
|
||||
2025/03/28-18:06:54.224626 7f9cf5ffb6c0 Delete type=3 #260
|
||||
2025/03/28-18:06:54.224678 7f9cf5ffb6c0 Delete type=0 #262
|
||||
2025/03/28-18:09:08.847807 7f9cf4ff96c0 Level-0 table #267: started
|
||||
2025/03/28-18:09:08.847847 7f9cf4ff96c0 Level-0 table #267: 0 bytes OK
|
||||
2025/03/28-18:09:08.854019 7f9cf4ff96c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.862095 7f9cf4ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2024/05/30-08:20:34.886685 7ff4c16006c0 Recovering log #190
|
||||
2024/05/30-08:20:34.897376 7ff4c16006c0 Delete type=3 #188
|
||||
2024/05/30-08:20:34.897440 7ff4c16006c0 Delete type=0 #190
|
||||
2024/05/30-08:30:06.351873 7ff4c0c006c0 Level-0 table #195: started
|
||||
2024/05/30-08:30:06.351898 7ff4c0c006c0 Level-0 table #195: 0 bytes OK
|
||||
2024/05/30-08:30:06.395360 7ff4c0c006c0 Delete type=0 #193
|
||||
2024/05/30-08:30:06.395729 7ff4c0c006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.384307 7f9cf5ffb6c0 Recovering log #258
|
||||
2025/03/28-14:48:51.394425 7f9cf5ffb6c0 Delete type=3 #256
|
||||
2025/03/28-14:48:51.394516 7f9cf5ffb6c0 Delete type=0 #258
|
||||
2025/03/28-14:56:17.664999 7f9cf4ff96c0 Level-0 table #263: started
|
||||
2025/03/28-14:56:17.665030 7f9cf4ff96c0 Level-0 table #263: 0 bytes OK
|
||||
2025/03/28-14:56:17.674846 7f9cf4ff96c0 Delete type=0 #261
|
||||
2025/03/28-14:56:17.706469 7f9cf4ff96c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/tables/MANIFEST-000264
Normal file
BIN
packs/tables/MANIFEST-000264
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/talents-cellule/000262.ldb
Normal file
BIN
packs/talents-cellule/000262.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000197
|
||||
MANIFEST-000267
|
||||
|
@ -1,3 +1,8 @@
|
||||
2024/05/31-14:00:36.747363 7f19c6a006c0 Recovering log #195
|
||||
2024/05/31-14:00:36.851256 7f19c6a006c0 Delete type=3 #193
|
||||
2024/05/31-14:00:36.851328 7f19c6a006c0 Delete type=0 #195
|
||||
2025/03/28-18:06:54.200895 7f9cf6ffd6c0 Recovering log #265
|
||||
2025/03/28-18:06:54.211375 7f9cf6ffd6c0 Delete type=3 #263
|
||||
2025/03/28-18:06:54.211438 7f9cf6ffd6c0 Delete type=0 #265
|
||||
2025/03/28-18:09:08.840568 7f9cf4ff96c0 Level-0 table #270: started
|
||||
2025/03/28-18:09:08.840595 7f9cf4ff96c0 Level-0 table #270: 0 bytes OK
|
||||
2025/03/28-18:09:08.847609 7f9cf4ff96c0 Delete type=0 #268
|
||||
2025/03/28-18:09:08.862082 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-18:09:08.862116 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2024/05/30-08:20:34.831221 7ff4c34006c0 Recovering log #191
|
||||
2024/05/30-08:20:34.842515 7ff4c34006c0 Delete type=3 #189
|
||||
2024/05/30-08:20:34.842627 7ff4c34006c0 Delete type=0 #191
|
||||
2024/05/30-08:30:06.230099 7ff4c0c006c0 Level-0 table #196: started
|
||||
2024/05/30-08:30:06.230121 7ff4c0c006c0 Level-0 table #196: 0 bytes OK
|
||||
2024/05/30-08:30:06.281329 7ff4c0c006c0 Delete type=0 #194
|
||||
2024/05/30-08:30:06.395643 7ff4c0c006c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2024/05/30-08:30:06.395747 7ff4c0c006c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:48:51.369259 7f9cf6ffd6c0 Recovering log #260
|
||||
2025/03/28-14:48:51.380348 7f9cf6ffd6c0 Delete type=3 #258
|
||||
2025/03/28-14:48:51.380457 7f9cf6ffd6c0 Delete type=0 #260
|
||||
2025/03/28-14:56:17.674984 7f9cf4ff96c0 Level-0 table #266: started
|
||||
2025/03/28-14:56:17.675014 7f9cf4ff96c0 Level-0 table #266: 0 bytes OK
|
||||
2025/03/28-14:56:17.684396 7f9cf4ff96c0 Delete type=0 #264
|
||||
2025/03/28-14:56:17.706491 7f9cf4ff96c0 Manual compaction at level-0 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
2025/03/28-14:56:17.706530 7f9cf4ff96c0 Manual compaction at level-1 from '!items!0jRgc9a9L8i7j1Uk' @ 72057594037927935 : 1 .. '!items!yRTYaNKyXBX9wHhb' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
BIN
packs/talents-cellule/MANIFEST-000267
Normal file
BIN
packs/talents-cellule/MANIFEST-000267
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/talents/000263.ldb
Normal file
BIN
packs/talents/000263.ldb
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user