Compare commits

..
8 Commits
Author SHA1 Message Date
uberwald 215a8a1a45 Sync compendiums
Release Creation / build (release) Successful in 3m4s
2026-08-03 06:41:09 +02:00
uberwald 1b24d0223a feat: publicité des modules premium en tchat quand ils ne sont pas activés 2026-08-03 06:38:54 +02:00
uberwald 33d4c26619 fix(style): lisibilité des journaux (texte sombre sur fond blanc en vue et édition) 2026-08-03 06:19:05 +02:00
uberwald cc81acce5b fix(appv2): correction sauvegarde champs description HTML
- Remplacer les balises <prose-mirror> brutes par {{formInput}}
  pour les champs HTMLField (biographie, notes, description)
- Onglets passent en basculement CSS sans re-render
- Ajout de systemFields au contexte des feuilles d'acteur
2026-07-30 21:23:25 +02:00
uberwald c56903c8e4 Fix release numbering 2026-06-14 23:22:30 +02:00
uberwald d27d580d8c Fix for Babele translation
Release Creation / build (release) Successful in 56s
2026-05-25 23:02:08 +02:00
uberwald 967383f5b3 COrrection sur icones des effets
Release Creation / build (release) Successful in 55s
2026-04-25 09:20:15 +02:00
uberwald e4cc556705 Fix beguiling boon
Release Creation / build (release) Successful in 48s
2026-04-18 17:48:30 +02:00
162 changed files with 453 additions and 372 deletions
+1 -1
View File
@@ -59,5 +59,5 @@ jobs:
version: ${{github.event.release.tag_name}} version: ${{github.event.release.tag_name}}
manifest: "https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json" manifest: "https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json"
notes: "https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip" notes: "https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip"
compatibility-minimum: "13" compatibility-minimum: "14"
compatibility-verified: "14" compatibility-verified: "14"
+51
View File
@@ -0,0 +1,51 @@
# BoL — FoundryVTT Game System
FoundryVTT game system for Barbarians of Lemuria (French edition, Ludospherik). System id `bol`. Compatible Foundry v13v14.
## Commands
| Command | Action |
|---------|--------|
| `npm run css` | Compile LESS → `css/bol.css` (one-shot) |
| `npm run watch` / `npm start` | Watch `styles/**/*.less`, recompile on change |
No test or lint scripts exist.
## Entry Point & Architecture
`module/bol.js` — wires everything in `Hooks.once('init', ...)` and `Hooks.once('ready', ...)`.
| Path | Role |
|------|------|
| `module/bol.js` | System init, sheet/data model registration, socket setup |
| `module/system/config.js` | `BOL` constants, `System.debugMode` flag |
| `module/system/bol-utility.js` | Static helpers, settings (`bol` namespace), socket handler (`system.bol`) |
| `module/controllers/bol-rolls.js` | All roll logic — `BoLRoll` static methods |
| `module/models/` | DataModel classes (`.mjs`) for Actor/Item types |
| `module/applications/sheets/` | **AppV2 sheets** (`ActorSheetV2`/`ItemSheetV2` + `HandlebarsApplicationMixin`) |
| `styles/` | LESS sources → compiled to `css/bol.css` |
| `templates/` | Handlebars `.hbs` partials |
| `lang/` | `fr.json`, `en.json`, `de.json`, `es.json` |
## Key Conventions
- **AppV2 sheets** — base classes are `foundry.applications.sheets.ActorSheetV2` / `ItemSheetV2` mixed with `HandlebarsApplicationMixin`. Do NOT use `foundry.appv1.sheets.*`.
- **`game.bol`** — system exposes `BoLActor`, `BoLItem`, `BoLRoll`, `BoLUtility`, `Macros`, `BOL` config, `models`, `sheets` on this namespace after init.
- **i18n prefix** — all keys start with `BOL.`; use `game.i18n.localize("BOL.xxx")`.
- **FR-first** — `fr.json` is most complete. EN compendium translation requires [Babele](https://gitlab.com/riccisi/foundryvtt-babele) module. A warning fires at startup if EN is selected without Babele.
- **`System.debugMode = true`** in `module/system/config.js:8` — set to `false` before release.
- **LESS only** — never edit `css/bol.css` directly. Edit `.less` files under `styles/`, recompile with `npm run css`.
- **Data models** — `template.json` defines schema via `Actor.types` (character, encounter, horde, vehicle) and `Item.types` (item, feature). All data lives under `.system`.
- **Sheet partials** — registered in `module/system/templates.js`. Add new partials there.
- **Static classes** — `BoLRoll` and `BoLUtility` are purely static; never instantiate.
- **`template.json.SAVED`** in root is the data model reference; the actual `template.json` may need regeneration.
- **`package.json` and lockfile are in `.gitignore`** — npm is dev-only for LESS compilation. Not needed to run the system in Foundry.
- **`{{formInput}}` for HTML fields** — always use `{{formInput fieldDef enriched=x value=y name="system.path" toggled=isEditable}}` for `HTMLField` in AppV2 sheets. Never use raw `<prose-mirror>` elements; they break form submission.
- **Tab switching** — use CSS-only toggle (no `this.render()`) to preserve ProseMirror editor state. See `base-item-sheet.mjs` pattern.
## CI & Release
- CI triggers **only on release publish** (`.gitea/workflows/main.yml`).
- Release zips: `system.json template.json README.md LICENSE assets/ compendiums/ css/ fonts/ images/ lang/ module/ packs/ styles/ templates/ ui/`.
- Version/URL manifest/download are substituted in `system.json` during CI.
- Published to Foundry package registry via `foundryvtt-publish-package-action`.
+4
View File
@@ -96,6 +96,10 @@
"name": "Plains-Born", "name": "Plains-Born",
"description": "<h1>Plains-Born</h1><p>You grew up on the plains. When tracking, trapping, hunting, or carrying out other similar activities (not fighting) in a plains environment, you receive a bonus die.</p>" "description": "<h1>Plains-Born</h1><p>You grew up on the plains. When tracking, trapping, hunting, or carrying out other similar activities (not fighting) in a plains environment, you receive a bonus die.</p>"
}, },
"Envoûtant": {
"name": "Beguiling",
"description": "<h1>Beguiling</h1><p> Your looks and bearing are such that people who might be attracted to your type are enchanted by you. Once per day you may suggest a course of action to a number of rabble equal to appeal + d6, who will do their best to please you, even if it potentially puts them in danger.</p><p>You must have the temptress career to take this boon.</p>"
},
"Fortuné": { "Fortuné": {
"name": "Great Wealth", "name": "Great Wealth",
"description": "<h1>Great Wealth</h1><p>You have a source of income or an inheritance. Roll a bonus die on any attempt to obtain any goods, services, or other items you need whilst in your home city.</p>" "description": "<h1>Great Wealth</h1><p>You have a source of income or an inheritance. Roll a bonus die on any attempt to obtain any goods, services, or other items you need whilst in your home city.</p>"
+25 -11
View File
@@ -1512,6 +1512,21 @@ h2.bad {
.bol-welcome-card .welcome-body a { .bol-welcome-card .welcome-body a {
color: darkred; color: darkred;
} }
.bol-welcome-card .welcome-body .welcome-premium {
margin-top: 6px;
padding: 6px 10px;
font-size: 0.8rem;
color: #191813;
background: linear-gradient(135deg, #fdf7e6, #f6e8c8);
border: 1px solid #c9a227;
border-left: 4px solid #c9a227;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.bol-welcome-card .welcome-body .welcome-premium a {
color: #7a5c00;
font-weight: bold;
}
.bol-welcome-card .welcome-footer { .bol-welcome-card .welcome-footer {
margin-top: 8px; margin-top: 8px;
padding: 4px 10px; padding: 4px 10px;
@@ -1522,15 +1537,6 @@ h2.bad {
border-radius: 4px; border-radius: 4px;
letter-spacing: 0.5px; letter-spacing: 0.5px;
} }
.bol-welcome-card .welcome-warning {
margin-top: 6px;
padding: 4px 8px;
font-size: 0.8rem;
color: #7a0000;
background: #fff3f3;
border: 1px solid #e57373;
border-radius: 3px;
}
/* Component Styles */ /* Component Styles */
/* ----------------------------------------- */ /* ----------------------------------------- */
/* Common Sheet Styles */ /* Common Sheet Styles */
@@ -1538,8 +1544,16 @@ h2.bad {
body.system-bol img#logo { body.system-bol img#logo {
content: url("/systems/bol/ui/logo2.webp"); content: url("/systems/bol/ui/logo2.webp");
} }
.journal-page-content { .journal-page-content,
/* Reserved for future use */ .journal-page-content p,
.journal-page-content div,
.journal-page-content span {
color: #191813 !important;
}
.sheet.journal-entry prose-mirror.journal-page-content,
prose-mirror.journal-page-content {
background-color: white;
background: white;
} }
.bol.dialog > section.window-content { .bol.dialog > section.window-content {
background: white; background: white;
+2 -1
View File
@@ -469,7 +469,8 @@
"BOL.chat.welcome4": "Im Discord findet ihr Support für die FoundryVTT-Implementierung dieses Systems: https://discord.gg/pPSDNJk", "BOL.chat.welcome4": "Im Discord findet ihr Support für die FoundryVTT-Implementierung dieses Systems: https://discord.gg/pPSDNJk",
"BOL.chat.welcome5": "Auf ein gutes Spiel in Lemuria!", "BOL.chat.welcome5": "Auf ein gutes Spiel in Lemuria!",
"BOL.chat.welcome6": "", "BOL.chat.welcome6": "",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !", "BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.settings.rollArmor": "Roll for armor", "BOL.settings.rollArmor": "Roll for armor",
"BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked", "BOL.settings.rollArmorTooltip": "Roll for armor value, fixed value if unchecked",
+2 -1
View File
@@ -545,7 +545,8 @@
"BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success", "BOL.chat.criticalbuttonjournal": "Legendary/Heroic Success",
"BOL.chat.nodamage": "Do not apply damages", "BOL.chat.nodamage": "Do not apply damages",
"BOL.chat.armorRoll": "Armor roll", "BOL.chat.armorRoll": "Armor roll",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !", "BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "So easy (+4)", "BOL.dialog.soeasy": "So easy (+4)",
"BOL.dialog.soeasy3": "So easy (+3)", "BOL.dialog.soeasy3": "So easy (+3)",
+2 -1
View File
@@ -535,7 +535,8 @@
"BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos", "BOL.chat.criticalinfo": "¡Esto es un éxito Asombroso o Legendario! Escoge tus opciones y efectos",
"BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario", "BOL.chat.criticalbuttonjournal": "Éxito Asombroso/Legendario",
"BOL.chat.armorRoll": "Tirada de Armadura", "BOL.chat.armorRoll": "Tirada de Armadura",
"BOL.chat.bolRulebookMessage": "Don't miss the full Rulebook module (including Sagas) available at : https://www.ludospherik-editions.com/en_gb/ !", "BOL.chat.bolRulebookMessage": "Don't miss the premium Rulebook module (including Sagas), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Discover the premium Chronicles of Lemuria module (vol. 1), available on the Foundry website : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.dialog.soeasy": "Demasiado fácil (+4)", "BOL.dialog.soeasy": "Demasiado fácil (+4)",
"BOL.dialog.veryeasy": "Muy fácil (+2)", "BOL.dialog.veryeasy": "Muy fácil (+2)",
+2 -1
View File
@@ -571,7 +571,8 @@
"BOL.chat.criticalinfo": "C'est un succès Héroïque ! Choisissez vos options et effets !", "BOL.chat.criticalinfo": "C'est un succès Héroïque ! Choisissez vos options et effets !",
"BOL.chat.criticallegendaryinfo": "C'est un succès Légendaire ! Choisissez vos options et effets !", "BOL.chat.criticallegendaryinfo": "C'est un succès Légendaire ! Choisissez vos options et effets !",
"BOL.chat.criticalbuttonjournal": "Succès Héroïque/Légendaire", "BOL.chat.criticalbuttonjournal": "Succès Héroïque/Légendaire",
"BOL.chat.bolRulebookMessage": "N'oubliez pas le module complet du Livre de Règle et des Sagas disponible ici : https://www.ludospherik-editions.com !", "BOL.chat.bolRulebookMessage": "N'oubliez pas le module premium du Livre de Règle et des Sagas, disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-rulebook' target='_blank'>https://foundryvtt.com/packages/bol-rulebook</a>",
"BOL.chat.bolChroniclesMessage": "Découvrez le module premium des Chroniques de Lémurie (vol. 1), disponible sur le site Foundry : <a href='https://foundryvtt.com/packages/bol-chronicles-1' target='_blank'>https://foundryvtt.com/packages/bol-chronicles-1</a>",
"BOL.chat.losshp": "{name} a perdu {lossHP} points de Vitalité. Si il se repose quelques minutes, il peut récupérer {recupHP} points de Vitalité.", "BOL.chat.losshp": "{name} a perdu {lossHP} points de Vitalité. Si il se repose quelques minutes, il peut récupérer {recupHP} points de Vitalité.",
"BOL.chat.applyrecup": "Récupérer pendant quelques minutes (+{recupHP} Vitalité)", "BOL.chat.applyrecup": "Récupérer pendant quelques minutes (+{recupHP} Vitalité)",
"BOL.chat.inforecup": "{name} vient de récupérer {recupHP} points de Vitalité après quelques minutes de repos.", "BOL.chat.inforecup": "{name} vient de récupérer {recupHP} points de Vitalité après quelques minutes de repos.",
+2 -2
View File
@@ -866,12 +866,12 @@ export class BoLActor extends Actor {
if (this.system.resources.hp.value <= 0) { if (this.system.resources.hp.value <= 0) {
if (!prone) { if (!prone) {
await this.createEmbeddedDocuments("ActiveEffect", [ await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusProne'), icon: 'icons/svg/falling.svg', statuses: 'prone' } { name: game.i18n.localize('EFFECT.StatusProne'), img: 'icons/svg/falling.svg', statuses: ['prone'] }
]) ])
} }
if (this.system.resources.hp.value < -5 && !dead) { if (this.system.resources.hp.value < -5 && !dead) {
await this.createEmbeddedDocuments("ActiveEffect", [ await this.createEmbeddedDocuments("ActiveEffect", [
{ name: game.i18n.localize('EFFECT.StatusDead'), icon: 'icons/svg/skull.svg', statuses: 'dead' } { name: game.i18n.localize('EFFECT.StatusDead'), img: 'icons/svg/skull.svg', statuses: ['dead'] }
]) ])
} }
ChatMessage.create({ ChatMessage.create({
@@ -49,6 +49,7 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
return { return {
actor, actor,
system: actor.system, system: actor.system,
systemFields: actor.system.schema.fields,
config: game.bol.config, config: game.bol.config,
isGM: game.user.isGM, isGM: game.user.isGM,
isEditable: this.isEditable, isEditable: this.isEditable,
@@ -112,7 +113,8 @@ export default class BoLBaseActorSheet extends HandlebarsApplicationMixin(foundr
link.addEventListener("click", (event) => { link.addEventListener("click", (event) => {
event.preventDefault() event.preventDefault()
this.tabGroups[group] = tab this.tabGroups[group] = tab
this.render() nav.querySelectorAll("[data-tab]").forEach(l => l.classList.toggle("active", l.dataset.tab === tab))
this.element.querySelectorAll(`[data-group="${group}"][data-tab]`).forEach(c => c.classList.toggle("active", c.dataset.tab === tab))
}) })
}) })
+9 -7
View File
@@ -101,24 +101,26 @@ Hooks.once('init', async function () {
// Register hooks // Register hooks
registerHooks() registerHooks()
if (typeof Babele !== 'undefined') { });
Babele.get().setSystemTranslationsDir("compendiums");
}
/* -------------------------------------------- */
Hooks.once("babele.init", (babele) => {
console.log("Initializing Babele translations")
babele.setSystemTranslationsDir("compendiums");
}); });
/* -------------------------------------------- */ /* -------------------------------------------- */
async function welcomeMessage() { async function welcomeMessage() {
const noRulebook = !game.modules.find(m => m.id === "bol-rulebook") const noRulebook = !game.modules.get("bol-rulebook")?.active
const noChronicles = !game.modules.get("bol-chronicles-1")?.active
const content = await foundry.applications.handlebars.renderTemplate( const content = await foundry.applications.handlebars.renderTemplate(
"systems/bol/templates/chat/chat-welcome.hbs", "systems/bol/templates/chat/chat-welcome.hbs",
{ noRulebook } { noRulebook, noChronicles }
) )
ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content }) ChatMessage.create({ user: game.user.id, whisper: [game.user.id], content })
if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.find(m => m.id == "babele")) { if (game.user.isGM && game.i18n.lang == 'en' && !game.modules.get("babele")?.active) {
ChatMessage.create({ ChatMessage.create({
user: game.user.id, user: game.user.id,
whisper: [game.user.id], whisper: [game.user.id],
+42 -42
View File
@@ -413,108 +413,108 @@ BOL.bolEffectModifier = {
BOL.statusEffects = [ BOL.statusEffects = [
{ {
"id": "dead", "id": "dead",
"label": "EFFECT.StatusDead", "name": "EFFECT.StatusDead",
"icon": "icons/svg/skull.svg" "img": "icons/svg/skull.svg"
}, },
{ {
"id": "unconscious", "id": "unconscious",
"label": "EFFECT.StatusUnconscious", "name": "EFFECT.StatusUnconscious",
"icon": "icons/svg/unconscious.svg" "img": "icons/svg/unconscious.svg"
}, },
{ {
"id": "sleep", "id": "sleep",
"label": "EFFECT.StatusAsleep", "name": "EFFECT.StatusAsleep",
"icon": "icons/svg/sleep.svg" "img": "icons/svg/sleep.svg"
}, },
{ {
"id": "stun", "id": "stun",
"label": "EFFECT.StatusStunned", "name": "EFFECT.StatusStunned",
"icon": "icons/svg/daze.svg" "img": "icons/svg/daze.svg"
}, },
{ {
"id": "prone", "id": "prone",
"label": "EFFECT.StatusProne", "name": "EFFECT.StatusProne",
"icon": "icons/svg/falling.svg" "img": "icons/svg/falling.svg"
}, },
{ {
"id": "restrain", "id": "restrain",
"label": "EFFECT.StatusRestrained", "name": "EFFECT.StatusRestrained",
"icon": "icons/svg/net.svg" "img": "icons/svg/net.svg"
}, },
{ {
"id": "paralysis", "id": "paralysis",
"label": "EFFECT.StatusParalysis", "name": "EFFECT.StatusParalysis",
"icon": "icons/svg/paralysis.svg" "img": "icons/svg/paralysis.svg"
}, },
{ {
"id": "fly", "id": "fly",
"label": "EFFECT.StatusFlying", "name": "EFFECT.StatusFlying",
"icon": "icons/svg/wing.svg" "img": "icons/svg/wing.svg"
}, },
{ {
"id": "blind", "id": "blind",
"label": "EFFECT.StatusBlind", "name": "EFFECT.StatusBlind",
"icon": "icons/svg/blind.svg" "img": "icons/svg/blind.svg"
}, },
{ {
"id": "deaf", "id": "deaf",
"label": "EFFECT.StatusDeaf", "name": "EFFECT.StatusDeaf",
"icon": "icons/svg/deaf.svg" "img": "icons/svg/deaf.svg"
}, },
{ {
"id": "silence", "id": "silence",
"label": "EFFECT.StatusSilenced", "name": "EFFECT.StatusSilenced",
"icon": "icons/svg/silenced.svg" "img": "icons/svg/silenced.svg"
}, },
{ {
"id": "fear", "id": "fear",
"label": "EFFECT.StatusFear", "name": "EFFECT.StatusFear",
"icon": "icons/svg/terror.svg" "img": "icons/svg/terror.svg"
}, },
{ {
"id": "burning", "id": "burning",
"label": "EFFECT.StatusBurning", "name": "EFFECT.StatusBurning",
"icon": "icons/svg/fire.svg" "img": "icons/svg/fire.svg"
}, },
{ {
"id": "frozen", "id": "frozen",
"label": "EFFECT.StatusFrozen", "name": "EFFECT.StatusFrozen",
"icon": "icons/svg/frozen.svg" "img": "icons/svg/frozen.svg"
}, },
{ {
"id": "shock", "id": "shock",
"label": "EFFECT.StatusShocked", "name": "EFFECT.StatusShocked",
"icon": "icons/svg/lightning.svg" "img": "icons/svg/lightning.svg"
}, },
{ {
"id": "disease", "id": "disease",
"label": "EFFECT.StatusDisease", "name": "EFFECT.StatusDisease",
"icon": "icons/svg/biohazard.svg" "img": "icons/svg/biohazard.svg"
}, },
{ {
"id": "poison", "id": "poison",
"label": "EFFECT.StatusPoison", "name": "EFFECT.StatusPoison",
"icon": "icons/svg/poison.svg" "img": "icons/svg/poison.svg"
}, },
{ {
"id": "curse", "id": "curse",
"label": "EFFECT.StatusCursed", "name": "EFFECT.StatusCursed",
"icon": "icons/svg/sun.svg" "img": "icons/svg/sun.svg"
}, },
{ {
"id": "invisible", "id": "invisible",
"label": "EFFECT.StatusInvisible", "name": "EFFECT.StatusInvisible",
"icon": "icons/svg/invisible.svg" "img": "icons/svg/invisible.svg"
}, },
{ {
"id": "target", "id": "target",
"label": "EFFECT.StatusTarget", "name": "EFFECT.StatusTarget",
"icon": "icons/svg/target.svg" "img": "icons/svg/target.svg"
}, },
{ {
"id": "eye", "id": "eye",
"label": "EFFECT.StatusMarked", "name": "EFFECT.StatusMarked",
"icon": "icons/svg/eye.svg" "img": "icons/svg/eye.svg"
} }
] ]
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001138 MANIFEST-001233
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.733439 7ff3bebfd6c0 Recovering log #1135 2026/08/03-06:19:48.779385 7f0fa7fff6c0 Recovering log #1231
2026/04/11-21:28:04.743122 7ff3bebfd6c0 Delete type=3 #1133 2026/08/03-06:19:48.790078 7f0fa7fff6c0 Delete type=3 #1229
2026/04/11-21:28:04.743177 7ff3bebfd6c0 Delete type=0 #1135 2026/08/03-06:19:48.790149 7f0fa7fff6c0 Delete type=0 #1231
2026/04/11-21:28:49.377435 7ff3bdbfb6c0 Level-0 table #1141: started 2026/08/03-06:38:26.831982 7f0fa6ffd6c0 Level-0 table #1236: started
2026/04/11-21:28:49.377469 7ff3bdbfb6c0 Level-0 table #1141: 0 bytes OK 2026/08/03-06:38:26.832007 7f0fa6ffd6c0 Level-0 table #1236: 0 bytes OK
2026/04/11-21:28:49.413622 7ff3bdbfb6c0 Delete type=0 #1139 2026/08/03-06:38:26.838786 7f0fa6ffd6c0 Delete type=0 #1234
2026/04/11-21:28:49.456441 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.853917 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
+7 -14
View File
@@ -1,14 +1,7 @@
2026/04/11-21:19:06.264443 7ff3bf3fe6c0 Recovering log #1130 2026/08/03-05:42:23.756827 7f0ff4ffe6c0 Recovering log #1227
2026/04/11-21:19:06.275289 7ff3bf3fe6c0 Delete type=3 #1128 2026/08/03-05:42:23.787896 7f0ff4ffe6c0 Delete type=3 #1225
2026/04/11-21:19:06.275358 7ff3bf3fe6c0 Delete type=0 #1130 2026/08/03-05:42:23.787958 7f0ff4ffe6c0 Delete type=0 #1227
2026/04/11-21:27:57.082652 7ff3bdbfb6c0 Level-0 table #1136: started 2026/08/03-06:19:13.177131 7f0fa6ffd6c0 Level-0 table #1232: started
2026/04/11-21:27:57.086593 7ff3bdbfb6c0 Level-0 table #1136: 2472 bytes OK 2026/08/03-06:19:13.177159 7f0fa6ffd6c0 Level-0 table #1232: 0 bytes OK
2026/04/11-21:27:57.092696 7ff3bdbfb6c0 Delete type=0 #1134 2026/08/03-06:19:13.184606 7f0fa6ffd6c0 Delete type=0 #1230
2026/04/11-21:27:57.111697 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!8ihDiCxC47fcdKVA.MOWru5Dbvs4iozXm' @ 325 : 1 2026/08/03-06:19:13.191444 7f0fa6ffd6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/04/11-21:27:57.111705 7ff3bdbfb6c0 Compacting 1@0 + 1@1 files
2026/04/11-21:27:57.115555 7ff3bdbfb6c0 Generated table #1137@0: 23 keys, 27230 bytes
2026/04/11-21:27:57.115568 7ff3bdbfb6c0 Compacted 1@0 + 1@1 files => 27230 bytes
2026/04/11-21:27:57.121399 7ff3bdbfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/04/11-21:27:57.121501 7ff3bdbfb6c0 Delete type=2 #1132
2026/04/11-21:27:57.121625 7ff3bdbfb6c0 Delete type=2 #1136
2026/04/11-21:27:57.121723 7ff3bdbfb6c0 Manual compaction at level-0 from '!journal.pages!8ihDiCxC47fcdKVA.MOWru5Dbvs4iozXm' @ 325 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001039 MANIFEST-001134
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.708004 7ff3be3fc6c0 Recovering log #1037 2026/08/03-06:19:48.750852 7f0ff57ff6c0 Recovering log #1132
2026/04/11-21:28:04.718300 7ff3be3fc6c0 Delete type=3 #1035 2026/08/03-06:19:48.761758 7f0ff57ff6c0 Delete type=3 #1130
2026/04/11-21:28:04.718366 7ff3be3fc6c0 Delete type=0 #1037 2026/08/03-06:19:48.761842 7f0ff57ff6c0 Delete type=0 #1132
2026/04/11-21:28:49.305595 7ff3bdbfb6c0 Level-0 table #1042: started 2026/08/03-06:38:26.817856 7f0fa6ffd6c0 Level-0 table #1137: started
2026/04/11-21:28:49.305624 7ff3bdbfb6c0 Level-0 table #1042: 0 bytes OK 2026/08/03-06:38:26.817889 7f0fa6ffd6c0 Level-0 table #1137: 0 bytes OK
2026/04/11-21:28:49.334673 7ff3bdbfb6c0 Delete type=0 #1040 2026/08/03-06:38:26.824151 7f0fa6ffd6c0 Delete type=0 #1135
2026/04/11-21:28:49.456420 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.824513 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.240951 7ff3be3fc6c0 Recovering log #1033 2026/08/03-05:42:23.674797 7f0fa7fff6c0 Recovering log #1128
2026/04/11-21:19:06.250426 7ff3be3fc6c0 Delete type=3 #1031 2026/08/03-05:42:23.703359 7f0fa7fff6c0 Delete type=3 #1126
2026/04/11-21:19:06.250488 7ff3be3fc6c0 Delete type=0 #1033 2026/08/03-05:42:23.703453 7f0fa7fff6c0 Delete type=0 #1128
2026/04/11-21:27:57.098718 7ff3bdbfb6c0 Level-0 table #1038: started 2026/08/03-06:19:13.162949 7f0fa6ffd6c0 Level-0 table #1133: started
2026/04/11-21:27:57.098740 7ff3bdbfb6c0 Level-0 table #1038: 0 bytes OK 2026/08/03-06:19:13.162995 7f0fa6ffd6c0 Level-0 table #1133: 0 bytes OK
2026/04/11-21:27:57.104599 7ff3bdbfb6c0 Delete type=0 #1036 2026/08/03-06:19:13.170299 7f0fa6ffd6c0 Delete type=0 #1131
2026/04/11-21:27:57.121701 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.184757 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133 MANIFEST-001228
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.608888 7ff3be3fc6c0 Recovering log #1131 2026/08/03-06:19:48.636406 7f0ff4ffe6c0 Recovering log #1226
2026/04/11-21:28:04.618597 7ff3be3fc6c0 Delete type=3 #1129 2026/08/03-06:19:48.647892 7f0ff4ffe6c0 Delete type=3 #1224
2026/04/11-21:28:04.618657 7ff3be3fc6c0 Delete type=0 #1131 2026/08/03-06:19:48.647974 7f0ff4ffe6c0 Delete type=0 #1226
2026/04/11-21:28:49.095706 7ff3bdbfb6c0 Level-0 table #1136: started 2026/08/03-06:38:26.769280 7f0fa6ffd6c0 Level-0 table #1231: started
2026/04/11-21:28:49.095741 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK 2026/08/03-06:38:26.769359 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/04/11-21:28:49.132472 7ff3bdbfb6c0 Delete type=0 #1134 2026/08/03-06:38:26.776073 7f0fa6ffd6c0 Delete type=0 #1229
2026/04/11-21:28:49.170383 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.797077 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.144409 7ff3be3fc6c0 Recovering log #1127 2026/08/03-05:42:23.425060 7f0fa7fff6c0 Recovering log #1222
2026/04/11-21:19:06.153957 7ff3be3fc6c0 Delete type=3 #1125 2026/08/03-05:42:23.456278 7f0fa7fff6c0 Delete type=3 #1220
2026/04/11-21:19:06.154021 7ff3be3fc6c0 Delete type=0 #1127 2026/08/03-05:42:23.456346 7f0fa7fff6c0 Delete type=0 #1222
2026/04/11-21:27:57.045260 7ff3bdbfb6c0 Level-0 table #1132: started 2026/08/03-06:19:13.105722 7f0fa6ffd6c0 Level-0 table #1227: started
2026/04/11-21:27:57.045286 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK 2026/08/03-06:19:13.105794 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/04/11-21:27:57.051070 7ff3bdbfb6c0 Delete type=0 #1130 2026/08/03-06:19:13.112554 7f0fa6ffd6c0 Delete type=0 #1225
2026/04/11-21:27:57.057054 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.133354 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132 MANIFEST-001227
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.620767 7ff3bfbff6c0 Recovering log #1130 2026/08/03-06:19:48.651558 7f0ff57ff6c0 Recovering log #1225
2026/04/11-21:28:04.630558 7ff3bfbff6c0 Delete type=3 #1128 2026/08/03-06:19:48.662260 7f0ff57ff6c0 Delete type=3 #1223
2026/04/11-21:28:04.630621 7ff3bfbff6c0 Delete type=0 #1130 2026/08/03-06:19:48.662354 7f0ff57ff6c0 Delete type=0 #1225
2026/04/11-21:28:49.058278 7ff3bdbfb6c0 Level-0 table #1135: started 2026/08/03-06:38:26.782903 7f0fa6ffd6c0 Level-0 table #1230: started
2026/04/11-21:28:49.058305 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK 2026/08/03-06:38:26.782939 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/04/11-21:28:49.095507 7ff3bdbfb6c0 Delete type=0 #1133 2026/08/03-06:38:26.790042 7f0fa6ffd6c0 Delete type=0 #1228
2026/04/11-21:28:49.170373 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.797110 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.155820 7ff3bfbff6c0 Recovering log #1126 2026/08/03-05:42:23.460746 7f0fa77fe6c0 Recovering log #1221
2026/04/11-21:19:06.166134 7ff3bfbff6c0 Delete type=3 #1124 2026/08/03-05:42:23.486451 7f0fa77fe6c0 Delete type=3 #1219
2026/04/11-21:19:06.166197 7ff3bfbff6c0 Delete type=0 #1126 2026/08/03-05:42:23.486511 7f0fa77fe6c0 Delete type=0 #1221
2026/04/11-21:27:57.031682 7ff3bdbfb6c0 Level-0 table #1131: started 2026/08/03-06:19:13.112716 7f0fa6ffd6c0 Level-0 table #1226: started
2026/04/11-21:27:57.031756 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK 2026/08/03-06:19:13.112749 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/04/11-21:27:57.038391 7ff3bdbfb6c0 Delete type=0 #1129 2026/08/03-06:19:13.119007 7f0fa6ffd6c0 Delete type=0 #1224
2026/04/11-21:27:57.057035 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.133376 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132 MANIFEST-001227
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.644730 7ff3bfbff6c0 Recovering log #1130 2026/08/03-06:19:48.681657 7f0ff4ffe6c0 Recovering log #1225
2026/04/11-21:28:04.655618 7ff3bfbff6c0 Delete type=3 #1128 2026/08/03-06:19:48.692268 7f0ff4ffe6c0 Delete type=3 #1223
2026/04/11-21:28:04.655815 7ff3bfbff6c0 Delete type=0 #1130 2026/08/03-06:19:48.692351 7f0ff4ffe6c0 Delete type=0 #1225
2026/04/11-21:28:49.132705 7ff3bdbfb6c0 Level-0 table #1135: started 2026/08/03-06:38:26.790164 7f0fa6ffd6c0 Level-0 table #1230: started
2026/04/11-21:28:49.132747 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK 2026/08/03-06:38:26.790190 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/04/11-21:28:49.170220 7ff3bdbfb6c0 Delete type=0 #1133 2026/08/03-06:38:26.796894 7f0fa6ffd6c0 Delete type=0 #1228
2026/04/11-21:28:49.170391 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.797197 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.179631 7ff3bebfd6c0 Recovering log #1126 2026/08/03-05:42:23.515629 7f0fa77fe6c0 Recovering log #1221
2026/04/11-21:19:06.189451 7ff3bebfd6c0 Delete type=3 #1124 2026/08/03-05:42:23.541236 7f0fa77fe6c0 Delete type=3 #1219
2026/04/11-21:19:06.189498 7ff3bebfd6c0 Delete type=0 #1126 2026/08/03-05:42:23.541308 7f0fa77fe6c0 Delete type=0 #1221
2026/04/11-21:27:57.051143 7ff3bdbfb6c0 Level-0 table #1131: started 2026/08/03-06:19:13.126577 7f0fa6ffd6c0 Level-0 table #1226: started
2026/04/11-21:27:57.051164 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK 2026/08/03-06:19:13.126609 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/04/11-21:27:57.056960 7ff3bdbfb6c0 Delete type=0 #1129 2026/08/03-06:19:13.133180 7f0fa6ffd6c0 Delete type=0 #1224
2026/04/11-21:27:57.057062 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.133414 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001130 MANIFEST-001225
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.822069 7ff3bebfd6c0 Recovering log #1128 2026/08/03-06:19:48.879803 7f0ff57ff6c0 Recovering log #1223
2026/04/11-21:28:04.831801 7ff3bebfd6c0 Delete type=3 #1126 2026/08/03-06:19:48.890084 7f0ff57ff6c0 Delete type=3 #1221
2026/04/11-21:28:04.831849 7ff3bebfd6c0 Delete type=0 #1128 2026/08/03-06:19:48.890177 7f0ff57ff6c0 Delete type=0 #1223
2026/04/11-21:28:49.681591 7ff3bdbfb6c0 Level-0 table #1133: started 2026/08/03-06:38:26.891447 7f0fa6ffd6c0 Level-0 table #1228: started
2026/04/11-21:28:49.681658 7ff3bdbfb6c0 Level-0 table #1133: 0 bytes OK 2026/08/03-06:38:26.891477 7f0fa6ffd6c0 Level-0 table #1228: 0 bytes OK
2026/04/11-21:28:49.718700 7ff3bdbfb6c0 Delete type=0 #1131 2026/08/03-06:38:26.898218 7f0fa6ffd6c0 Delete type=0 #1226
2026/04/11-21:28:49.761295 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.913139 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.351355 7ff3bfbff6c0 Recovering log #1124 2026/08/03-05:42:23.971932 7f0fa7fff6c0 Recovering log #1219
2026/04/11-21:19:06.361887 7ff3bfbff6c0 Delete type=3 #1122 2026/08/03-05:42:24.003012 7f0fa7fff6c0 Delete type=3 #1217
2026/04/11-21:19:06.361938 7ff3bfbff6c0 Delete type=0 #1124 2026/08/03-05:42:24.003097 7f0fa7fff6c0 Delete type=0 #1219
2026/04/11-21:27:57.154739 7ff3bdbfb6c0 Level-0 table #1129: started 2026/08/03-06:19:13.219392 7f0fa6ffd6c0 Level-0 table #1224: started
2026/04/11-21:27:57.154770 7ff3bdbfb6c0 Level-0 table #1129: 0 bytes OK 2026/08/03-06:19:13.219417 7f0fa6ffd6c0 Level-0 table #1224: 0 bytes OK
2026/04/11-21:27:57.160975 7ff3bdbfb6c0 Delete type=0 #1127 2026/08/03-06:19:13.225913 7f0fa6ffd6c0 Delete type=0 #1222
2026/04/11-21:27:57.175182 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.239931 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133 MANIFEST-001228
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.683176 7ff3bebfd6c0 Recovering log #1131 2026/08/03-06:19:48.722782 7f0ff57ff6c0 Recovering log #1226
2026/04/11-21:28:04.693337 7ff3bebfd6c0 Delete type=3 #1129 2026/08/03-06:19:48.732938 7f0ff57ff6c0 Delete type=3 #1224
2026/04/11-21:28:04.693387 7ff3bebfd6c0 Delete type=0 #1131 2026/08/03-06:19:48.733013 7f0ff57ff6c0 Delete type=0 #1226
2026/04/11-21:28:49.233539 7ff3bdbfb6c0 Level-0 table #1136: started 2026/08/03-06:38:26.811182 7f0fa6ffd6c0 Level-0 table #1231: started
2026/04/11-21:28:49.233570 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK 2026/08/03-06:38:26.811213 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/04/11-21:28:49.271356 7ff3bdbfb6c0 Delete type=0 #1134 2026/08/03-06:38:26.817698 7f0fa6ffd6c0 Delete type=0 #1229
2026/04/11-21:28:49.305506 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.824339 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.215905 7ff3be3fc6c0 Recovering log #1127 2026/08/03-05:42:23.605916 7f0fa7fff6c0 Recovering log #1222
2026/04/11-21:19:06.225729 7ff3be3fc6c0 Delete type=3 #1125 2026/08/03-05:42:23.631047 7f0fa7fff6c0 Delete type=3 #1220
2026/04/11-21:19:06.225801 7ff3be3fc6c0 Delete type=0 #1127 2026/08/03-05:42:23.631116 7f0fa7fff6c0 Delete type=0 #1222
2026/04/11-21:27:57.070299 7ff3bdbfb6c0 Level-0 table #1132: started 2026/08/03-06:19:13.148540 7f0fa6ffd6c0 Level-0 table #1227: started
2026/04/11-21:27:57.070342 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK 2026/08/03-06:19:13.148573 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/04/11-21:27:57.076462 7ff3bdbfb6c0 Delete type=0 #1130 2026/08/03-06:19:13.155217 7f0fa6ffd6c0 Delete type=0 #1225
2026/04/11-21:27:57.082540 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.162717 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132 MANIFEST-001227
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.771459 7ff3bebfd6c0 Recovering log #1130 2026/08/03-06:19:48.822051 7f0fa7fff6c0 Recovering log #1225
2026/04/11-21:28:04.782419 7ff3bebfd6c0 Delete type=3 #1128 2026/08/03-06:19:48.832528 7f0fa7fff6c0 Delete type=3 #1223
2026/04/11-21:28:04.782481 7ff3bebfd6c0 Delete type=0 #1130 2026/08/03-06:19:48.832595 7f0fa7fff6c0 Delete type=0 #1225
2026/04/11-21:28:49.490812 7ff3bdbfb6c0 Level-0 table #1135: started 2026/08/03-06:38:26.861128 7f0fa6ffd6c0 Level-0 table #1230: started
2026/04/11-21:28:49.490847 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK 2026/08/03-06:38:26.861152 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/04/11-21:28:49.523118 7ff3bdbfb6c0 Delete type=0 #1133 2026/08/03-06:38:26.869011 7f0fa6ffd6c0 Delete type=0 #1228
2026/04/11-21:28:49.606517 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.883307 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.302307 7ff3bfbff6c0 Recovering log #1126 2026/08/03-05:42:23.855691 7f0fa7fff6c0 Recovering log #1221
2026/04/11-21:19:06.312721 7ff3bfbff6c0 Delete type=3 #1124 2026/08/03-05:42:23.883917 7f0fa7fff6c0 Delete type=3 #1219
2026/04/11-21:19:06.312775 7ff3bfbff6c0 Delete type=0 #1126 2026/08/03-05:42:23.884004 7f0fa7fff6c0 Delete type=0 #1221
2026/04/11-21:27:57.121860 7ff3bdbfb6c0 Level-0 table #1131: started 2026/08/03-06:19:13.198502 7f0fa6ffd6c0 Level-0 table #1226: started
2026/04/11-21:27:57.121898 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK 2026/08/03-06:19:13.198527 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/04/11-21:27:57.127875 7ff3bdbfb6c0 Delete type=0 #1129 2026/08/03-06:19:13.205386 7f0fa6ffd6c0 Delete type=0 #1224
2026/04/11-21:27:57.147924 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.219368 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
MANIFEST-000615 MANIFEST-000710
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.784582 7ff3be3fc6c0 Recovering log #613 2026/08/03-06:19:48.835817 7f0ff57ff6c0 Recovering log #708
2026/04/11-21:28:04.794288 7ff3be3fc6c0 Delete type=3 #611 2026/08/03-06:19:48.845651 7f0ff57ff6c0 Delete type=3 #706
2026/04/11-21:28:04.794347 7ff3be3fc6c0 Delete type=0 #613 2026/08/03-06:19:48.845733 7f0ff57ff6c0 Delete type=0 #708
2026/04/11-21:28:49.523267 7ff3bdbfb6c0 Level-0 table #618: started 2026/08/03-06:38:26.869191 7f0fa6ffd6c0 Level-0 table #713: started
2026/04/11-21:28:49.523294 7ff3bdbfb6c0 Level-0 table #618: 0 bytes OK 2026/08/03-06:38:26.869223 7f0fa6ffd6c0 Level-0 table #713: 0 bytes OK
2026/04/11-21:28:49.563196 7ff3bdbfb6c0 Delete type=0 #616 2026/08/03-06:38:26.875780 7f0fa6ffd6c0 Delete type=0 #711
2026/04/11-21:28:49.606526 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.883321 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.314651 7ff3bebfd6c0 Recovering log #609 2026/08/03-05:42:23.887819 7f0ff57ff6c0 Recovering log #704
2026/04/11-21:19:06.324515 7ff3bebfd6c0 Delete type=3 #607 2026/08/03-05:42:23.911535 7f0ff57ff6c0 Delete type=3 #702
2026/04/11-21:19:06.324590 7ff3bebfd6c0 Delete type=0 #609 2026/08/03-05:42:23.911621 7f0ff57ff6c0 Delete type=0 #704
2026/04/11-21:27:57.135220 7ff3bdbfb6c0 Level-0 table #614: started 2026/08/03-06:19:13.205536 7f0fa6ffd6c0 Level-0 table #709: started
2026/04/11-21:27:57.135248 7ff3bdbfb6c0 Level-0 table #614: 0 bytes OK 2026/08/03-06:19:13.205564 7f0fa6ffd6c0 Level-0 table #709: 0 bytes OK
2026/04/11-21:27:57.141172 7ff3bdbfb6c0 Delete type=0 #612 2026/08/03-06:19:13.211940 7f0fa6ffd6c0 Delete type=0 #707
2026/04/11-21:27:57.147942 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.219382 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001133 MANIFEST-001228
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.632656 7ff3be3fc6c0 Recovering log #1131 2026/08/03-06:19:48.667201 7f0fa7fff6c0 Recovering log #1226
2026/04/11-21:28:04.642627 7ff3be3fc6c0 Delete type=3 #1129 2026/08/03-06:19:48.678016 7f0fa7fff6c0 Delete type=3 #1224
2026/04/11-21:28:04.642693 7ff3be3fc6c0 Delete type=0 #1131 2026/08/03-06:19:48.678104 7f0fa7fff6c0 Delete type=0 #1226
2026/04/11-21:28:49.022252 7ff3bdbfb6c0 Level-0 table #1136: started 2026/08/03-06:38:26.776208 7f0fa6ffd6c0 Level-0 table #1231: started
2026/04/11-21:28:49.022296 7ff3bdbfb6c0 Level-0 table #1136: 0 bytes OK 2026/08/03-06:38:26.776233 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
2026/04/11-21:28:49.058141 7ff3bdbfb6c0 Delete type=0 #1134 2026/08/03-06:38:26.782751 7f0fa6ffd6c0 Delete type=0 #1229
2026/04/11-21:28:49.170360 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.797096 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.167811 7ff3bf3fe6c0 Recovering log #1127 2026/08/03-05:42:23.489449 7f0fa7fff6c0 Recovering log #1222
2026/04/11-21:19:06.177763 7ff3bf3fe6c0 Delete type=3 #1125 2026/08/03-05:42:23.512550 7f0fa7fff6c0 Delete type=3 #1220
2026/04/11-21:19:06.177819 7ff3bf3fe6c0 Delete type=0 #1127 2026/08/03-05:42:23.512605 7f0fa7fff6c0 Delete type=0 #1222
2026/04/11-21:27:57.038506 7ff3bdbfb6c0 Level-0 table #1132: started 2026/08/03-06:19:13.119144 7f0fa6ffd6c0 Level-0 table #1227: started
2026/04/11-21:27:57.038536 7ff3bdbfb6c0 Level-0 table #1132: 0 bytes OK 2026/08/03-06:19:13.119176 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
2026/04/11-21:27:57.045178 7ff3bdbfb6c0 Delete type=0 #1130 2026/08/03-06:19:13.126416 7f0fa6ffd6c0 Delete type=0 #1225
2026/04/11-21:27:57.057045 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.133390 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
View File
View File
+1 -1
View File
@@ -1 +1 @@
MANIFEST-001132 MANIFEST-001227
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:28:04.745462 7ff3bfbff6c0 Recovering log #1130 2026/08/03-06:19:48.794414 7f0ff57ff6c0 Recovering log #1225
2026/04/11-21:28:04.755975 7ff3bfbff6c0 Delete type=3 #1128 2026/08/03-06:19:48.805180 7f0ff57ff6c0 Delete type=3 #1223
2026/04/11-21:28:04.756037 7ff3bfbff6c0 Delete type=0 #1130 2026/08/03-06:19:48.805252 7f0ff57ff6c0 Delete type=0 #1225
2026/04/11-21:28:49.413786 7ff3bdbfb6c0 Level-0 table #1135: started 2026/08/03-06:38:26.838922 7f0fa6ffd6c0 Level-0 table #1230: started
2026/04/11-21:28:49.413815 7ff3bdbfb6c0 Level-0 table #1135: 0 bytes OK 2026/08/03-06:38:26.838945 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
2026/04/11-21:28:49.456301 7ff3bdbfb6c0 Delete type=0 #1133 2026/08/03-06:38:26.846070 7f0fa6ffd6c0 Delete type=0 #1228
2026/04/11-21:28:49.456449 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2026/08/03-06:38:26.853929 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
+7 -7
View File
@@ -1,7 +1,7 @@
2026/04/11-21:19:06.277894 7ff3bfbff6c0 Recovering log #1126 2026/08/03-05:42:23.792000 7f0fa7fff6c0 Recovering log #1221
2026/04/11-21:19:06.287521 7ff3bfbff6c0 Delete type=3 #1124 2026/08/03-05:42:23.819679 7f0fa7fff6c0 Delete type=3 #1219
2026/04/11-21:19:06.287570 7ff3bfbff6c0 Delete type=0 #1126 2026/08/03-05:42:23.819773 7f0fa7fff6c0 Delete type=0 #1221
2026/04/11-21:27:57.092798 7ff3bdbfb6c0 Level-0 table #1131: started 2026/08/03-06:19:13.184774 7f0fa6ffd6c0 Level-0 table #1226: started
2026/04/11-21:27:57.092823 7ff3bdbfb6c0 Level-0 table #1131: 0 bytes OK 2026/08/03-06:19:13.184798 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
2026/04/11-21:27:57.098645 7ff3bdbfb6c0 Delete type=0 #1129 2026/08/03-06:19:13.191255 7f0fa6ffd6c0 Delete type=0 #1224
2026/04/11-21:27:57.121686 7ff3bdbfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2026/08/03-06:19:13.198489 7f0fa6ffd6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
Binary file not shown.
Binary file not shown.
View File

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