Compare commits
5 Commits
fvtt-mourn
...
fvtt-mourn
| Author | SHA1 | Date | |
|---|---|---|---|
| 901df5b395 | |||
| f5d84832f3 | |||
| 216360e0d8 | |||
| a0502dc467 | |||
| c8b94b74a1 |
@@ -169,6 +169,8 @@
|
||||
"MNBL.weaponscapacities": "Weapons/Abilities",
|
||||
"MNBL.weapontype": "Weapon Type",
|
||||
"MNBL.weight": "Weight",
|
||||
"MNBL.total": "Total",
|
||||
|
||||
"Présence": "Presence",
|
||||
"Puissance": "Might",
|
||||
"Trempe": "Mettle",
|
||||
|
||||
@@ -213,6 +213,7 @@
|
||||
|
||||
"MNBL.attribute": "Attribut",
|
||||
"MNBL.Protections": "Protections",
|
||||
"MNBL.rune": "Rune"
|
||||
"MNBL.rune": "Rune",
|
||||
"MNBL.total": "Total"
|
||||
|
||||
}
|
||||
@@ -713,6 +713,7 @@ export class MournbladeActor extends Actor {
|
||||
let roll = await new Roll(arme.system.totalDegats).roll()
|
||||
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
|
||||
let rollData = {
|
||||
degatsFormula:arme.system.totalDegats,
|
||||
arme: arme,
|
||||
finalResult: roll.total,
|
||||
alias: this.name,
|
||||
@@ -721,7 +722,7 @@ export class MournbladeActor extends Actor {
|
||||
actionImg: arme.img,
|
||||
}
|
||||
MournbladeUtility.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData)
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData)
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
@@ -209,7 +209,7 @@ export class MournbladeUtility {
|
||||
static createArrayOptionList(min, max) {
|
||||
let options = [];
|
||||
for (let i = min; i <= max; i++) {
|
||||
options.push({key:`${i}`, label:`${i}`});
|
||||
options.push({ key: `${i}`, label: `${i}` });
|
||||
}
|
||||
return options;
|
||||
}
|
||||
@@ -298,7 +298,11 @@ export class MournbladeUtility {
|
||||
}
|
||||
}
|
||||
}
|
||||
this.computeQualityResult(rollData)
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static computeQualityResult(rollData) {
|
||||
//console.log("Result : ", rollData)
|
||||
if (rollData.difficulte > 0 && !rollData.isDramatique) {
|
||||
rollData.isSuccess = (rollData.finalResult >= rollData.difficulte)
|
||||
@@ -517,7 +521,7 @@ export class MournbladeUtility {
|
||||
}
|
||||
|
||||
this.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData)
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-degats-result.html`, rollData)
|
||||
}, rollData)
|
||||
|
||||
}
|
||||
@@ -568,17 +572,17 @@ export class MournbladeUtility {
|
||||
|
||||
rollData.finalResult += rollData.bonusRoll.total
|
||||
|
||||
this.computeResult(rollData)
|
||||
this.computeQualityResult(rollData)
|
||||
|
||||
this.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-generic-result.html`, rollData)
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-generic-result.html`, rollData)
|
||||
}, rollData)
|
||||
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getUsers(filter) {
|
||||
return game.users.filter(filter).map(user => user.data._id);
|
||||
return game.users.filter(filter).map(user => user._id);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -766,7 +770,7 @@ export class MournbladeUtility {
|
||||
let rollData = message.getFlag("world", "mournblade-roll")
|
||||
let actor = MournbladeUtility.getActorFromRollData(rollData)
|
||||
if (rollData.competence) {
|
||||
let nbPred = rollData.competence.data.predilections.filter(pred => !pred.used).length
|
||||
let nbPred = rollData.competence.system.predilections.filter(pred => !pred.used).length
|
||||
return (!rollData.isReroll && rollData.competence && nbPred > 0)
|
||||
}
|
||||
return false
|
||||
@@ -776,7 +780,7 @@ export class MournbladeUtility {
|
||||
let rollData = message.getFlag("world", "mournblade-roll")
|
||||
let actor = MournbladeUtility.getActorFromRollData(rollData)
|
||||
if (rollData.competence) {
|
||||
return rollData.competence.data.doublebonus
|
||||
return rollData.competence.system.doublebonus
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000221
|
||||
MANIFEST-000252
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.404410 7fad8f7fe6c0 Recovering log #219
|
||||
2025/05/01-19:59:13.404447 7fad8f7fe6c0 Recovering log #231
|
||||
2025/05/01-19:59:13.456319 7fad8f7fe6c0 Delete type=0 #231
|
||||
2025/05/01-19:59:13.456390 7fad8f7fe6c0 Delete type=0 #219
|
||||
2025/05/01-19:59:13.456430 7fad8f7fe6c0 Delete type=3 #217
|
||||
2025/05/01-20:40:06.630698 7fad8effd6c0 Level-0 table #234: started
|
||||
2025/05/01-20:40:06.634192 7fad8effd6c0 Level-0 table #234: 14422 bytes OK
|
||||
2025/05/01-20:40:06.640500 7fad8effd6c0 Delete type=0 #232
|
||||
2025/05/01-20:40:06.664516 7fad8effd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.675130 7fad8effd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 239 : 1
|
||||
2025/05/01-20:40:06.675140 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.678758 7fad8effd6c0 Generated table #235@1: 48 keys, 14422 bytes
|
||||
2025/05/01-20:40:06.678804 7fad8effd6c0 Compacted 1@1 + 1@2 files => 14422 bytes
|
||||
2025/05/01-20:40:06.684949 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.685040 7fad8effd6c0 Delete type=2 #212
|
||||
2025/05/01-20:40:06.685158 7fad8effd6c0 Delete type=2 #234
|
||||
2025/05/01-20:40:06.711796 7fad8effd6c0 Manual compaction at level-1 from '!items!wv5EiePmPTpqFutt' @ 239 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.120901 7f05877fe6c0 Recovering log #250
|
||||
2025/10/26-14:50:15.130180 7f05877fe6c0 Delete type=3 #248
|
||||
2025/10/26-14:50:15.130233 7f05877fe6c0 Delete type=0 #250
|
||||
2025/10/26-15:08:10.384792 7f0586bff6c0 Level-0 table #255: started
|
||||
2025/10/26-15:08:10.384839 7f0586bff6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/10/26-15:08:10.416242 7f0586bff6c0 Delete type=0 #253
|
||||
2025/10/26-15:08:10.454714 7f0586bff6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.454760 7f0586bff6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:44.885743 7f7ed4e006c0 Recovering log #215
|
||||
2024/09/10-07:14:44.956966 7f7ed4e006c0 Delete type=3 #213
|
||||
2024/09/10-07:14:44.957144 7f7ed4e006c0 Delete type=0 #215
|
||||
2024/09/10-07:20:33.463210 7f7ecd6006c0 Level-0 table #220: started
|
||||
2024/09/10-07:20:33.463253 7f7ecd6006c0 Level-0 table #220: 0 bytes OK
|
||||
2024/09/10-07:20:33.501220 7f7ecd6006c0 Delete type=0 #218
|
||||
2024/09/10-07:20:33.538862 7f7ecd6006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.538937 7f7ecd6006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.111518 7fe806ffd6c0 Recovering log #246
|
||||
2025/10/26-11:41:45.121406 7fe806ffd6c0 Delete type=3 #244
|
||||
2025/10/26-11:41:45.121474 7fe806ffd6c0 Delete type=0 #246
|
||||
2025/10/26-11:42:27.673791 7fe804ff96c0 Level-0 table #251: started
|
||||
2025/10/26-11:42:27.673818 7fe804ff96c0 Level-0 table #251: 0 bytes OK
|
||||
2025/10/26-11:42:27.702748 7fe804ff96c0 Delete type=0 #249
|
||||
2025/10/26-11:42:27.787796 7fe804ff96c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.787822 7fe804ff96c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/armes/MANIFEST-000252
Normal file
BIN
packs/armes/MANIFEST-000252
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.580839 7fad8ffff6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.580868 7fad8ffff6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.634048 7fad8ffff6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.634180 7fad8ffff6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.634255 7fad8ffff6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.742304 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.745942 7fad8effd6c0 Level-0 table #233: 15890 bytes OK
|
||||
2025/05/01-20:40:06.753021 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753355 7fad8effd6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.785179 7fad8effd6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at '!items!zzz9JrtWjELdoAfK' @ 120 : 1
|
||||
2025/05/01-20:40:06.785187 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.788604 7fad8effd6c0 Generated table #234@1: 30 keys, 15890 bytes
|
||||
2025/05/01-20:40:06.788633 7fad8effd6c0 Compacted 1@1 + 1@2 files => 15890 bytes
|
||||
2025/05/01-20:40:06.794726 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.794865 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.794985 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795083 7fad8effd6c0 Manual compaction at level-1 from '!items!zzz9JrtWjELdoAfK' @ 120 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.155929 7f058d1fa6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.166060 7f058d1fa6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.166155 7f058d1fa6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.487803 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.487829 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.522320 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.602716 7f0586bff6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.602741 7f0586bff6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.086238 7f7ecf4006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.144857 7f7ecf4006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.145056 7f7ecf4006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.607105 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.607143 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.638955 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.678483 7f7ecd6006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.678561 7f7ecd6006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.148682 7fe8057fa6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.159005 7fe8057fa6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.159071 7fe8057fa6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.892214 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.892241 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.929964 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:27.930136 7fe804ff96c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.930151 7fe804ff96c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/dons/MANIFEST-000251
Normal file
BIN
packs/dons/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.522396 7fad94ff96c0 Recovering log #218
|
||||
2025/05/01-19:59:13.522423 7fad94ff96c0 Recovering log #230
|
||||
2025/05/01-19:59:13.578113 7fad94ff96c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.578220 7fad94ff96c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.578283 7fad94ff96c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.722073 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.725291 7fad8effd6c0 Level-0 table #233: 9727 bytes OK
|
||||
2025/05/01-20:40:06.731851 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753320 7fad8effd6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.763595 7fad8effd6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1
|
||||
2025/05/01-20:40:06.763602 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.767733 7fad8effd6c0 Generated table #234@1: 55 keys, 9727 bytes
|
||||
2025/05/01-20:40:06.767783 7fad8effd6c0 Compacted 1@1 + 1@2 files => 9727 bytes
|
||||
2025/05/01-20:40:06.773941 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.774135 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.774350 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795066 7fad8effd6c0 Manual compaction at level-1 from '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.144436 7f058c9f96c0 Recovering log #249
|
||||
2025/10/26-14:50:15.153602 7f058c9f96c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.153649 7f058c9f96c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.454949 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.454987 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.487668 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.602705 7f0586bff6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.602747 7f0586bff6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.020069 7f7ecfe006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.082360 7f7ecfe006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.082521 7f7ecfe006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.576805 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.576855 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.606927 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.678460 7f7ecd6006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.678542 7f7ecd6006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.136283 7fe805ffb6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.146508 7fe805ffb6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.146568 7fe805ffb6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.825311 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.825331 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.861104 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:27.930116 7fe804ff96c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.930158 7fe804ff96c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/equipement/MANIFEST-000251
Normal file
BIN
packs/equipement/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.692563 7fad8f7fe6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.692594 7fad8f7fe6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.751135 7fad8f7fe6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.751215 7fad8f7fe6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.751260 7fad8f7fe6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.795194 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.798717 7fad8effd6c0 Level-0 table #233: 6896 bytes OK
|
||||
2025/05/01-20:40:06.805344 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.836956 7fad8effd6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.837016 7fad8effd6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at '!items!ui4JGsGwHNlSXVK3' @ 40 : 1
|
||||
2025/05/01-20:40:06.837022 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.840346 7fad8effd6c0 Generated table #234@1: 10 keys, 6896 bytes
|
||||
2025/05/01-20:40:06.840376 7fad8effd6c0 Compacted 1@1 + 1@2 files => 6896 bytes
|
||||
2025/05/01-20:40:06.846429 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.846541 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.846672 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.878912 7fad8effd6c0 Manual compaction at level-1 from '!items!ui4JGsGwHNlSXVK3' @ 40 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.181568 7f058c9f96c0 Recovering log #249
|
||||
2025/10/26-14:50:15.191007 7f058c9f96c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.191066 7f058c9f96c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.602832 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.602852 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.640036 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.745288 7f0586bff6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.745338 7f0586bff6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.210943 7f7ecea006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.265940 7f7ecea006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.266060 7f7ecea006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.678752 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.678827 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.713480 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.816847 7f7ecd6006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.816952 7f7ecd6006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.176137 7fe8067fc6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.185849 7fe8067fc6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.185903 7fe8067fc6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.930250 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.930290 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.973763 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:28.072059 7fe804ff96c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.072094 7fe804ff96c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/heritages/MANIFEST-000251
Normal file
BIN
packs/heritages/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.753968 7fad94ff96c0 Recovering log #218
|
||||
2025/05/01-19:59:13.754006 7fad94ff96c0 Recovering log #230
|
||||
2025/05/01-19:59:13.815180 7fad94ff96c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.815253 7fad94ff96c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.815293 7fad94ff96c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.805500 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.809047 7fad8effd6c0 Level-0 table #233: 14917 bytes OK
|
||||
2025/05/01-20:40:06.815729 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.836975 7fad8effd6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.846758 7fad8effd6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at '!items!xlyFCQClBZ1N3O1B' @ 68 : 1
|
||||
2025/05/01-20:40:06.846768 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.850361 7fad8effd6c0 Generated table #234@1: 17 keys, 14917 bytes
|
||||
2025/05/01-20:40:06.850390 7fad8effd6c0 Compacted 1@1 + 1@2 files => 14917 bytes
|
||||
2025/05/01-20:40:06.856955 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.857113 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.857266 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.878923 7fad8effd6c0 Manual compaction at level-1 from '!items!xlyFCQClBZ1N3O1B' @ 68 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.193236 7f05877fe6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.203399 7f05877fe6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.203478 7f05877fe6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.673540 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.673570 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.707526 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.745317 7f0586bff6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.745369 7f0586bff6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.269926 7f7ecfe006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.328808 7f7ecfe006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.328977 7f7ecfe006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.783195 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.783241 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.816523 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.816931 7f7ecd6006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.817030 7f7ecd6006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.187994 7fe805ffb6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.197424 7fe805ffb6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.197491 7fe805ffb6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:28.037364 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:28.037390 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:28.071870 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:28.072089 7fe804ff96c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.072109 7fe804ff96c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/metiers/MANIFEST-000251
Normal file
BIN
packs/metiers/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.636438 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.636464 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.689669 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.689733 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.689767 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.732058 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.735754 7fad8effd6c0 Level-0 table #233: 9362 bytes OK
|
||||
2025/05/01-20:40:06.742187 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753338 7fad8effd6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.774492 7fad8effd6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at '!items!yBvkQb9S64s908sR' @ 80 : 1
|
||||
2025/05/01-20:40:06.774508 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.777817 7fad8effd6c0 Generated table #234@1: 20 keys, 9362 bytes
|
||||
2025/05/01-20:40:06.777855 7fad8effd6c0 Compacted 1@1 + 1@2 files => 9362 bytes
|
||||
2025/05/01-20:40:06.784851 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.784962 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.785089 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795076 7fad8effd6c0 Manual compaction at level-1 from '!items!yBvkQb9S64s908sR' @ 80 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.168305 7f0587fff6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.179364 7f0587fff6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.179461 7f0587fff6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.568627 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.568654 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.602585 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.602734 7f0586bff6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.602758 7f0586bff6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.148885 7f7ed4e006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.204991 7f7ed4e006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.205146 7f7ed4e006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.639140 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.639178 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.677964 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.678505 7f7ecd6006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.678580 7f7ecd6006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.161644 7fe806ffd6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.173890 7fe806ffd6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.173958 7fe806ffd6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.861203 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.861224 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.892080 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:27.930127 7fe804ff96c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.930166 7fe804ff96c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/origines/MANIFEST-000251
Normal file
BIN
packs/origines/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000116
|
||||
MANIFEST-000147
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.228260 7fad94ff96c0 Recovering log #114
|
||||
2025/05/01-19:59:13.228290 7fad94ff96c0 Recovering log #126
|
||||
2025/05/01-19:59:13.284461 7fad94ff96c0 Delete type=0 #126
|
||||
2025/05/01-19:59:13.284677 7fad94ff96c0 Delete type=0 #114
|
||||
2025/05/01-19:59:13.284774 7fad94ff96c0 Delete type=3 #112
|
||||
2025/05/01-20:40:06.640617 7fad8effd6c0 Level-0 table #129: started
|
||||
2025/05/01-20:40:06.647756 7fad8effd6c0 Level-0 table #129: 423653 bytes OK
|
||||
2025/05/01-20:40:06.654365 7fad8effd6c0 Delete type=0 #127
|
||||
2025/05/01-20:40:06.664527 7fad8effd6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.695911 7fad8effd6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 2765 : 1
|
||||
2025/05/01-20:40:06.695928 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.704206 7fad8effd6c0 Generated table #130@1: 694 keys, 424214 bytes
|
||||
2025/05/01-20:40:06.704245 7fad8effd6c0 Compacted 1@1 + 1@2 files => 424214 bytes
|
||||
2025/05/01-20:40:06.711236 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.711415 7fad8effd6c0 Delete type=2 #107
|
||||
2025/05/01-20:40:06.711670 7fad8effd6c0 Delete type=2 #129
|
||||
2025/05/01-20:40:06.711825 7fad8effd6c0 Manual compaction at level-1 from '!actors.items!vwUVYPpU0V6bEDLa.t692JcsGHG4YJIlM' @ 2765 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.081856 7f058d1fa6c0 Recovering log #145
|
||||
2025/10/26-14:50:15.091189 7f058d1fa6c0 Delete type=3 #143
|
||||
2025/10/26-14:50:15.091260 7f058d1fa6c0 Delete type=0 #145
|
||||
2025/10/26-15:08:10.330087 7f0586bff6c0 Level-0 table #150: started
|
||||
2025/10/26-15:08:10.330119 7f0586bff6c0 Level-0 table #150: 0 bytes OK
|
||||
2025/10/26-15:08:10.384550 7f0586bff6c0 Delete type=0 #148
|
||||
2025/10/26-15:08:10.454697 7f0586bff6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.454752 7f0586bff6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:44.657561 7f7ecf4006c0 Recovering log #110
|
||||
2024/09/10-07:14:44.756808 7f7ecf4006c0 Delete type=3 #108
|
||||
2024/09/10-07:14:44.756963 7f7ecf4006c0 Delete type=0 #110
|
||||
2024/09/10-07:20:33.399722 7f7ecd6006c0 Level-0 table #115: started
|
||||
2024/09/10-07:20:33.399823 7f7ecd6006c0 Level-0 table #115: 0 bytes OK
|
||||
2024/09/10-07:20:33.426020 7f7ecd6006c0 Delete type=0 #113
|
||||
2024/09/10-07:20:33.538803 7f7ecd6006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.538898 7f7ecd6006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.070943 7fe805ffb6c0 Recovering log #141
|
||||
2025/10/26-11:41:45.080807 7fe805ffb6c0 Delete type=3 #139
|
||||
2025/10/26-11:41:45.080890 7fe805ffb6c0 Delete type=0 #141
|
||||
2025/10/26-11:42:27.702876 7fe804ff96c0 Level-0 table #146: started
|
||||
2025/10/26-11:42:27.702902 7fe804ff96c0 Level-0 table #146: 0 bytes OK
|
||||
2025/10/26-11:42:27.753550 7fe804ff96c0 Delete type=0 #144
|
||||
2025/10/26-11:42:27.787805 7fe804ff96c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.787855 7fe804ff96c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/pnj-creatures/MANIFEST-000147
Normal file
BIN
packs/pnj-creatures/MANIFEST-000147
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.459137 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.459172 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.519467 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.519571 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.519639 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.711943 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.715460 7fad8effd6c0 Level-0 table #233: 2866 bytes OK
|
||||
2025/05/01-20:40:06.721938 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.753295 7fad8effd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.753377 7fad8effd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at '!items!veoS6Gtzj6Dq087V' @ 28 : 1
|
||||
2025/05/01-20:40:06.753389 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.756847 7fad8effd6c0 Generated table #234@1: 7 keys, 2866 bytes
|
||||
2025/05/01-20:40:06.756890 7fad8effd6c0 Compacted 1@1 + 1@2 files => 2866 bytes
|
||||
2025/05/01-20:40:06.763265 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.763390 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.763517 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.795056 7fad8effd6c0 Manual compaction at level-1 from '!items!veoS6Gtzj6Dq087V' @ 28 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.132108 7f0587fff6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.142449 7f0587fff6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.142515 7f0587fff6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.522538 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.522578 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.568481 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.602726 7f0586bff6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.602753 7f0586bff6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:44.961549 7f7ecea006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.016222 7f7ecea006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.016606 7f7ecea006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.539100 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.539159 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.576585 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.678420 7f7ecd6006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.678524 7f7ecd6006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.124122 7fe8067fc6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.133716 7fe8067fc6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.133787 7fe8067fc6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.787934 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.787973 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.825203 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:27.930104 7fe804ff96c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.930143 7fe804ff96c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/protection/MANIFEST-000251
Normal file
BIN
packs/protection/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.951217 7fad8f7fe6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.951252 7fad8f7fe6c0 Recovering log #230
|
||||
2025/05/01-19:59:14.010531 7fad8f7fe6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:14.010644 7fad8f7fe6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:14.010710 7fad8f7fe6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.879005 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.882368 7fad8effd6c0 Level-0 table #233: 33708 bytes OK
|
||||
2025/05/01-20:40:06.889400 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.920445 7fad8effd6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.920540 7fad8effd6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at '!items!xnCf2xIPzdsUoBTy' @ 180 : 1
|
||||
2025/05/01-20:40:06.920554 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.924361 7fad8effd6c0 Generated table #234@1: 45 keys, 33708 bytes
|
||||
2025/05/01-20:40:06.924378 7fad8effd6c0 Compacted 1@1 + 1@2 files => 33708 bytes
|
||||
2025/05/01-20:40:06.930331 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.930441 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.930542 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.957681 7fad8effd6c0 Manual compaction at level-1 from '!items!xnCf2xIPzdsUoBTy' @ 180 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.230526 7f05877fe6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.241041 7f05877fe6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.241111 7f05877fe6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.745454 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.745494 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.782322 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:11.083498 7f0586bff6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:11.083560 7f0586bff6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.464393 7f7ecea006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.568041 7f7ecea006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.568192 7f7ecea006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.817119 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.817259 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.853842 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.990487 7f7ecd6006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.990597 7f7ecd6006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.225695 7fe8067fc6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.235658 7fe8067fc6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.235707 7fe8067fc6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:28.072182 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:28.072214 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:28.104478 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:28.247156 7fe804ff96c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.247188 7fe804ff96c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/runes/MANIFEST-000251
Normal file
BIN
packs/runes/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000136
|
||||
MANIFEST-000167
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:14.070146 7fad94ff96c0 Recovering log #134
|
||||
2025/05/01-19:59:14.070195 7fad94ff96c0 Recovering log #146
|
||||
2025/05/01-19:59:14.130070 7fad94ff96c0 Delete type=0 #146
|
||||
2025/05/01-19:59:14.130135 7fad94ff96c0 Delete type=0 #134
|
||||
2025/05/01-19:59:14.130165 7fad94ff96c0 Delete type=3 #132
|
||||
2025/05/01-20:40:06.899798 7fad8effd6c0 Level-0 table #149: started
|
||||
2025/05/01-20:40:06.903123 7fad8effd6c0 Level-0 table #149: 1383 bytes OK
|
||||
2025/05/01-20:40:06.909413 7fad8effd6c0 Delete type=0 #147
|
||||
2025/05/01-20:40:06.920493 7fad8effd6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.930617 7fad8effd6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1
|
||||
2025/05/01-20:40:06.930624 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.934015 7fad8effd6c0 Generated table #150@1: 1 keys, 1383 bytes
|
||||
2025/05/01-20:40:06.934056 7fad8effd6c0 Compacted 1@1 + 1@2 files => 1383 bytes
|
||||
2025/05/01-20:40:06.940412 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.940518 7fad8effd6c0 Delete type=2 #127
|
||||
2025/05/01-20:40:06.940625 7fad8effd6c0 Delete type=2 #149
|
||||
2025/05/01-20:40:06.957696 7fad8effd6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.255749 7f058c9f96c0 Recovering log #165
|
||||
2025/10/26-14:50:15.265660 7f058c9f96c0 Delete type=3 #163
|
||||
2025/10/26-14:50:15.265724 7f058c9f96c0 Delete type=0 #165
|
||||
2025/10/26-15:08:10.825282 7f0586bff6c0 Level-0 table #170: started
|
||||
2025/10/26-15:08:10.825313 7f0586bff6c0 Level-0 table #170: 0 bytes OK
|
||||
2025/10/26-15:08:10.865174 7f0586bff6c0 Delete type=0 #168
|
||||
2025/10/26-15:08:11.083541 7f0586bff6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:11.083576 7f0586bff6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.696006 7f7ecf4006c0 Recovering log #130
|
||||
2024/09/10-07:14:45.752701 7f7ecf4006c0 Delete type=3 #128
|
||||
2024/09/10-07:14:45.752833 7f7ecf4006c0 Delete type=0 #130
|
||||
2024/09/10-07:20:33.897005 7f7ecd6006c0 Level-0 table #135: started
|
||||
2024/09/10-07:20:33.897068 7f7ecd6006c0 Level-0 table #135: 0 bytes OK
|
||||
2024/09/10-07:20:33.928636 7f7ecd6006c0 Delete type=0 #133
|
||||
2024/09/10-07:20:33.990553 7f7ecd6006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.990640 7f7ecd6006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.249582 7fe806ffd6c0 Recovering log #161
|
||||
2025/10/26-11:41:45.260045 7fe806ffd6c0 Delete type=3 #159
|
||||
2025/10/26-11:41:45.260109 7fe806ffd6c0 Delete type=0 #161
|
||||
2025/10/26-11:42:28.149249 7fe804ff96c0 Level-0 table #166: started
|
||||
2025/10/26-11:42:28.149276 7fe804ff96c0 Level-0 table #166: 0 bytes OK
|
||||
2025/10/26-11:42:28.191573 7fe804ff96c0 Delete type=0 #164
|
||||
2025/10/26-11:42:28.247179 7fe804ff96c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.247203 7fe804ff96c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/scenes/MANIFEST-000167
Normal file
BIN
packs/scenes/MANIFEST-000167
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000128
|
||||
MANIFEST-000159
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.347156 7fad94ff96c0 Recovering log #126
|
||||
2025/05/01-19:59:13.347201 7fad94ff96c0 Recovering log #138
|
||||
2025/05/01-19:59:13.401747 7fad94ff96c0 Delete type=0 #138
|
||||
2025/05/01-19:59:13.401806 7fad94ff96c0 Delete type=0 #126
|
||||
2025/05/01-19:59:13.401834 7fad94ff96c0 Delete type=3 #124
|
||||
2025/05/01-20:40:06.654688 7fad8effd6c0 Level-0 table #141: started
|
||||
2025/05/01-20:40:06.657896 7fad8effd6c0 Level-0 table #141: 3853 bytes OK
|
||||
2025/05/01-20:40:06.664323 7fad8effd6c0 Delete type=0 #139
|
||||
2025/05/01-20:40:06.664536 7fad8effd6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.685220 7fad8effd6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at '!items!t692JcsGHG4YJIlM' @ 41 : 1
|
||||
2025/05/01-20:40:06.685228 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.688496 7fad8effd6c0 Generated table #142@1: 8 keys, 3853 bytes
|
||||
2025/05/01-20:40:06.688531 7fad8effd6c0 Compacted 1@1 + 1@2 files => 3853 bytes
|
||||
2025/05/01-20:40:06.695431 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.695565 7fad8effd6c0 Delete type=2 #119
|
||||
2025/05/01-20:40:06.695762 7fad8effd6c0 Delete type=2 #141
|
||||
2025/05/01-20:40:06.711805 7fad8effd6c0 Manual compaction at level-1 from '!items!t692JcsGHG4YJIlM' @ 41 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.108376 7f058d1fa6c0 Recovering log #157
|
||||
2025/10/26-14:50:15.119062 7f058d1fa6c0 Delete type=3 #155
|
||||
2025/10/26-14:50:15.119113 7f058d1fa6c0 Delete type=0 #157
|
||||
2025/10/26-15:08:10.416400 7f0586bff6c0 Level-0 table #162: started
|
||||
2025/10/26-15:08:10.416472 7f0586bff6c0 Level-0 table #162: 0 bytes OK
|
||||
2025/10/26-15:08:10.454511 7f0586bff6c0 Delete type=0 #160
|
||||
2025/10/26-15:08:10.454733 7f0586bff6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.454768 7f0586bff6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:44.824622 7f7ecf4006c0 Recovering log #122
|
||||
2024/09/10-07:14:44.881625 7f7ecf4006c0 Delete type=3 #120
|
||||
2024/09/10-07:14:44.881742 7f7ecf4006c0 Delete type=0 #122
|
||||
2024/09/10-07:20:33.426241 7f7ecd6006c0 Level-0 table #127: started
|
||||
2024/09/10-07:20:33.426287 7f7ecd6006c0 Level-0 table #127: 0 bytes OK
|
||||
2024/09/10-07:20:33.462927 7f7ecd6006c0 Delete type=0 #125
|
||||
2024/09/10-07:20:33.538838 7f7ecd6006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.538919 7f7ecd6006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.099332 7fe805ffb6c0 Recovering log #153
|
||||
2025/10/26-11:41:45.109444 7fe805ffb6c0 Delete type=3 #151
|
||||
2025/10/26-11:41:45.109506 7fe805ffb6c0 Delete type=0 #153
|
||||
2025/10/26-11:42:27.753656 7fe804ff96c0 Level-0 table #158: started
|
||||
2025/10/26-11:42:27.753677 7fe804ff96c0 Level-0 table #158: 0 bytes OK
|
||||
2025/10/26-11:42:27.787654 7fe804ff96c0 Delete type=0 #156
|
||||
2025/10/26-11:42:27.787815 7fe804ff96c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.787846 7fe804ff96c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/skills-creatures/MANIFEST-000159
Normal file
BIN
packs/skills-creatures/MANIFEST-000159
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.290979 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.291005 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.344860 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.344936 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.344980 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.620602 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.624373 7fad8effd6c0 Level-0 table #233: 8044 bytes OK
|
||||
2025/05/01-20:40:06.630551 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.664499 7fad8effd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.664555 7fad8effd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at '!items!tq6mEgXog7h4VyWk' @ 60 : 1
|
||||
2025/05/01-20:40:06.664563 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.668268 7fad8effd6c0 Generated table #234@1: 15 keys, 8044 bytes
|
||||
2025/05/01-20:40:06.668319 7fad8effd6c0 Compacted 1@1 + 1@2 files => 8044 bytes
|
||||
2025/05/01-20:40:06.674562 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.674814 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.675036 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.711783 7fad8effd6c0 Manual compaction at level-1 from '!items!tq6mEgXog7h4VyWk' @ 60 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.096588 7f0587fff6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.106445 7f0587fff6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.106513 7f0587fff6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.292138 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.292174 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.329965 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.454670 7f0586bff6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.454743 7f0586bff6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:44.767296 7f7ecfe006c0 Recovering log #214
|
||||
2024/09/10-07:14:44.820594 7f7ecfe006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:44.820691 7f7ecfe006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.501559 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.501629 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.538595 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.538881 7f7ecd6006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.538953 7f7ecd6006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.087054 7fe8057fa6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.096462 7fe8057fa6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.096531 7fe8057fa6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.642768 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.642814 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:27.673653 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:27.787783 7fe804ff96c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:27.787829 7fe804ff96c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/skills/MANIFEST-000251
Normal file
BIN
packs/skills/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:14.013667 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:14.013702 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:14.066307 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:14.066374 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:14.066412 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.909515 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.912752 7fad8effd6c0 Level-0 table #233: 4017 bytes OK
|
||||
2025/05/01-20:40:06.920147 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.920512 7fad8effd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.940688 7fad8effd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 83 : 1
|
||||
2025/05/01-20:40:06.940695 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.943905 7fad8effd6c0 Generated table #234@1: 21 keys, 4017 bytes
|
||||
2025/05/01-20:40:06.943922 7fad8effd6c0 Compacted 1@1 + 1@2 files => 4017 bytes
|
||||
2025/05/01-20:40:06.950519 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.950654 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.950823 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.957710 7fad8effd6c0 Manual compaction at level-1 from '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 83 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.243532 7f0587fff6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.253234 7f0587fff6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.253303 7f0587fff6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.782520 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.782557 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.825135 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:11.083526 7f0586bff6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:11.083568 7f0586bff6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.572627 7f7ecfe006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.691412 7f7ecfe006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.691558 7f7ecfe006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.854042 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.854090 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.896744 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.990529 7f7ecd6006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.990619 7f7ecd6006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.237931 7fe8057fa6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.247355 7fe8057fa6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.247401 7fe8057fa6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:28.104671 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:28.104706 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:28.149121 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:28.247169 7fe804ff96c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.247212 7fe804ff96c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/tables/MANIFEST-000251
Normal file
BIN
packs/tables/MANIFEST-000251
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000251
|
||||
|
||||
@@ -1,17 +1,8 @@
|
||||
2025/05/01-19:59:13.818474 7fad957fa6c0 Recovering log #218
|
||||
2025/05/01-19:59:13.818519 7fad957fa6c0 Recovering log #230
|
||||
2025/05/01-19:59:13.880653 7fad957fa6c0 Delete type=0 #230
|
||||
2025/05/01-19:59:13.880732 7fad957fa6c0 Delete type=0 #218
|
||||
2025/05/01-19:59:13.880769 7fad957fa6c0 Delete type=3 #216
|
||||
2025/05/01-20:40:06.815894 7fad8effd6c0 Level-0 table #233: started
|
||||
2025/05/01-20:40:06.819958 7fad8effd6c0 Level-0 table #233: 26369 bytes OK
|
||||
2025/05/01-20:40:06.826063 7fad8effd6c0 Delete type=0 #231
|
||||
2025/05/01-20:40:06.836988 7fad8effd6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2025/05/01-20:40:06.857363 7fad8effd6c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at '!items!zhPPsmTtLv7cyNHJ' @ 220 : 1
|
||||
2025/05/01-20:40:06.857373 7fad8effd6c0 Compacting 1@1 + 1@2 files
|
||||
2025/05/01-20:40:06.860997 7fad8effd6c0 Generated table #234@1: 55 keys, 26369 bytes
|
||||
2025/05/01-20:40:06.861035 7fad8effd6c0 Compacted 1@1 + 1@2 files => 26369 bytes
|
||||
2025/05/01-20:40:06.868146 7fad8effd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/05/01-20:40:06.868306 7fad8effd6c0 Delete type=2 #211
|
||||
2025/05/01-20:40:06.868500 7fad8effd6c0 Delete type=2 #233
|
||||
2025/05/01-20:40:06.878932 7fad8effd6c0 Manual compaction at level-1 from '!items!zhPPsmTtLv7cyNHJ' @ 220 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-14:50:15.205534 7f058d1fa6c0 Recovering log #249
|
||||
2025/10/26-14:50:15.215598 7f058d1fa6c0 Delete type=3 #247
|
||||
2025/10/26-14:50:15.215667 7f058d1fa6c0 Delete type=0 #249
|
||||
2025/10/26-15:08:10.707665 7f0586bff6c0 Level-0 table #254: started
|
||||
2025/10/26-15:08:10.707694 7f0586bff6c0 Level-0 table #254: 0 bytes OK
|
||||
2025/10/26-15:08:10.745151 7f0586bff6c0 Delete type=0 #252
|
||||
2025/10/26-15:08:10.745328 7f0586bff6c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-15:08:10.745358 7f0586bff6c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2024/09/10-07:14:45.332204 7f7ecf4006c0 Recovering log #214
|
||||
2024/09/10-07:14:45.389900 7f7ecf4006c0 Delete type=3 #212
|
||||
2024/09/10-07:14:45.389996 7f7ecf4006c0 Delete type=0 #214
|
||||
2024/09/10-07:20:33.746048 7f7ecd6006c0 Level-0 table #219: started
|
||||
2024/09/10-07:20:33.746107 7f7ecd6006c0 Level-0 table #219: 0 bytes OK
|
||||
2024/09/10-07:20:33.782964 7f7ecd6006c0 Delete type=0 #217
|
||||
2024/09/10-07:20:33.816907 7f7ecd6006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2024/09/10-07:20:33.817001 7f7ecd6006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:41:45.199415 7fe8057fa6c0 Recovering log #245
|
||||
2025/10/26-11:41:45.209499 7fe8057fa6c0 Delete type=3 #243
|
||||
2025/10/26-11:41:45.209546 7fe8057fa6c0 Delete type=0 #245
|
||||
2025/10/26-11:42:27.973888 7fe804ff96c0 Level-0 table #250: started
|
||||
2025/10/26-11:42:27.973910 7fe804ff96c0 Level-0 table #250: 0 bytes OK
|
||||
2025/10/26-11:42:28.002300 7fe804ff96c0 Delete type=0 #248
|
||||
2025/10/26-11:42:28.072072 7fe804ff96c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
2025/10/26-11:42:28.072099 7fe804ff96c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user