Compare commits

..

4 Commits

Author SHA1 Message Date
1a321ed002 Foundryv14 migration
All checks were successful
Release Creation / build (release) Successful in 45s
2026-04-01 22:34:57 +02:00
d4c8a20d53 Message sur D20 impair dans le tchat et corrections diverses
All checks were successful
Release Creation / build (release) Successful in 44s
2026-03-10 22:00:52 +01:00
6cedcea74c Fix default system 2026-02-26 22:07:51 +01:00
c910b78385 Update map des wastelands
All checks were successful
Release Creation / build (release) Successful in 59s
2026-02-18 00:52:15 +01:00
150 changed files with 338 additions and 233 deletions

View File

@@ -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
View File

@@ -1,2 +1,3 @@
.history/
node_modules
.github/

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

View File

@@ -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;

View File

@@ -17,8 +17,8 @@ export class WastelandActor extends Actor {
/**
* Override the create() function to provide additional SoS functionality.
*
* This overrided create() function adds initial items
* Namely: Basic skills, money,
* This overrided create() function adds initial items
* Namely: Basic skills, money,
*
* @param {Object} data Barebones actor data which this function adds onto.
* @param {Object} options (Unused) Additional options which customize the creation workflow.
@@ -120,10 +120,10 @@ export class WastelandActor extends Actor {
return items
}
getArtifex() {
return this.getItemSorted(["artifex"])
return this.getItemSorted(["artifex"])
}
getCapacites() {
return this.getItemSorted(["capacite"])
return this.getItemSorted(["capacite"])
}
getPouvoirs() {
return this.getItemSorted(["pouvoir"])
@@ -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()
@@ -509,7 +499,7 @@ export class WastelandActor extends Actor {
rollData.difficulte = pouvoir.system.seuil
this.launchRoll(rollData)
}
}
}
/* -------------------------------------------- */
async rollArmeOffensif(armeId) {
let arme = this.items.get(armeId)

View File

@@ -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;
}

View File

@@ -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
});
}

View File

@@ -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
}

View File

@@ -1 +1 @@
MANIFEST-000224
MANIFEST-000238

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.205626 7f1c56bff6c0 Recovering log #222
2026/01/10-09:44:14.218871 7f1c56bff6c0 Delete type=3 #220
2026/01/10-09:44:14.219004 7f1c56bff6c0 Delete type=0 #222
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.449402 7f1c553fc6c0 Recovering log #218
2026/01/10-09:33:50.499238 7f1c553fc6c0 Delete type=3 #216
2026/01/10-09:33:50.499325 7f1c553fc6c0 Delete type=0 #218
2026/01/10-09:42:25.332397 7f1c54bfb6c0 Level-0 table #223: started
2026/01/10-09:42:25.332474 7f1c54bfb6c0 Level-0 table #223: 0 bytes OK
2026/01/10-09:42:25.395595 7f1c54bfb6c0 Delete type=0 #221
2026/01/10-09:42:25.519167 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.519295 7f1c54bfb6c0 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

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000085
MANIFEST-000099

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.267526 7f1c563fe6c0 Recovering log #83
2026/01/10-09:44:14.284469 7f1c563fe6c0 Delete type=3 #81
2026/01/10-09:44:14.284596 7f1c563fe6c0 Delete type=0 #83
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.652107 7f1c563fe6c0 Recovering log #79
2026/01/10-09:33:50.742710 7f1c563fe6c0 Delete type=3 #77
2026/01/10-09:33:50.742808 7f1c563fe6c0 Delete type=0 #79
2026/01/10-09:42:25.395879 7f1c54bfb6c0 Level-0 table #84: started
2026/01/10-09:42:25.395959 7f1c54bfb6c0 Level-0 table #84: 0 bytes OK
2026/01/10-09:42:25.461875 7f1c54bfb6c0 Delete type=0 #82
2026/01/10-09:42:25.519225 7f1c54bfb6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.519316 7f1c54bfb6c0 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.

Binary file not shown.

Binary file not shown.

BIN
packs/bestiaire/000115.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000097
MANIFEST-000111

View File

