Skip to content

Commit

Permalink
v1.16.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
drewg13 committed Feb 24, 2022
1 parent 92fd0d5 commit c25e9aa
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,5 @@ v1.9.4 Fix Trauma tooltip z-indexing
1.15.4 Retain assigned Actor icons on duplication, fixes to accommodate multiple Universe Actors

1.16.0 Added ability for GM to hide Systems/Planets/Factions from players on Universe sheet, reworked Universe sheet for greater flexibility in adding/removing Systems/Planets/Factions

1.16.1 Allow HTML and special characters in sheet description fields
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"authors": ["megastruktur", "Andrew Garinger [agaringer#6498]"],
"url": "https://github.com/drewg13/foundryvtt-scum-and-villainy/",
"flags": {},
"version": "1.16.0",
"version": "1.16.1",
"minimumCoreVersion": "0.7.9",
"compatibleCoreVersion": "9",
"system": [],
"dependencies": [],
"socket": false,
"manifest": "https://raw.githubusercontent.com/drewg13/foundryvtt-scum-and-villainy/master/system.json",
"download": "https://github.com/drewg13/foundryvtt-scum-and-villainy/archive/v1.16.0.zip",
"download": "https://github.com/drewg13/foundryvtt-scum-and-villainy/archive/v1.16.1.zip",
"protected": false,
"initiative": "1d20",
"scripts": [],
Expand Down
8 changes: 4 additions & 4 deletions templates/actor-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
<div class="item-body flex-horizontal">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand All @@ -361,7 +361,7 @@
<div class="item-body flex-horizontal">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand Down Expand Up @@ -394,7 +394,7 @@
<div class="item-body flex-horizontal">
<!--<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>-->
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand All @@ -410,7 +410,7 @@
<div class="label-stripe">
<p>{{localize "BITD.Notes"}}</p>
</div>
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
{{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}}
{{#if editable}}
<button type="submit" name="submit"><i class="fas fa-feather-alt"></i> {{localize "JOURNAL.Submit"}}</button>
{{/if}}
Expand Down
2 changes: 1 addition & 1 deletion templates/items/faction.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeh

<div class="flex-vertical">
<div class="label-stripe">{{localize "BITD.NotableNPCs"}}</div>
{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}
{{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}}
</div>

<div class="flex-horizontal">
Expand Down
2 changes: 1 addition & 1 deletion templates/items/planet.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeh
<textarea rows="5" name="data.rule">{{data.rule}}</textarea>
<div class="flex-vertical">
<div class="label-stripe">{{localize "BITD.NotableNPCs"}}</div>
{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}
{{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}}
</div>
</section>

Expand Down
4 changes: 2 additions & 2 deletions templates/items/star_system.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ <h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeh
<section class="flex-vertical">
<div class="flex-vertical">
<div class="label-stripe">{{localize "BITD.Description"}}</div>
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
{{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}}
</div>
<div class="flex-vertical">
<div class="label-stripe">{{localize "BITD.Notables"}}</div>
{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}
{{{editor content=data.notables target="data.notables" button=true owner=owner editable=editable}}}
</div>
</section>

Expand Down
8 changes: 4 additions & 4 deletions templates/ship-sheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<div class="item-body flex-horizontal">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand All @@ -222,7 +222,7 @@
<div class="item-body flex-horizontal">
<img src="{{item.img}}" title="{{item.name}}" width="24" height="24"/>
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand Down Expand Up @@ -252,7 +252,7 @@
<div class="item flex-horizontal" data-item-id="{{item._id}}">
<div class="item-body flex-horizontal">
<a class="item-name">{{item.name}}</a>
<div class="item-description">{{item.data.description}}</div>
<div class="item-description">{{{item.data.description}}}</div>
</div>
<a class="item-control item-delete" title="{{localize 'BITD.TitleDeleteItem'}}"><i class="fas fa-trash"></i></a>
<a class="item-control item-post" title="{{localize 'BITD.TitlePostItem'}}"><i class="fas fa-comment"></i></a>
Expand All @@ -268,7 +268,7 @@
<div class="label-stripe">
<p>{{localize "BITD.Notes"}}</p>
</div>
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
{{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}}
{{#if editable}}
<button type="submit" name="submit"><i class="fas fa-feather-alt"></i> {{localize "JOURNAL.Submit"}}</button>
{{/if}}
Expand Down

0 comments on commit c25e9aa

Please sign in to comment.