Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1a321ed002 | |||
| d4c8a20d53 | |||
| 6cedcea74c |
@@ -60,4 +60,4 @@ jobs:
|
||||
manifest: 'https://www.uberwald.me/gitea/public/fvtt-wasteland/releases/download/latest/system.json'
|
||||
notes: 'https://www.uberwald.me/gitea/${{gitea.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-wasteland.zip'
|
||||
compatibility-minimum: '13'
|
||||
compatibility-verified: '13'
|
||||
compatibility-verified: '14'
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
.history/
|
||||
node_modules
|
||||
.github/
|
||||
|
||||
@@ -148,6 +148,21 @@
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.dice-value.d20-impair {
|
||||
text-decoration: line-through;
|
||||
color: #c46b4e;
|
||||
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
.dice-odd-label {
|
||||
font-size: 0.7rem;
|
||||
color: #c46b4e;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
.total-label,
|
||||
.difficulty-label {
|
||||
font-size: 0.75rem;
|
||||
|
||||
@@ -207,10 +207,6 @@ export class WastelandActor extends Actor {
|
||||
return combat
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareBaseData() {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async prepareData() {
|
||||
super.prepareData();
|
||||
@@ -220,14 +216,8 @@ export class WastelandActor extends Actor {
|
||||
prepareDerivedData() {
|
||||
|
||||
if (this.type == 'personnage') {
|
||||
let newSante = this.system.sante.bonus + (this.system.attributs.pui.value + this.system.attributs.tre.value) * 2 + 5
|
||||
if (this.system.sante.base != newSante) {
|
||||
this.update({ 'system.sante.base': newSante })
|
||||
}
|
||||
let newPsyche = ((this.system.attributs.cla.value + this.system.attributs.tre.value) * 2) + 5
|
||||
if (this.system.psyche.fullmax != newPsyche) {
|
||||
this.update({ 'system.psyche.fullmax': newPsyche })
|
||||
}
|
||||
this.system.sante.base = this.system.sante.bonus + (this.system.attributs.pui.value + this.system.attributs.tre.value) * 2 + 5
|
||||
this.system.psyche.fullmax = ((this.system.attributs.cla.value + this.system.attributs.tre.value) * 2) + 5
|
||||
}
|
||||
|
||||
super.prepareDerivedData()
|
||||
|
||||
@@ -89,7 +89,7 @@ export class WastelandCommands {
|
||||
if (command && command.func) {
|
||||
const result = command.func(content, msg, params);
|
||||
if (result == false) {
|
||||
RdDCommands._chatAnswer(msg, command.descr);
|
||||
WastelandCommands._chatAnswer(msg, command.descr);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -180,14 +180,14 @@ Hooks.once("ready", function () {
|
||||
ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !");
|
||||
ChatMessage.create({
|
||||
content: "<b>ATTENTION</b> Le joueur " + game.user.name + " n'est relié à aucun personnage !",
|
||||
user: game.user._id
|
||||
user: game.user.id
|
||||
});
|
||||
}
|
||||
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
|
||||
ui.notifications.info("Le token de du joueur n'est pas connecté à l'acteur !");
|
||||
ChatMessage.create({
|
||||
content: "<b>ATTENTION</b> Le token du joueur " + game.user.name + " n'est pas connecté à l'acteur !",
|
||||
user: game.user._id
|
||||
user: game.user.id
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -358,6 +358,7 @@ export class WastelandUtility {
|
||||
//console.log("PAIR/IMP", diceValue)
|
||||
if (diceValue % 2 == 1) {
|
||||
//console.log("PAIR/IMP2", diceValue)
|
||||
rollData.d20IsOdd = true
|
||||
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
||||
if (diceValue == 1 || diceValue == 11) {
|
||||
rollData.isDramatique = true
|
||||
@@ -616,7 +617,7 @@ export class WastelandUtility {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getUsers(filter) {
|
||||
return game.users.filter(filter).map(user => user.data._id);
|
||||
return game.users.filter(filter).map(user => user.id);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -891,7 +892,7 @@ export class WastelandUtility {
|
||||
let message = game.messages.get($(li).attr("data-message-id"))
|
||||
let rollData = message.getFlag("world", "wasteland-roll")
|
||||
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
|
||||
@@ -900,7 +901,7 @@ export class WastelandUtility {
|
||||
let message = game.messages.get($(li).attr("data-message-id"))
|
||||
let rollData = message.getFlag("world", "wasteland-roll")
|
||||
if (rollData.competence) {
|
||||
return rollData.competence.data.doublebonus
|
||||
return rollData.competence.system.doublebonus
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000230
|
||||
MANIFEST-000238
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.033303 7f1e21bfd6c0 Recovering log #228
|
||||
2026/02/18-00:51:52.044109 7f1e21bfd6c0 Delete type=3 #226
|
||||
2026/02/18-00:51:52.044180 7f1e21bfd6c0 Delete type=0 #228
|
||||
2026/02/18-00:52:03.900849 7f1e20bfb6c0 Level-0 table #233: started
|
||||
2026/02/18-00:52:03.900902 7f1e20bfb6c0 Level-0 table #233: 0 bytes OK
|
||||
2026/02/18-00:52:03.906783 7f1e20bfb6c0 Delete type=0 #231
|
||||
2026/02/18-00:52:03.926523 7f1e20bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.926616 7f1e20bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.971288 7fc4ea7ed6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.166480 7fc4e8fea6c0 Level-0 table #241: started
|
||||
2026/04/01-22:34:44.166532 7fc4e8fea6c0 Level-0 table #241: 0 bytes OK
|
||||
2026/04/01-22:34:44.172558 7fc4e8fea6c0 Delete type=0 #239
|
||||
2026/04/01-22:34:44.192943 7fc4e8fea6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 198 : 1
|
||||
2026/04/01-22:34:44.192953 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.196665 7fc4e8fea6c0 Generated table #242@0: 40 keys, 9139 bytes
|
||||
2026/04/01-22:34:44.196681 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 9139 bytes
|
||||
2026/04/01-22:34:44.203563 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.203641 7fc4e8fea6c0 Delete type=2 #211
|
||||
2026/04/01-22:34:44.234315 7fc4e8fea6c0 Manual compaction at level-0 from '!items!wv5EiePmPTpqFutt' @ 198 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.692705 7f1e223fe6c0 Recovering log #225
|
||||
2026/02/18-00:45:51.702470 7f1e223fe6c0 Delete type=0 #225
|
||||
2026/02/18-00:45:51.702541 7f1e223fe6c0 Delete type=3 #224
|
||||
2026/02/18-00:51:48.535320 7f1e20bfb6c0 Level-0 table #229: started
|
||||
2026/02/18-00:51:48.535355 7f1e20bfb6c0 Level-0 table #229: 0 bytes OK
|
||||
2026/02/18-00:51:48.541340 7f1e20bfb6c0 Delete type=0 #227
|
||||
2026/02/18-00:51:48.560432 7f1e20bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.560488 7f1e20bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.953782 7fc4ea7ed6c0 Log #236: 0 ops saved to Table #237 OK
|
||||
2026/04/01-22:32:01.953886 7fc4ea7ed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/armes/000236.log: OK
|
||||
2026/04/01-22:32:01.954864 7fc4ea7ed6c0 Table #211: 40 entries OK
|
||||
2026/04/01-22:32:01.958095 7fc4ea7ed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/armes; recovered 1 files; 9139 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/armes/MANIFEST-000238
Normal file
BIN
packs/armes/MANIFEST-000238
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000091
|
||||
MANIFEST-000099
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.080874 7f1e213fc6c0 Recovering log #89
|
||||
2026/02/18-00:51:52.097912 7f1e213fc6c0 Delete type=3 #87
|
||||
2026/02/18-00:51:52.097970 7f1e213fc6c0 Delete type=0 #89
|
||||
2026/02/18-00:52:03.914148 7f1e20bfb6c0 Level-0 table #94: started
|
||||
2026/02/18-00:52:03.914175 7f1e20bfb6c0 Level-0 table #94: 0 bytes OK
|
||||
2026/02/18-00:52:03.920050 7f1e20bfb6c0 Delete type=0 #92
|
||||
2026/02/18-00:52:03.926552 7f1e20bfb6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.926597 7f1e20bfb6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.037544 7fc4ea7ed6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.172669 7fc4e8fea6c0 Level-0 table #102: started
|
||||
2026/04/01-22:34:44.172695 7fc4e8fea6c0 Level-0 table #102: 0 bytes OK
|
||||
2026/04/01-22:34:44.179128 7fc4e8fea6c0 Delete type=0 #100
|
||||
2026/04/01-22:34:44.203759 7fc4e8fea6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at '!items!irEA0eyE731viEYl' @ 8 : 1
|
||||
2026/04/01-22:34:44.203770 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.206914 7fc4e8fea6c0 Generated table #103@0: 2 keys, 1326 bytes
|
||||
2026/04/01-22:34:44.206939 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 1326 bytes
|
||||
2026/04/01-22:34:44.213303 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.213408 7fc4e8fea6c0 Delete type=2 #72
|
||||
2026/04/01-22:34:44.234329 7fc4e8fea6c0 Manual compaction at level-0 from '!items!irEA0eyE731viEYl' @ 8 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.742941 7f1e21bfd6c0 Recovering log #86
|
||||
2026/02/18-00:45:51.752527 7f1e21bfd6c0 Delete type=0 #86
|
||||
2026/02/18-00:45:51.752599 7f1e21bfd6c0 Delete type=3 #85
|
||||
2026/02/18-00:51:48.547746 7f1e20bfb6c0 Level-0 table #90: started
|
||||
2026/02/18-00:51:48.547773 7f1e20bfb6c0 Level-0 table #90: 0 bytes OK
|
||||
2026/02/18-00:51:48.554118 7f1e20bfb6c0 Delete type=0 #88
|
||||
2026/02/18-00:51:48.560468 7f1e20bfb6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.560514 7f1e20bfb6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.022085 7fc4ea7ed6c0 Log #97: 0 ops saved to Table #98 OK
|
||||
2026/04/01-22:32:02.022192 7fc4ea7ed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/artifex/000097.log: OK
|
||||
2026/04/01-22:32:02.022259 7fc4ea7ed6c0 Table #72: 2 entries OK
|
||||
2026/04/01-22:32:02.025413 7fc4ea7ed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/artifex; recovered 1 files; 1326 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/artifex/MANIFEST-000099
Normal file
BIN
packs/artifex/MANIFEST-000099
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/bestiaire/000115.ldb
Normal file
BIN
packs/bestiaire/000115.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000103
|
||||
MANIFEST-000111
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
2026/02/18-00:51:51.931394 7f1e22bff6c0 Recovering log #101
|
||||
2026/02/18-00:51:51.940976 7f1e22bff6c0 Delete type=3 #99
|
||||
2026/02/18-00:51:51.941042 7f1e22bff6c0 Delete type=0 #101
|
||||
2026/02/18-00:52:03.862637 7f1e20bfb6c0 Level-0 table #106: started
|
||||
2026/02/18-00:52:03.862666 7f1e20bfb6c0 Level-0 table #106: 0 bytes OK
|
||||
2026/02/18-00:52:03.869563 7f1e20bfb6c0 Delete type=0 #104
|
||||
2026/02/18-00:52:03.875964 7f1e20bfb6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.876001 7f1e20bfb6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.786123 7fc4e9fec6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.034216 7fc4e8fea6c0 Level-0 table #114: started
|
||||
2026/04/01-22:34:44.038304 7fc4e8fea6c0 Level-0 table #114: 44978 bytes OK
|
||||
2026/04/01-22:34:44.045230 7fc4e8fea6c0 Delete type=0 #112
|
||||
2026/04/01-22:34:44.075503 7fc4e8fea6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at '!folders!BHMWTRHF2lNlAK8u' @ 1 : 1
|
||||
2026/04/01-22:34:44.075516 7fc4e8fea6c0 Compacting 2@0 + 0@1 files
|
||||
2026/04/01-22:34:44.079337 7fc4e8fea6c0 Generated table #115@0: 54 keys, 45137 bytes
|
||||
2026/04/01-22:34:44.079359 7fc4e8fea6c0 Compacted 2@0 + 0@1 files => 45137 bytes
|
||||
2026/04/01-22:34:44.085537 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.085611 7fc4e8fea6c0 Delete type=2 #84
|
||||
2026/04/01-22:34:44.085732 7fc4e8fea6c0 Delete type=2 #114
|
||||
2026/04/01-22:34:44.097678 7fc4e8fea6c0 Manual compaction at level-0 from '!folders!BHMWTRHF2lNlAK8u' @ 1 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.589381 7f1e21bfd6c0 Recovering log #98
|
||||
2026/02/18-00:45:51.599044 7f1e21bfd6c0 Delete type=0 #98
|
||||
2026/02/18-00:45:51.599114 7f1e21bfd6c0 Delete type=3 #97
|
||||
2026/02/18-00:51:48.481835 7f1e20bfb6c0 Level-0 table #102: started
|
||||
2026/02/18-00:51:48.481875 7f1e20bfb6c0 Level-0 table #102: 0 bytes OK
|
||||
2026/02/18-00:51:48.488437 7f1e20bfb6c0 Delete type=0 #100
|
||||
2026/02/18-00:51:48.508271 7f1e20bfb6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.508311 7f1e20bfb6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.701784 7fc4e9fec6c0 Log #109: 0 ops saved to Table #110 OK
|
||||
2026/04/01-22:32:01.701878 7fc4e9fec6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/bestiaire/000109.log: OK
|
||||
2026/04/01-22:32:01.703164 7fc4e9fec6c0 Table #84: 54 entries OK
|
||||
2026/04/01-22:32:01.706881 7fc4e9fec6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/bestiaire; recovered 1 files; 45104 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/bestiaire/MANIFEST-000111
Normal file
BIN
packs/bestiaire/MANIFEST-000111
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000091
|
||||
MANIFEST-000099
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.099846 7f1e22bff6c0 Recovering log #89
|
||||
2026/02/18-00:51:52.110702 7f1e22bff6c0 Delete type=3 #87
|
||||
2026/02/18-00:51:52.110782 7f1e22bff6c0 Delete type=0 #89
|
||||
2026/02/18-00:52:03.926735 7f1e20bfb6c0 Level-0 table #94: started
|
||||
2026/02/18-00:52:03.926776 7f1e20bfb6c0 Level-0 table #94: 0 bytes OK
|
||||
2026/02/18-00:52:03.933882 7f1e20bfb6c0 Delete type=0 #92
|
||||
2026/02/18-00:52:03.954252 7f1e20bfb6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.954308 7f1e20bfb6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.056974 7fc4ea7ed6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.234443 7fc4e8fea6c0 Level-0 table #102: started
|
||||
2026/04/01-22:34:44.234483 7fc4e8fea6c0 Level-0 table #102: 0 bytes OK
|
||||
2026/04/01-22:34:44.240634 7fc4e8fea6c0 Delete type=0 #100
|
||||
2026/04/01-22:34:44.260917 7fc4e8fea6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at '!items!LaiHuZ30K4iJr6ce' @ 8 : 1
|
||||
2026/04/01-22:34:44.260928 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.264476 7fc4e8fea6c0 Generated table #103@0: 2 keys, 901 bytes
|
||||
2026/04/01-22:34:44.264489 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 901 bytes
|
||||
2026/04/01-22:34:44.270473 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.270522 7fc4e8fea6c0 Delete type=2 #72
|
||||
2026/04/01-22:34:44.300848 7fc4e8fea6c0 Manual compaction at level-0 from '!items!LaiHuZ30K4iJr6ce' @ 8 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.754625 7f1e223fe6c0 Recovering log #86
|
||||
2026/02/18-00:45:51.764609 7f1e223fe6c0 Delete type=0 #86
|
||||
2026/02/18-00:45:51.764677 7f1e223fe6c0 Delete type=3 #85
|
||||
2026/02/18-00:51:48.566916 7f1e20bfb6c0 Level-0 table #90: started
|
||||
2026/02/18-00:51:48.566945 7f1e20bfb6c0 Level-0 table #90: 0 bytes OK
|
||||
2026/02/18-00:51:48.574222 7f1e20bfb6c0 Delete type=0 #88
|
||||
2026/02/18-00:51:48.587436 7f1e20bfb6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.587471 7f1e20bfb6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.040604 7fc4ea7ed6c0 Log #97: 0 ops saved to Table #98 OK
|
||||
2026/04/01-22:32:02.040704 7fc4ea7ed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/capacreature/000097.log: OK
|
||||
2026/04/01-22:32:02.040774 7fc4ea7ed6c0 Table #72: 2 entries OK
|
||||
2026/04/01-22:32:02.043992 7fc4ea7ed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/capacreature; recovered 1 files; 901 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/capacreature/MANIFEST-000099
Normal file
BIN
packs/capacreature/MANIFEST-000099
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000184
|
||||
MANIFEST-000192
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.062250 7f1e223fe6c0 Recovering log #182
|
||||
2026/02/18-00:51:52.078574 7f1e223fe6c0 Delete type=3 #180
|
||||
2026/02/18-00:51:52.078650 7f1e223fe6c0 Delete type=0 #182
|
||||
2026/02/18-00:52:03.920127 7f1e20bfb6c0 Level-0 table #187: started
|
||||
2026/02/18-00:52:03.920145 7f1e20bfb6c0 Level-0 table #187: 0 bytes OK
|
||||
2026/02/18-00:52:03.926383 7f1e20bfb6c0 Delete type=0 #185
|
||||
2026/02/18-00:52:03.926563 7f1e20bfb6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.926607 7f1e20bfb6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.018696 7fc4ea7ed6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.186330 7fc4e8fea6c0 Level-0 table #195: started
|
||||
2026/04/01-22:34:44.186359 7fc4e8fea6c0 Level-0 table #195: 0 bytes OK
|
||||
2026/04/01-22:34:44.192734 7fc4e8fea6c0 Delete type=0 #193
|
||||
2026/04/01-22:34:44.223705 7fc4e8fea6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at '!items!zjMDuxKHKJ4vE5UV' @ 418 : 1
|
||||
2026/04/01-22:34:44.223715 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.227307 7fc4e8fea6c0 Generated table #196@0: 70 keys, 13743 bytes
|
||||
2026/04/01-22:34:44.227350 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 13743 bytes
|
||||
2026/04/01-22:34:44.234127 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.234197 7fc4e8fea6c0 Delete type=2 #165
|
||||
2026/04/01-22:34:44.234352 7fc4e8fea6c0 Manual compaction at level-0 from '!items!zjMDuxKHKJ4vE5UV' @ 418 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.718151 7f1e22bff6c0 Recovering log #179
|
||||
2026/02/18-00:45:51.740332 7f1e22bff6c0 Delete type=0 #179
|
||||
2026/02/18-00:45:51.740391 7f1e22bff6c0 Delete type=3 #178
|
||||
2026/02/18-00:51:48.554313 7f1e20bfb6c0 Level-0 table #183: started
|
||||
2026/02/18-00:51:48.554348 7f1e20bfb6c0 Level-0 table #183: 0 bytes OK
|
||||
2026/02/18-00:51:48.560270 7f1e20bfb6c0 Delete type=0 #181
|
||||
2026/02/18-00:51:48.560479 7f1e20bfb6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.560505 7f1e20bfb6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.001133 7fc4ea7ed6c0 Log #190: 0 ops saved to Table #191 OK
|
||||
2026/04/01-22:32:02.001275 7fc4ea7ed6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/equipement/000190.log: OK
|
||||
2026/04/01-22:32:02.002334 7fc4ea7ed6c0 Table #165: 70 entries OK
|
||||
2026/04/01-22:32:02.005501 7fc4ea7ed6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/equipement; recovered 1 files; 13743 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/equipement/MANIFEST-000192
Normal file
BIN
packs/equipement/MANIFEST-000192
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000254
|
||||
MANIFEST-000262
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:51.995006 7f1e21bfd6c0 Recovering log #252
|
||||
2026/02/18-00:51:52.006140 7f1e21bfd6c0 Delete type=3 #250
|
||||
2026/02/18-00:51:52.006188 7f1e21bfd6c0 Delete type=0 #252
|
||||
2026/02/18-00:52:03.876103 7f1e20bfb6c0 Level-0 table #257: started
|
||||
2026/02/18-00:52:03.876147 7f1e20bfb6c0 Level-0 table #257: 0 bytes OK
|
||||
2026/02/18-00:52:03.881956 7f1e20bfb6c0 Delete type=0 #255
|
||||
2026/02/18-00:52:03.900703 7f1e20bfb6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.900732 7f1e20bfb6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.905064 7fc4eafee6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.104003 7fc4e8fea6c0 Level-0 table #265: started
|
||||
2026/04/01-22:34:44.104040 7fc4e8fea6c0 Level-0 table #265: 0 bytes OK
|
||||
2026/04/01-22:34:44.110448 7fc4e8fea6c0 Delete type=0 #263
|
||||
2026/04/01-22:34:44.134518 7fc4e8fea6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at '!items!nYYX7rtSMGFO4xVY' @ 50 : 1
|
||||
2026/04/01-22:34:44.134533 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.137849 7fc4e8fea6c0 Generated table #266@0: 10 keys, 9428 bytes
|
||||
2026/04/01-22:34:44.137866 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 9428 bytes
|
||||
2026/04/01-22:34:44.144287 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.144555 7fc4e8fea6c0 Delete type=2 #235
|
||||
2026/04/01-22:34:44.166329 7fc4e8fea6c0 Manual compaction at level-0 from '!items!nYYX7rtSMGFO4xVY' @ 50 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.654682 7f1e223fe6c0 Recovering log #249
|
||||
2026/02/18-00:45:51.664389 7f1e223fe6c0 Delete type=0 #249
|
||||
2026/02/18-00:45:51.664455 7f1e223fe6c0 Delete type=3 #248
|
||||
2026/02/18-00:51:48.514450 7f1e20bfb6c0 Level-0 table #253: started
|
||||
2026/02/18-00:51:48.514476 7f1e20bfb6c0 Level-0 table #253: 0 bytes OK
|
||||
2026/02/18-00:51:48.521558 7f1e20bfb6c0 Delete type=0 #251
|
||||
2026/02/18-00:51:48.535087 7f1e20bfb6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.535135 7f1e20bfb6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.888030 7fc4eafee6c0 Log #260: 0 ops saved to Table #261 OK
|
||||
2026/04/01-22:32:01.888150 7fc4eafee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/heritages/000260.log: OK
|
||||
2026/04/01-22:32:01.889070 7fc4eafee6c0 Table #235: 10 entries OK
|
||||
2026/04/01-22:32:01.892255 7fc4eafee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/heritages; recovered 1 files; 9428 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/heritages/MANIFEST-000262
Normal file
BIN
packs/heritages/MANIFEST-000262
Normal file
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000091
|
||||
MANIFEST-000099
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
2026/02/18-00:51:51.943438 7f1e223fe6c0 Recovering log #89
|
||||
2026/02/18-00:51:51.953509 7f1e223fe6c0 Delete type=3 #87
|
||||
2026/02/18-00:51:51.953613 7f1e223fe6c0 Delete type=0 #89
|
||||
2026/02/18-00:52:03.850532 7f1e20bfb6c0 Level-0 table #94: started
|
||||
2026/02/18-00:52:03.850570 7f1e20bfb6c0 Level-0 table #94: 0 bytes OK
|
||||
2026/02/18-00:52:03.856439 7f1e20bfb6c0 Delete type=0 #92
|
||||
2026/02/18-00:52:03.875943 7f1e20bfb6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.875981 7f1e20bfb6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.814004 7fc4eafee6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.021571 7fc4e8fea6c0 Level-0 table #102: started
|
||||
2026/04/01-22:34:44.027383 7fc4e8fea6c0 Level-0 table #102: 216827 bytes OK
|
||||
2026/04/01-22:34:44.034000 7fc4e8fea6c0 Delete type=0 #100
|
||||
2026/04/01-22:34:44.062548 7fc4e8fea6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 1036 : 1
|
||||
2026/04/01-22:34:44.062563 7fc4e8fea6c0 Compacting 2@0 + 0@1 files
|
||||
2026/04/01-22:34:44.068686 7fc4e8fea6c0 Generated table #103@0: 261 keys, 216827 bytes
|
||||
2026/04/01-22:34:44.068712 7fc4e8fea6c0 Compacted 2@0 + 0@1 files => 216827 bytes
|
||||
2026/04/01-22:34:44.074792 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.075029 7fc4e8fea6c0 Delete type=2 #72
|
||||
2026/04/01-22:34:44.075320 7fc4e8fea6c0 Delete type=2 #102
|
||||
2026/04/01-22:34:44.097659 7fc4e8fea6c0 Manual compaction at level-0 from '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 1036 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.602303 7f1e223fe6c0 Recovering log #86
|
||||
2026/02/18-00:45:51.613365 7f1e223fe6c0 Delete type=0 #86
|
||||
2026/02/18-00:45:51.613432 7f1e223fe6c0 Delete type=3 #85
|
||||
2026/02/18-00:51:48.494550 7f1e20bfb6c0 Level-0 table #90: started
|
||||
2026/02/18-00:51:48.494571 7f1e20bfb6c0 Level-0 table #90: 0 bytes OK
|
||||
2026/02/18-00:51:48.501517 7f1e20bfb6c0 Delete type=0 #88
|
||||
2026/02/18-00:51:48.508293 7f1e20bfb6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.508325 7f1e20bfb6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.790261 7fc4eafee6c0 Log #97: 0 ops saved to Table #98 OK
|
||||
2026/04/01-22:32:01.790395 7fc4eafee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/heros/000097.log: OK
|
||||
2026/04/01-22:32:01.792148 7fc4eafee6c0 Table #72: 261 entries OK
|
||||
2026/04/01-22:32:01.795439 7fc4eafee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/heros; recovered 1 files; 216867 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/heros/MANIFEST-000099
Normal file
BIN
packs/heros/MANIFEST-000099
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000254
|
||||
MANIFEST-000262
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.008680 7f1e22bff6c0 Recovering log #252
|
||||
2026/02/18-00:51:52.018726 7f1e22bff6c0 Delete type=3 #250
|
||||
2026/02/18-00:51:52.018788 7f1e22bff6c0 Delete type=0 #252
|
||||
2026/02/18-00:52:03.882052 7f1e20bfb6c0 Level-0 table #257: started
|
||||
2026/02/18-00:52:03.882073 7f1e20bfb6c0 Level-0 table #257: 0 bytes OK
|
||||
2026/02/18-00:52:03.887906 7f1e20bfb6c0 Delete type=0 #255
|
||||
2026/02/18-00:52:03.900714 7f1e20bfb6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.900747 7f1e20bfb6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.928016 7fc4e9fec6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.117934 7fc4e8fea6c0 Level-0 table #265: started
|
||||
2026/04/01-22:34:44.117964 7fc4e8fea6c0 Level-0 table #265: 0 bytes OK
|
||||
2026/04/01-22:34:44.124045 7fc4e8fea6c0 Delete type=0 #263
|
||||
2026/04/01-22:34:44.154818 7fc4e8fea6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at '!items!y0G0VMyygxIj4Y7F' @ 95 : 1
|
||||
2026/04/01-22:34:44.154829 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.158760 7fc4e8fea6c0 Generated table #266@0: 19 keys, 36752 bytes
|
||||
2026/04/01-22:34:44.158786 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 36752 bytes
|
||||
2026/04/01-22:34:44.166104 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.166188 7fc4e8fea6c0 Delete type=2 #235
|
||||
2026/04/01-22:34:44.166352 7fc4e8fea6c0 Manual compaction at level-0 from '!items!y0G0VMyygxIj4Y7F' @ 95 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.666908 7f1e213fc6c0 Recovering log #249
|
||||
2026/02/18-00:45:51.677431 7f1e213fc6c0 Delete type=0 #249
|
||||
2026/02/18-00:45:51.677502 7f1e213fc6c0 Delete type=3 #248
|
||||
2026/02/18-00:51:48.528983 7f1e20bfb6c0 Level-0 table #253: started
|
||||
2026/02/18-00:51:48.529008 7f1e20bfb6c0 Level-0 table #253: 0 bytes OK
|
||||
2026/02/18-00:51:48.534903 7f1e20bfb6c0 Delete type=0 #251
|
||||
2026/02/18-00:51:48.535122 7f1e20bfb6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.535143 7f1e20bfb6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.908810 7fc4e9fec6c0 Log #260: 0 ops saved to Table #261 OK
|
||||
2026/04/01-22:32:01.908956 7fc4e9fec6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/metiers/000260.log: OK
|
||||
2026/04/01-22:32:01.910669 7fc4e9fec6c0 Table #235: 19 entries OK
|
||||
2026/04/01-22:32:01.913932 7fc4e9fec6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/metiers; recovered 1 files; 36752 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/metiers/MANIFEST-000262
Normal file
BIN
packs/metiers/MANIFEST-000262
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000091
|
||||
MANIFEST-000099
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.113094 7f1e223fe6c0 Recovering log #89
|
||||
2026/02/18-00:51:52.123181 7f1e223fe6c0 Delete type=3 #87
|
||||
2026/02/18-00:51:52.123237 7f1e223fe6c0 Delete type=0 #89
|
||||
2026/02/18-00:52:03.934056 7f1e20bfb6c0 Level-0 table #94: started
|
||||
2026/02/18-00:52:03.934082 7f1e20bfb6c0 Level-0 table #94: 0 bytes OK
|
||||
2026/02/18-00:52:03.940230 7f1e20bfb6c0 Delete type=0 #92
|
||||
2026/02/18-00:52:03.954273 7f1e20bfb6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.954320 7f1e20bfb6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.077676 7fc4e97eb6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.247751 7fc4e8fea6c0 Level-0 table #102: started
|
||||
2026/04/01-22:34:44.247784 7fc4e8fea6c0 Level-0 table #102: 0 bytes OK
|
||||
2026/04/01-22:34:44.254484 7fc4e8fea6c0 Delete type=0 #100
|
||||
2026/04/01-22:34:44.280803 7fc4e8fea6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at '!items!Vnpf6cKVHyd3ugnY' @ 4 : 1
|
||||
2026/04/01-22:34:44.280814 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.283995 7fc4e8fea6c0 Generated table #103@0: 1 keys, 592 bytes
|
||||
2026/04/01-22:34:44.284012 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 592 bytes
|
||||
2026/04/01-22:34:44.290049 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.290173 7fc4e8fea6c0 Delete type=2 #72
|
||||
2026/04/01-22:34:44.300872 7fc4e8fea6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 4 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.766403 7f1e21bfd6c0 Recovering log #86
|
||||
2026/02/18-00:45:51.776359 7f1e21bfd6c0 Delete type=0 #86
|
||||
2026/02/18-00:45:51.776443 7f1e21bfd6c0 Delete type=3 #85
|
||||
2026/02/18-00:51:48.560636 7f1e20bfb6c0 Level-0 table #90: started
|
||||
2026/02/18-00:51:48.560670 7f1e20bfb6c0 Level-0 table #90: 0 bytes OK
|
||||
2026/02/18-00:51:48.566765 7f1e20bfb6c0 Delete type=0 #88
|
||||
2026/02/18-00:51:48.587423 7f1e20bfb6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.587455 7f1e20bfb6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.060804 7fc4e97eb6c0 Log #97: 0 ops saved to Table #98 OK
|
||||
2026/04/01-22:32:02.060923 7fc4e97eb6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/mutations/000097.log: OK
|
||||
2026/04/01-22:32:02.060996 7fc4e97eb6c0 Table #72: 1 entries OK
|
||||
2026/04/01-22:32:02.064594 7fc4e97eb6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/mutations; recovered 1 files; 592 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/mutations/MANIFEST-000099
Normal file
BIN
packs/mutations/MANIFEST-000099
Normal file
Binary file not shown.
0
packs/mutations/lost/000097.log
Normal file
0
packs/mutations/lost/000097.log
Normal file
0
packs/origines/000265.log
Normal file
0
packs/origines/000265.log
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000255
|
||||
MANIFEST-000263
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:51.982806 7f1e223fe6c0 Recovering log #253
|
||||
2026/02/18-00:51:51.992736 7f1e223fe6c0 Delete type=3 #251
|
||||
2026/02/18-00:51:51.992811 7f1e223fe6c0 Delete type=0 #253
|
||||
2026/02/18-00:52:03.869674 7f1e20bfb6c0 Level-0 table #258: started
|
||||
2026/02/18-00:52:03.869701 7f1e20bfb6c0 Level-0 table #258: 0 bytes OK
|
||||
2026/02/18-00:52:03.875857 7f1e20bfb6c0 Delete type=0 #256
|
||||
2026/02/18-00:52:03.875974 7f1e20bfb6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.875994 7f1e20bfb6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.883584 7fc4eafee6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.097791 7fc4e8fea6c0 Level-0 table #266: started
|
||||
2026/04/01-22:34:44.097834 7fc4e8fea6c0 Level-0 table #266: 0 bytes OK
|
||||
2026/04/01-22:34:44.103872 7fc4e8fea6c0 Delete type=0 #264
|
||||
2026/04/01-22:34:44.124170 7fc4e8fea6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at '!items!xox7R7Uuuz0eGL0p' @ 132 : 1
|
||||
2026/04/01-22:34:44.124183 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.128194 7fc4e8fea6c0 Generated table #267@0: 23 keys, 32632 bytes
|
||||
2026/04/01-22:34:44.128221 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 32632 bytes
|
||||
2026/04/01-22:34:44.134303 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.134391 7fc4e8fea6c0 Delete type=2 #236
|
||||
2026/04/01-22:34:44.166316 7fc4e8fea6c0 Manual compaction at level-0 from '!items!xox7R7Uuuz0eGL0p' @ 132 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.642315 7f1e21bfd6c0 Recovering log #250
|
||||
2026/02/18-00:45:51.652268 7f1e21bfd6c0 Delete type=0 #250
|
||||
2026/02/18-00:45:51.652353 7f1e21bfd6c0 Delete type=3 #249
|
||||
2026/02/18-00:51:48.508452 7f1e20bfb6c0 Level-0 table #254: started
|
||||
2026/02/18-00:51:48.508473 7f1e20bfb6c0 Level-0 table #254: 0 bytes OK
|
||||
2026/02/18-00:51:48.514358 7f1e20bfb6c0 Delete type=0 #252
|
||||
2026/02/18-00:51:48.535072 7f1e20bfb6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.535128 7f1e20bfb6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.864247 7fc4eafee6c0 Log #261: 0 ops saved to Table #262 OK
|
||||
2026/04/01-22:32:01.864350 7fc4eafee6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/origines/000261.log: OK
|
||||
2026/04/01-22:32:01.865370 7fc4eafee6c0 Table #236: 23 entries OK
|
||||
2026/04/01-22:32:01.868565 7fc4eafee6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/origines; recovered 1 files; 32632 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/origines/MANIFEST-000263
Normal file
BIN
packs/origines/MANIFEST-000263
Normal file
Binary file not shown.
0
packs/origines/lost/000261.log
Normal file
0
packs/origines/lost/000261.log
Normal file
0
packs/peuples/000101.log
Normal file
0
packs/peuples/000101.log
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000091
|
||||
MANIFEST-000099
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:52.125117 7f1e213fc6c0 Recovering log #89
|
||||
2026/02/18-00:51:52.135620 7f1e213fc6c0 Delete type=3 #87
|
||||
2026/02/18-00:51:52.135687 7f1e213fc6c0 Delete type=0 #89
|
||||
2026/02/18-00:52:03.940399 7f1e20bfb6c0 Level-0 table #94: started
|
||||
2026/02/18-00:52:03.940430 7f1e20bfb6c0 Level-0 table #94: 0 bytes OK
|
||||
2026/02/18-00:52:03.947573 7f1e20bfb6c0 Delete type=0 #92
|
||||
2026/02/18-00:52:03.954285 7f1e20bfb6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.954327 7f1e20bfb6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.097559 7fc4e97eb6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.240796 7fc4e8fea6c0 Level-0 table #102: started
|
||||
2026/04/01-22:34:44.240822 7fc4e8fea6c0 Level-0 table #102: 0 bytes OK
|
||||
2026/04/01-22:34:44.247595 7fc4e8fea6c0 Delete type=0 #100
|
||||
2026/04/01-22:34:44.270637 7fc4e8fea6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at '!items!qAmsD4MHgywYj6XV' @ 16 : 1
|
||||
2026/04/01-22:34:44.270645 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.273838 7fc4e8fea6c0 Generated table #103@0: 4 keys, 5232 bytes
|
||||
2026/04/01-22:34:44.273870 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 5232 bytes
|
||||
2026/04/01-22:34:44.280526 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.280672 7fc4e8fea6c0 Delete type=2 #72
|
||||
2026/04/01-22:34:44.300862 7fc4e8fea6c0 Manual compaction at level-0 from '!items!qAmsD4MHgywYj6XV' @ 16 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/02/18-00:45:51.778409 7f1e213fc6c0 Recovering log #86
|
||||
2026/02/18-00:45:51.788190 7f1e213fc6c0 Delete type=0 #86
|
||||
2026/02/18-00:45:51.788257 7f1e213fc6c0 Delete type=3 #85
|
||||
2026/02/18-00:51:48.574360 7f1e20bfb6c0 Level-0 table #90: started
|
||||
2026/02/18-00:51:48.574392 7f1e20bfb6c0 Level-0 table #90: 0 bytes OK
|
||||
2026/02/18-00:51:48.580406 7f1e20bfb6c0 Delete type=0 #88
|
||||
2026/02/18-00:51:48.587447 7f1e20bfb6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:51:48.587479 7f1e20bfb6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:02.080604 7fc4e97eb6c0 Log #97: 0 ops saved to Table #98 OK
|
||||
2026/04/01-22:32:02.080714 7fc4e97eb6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/peuples/000097.log: OK
|
||||
2026/04/01-22:32:02.081658 7fc4e97eb6c0 Table #72: 4 entries OK
|
||||
2026/04/01-22:32:02.084976 7fc4e97eb6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-wasteland/packs/peuples; recovered 1 files; 5232 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/peuples/MANIFEST-000099
Normal file
BIN
packs/peuples/MANIFEST-000099
Normal file
Binary file not shown.
0
packs/peuples/lost/000097.log
Normal file
0
packs/peuples/lost/000097.log
Normal file
0
packs/pouvoirs/000182.log
Normal file
0
packs/pouvoirs/000182.log
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000172
|
||||
MANIFEST-000180
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/02/18-00:51:51.970173 7f1e22bff6c0 Recovering log #170
|
||||
2026/02/18-00:51:51.980246 7f1e22bff6c0 Delete type=3 #168
|
||||
2026/02/18-00:51:51.980324 7f1e22bff6c0 Delete type=0 #170
|
||||
2026/02/18-00:52:03.887998 7f1e20bfb6c0 Level-0 table #175: started
|
||||
2026/02/18-00:52:03.888022 7f1e20bfb6c0 Level-0 table #175: 0 bytes OK
|
||||
2026/02/18-00:52:03.894634 7f1e20bfb6c0 Delete type=0 #173
|
||||
2026/02/18-00:52:03.900724 7f1e20bfb6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
2026/02/18-00:52:03.900754 7f1e20bfb6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:32:01.858760 7fc4ea7ed6c0 Delete type=3 #1
|
||||
2026/04/01-22:34:44.045437 7fc4e8fea6c0 Level-0 table #183: started
|
||||
2026/04/01-22:34:44.045477 7fc4e8fea6c0 Level-0 table #183: 0 bytes OK
|
||||
2026/04/01-22:34:44.051711 7fc4e8fea6c0 Delete type=0 #181
|
||||
2026/04/01-22:34:44.085813 7fc4e8fea6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at '!items!zmaCOCCpgO3YtEn6' @ 684 : 1
|
||||
2026/04/01-22:34:44.085824 7fc4e8fea6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:34:44.091069 7fc4e8fea6c0 Generated table #184@0: 157 keys, 110260 bytes
|
||||
2026/04/01-22:34:44.091114 7fc4e8fea6c0 Compacted 1@0 + 0@1 files => 110260 bytes
|
||||
2026/04/01-22:34:44.097399 7fc4e8fea6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:34:44.097523 7fc4e8fea6c0 Delete type=2 #153
|
||||
2026/04/01-22:34:44.097694 7fc4e8fea6c0 Manual compaction at level-0 from '!items!zmaCOCCpgO3YtEn6' @ 684 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user