@@ -1,3 +1,12 @@
2026/01/10-09:44:14.021312 7f1c55bfd6c0 Recovering log #95
2026/01/10-09:44:14.040496 7f1c55bfd6c0 Delete type=3 #93
2026/01/10-09:44:14.040627 7f1c55bfd6c0 Delete type=0 #95
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:49.998930 7f1c56bff6c0 Recovering log #91
2026/01/10-09:33:50.047028 7f1c56bff6c0 Delete type=3 #89
2026/01/10-09:33:50.047160 7f1c56bff6c0 Delete type=0 #91
2026/01/10-09:42:24.848889 7f1c54bfb6c0 Level-0 table #96: started
2026/01/10-09:42:24.848942 7f1c54bfb6c0 Level-0 table #96: 0 bytes OK
2026/01/10-09:42:24.909912 7f1c54bfb6c0 Delete type=0 #94
2026/01/10-09:42:25.030500 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.030611 7f1c54bfb6c0 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.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000085
MANIFEST-000099

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.288059 7f1c553fc6c0 Recovering log #83
2026/01/10-09:44:14.307028 7f1c553fc6c0 Delete type=3 #81
2026/01/10-09:44:14.307153 7f1c553fc6c0 Delete type=0 #83
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.746372 7f1c553fc6c0 Recovering log #79
2026/01/10-09:33:50.798633 7f1c553fc6c0 Delete type=3 #77
2026/01/10-09:33:50.798745 7f1c553fc6c0 Delete type=0 #79
2026/01/10-09:42:25.580579 7f1c54bfb6c0 Level-0 table #84: started
2026/01/10-09:42:25.580643 7f1c54bfb6c0 Level-0 table #84: 0 bytes OK
2026/01/10-09:42:25.633628 7f1c54bfb6c0 Delete type=0 #82
2026/01/10-09:42:25.776283 7f1c54bfb6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.776373 7f1c54bfb6c0 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.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000178
MANIFEST-000192

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.242382 7f1c55bfd6c0 Recovering log #176
2026/01/10-09:44:14.263103 7f1c55bfd6c0 Delete type=3 #174
2026/01/10-09:44:14.263260 7f1c55bfd6c0 Delete type=0 #176
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.554913 7f1c56bff6c0 Recovering log #172
2026/01/10-09:33:50.649209 7f1c56bff6c0 Delete type=3 #170
2026/01/10-09:33:50.649312 7f1c56bff6c0 Delete type=0 #172
2026/01/10-09:42:25.462137 7f1c54bfb6c0 Level-0 table #177: started
2026/01/10-09:42:25.462208 7f1c54bfb6c0 Level-0 table #177: 0 bytes OK
2026/01/10-09:42:25.518795 7f1c54bfb6c0 Delete type=0 #175
2026/01/10-09:42:25.519253 7f1c54bfb6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.519343 7f1c54bfb6c0 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.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000248
MANIFEST-000262

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.137223 7f1c553fc6c0 Recovering log #246
2026/01/10-09:44:14.155118 7f1c553fc6c0 Delete type=3 #244
2026/01/10-09:44:14.155273 7f1c553fc6c0 Delete type=0 #246
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.282082 7f1c553fc6c0 Recovering log #242
2026/01/10-09:33:50.340974 7f1c553fc6c0 Delete type=3 #240
2026/01/10-09:33:50.341064 7f1c553fc6c0 Delete type=0 #242
2026/01/10-09:42:25.094384 7f1c54bfb6c0 Level-0 table #247: started
2026/01/10-09:42:25.094457 7f1c54bfb6c0 Level-0 table #247: 0 bytes OK
2026/01/10-09:42:25.153971 7f1c54bfb6c0 Delete type=0 #245
2026/01/10-09:42:25.266088 7f1c54bfb6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.266203 7f1c54bfb6c0 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.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000085
MANIFEST-000099

View File

