Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
0.99.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rughalt committed Jan 10, 2022
1 parent 802608f commit f613a42
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
11 changes: 11 additions & 0 deletions changelogs/changelog.0.99.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### New Features
- Measure Template spells automatically display targets on attack cards

### Fixes
- [899](https://github.com/Rughalt/D35E/issues/899) - Allow changes to "Senses" in Buff configuration
- [898](https://github.com/Rughalt/D35E/issues/898) - Special Action 'Set' appears broken when applied to Buffs from Spells
- [897](https://github.com/Rughalt/D35E/issues/897) - Wild shape broken on v9
- [896](https://github.com/Rughalt/D35E/issues/896) - Drag and drop from "Spell Browser" has stopped working in Foundry v9
- [893](https://github.com/Rughalt/D35E/issues/893) - Template Icon not being removed from scene until refresh
- [890](https://github.com/Rughalt/D35E/issues/890) - Shapechange JS error (wildshape transformation)
- [887](https://github.com/Rughalt/D35E/issues/887) - Missing Ressource Bar Inputs in Token HUD
4 changes: 2 additions & 2 deletions module/item/entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -1989,8 +1989,8 @@ export class ItemPF extends Item {
let _template = await result.place();
if (selectedTargets.length == 0) {
// We can override selevted dargets
selectedTargets = template.getTokensWithin().filter(t => t.visible || game.user.isGM);
hiddenTargets = template.getTokensWithin().filter(t => !t.visible && !game.user.isGM);
selectedTargets = template.getTokensWithin().filter(t => !t.data.hidden);
hiddenTargets = template.getTokensWithin().filter(t => t.data.hidden);
}
}

Expand Down
2 changes: 1 addition & 1 deletion system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "D35E",
"title": "3.5e SRD",
"description": "Implementation of 3.5 edition System Reference Document for Foundry VTT. Aiming to provide 100% SRD coverage.",
"version": "0.99.0",
"version": "0.99.1",
"author": "Rughalt",
"templateVersion": 2,
"scripts": [],
Expand Down
16 changes: 16 additions & 0 deletions templates/welcome-screen.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,22 @@ <h2></h2>
</div>
</div>
<div class="tab" data-tab="changelog" style="overflow-y: scroll; height: 570px;">
<h2>v0.99.1</h2>
<h3 id="toc_0">New Features</h3>
<ul>
<li>Measure Template spells automatically display targets on attack cards</li>
</ul>
<h3 id="toc_1">Fixes</h3>
<ul>
<li><a href="https://github.com/Rughalt/D35E/issues/899">899</a> - Allow changes to &ldquo;Senses&rdquo; in Buff configuration<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/898">898</a> - Special Action &lsquo;Set&rsquo; appears broken when applied to Buffs from Spells<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/897">897</a> - Wild shape broken on v9<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/896">896</a> - Drag and drop from &ldquo;Spell Browser&rdquo; has stopped working in Foundry v9<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/893">893</a> - Template Icon not being removed from scene until refresh<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/890">890</a> - Shapechange JS error (wildshape transformation)<br></li>
<li><a href="https://github.com/Rughalt/D35E/issues/887">887</a> - Missing Ressource Bar Inputs in Token HUD<br></li>
</ul>

<h2>v0.99.0</h2>
<h3 id="toc_1">Github changelist</h3>
<ul>
Expand Down

0 comments on commit f613a42

Please sign in to comment.