Compare commits

..

7 Commits

Author SHA1 Message Date
uberwald a234ba5d14 COrrection sur predilections
Release Creation / build (release) Successful in 54s
2026-04-30 23:34:16 +02:00
uberwald 463e9ebb19 Correction sur les runes actives et update compendiums
Release Creation / build (release) Successful in 51s
2026-04-09 23:48:01 +02:00
uberwald d8cfdfb96d Correction pour l'activation des runes, qui ne marchai plus 2026-04-08 23:53:32 +02:00
uberwald 1e63db8c39 Foundryv14 migration 2026-04-01 22:40:03 +02:00
uberwald b97f8688e4 Foundryv14 migration
Release Creation / build (release) Successful in 46s
2026-04-01 22:39:25 +02:00
uberwald 9836bd50e6 Resultat impari sur D20 dans messages et corrections diverses
Release Creation / build (release) Successful in 46s
2026-03-10 21:37:33 +01:00
uberwald 6b909b192b Resultat impari sur D20 dans messages et corrections diverses 2026-03-10 21:37:20 +01:00
133 changed files with 432 additions and 332 deletions
+1 -1
View File
@@ -60,4 +60,4 @@ jobs:
manifest: 'https://www.uberwald.me/gitea/public/fvtt-mournblade/releases/download/latest/system.json'
notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-mournblade.zip'
compatibility-minimum: '13'
compatibility-verified: '13'
compatibility-verified: '14'
+1
View File
@@ -1,2 +1,3 @@
.history/
node_modules
.github/
+1
View File
@@ -43,6 +43,7 @@
"MNBL.disarm": "Disarm",
"MNBL.doubleD20": "Double d20 (1 Shard Point)",
"MNBL.dramaticfailure": "Dramatic Failure",
"MNBL.oddresult": "Odd result — the die counts as 0",
"MNBL.duration": "Duration",
"MNBL.easy": "Easy (5)",
"MNBL.eclat": "Shard",
+1
View File
@@ -161,6 +161,7 @@
"MNBL.failure": "Echec",
"MNBL.heroicsuccess": "Succés Héroïque",
"MNBL.dramaticfailure": "Echec Dramatique",
"MNBL.oddresult": "Résultat impair — le dé compte pour 0",
"MNBL.attackmountbonus": "Attaquant monté vs def. au sol (+5)",
"MNBL.targetdefense": "Défense adversaire",
+37 -21
View File
@@ -117,27 +117,29 @@
}
}
.chat-card-button {
background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%);
border: 2px ridge #846109;
color: #d4b5a8;
padding: 0.3rem 0.5rem;
transition: all 0.2s ease;
}
i {
font-size: 0.9rem;
}
.chat-card-button {
background: linear-gradient(to bottom, #21374afc 5%, #152833ab 100%);
border: 2px ridge #846109;
color: #d4b5a8;
padding: 0.3rem 0.5rem;
transition: all 0.2s ease;
cursor: pointer;
&:hover {
background: linear-gradient(to bottom, #800000 5%, #3e0101 100%);
color: #ffffff;
box-shadow: 0 0 8px rgba(128, 0, 0, 0.6);
}
i {
font-size: 0.9rem;
}
&:active {
position: relative;
top: 1px;
}
&:hover {
background: linear-gradient(to bottom, #800000 5%, #3e0101 100%);
color: #ffffff;
box-shadow: 0 0 8px rgba(128, 0, 0, 0.6);
}
&:active {
position: relative;
top: 1px;
}
}
@@ -229,8 +231,21 @@
&.flexrow {
display: flex;
flex-direction: row;
align-items: center;
align-items: flex-start;
gap: 4px;
input[type="checkbox"] {
margin-top: 3px;
flex-shrink: 0;
}
}
h3 {
color: #2a1a0a;
font-size: 1rem;
font-weight: bold;
margin: 0;
text-shadow: none;
}
}
}
@@ -275,8 +290,9 @@
}
.item-field-label-long3 {
flex: 1;
min-width: 350px;
max-width: 350px;
min-width: 250px;
white-space: normal;
line-height: 1.3;
}
.numeric-input {
@@ -132,7 +132,7 @@ export default class MournbladeItemSheet extends HandlebarsApplicationMixin(foun
payload: chatData,
})
const html = await renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData)
const html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData)
const chatOptions = {
user: game.user.id,
content: html,
@@ -10,6 +10,11 @@ export default class MournbladeCompetenceSheet extends MournbladeItemSheet {
window: {
contentClasses: ["competence-content"],
},
actions: {
...MournbladeItemSheet.DEFAULT_OPTIONS.actions,
addPredilection: MournbladeCompetenceSheet.#onAddPredilection,
deletePredilection: MournbladeCompetenceSheet.#onDeletePredilection,
},
}
/** @override */
@@ -46,4 +51,28 @@ export default class MournbladeCompetenceSheet extends MournbladeItemSheet {
context.tabs = this.#getTabs()
return context
}
/**
* Add a new empty predilection to the competence
* @param {PointerEvent} event
*/
static async #onAddPredilection(event) {
event.preventDefault()
const predilections = foundry.utils.duplicate(this.document.system.predilections ?? [])
predilections.push({ name: "", used: false })
await this.document.update({ "system.predilections": predilections })
}
/**
* Delete a predilection by index
* @param {PointerEvent} event
* @param {HTMLElement} target
*/
static async #onDeletePredilection(event, target) {
event.preventDefault()
const idx = Number(target.dataset.predictionIndex)
const predilections = foundry.utils.duplicate(this.document.system.predilections ?? [])
predilections.splice(idx, 1)
await this.document.update({ "system.predilections": predilections })
}
}
+16 -1
View File
@@ -11,7 +11,22 @@ export default class CompetenceDataModel extends foundry.abstract.TypeDataModel
attribut2: new fields.StringField({ initial: "" }),
attribut3: new fields.StringField({ initial: "" }),
doublebonus: new fields.BooleanField({ initial: false }),
predilections: new fields.ArrayField(new fields.StringField(), { initial: [] })
predilections: new fields.ArrayField(
new fields.SchemaField({
name: new fields.StringField({ initial: "" }),
used: new fields.BooleanField({ initial: false })
}),
{ initial: [] }
)
};
}
static migrateData(source) {
if (Array.isArray(source.predilections)) {
source.predilections = source.predilections.map(pred =>
typeof pred === "string" ? { name: pred, used: false } : pred
);
}
return super.migrateData(source);
}
}
+13 -26
View File
@@ -18,6 +18,12 @@ export class MournbladeActor extends Actor {
// Calculate derived attributes
const data = this.system;
if (this.type == 'personnage') {
// Compute base health and max soul from attributes (derived, no DB write needed)
data.sante.base = data.sante.bonus + (data.attributs.pui.value + data.attributs.tre.value) * 2 + 5;
data.ame.fullmax = (data.attributs.cla.value + data.attributs.tre.value) * data.biodata.amemultiplier + 5;
}
// Calculate total health
data.sante.total = data.sante.base + data.sante.bonus;
@@ -32,7 +38,7 @@ export class MournbladeActor extends Actor {
}
prepareDerivedData() {
this.prepareData();
super.prepareDerivedData();
}
/* -------------------------------------------- */
@@ -299,25 +305,6 @@ export class MournbladeActor extends Actor {
return combat
}
/* -------------------------------------------- */
prepareDerivedData() {
if (this.type == 'personnage') {
let newSante = this.system.sante.bonus + (this.system.attributs.pui.value + this.system.attributs.tre.value) * 2 + 5
if (this.system.sante.base != newSante && this._id) {
// Only update if the actor already exists (has an _id)
this.update({ 'system.sante.base': newSante })
}
let newAme = (this.system.attributs.cla.value + this.system.attributs.tre.value) * this.system.biodata.amemultiplier + 5
if (this.system.ame.fullmax != newAme && this._id) {
// Only update if the actor already exists (has an _id)
this.update({ 'system.ame.fullmax': newAme })
}
}
super.prepareDerivedData()
}
/* -------------------------------------------- */
_preUpdate(changed, options, user) {
@@ -583,8 +570,8 @@ export class MournbladeActor extends Actor {
this.update({ 'system.ressources': ressources })
ChatMessage.create({
content: "L'utilisation de la capacité/arme a dépensé " + arme.system.nbressources + " ressources.",
whisper: game.user._id,
user: game.user._id
whisper: game.user.id,
user: game.user.id
});
} else {
ui.notifications.warn("Points de ressources insuffisants.")
@@ -712,7 +699,7 @@ export class MournbladeActor extends Actor {
if (rollData.defender) {
rollData.selectDifficulte = false
let comp = rollData.defender.items.find(it => it.type == "competence" && it.name.toLowerCase() == "mouvements")
rollData.difficulte = rollData.defender.system.attributs.adr.value + ((comp) ? comp.system.niveau : rollData.defender.system.attributs.adr.value)
rollData.difficulte = rollData.defender.system.attributs.adr.value + ((comp) ? comp.system.niveau : rollData.defender.system.attributs.adr.value)
}
console.log("Fuir!", rollData)
await MournbladeRollDialog.create(this, rollData)
@@ -735,7 +722,7 @@ export class MournbladeActor extends Actor {
let arme = this.items.get(armeId)
if (arme) {
MournbladeUtility.createChatWithRollMode("GM", {
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.hbs`, arme)
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.hbs`, arme)
}, arme)
this.depenseRessources(arme)
}
@@ -751,10 +738,10 @@ export class MournbladeActor extends Actor {
arme = this.prepareBouclier(arme)
}
//Unused rollData.degatsFormula = arme.system.totalDegats
let roll = await new Roll(arme.system.totalDegats).roll()
let roll = await new Roll(arme.system.totalDegats).evaluate()
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
let rollData = {
degatsFormula:arme.system.totalDegats,
degatsFormula: arme.system.totalDegats,
arme: arme,
finalResult: roll.total,
alias: this.name,
+1 -1
View File
@@ -10,7 +10,7 @@ export class MournbladeCombat extends Combat {
const c = this.combatants.get(ids[cId]);
let id = c._id || c.id;
let initBonus = c.actor ? c.actor.getInitiativeScore() : 0
let roll = new Roll("1d10 + "+initBonus).roll({ async: false})
let roll = await new Roll("1d10 + "+initBonus).evaluate()
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"))
//console.log("Init bonus", initBonus, roll.total)
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: roll.total } ]);
+3 -3
View File
@@ -89,7 +89,7 @@ export class MournbladeCommands {
if (command && command.func) {
const result = command.func(content, msg, params);
if (result == false) {
RdDCommands._chatAnswer(msg, command.descr);
MournbladeCommands._chatAnswer(msg, command.descr);
}
return true;
}
@@ -98,8 +98,8 @@ export class MournbladeCommands {
/* -------------------------------------------- */
async createChar(msg) {
game.system.Mournblade.creator = new MournbladeActorCreate();
game.system.Mournblade.creator.start();
game.system.mournblade.creator = new MournbladeActorCreate();
game.system.mournblade.creator.start();
}
/* -------------------------------------------- */
+1 -1
View File
@@ -106,7 +106,7 @@ export class MournbladeItemSheet extends foundry.appv1.sheets.ItemSheet {
payload: chatData,
});
renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData).then(html => {
foundry.applications.handlebars.renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData).then(html => {
let chatOptions = MournbladeUtility.chatDataSetup(html);
ChatMessage.create(chatOptions)
});
+4 -4
View File
@@ -44,7 +44,7 @@ Hooks.once("init", async function () {
};
/* -------------------------------------------- */
game.socket.on("system.fvtt-mournblade-rpg", data => {
game.socket.on("system.fvtt-mournblade", data => {
MournbladeUtility.onSocketMesssage(data);
});
@@ -119,7 +119,7 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */
async function welcomeMessage() {
const templateData = {};
const html = await renderTemplate("systems/fvtt-mournblade/templates/chat-welcome-message.hbs", templateData);
const html = await foundry.applications.handlebars.renderTemplate("systems/fvtt-mournblade/templates/chat-welcome-message.hbs", templateData);
ChatMessage.create({
user: game.user.id,
@@ -154,14 +154,14 @@ Hooks.once("ready", function () {
ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !");
ChatMessage.create({
content: "<b>ATTENTION</b> Le joueur " + game.user.name + " n'est relié à aucun personnage !",
user: game.user._id
user: game.user.id
});
}
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
ui.notifications.info("Le token de du joueur n'est pas connecté à l'acteur !");
ChatMessage.create({
content: "<b>ATTENTION</b> Le token du joueur " + game.user.name + " n'est pas connecté à l'acteur !",
user: game.user._id
user: game.user.id
});
}
+24 -3
View File
@@ -154,7 +154,7 @@ export class MournbladeUtility {
if (game.user.isGM) {
MournbladeUtility.applyDegatsFromAttaque(rollData)
} else {
game.socket.emit("system.fvtt-mournblade", { name: "msg_apply_damage", data: { rolLData: rollData } })
game.socket.emit("system.fvtt-mournblade", { name: "msg_apply_damage", data: { rollData: rollData } })
}
})
}
@@ -294,6 +294,7 @@ export class MournbladeUtility {
if (diceValue % 2 == 1) {
//console.log("PAIR/IMP2", diceValue)
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
rollData.isImpair = true
if (diceValue == 1 || diceValue == 11) {
rollData.isDramatique = true
rollData.isSuccess = false
@@ -312,6 +313,7 @@ export class MournbladeUtility {
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
rollData.isPureSuccess = (rollData.isSuccess && !rollData.isHeroique)
}
rollData.isEchec = !rollData.isSuccess
}
/* -------------------------------------------- */
@@ -414,6 +416,25 @@ export class MournbladeUtility {
subAme = Math.ceil((subAme + 1) / 2)
}
actor.subPointsAme(rollData.runemode, subAme)
// Créer l'effet de rune sur l'acteur si le jet est réussi
if (rollData.isSuccess) {
const effetMode = (rollData.runemode == "prononcer") ? "prononcee" : "inscrite"
const dureeLabel = rollData.runeduree === 1
? `${rollData.runeduree} tour`
: `${rollData.runeduree} tours`
await actor.createEmbeddedDocuments("Item", [{
name: rollData.rune.name,
type: "runeeffect",
img: rollData.rune.img || "systems/fvtt-mournblade/assets/icons/rune.webp",
system: {
rune: rollData.rune.name,
mode: effetMode,
duree: dureeLabel,
pointame: rollData.runeame
}
}])
}
}
if (rollData.typeAttaque == "assomer" && rollData.defenderTokenId && rollData.isPureSuccess) {
let defender = game.canvas.tokens.get(rollData?.defenderTokenId)?.actor
@@ -608,7 +629,7 @@ export class MournbladeUtility {
chatGM.whisper = this.getUsers(user => user.isGM);
chatGM.content = "Blinde message of " + game.user.name + "<br>" + chatOptions.content;
console.log("blindMessageToGM", chatGM);
game.socket.emit("system.fvtt-weapons-of-the-gods", { msg: "msg_gm_chat_message", data: chatGM });
game.socket.emit("system.fvtt-mournblade", { msg: "msg_gm_chat_message", data: chatGM });
}
/* -------------------------------------------- */
@@ -682,7 +703,7 @@ export class MournbladeUtility {
let target = MournbladeUtility.getTarget()
if (target) {
rollData.defenderTokenId = target.id
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
rollData.defenderCombatValues = defender.getCombatValues()
rollData.defender = defender.toObject() // Simpler
rollData.defenderDefense = defender.getBestDefenseValue()
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000304
MANIFEST-000325
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.709189 7f1c56bff6c0 Recovering log #302
2026/01/09-16:51:34.720652 7f1c56bff6c0 Delete type=3 #300
2026/01/09-16:51:34.720827 7f1c56bff6c0 Delete type=0 #302
2026/01/09-17:10:52.171232 7f1c54bfb6c0 Level-0 table #307: started
2026/01/09-17:10:52.171270 7f1c54bfb6c0 Level-0 table #307: 0 bytes OK
2026/01/09-17:10:52.181182 7f1c54bfb6c0 Delete type=0 #305
2026/01/09-17:10:52.181380 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.181415 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.303191 7f983b7fe6c0 Recovering log #323
2026/04/09-23:45:58.319529 7f983b7fe6c0 Delete type=3 #321
2026/04/09-23:45:58.319588 7f983b7fe6c0 Delete type=0 #323
2026/04/09-23:47:18.879327 7f983a7fc6c0 Level-0 table #328: started
2026/04/09-23:47:18.879356 7f983a7fc6c0 Level-0 table #328: 0 bytes OK
2026/04/09-23:47:18.915679 7f983a7fc6c0 Delete type=0 #326
2026/04/09-23:47:18.997838 7f983a7fc6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.487537 7f1c56bff6c0 Recovering log #298
2026/01/09-16:50:28.498450 7f1c56bff6c0 Delete type=3 #296
2026/01/09-16:50:28.498515 7f1c56bff6c0 Delete type=0 #298
2026/01/09-16:51:28.840653 7f1c54bfb6c0 Level-0 table #303: started
2026/01/09-16:51:28.840708 7f1c54bfb6c0 Level-0 table #303: 0 bytes OK
2026/01/09-16:51:28.847927 7f1c54bfb6c0 Delete type=0 #301
2026/01/09-16:51:28.868475 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.868551 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.588194 7f20ecbfc6c0 Recovering log #318
2026/04/09-23:12:16.608112 7f20ecbfc6c0 Delete type=3 #316
2026/04/09-23:12:16.608181 7f20ecbfc6c0 Delete type=0 #318
2026/04/09-23:25:18.054476 7f1e4ffff6c0 Level-0 table #324: started
2026/04/09-23:25:18.054490 7f1e4ffff6c0 Level-0 table #324: 0 bytes OK
2026/04/09-23:25:18.060226 7f1e4ffff6c0 Delete type=0 #322
2026/04/09-23:25:18.060329 7f1e4ffff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.750271 7f1c55bfd6c0 Recovering log #301
2026/01/09-16:51:34.760726 7f1c55bfd6c0 Delete type=3 #299
2026/01/09-16:51:34.760813 7f1c55bfd6c0 Delete type=0 #301
2026/01/09-17:10:52.202603 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.202692 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.216180 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.229242 7f1c54bfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.229348 7f1c54bfb6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.356058 7f9888fff6c0 Recovering log #322
2026/04/09-23:45:58.371202 7f9888fff6c0 Delete type=3 #320
2026/04/09-23:45:58.371256 7f9888fff6c0 Delete type=0 #322
2026/04/09-23:47:18.998002 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:18.998033 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:19.033600 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:19.180637 7f983a7fc6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.529034 7f1c56bff6c0 Recovering log #297
2026/01/09-16:50:28.539837 7f1c56bff6c0 Delete type=3 #295
2026/01/09-16:50:28.539910 7f1c56bff6c0 Delete type=0 #297
2026/01/09-16:51:28.861880 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.861911 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.868272 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.868530 7f1c54bfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.868572 7f1c54bfb6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.653158 7f20ecbfc6c0 Recovering log #317
2026/04/09-23:12:16.667664 7f20ecbfc6c0 Delete type=3 #315
2026/04/09-23:12:16.667723 7f20ecbfc6c0 Delete type=0 #317
2026/04/09-23:25:18.072993 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.073014 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.078766 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.084786 7f1e4ffff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.736494 7f1c563fe6c0 Recovering log #301
2026/01/09-16:51:34.746896 7f1c563fe6c0 Delete type=3 #299
2026/01/09-16:51:34.747053 7f1c563fe6c0 Delete type=0 #301
2026/01/09-17:10:52.181524 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.181569 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.192560 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.229188 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.229310 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.338180 7f983affd6c0 Recovering log #322
2026/04/09-23:45:58.354032 7f983affd6c0 Delete type=3 #320
2026/04/09-23:45:58.354088 7f983affd6c0 Delete type=0 #322
2026/04/09-23:47:18.915819 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:18.915848 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:18.954437 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:18.997849 7f983a7fc6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.515550 7f1c563fe6c0 Recovering log #297
2026/01/09-16:50:28.525696 7f1c563fe6c0 Delete type=3 #295
2026/01/09-16:50:28.525817 7f1c563fe6c0 Delete type=0 #297
2026/01/09-16:51:28.848057 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.848089 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.854366 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.868495 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.868541 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.632679 7f20ed3fd6c0 Recovering log #317
2026/04/09-23:12:16.648389 7f20ed3fd6c0 Delete type=3 #315
2026/04/09-23:12:16.648462 7f20ed3fd6c0 Delete type=0 #317
2026/04/09-23:25:18.066787 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.066820 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.072917 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.084778 7f1e4ffff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.777168 7f1c563fe6c0 Recovering log #301
2026/01/09-16:51:34.788037 7f1c563fe6c0 Delete type=3 #299
2026/01/09-16:51:34.788106 7f1c563fe6c0 Delete type=0 #301
2026/01/09-17:10:52.240948 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.241037 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.254088 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.274702 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.274758 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.413719 7f983bfff6c0 Recovering log #322
2026/04/09-23:45:58.433922 7f983bfff6c0 Delete type=3 #320
2026/04/09-23:45:58.433990 7f983bfff6c0 Delete type=0 #322
2026/04/09-23:47:19.033751 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:19.033783 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:19.076272 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:19.180652 7f983a7fc6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.558115 7f1c553fc6c0 Recovering log #297
2026/01/09-16:50:28.568519 7f1c553fc6c0 Delete type=3 #295
2026/01/09-16:50:28.568591 7f1c553fc6c0 Delete type=0 #297
2026/01/09-16:51:28.868695 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.868789 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.875865 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.896773 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.896837 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.692032 7f20ed3fd6c0 Recovering log #317
2026/04/09-23:12:16.709446 7f20ed3fd6c0 Delete type=3 #315
2026/04/09-23:12:16.709514 7f20ed3fd6c0 Delete type=0 #317
2026/04/09-23:25:18.091369 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.091389 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.097952 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.111053 7f1e4ffff6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.790636 7f1c55bfd6c0 Recovering log #301
2026/01/09-16:51:34.801330 7f1c55bfd6c0 Delete type=3 #299
2026/01/09-16:51:34.801460 7f1c55bfd6c0 Delete type=0 #301
2026/01/09-17:10:52.229549 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.229666 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.240692 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.274685 7f1c54bfb6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.274739 7f1c54bfb6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.436168 7f9888fff6c0 Recovering log #322
2026/04/09-23:45:58.451031 7f9888fff6c0 Delete type=3 #320
2026/04/09-23:45:58.451098 7f9888fff6c0 Delete type=0 #322
2026/04/09-23:47:19.180800 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:19.180832 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:19.217176 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:19.353947 7f983a7fc6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.570757 7f1c56bff6c0 Recovering log #297
2026/01/09-16:50:28.582016 7f1c56bff6c0 Delete type=3 #295
2026/01/09-16:50:28.582087 7f1c56bff6c0 Delete type=0 #297
2026/01/09-16:51:28.876191 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.876280 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.882908 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.896793 7f1c54bfb6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.896847 7f1c54bfb6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.716615 7f20ecbfc6c0 Recovering log #317
2026/04/09-23:12:16.732299 7f20ecbfc6c0 Delete type=3 #315
2026/04/09-23:12:16.732355 7f20ecbfc6c0 Delete type=0 #317
2026/04/09-23:25:18.104079 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.104101 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.110956 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.111069 7f1e4ffff6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.764312 7f1c553fc6c0 Recovering log #301
2026/01/09-16:51:34.774286 7f1c553fc6c0 Delete type=3 #299
2026/01/09-16:51:34.774446 7f1c553fc6c0 Delete type=0 #301
2026/01/09-17:10:52.216414 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.216464 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.228895 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.229275 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.229374 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.395467 7f9888fff6c0 Recovering log #322
2026/04/09-23:45:58.411559 7f9888fff6c0 Delete type=3 #320
2026/04/09-23:45:58.411609 7f9888fff6c0 Delete type=0 #322
2026/04/09-23:47:19.076420 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:19.076448 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:19.118899 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:19.180664 7f983a7fc6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.544082 7f1c55bfd6c0 Recovering log #297
2026/01/09-16:50:28.554845 7f1c55bfd6c0 Delete type=3 #295
2026/01/09-16:50:28.554920 7f1c55bfd6c0 Delete type=0 #297
2026/01/09-16:51:28.854478 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.854507 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.861732 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.868514 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.868561 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.671707 7f20ee3ff6c0 Recovering log #317
2026/04/09-23:12:16.687095 7f20ee3ff6c0 Delete type=3 #315
2026/04/09-23:12:16.687160 7f20ee3ff6c0 Delete type=0 #317
2026/04/09-23:25:18.078816 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.078831 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.084691 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.084792 7f1e4ffff6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
MANIFEST-000002
+5
View File
@@ -0,0 +1,5 @@
2026/04/09-23:45:58.393597 7f983bfff6c0 Delete type=3 #1
2026/04/09-23:47:19.119062 7f983a7fc6c0 Level-0 table #5: started
2026/04/09-23:47:19.137928 7f983a7fc6c0 Level-0 table #5: 5639 bytes OK
2026/04/09-23:47:19.180471 7f983a7fc6c0 Delete type=0 #3
2026/04/09-23:47:19.180674 7f983a7fc6c0 Manual compaction at level-0 from '!items!7KKX5anO8rJX492Y' @ 72057594037927935 : 1 .. '!items!veZcaW70wCVk99R7' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000199
MANIFEST-000220
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.660696 7f1c55bfd6c0 Recovering log #197
2026/01/09-16:51:34.671894 7f1c55bfd6c0 Delete type=3 #195
2026/01/09-16:51:34.672048 7f1c55bfd6c0 Delete type=0 #197
2026/01/09-17:10:52.192700 7f1c54bfb6c0 Level-0 table #202: started
2026/01/09-17:10:52.192739 7f1c54bfb6c0 Level-0 table #202: 0 bytes OK
2026/01/09-17:10:52.202328 7f1c54bfb6c0 Delete type=0 #200
2026/01/09-17:10:52.229219 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.229329 7f1c54bfb6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.246774 7f9888fff6c0 Recovering log #218
2026/04/09-23:45:58.262844 7f9888fff6c0 Delete type=3 #216
2026/04/09-23:45:58.262909 7f9888fff6c0 Delete type=0 #218
2026/04/09-23:47:18.761713 7f983a7fc6c0 Level-0 table #223: started
2026/04/09-23:47:18.761753 7f983a7fc6c0 Level-0 table #223: 0 bytes OK
2026/04/09-23:47:18.804448 7f983a7fc6c0 Delete type=0 #221
2026/04/09-23:47:18.841354 7f983a7fc6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.436690 7f1c563fe6c0 Recovering log #193
2026/01/09-16:50:28.446521 7f1c563fe6c0 Delete type=3 #191
2026/01/09-16:50:28.446584 7f1c563fe6c0 Delete type=0 #193
2026/01/09-16:51:28.813532 7f1c54bfb6c0 Level-0 table #198: started
2026/01/09-16:51:28.813707 7f1c54bfb6c0 Level-0 table #198: 0 bytes OK
2026/01/09-16:51:28.819883 7f1c54bfb6c0 Delete type=0 #196
2026/01/09-16:51:28.840406 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.840496 7f1c54bfb6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.520028 7f20ed3fd6c0 Recovering log #213
2026/04/09-23:12:16.536063 7f20ed3fd6c0 Delete type=3 #211
2026/04/09-23:12:16.536130 7f20ed3fd6c0 Delete type=0 #213
2026/04/09-23:25:18.041614 7f1e4ffff6c0 Level-0 table #219: started
2026/04/09-23:25:18.041634 7f1e4ffff6c0 Level-0 table #219: 0 bytes OK
2026/04/09-23:25:18.048406 7f1e4ffff6c0 Delete type=0 #217
2026/04/09-23:25:18.060314 7f1e4ffff6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
Binary file not shown.
View File
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.724035 7f1c553fc6c0 Recovering log #301
2026/01/09-16:51:34.734486 7f1c553fc6c0 Delete type=3 #299
2026/01/09-16:51:34.734556 7f1c553fc6c0 Delete type=0 #301
2026/01/09-17:10:52.158587 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.158655 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.171088 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.181369 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.181406 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.321403 7f983bfff6c0 Recovering log #322
2026/04/09-23:45:58.336285 7f983bfff6c0 Delete type=3 #320
2026/04/09-23:45:58.336351 7f983bfff6c0 Delete type=0 #322
2026/04/09-23:47:18.841528 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:18.841568 7f983a7fc6c0 Level-0 table #327: 0 bytes OK
2026/04/09-23:47:18.879185 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:18.997823 7f983a7fc6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.501376 7f1c55bfd6c0 Recovering log #297
2026/01/09-16:50:28.512581 7f1c55bfd6c0 Delete type=3 #295
2026/01/09-16:50:28.512717 7f1c55bfd6c0 Delete type=0 #297
2026/01/09-16:51:28.820000 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.820055 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.827380 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.840432 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.840514 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.615080 7f20ee3ff6c0 Recovering log #317
2026/04/09-23:12:16.630250 7f20ee3ff6c0 Delete type=3 #315
2026/04/09-23:12:16.630308 7f20ee3ff6c0 Delete type=0 #317
2026/04/09-23:25:18.060419 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.060441 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.066664 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.084770 7f1e4ffff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
Binary file not shown.
View File
Binary file not shown.
Binary file not shown.
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000303
MANIFEST-000324
+14 -8
View File
@@ -1,8 +1,14 @@
2026/01/09-16:51:34.832386 7f1c563fe6c0 Recovering log #301
2026/01/09-16:51:34.843202 7f1c563fe6c0 Delete type=3 #299
2026/01/09-16:51:34.843344 7f1c563fe6c0 Delete type=0 #301
2026/01/09-17:10:52.274841 7f1c54bfb6c0 Level-0 table #306: started
2026/01/09-17:10:52.274877 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
2026/01/09-17:10:52.287335 7f1c54bfb6c0 Delete type=0 #304
2026/01/09-17:10:52.322411 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.322458 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.487370 7f983bfff6c0 Recovering log #322
2026/04/09-23:45:58.503708 7f983bfff6c0 Delete type=3 #320
2026/04/09-23:45:58.503777 7f983bfff6c0 Delete type=0 #322
2026/04/09-23:47:19.297266 7f983a7fc6c0 Level-0 table #327: started
2026/04/09-23:47:19.315493 7f983a7fc6c0 Level-0 table #327: 22260 bytes OK
2026/04/09-23:47:19.353728 7f983a7fc6c0 Delete type=0 #325
2026/04/09-23:47:19.354006 7f983a7fc6c0 Manual compaction at level-0 from '!items!12OfTQijhZYbH4vE' @ 72057594037927935 : 1 .. '!items!yicDDY8Z8Xnz1Fam' @ 0 : 0; will stop at '!items!yicDDY8Z8Xnz1Fam' @ 199 : 1
2026/04/09-23:47:19.354011 7f983a7fc6c0 Compacting 1@0 + 1@1 files
2026/04/09-23:47:19.377009 7f983a7fc6c0 Generated table #328@0: 76 keys, 58333 bytes
2026/04/09-23:47:19.377042 7f983a7fc6c0 Compacted 1@0 + 1@1 files => 58333 bytes
2026/04/09-23:47:19.413466 7f983a7fc6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/09-23:47:19.413579 7f983a7fc6c0 Delete type=2 #319
2026/04/09-23:47:19.413754 7f983a7fc6c0 Delete type=2 #327
2026/04/09-23:47:19.531415 7f983a7fc6c0 Manual compaction at level-0 from '!items!yicDDY8Z8Xnz1Fam' @ 199 : 1 .. '!items!yicDDY8Z8Xnz1Fam' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.613889 7f1c55bfd6c0 Recovering log #297
2026/01/09-16:50:28.631295 7f1c55bfd6c0 Delete type=3 #295
2026/01/09-16:50:28.631390 7f1c55bfd6c0 Delete type=0 #297
2026/01/09-16:51:28.897062 7f1c54bfb6c0 Level-0 table #302: started
2026/01/09-16:51:28.897110 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
2026/01/09-16:51:28.903400 7f1c54bfb6c0 Delete type=0 #300
2026/01/09-16:51:28.924382 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.924436 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.773729 7f20ecbfc6c0 Recovering log #317
2026/04/09-23:12:16.789109 7f20ecbfc6c0 Delete type=3 #315
2026/04/09-23:12:16.789176 7f20ecbfc6c0 Delete type=0 #317
2026/04/09-23:25:18.111161 7f1e4ffff6c0 Level-0 table #323: started
2026/04/09-23:25:18.111183 7f1e4ffff6c0 Level-0 table #323: 0 bytes OK
2026/04/09-23:25:18.117197 7f1e4ffff6c0 Delete type=0 #321
2026/04/09-23:25:18.139994 7f1e4ffff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
Binary file not shown.
View File
Binary file not shown.
Binary file not shown.
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000219
MANIFEST-000240
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.860719 7f1c56bff6c0 Recovering log #217
2026/01/09-16:51:34.871459 7f1c56bff6c0 Delete type=3 #215
2026/01/09-16:51:34.871589 7f1c56bff6c0 Delete type=0 #217
2026/01/09-17:10:52.299454 7f1c54bfb6c0 Level-0 table #222: started
2026/01/09-17:10:52.299496 7f1c54bfb6c0 Level-0 table #222: 0 bytes OK
2026/01/09-17:10:52.310412 7f1c54bfb6c0 Delete type=0 #220
2026/01/09-17:10:52.322447 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.322484 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.523395 7f983b7fe6c0 Recovering log #238
2026/04/09-23:45:58.538137 7f983b7fe6c0 Delete type=3 #236
2026/04/09-23:45:58.538186 7f983b7fe6c0 Delete type=0 #238
2026/04/09-23:47:19.452269 7f983a7fc6c0 Level-0 table #243: started
2026/04/09-23:47:19.452300 7f983a7fc6c0 Level-0 table #243: 0 bytes OK
2026/04/09-23:47:19.496545 7f983a7fc6c0 Delete type=0 #241
2026/04/09-23:47:19.531448 7f983a7fc6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes.levels!ZDV2IwduhOXTxy72.defaultLevel0000' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.649713 7f1c553fc6c0 Recovering log #213
2026/01/09-16:50:28.659899 7f1c553fc6c0 Delete type=3 #211
2026/01/09-16:50:28.659961 7f1c553fc6c0 Delete type=0 #213
2026/01/09-16:51:28.917872 7f1c54bfb6c0 Level-0 table #218: started
2026/01/09-16:51:28.917922 7f1c54bfb6c0 Level-0 table #218: 0 bytes OK
2026/01/09-16:51:28.924225 7f1c54bfb6c0 Delete type=0 #216
2026/01/09-16:51:28.924426 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.924459 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.811675 7f20ed3fd6c0 Recovering log #233
2026/04/09-23:12:16.826590 7f20ed3fd6c0 Delete type=3 #231
2026/04/09-23:12:16.826656 7f20ed3fd6c0 Delete type=0 #233
2026/04/09-23:25:18.123619 7f1e4ffff6c0 Level-0 table #239: started
2026/04/09-23:25:18.123643 7f1e4ffff6c0 Level-0 table #239: 0 bytes OK
2026/04/09-23:25:18.130176 7f1e4ffff6c0 Delete type=0 #237
2026/04/09-23:25:18.140011 7f1e4ffff6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes.levels!ZDV2IwduhOXTxy72.defaultLevel0000' @ 0 : 0; will stop at (end)
Binary file not shown.
View File
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000211
MANIFEST-000232
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:51:34.695631 7f1c55bfd6c0 Recovering log #209
2026/01/09-16:51:34.705907 7f1c55bfd6c0 Delete type=3 #207
2026/01/09-16:51:34.705976 7f1c55bfd6c0 Delete type=0 #209
2026/01/09-17:10:52.148270 7f1c54bfb6c0 Level-0 table #214: started
2026/01/09-17:10:52.148313 7f1c54bfb6c0 Level-0 table #214: 0 bytes OK
2026/01/09-17:10:52.158341 7f1c54bfb6c0 Delete type=0 #212
2026/01/09-17:10:52.181356 7f1c54bfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2026/01/09-17:10:52.181390 7f1c54bfb6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2026/04/09-23:45:58.286205 7f9888fff6c0 Recovering log #230
2026/04/09-23:45:58.301112 7f9888fff6c0 Delete type=3 #228
2026/04/09-23:45:58.301194 7f9888fff6c0 Delete type=0 #230
2026/04/09-23:47:18.954669 7f983a7fc6c0 Level-0 table #235: started
2026/04/09-23:47:18.954723 7f983a7fc6c0 Level-0 table #235: 0 bytes OK
2026/04/09-23:47:18.997675 7f983a7fc6c0 Delete type=0 #233
2026/04/09-23:47:18.997860 7f983a7fc6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
+7 -8
View File
@@ -1,8 +1,7 @@
2026/01/09-16:50:28.473555 7f1c563fe6c0 Recovering log #205
2026/01/09-16:50:28.484461 7f1c563fe6c0 Delete type=3 #203
2026/01/09-16:50:28.484603 7f1c563fe6c0 Delete type=0 #205
2026/01/09-16:51:28.833783 7f1c54bfb6c0 Level-0 table #210: started
2026/01/09-16:51:28.833816 7f1c54bfb6c0 Level-0 table #210: 0 bytes OK
2026/01/09-16:51:28.840184 7f1c54bfb6c0 Delete type=0 #208
2026/01/09-16:51:28.840475 7f1c54bfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2026/01/09-16:51:28.840550 7f1c54bfb6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2026/04/09-23:12:16.566435 7f20ed3fd6c0 Recovering log #225
2026/04/09-23:12:16.585714 7f20ed3fd6c0 Delete type=3 #223
2026/04/09-23:12:16.585791 7f20ed3fd6c0 Delete type=0 #225
2026/04/09-23:25:18.035426 7f1e4ffff6c0 Level-0 table #231: started
2026/04/09-23:25:18.035487 7f1e4ffff6c0 Level-0 table #231: 0 bytes OK
2026/04/09-23:25:18.041540 7f1e4ffff6c0 Delete type=0 #229
2026/04/09-23:25:18.060303 7f1e4ffff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
Binary file not shown.

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