Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
215a8a1a45 | ||
|
|
1b24d0223a | ||
|
|
33d4c26619 | ||
|
|
cc81acce5b | ||
|
|
c56903c8e4 | ||
|
|
d27d580d8c |
@@ -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"
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
# BoL — FoundryVTT Game System
|
||||||
|
|
||||||
|
FoundryVTT game system for Barbarians of Lemuria (French edition, Ludospherik). System id `bol`. Compatible Foundry v13–v14.
|
||||||
|
|
||||||
|
## 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`.
|
||||||
+25
-11
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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.",
|
||||||
|
|||||||
@@ -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))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
+10
-8
@@ -78,7 +78,7 @@ Hooks.once('init', async function () {
|
|||||||
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
|
foundry.documents.collections.Items.unregisterSheet("core", foundry.appv1.sheets.ItemSheet);
|
||||||
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLItemSheet, { types: ["item"], makeDefault: true });
|
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLItemSheet, { types: ["item"], makeDefault: true });
|
||||||
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLFeatureSheet, { types: ["feature"], makeDefault: true });
|
foundry.documents.collections.Items.registerSheet("bol", sheets.BoLFeatureSheet, { types: ["feature"], makeDefault: true });
|
||||||
|
|
||||||
// Debug: Verify AppV2 sheets are loaded
|
// Debug: Verify AppV2 sheets are loaded
|
||||||
console.log("BoL Item Sheets registered:", {
|
console.log("BoL Item Sheets registered:", {
|
||||||
BoLItemSheet: sheets.BoLItemSheet.name,
|
BoLItemSheet: sheets.BoLItemSheet.name,
|
||||||
@@ -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],
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-001174
|
MANIFEST-001233
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.559981 7f57a4fed6c0 Recovering log #1172
|
2026/08/03-06:19:48.779385 7f0fa7fff6c0 Recovering log #1231
|
||||||
2026/04/25-09:10:23.569362 7f57a4fed6c0 Delete type=3 #1170
|
2026/08/03-06:19:48.790078 7f0fa7fff6c0 Delete type=3 #1229
|
||||||
2026/04/25-09:10:23.569431 7f57a4fed6c0 Delete type=0 #1172
|
2026/08/03-06:19:48.790149 7f0fa7fff6c0 Delete type=0 #1231
|
||||||
2026/04/25-09:19:41.245909 7f57977fe6c0 Level-0 table #1177: started
|
2026/08/03-06:38:26.831982 7f0fa6ffd6c0 Level-0 table #1236: started
|
||||||
2026/04/25-09:19:41.245941 7f57977fe6c0 Level-0 table #1177: 0 bytes OK
|
2026/08/03-06:38:26.832007 7f0fa6ffd6c0 Level-0 table #1236: 0 bytes OK
|
||||||
2026/04/25-09:19:41.252023 7f57977fe6c0 Delete type=0 #1175
|
2026/08/03-06:38:26.838786 7f0fa6ffd6c0 Delete type=0 #1234
|
||||||
2026/04/25-09:19:41.252145 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.625593 7f421a7fc6c0 Recovering log #1168
|
2026/08/03-05:42:23.756827 7f0ff4ffe6c0 Recovering log #1227
|
||||||
2026/04/18-12:41:58.643479 7f421a7fc6c0 Delete type=3 #1166
|
2026/08/03-05:42:23.787896 7f0ff4ffe6c0 Delete type=3 #1225
|
||||||
2026/04/18-12:41:58.643667 7f421a7fc6c0 Delete type=0 #1168
|
2026/08/03-05:42:23.787958 7f0ff4ffe6c0 Delete type=0 #1227
|
||||||
2026/04/18-12:51:29.111368 7f4219ffb6c0 Level-0 table #1173: started
|
2026/08/03-06:19:13.177131 7f0fa6ffd6c0 Level-0 table #1232: started
|
||||||
2026/04/18-12:51:29.111416 7f4219ffb6c0 Level-0 table #1173: 0 bytes OK
|
2026/08/03-06:19:13.177159 7f0fa6ffd6c0 Level-0 table #1232: 0 bytes OK
|
||||||
2026/04/18-12:51:29.117812 7f4219ffb6c0 Delete type=0 #1171
|
2026/08/03-06:19:13.184606 7f0fa6ffd6c0 Delete type=0 #1230
|
||||||
2026/04/18-12:51:29.125558 7f4219ffb6c0 Manual compaction at level-0 from '!journal!6cCdSvQgEHJ1bvX4' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
|
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)
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001075
|
MANIFEST-001134
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.518994 7f57a57ee6c0 Recovering log #1073
|
2026/08/03-06:19:48.750852 7f0ff57ff6c0 Recovering log #1132
|
||||||
2026/04/25-09:10:23.543453 7f57a57ee6c0 Delete type=3 #1071
|
2026/08/03-06:19:48.761758 7f0ff57ff6c0 Delete type=3 #1130
|
||||||
2026/04/25-09:10:23.543521 7f57a57ee6c0 Delete type=0 #1073
|
2026/08/03-06:19:48.761842 7f0ff57ff6c0 Delete type=0 #1132
|
||||||
2026/04/25-09:19:41.232702 7f57977fe6c0 Level-0 table #1078: started
|
2026/08/03-06:38:26.817856 7f0fa6ffd6c0 Level-0 table #1137: started
|
||||||
2026/04/25-09:19:41.232726 7f57977fe6c0 Level-0 table #1078: 0 bytes OK
|
2026/08/03-06:38:26.817889 7f0fa6ffd6c0 Level-0 table #1137: 0 bytes OK
|
||||||
2026/04/25-09:19:41.238815 7f57977fe6c0 Delete type=0 #1076
|
2026/08/03-06:38:26.824151 7f0fa6ffd6c0 Delete type=0 #1135
|
||||||
2026/04/25-09:19:41.252124 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.594299 7f421a7fc6c0 Recovering log #1069
|
2026/08/03-05:42:23.674797 7f0fa7fff6c0 Recovering log #1128
|
||||||
2026/04/18-12:41:58.606998 7f421a7fc6c0 Delete type=3 #1067
|
2026/08/03-05:42:23.703359 7f0fa7fff6c0 Delete type=3 #1126
|
||||||
2026/04/18-12:41:58.607187 7f421a7fc6c0 Delete type=0 #1069
|
2026/08/03-05:42:23.703453 7f0fa7fff6c0 Delete type=0 #1128
|
||||||
2026/04/18-12:51:29.097029 7f4219ffb6c0 Level-0 table #1074: started
|
2026/08/03-06:19:13.162949 7f0fa6ffd6c0 Level-0 table #1133: started
|
||||||
2026/04/18-12:51:29.097052 7f4219ffb6c0 Level-0 table #1074: 0 bytes OK
|
2026/08/03-06:19:13.162995 7f0fa6ffd6c0 Level-0 table #1133: 0 bytes OK
|
||||||
2026/04/18-12:51:29.104587 7f4219ffb6c0 Delete type=0 #1072
|
2026/08/03-06:19:13.170299 7f0fa6ffd6c0 Delete type=0 #1131
|
||||||
2026/04/18-12:51:29.125521 7f4219ffb6c0 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
@@ -1 +1 @@
|
|||||||
MANIFEST-001169
|
MANIFEST-001228
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.415308 7f5797fff6c0 Recovering log #1167
|
2026/08/03-06:19:48.636406 7f0ff4ffe6c0 Recovering log #1226
|
||||||
2026/04/25-09:10:23.425635 7f5797fff6c0 Delete type=3 #1165
|
2026/08/03-06:19:48.647892 7f0ff4ffe6c0 Delete type=3 #1224
|
||||||
2026/04/25-09:10:23.425689 7f5797fff6c0 Delete type=0 #1167
|
2026/08/03-06:19:48.647974 7f0ff4ffe6c0 Delete type=0 #1226
|
||||||
2026/04/25-09:19:41.181575 7f57977fe6c0 Level-0 table #1172: started
|
2026/08/03-06:38:26.769280 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||||
2026/04/25-09:19:41.181598 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
2026/08/03-06:38:26.769359 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||||
2026/04/25-09:19:41.187419 7f57977fe6c0 Delete type=0 #1170
|
2026/08/03-06:38:26.776073 7f0fa6ffd6c0 Delete type=0 #1229
|
||||||
2026/04/25-09:19:41.200426 7f57977fe6c0 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
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.467876 7f421a7fc6c0 Recovering log #1163
|
2026/08/03-05:42:23.425060 7f0fa7fff6c0 Recovering log #1222
|
||||||
2026/04/18-12:41:58.480087 7f421a7fc6c0 Delete type=3 #1161
|
2026/08/03-05:42:23.456278 7f0fa7fff6c0 Delete type=3 #1220
|
||||||
2026/04/18-12:41:58.480227 7f421a7fc6c0 Delete type=0 #1163
|
2026/08/03-05:42:23.456346 7f0fa7fff6c0 Delete type=0 #1222
|
||||||
2026/04/18-12:51:29.064204 7f4219ffb6c0 Level-0 table #1168: started
|
2026/08/03-06:19:13.105722 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||||
2026/04/18-12:51:29.064237 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/08/03-06:19:13.105794 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||||
2026/04/18-12:51:29.070331 7f4219ffb6c0 Delete type=0 #1166
|
2026/08/03-06:19:13.112554 7f0fa6ffd6c0 Delete type=0 #1225
|
||||||
2026/04/18-12:51:29.070529 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-001168
|
MANIFEST-001227
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.428677 7f57a5fef6c0 Recovering log #1166
|
2026/08/03-06:19:48.651558 7f0ff57ff6c0 Recovering log #1225
|
||||||
2026/04/25-09:10:23.439670 7f57a5fef6c0 Delete type=3 #1164
|
2026/08/03-06:19:48.662260 7f0ff57ff6c0 Delete type=3 #1223
|
||||||
2026/04/25-09:10:23.439740 7f57a5fef6c0 Delete type=0 #1166
|
2026/08/03-06:19:48.662354 7f0ff57ff6c0 Delete type=0 #1225
|
||||||
2026/04/25-09:19:41.194202 7f57977fe6c0 Level-0 table #1171: started
|
2026/08/03-06:38:26.782903 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||||
2026/04/25-09:19:41.194230 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
2026/08/03-06:38:26.782939 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||||
2026/04/25-09:19:41.200311 7f57977fe6c0 Delete type=0 #1169
|
2026/08/03-06:38:26.790042 7f0fa6ffd6c0 Delete type=0 #1228
|
||||||
2026/04/25-09:19:41.200444 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.484621 7f421b7fe6c0 Recovering log #1162
|
2026/08/03-05:42:23.460746 7f0fa77fe6c0 Recovering log #1221
|
||||||
2026/04/18-12:41:58.495420 7f421b7fe6c0 Delete type=3 #1160
|
2026/08/03-05:42:23.486451 7f0fa77fe6c0 Delete type=3 #1219
|
||||||
2026/04/18-12:41:58.495553 7f421b7fe6c0 Delete type=0 #1162
|
2026/08/03-05:42:23.486511 7f0fa77fe6c0 Delete type=0 #1221
|
||||||
2026/04/18-12:51:29.050477 7f4219ffb6c0 Level-0 table #1167: started
|
2026/08/03-06:19:13.112716 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||||
2026/04/18-12:51:29.050497 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/08/03-06:19:13.112749 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||||
2026/04/18-12:51:29.057500 7f4219ffb6c0 Delete type=0 #1165
|
2026/08/03-06:19:13.119007 7f0fa6ffd6c0 Delete type=0 #1224
|
||||||
2026/04/18-12:51:29.070504 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-001168
|
MANIFEST-001227
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.454061 7f57a57ee6c0 Recovering log #1166
|
2026/08/03-06:19:48.681657 7f0ff4ffe6c0 Recovering log #1225
|
||||||
2026/04/25-09:10:23.463910 7f57a57ee6c0 Delete type=3 #1164
|
2026/08/03-06:19:48.692268 7f0ff4ffe6c0 Delete type=3 #1223
|
||||||
2026/04/25-09:10:23.463965 7f57a57ee6c0 Delete type=0 #1166
|
2026/08/03-06:19:48.692351 7f0ff4ffe6c0 Delete type=0 #1225
|
||||||
2026/04/25-09:19:41.187521 7f57977fe6c0 Level-0 table #1171: started
|
2026/08/03-06:38:26.790164 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||||
2026/04/25-09:19:41.187543 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
2026/08/03-06:38:26.790190 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||||
2026/04/25-09:19:41.194114 7f57977fe6c0 Delete type=0 #1169
|
2026/08/03-06:38:26.796894 7f0fa6ffd6c0 Delete type=0 #1228
|
||||||
2026/04/25-09:19:41.200436 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.515857 7f421affd6c0 Recovering log #1162
|
2026/08/03-05:42:23.515629 7f0fa77fe6c0 Recovering log #1221
|
||||||
2026/04/18-12:41:58.526774 7f421affd6c0 Delete type=3 #1160
|
2026/08/03-05:42:23.541236 7f0fa77fe6c0 Delete type=3 #1219
|
||||||
2026/04/18-12:41:58.526909 7f421affd6c0 Delete type=0 #1162
|
2026/08/03-05:42:23.541308 7f0fa77fe6c0 Delete type=0 #1221
|
||||||
2026/04/18-12:51:29.043791 7f4219ffb6c0 Level-0 table #1167: started
|
2026/08/03-06:19:13.126577 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||||
2026/04/18-12:51:29.043833 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/08/03-06:19:13.126609 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||||
2026/04/18-12:51:29.050399 7f4219ffb6c0 Delete type=0 #1165
|
2026/08/03-06:19:13.133180 7f0fa6ffd6c0 Delete type=0 #1224
|
||||||
2026/04/18-12:51:29.070487 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-001166
|
MANIFEST-001225
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.648173 7f57a4fed6c0 Recovering log #1164
|
2026/08/03-06:19:48.879803 7f0ff57ff6c0 Recovering log #1223
|
||||||
2026/04/25-09:10:23.657827 7f57a4fed6c0 Delete type=3 #1162
|
2026/08/03-06:19:48.890084 7f0ff57ff6c0 Delete type=3 #1221
|
||||||
2026/04/25-09:10:23.657874 7f57a4fed6c0 Delete type=0 #1164
|
2026/08/03-06:19:48.890177 7f0ff57ff6c0 Delete type=0 #1223
|
||||||
2026/04/25-09:19:41.285408 7f57977fe6c0 Level-0 table #1169: started
|
2026/08/03-06:38:26.891447 7f0fa6ffd6c0 Level-0 table #1228: started
|
||||||
2026/04/25-09:19:41.285432 7f57977fe6c0 Level-0 table #1169: 0 bytes OK
|
2026/08/03-06:38:26.891477 7f0fa6ffd6c0 Level-0 table #1228: 0 bytes OK
|
||||||
2026/04/25-09:19:41.291927 7f57977fe6c0 Delete type=0 #1167
|
2026/08/03-06:38:26.898218 7f0fa6ffd6c0 Delete type=0 #1226
|
||||||
2026/04/25-09:19:41.306082 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.742695 7f421affd6c0 Recovering log #1160
|
2026/08/03-05:42:23.971932 7f0fa7fff6c0 Recovering log #1219
|
||||||
2026/04/18-12:41:58.754264 7f421affd6c0 Delete type=3 #1158
|
2026/08/03-05:42:24.003012 7f0fa7fff6c0 Delete type=3 #1217
|
||||||
2026/04/18-12:41:58.754458 7f421affd6c0 Delete type=0 #1160
|
2026/08/03-05:42:24.003097 7f0fa7fff6c0 Delete type=0 #1219
|
||||||
2026/04/18-12:51:29.159760 7f4219ffb6c0 Level-0 table #1165: started
|
2026/08/03-06:19:13.219392 7f0fa6ffd6c0 Level-0 table #1224: started
|
||||||
2026/04/18-12:51:29.159794 7f4219ffb6c0 Level-0 table #1165: 0 bytes OK
|
2026/08/03-06:19:13.219417 7f0fa6ffd6c0 Level-0 table #1224: 0 bytes OK
|
||||||
2026/04/18-12:51:29.166069 7f4219ffb6c0 Delete type=0 #1163
|
2026/08/03-06:19:13.225913 7f0fa6ffd6c0 Delete type=0 #1222
|
||||||
2026/04/18-12:51:29.180793 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-001169
|
MANIFEST-001228
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.492596 7f5797fff6c0 Recovering log #1167
|
2026/08/03-06:19:48.722782 7f0ff57ff6c0 Recovering log #1226
|
||||||
2026/04/25-09:10:23.503234 7f5797fff6c0 Delete type=3 #1165
|
2026/08/03-06:19:48.732938 7f0ff57ff6c0 Delete type=3 #1224
|
||||||
2026/04/25-09:10:23.503321 7f5797fff6c0 Delete type=0 #1167
|
2026/08/03-06:19:48.733013 7f0ff57ff6c0 Delete type=0 #1226
|
||||||
2026/04/25-09:19:41.200546 7f57977fe6c0 Level-0 table #1172: started
|
2026/08/03-06:38:26.811182 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||||
2026/04/25-09:19:41.200584 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
2026/08/03-06:38:26.811213 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||||
2026/04/25-09:19:41.206667 7f57977fe6c0 Delete type=0 #1170
|
2026/08/03-06:38:26.817698 7f0fa6ffd6c0 Delete type=0 #1229
|
||||||
2026/04/25-09:19:41.226423 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.562774 7f421a7fc6c0 Recovering log #1163
|
2026/08/03-05:42:23.605916 7f0fa7fff6c0 Recovering log #1222
|
||||||
2026/04/18-12:41:58.573652 7f421a7fc6c0 Delete type=3 #1161
|
2026/08/03-05:42:23.631047 7f0fa7fff6c0 Delete type=3 #1220
|
||||||
2026/04/18-12:41:58.573800 7f421a7fc6c0 Delete type=0 #1163
|
2026/08/03-05:42:23.631116 7f0fa7fff6c0 Delete type=0 #1222
|
||||||
2026/04/18-12:51:29.084486 7f4219ffb6c0 Level-0 table #1168: started
|
2026/08/03-06:19:13.148540 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||||
2026/04/18-12:51:29.084510 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/08/03-06:19:13.148573 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||||
2026/04/18-12:51:29.090608 7f4219ffb6c0 Delete type=0 #1166
|
2026/08/03-06:19:13.155217 7f0fa6ffd6c0 Delete type=0 #1225
|
||||||
2026/04/18-12:51:29.096960 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-001168
|
MANIFEST-001227
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.598956 7f57a4fed6c0 Recovering log #1166
|
2026/08/03-06:19:48.822051 7f0fa7fff6c0 Recovering log #1225
|
||||||
2026/04/25-09:10:23.608303 7f57a4fed6c0 Delete type=3 #1164
|
2026/08/03-06:19:48.832528 7f0fa7fff6c0 Delete type=3 #1223
|
||||||
2026/04/25-09:10:23.608370 7f57a4fed6c0 Delete type=0 #1166
|
2026/08/03-06:19:48.832595 7f0fa7fff6c0 Delete type=0 #1225
|
||||||
2026/04/25-09:19:41.258795 7f57977fe6c0 Level-0 table #1171: started
|
2026/08/03-06:38:26.861128 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||||
2026/04/25-09:19:41.258824 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
2026/08/03-06:38:26.861152 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||||
2026/04/25-09:19:41.265729 7f57977fe6c0 Delete type=0 #1169
|
2026/08/03-06:38:26.869011 7f0fa6ffd6c0 Delete type=0 #1228
|
||||||
2026/04/25-09:19:41.279104 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.679668 7f421affd6c0 Recovering log #1162
|
2026/08/03-05:42:23.855691 7f0fa7fff6c0 Recovering log #1221
|
||||||
2026/04/18-12:41:58.690539 7f421affd6c0 Delete type=3 #1160
|
2026/08/03-05:42:23.883917 7f0fa7fff6c0 Delete type=3 #1219
|
||||||
2026/04/18-12:41:58.690711 7f421affd6c0 Delete type=0 #1162
|
2026/08/03-05:42:23.884004 7f0fa7fff6c0 Delete type=0 #1221
|
||||||
2026/04/18-12:51:29.146181 7f4219ffb6c0 Level-0 table #1167: started
|
2026/08/03-06:19:13.198502 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||||
2026/04/18-12:51:29.146206 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/08/03-06:19:13.198527 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||||
2026/04/18-12:51:29.152607 7f4219ffb6c0 Delete type=0 #1165
|
2026/08/03-06:19:13.205386 7f0fa6ffd6c0 Delete type=0 #1224
|
||||||
2026/04/18-12:51:29.152803 7f4219ffb6c0 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 @@
|
|||||||
MANIFEST-000651
|
MANIFEST-000710
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.610604 7f57a5fef6c0 Recovering log #649
|
2026/08/03-06:19:48.835817 7f0ff57ff6c0 Recovering log #708
|
||||||
2026/04/25-09:10:23.620511 7f57a5fef6c0 Delete type=3 #647
|
2026/08/03-06:19:48.845651 7f0ff57ff6c0 Delete type=3 #706
|
||||||
2026/04/25-09:10:23.620579 7f57a5fef6c0 Delete type=0 #649
|
2026/08/03-06:19:48.845733 7f0ff57ff6c0 Delete type=0 #708
|
||||||
2026/04/25-09:19:41.265834 7f57977fe6c0 Level-0 table #654: started
|
2026/08/03-06:38:26.869191 7f0fa6ffd6c0 Level-0 table #713: started
|
||||||
2026/04/25-09:19:41.265861 7f57977fe6c0 Level-0 table #654: 0 bytes OK
|
2026/08/03-06:38:26.869223 7f0fa6ffd6c0 Level-0 table #713: 0 bytes OK
|
||||||
2026/04/25-09:19:41.271834 7f57977fe6c0 Delete type=0 #652
|
2026/08/03-06:38:26.875780 7f0fa6ffd6c0 Delete type=0 #711
|
||||||
2026/04/25-09:19:41.279116 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.694405 7f421b7fe6c0 Recovering log #645
|
2026/08/03-05:42:23.887819 7f0ff57ff6c0 Recovering log #704
|
||||||
2026/04/18-12:41:58.706703 7f421b7fe6c0 Delete type=3 #643
|
2026/08/03-05:42:23.911535 7f0ff57ff6c0 Delete type=3 #702
|
||||||
2026/04/18-12:41:58.706857 7f421b7fe6c0 Delete type=0 #645
|
2026/08/03-05:42:23.911621 7f0ff57ff6c0 Delete type=0 #704
|
||||||
2026/04/18-12:51:29.125711 7f4219ffb6c0 Level-0 table #650: started
|
2026/08/03-06:19:13.205536 7f0fa6ffd6c0 Level-0 table #709: started
|
||||||
2026/04/18-12:51:29.125752 7f4219ffb6c0 Level-0 table #650: 0 bytes OK
|
2026/08/03-06:19:13.205564 7f0fa6ffd6c0 Level-0 table #709: 0 bytes OK
|
||||||
2026/04/18-12:51:29.132047 7f4219ffb6c0 Delete type=0 #648
|
2026/08/03-06:19:13.211940 7f0fa6ffd6c0 Delete type=0 #707
|
||||||
2026/04/18-12:51:29.152761 7f4219ffb6c0 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.
+1
-1
@@ -1 +1 @@
|
|||||||
MANIFEST-001169
|
MANIFEST-001228
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.441804 7f57a4fed6c0 Recovering log #1167
|
2026/08/03-06:19:48.667201 7f0fa7fff6c0 Recovering log #1226
|
||||||
2026/04/25-09:10:23.451168 7f57a4fed6c0 Delete type=3 #1165
|
2026/08/03-06:19:48.678016 7f0fa7fff6c0 Delete type=3 #1224
|
||||||
2026/04/25-09:10:23.451240 7f57a4fed6c0 Delete type=0 #1167
|
2026/08/03-06:19:48.678104 7f0fa7fff6c0 Delete type=0 #1226
|
||||||
2026/04/25-09:19:41.175149 7f57977fe6c0 Level-0 table #1172: started
|
2026/08/03-06:38:26.776208 7f0fa6ffd6c0 Level-0 table #1231: started
|
||||||
2026/04/25-09:19:41.175236 7f57977fe6c0 Level-0 table #1172: 0 bytes OK
|
2026/08/03-06:38:26.776233 7f0fa6ffd6c0 Level-0 table #1231: 0 bytes OK
|
||||||
2026/04/25-09:19:41.181477 7f57977fe6c0 Delete type=0 #1170
|
2026/08/03-06:38:26.782751 7f0fa6ffd6c0 Delete type=0 #1229
|
||||||
2026/04/25-09:19:41.200413 7f57977fe6c0 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
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.499510 7f421bfff6c0 Recovering log #1163
|
2026/08/03-05:42:23.489449 7f0fa7fff6c0 Recovering log #1222
|
||||||
2026/04/18-12:41:58.511396 7f421bfff6c0 Delete type=3 #1161
|
2026/08/03-05:42:23.512550 7f0fa7fff6c0 Delete type=3 #1220
|
||||||
2026/04/18-12:41:58.511530 7f421bfff6c0 Delete type=0 #1163
|
2026/08/03-05:42:23.512605 7f0fa7fff6c0 Delete type=0 #1222
|
||||||
2026/04/18-12:51:29.057755 7f4219ffb6c0 Level-0 table #1168: started
|
2026/08/03-06:19:13.119144 7f0fa6ffd6c0 Level-0 table #1227: started
|
||||||
2026/04/18-12:51:29.057790 7f4219ffb6c0 Level-0 table #1168: 0 bytes OK
|
2026/08/03-06:19:13.119176 7f0fa6ffd6c0 Level-0 table #1227: 0 bytes OK
|
||||||
2026/04/18-12:51:29.064101 7f4219ffb6c0 Delete type=0 #1166
|
2026/08/03-06:19:13.126416 7f0fa6ffd6c0 Delete type=0 #1225
|
||||||
2026/04/18-12:51:29.070517 7f4219ffb6c0 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.
@@ -1 +1 @@
|
|||||||
MANIFEST-001168
|
MANIFEST-001227
|
||||||
|
|||||||
+7
-7
@@ -1,7 +1,7 @@
|
|||||||
2026/04/25-09:10:23.572412 7f5797fff6c0 Recovering log #1166
|
2026/08/03-06:19:48.794414 7f0ff57ff6c0 Recovering log #1225
|
||||||
2026/04/25-09:10:23.582728 7f5797fff6c0 Delete type=3 #1164
|
2026/08/03-06:19:48.805180 7f0ff57ff6c0 Delete type=3 #1223
|
||||||
2026/04/25-09:10:23.582796 7f5797fff6c0 Delete type=0 #1166
|
2026/08/03-06:19:48.805252 7f0ff57ff6c0 Delete type=0 #1225
|
||||||
2026/04/25-09:19:41.238892 7f57977fe6c0 Level-0 table #1171: started
|
2026/08/03-06:38:26.838922 7f0fa6ffd6c0 Level-0 table #1230: started
|
||||||
2026/04/25-09:19:41.238913 7f57977fe6c0 Level-0 table #1171: 0 bytes OK
|
2026/08/03-06:38:26.838945 7f0fa6ffd6c0 Level-0 table #1230: 0 bytes OK
|
||||||
2026/04/25-09:19:41.245781 7f57977fe6c0 Delete type=0 #1169
|
2026/08/03-06:38:26.846070 7f0fa6ffd6c0 Delete type=0 #1228
|
||||||
2026/04/25-09:19:41.252135 7f57977fe6c0 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)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/04/18-12:41:58.647922 7f421affd6c0 Recovering log #1162
|
2026/08/03-05:42:23.792000 7f0fa7fff6c0 Recovering log #1221
|
||||||
2026/04/18-12:41:58.660294 7f421affd6c0 Delete type=3 #1160
|
2026/08/03-05:42:23.819679 7f0fa7fff6c0 Delete type=3 #1219
|
||||||
2026/04/18-12:41:58.660443 7f421affd6c0 Delete type=0 #1162
|
2026/08/03-05:42:23.819773 7f0fa7fff6c0 Delete type=0 #1221
|
||||||
2026/04/18-12:51:29.117921 7f4219ffb6c0 Level-0 table #1167: started
|
2026/08/03-06:19:13.184774 7f0fa6ffd6c0 Level-0 table #1226: started
|
||||||
2026/04/18-12:51:29.117948 7f4219ffb6c0 Level-0 table #1167: 0 bytes OK
|
2026/08/03-06:19:13.184798 7f0fa6ffd6c0 Level-0 table #1226: 0 bytes OK
|
||||||
2026/04/18-12:51:29.125231 7f4219ffb6c0 Delete type=0 #1165
|
2026/08/03-06:19:13.191255 7f0fa6ffd6c0 Delete type=0 #1224
|
||||||
2026/04/18-12:51:29.125582 7f4219ffb6c0 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.
@@ -1 +1 @@
|
|||||||
MANIFEST-001168
|
MANIFEST-001227
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user