Various minor fixes + fix roll result

This commit is contained in:
LeRatierBretonnien 2024-09-04 08:57:26 +02:00
parent 321052fd33
commit e6bdc427f2
100 changed files with 750 additions and 601 deletions

View File

@ -175,6 +175,7 @@
"BOL.ui.armorAgiMalus": "Armor+Shield Modifier (Agi)", "BOL.ui.armorAgiMalus": "Armor+Shield Modifier (Agi)",
"BOL.ui.armorInitMalus": "Armor Modifier (Init)", "BOL.ui.armorInitMalus": "Armor Modifier (Init)",
"BOL.ui.attackValue": "Attack Value", "BOL.ui.attackValue": "Attack Value",
"BOL.ui.attackModifier": "Attack Modifier",
"BOL.ui.weaponbonus": "Cette arme bénéficie déja d'un Dé de Bonus (Arme Favorite prise en compte, par exemple)", "BOL.ui.weaponbonus": "Cette arme bénéficie déja d'un Dé de Bonus (Arme Favorite prise en compte, par exemple)",
"BOL.ui.initMalus": "Init malus", "BOL.ui.initMalus": "Init malus",
"BOL.ui.creature": "Creature", "BOL.ui.creature": "Creature",
@ -214,6 +215,11 @@
"BOL.ui.horoscopeDiceRemaining": "Remaining Dice", "BOL.ui.horoscopeDiceRemaining": "Remaining Dice",
"BOL.ui.horoscopeDiceMax": "Max Dice", "BOL.ui.horoscopeDiceMax": "Max Dice",
"BOL.ui.astrologyNoPoints": "You do not have enough Astrology Points!", "BOL.ui.astrologyNoPoints": "You do not have enough Astrology Points!",
"BOL.ui.newEquipment": "New equipment",
"BOL.ui.newNaturalWeapon": "Natural weapon",
"BOL.ui.newNaturalProtection": "Natural protection",
"BOL.ui.createNaturalWeapon": "Create a natural weapon",
"BOL.ui.createNaturalProtection": "Create a natural protection",
"BOL.featureCategory.origins": "Origins", "BOL.featureCategory.origins": "Origins",
"BOL.featureCategory.races": "Races", "BOL.featureCategory.races": "Races",
@ -231,7 +237,7 @@
"BOL.featureSubtypes.language": "Language", "BOL.featureSubtypes.language": "Language",
"BOL.featureSubtypes.gods": "Faith & Gods", "BOL.featureSubtypes.gods": "Faith & Gods",
"BOL.featureSubtypes.fightOption": "Combat Option", "BOL.featureSubtypes.fightOption": "Combat Option",
"BOL.featureSubtypes.effect": "Effcet", "BOL.featureSubtypes.effect": "Effect",
"BOL.featureSubtypes.effects": "Effects", "BOL.featureSubtypes.effects": "Effects",
"BOL.featureSubtypes.boleffect": "Effect", "BOL.featureSubtypes.boleffect": "Effect",
"BOL.featureSubtypes.horoscope": "Horoscope", "BOL.featureSubtypes.horoscope": "Horoscope",
@ -260,6 +266,7 @@
"BOL.itemCategory.other": "Other", "BOL.itemCategory.other": "Other",
"BOL.itemCategory.capacity" : "Capacity", "BOL.itemCategory.capacity" : "Capacity",
"BOL.itemCategory.alchemy": "Alchemy", "BOL.itemCategory.alchemy": "Alchemy",
"BOL.itemCategory.vehicleweapon": "Vehicle weapon",
"BOL.combatCategory.protections": "Protections", "BOL.combatCategory.protections": "Protections",
"BOL.combatCategory.shields": "Shields", "BOL.combatCategory.shields": "Shields",

View File

@ -203,6 +203,7 @@
"BOL.ui.armorAgiMalus": "Malus d'Armure+Bouclier (Agi)", "BOL.ui.armorAgiMalus": "Malus d'Armure+Bouclier (Agi)",
"BOL.ui.armorInitMalus": "Malus d'Armure (Init)", "BOL.ui.armorInitMalus": "Malus d'Armure (Init)",
"BOL.ui.attackValue": "Valeur d'attaque", "BOL.ui.attackValue": "Valeur d'attaque",
"BOL.ui.attackModifier": "Attaque",
"BOL.ui.vehicleWeapons": "Armes de véhicules", "BOL.ui.vehicleWeapons": "Armes de véhicules",
"BOL.ui.hullDamage": "D.coque", "BOL.ui.hullDamage": "D.coque",
"BOL.ui.crewDamage": "D.équipage", "BOL.ui.crewDamage": "D.équipage",
@ -234,6 +235,11 @@
"BOL.ui.warninitiative": "Votre initiative n'est pas disponible. Effectuez un jet d'Initiative pour ce combat.", "BOL.ui.warninitiative": "Votre initiative n'est pas disponible. Effectuez un jet d'Initiative pour ce combat.",
"BOL.ui.isspecial": "Spéciale ?", "BOL.ui.isspecial": "Spéciale ?",
"BOL.ui.createEquipment": "Créer un Equipement", "BOL.ui.createEquipment": "Créer un Equipement",
"BOL.ui.newEquipment": "Nouvel équipement",
"BOL.ui.newNaturalWeapon": "Arme naturelle",
"BOL.ui.newNaturalProtection": "Protection naturelle",
"BOL.ui.createNaturalWeapon": "Créer une arme naturelle",
"BOL.ui.createNaturalProtection": "Créer une protection naturelle",
"BOL.featureCategory.origins": "Origines", "BOL.featureCategory.origins": "Origines",
"BOL.featureCategory.races": "Races", "BOL.featureCategory.races": "Races",

View File

