Compare commits

...

3 Commits

Author SHA1 Message Date
0eb952e43e BOL : Fix damage error, rework roll dialog and new damage targetting
All checks were successful
Release Creation / build (release) Successful in 56s
2026-03-16 20:19:33 +01:00
a549262d25 BOL : Fix damage error, rework roll dialog and new damage targetting 2026-03-16 20:16:58 +01:00
7adc1b3f07 Auto-release
All checks were successful
Release Creation / build (release) Successful in 2m22s
2026-03-01 09:41:06 +01:00
158 changed files with 554 additions and 415 deletions

View File

@@ -12,15 +12,13 @@ jobs:
#- uses: actions/checkout@v3 #- uses: actions/checkout@v3
- uses: RouxAntoine/checkout@v3.5.4 - uses: RouxAntoine/checkout@v3.5.4
with:
ref: "v13"
# get part of the tag after the `v` # get part of the tag after the `v`
- name: Extract tag version number - name: Extract tag version number
id: get_version id: get_version
uses: battila7/get-version-action@v2 uses: battila7/get-version-action@v2
# Substitute the Manifest and Download URLs in the module.json # Substitute the Manifest and Download URLs in the system.json
- name: Substitute Manifest and Download Links For Versioned Ones - name: Substitute Manifest and Download Links For Versioned Ones
id: sub_manifest_link_version id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1 uses: microsoft/variable-substitution@v1
@@ -28,9 +26,9 @@ jobs:
files: "system.json" files: "system.json"
env: env:
version: ${{steps.get_version.outputs.version-without-v}} version: ${{steps.get_version.outputs.version-without-v}}
url: https://www.uberwald.me/gitea/public/bol url: https://www.uberwald.me/gitea/${{gitea.repository}}
manifest: https://www.uberwald.me/gitea/public/bol/releases/latest/system.json manifest: https://www.uberwald.me/gitea/public/bol/releases/download/latest/system.json
download: https://www.uberwald.me/gitea/public/bol/releases/download/${{github.event.release.tag_name}}/bol.zip download: https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/bol.zip
# Create a zip file with all files required by the module to add to the release # Create a zip file with all files required by the module to add to the release
- run: | - run: |
@@ -51,4 +49,15 @@ jobs:
files: |- files: |-
./bol.zip ./bol.zip
system.json system.json
api_key: "${{secrets.RELEASE_TOKEN_BOL}}" api_key: "${{secrets.ALLOW_PUSH_RELEASE}}"
- name: Publish to Foundry server
uses: https://github.com/djlechuck/foundryvtt-publish-package-action@v1
with:
token: ${{ secrets.FOUNDRYVTT_RELEASE_TOKEN }}
id: "bol"
version: ${{github.event.release.tag_name}}
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"
compatibility-minimum: "13"
compatibility-verified: "13"

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@ todo.md
/jsconfig.json /jsconfig.json
/package.json /package.json
/package-lock.json /package-lock.json
/.github

View File