@@ -1,3 +1,12 @@
2026/01/10-09:44:14.045787 7f1c553fc6c0 Recovering log #83
2026/01/10-09:44:14.061751 7f1c553fc6c0 Delete type=3 #81
2026/01/10-09:44:14.061880 7f1c553fc6c0 Delete type=0 #83
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.051064 7f1c563fe6c0 Recovering log #79
2026/01/10-09:33:50.113613 7f1c563fe6c0 Delete type=3 #77
2026/01/10-09:33:50.113707 7f1c563fe6c0 Delete type=0 #79
2026/01/10-09:42:24.799070 7f1c54bfb6c0 Level-0 table #84: started
2026/01/10-09:42:24.799211 7f1c54bfb6c0 Level-0 table #84: 0 bytes OK
2026/01/10-09:42:24.848569 7f1c54bfb6c0 Delete type=0 #82
2026/01/10-09:42:25.030463 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.030571 7f1c54bfb6c0 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

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000248
MANIFEST-000262

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.159141 7f1c55bfd6c0 Recovering log #246
2026/01/10-09:44:14.177386 7f1c55bfd6c0 Delete type=3 #244
2026/01/10-09:44:14.177508 7f1c55bfd6c0 Delete type=0 #246
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.344087 7f1c55bfd6c0 Recovering log #242
2026/01/10-09:33:50.397056 7f1c55bfd6c0 Delete type=3 #240
2026/01/10-09:33:50.397144 7f1c55bfd6c0 Delete type=0 #242
2026/01/10-09:42:25.154237 7f1c54bfb6c0 Level-0 table #247: started
2026/01/10-09:42:25.154312 7f1c54bfb6c0 Level-0 table #247: 0 bytes OK
2026/01/10-09:42:25.212944 7f1c54bfb6c0 Delete type=0 #245
2026/01/10-09:42:25.266114 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.266244 7f1c54bfb6c0 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.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000085
MANIFEST-000099

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.310809 7f1c56bff6c0 Recovering log #83
2026/01/10-09:44:14.329828 7f1c56bff6c0 Delete type=3 #81
2026/01/10-09:44:14.329969 7f1c56bff6c0 Delete type=0 #83
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.801904 7f1c55bfd6c0 Recovering log #79
2026/01/10-09:33:50.852068 7f1c55bfd6c0 Delete type=3 #77
2026/01/10-09:33:50.852286 7f1c55bfd6c0 Delete type=0 #79
2026/01/10-09:42:25.519516 7f1c54bfb6c0 Level-0 table #84: started
2026/01/10-09:42:25.519594 7f1c54bfb6c0 Level-0 table #84: 0 bytes OK
2026/01/10-09:42:25.580319 7f1c54bfb6c0 Delete type=0 #82
2026/01/10-09:42:25.776251 7f1c54bfb6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.776355 7f1c54bfb6c0 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.

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000249
MANIFEST-000263

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.115288 7f1c563fe6c0 Recovering log #247
2026/01/10-09:44:14.132717 7f1c563fe6c0 Delete type=3 #245
2026/01/10-09:44:14.132861 7f1c563fe6c0 Delete type=0 #247
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.237322 7f1c563fe6c0 Recovering log #243
2026/01/10-09:33:50.279009 7f1c563fe6c0 Delete type=3 #241
2026/01/10-09:33:50.279093 7f1c563fe6c0 Delete type=0 #243
2026/01/10-09:42:25.030884 7f1c54bfb6c0 Level-0 table #248: started
2026/01/10-09:42:25.030973 7f1c54bfb6c0 Level-0 table #248: 0 bytes OK
2026/01/10-09:42:25.094102 7f1c54bfb6c0 Delete type=0 #246
2026/01/10-09:42:25.266055 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.266158 7f1c54bfb6c0 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.

Binary file not shown.

View File

0
packs/peuples/000101.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000085
MANIFEST-000099

View File

@@ -1,3 +1,11 @@
2026/01/10-09:44:14.333662 7f1c563fe6c0 Recovering log #83
2026/01/10-09:44:14.351282 7f1c563fe6c0 Delete type=3 #81
2026/01/10-09:44:14.351432 7f1c563fe6c0 Delete type=0 #83
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)

View File

@@ -1,8 +1,4 @@
2026/01/10-09:33:50.855656 7f1c563fe6c0 Recovering log #79
2026/01/10-09:33:50.924163 7f1c563fe6c0 Delete type=3 #77
2026/01/10-09:33:50.924281 7f1c563fe6c0 Delete type=0 #79
2026/01/10-09:42:25.633894 7f1c54bfb6c0 Level-0 table #84: started
2026/01/10-09:42:25.633955 7f1c54bfb6c0 Level-0 table #84: 0 bytes OK
2026/01/10-09:42:25.701721 7f1c54bfb6c0 Delete type=0 #82
2026/01/10-09:42:25.776310 7f1c54bfb6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2026/01/10-09:42:25.776392 7f1c54bfb6c0 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.

Binary file not shown.

View File

View File

View File

@@ -1 +1 @@
MANIFEST-000166
MANIFEST-000180

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