@ -47,8 +47,17 @@ export class BoLActorSheet extends ActorSheet {
// Equip/Unequip item // Equip/Unequip item
html.find('.item-equip').click(this._onToggleEquip.bind(this)); html.find('.item-equip').click(this._onToggleEquip.bind(this));
html.find('.create_item').click(ev => { html.find('.create-item').click(ev => {
this.actor.createEmbeddedDocuments('Item', [{ name: "Nouvel Equipement", type: "item" }], { renderSheet: true }); this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newEquipment"), type: "item" }], { renderSheet: true });
});
html.find('.create-natural-weapon').click(ev => {
let system = foundry.utils.duplicate(game.bol.config.defaultNaturalWeapon)
this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newNaturalWeapon"), type: "item", system }], { renderSheet: true });
});
html.find('.create-natural-protection').click(ev => {
let system = foundry.utils.duplicate(game.bol.config.defaultNaturalProtection)
this.actor.createEmbeddedDocuments('Item', [{ name: game.i18n.localize("BOL.ui.newNaturalProtection"), type: "item", system }], { renderSheet: true });
}); });
html.find(".toggle-fight-option").click((ev) => { html.find(".toggle-fight-option").click((ev) => {

View File

@ -21,6 +21,7 @@ export class BoLActor extends Actor {
super.prepareData() super.prepareData()
} }
/* -------------------------------------------- */ /* -------------------------------------------- */
async _preCreate(data, options, user) { async _preCreate(data, options, user) {
await super._preCreate(data, options, user); await super._preCreate(data, options, user);

View File

@ -632,13 +632,25 @@ export class BoLDefaultRoll {
const activeDice = r.terms[0].results.filter(r => r.active) const activeDice = r.terms[0].results.filter(r => r.active)
const diceTotal = activeDice.map(r => r.result).reduce((a, b) => a + b) const diceTotal = activeDice.map(r => r.result).reduce((a, b) => a + b)
this.rollData.roll = r this.rollData.roll = r
this.rollData.isSuccess = (r.total >= diceData.successValue) this.rollData.isFumble = (diceTotal <= diceData.criticalFailureValue)
if ( this.rollData.isFumble ) {
this.rollData.isSuccess = false
this.rollData.isCritical = false
this.rollData.isRealCritical = false
this.rollData.isHeroic = false
this.rollData.isFailure = true
} else {
this.rollData.isCritical = (diceTotal >= diceData.criticalSuccessValue) this.rollData.isCritical = (diceTotal >= diceData.criticalSuccessValue)
if ( this.rollData.isCritical) {
this.rollData.isSuccess = true
} else {
this.rollData.isSuccess = (r.total >= diceData.successValue)
}
this.rollData.isRealCritical = (diceTotal >= diceData.criticalSuccessValue) this.rollData.isRealCritical = (diceTotal >= diceData.criticalSuccessValue)
this.rollData.isHeroic = (diceTotal >= diceData.criticalSuccessValue) this.rollData.isHeroic = (diceTotal >= diceData.criticalSuccessValue)
this.rollData.isLegendary = false
this.rollData.isFumble = (diceTotal <= diceData.criticalFailureValue)
this.rollData.isFailure = !this.rollData.isSuccess this.rollData.isFailure = !this.rollData.isSuccess
}
this.rollData.isLegendary = false
let actor = BoLUtility.getActorFromRollData(this.rollData) let actor = BoLUtility.getActorFromRollData(this.rollData)
if (this.rollData.reroll == undefined) { if (this.rollData.reroll == undefined) {

View File

@ -523,4 +523,102 @@ BOL.statusEffects = [
} }
] ]
BOL.defaultNaturalWeapon = {
"category": "equipment",
"subtype": "weapon",
"description": "",
"properties": {
"ranged": false,
"melee": false,
"spell": false,
"protection": false,
"weapon": true,
"armor": false,
"helm": false,
"shield": false,
"equipable": false,
"consumable": false,
"magical": false,
"2H": false,
"reloadable": false,
"bow": false,
"crossbow": false,
"throwing": false,
"stackable": false,
"natural": true,
"concealable": false,
"ignoreshield": false,
"attackBonusDice": false,
"onlymodifier": true,
"attackAttribute": "vigor",
"attackAptitude": "melee",
"attackModifiers": 1,
"weaponSize": "unarmed",
"damage": "d6B",
"damageAttribute": "vigor",
"damageModifiers": null,
"damageMultiplier": "1",
"damageReroll1": false
},
"quantity": 1,
"weight": 0,
"price": 0,
"worn": false
}
BOL.defaultNaturalProtection = {
"category": "equipment",
"subtype": "armor",
"description": "",
"properties": {
"ranged": false,
"melee": false,
"spell": false,
"protection": true,
"weapon": false,
"armor": true,
"helm": false,
"shield": false,
"equipable": true,
"consumable": false,
"magical": false,
"2H": false,
"reloadable": false,
"bow": false,
"crossbow": false,
"throwing": false,
"stackable": false,
"natural": true,
"concealable": false,
"ignoreshield": false,
"attackBonusDice": false,
"onlymodifier": true,
"attackAttribute": "vigor",
"attackAptitude": "melee",
"attackModifiers": 1,
"weaponSize": "unarmed",
"damage": "d6B",
"damageAttribute": "vigor",
"damageModifiers": null,
"damageMultiplier": "1",
"damageReroll1": false,
"modifiers": {
"init": null,
"agility": null,
"powercost": null,
"social": false
},
"armorQuality": "none",
"soak": {
"formula": "",
"value": 1
},
"slot": "none"
},
"quantity": 1,
"weight": 0,
"price": 0,
"worn": true
}
BOL.debug = false; BOL.debug = false;

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.614939 7f14756006c0 Recovering log #301 2024/09/04-08:29:45.600289 7f80f3e006c0 Recovering log #313
2024/08/12-22:22:36.625124 7f14756006c0 Delete type=3 #299 2024/09/04-08:29:45.624187 7f80f3e006c0 Delete type=3 #311
2024/08/12-22:22:36.625176 7f14756006c0 Delete type=0 #301 2024/09/04-08:29:45.624335 7f80f3e006c0 Delete type=0 #313
2024/08/12-22:24:19.300777 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.075489 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.300851 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.075528 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.307219 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.081858 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.328842 7f146fe006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082117 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.328887 7f146fe006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082171 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.749548 7f14756006c0 Recovering log #297 2024/09/03-23:57:02.404112 7f80f3e006c0 Recovering log #309
2024/08/12-14:24:59.759617 7f14756006c0 Delete type=3 #295 2024/09/03-23:57:02.504332 7f80f3e006c0 Delete type=3 #307
2024/08/12-14:24:59.759718 7f14756006c0 Delete type=0 #297 2024/09/03-23:57:02.504411 7f80f3e006c0 Delete type=0 #309
2024/08/12-15:14:31.888362 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.553825 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.888390 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.553904 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.894838 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.560122 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.894997 7f146fe006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566679 7f80f10006c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.895028 7f146fe006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566727 7f80f10006c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000209 MANIFEST-000221

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.584046 7f1476a006c0 Recovering log #207 2024/09/04-08:29:45.543967 7f80f2a006c0 Recovering log #219
2024/08/12-22:22:36.594399 7f1476a006c0 Delete type=3 #205 2024/09/04-08:29:45.568470 7f80f2a006c0 Delete type=3 #217
2024/08/12-22:22:36.594454 7f1476a006c0 Delete type=0 #207 2024/09/04-08:29:45.568609 7f80f2a006c0 Delete type=0 #219
2024/08/12-22:24:19.315310 7f146fe006c0 Level-0 table #212: started 2024/09/04-08:55:35.053637 7f80f10006c0 Level-0 table #224: started
2024/08/12-22:24:19.315377 7f146fe006c0 Level-0 table #212: 0 bytes OK 2024/09/04-08:55:35.053701 7f80f10006c0 Level-0 table #224: 0 bytes OK
2024/08/12-22:24:19.321841 7f146fe006c0 Delete type=0 #210 2024/09/04-08:55:35.060581 7f80f10006c0 Delete type=0 #222
2024/08/12-22:24:19.328866 7f146fe006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082061 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.328902 7f146fe006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082130 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.720560 7f1474c006c0 Recovering log #203 2024/09/03-23:57:02.191364 7f80f2a006c0 Recovering log #215
2024/08/12-14:24:59.731538 7f1474c006c0 Delete type=3 #201 2024/09/03-23:57:02.292367 7f80f2a006c0 Delete type=3 #213
2024/08/12-14:24:59.731601 7f1474c006c0 Delete type=0 #203 2024/09/03-23:57:02.292426 7f80f2a006c0 Delete type=0 #215
2024/08/12-15:14:31.868072 7f146fe006c0 Level-0 table #208: started 2024/09/04-00:02:12.560295 7f80f10006c0 Level-0 table #220: started
2024/08/12-15:14:31.868103 7f146fe006c0 Level-0 table #208: 0 bytes OK 2024/09/04-00:02:12.560338 7f80f10006c0 Level-0 table #220: 0 bytes OK
2024/08/12-15:14:31.874133 7f146fe006c0 Delete type=0 #206 2024/09/04-00:02:12.566575 7f80f10006c0 Delete type=0 #218
2024/08/12-15:14:31.894963 7f146fe006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566717 7f80f10006c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.895004 7f146fe006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566746 7f80f10006c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.471458 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.183554 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.483054 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.233441 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.483128 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.233583 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.266903 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:34.993899 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.266943 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:34.993962 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.273091 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.001825 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.273227 7f146fe006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.023994 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.273257 7f146fe006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024130 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.604150 7f1474c006c0 Recovering log #297 2024/09/03-23:57:01.593096 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.615057 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:01.647346 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.615112 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:01.647452 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.833556 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.502227 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.833611 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.502249 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.840431 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.508162 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.840645 7f146fe006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521455 7f80f10006c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.840677 7f146fe006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521494 7f80f10006c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.487187 7f14760006c0 Recovering log #301 2024/09/04-08:29:45.236757 7f80f34006c0 Recovering log #313
2024/08/12-22:22:36.497741 7f14760006c0 Delete type=3 #299 2024/09/04-08:29:45.285076 7f80f34006c0 Delete type=3 #311
2024/08/12-22:22:36.497799 7f14760006c0 Delete type=0 #301 2024/09/04-08:29:45.285171 7f80f34006c0 Delete type=0 #313
2024/08/12-22:24:19.252816 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.008961 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.252870 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.009000 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.259892 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.015744 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.273201 7f146fe006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024074 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.273242 7f146fe006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024182 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.619377 7f14760006c0 Recovering log #297 2024/09/03-23:57:01.659093 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.630095 7f14760006c0 Delete type=3 #295 2024/09/03-23:57:01.714808 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.630243 7f14760006c0 Delete type=0 #297 2024/09/03-23:57:01.714865 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.826328 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.496079 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.826360 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.496122 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.833311 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.502129 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.840635 7f146fe006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521438 7f80f10006c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.840669 7f146fe006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521486 7f80f10006c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.513300 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.337427 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.524215 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.385247 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.524271 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.385347 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.294026 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.015910 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.294078 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.015983 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.300326 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.023688 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.300533 7f146fe006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024104 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.300580 7f146fe006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024208 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.647136 7f1476a006c0 Recovering log #297 2024/09/03-23:57:01.783330 7f80f3e006c0 Recovering log #309
2024/08/12-14:24:59.658341 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:01.838726 7f80f3e006c0 Delete type=3 #307
2024/08/12-14:24:59.658389 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:01.838785 7f80f3e006c0 Delete type=0 #309
2024/08/12-15:14:31.810317 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.508272 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.812977 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.508294 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.819987 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.514198 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.840600 7f146fe006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521467 7f80f10006c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.840654 7f146fe006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521503 7f80f10006c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000301 MANIFEST-000313

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.709096 7f14760006c0 Recovering log #299 2024/09/04-08:29:45.792446 7f80f34006c0 Recovering log #311
2024/08/12-22:22:36.719849 7f14760006c0 Delete type=3 #297 2024/09/04-08:29:45.814564 7f80f34006c0 Delete type=3 #309
2024/08/12-22:22:36.719957 7f14760006c0 Delete type=0 #299 2024/09/04-08:29:45.814808 7f80f34006c0 Delete type=0 #311
2024/08/12-22:24:19.364925 7f146fe006c0 Level-0 table #304: started 2024/09/04-08:55:35.119784 7f80f10006c0 Level-0 table #316: started
2024/08/12-22:24:19.364969 7f146fe006c0 Level-0 table #304: 0 bytes OK 2024/09/04-08:55:35.119834 7f80f10006c0 Level-0 table #316: 0 bytes OK
2024/08/12-22:24:19.372290 7f146fe006c0 Delete type=0 #302 2024/09/04-08:55:35.127260 7f80f10006c0 Delete type=0 #314
2024/08/12-22:24:19.389594 7f146fe006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.146545 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.389641 7f146fe006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.146620 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.845850 7f14760006c0 Recovering log #295 2024/09/03-23:57:02.921085 7f80f34006c0 Recovering log #307
2024/08/12-14:24:59.856716 7f14760006c0 Delete type=3 #293 2024/09/03-23:57:02.974041 7f80f34006c0 Delete type=3 #305
2024/08/12-14:24:59.856868 7f14760006c0 Delete type=0 #295 2024/09/03-23:57:02.974104 7f80f34006c0 Delete type=0 #307
2024/08/12-15:14:31.940476 7f146fe006c0 Level-0 table #300: started 2024/09/04-00:02:12.594370 7f80f10006c0 Level-0 table #312: started
2024/08/12-15:14:31.940532 7f146fe006c0 Level-0 table #300: 0 bytes OK 2024/09/04-00:02:12.594419 7f80f10006c0 Level-0 table #312: 0 bytes OK
2024/08/12-15:14:31.946997 7f146fe006c0 Delete type=0 #298 2024/09/04-00:02:12.600538 7f80f10006c0 Delete type=0 #310
2024/08/12-15:14:31.953834 7f146fe006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625472 7f80f10006c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.965266 7f146fe006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625539 7f80f10006c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000304 MANIFEST-000316

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.555704 7f14756006c0 Recovering log #302 2024/09/04-08:29:45.493437 7f80f3e006c0 Recovering log #314
2024/08/12-22:22:36.566632 7f14756006c0 Delete type=3 #300 2024/09/04-08:29:45.515415 7f80f3e006c0 Delete type=3 #312
2024/08/12-22:22:36.566685 7f14756006c0 Delete type=0 #302 2024/09/04-08:29:45.515533 7f80f3e006c0 Delete type=0 #314
2024/08/12-22:24:19.273389 7f146fe006c0 Level-0 table #307: started 2024/09/04-08:55:35.039308 7f80f10006c0 Level-0 table #319: started
2024/08/12-22:24:19.273414 7f146fe006c0 Level-0 table #307: 0 bytes OK 2024/09/04-08:55:35.039346 7f80f10006c0 Level-0 table #319: 0 bytes OK
2024/08/12-22:24:19.279499 7f146fe006c0 Delete type=0 #305 2024/09/04-08:55:35.045797 7f80f10006c0 Delete type=0 #317
2024/08/12-22:24:19.300478 7f146fe006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053432 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.300735 7f146fe006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053506 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.689555 7f14756006c0 Recovering log #298 2024/09/03-23:57:01.978005 7f80f34006c0 Recovering log #310
2024/08/12-14:24:59.700195 7f14756006c0 Delete type=3 #296 2024/09/03-23:57:02.062495 7f80f34006c0 Delete type=3 #308
2024/08/12-14:24:59.700248 7f14756006c0 Delete type=0 #298 2024/09/03-23:57:02.062561 7f80f34006c0 Delete type=0 #310
2024/08/12-15:14:31.853236 7f146fe006c0 Level-0 table #303: started 2024/09/04-00:02:12.540620 7f80f10006c0 Level-0 table #315: started
2024/08/12-15:14:31.853280 7f146fe006c0 Level-0 table #303: 0 bytes OK 2024/09/04-00:02:12.540655 7f80f10006c0 Level-0 table #315: 0 bytes OK
2024/08/12-15:14:31.860223 7f146fe006c0 Delete type=0 #301 2024/09/04-00:02:12.547462 7f80f10006c0 Delete type=0 #313
2024/08/12-15:14:31.867937 7f146fe006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547615 7f80f10006c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.867974 7f146fe006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547641 7f80f10006c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000302 MANIFEST-000314

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.669427 7f14756006c0 Recovering log #300 2024/09/04-08:29:45.709007 7f80f3e006c0 Recovering log #312
2024/08/12-22:22:36.679352 7f14756006c0 Delete type=3 #298 2024/09/04-08:29:45.733181 7f80f3e006c0 Delete type=3 #310
2024/08/12-22:22:36.679408 7f14756006c0 Delete type=0 #300 2024/09/04-08:29:45.733331 7f80f3e006c0 Delete type=0 #312
2024/08/12-22:24:19.343213 7f146fe006c0 Level-0 table #305: started 2024/09/04-08:55:35.089354 7f80f10006c0 Level-0 table #317: started
2024/08/12-22:24:19.343237 7f146fe006c0 Level-0 table #305: 0 bytes OK 2024/09/04-08:55:35.089399 7f80f10006c0 Level-0 table #317: 0 bytes OK
2024/08/12-22:24:19.350586 7f146fe006c0 Delete type=0 #303 2024/09/04-08:55:35.096826 7f80f10006c0 Delete type=0 #315
2024/08/12-22:24:19.357356 7f146fe006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112520 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.357462 7f146fe006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112626 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.805392 7f14756006c0 Recovering log #296 2024/09/03-23:57:02.729641 7f80f3e006c0 Recovering log #308
2024/08/12-14:24:59.815257 7f14756006c0 Delete type=3 #294 2024/09/03-23:57:02.791542 7f80f3e006c0 Delete type=3 #306
2024/08/12-14:24:59.815311 7f14756006c0 Delete type=0 #296 2024/09/03-23:57:02.791637 7f80f3e006c0 Delete type=0 #308
2024/08/12-15:14:31.908687 7f146fe006c0 Level-0 table #301: started 2024/09/04-00:02:12.587081 7f80f10006c0 Level-0 table #313: started
2024/08/12-15:14:31.908731 7f146fe006c0 Level-0 table #301: 0 bytes OK 2024/09/04-00:02:12.587145 7f80f10006c0 Level-0 table #313: 0 bytes OK
2024/08/12-15:14:31.915933 7f146fe006c0 Delete type=0 #299 2024/09/04-00:02:12.593984 7f80f10006c0 Delete type=0 #311
2024/08/12-15:14:31.922743 7f146fe006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594221 7f80f10006c0 Manual compaction at level-0 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.922808 7f146fe006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594283 7f80f10006c0 Manual compaction at level-1 from '!items!4EmWdK1cv7EX0X3E' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.500455 7f14756006c0 Recovering log #301 2024/09/04-08:29:45.289560 7f80f3e006c0 Recovering log #313
2024/08/12-22:22:36.510370 7f14756006c0 Delete type=3 #299 2024/09/04-08:29:45.334158 7f80f3e006c0 Delete type=3 #311
2024/08/12-22:22:36.510467 7f14756006c0 Delete type=0 #301 2024/09/04-08:29:45.334251 7f80f3e006c0 Delete type=0 #313
2024/08/12-22:24:19.260077 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.002154 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.260133 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.002242 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.266719 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.008788 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.273212 7f146fe006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024042 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.273249 7f146fe006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.024156 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.633499 7f14756006c0 Recovering log #297 2024/09/03-23:57:01.721377 7f80f34006c0 Recovering log #309
2024/08/12-14:24:59.643504 7f14756006c0 Delete type=3 #295 2024/09/03-23:57:01.776658 7f80f34006c0 Delete type=3 #307
2024/08/12-14:24:59.643606 7f14756006c0 Delete type=0 #297 2024/09/03-23:57:01.776714 7f80f34006c0 Delete type=0 #309
2024/08/12-15:14:31.820154 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.514386 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.820205 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.514437 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.826207 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.521280 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.840623 7f146fe006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521478 7f80f10006c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.840662 7f146fe006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.521512 7f80f10006c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000302 MANIFEST-000314

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.655094 7f14760006c0 Recovering log #300 2024/09/04-08:29:45.683134 7f80f34006c0 Recovering log #312
2024/08/12-22:22:36.666046 7f14760006c0 Delete type=3 #298 2024/09/04-08:29:45.705019 7f80f34006c0 Delete type=3 #310
2024/08/12-22:22:36.666099 7f14760006c0 Delete type=0 #300 2024/09/04-08:29:45.705164 7f80f34006c0 Delete type=0 #312
2024/08/12-22:24:19.350808 7f146fe006c0 Level-0 table #305: started 2024/09/04-08:55:35.097039 7f80f10006c0 Level-0 table #317: started
2024/08/12-22:24:19.350848 7f146fe006c0 Level-0 table #305: 0 bytes OK 2024/09/04-08:55:35.097075 7f80f10006c0 Level-0 table #317: 0 bytes OK
2024/08/12-22:24:19.357169 7f146fe006c0 Delete type=0 #303 2024/09/04-08:55:35.103696 7f80f10006c0 Delete type=0 #315
2024/08/12-22:24:19.357384 7f146fe006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112549 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.357488 7f146fe006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112652 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.790839 7f14760006c0 Recovering log #296 2024/09/03-23:57:02.666135 7f80f34006c0 Recovering log #308
2024/08/12-14:24:59.801540 7f14760006c0 Delete type=3 #294 2024/09/03-23:57:02.722130 7f80f34006c0 Delete type=3 #306
2024/08/12-14:24:59.801595 7f14760006c0 Delete type=0 #296 2024/09/03-23:57:02.722238 7f80f34006c0 Delete type=0 #308
2024/08/12-15:14:31.902415 7f146fe006c0 Level-0 table #301: started 2024/09/04-00:02:12.580228 7f80f10006c0 Level-0 table #313: started
2024/08/12-15:14:31.902463 7f146fe006c0 Level-0 table #301: 0 bytes OK 2024/09/04-00:02:12.580253 7f80f10006c0 Level-0 table #313: 0 bytes OK
2024/08/12-15:14:31.908530 7f146fe006c0 Delete type=0 #299 2024/09/04-00:02:12.586840 7f80f10006c0 Delete type=0 #311
2024/08/12-15:14:31.922732 7f146fe006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594205 7f80f10006c0 Manual compaction at level-0 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.922775 7f146fe006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594266 7f80f10006c0 Manual compaction at level-1 from '!items!1wKT8PUphVwAprIp' @ 72057594037927935 : 1 .. '!items!xR5KdgOQucELl1sn' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.629308 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.628430 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.639961 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.650295 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.640023 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.650414 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.322043 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.067585 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.322091 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.067673 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.328713 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.075311 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.328879 7f146fe006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082099 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.328908 7f146fe006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082155 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.763075 7f1476a006c0 Recovering log #297 2024/09/03-23:57:02.521039 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.773060 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:02.598636 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.773198 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:02.598696 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.881862 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.566783 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.881911 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.566808 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.888239 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.573557 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.894987 7f146fe006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594165 7f80f10006c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.895018 7f146fe006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594235 7f80f10006c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.694438 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.765001 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.705954 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.788819 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.706016 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.788950 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.357633 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.112898 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.357706 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.113011 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.364683 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.119600 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.389584 7f146fe006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.146523 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.389621 7f146fe006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.146600 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.832587 7f1474c006c0 Recovering log #297 2024/09/03-23:57:02.858975 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.842202 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:02.913613 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.842302 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:02.913669 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.947158 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.608054 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.947195 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.608097 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.953642 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.614495 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.953846 7f146fe006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625516 7f80f10006c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.965285 7f146fe006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625559 7f80f10006c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.527859 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.388988 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.537836 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.461532 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.537941 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.461673 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.245764 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.031416 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.245830 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.031477 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.252603 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.039121 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.273190 7f146fe006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053410 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.273236 7f146fe006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053487 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.661738 7f1474c006c0 Recovering log #297 2024/09/03-23:57:01.845674 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.671865 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:01.899154 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.671915 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:01.899286 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.846935 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.534195 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.846967 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.534250 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.853057 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.540487 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.867923 7f146fe006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547606 7f80f10006c0 Manual compaction at level-0 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.867966 7f146fe006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547635 7f80f10006c0 Manual compaction at level-1 from '!items!2Wtl8xrKf46LMwBF' @ 72057594037927935 : 1 .. '!items!zIlZmEd9WAA473UX' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.681905 7f1474c006c0 Recovering log #301 2024/09/04-08:29:45.737290 7f80f20006c0 Recovering log #313
2024/08/12-22:22:36.691535 7f1474c006c0 Delete type=3 #299 2024/09/04-08:29:45.761609 7f80f20006c0 Delete type=3 #311
2024/08/12-22:22:36.691594 7f1474c006c0 Delete type=0 #301 2024/09/04-08:29:45.761710 7f80f20006c0 Delete type=0 #313
2024/08/12-22:24:19.329033 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.103875 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.329057 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.103934 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.336458 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.112160 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.357324 7f146fe006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112573 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.357410 7f146fe006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112706 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.817820 7f1476a006c0 Recovering log #297 2024/09/03-23:57:02.798029 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.829066 7f1476a006c0 Delete type=3 #295 2024/09/03-23:57:02.852893 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.829197 7f1476a006c0 Delete type=0 #297 2024/09/03-23:57:02.852957 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.916124 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.600662 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.916173 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.600686 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.922560 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.607867 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.922766 7f146fe006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625502 7f80f10006c0 Manual compaction at level-0 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.922816 7f146fe006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.625548 7f80f10006c0 Manual compaction at level-1 from '!items!0a8UFoCOd3D35WBb' @ 72057594037927935 : 1 .. '!items!y9NHZCxKXMZEqcRo' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.542626 7f14760006c0 Recovering log #301 2024/09/04-08:29:45.464980 7f80f34006c0 Recovering log #313
2024/08/12-22:22:36.552800 7f14760006c0 Delete type=3 #299 2024/09/04-08:29:45.490148 7f80f34006c0 Delete type=3 #311
2024/08/12-22:22:36.552854 7f14760006c0 Delete type=0 #301 2024/09/04-08:29:45.490265 7f80f34006c0 Delete type=0 #313
2024/08/12-22:24:19.286697 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.024395 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.286730 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.024475 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.293817 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.031136 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.300517 7f146fe006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053373 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.300566 7f146fe006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053467 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.676428 7f14760006c0 Recovering log #297 2024/09/03-23:57:01.916540 7f80f20006c0 Recovering log #309
2024/08/12-14:24:59.686359 7f14760006c0 Delete type=3 #295 2024/09/03-23:57:01.971084 7f80f20006c0 Delete type=3 #307
2024/08/12-14:24:59.686411 7f14760006c0 Delete type=0 #297 2024/09/03-23:57:01.971164 7f80f20006c0 Delete type=0 #309
2024/08/12-15:14:31.840778 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.521599 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.840812 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.521659 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.846814 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.527723 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.867903 7f146fe006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547585 7f80f10006c0 Manual compaction at level-0 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.867958 7f146fe006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566660 7f80f10006c0 Manual compaction at level-1 from '!items!3oOvUd7AIqrXzLDl' @ 72057594037927935 : 1 .. '!items!oWexVALVtDXmedMy' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000303 MANIFEST-000315

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.643096 7f1476a006c0 Recovering log #301 2024/09/04-08:29:45.655079 7f80f2a006c0 Recovering log #313
2024/08/12-22:22:36.652584 7f1476a006c0 Delete type=3 #299 2024/09/04-08:29:45.680053 7f80f2a006c0 Delete type=3 #311
2024/08/12-22:22:36.652643 7f1476a006c0 Delete type=0 #301 2024/09/04-08:29:45.680170 7f80f2a006c0 Delete type=0 #313
2024/08/12-22:24:19.336653 7f146fe006c0 Level-0 table #306: started 2024/09/04-08:55:35.082269 7f80f10006c0 Level-0 table #318: started
2024/08/12-22:24:19.336694 7f146fe006c0 Level-0 table #306: 0 bytes OK 2024/09/04-08:55:35.082316 7f80f10006c0 Level-0 table #318: 0 bytes OK
2024/08/12-22:24:19.343085 7f146fe006c0 Delete type=0 #304 2024/09/04-08:55:35.089165 7f80f10006c0 Delete type=0 #316
2024/08/12-22:24:19.357341 7f146fe006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112477 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.357436 7f146fe006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.112600 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.776734 7f1474c006c0 Recovering log #297 2024/09/03-23:57:02.604977 7f80f2a006c0 Recovering log #309
2024/08/12-14:24:59.787373 7f1474c006c0 Delete type=3 #295 2024/09/03-23:57:02.659870 7f80f2a006c0 Delete type=3 #307
2024/08/12-14:24:59.787500 7f1474c006c0 Delete type=0 #297 2024/09/03-23:57:02.659925 7f80f2a006c0 Delete type=0 #309
2024/08/12-15:14:31.895104 7f146fe006c0 Level-0 table #302: started 2024/09/04-00:02:12.573763 7f80f10006c0 Level-0 table #314: started
2024/08/12-15:14:31.895138 7f146fe006c0 Level-0 table #302: 0 bytes OK 2024/09/04-00:02:12.573826 7f80f10006c0 Level-0 table #314: 0 bytes OK
2024/08/12-15:14:31.902306 7f146fe006c0 Delete type=0 #300 2024/09/04-00:02:12.580109 7f80f10006c0 Delete type=0 #312
2024/08/12-15:14:31.922719 7f146fe006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594186 7f80f10006c0 Manual compaction at level-0 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.922784 7f146fe006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.594250 7f80f10006c0 Manual compaction at level-1 from '!items!2svd3uio8Hp4e5Wy' @ 72057594037927935 : 1 .. '!items!zq5h9kCpo8gK4oIH' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000210 MANIFEST-000222

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.600894 7f14760006c0 Recovering log #208 2024/09/04-08:29:45.572168 7f80f34006c0 Recovering log #220
2024/08/12-22:22:36.611841 7f14760006c0 Delete type=3 #206 2024/09/04-08:29:45.596979 7f80f34006c0 Delete type=3 #218
2024/08/12-22:22:36.611974 7f14760006c0 Delete type=0 #208 2024/09/04-08:29:45.597113 7f80f34006c0 Delete type=0 #220
2024/08/12-22:24:19.307405 7f146fe006c0 Level-0 table #213: started 2024/09/04-08:55:35.060765 7f80f10006c0 Level-0 table #225: started
2024/08/12-22:24:19.307456 7f146fe006c0 Level-0 table #213: 0 bytes OK 2024/09/04-08:55:35.060804 7f80f10006c0 Level-0 table #225: 0 bytes OK
2024/08/12-22:24:19.315163 7f146fe006c0 Delete type=0 #211 2024/09/04-08:55:35.067304 7f80f10006c0 Delete type=0 #223
2024/08/12-22:24:19.328855 7f146fe006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082083 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.328894 7f146fe006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.082142 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.735039 7f14760006c0 Recovering log #204 2024/09/03-23:57:02.303953 7f80f34006c0 Recovering log #216
2024/08/12-14:24:59.746320 7f14760006c0 Delete type=3 #202 2024/09/03-23:57:02.401062 7f80f34006c0 Delete type=3 #214
2024/08/12-14:24:59.746431 7f14760006c0 Delete type=0 #204 2024/09/03-23:57:02.401144 7f80f34006c0 Delete type=0 #216
2024/08/12-15:14:31.874299 7f146fe006c0 Level-0 table #209: started 2024/09/04-00:02:12.547706 7f80f10006c0 Level-0 table #221: started
2024/08/12-15:14:31.874344 7f146fe006c0 Level-0 table #209: 0 bytes OK 2024/09/04-00:02:12.547740 7f80f10006c0 Level-0 table #221: 0 bytes OK
2024/08/12-15:14:31.881684 7f146fe006c0 Delete type=0 #207 2024/09/04-00:02:12.553588 7f80f10006c0 Delete type=0 #219
2024/08/12-15:14:31.894976 7f146fe006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566670 7f80f10006c0 Manual compaction at level-0 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.895011 7f146fe006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.566689 7f80f10006c0 Manual compaction at level-1 from '!items!2cqkViQnOYZ4qwU1' @ 72057594037927935 : 1 .. '!items!qcCZxbaV9sucG1XK' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000214 MANIFEST-000226

View File

@ -1,8 +1,8 @@
2024/08/12-22:22:36.570130 7f1474c006c0 Recovering log #212 2024/09/04-08:29:45.519219 7f80f20006c0 Recovering log #224
2024/08/12-22:22:36.579735 7f1474c006c0 Delete type=3 #210 2024/09/04-08:29:45.540052 7f80f20006c0 Delete type=3 #222
2024/08/12-22:22:36.579839 7f1474c006c0 Delete type=0 #212 2024/09/04-08:29:45.540150 7f80f20006c0 Delete type=0 #224
2024/08/12-22:24:19.279670 7f146fe006c0 Level-0 table #217: started 2024/09/04-08:55:35.046034 7f80f10006c0 Level-0 table #229: started
2024/08/12-22:24:19.279711 7f146fe006c0 Level-0 table #217: 0 bytes OK 2024/09/04-08:55:35.046147 7f80f10006c0 Level-0 table #229: 0 bytes OK
2024/08/12-22:24:19.286552 7f146fe006c0 Delete type=0 #215 2024/09/04-08:55:35.053132 7f80f10006c0 Delete type=0 #227
2024/08/12-22:24:19.300498 7f146fe006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053449 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/08/12-22:24:19.300548 7f146fe006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) 2024/09/04-08:55:35.053524 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2024/08/12-14:24:59.706651 7f1476a006c0 Recovering log #208 2024/09/03-23:57:02.078931 7f80f3e006c0 Recovering log #220
2024/08/12-14:24:59.716230 7f1476a006c0 Delete type=3 #206 2024/09/03-23:57:02.174757 7f80f3e006c0 Delete type=3 #218
2024/08/12-14:24:59.716291 7f1476a006c0 Delete type=0 #208 2024/09/03-23:57:02.174947 7f80f3e006c0 Delete type=0 #220
2024/08/12-15:14:31.860558 7f146fe006c0 Level-0 table #213: started 2024/09/04-00:02:12.527840 7f80f10006c0 Level-0 table #225: started
2024/08/12-15:14:31.860611 7f146fe006c0 Level-0 table #213: 0 bytes OK 2024/09/04-00:02:12.527868 7f80f10006c0 Level-0 table #225: 0 bytes OK
2024/08/12-15:14:31.867654 7f146fe006c0 Delete type=0 #211 2024/09/04-00:02:12.533992 7f80f10006c0 Delete type=0 #223
2024/08/12-15:14:31.867950 7f146fe006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547597 7f80f10006c0 Manual compaction at level-0 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)
2024/08/12-15:14:31.867984 7f146fe006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end) 2024/09/04-00:02:12.547622 7f80f10006c0 Manual compaction at level-1 from '!items!4lJhbU88iUgmuCzv' @ 72057594037927935 : 1 .. '!items!zjOFhNocHjeJZcy4' @ 0 : 0; will stop at (end)

View File

@ -14,9 +14,9 @@
], ],
"url": "https://www.uberwald.me/gitea/public/bol", "url": "https://www.uberwald.me/gitea/public/bol",
"license": "LICENSE.txt", "license": "LICENSE.txt",
"version": "12.0.1", "version": "12.0.2",
"compatibility": { "compatibility": {
"minimum": "12", "minimum": "11",
"verified": "12" "verified": "12"
}, },
"esmodules": [ "esmodules": [
@ -318,10 +318,12 @@
], ],
"socket": true, "socket": true,
"manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json", "manifest": "https://www.uberwald.me/gitea/public/bol/raw/v10/system.json",
"download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.0.1.zip", "download": "https://www.uberwald.me/gitea/public/bol/archive/bol-v12.0.2.zip",
"background": "systems/bol/ui/page_accueil.webp", "background": "systems/bol/ui/page_accueil.webp",
"gridDistance": 1.5,
"gridUnits": "m",
"primaryTokenAttribute": "resources.hp", "primaryTokenAttribute": "resources.hp",
"secondaryTokenAttribute": "resources.hero" "secondaryTokenAttribute": "resources.hero",
"grid": {
"distance": 1.5,
"units": "m"
}
} }