@@ -1113,6 +1113,49 @@ h2.bad {
font-style: italic; font-style: italic;
margin-bottom: 4px; margin-bottom: 4px;
} }
.chat-message .bol-damage-card .damage-target-select-label,
.chat-message .bol-defense-card .damage-target-select-label {
font-size: 0.78rem;
color: #7a0000;
font-family: "Wolfsbane2Expanded", cursive;
letter-spacing: 0.4px;
margin-bottom: 4px;
}
.chat-message .bol-damage-card .chat-target-select,
.chat-message .bol-defense-card .chat-target-select {
display: flex;
align-items: center;
gap: 6px;
width: 100%;
margin-bottom: 2px;
padding: 3px 8px;
background: linear-gradient(135deg, #f5f0e8, #ede4d4);
border: 1px solid #c4a882;
border-radius: 4px;
color: #191813;
font-size: 0.85rem;
cursor: pointer;
text-align: left;
}
.chat-message .bol-damage-card .chat-target-select:hover,
.chat-message .bol-defense-card .chat-target-select:hover {
background: linear-gradient(135deg, #7a0000, darkred);
color: #e8d890;
border-color: #7a0000;
}
.chat-message .bol-damage-card .chat-target-select:hover .damage-target-icon,
.chat-message .bol-defense-card .chat-target-select:hover .damage-target-icon {
border-color: #e8d890;
}
.chat-message .bol-damage-card .chat-target-select .damage-target-icon,
.chat-message .bol-defense-card .chat-target-select .damage-target-icon {
width: 24px;
height: 24px;
border-radius: 3px;
border: 1px solid #c4a882;
object-fit: cover;
flex: 0 0 24px;
}
.chat-message .bol-damage-card .damage-note, .chat-message .bol-damage-card .damage-note,
.chat-message .bol-defense-card .damage-note { .chat-message .bol-defense-card .damage-note {
font-size: 0.78rem; font-size: 0.78rem;
@@ -1521,6 +1564,18 @@ body.system-bol img#logo {
color: #191813; color: #191813;
margin: 0; margin: 0;
} }
.bol.dialog .roll-dialog-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 8px;
align-items: start;
margin-bottom: 2px;
}
.bol.dialog .roll-col {
display: flex;
flex-direction: column;
min-width: 0;
}
.bol.dialog .roll-box, .bol.dialog .roll-box,
.bol.dialog .box-roll, .bol.dialog .box-roll,
.bol.dialog div.flexrow:has(.bg-darkred) { .bol.dialog div.flexrow:has(.bg-darkred) {
@@ -1583,8 +1638,8 @@ body.system-bol img#logo {
.bol.dialog select option:hover, .bol.dialog select option:hover,
.bol.dialog input[type="text"] option:hover, .bol.dialog input[type="text"] option:hover,
.bol.dialog input[type="number"] option:hover { .bol.dialog input[type="number"] option:hover {
background: darkred; background: darkred !important;
color: white; color: white !important;
} }
.bol.dialog input:disabled { .bol.dialog input:disabled {
color: #8b0000 !important; color: #8b0000 !important;

View File

@@ -478,6 +478,7 @@
"BOL.chat.damageresult": "Damages of {name} : {total}", "BOL.chat.damageresult": "Damages of {name} : {total}",
"BOL.chat.damagetarget": "Target : {target}", "BOL.chat.damagetarget": "Target : {target}",
"BOL.chat.applydamagetotarget": "Apply damages to the target", "BOL.chat.applydamagetotarget": "Apply damages to the target",
"BOL.chat.selecttarget": "Choose a target:",
"BOL.chat.fightoption": "Combat options", "BOL.chat.fightoption": "Combat options",
"BOL.chat.reroll": "Reroll (1 HP)", "BOL.chat.reroll": "Reroll (1 HP)",
"BOL.chat.heroicreminder": "In addition of the actions below, you can : <ul><li>Carnage : Do a second free attack on the same opponent</li><li>Precise : 1 Malus Die on your opponent on a chosen location</li><li>Disarm</li><li>Rabble Massacre</li><li>Prone : Push your opponent on the ground (max +1 size)</li></ul>If you spent 1 Hero Point in addition, all these effects can be doubled.", "BOL.chat.heroicreminder": "In addition of the actions below, you can : <ul><li>Carnage : Do a second free attack on the same opponent</li><li>Precise : 1 Malus Die on your opponent on a chosen location</li><li>Disarm</li><li>Rabble Massacre</li><li>Prone : Push your opponent on the ground (max +1 size)</li></ul>If you spent 1 Hero Point in addition, all these effects can be doubled.",

View File

@@ -506,6 +506,7 @@
"BOL.chat.damageresult": "Dommages de {name} : {total}", "BOL.chat.damageresult": "Dommages de {name} : {total}",
"BOL.chat.damagetarget": "Cible : {target}", "BOL.chat.damagetarget": "Cible : {target}",
"BOL.chat.applydamagetotarget": "Appliquer les dommages à la cible", "BOL.chat.applydamagetotarget": "Appliquer les dommages à la cible",
"BOL.chat.selecttarget": "Choisir une cible :",
"BOL.chat.fightoption": "Option de combat", "BOL.chat.fightoption": "Option de combat",
"BOL.chat.reroll": "Relancer (1 P. Heroisme)", "BOL.chat.reroll": "Relancer (1 P. Heroisme)",
"BOL.chat.heroicreminder": "En plus des actions indiquées sur les boutons ci-dessous, vous pouvez : <ul><li>Carnage : Attaquer une seconde fois le même adversaire</li><li>Coup précis : Un dé de malus à votre adversaire sur une localisation choisie</li><li>Désarmement</li><li>Massacrer la piétaille</li><li>Renversement : Renversez votre adversaire (1 taille de plus max)</li></ul>Si vous dépensez un Point d'Héroisme en plus, tout ces effets peuvent être doublés", "BOL.chat.heroicreminder": "En plus des actions indiquées sur les boutons ci-dessous, vous pouvez : <ul><li>Carnage : Attaquer une seconde fois le même adversaire</li><li>Coup précis : Un dé de malus à votre adversaire sur une localisation choisie</li><li>Désarmement</li><li>Massacrer la piétaille</li><li>Renversement : Renversez votre adversaire (1 taille de plus max)</li></ul>Si vous dépensez un Point d'Héroisme en plus, tout ces effets peuvent être doublés",

View File

@@ -359,7 +359,7 @@ export class BoLActor extends Actor {
ChatMessage.create({ ChatMessage.create({
alias: this.name, alias: this.name,
whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name), whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-activate-fight-option.hbs', { name: this.name, img: fightOption.img, foName: fightOption.name, state: state }) content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-activate-fight-option.hbs', { name: this.name, img: fightOption.img, foName: fightOption.name, state: state })
}) })
} }
@@ -877,7 +877,7 @@ export class BoLActor extends Actor {
ChatMessage.create({ ChatMessage.create({
alias: this.name, alias: this.name,
whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name), whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-vitality-zero.hbs', { name: this.name, img: this.img, hp: this.system.resources.hp.value, isHeroAdversary: this.isHeroAdversary() }) content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-vitality-zero.hbs', { name: this.name, img: this.img, hp: this.system.resources.hp.value, isHeroAdversary: this.isHeroAdversary() })
}) })
} else { } else {
if (prone) { if (prone) {
@@ -912,7 +912,7 @@ export class BoLActor extends Actor {
let msg = await ChatMessage.create({ let msg = await ChatMessage.create({
alias: this.name, alias: this.name,
whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name), whisper: BoLUtility.getWhisperRecipientsAndGMs(this.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-recup-information.hbs', { content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/chat-recup-information.hbs', {
name: this.name, name: this.name,
img: this.img, img: this.img,
actorId: this.id, actorId: this.id,

View File

@@ -747,6 +747,12 @@ export class BoLDefaultRoll {
/* -------------------------------------------- */ /* -------------------------------------------- */
async sendDamageMessage() { async sendDamageMessage() {
let actor = BoLUtility.getActorFromRollData(this.rollData) let actor = BoLUtility.getActorFromRollData(this.rollData)
// If no target, collect potential targets from active scene (excluding attacker)
if (!this.rollData.targetId && game.scenes.current) {
this.rollData.potentialTargets = game.scenes.current.tokens
.filter(t => t.actor && t.actor.id !== this.rollData.actorId)
.map(t => ({ id: t.id, actorId: t.actor.id, name: t.name, img: t.texture?.src || t.actor.img }))
}
this._buildDamageChatMessage(this.rollData).then(async msgFlavor => { this._buildDamageChatMessage(this.rollData).then(async msgFlavor => {
let msg = await this.rollData.damageRoll.toMessage({ let msg = await this.rollData.damageRoll.toMessage({
user: game.user.id, user: game.user.id,

View File

@@ -395,6 +395,16 @@ export class BoLUtility {
BoLUtility.sendAttackSuccess(rollData) BoLUtility.sendAttackSuccess(rollData)
}); });
html.on("click", '.chat-target-select', event => {
event.preventDefault()
const btn = event.currentTarget
let rollData = BoLUtility.getRollDataFromMessage(event)
rollData.targetId = btn.dataset.tokenId
rollData.defenderId = btn.dataset.actorId
BoLUtility.cleanupButtons(rollData.applyId)
BoLUtility.sendAttackSuccess(rollData)
});
html.on("click", '.chat-damage-roll', event => { html.on("click", '.chat-damage-roll', event => {
event.preventDefault() event.preventDefault()
let rollData = BoLUtility.getRollDataFromMessage(event) let rollData = BoLUtility.getRollDataFromMessage(event)
@@ -554,13 +564,13 @@ export class BoLUtility {
ChatMessage.create({ ChatMessage.create({
alias: defender.name, alias: defender.name,
whisper: BoLUtility.getWhisperRecipientsAndGMs(defender.name), whisper: BoLUtility.getWhisperRecipientsAndGMs(defender.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-result-card.hbs', damageResults) content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-result-card.hbs', damageResults)
}) })
console.log("Defender data : ", defenderUser) console.log("Defender data : ", defenderUser)
ChatMessage.create({ ChatMessage.create({
alias: defender.name, alias: defender.name,
whisper: BoLUtility.getOtherWhisperRecipients(defenderUser?.name), whisper: BoLUtility.getOtherWhisperRecipients(defenderUser?.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-summary-card.hbs', damageResults) content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-summary-card.hbs', damageResults)
}) })
} }
} }
@@ -647,7 +657,7 @@ export class BoLUtility {
let msg = await ChatMessage.create({ let msg = await ChatMessage.create({
alias: defender.name, alias: defender.name,
whisper: BoLUtility.getWhisperRecipientsAndGMs(defender.name), whisper: BoLUtility.getWhisperRecipientsAndGMs(defender.name),
content: await foundry.applications.handlebars.foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-request-card.hbs', { content: await foundry.applications.handlebars.renderTemplate('systems/bol/templates/chat/rolls/defense-request-card.hbs', {
attackId: rollData.id, attackId: rollData.id,
attacker: rollData.attacker, attacker: rollData.attacker,
defender: defender, defender: defender,

View File

@@ -1 +1 @@
MANIFEST-001076 MANIFEST-001084

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.852685 7f56e3fff6c0 Recovering log #1074 2026/03/16-19:46:09.197185 7f766a3fe6c0 Delete type=3 #1
2026/02/28-22:59:53.863099 7f56e3fff6c0 Delete type=3 #1072 2026/03/16-20:16:08.421989 7f7668bfb6c0 Level-0 table #1087: started
2026/02/28-22:59:53.863210 7f56e3fff6c0 Delete type=0 #1074 2026/03/16-20:16:08.422032 7f7668bfb6c0 Level-0 table #1087: 0 bytes OK
2026/03/01-01:08:46.366409 7f54e37ef6c0 Level-0 table #1079: started 2026/03/16-20:16:08.428629 7f7668bfb6c0 Delete type=0 #1085
2026/03/01-01:08:46.366440 7f54e37ef6c0 Level-0 table #1079: 0 bytes OK 2026/03/16-20:16:08.454903 7f7668bfb6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1
2026/03/01-01:08:46.372420 7f54e37ef6c0 Delete type=0 #1077 2026/03/16-20:16:08.454928 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.391669 7f54e37ef6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.459641 7f7668bfb6c0 Generated table #1088@0: 24 keys, 28007 bytes
2026/03/01-01:08:46.391720 7f54e37ef6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.459663 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 28007 bytes
2026/03/16-20:16:08.466040 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.466219 7f7668bfb6c0 Delete type=2 #774
2026/03/16-20:16:08.488702 7f7668bfb6c0 Manual compaction at level-0 from '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 283 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.883622 7f56f93fe6c0 Recovering log #1070 2026/03/16-19:46:09.175786 7f766a3fe6c0 Log #1082: 0 ops saved to Table #1083 OK
2026/02/28-17:23:52.893895 7f56f93fe6c0 Delete type=3 #1068 2026/03/16-19:46:09.176080 7f766a3fe6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu/001082.log: OK
2026/02/28-17:23:52.893967 7f56f93fe6c0 Delete type=0 #1070 2026/03/16-19:46:09.177100 7f766a3fe6c0 Table #774: 24 entries OK
2026/02/28-22:59:43.750682 7f54e37ef6c0 Level-0 table #1075: started 2026/03/16-19:46:09.180960 7f766a3fe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/aides-de-jeu; recovered 1 files; 28007 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.750749 7f54e37ef6c0 Level-0 table #1075: 0 bytes OK
2026/02/28-22:59:43.758241 7f54e37ef6c0 Delete type=0 #1073
2026/02/28-22:59:43.758440 7f54e37ef6c0 Manual compaction at level-0 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.758473 7f54e37ef6c0 Manual compaction at level-1 from '!journal!3xJg1rCxnWvEmoxS' @ 72057594037927935 : 1 .. '!journal.pages!veAAxCtCKcFIsnln.0kUgZspxXO7VS8bd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000981 MANIFEST-000989

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.826224 7f56f8bfd6c0 Recovering log #979 2026/03/16-19:46:09.143692 7f7669bfd6c0 Delete type=3 #1
2026/02/28-22:59:53.836758 7f56f8bfd6c0 Delete type=3 #977 2026/03/16-20:16:08.436084 7f7668bfb6c0 Level-0 table #992: started
2026/02/28-22:59:53.836823 7f56f8bfd6c0 Delete type=0 #979 2026/03/16-20:16:08.436127 7f7668bfb6c0 Level-0 table #992: 0 bytes OK
2026/03/01-01:08:46.372471 7f54e37ef6c0 Level-0 table #984: started 2026/03/16-20:16:08.443698 7f7668bfb6c0 Delete type=0 #990
2026/03/01-01:08:46.372486 7f54e37ef6c0 Level-0 table #984: 0 bytes OK 2026/03/16-20:16:08.477884 7f7668bfb6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at '!items!xhEcsi3WHjbt2ro9' @ 42 : 1
2026/03/01-01:08:46.378495 7f54e37ef6c0 Delete type=0 #982 2026/03/16-20:16:08.477902 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.391687 7f54e37ef6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.481701 7f7668bfb6c0 Generated table #993@0: 6 keys, 5424 bytes
2026/03/01-01:08:46.391731 7f54e37ef6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.481748 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 5424 bytes
2026/03/16-20:16:08.488315 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.488463 7f7668bfb6c0 Delete type=2 #679
2026/03/16-20:16:08.488751 7f7668bfb6c0 Manual compaction at level-0 from '!items!xhEcsi3WHjbt2ro9' @ 42 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.858522 7f56e3fff6c0 Recovering log #975 2026/03/16-19:46:09.120613 7f7669bfd6c0 Log #987: 0 ops saved to Table #988 OK
2026/02/28-17:23:52.869495 7f56e3fff6c0 Delete type=3 #973 2026/03/16-19:46:09.120850 7f7669bfd6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors/000987.log: OK
2026/02/28-17:23:52.869552 7f56e3fff6c0 Delete type=0 #975 2026/03/16-19:46:09.121424 7f7669bfd6c0 Table #679: 6 entries OK
2026/02/28-22:59:43.737596 7f54e37ef6c0 Level-0 table #980: started 2026/03/16-19:46:09.125224 7f7669bfd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/armors; recovered 1 files; 5424 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.737635 7f54e37ef6c0 Level-0 table #980: 0 bytes OK
2026/02/28-22:59:43.743801 7f54e37ef6c0 Delete type=0 #978
2026/02/28-22:59:43.758414 7f54e37ef6c0 Manual compaction at level-0 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.758457 7f54e37ef6c0 Manual compaction at level-1 from '!items!G3dZTHIabA3LA1hY' @ 72057594037927935 : 1 .. '!items!xhEcsi3WHjbt2ro9' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001075 MANIFEST-001083

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.718001 7f56f8bfd6c0 Recovering log #1073 2026/03/16-19:46:08.857890 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.729345 7f56f8bfd6c0 Delete type=3 #1071 2026/03/16-20:16:08.265157 7f7668bfb6c0 Level-0 table #1086: started
2026/02/28-22:59:53.729412 7f56f8bfd6c0 Delete type=0 #1073 2026/03/16-20:16:08.265207 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/01-01:08:46.321084 7f54e37ef6c0 Level-0 table #1078: started 2026/03/16-20:16:08.272133 7f7668bfb6c0 Delete type=0 #1084
2026/03/01-01:08:46.321111 7f54e37ef6c0 Level-0 table #1078: 0 bytes OK 2026/03/16-20:16:08.299945 7f7668bfb6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at '!items!zgspy1QKaxdEetEw' @ 533 : 1
2026/03/01-01:08:46.327221 7f54e37ef6c0 Delete type=0 #1076 2026/03/16-20:16:08.299966 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.339937 7f54e37ef6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.305068 7f7668bfb6c0 Generated table #1087@0: 61 keys, 20970 bytes
2026/03/01-01:08:46.339972 7f54e37ef6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.305111 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 20970 bytes
2026/03/16-20:16:08.311829 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.312005 7f7668bfb6c0 Delete type=2 #843
2026/03/16-20:16:08.335606 7f7668bfb6c0 Manual compaction at level-0 from '!items!zgspy1QKaxdEetEw' @ 533 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.757933 7f56f9bff6c0 Recovering log #1069 2026/03/16-19:46:08.539383 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/02/28-17:23:52.767692 7f56f9bff6c0 Delete type=3 #1067 2026/03/16-19:46:08.539570 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons/001081.log: OK
2026/02/28-17:23:52.767761 7f56f9bff6c0 Delete type=0 #1069 2026/03/16-19:46:08.540406 7f766abff6c0 Table #843: 61 entries OK
2026/02/28-22:59:43.697108 7f54e37ef6c0 Level-0 table #1074: started 2026/03/16-19:46:08.544540 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boons; recovered 1 files; 20970 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.697152 7f54e37ef6c0 Level-0 table #1074: 0 bytes OK
2026/02/28-22:59:43.704224 7f54e37ef6c0 Delete type=0 #1072
2026/02/28-22:59:43.704461 7f54e37ef6c0 Manual compaction at level-0 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.704511 7f54e37ef6c0 Manual compaction at level-1 from '!items!039ZF3E3MtAGwbiX' @ 72057594037927935 : 1 .. '!items!zgspy1QKaxdEetEw' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/boons/MANIFEST-001083 Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001074 MANIFEST-001082

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.732583 7f56e3fff6c0 Recovering log #1072 2026/03/16-19:46:08.909016 7f76693fc6c0 Delete type=3 #1
2026/02/28-22:59:53.742972 7f56e3fff6c0 Delete type=3 #1070 2026/03/16-20:16:08.272330 7f7668bfb6c0 Level-0 table #1085: started
2026/02/28-22:59:53.743061 7f56e3fff6c0 Delete type=0 #1072 2026/03/16-20:16:08.272372 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/01-01:08:46.313828 7f54e37ef6c0 Level-0 table #1077: started 2026/03/16-20:16:08.279546 7f7668bfb6c0 Delete type=0 #1083
2026/03/01-01:08:46.313877 7f54e37ef6c0 Level-0 table #1077: 0 bytes OK 2026/03/16-20:16:08.312273 7f7668bfb6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at '!items!yofwG0YrsL902G77' @ 64 : 1
2026/03/01-01:08:46.320973 7f54e37ef6c0 Delete type=0 #1075 2026/03/16-20:16:08.312291 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.339925 7f54e37ef6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.316030 7f7668bfb6c0 Generated table #1086@0: 8 keys, 2453 bytes
2026/03/01-01:08:46.339953 7f54e37ef6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.316070 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 2453 bytes
2026/03/16-20:16:08.323057 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.323234 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335626 7f7668bfb6c0 Manual compaction at level-0 from '!items!yofwG0YrsL902G77' @ 64 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.769847 7f56f93fe6c0 Recovering log #1068 2026/03/16-19:46:08.865328 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/02/28-17:23:52.780583 7f56f93fe6c0 Delete type=3 #1066 2026/03/16-19:46:08.865565 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures/001080.log: OK
2026/02/28-17:23:52.780639 7f56f93fe6c0 Delete type=0 #1068 2026/03/16-19:46:08.865990 7f76693fc6c0 Table #772: 8 entries OK
2026/02/28-22:59:43.677524 7f54e37ef6c0 Level-0 table #1073: started 2026/03/16-19:46:08.869744 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/boonsflawscreatures; recovered 1 files; 2453 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.677620 7f54e37ef6c0 Level-0 table #1073: 0 bytes OK
2026/02/28-22:59:43.684329 7f54e37ef6c0 Delete type=0 #1071
2026/02/28-22:59:43.704401 7f54e37ef6c0 Manual compaction at level-0 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.704474 7f54e37ef6c0 Manual compaction at level-1 from '!items!CoqlfsDV1gL5swbK' @ 72057594037927935 : 1 .. '!items!yofwG0YrsL902G77' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001074 MANIFEST-001082

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.759689 7f56f8bfd6c0 Recovering log #1072 2026/03/16-19:46:09.002243 7f76693fc6c0 Delete type=3 #1
2026/02/28-22:59:53.770229 7f56f8bfd6c0 Delete type=3 #1070 2026/03/16-20:16:08.279807 7f7668bfb6c0 Level-0 table #1085: started
2026/02/28-22:59:53.770305 7f56f8bfd6c0 Delete type=0 #1072 2026/03/16-20:16:08.279852 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/01-01:08:46.327327 7f54e37ef6c0 Level-0 table #1077: started 2026/03/16-20:16:08.287482 7f7668bfb6c0 Delete type=0 #1083
2026/03/01-01:08:46.327354 7f54e37ef6c0 Level-0 table #1077: 0 bytes OK 2026/03/16-20:16:08.323479 7f7668bfb6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at '!items!zxY3sW0iCJBvwjOS' @ 215 : 1
2026/03/01-01:08:46.333262 7f54e37ef6c0 Delete type=0 #1075 2026/03/16-20:16:08.323495 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.339946 7f54e37ef6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.328403 7f7668bfb6c0 Generated table #1086@0: 27 keys, 42639 bytes
2026/03/01-01:08:46.339979 7f54e37ef6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.328434 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 42639 bytes
2026/03/16-20:16:08.335062 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.335267 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.335642 7f7668bfb6c0 Manual compaction at level-0 from '!items!zxY3sW0iCJBvwjOS' @ 215 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.796426 7f56f9bff6c0 Recovering log #1068 2026/03/16-19:46:08.971933 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/02/28-17:23:52.805920 7f56f9bff6c0 Delete type=3 #1066 2026/03/16-19:46:08.972193 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers/001080.log: OK
2026/02/28-17:23:52.805973 7f56f9bff6c0 Delete type=0 #1068 2026/03/16-19:46:08.973605 7f76693fc6c0 Table #772: 27 entries OK
2026/02/28-22:59:43.711333 7f54e37ef6c0 Level-0 table #1073: started 2026/03/16-19:46:08.977409 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/careers; recovered 1 files; 42639 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.711370 7f54e37ef6c0 Level-0 table #1073: 0 bytes OK
2026/02/28-22:59:43.717336 7f54e37ef6c0 Delete type=0 #1071
2026/02/28-22:59:43.731041 7f54e37ef6c0 Manual compaction at level-0 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.731086 7f54e37ef6c0 Manual compaction at level-1 from '!items!4S4xAfMXGnuU0O1a' @ 72057594037927935 : 1 .. '!items!zxY3sW0iCJBvwjOS' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001072 MANIFEST-001080

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.948768 7f56f93fe6c0 Recovering log #1070 2026/03/16-19:46:09.384452 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.958702 7f56f93fe6c0 Delete type=3 #1068 2026/03/16-20:16:08.596026 7f7668bfb6c0 Level-0 table #1083: started
2026/02/28-22:59:53.958781 7f56f93fe6c0 Delete type=0 #1070 2026/03/16-20:16:08.596072 7f7668bfb6c0 Level-0 table #1083: 0 bytes OK
2026/03/01-01:08:46.425514 7f54e37ef6c0 Level-0 table #1075: started 2026/03/16-20:16:08.604284 7f7668bfb6c0 Delete type=0 #1081
2026/03/01-01:08:46.425561 7f54e37ef6c0 Level-0 table #1075: 0 bytes OK 2026/03/16-20:16:08.616512 7f7668bfb6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at '!items!zwSNMO9HpiqUCMt8' @ 24 : 1
2026/03/01-01:08:46.431671 7f54e37ef6c0 Delete type=0 #1073 2026/03/16-20:16:08.616529 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.445290 7f54e37ef6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.620595 7f7668bfb6c0 Generated table #1084@0: 4 keys, 990 bytes
2026/03/01-01:08:46.445328 7f54e37ef6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.620628 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 990 bytes
2026/03/16-20:16:08.627657 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.627801 7f7668bfb6c0 Delete type=2 #770
2026/03/16-20:16:08.667532 7f7668bfb6c0 Manual compaction at level-0 from '!items!zwSNMO9HpiqUCMt8' @ 24 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.970603 7f56f9bff6c0 Recovering log #1066 2026/03/16-19:46:09.364109 7f766abff6c0 Log #1078: 0 ops saved to Table #1079 OK
2026/02/28-17:23:52.981835 7f56f9bff6c0 Delete type=3 #1064 2026/03/16-19:46:09.364398 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples/001078.log: OK
2026/02/28-17:23:52.981888 7f56f9bff6c0 Delete type=0 #1066 2026/03/16-19:46:09.364562 7f766abff6c0 Table #770: 4 entries OK
2026/02/28-22:59:43.785498 7f54e37ef6c0 Level-0 table #1071: started 2026/03/16-19:46:09.368408 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/effets-exemples; recovered 1 files; 990 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.785523 7f54e37ef6c0 Level-0 table #1071: 0 bytes OK
2026/02/28-22:59:43.792317 7f54e37ef6c0 Delete type=0 #1069
2026/02/28-22:59:43.813749 7f54e37ef6c0 Manual compaction at level-0 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.813808 7f54e37ef6c0 Manual compaction at level-1 from '!items!6fTZ6hOKR4pWbWOe' @ 72057594037927935 : 1 .. '!items!zwSNMO9HpiqUCMt8' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001075 MANIFEST-001083

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.798832 7f56f9bff6c0 Recovering log #1073 2026/03/16-19:46:09.085657 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.809449 7f56f9bff6c0 Delete type=3 #1071 2026/03/16-20:16:08.351512 7f7668bfb6c0 Level-0 table #1086: started
2026/02/28-22:59:53.809533 7f56f9bff6c0 Delete type=0 #1073 2026/03/16-20:16:08.351558 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/01-01:08:46.340100 7f54e37ef6c0 Level-0 table #1078: started 2026/03/16-20:16:08.358533 7f7668bfb6c0 Delete type=0 #1084
2026/03/01-01:08:46.340139 7f54e37ef6c0 Level-0 table #1078: 0 bytes OK 2026/03/16-20:16:08.390133 7f7668bfb6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at '!items!yE8UH6YAgNGjKDEu' @ 499 : 1
2026/03/01-01:08:46.346846 7f54e37ef6c0 Delete type=0 #1076 2026/03/16-20:16:08.390150 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.366221 7f54e37ef6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.394184 7f7668bfb6c0 Generated table #1087@0: 43 keys, 9886 bytes
2026/03/01-01:08:46.366278 7f54e37ef6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.394206 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 9886 bytes
2026/03/16-20:16:08.401465 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.401654 7f7668bfb6c0 Delete type=2 #773
2026/03/16-20:16:08.413820 7f7668bfb6c0 Manual compaction at level-0 from '!items!yE8UH6YAgNGjKDEu' @ 499 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.834261 7f56f9bff6c0 Recovering log #1069 2026/03/16-19:46:09.065759 7f766abff6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/02/28-17:23:52.843912 7f56f9bff6c0 Delete type=3 #1067 2026/03/16-19:46:09.065989 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment/001081.log: OK
2026/02/28-17:23:52.843969 7f56f9bff6c0 Delete type=0 #1069 2026/03/16-19:46:09.066756 7f766abff6c0 Table #773: 43 entries OK
2026/02/28-22:59:43.704672 7f54e37ef6c0 Level-0 table #1074: started 2026/03/16-19:46:09.070319 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/equipment; recovered 1 files; 9886 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.704745 7f54e37ef6c0 Level-0 table #1074: 0 bytes OK
2026/02/28-22:59:43.711212 7f54e37ef6c0 Delete type=0 #1072
2026/02/28-22:59:43.731026 7f54e37ef6c0 Manual compaction at level-0 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.731077 7f54e37ef6c0 Manual compaction at level-1 from '!items!0ErhyqifZLDCmMfT' @ 72057594037927935 : 1 .. '!items!yE8UH6YAgNGjKDEu' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-001074 MANIFEST-001082

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.895577 7f56f8bfd6c0 Recovering log #1072 2026/03/16-19:46:09.274487 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.906749 7f56f8bfd6c0 Delete type=3 #1070 2026/03/16-20:16:08.497329 7f7668bfb6c0 Level-0 table #1085: started
2026/02/28-22:59:53.906807 7f56f8bfd6c0 Delete type=0 #1072 2026/03/16-20:16:08.497368 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/01-01:08:46.391890 7f54e37ef6c0 Level-0 table #1077: started 2026/03/16-20:16:08.504561 7f7668bfb6c0 Delete type=0 #1083
2026/03/01-01:08:46.391936 7f54e37ef6c0 Level-0 table #1077: 0 bytes OK 2026/03/16-20:16:08.531656 7f7668bfb6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at '!items!vGydqADwTsHZ9B3j' @ 189 : 1
2026/03/01-01:08:46.398187 7f54e37ef6c0 Delete type=0 #1075 2026/03/16-20:16:08.531672 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.417834 7f54e37ef6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.535598 7f7668bfb6c0 Generated table #1086@0: 8 keys, 3773 bytes
2026/03/01-01:08:46.417875 7f54e37ef6c0 Manual compaction at level-1 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.535643 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 3773 bytes
2026/03/16-20:16:08.542636 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.542859 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.567841 7f7668bfb6c0 Manual compaction at level-0 from '!items!vGydqADwTsHZ9B3j' @ 189 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.920377 7f56e3fff6c0 Recovering log #1068 2026/03/16-19:46:09.255299 7f766abff6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/02/28-17:23:52.930570 7f56e3fff6c0 Delete type=3 #1066 2026/03/16-19:46:09.255545 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptions/001080.log: OK
2026/02/28-17:23:52.930642 7f56e3fff6c0 Delete type=0 #1068 2026/03/16-19:46:09.255893 7f766abff6c0 Table #772: 8 entries OK
2026/02/28-22:59:43.758590 7f54e37ef6c0 Level-0 table #1073: started 2026/03/16-19:46:09.259507 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptions; recovered 1 files; 3773 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.758628 7f54e37ef6c0 Level-0 table #1073: 0 bytes OK
2026/02/28-22:59:43.764731 7f54e37ef6c0 Delete type=0 #1071
2026/02/28-22:59:43.785330 7f54e37ef6c0 Manual compaction at level-0 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.785372 7f54e37ef6c0 Manual compaction at level-1 from '!items!AoT2c0af4lY6aBsx' @ 72057594037927935 : 1 .. '!items!vGydqADwTsHZ9B3j' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000557 MANIFEST-000565

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.909216 7f56f93fe6c0 Recovering log #555 2026/03/16-19:46:09.300193 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.919079 7f56f93fe6c0 Delete type=3 #553 2026/03/16-20:16:08.488964 7f7668bfb6c0 Level-0 table #568: started
2026/02/28-22:59:53.919136 7f56f93fe6c0 Delete type=0 #555 2026/03/16-20:16:08.489008 7f7668bfb6c0 Level-0 table #568: 0 bytes OK
2026/03/01-01:08:46.411300 7f54e37ef6c0 Level-0 table #560: started 2026/03/16-20:16:08.497158 7f7668bfb6c0 Delete type=0 #566
2026/03/01-01:08:46.411339 7f54e37ef6c0 Level-0 table #560: 0 bytes OK 2026/03/16-20:16:08.519485 7f7668bfb6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at '!items!wYEpnhbyYaMkaNdL' @ 150 : 1
2026/03/01-01:08:46.417727 7f54e37ef6c0 Delete type=0 #558 2026/03/16-20:16:08.519501 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.417880 7f54e37ef6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.523489 7f7668bfb6c0 Generated table #569@0: 22 keys, 11387 bytes
2026/03/01-01:08:46.417911 7f54e37ef6c0 Manual compaction at level-1 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.523515 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 11387 bytes
2026/03/16-20:16:08.531272 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.531422 7f7668bfb6c0 Delete type=2 #255
2026/03/16-20:16:08.567803 7f7668bfb6c0 Manual compaction at level-0 from '!items!wYEpnhbyYaMkaNdL' @ 150 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.933111 7f56f9bff6c0 Recovering log #551 2026/03/16-19:46:09.280219 7f766abff6c0 Log #563: 0 ops saved to Table #564 OK
2026/02/28-17:23:52.944230 7f56f9bff6c0 Delete type=3 #549 2026/03/16-19:46:09.280428 7f766abff6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptionsfanmade/000563.log: OK
2026/02/28-17:23:52.944299 7f56f9bff6c0 Delete type=0 #551 2026/03/16-19:46:09.281032 7f766abff6c0 Table #255: 22 entries OK
2026/02/28-22:59:43.771257 7f54e37ef6c0 Level-0 table #556: started 2026/03/16-19:46:09.284890 7f766abff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/fightoptionsfanmade; recovered 1 files; 11387 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.771301 7f54e37ef6c0 Level-0 table #556: 0 bytes OK
2026/02/28-22:59:43.778711 7f54e37ef6c0 Delete type=0 #554
2026/02/28-22:59:43.785356 7f54e37ef6c0 Manual compaction at level-0 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.785385 7f54e37ef6c0 Manual compaction at level-1 from '!items!CLRp0k5qV8mD03pW' @ 72057594037927935 : 1 .. '!items!wYEpnhbyYaMkaNdL' @ 0 : 0; will stop at (end)

Binary file not shown.

0
packs/flaws/001085.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-001075 MANIFEST-001083

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.745821 7f56f9bff6c0 Recovering log #1073 2026/03/16-19:46:08.965448 7f76693fc6c0 Delete type=3 #1
2026/02/28-22:59:53.756326 7f56f9bff6c0 Delete type=3 #1071 2026/03/16-20:16:08.257326 7f7668bfb6c0 Level-0 table #1086: started
2026/02/28-22:59:53.756400 7f56f9bff6c0 Delete type=0 #1073 2026/03/16-20:16:08.257444 7f7668bfb6c0 Level-0 table #1086: 0 bytes OK
2026/03/01-01:08:46.333368 7f54e37ef6c0 Level-0 table #1078: started 2026/03/16-20:16:08.264900 7f7668bfb6c0 Delete type=0 #1084
2026/03/01-01:08:46.333402 7f54e37ef6c0 Level-0 table #1078: 0 bytes OK 2026/03/16-20:16:08.287786 7f7668bfb6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at '!items!znd0K3b7HzYpdehs' @ 389 : 1
2026/03/01-01:08:46.339817 7f54e37ef6c0 Delete type=0 #1076 2026/03/16-20:16:08.287804 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.339962 7f54e37ef6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.292298 7f7668bfb6c0 Generated table #1087@0: 44 keys, 16594 bytes
2026/03/01-01:08:46.339986 7f54e37ef6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.292330 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 16594 bytes
2026/03/16-20:16:08.299319 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.299541 7f7668bfb6c0 Delete type=2 #843
2026/03/16-20:16:08.335584 7f7668bfb6c0 Manual compaction at level-0 from '!items!znd0K3b7HzYpdehs' @ 389 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.782908 7f56e3fff6c0 Recovering log #1069 2026/03/16-19:46:08.915033 7f76693fc6c0 Log #1081: 0 ops saved to Table #1082 OK
2026/02/28-17:23:52.794098 7f56e3fff6c0 Delete type=3 #1067 2026/03/16-19:46:08.915328 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/flaws/001081.log: OK
2026/02/28-17:23:52.794177 7f56e3fff6c0 Delete type=0 #1069 2026/03/16-19:46:08.916460 7f76693fc6c0 Table #843: 44 entries OK
2026/02/28-22:59:43.690888 7f54e37ef6c0 Level-0 table #1074: started 2026/03/16-19:46:08.920158 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/flaws; recovered 1 files; 16594 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.690928 7f54e37ef6c0 Level-0 table #1074: 0 bytes OK
2026/02/28-22:59:43.696960 7f54e37ef6c0 Delete type=0 #1072
2026/02/28-22:59:43.704444 7f54e37ef6c0 Manual compaction at level-0 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.704500 7f54e37ef6c0 Manual compaction at level-1 from '!items!0wCqg1UpGd50uJrS' @ 72057594037927935 : 1 .. '!items!znd0K3b7HzYpdehs' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/flaws/MANIFEST-001083 Normal file

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-001074 MANIFEST-001082

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.868071 7f56f9bff6c0 Recovering log #1072 2026/03/16-19:46:09.224301 7f76693fc6c0 Delete type=3 #1
2026/02/28-22:59:53.878397 7f56f9bff6c0 Delete type=3 #1070 2026/03/16-20:16:08.504805 7f7668bfb6c0 Level-0 table #1085: started
2026/02/28-22:59:53.878486 7f56f9bff6c0 Delete type=0 #1072 2026/03/16-20:16:08.504852 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/01-01:08:46.384669 7f54e37ef6c0 Level-0 table #1077: started 2026/03/16-20:16:08.512168 7f7668bfb6c0 Delete type=0 #1083
2026/03/01-01:08:46.384685 7f54e37ef6c0 Level-0 table #1077: 0 bytes OK 2026/03/16-20:16:08.543143 7f7668bfb6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at '!items!vaAQiuAHdyQrQiUX' @ 149 : 1
2026/03/01-01:08:46.391370 7f54e37ef6c0 Delete type=0 #1075 2026/03/16-20:16:08.543161 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.391711 7f54e37ef6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.547871 7f7668bfb6c0 Generated table #1086@0: 18 keys, 7450 bytes
2026/03/01-01:08:46.391749 7f54e37ef6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.547900 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 7450 bytes
2026/03/16-20:16:08.554898 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.555057 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.567873 7f7668bfb6c0 Manual compaction at level-0 from '!items!vaAQiuAHdyQrQiUX' @ 149 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,4 @@
2026/02/28-17:23:52.896387 7f56f9bff6c0 Recovering log #1068 2026/03/16-19:46:09.203644 7f76693fc6c0 Log #1080: 0 ops saved to Table #1081 OK
2026/02/28-17:23:52.906464 7f56f9bff6c0 Delete type=3 #1066 2026/03/16-19:46:09.203945 7f76693fc6c0 Archiving /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/languages/001080.log: OK
2026/02/28-17:23:52.906539 7f56f9bff6c0 Delete type=0 #1068 2026/03/16-19:46:09.204343 7f76693fc6c0 Table #772: 18 entries OK
2026/02/28-22:59:43.731206 7f54e37ef6c0 Level-0 table #1073: started 2026/03/16-19:46:09.208117 7f76693fc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-v13/Data/systems/bol/packs/languages; recovered 1 files; 7450 bytes. Some data may have been lost. ****
2026/02/28-22:59:43.731246 7f54e37ef6c0 Level-0 table #1073: 0 bytes OK
2026/02/28-22:59:43.737434 7f54e37ef6c0 Delete type=0 #1071
2026/02/28-22:59:43.758397 7f54e37ef6c0 Manual compaction at level-0 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)
2026/02/28-22:59:43.758449 7f54e37ef6c0 Manual compaction at level-1 from '!items!46qF6OBN5gf0dqWc' @ 72057594037927935 : 1 .. '!items!vaAQiuAHdyQrQiUX' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-001074 MANIFEST-001082

View File

@@ -1,8 +1,11 @@
2026/02/28-22:59:53.934035 7f56f8bfd6c0 Recovering log #1072 2026/03/16-19:46:09.357997 7f766abff6c0 Delete type=3 #1
2026/02/28-22:59:53.944554 7f56f8bfd6c0 Delete type=3 #1070 2026/03/16-20:16:08.568156 7f7668bfb6c0 Level-0 table #1085: started
2026/02/28-22:59:53.944697 7f56f8bfd6c0 Delete type=0 #1072 2026/03/16-20:16:08.568247 7f7668bfb6c0 Level-0 table #1085: 0 bytes OK
2026/03/01-01:08:46.417957 7f54e37ef6c0 Level-0 table #1077: started 2026/03/16-20:16:08.575396 7f7668bfb6c0 Delete type=0 #1083
2026/03/01-01:08:46.417992 7f54e37ef6c0 Level-0 table #1077: 0 bytes OK 2026/03/16-20:16:08.604560 7f7668bfb6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at '!items!xVWrSPiX0Nwccsn6' @ 336 : 1
2026/03/01-01:08:46.425325 7f54e37ef6c0 Delete type=0 #1075 2026/03/16-20:16:08.604578 7f7668bfb6c0 Compacting 1@0 + 0@1 files
2026/03/01-01:08:46.445276 7f54e37ef6c0 Manual compaction at level-0 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.609023 7f7668bfb6c0 Generated table #1086@0: 42 keys, 14599 bytes
2026/03/01-01:08:46.445310 7f54e37ef6c0 Manual compaction at level-1 from '!items!0Yhn3r8AFsKXEKeS' @ 72057594037927935 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end) 2026/03/16-20:16:08.609049 7f7668bfb6c0 Compacted 1@0 + 0@1 files => 14599 bytes
2026/03/16-20:16:08.615902 7f7668bfb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
2026/03/16-20:16:08.616116 7f7668bfb6c0 Delete type=2 #772
2026/03/16-20:16:08.628018 7f7668bfb6c0 Manual compaction at level-0 from '!items!xVWrSPiX0Nwccsn6' @ 336 : 1 .. '!items!xVWrSPiX0Nwccsn6' @ 0 : 0; will stop at (end)

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