Compare commits
3 Commits
foundryvtt
...
9.4.5
| Author | SHA1 | Date | |
|---|---|---|---|
| 047933a610 | |||
| b489f65618 | |||
| 406a535c76 |
89
.gitea/workflows/release.yaml
Normal file
89
.gitea/workflows/release.yaml
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
name: Release Creation
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo "💡 The ${{ gitea.repository }} repository will be cloned to the runner."
|
||||||
|
|
||||||
|
- uses: RouxAntoine/checkout@v3.5.4
|
||||||
|
|
||||||
|
# Valider les JSON avant de packager
|
||||||
|
- name: Valider fr.json et module.json
|
||||||
|
run: |
|
||||||
|
python3 -mjson.tool fr.json > /dev/null
|
||||||
|
python3 -mjson.tool module.json > /dev/null
|
||||||
|
|
||||||
|
# Générer modules/loadScripts.js depuis scripts/
|
||||||
|
- name: Build (génération de loadScripts.js)
|
||||||
|
run: node scriptPacker.js
|
||||||
|
|
||||||
|
# Extraire le numéro de version depuis le tag (sans le 'v' initial)
|
||||||
|
- name: Extraire la version depuis le tag
|
||||||
|
id: get_version
|
||||||
|
uses: battila7/get-version-action@v2
|
||||||
|
|
||||||
|
# Mettre à jour version, url, manifest et download dans module.json
|
||||||
|
- name: Substituer les URLs de Manifest et Download
|
||||||
|
id: sub_manifest_link_version
|
||||||
|
uses: microsoft/variable-substitution@v1
|
||||||
|
with:
|
||||||
|
files: 'module.json'
|
||||||
|
env:
|
||||||
|
version: ${{ steps.get_version.outputs.version-without-v }}
|
||||||
|
url: https://www.uberwald.me/gitea/${{ gitea.repository }}
|
||||||
|
manifest: https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/releases/download/latest/module.json
|
||||||
|
download: https://www.uberwald.me/gitea/${{ gitea.repository }}/releases/download/${{ github.event.release.tag_name }}/foundryvtt-wh4-lang-fr-fr.zip
|
||||||
|
|
||||||
|
# Créer le zip avec uniquement les fichiers nécessaires au module Foundry
|
||||||
|
- name: Installer zip
|
||||||
|
run: |
|
||||||
|
apt update -y
|
||||||
|
apt install -y zip
|
||||||
|
|
||||||
|
- name: Créer l'archive foundryvtt-wh4-lang-fr-fr.zip
|
||||||
|
run: >
|
||||||
|
zip -r ./foundryvtt-wh4-lang-fr-fr.zip
|
||||||
|
module.json
|
||||||
|
fr.json
|
||||||
|
wh4_fr.js
|
||||||
|
patch-styles.css
|
||||||
|
README.md
|
||||||
|
LICENSE
|
||||||
|
compendium/
|
||||||
|
modules/
|
||||||
|
packs/
|
||||||
|
icons/
|
||||||
|
images/
|
||||||
|
trade/
|
||||||
|
|
||||||
|
# Publier le zip et le module.json sur la release Gitea
|
||||||
|
- name: setup go
|
||||||
|
uses: https://github.com/actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '>=1.20.1'
|
||||||
|
|
||||||
|
- name: Publier les assets sur la release Gitea
|
||||||
|
id: use-go-action
|
||||||
|
uses: https://gitea.com/actions/release-action@main
|
||||||
|
with:
|
||||||
|
files: |-
|
||||||
|
./foundryvtt-wh4-lang-fr-fr.zip
|
||||||
|
module.json
|
||||||
|
api_key: '${{ secrets.ALLOW_PUSH_RELEASE }}'
|
||||||
|
|
||||||
|
# Déclarer la release sur le portail FoundryVTT
|
||||||
|
- name: Publier sur FoundryVTT
|
||||||
|
uses: https://github.com/djlechuck/foundryvtt-publish-package-action@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.FOUNDRYVTT_RELEASE_TOKEN }}
|
||||||
|
id: 'wh4-fr-translation'
|
||||||
|
version: ${{ github.event.release.tag_name }}
|
||||||
|
manifest: 'https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/releases/download/latest/module.json'
|
||||||
|
notes: 'https://www.uberwald.me/gitea/${{ gitea.repository }}/releases/tag/${{ github.event.release.tag_name }}'
|
||||||
|
compatibility-minimum: '13'
|
||||||
|
compatibility-verified: '13'
|
||||||
19
.gitea/workflows/validate.yaml
Normal file
19
.gitea/workflows/validate.yaml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
name: Validation JSON
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: RouxAntoine/checkout@v3.5.4
|
||||||
|
|
||||||
|
- name: Valider fr.json
|
||||||
|
run: python3 -mjson.tool fr.json > /dev/null
|
||||||
|
|
||||||
|
- name: Valider module.json
|
||||||
|
run: python3 -mjson.tool module.json > /dev/null
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
image: python:3-alpine
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- apk update
|
|
||||||
- apk add zip
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- test
|
|
||||||
- build
|
|
||||||
|
|
||||||
test:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- python -mjson.tool 'fr.json' > /dev/null
|
|
||||||
- python -mjson.tool 'module.json' > /dev/null
|
|
||||||
|
|
||||||
build:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- zip wh4-fr-FR.zip -r *.js *.json *.md compendium lang tables -x ".*"
|
|
||||||
artifacts:
|
|
||||||
name: wh4-fr-FR
|
|
||||||
when: on_success
|
|
||||||
paths:
|
|
||||||
- wh4-fr-FR.zip
|
|
||||||
when: on_success
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
- master
|
|
||||||
@@ -119,8 +119,8 @@
|
|||||||
"folders": []
|
"folders": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"manifest": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/raw/v10/module.json",
|
"manifest": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/releases/download/latest/module.json",
|
||||||
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/archive/foundryvtt-wh4-lang-fr-9-4-3.zip",
|
"download": "https://www.uberwald.me/gitea/public/foundryvtt-wh4-lang-fr-fr/releases/download/latest/foundryvtt-wh4-lang-fr-fr.zip",
|
||||||
"id": "wh4-fr-translation",
|
"id": "wh4-fr-translation",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "13",
|
"minimum": "13",
|
||||||
|
|||||||
@@ -133,10 +133,10 @@ const __auto_patch_translation_journal_compendium = async (compmod) => {
|
|||||||
if (game.user.isGM) {
|
if (game.user.isGM) {
|
||||||
let compData = game.packs.get("WH4-fr-translation.tables-des-traductions");
|
let compData = game.packs.get("WH4-fr-translation.tables-des-traductions");
|
||||||
compData.locked = false;
|
compData.locked = false;
|
||||||
let translEntries = await compData.getContent();
|
let translEntries = await compData.getDocuments();
|
||||||
for (let entryData of translEntries) {
|
for (let entryData of translEntries) {
|
||||||
let mydata = foundry.utils.duplicate(entryData.data);
|
let mydata = entryData.toObject();
|
||||||
mydata.content = mydata.content.replace(/wfrp4e-content/g, compmod);
|
mydata.text.content = mydata.text.content.replace(/wfrp4e-content/g, compmod);
|
||||||
entryData.update(mydata);
|
entryData.update(mydata);
|
||||||
}
|
}
|
||||||
compData.locked = true;
|
compData.locked = true;
|
||||||
@@ -175,9 +175,55 @@ const patch_core_tables = (tableList) => {
|
|||||||
|
|
||||||
/************************************************************************************/
|
/************************************************************************************/
|
||||||
const patch_trade_gazeteer = () => {
|
const patch_trade_gazeteer = () => {
|
||||||
if (game.wfrp4e.config.trade?.gazetteer) {
|
// Translate river cargoTypes to French (DotR module registers English values)
|
||||||
|
if (game.wfrp4e.trade?.tradeData?.river?.cargoTypes) {
|
||||||
|
Object.assign(game.wfrp4e.trade.tradeData.river.cargoTypes, {
|
||||||
|
"grain": game.i18n.localize("TRADE.Grain"),
|
||||||
|
"armaments": game.i18n.localize("TRADE.Armaments"),
|
||||||
|
"luxuries": game.i18n.localize("TRADE.Luxuries"),
|
||||||
|
"metal": game.i18n.localize("TRADE.Metal"),
|
||||||
|
"timber": game.i18n.localize("TRADE.Timber"),
|
||||||
|
"wine": game.i18n.localize("TRADE.Wine"),
|
||||||
|
"brandy": game.i18n.localize("TRADE.Brandy"),
|
||||||
|
"wool": game.i18n.localize("TRADE.Wool"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Translate maritime cargoTypes to French (SOC module)
|
||||||
|
if (game.wfrp4e.trade?.tradeData?.maritime?.cargoTypes) {
|
||||||
|
const maritimeKeys = {
|
||||||
|
"citrusfruit": "TRADE.Citrusfruit",
|
||||||
|
"olives": "TRADE.Olives",
|
||||||
|
"saltfish": "TRADE.Saltfish",
|
||||||
|
"stone": "TRADE.Stone",
|
||||||
|
};
|
||||||
|
for (let [key, locKey] of Object.entries(maritimeKeys)) {
|
||||||
|
if (game.wfrp4e.trade.tradeData.maritime.cargoTypes[key]) {
|
||||||
|
game.wfrp4e.trade.tradeData.maritime.cargoTypes[key] = game.i18n.localize(locKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Translate shared keys that may also appear in maritime
|
||||||
|
Object.assign(game.wfrp4e.trade.tradeData.maritime.cargoTypes,
|
||||||
|
Object.fromEntries(
|
||||||
|
Object.entries(game.wfrp4e.trade.tradeData.maritime.cargoTypes)
|
||||||
|
.filter(([k]) => game.wfrp4e.trade.tradeData.river?.cargoTypes?.[k])
|
||||||
|
.map(([k]) => [k, game.wfrp4e.trade.tradeData.river.cargoTypes[k]])
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// Translate season names shown in the trade dialog
|
||||||
|
if (game.wfrp4e.trade?.seasons) {
|
||||||
|
Object.assign(game.wfrp4e.trade.seasons, {
|
||||||
|
"spring": game.i18n.localize("TRADE.Spring"),
|
||||||
|
"summer": game.i18n.localize("TRADE.Summer"),
|
||||||
|
"autumn": game.i18n.localize("TRADE.Autumn"),
|
||||||
|
"winter": game.i18n.localize("TRADE.Winter"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Replace the English DotR gazetteer with the French-translated one
|
||||||
|
// New API: game.wfrp4e.trade.gazetteers.river (replaces old game.wfrp4e.config.trade.gazetteer)
|
||||||
|
if (game.wfrp4e.trade?.gazetteers?.river?.length) {
|
||||||
fetch("modules/wh4-fr-translation/trade/gazetteer_dotr.json").then(r => r.json()).then(records => {
|
fetch("modules/wh4-fr-translation/trade/gazetteer_dotr.json").then(r => r.json()).then(records => {
|
||||||
game.wfrp4e.config.trade.gazetteer = records;
|
game.wfrp4e.trade.gazetteers.river = records;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-001307
|
MANIFEST-001311
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.743870 7f7930fff6c0 Recovering log #1305
|
2026/03/07-00:45:53.808506 7fe8c37fe6c0 Recovering log #1309
|
||||||
2026/03/05-20:38:02.754744 7f7930fff6c0 Delete type=3 #1303
|
2026/03/07-00:45:53.819278 7fe8c37fe6c0 Delete type=3 #1307
|
||||||
2026/03/05-20:38:02.754879 7f7930fff6c0 Delete type=0 #1305
|
2026/03/07-00:45:53.819338 7fe8c37fe6c0 Delete type=0 #1309
|
||||||
2026/03/05-20:42:36.083534 7f78e15b46c0 Level-0 table #1310: started
|
2026/03/07-01:11:49.557068 7fe8c2ffd6c0 Level-0 table #1314: started
|
||||||
2026/03/05-20:42:36.083606 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
2026/03/07-01:11:49.557102 7fe8c2ffd6c0 Level-0 table #1314: 0 bytes OK
|
||||||
2026/03/05-20:42:36.090385 7f78e15b46c0 Delete type=0 #1308
|
2026/03/07-01:11:49.563625 7fe8c2ffd6c0 Delete type=0 #1312
|
||||||
2026/03/05-20:42:36.111635 7f78e15b46c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.577541 7fe8c2ffd6c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:58.958021 7f78e2ffd6c0 Recovering log #1301
|
2026/03/05-20:38:02.743870 7f7930fff6c0 Recovering log #1305
|
||||||
2026/03/05-20:35:59.014393 7f78e2ffd6c0 Delete type=3 #1299
|
2026/03/05-20:38:02.754744 7f7930fff6c0 Delete type=3 #1303
|
||||||
2026/03/05-20:35:59.014563 7f78e2ffd6c0 Delete type=0 #1301
|
2026/03/05-20:38:02.754879 7f7930fff6c0 Delete type=0 #1305
|
||||||
2026/03/05-20:36:36.801154 7f78e15b46c0 Level-0 table #1306: started
|
2026/03/05-20:42:36.083534 7f78e15b46c0 Level-0 table #1310: started
|
||||||
2026/03/05-20:36:36.801207 7f78e15b46c0 Level-0 table #1306: 0 bytes OK
|
2026/03/05-20:42:36.083606 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
||||||
2026/03/05-20:36:36.851951 7f78e15b46c0 Delete type=0 #1304
|
2026/03/05-20:42:36.090385 7f78e15b46c0 Delete type=0 #1308
|
||||||
2026/03/05-20:36:36.886757 7f78e15b46c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.111635 7f78e15b46c0 Manual compaction at level-0 from '!journal!3IgmiprzLB6Lwenc' @ 72057594037927935 : 1 .. '!journal.pages!suuYN87Al1ZZWtQQ.jhgNnhWhrkOpKs1B' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001309
|
MANIFEST-001313
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.758975 7f78e37fe6c0 Recovering log #1307
|
2026/03/07-00:45:53.822265 7fe9111ff6c0 Recovering log #1311
|
||||||
2026/03/05-20:38:02.770688 7f78e37fe6c0 Delete type=3 #1305
|
2026/03/07-00:45:53.832029 7fe9111ff6c0 Delete type=3 #1309
|
||||||
2026/03/05-20:38:02.770801 7f78e37fe6c0 Delete type=0 #1307
|
2026/03/07-00:45:53.832089 7fe9111ff6c0 Delete type=0 #1311
|
||||||
2026/03/05-20:42:36.097432 7f78e15b46c0 Level-0 table #1312: started
|
2026/03/07-01:11:49.549791 7fe8c2ffd6c0 Level-0 table #1316: started
|
||||||
2026/03/05-20:42:36.097481 7f78e15b46c0 Level-0 table #1312: 0 bytes OK
|
2026/03/07-01:11:49.549814 7fe8c2ffd6c0 Level-0 table #1316: 0 bytes OK
|
||||||
2026/03/05-20:42:36.104419 7f78e15b46c0 Delete type=0 #1310
|
2026/03/07-01:11:49.556940 7fe8c2ffd6c0 Delete type=0 #1314
|
||||||
2026/03/05-20:42:36.111679 7f78e15b46c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.577524 7fe8c2ffd6c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:59.019628 7f7930fff6c0 Recovering log #1303
|
2026/03/05-20:38:02.758975 7f78e37fe6c0 Recovering log #1307
|
||||||
2026/03/05-20:35:59.074111 7f7930fff6c0 Delete type=3 #1301
|
2026/03/05-20:38:02.770688 7f78e37fe6c0 Delete type=3 #1305
|
||||||
2026/03/05-20:35:59.074362 7f7930fff6c0 Delete type=0 #1303
|
2026/03/05-20:38:02.770801 7f78e37fe6c0 Delete type=0 #1307
|
||||||
2026/03/05-20:36:37.079874 7f78e15b46c0 Level-0 table #1308: started
|
2026/03/05-20:42:36.097432 7f78e15b46c0 Level-0 table #1312: started
|
||||||
2026/03/05-20:36:37.079944 7f78e15b46c0 Level-0 table #1308: 0 bytes OK
|
2026/03/05-20:42:36.097481 7f78e15b46c0 Level-0 table #1312: 0 bytes OK
|
||||||
2026/03/05-20:36:37.117249 7f78e15b46c0 Delete type=0 #1306
|
2026/03/05-20:42:36.104419 7f78e15b46c0 Delete type=0 #1310
|
||||||
2026/03/05-20:36:37.117631 7f78e15b46c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.111679 7f78e15b46c0 Manual compaction at level-0 from '!folders!3uquYH73ttCdoH0I' @ 72057594037927935 : 1 .. '!items!ylFhk7mGZOnAJTUT' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001307
|
MANIFEST-001311
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.790472 7f78e3fff6c0 Recovering log #1305
|
2026/03/07-00:45:53.847464 7fe8c3fff6c0 Recovering log #1309
|
||||||
2026/03/05-20:38:02.801425 7f78e3fff6c0 Delete type=3 #1303
|
2026/03/07-00:45:53.857503 7fe8c3fff6c0 Delete type=3 #1307
|
||||||
2026/03/05-20:38:02.801553 7f78e3fff6c0 Delete type=0 #1305
|
2026/03/07-00:45:53.857563 7fe8c3fff6c0 Delete type=0 #1309
|
||||||
2026/03/05-20:42:36.090593 7f78e15b46c0 Level-0 table #1310: started
|
2026/03/07-01:11:49.577693 7fe8c2ffd6c0 Level-0 table #1314: started
|
||||||
2026/03/05-20:42:36.090646 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
2026/03/07-01:11:49.577722 7fe8c2ffd6c0 Level-0 table #1314: 0 bytes OK
|
||||||
2026/03/05-20:42:36.097257 7f78e15b46c0 Delete type=0 #1308
|
2026/03/07-01:11:49.583840 7fe8c2ffd6c0 Delete type=0 #1312
|
||||||
2026/03/05-20:42:36.111659 7f78e15b46c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.612617 7fe8c2ffd6c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:59.141622 7f7930fff6c0 Recovering log #1301
|
2026/03/05-20:38:02.790472 7f78e3fff6c0 Recovering log #1305
|
||||||
2026/03/05-20:35:59.197458 7f7930fff6c0 Delete type=3 #1299
|
2026/03/05-20:38:02.801425 7f78e3fff6c0 Delete type=3 #1303
|
||||||
2026/03/05-20:35:59.197605 7f7930fff6c0 Delete type=0 #1301
|
2026/03/05-20:38:02.801553 7f78e3fff6c0 Delete type=0 #1305
|
||||||
2026/03/05-20:36:36.998926 7f78e15b46c0 Level-0 table #1306: started
|
2026/03/05-20:42:36.090593 7f78e15b46c0 Level-0 table #1310: started
|
||||||
2026/03/05-20:36:36.999012 7f78e15b46c0 Level-0 table #1306: 0 bytes OK
|
2026/03/05-20:42:36.090646 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
||||||
2026/03/05-20:36:37.079601 7f78e15b46c0 Delete type=0 #1304
|
2026/03/05-20:42:36.097257 7f78e15b46c0 Delete type=0 #1308
|
||||||
2026/03/05-20:36:37.117606 7f78e15b46c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.111659 7f78e15b46c0 Manual compaction at level-0 from '!journal!cZtNgayIw2QFhC9u' @ 72057594037927935 : 1 .. '!journal.pages!cZtNgayIw2QFhC9u.ts265H1XkisLgdow' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001307
|
MANIFEST-001311
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.727495 7f78e2ffd6c0 Recovering log #1305
|
2026/03/07-00:45:53.792556 7fe8c3fff6c0 Recovering log #1309
|
||||||
2026/03/05-20:38:02.739900 7f78e2ffd6c0 Delete type=3 #1303
|
2026/03/07-00:45:53.805674 7fe8c3fff6c0 Delete type=3 #1307
|
||||||
2026/03/05-20:38:02.740017 7f78e2ffd6c0 Delete type=0 #1305
|
2026/03/07-00:45:53.805724 7fe8c3fff6c0 Delete type=0 #1309
|
||||||
2026/03/05-20:42:36.060514 7f78e15b46c0 Level-0 table #1310: started
|
2026/03/07-01:11:49.563712 7fe8c2ffd6c0 Level-0 table #1314: started
|
||||||
2026/03/05-20:42:36.060577 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
2026/03/07-01:11:49.563733 7fe8c2ffd6c0 Level-0 table #1314: 0 bytes OK
|
||||||
2026/03/05-20:42:36.067949 7f78e15b46c0 Delete type=0 #1308
|
2026/03/07-01:11:49.570212 7fe8c2ffd6c0 Delete type=0 #1312
|
||||||
2026/03/05-20:42:36.083144 7f78e15b46c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.577555 7fe8c2ffd6c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:58.885055 7f78e37fe6c0 Recovering log #1301
|
2026/03/05-20:38:02.727495 7f78e2ffd6c0 Recovering log #1305
|
||||||
2026/03/05-20:35:58.952601 7f78e37fe6c0 Delete type=3 #1299
|
2026/03/05-20:38:02.739900 7f78e2ffd6c0 Delete type=3 #1303
|
||||||
2026/03/05-20:35:58.952732 7f78e37fe6c0 Delete type=0 #1301
|
2026/03/05-20:38:02.740017 7f78e2ffd6c0 Delete type=0 #1305
|
||||||
2026/03/05-20:36:36.852227 7f78e15b46c0 Level-0 table #1306: started
|
2026/03/05-20:42:36.060514 7f78e15b46c0 Level-0 table #1310: started
|
||||||
2026/03/05-20:36:36.852283 7f78e15b46c0 Level-0 table #1306: 0 bytes OK
|
2026/03/05-20:42:36.060577 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
||||||
2026/03/05-20:36:36.886395 7f78e15b46c0 Delete type=0 #1304
|
2026/03/05-20:42:36.067949 7f78e15b46c0 Delete type=0 #1308
|
||||||
2026/03/05-20:36:36.886780 7f78e15b46c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.083144 7f78e15b46c0 Manual compaction at level-0 from '!journal!50u8VAjdmovyr0hx' @ 72057594037927935 : 1 .. '!journal.pages!yzw9I0r3hCK7PJnz.sPNCYj2nR3Cp3jHd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-001307
|
MANIFEST-001311
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.710364 7f7930fff6c0 Recovering log #1305
|
2026/03/07-00:45:53.774458 7fe8c37fe6c0 Recovering log #1309
|
||||||
2026/03/05-20:38:02.722794 7f7930fff6c0 Delete type=3 #1303
|
2026/03/07-00:45:53.787633 7fe8c37fe6c0 Delete type=3 #1307
|
||||||
2026/03/05-20:38:02.722917 7f7930fff6c0 Delete type=0 #1305
|
2026/03/07-00:45:53.787702 7fe8c37fe6c0 Delete type=0 #1309
|
||||||
2026/03/05-20:42:36.068193 7f78e15b46c0 Level-0 table #1310: started
|
2026/03/07-01:11:49.543331 7fe8c2ffd6c0 Level-0 table #1314: started
|
||||||
2026/03/05-20:42:36.068246 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
2026/03/07-01:11:49.543361 7fe8c2ffd6c0 Level-0 table #1314: 0 bytes OK
|
||||||
2026/03/05-20:42:36.074966 7f78e15b46c0 Delete type=0 #1308
|
2026/03/07-01:11:49.549597 7fe8c2ffd6c0 Delete type=0 #1312
|
||||||
2026/03/05-20:42:36.083182 7f78e15b46c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.549676 7fe8c2ffd6c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:58.822672 7f78e2ffd6c0 Recovering log #1301
|
2026/03/05-20:38:02.710364 7f7930fff6c0 Recovering log #1305
|
||||||
2026/03/05-20:35:58.879917 7f78e2ffd6c0 Delete type=3 #1299
|
2026/03/05-20:38:02.722794 7f7930fff6c0 Delete type=3 #1303
|
||||||
2026/03/05-20:35:58.880051 7f78e2ffd6c0 Delete type=0 #1301
|
2026/03/05-20:38:02.722917 7f7930fff6c0 Delete type=0 #1305
|
||||||
2026/03/05-20:36:36.762561 7f78e15b46c0 Level-0 table #1306: started
|
2026/03/05-20:42:36.068193 7f78e15b46c0 Level-0 table #1310: started
|
||||||
2026/03/05-20:36:36.762639 7f78e15b46c0 Level-0 table #1306: 0 bytes OK
|
2026/03/05-20:42:36.068246 7f78e15b46c0 Level-0 table #1310: 0 bytes OK
|
||||||
2026/03/05-20:36:36.800890 7f78e15b46c0 Delete type=0 #1304
|
2026/03/05-20:42:36.074966 7f78e15b46c0 Delete type=0 #1308
|
||||||
2026/03/05-20:36:36.886730 7f78e15b46c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.083182 7f78e15b46c0 Manual compaction at level-0 from '!tables!4l60Lxv8cpsyy2Cg' @ 72057594037927935 : 1 .. '!tables.results!tfaYKDZqu7kgZvRG.yvbwKursaixh2dby' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000950
|
MANIFEST-000954
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:38:02.775184 7f7930fff6c0 Recovering log #948
|
2026/03/07-00:45:53.835083 7fe8c37fe6c0 Recovering log #952
|
||||||
2026/03/05-20:38:02.786747 7f7930fff6c0 Delete type=3 #946
|
2026/03/07-00:45:53.844848 7fe8c37fe6c0 Delete type=3 #950
|
||||||
2026/03/05-20:38:02.786856 7f7930fff6c0 Delete type=0 #948
|
2026/03/07-00:45:53.844893 7fe8c37fe6c0 Delete type=0 #952
|
||||||
2026/03/05-20:42:36.104620 7f78e15b46c0 Level-0 table #953: started
|
2026/03/07-01:11:49.570293 7fe8c2ffd6c0 Level-0 table #957: started
|
||||||
2026/03/05-20:42:36.104679 7f78e15b46c0 Level-0 table #953: 0 bytes OK
|
2026/03/07-01:11:49.570316 7fe8c2ffd6c0 Level-0 table #957: 0 bytes OK
|
||||||
2026/03/05-20:42:36.111433 7f78e15b46c0 Delete type=0 #951
|
2026/03/07-01:11:49.577407 7fe8c2ffd6c0 Delete type=0 #955
|
||||||
2026/03/05-20:42:36.111701 7f78e15b46c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
|
2026/03/07-01:11:49.577567 7fe8c2ffd6c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
2026/03/05-20:35:59.080273 7f78e2ffd6c0 Recovering log #944
|
2026/03/05-20:38:02.775184 7f7930fff6c0 Recovering log #948
|
||||||
2026/03/05-20:35:59.136381 7f78e2ffd6c0 Delete type=3 #942
|
2026/03/05-20:38:02.786747 7f7930fff6c0 Delete type=3 #946
|
||||||
2026/03/05-20:35:59.136563 7f78e2ffd6c0 Delete type=0 #944
|
2026/03/05-20:38:02.786856 7f7930fff6c0 Delete type=0 #948
|
||||||
2026/03/05-20:36:36.924587 7f78e15b46c0 Level-0 table #949: started
|
2026/03/05-20:42:36.104620 7f78e15b46c0 Level-0 table #953: started
|
||||||
2026/03/05-20:36:36.924663 7f78e15b46c0 Level-0 table #949: 0 bytes OK
|
2026/03/05-20:42:36.104679 7f78e15b46c0 Level-0 table #953: 0 bytes OK
|
||||||
2026/03/05-20:36:36.998629 7f78e15b46c0 Delete type=0 #947
|
2026/03/05-20:42:36.111433 7f78e15b46c0 Delete type=0 #951
|
||||||
2026/03/05-20:36:37.117578 7f78e15b46c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
|
2026/03/05-20:42:36.111701 7f78e15b46c0 Manual compaction at level-0 from '!journal!056ILNNrLiPq3Gi3' @ 72057594037927935 : 1 .. '!journal.pages!yfZxl4I7XAuUF6r3.apXmOlZRmGT4GreB' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user