View File

@ -1,5 +1,5 @@
<!--ARMES--> <!--ARMES-->
<button class="create_item">{{localize "BOL.ui.createEquipment"}}</button> <button class="create-item">{{localize "BOL.ui.createEquipment"}}</button>
{{#if useBougette}} {{#if useBougette}}
<ol class="items-list"> <ol class="items-list">

View File

@ -6,6 +6,7 @@
<div class="item-name flex2">{{localize combatType.label}}</div> <div class="item-name flex2">{{localize combatType.label}}</div>
{{#if protection}}<div class="item-field">{{localize "BOL.ui.protection"}}</div>{{/if}} {{#if protection}}<div class="item-field">{{localize "BOL.ui.protection"}}</div>{{/if}}
{{#if blocking}}<div class="item-field">{{localize "BOL.ui.blocking"}}</div>{{/if}} {{#if blocking}}<div class="item-field">{{localize "BOL.ui.blocking"}}</div>{{/if}}
{{#if weapon}}<div class="item-field">{{localize "BOL.ui.attackModifier"}}</div>{{/if}}
{{#if weapon}}<div class="item-field">{{localize "BOL.ui.damages"}}</div>{{/if}} {{#if weapon}}<div class="item-field">{{localize "BOL.ui.damages"}}</div>{{/if}}
{{#if ranged}}<div class="item-field">{{localize "BOL.ui.range"}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if ranged}}<div class="item-field">{{localize "BOL.ui.range"}}</div>{{else}}<div class="item-field"></div>{{/if}}
{{#if options}}<div class="item-field">{{localize "BOL.ui.status"}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if options}}<div class="item-field">{{localize "BOL.ui.status"}}</div>{{else}}<div class="item-field"></div>{{/if}}
@ -17,6 +18,7 @@
<h4 class="item-name flex2">{{#if ../weapon}}<a class="rollable" data-roll-type="weapon">{{/if}}{{item.name}}{{#if ../weapon}}</a>{{/if}}</h4> <h4 class="item-name flex2">{{#if ../weapon}}<a class="rollable" data-roll-type="weapon">{{/if}}{{item.name}}{{#if ../weapon}}</a>{{/if}}</h4>
{{#if ../protection}}<div class="item-field"><a class="rollable" data-roll-type="protection">{{item.system.properties.soak.formula}}</a> / {{item.system.properties.soak.value}}</div>{{/if}} {{#if ../protection}}<div class="item-field"><a class="rollable" data-roll-type="protection">{{item.system.properties.soak.formula}}</a> / {{item.system.properties.soak.value}}</div>{{/if}}
{{#if ../blocking}}<div class="item-field">{{item.system.properties.blocking.malus}}</div>{{/if}} {{#if ../blocking}}<div class="item-field">{{item.system.properties.blocking.malus}}</div>{{/if}}
{{#if ../weapon}}<div class="item-field">{{item.system.properties.attackModifiers}}</div>{{/if}}
{{#if ../weapon}}<div class="item-field"><a class="rollable" data-roll-type="damage">{{item.system.properties.damage}}+{{item.system.properties.damageModifiers}} x{{item.system.properties.damageMultiplier}}</a></div>{{/if}} {{#if ../weapon}}<div class="item-field"><a class="rollable" data-roll-type="damage">{{item.system.properties.damage}}+{{item.system.properties.damageModifiers}} x{{item.system.properties.damageMultiplier}}</a></div>{{/if}}
{{#if ../ranged}}<div class="item-field">{{item.system.properties.range}}</div>{{else}}<div class="item-field"></div>{{/if}} {{#if ../ranged}}<div class="item-field">{{item.system.properties.range}}</div>{{else}}<div class="item-field"></div>{{/if}}
{{#if ../options}}<div class="item-field"> {{#if ../options}}<div class="item-field">
@ -63,3 +65,9 @@
</ol> </ol>
{{/if}} {{/if}}
{{/each}} {{/each}}
<div class="flexrow">
<button class="create-natural-weapon">{{localize "BOL.ui.createNaturalWeapon"}}</button>
&nbsp;&nbsp;&nbsp;&nbsp;
<button class="create-natural-protection">{{localize "BOL.ui.createNaturalProtection"}}</button>
</div>

View File

@ -14,7 +14,13 @@
<hr/> <hr/>
<div class="aptitudes flexrow"> <div class="aptitudes flexrow">
<div class="aptitude stat flex1 flex-group-center"> <div class="aptitude stat flex1 flex-group-center">
<div class="stat-label"><a class="rollable" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">{{localize "BOL.aptitudes.def"}}</a></label><br/> <div class="">
<label class="stat-label">
<a class="rollable" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">
{{localize "BOL.aptitudes.def"}}
</a>
</label>
<br/>
<input class="stat-value rounded-border" type="text" name="system.aptitudes.def.value" value="{{numberFormat aptitudes.3.value decimals=0 sign=true}}" data-dtype="Number"/><br/> <input class="stat-value rounded-border" type="text" name="system.aptitudes.def.value" value="{{numberFormat aptitudes.3.value decimals=0 sign=true}}" data-dtype="Number"/><br/>
<span class="stat-roll rollable" title="2d6" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def"> <span class="stat-roll rollable" title="2d6" data-roll-type="aptitude" data-roll="2d6+@aptitudes.def.value" data-adv="0" data-key="def">
<i class="darkgreen fas fa-dice"></i> <i class="darkgreen fas fa-dice"></i>