Merge branch 'release/4.8'

This commit is contained in:
Megastruktur 2023-07-20 10:58:51 +03:00
commit 2a29e8ce5f
5 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,7 @@
v.4.8
- Fix CSS namespace collisions #202 (@drewg13)
- Adds Automatic generated version in system.json
v.4.7
- Missing coma fix #195 (@hendryl)
- Make action ratings variable and modifiable by Active Effects #197 (@drewg13)

View file

@ -186,7 +186,8 @@
.blades-in-the-dark .editor-content {
min-height: 150px;
}
.blades-in-the-dark .description {
.blades-in-the-dark .cohort-description,
.blades-in-the-dark .gang-description {
font-style: italic;
}
.blades-in-the-dark i.nullifier {

View file

@ -2,7 +2,7 @@
"id": "blades-in-the-dark",
"title": "Blades in the Dark",
"description": "Blades in the dark game system.",
"version": "4.7",
"version": "4.8",
"compatibility": {
"minimum": 10,
"verified": "10.284"
@ -11,7 +11,7 @@
"minimumCoreVersion": "10",
"url": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/",
"manifest": "https://raw.githubusercontent.com/megastruktur/foundryvtt-blades-in-the-dark/master/system.json",
"download": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/releases/download/4.6/blades-in-the-dark-4.7.zip",
"download": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/releases/download/4.8/blades-in-the-dark-{VERSION_NUMBER}.zip",
"authors": [
{ "name": "megastruktur" },
{ "name": "drewg13" },

View file

@ -39,7 +39,7 @@
</select>
</div>
<div id="selected-gang-description" class="description">
<div id="selected-gang-description" class="gang-description">
{{#each system.gang_type as |gang_type key|}}
{{#with (lookup ../system.gang_type_list gang_type)}}
{{localize description}}

View file

@ -39,12 +39,12 @@
<div class="flex-vertical">
{{#each system.edges_list as |edge key|}}
{{#if edge.selected }}
<div class="description">{{localize edge.description}} <b>({{localize edge.label}})</b></div>
<div class="cohort-description">{{localize edge.description}} <b>({{localize edge.label}})</b></div>
{{/if}}
{{/each}}
{{#each system.flaws_list as |flaw key|}}
{{#if flaw.selected }}
<div class="description">{{localize flaw.description}} <b>({{localize flaw.label}})</b></div>
<div class="cohort-description">{{localize flaw.description}} <b>({{localize flaw.label}})</b></div>
{{/if}}
{{/each}}
</div>