Skip to content

Commit

Permalink
v2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Moerill committed Sep 23, 2020
1 parent efddd01 commit bb9e03e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v2.9.1

- Fixed compatibility issue with the multilevel token module. Thanks to github user @grandseiken for fixing this!
- Changed Settings from automatically saving every time a setting was changed, to prevent accidently downloading all dicts, just because on looked at the replace name setting.
- Added clarification that enabling name replacement results in about 100MB of extra memory usage for the GM. (Someone mentioned this and it catched me by surprise. I'll still look into it if there is something i can do, but i'm not sure about that.)

# v2.9

- New smaller but curated list of english adjectives. This list is designed to allow for a better narrative instead of just having a lot of random, but sometimes really unfitting, adjectives. Thanks to Reddit user u/VagabondVivant and Github user @focalmatter for providing this list.
Expand Down
4 changes: 2 additions & 2 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "token-mold",
"title": "Token Mold",
"description": "<p>Gives the option to cast your tokens into a mold of your choosing.</p> <p>Possible options for your mold include:</p> <ul><li>Adding incrementing number suffixes.</li><li>Name generation for tokens.</li><li>Random adjective prefixes. (Examples: angry, calm, bloodthirsty, ...)</li><li>Rolling Hit Points by formula (dnd5e only)</li><li>Set token configuration on placement.</li><li>Providing an overlay to quickly check some stats on token hover.</li><li>Automatic creature size scaling (dnd5e only)</li></ul><hr>",
"version": "2.9.0",
"version": "2.10.0",
"minimumCoreVersion": "0.6.5",
"compatibleCoreVersion": "0.7.1",
"type": "module",
Expand All @@ -20,5 +20,5 @@
"styles": ["token-mold.css"],
"manifest": "https://raw.githubusercontent.com/Moerill/token-mold/master/module.json",
"url": "https://github.com/Moerill/token-mold",
"download": "https://github.com/Moerill/token-mold/releases/download/v2.9.0/v2.9.0.zip"
"download": "https://github.com/Moerill/token-mold/releases/download/v2.10.0/v2.10.0.zip"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "module-template",
"version": "2.9.0",
"version": "2.10.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion scripts/token-mold.js
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ class TokenMoldForm extends FormApplication {
options.title = "Token Mold";
options.closeOnSubmit = false;
options.submitOnClose = true;
options.submitOnChange = true;
options.submitOnChange = false;
options.tabs = [ {
navSelector: '.tabs',
contentSelector: 'form',
Expand Down
3 changes: 2 additions & 1 deletion templates/token-mold.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ <h2 style="margin:0;"></h2>
</div>
<div class="form-group name-randomizer-options">
<span title="For more information on how this works look onto the modules homepage.">The chosen option will replace the tokens base name with a generated name. <br>
You can choose a number of attributes. For each attribute you can choose possible values and assign them a language. On token creation the first value that fits will be chosen. If no fitting value was found, the default will be used.</span>
You can choose a number of attributes. For each attribute you can choose possible values and assign them a language. On token creation the first value that fits will be chosen. If no fitting value was found, the default will be used.<br>
<em>Important: Enabling this feature will result in about 100MB of extra memory used! (for GMs only)</em></span>


<div class="form-group">
Expand Down

0 comments on commit bb9e03e

Please sign in to comment.