Compare commits

...

3 Commits

Author SHA1 Message Date
debd401d58 Fix equipment 2023-07-20 17:34:49 +02:00
02b69c8602 Fix costs 2023-07-18 22:10:53 +02:00
fedf7e608e Fix costs 2023-07-18 22:07:55 +02:00
3 changed files with 5 additions and 8 deletions

View File

@ -31,8 +31,7 @@
"manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/raw/branch/master/system.json", "manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/raw/branch/master/system.json",
"compatibility": { "compatibility": {
"minimum": "10", "minimum": "10",
"verified": "11", "verified": "11"
"maximum": "11"
}, },
"id": "fvtt-ecryme", "id": "fvtt-ecryme",
"primaryTokenAttribute": "secondary.health", "primaryTokenAttribute": "secondary.health",
@ -43,7 +42,7 @@
], ],
"title": "Ecryme, le Jeu de Rôles", "title": "Ecryme, le Jeu de Rôles",
"url": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme", "url": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme",
"version": "11.0.4", "version": "11.0.6",
"download": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/archive/fvtt-ecryme-v11.0.4.zip", "download": "https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/archive/fvtt-ecryme-v11.0.6.zip",
"background": "systems/fvtt-ecryme/images/assets/ecryme_extract_panel_01.webp" "background": "systems/fvtt-ecryme/images/assets/ecryme_extract_panel_01.webp"
} }

View File

@ -16,10 +16,8 @@
<div class="tab details" data-group="primary" data-tab="details"> <div class="tab details" data-group="primary" data-tab="details">
<div class="tab" data-group="primary"> {{> systems/fvtt-ecryme/templates/items/partial-item-equipment.hbs}}
<ul>
</ul>
</div> </div>
</div> </div>

View File

@ -7,7 +7,7 @@
<li class="flexrow"> <li class="flexrow">
<label class="item-field-label-long">{{localize "ECRY.ui.cost"}}</label> <label class="item-field-label-long">{{localize "ECRY.ui.cost"}}</label>
<input type="text" class="item-field-label-short" name="system.cost" value="{{system.cost}}" data-dtype="Number" /> <input type="text" class="item-field-label-short" name="system.cost" value="{{system.cost}}" data-dtype="Number" />
<select class="item-field-label-medium" type="text" name="system.costunit" value="{{system.costunit}}" data-dtype="Number"> <select class="item-field-label-medium" type="text" name="system.costunit" value="{{system.costunit}}" data-dtype="String">
{{#select system.costunit}} {{#select system.costunit}}
{{#each config.costUnits as |unit key| }} {{#each config.costUnits as |unit key| }}
<option value="{{key}}">{{localize unit.name}}</option> <option value="{{key}}">{{localize unit.name}}</option>