Attribute line is now out of the tab in titles
This commit is contained in:
@@ -1,17 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.3.1 - Empty Sheet Scholar helper
|
## 1.3.1 - Empty Sheet Scholar Helper
|
||||||
- Added a Journal Compendium for School Curriculums.
|
- Added English/French Journal Compendiums for School Curriculums.
|
||||||
- Added Curriculums in description for Titles.
|
- Added English/French Curriculums in description for Titles.
|
||||||
- Added English Compendiums for Field of Victory (thanks to mdosantos).
|
- Added English Compendiums for Field of Victory (thanks to mdosantos).
|
||||||
- Added English "Blessed Treasures" in items for Field of Victory (thanks to PlatFleece)
|
- Added English "Blessed Treasures" in items for Field of Victory (thanks to PlatFleece)
|
||||||
- Added English/French "Blessed Treasures" and "Concealed Horror" in items for Shadowlands.
|
- Added English/French "Blessed Treasures" and "Concealed Horror" in items for Shadowlands.
|
||||||
|
- Added new icons for titles, links, items pattern and scroll signatures.
|
||||||
- QoL : Added label for grips in Weapon sheet (thanks to TesserWract).
|
- QoL : Added label for grips in Weapon sheet (thanks to TesserWract).
|
||||||
- QoL : Added buttons to Add or Subtract money.
|
- QoL : Added buttons to Add or Subtract money.
|
||||||
- Fixed the "empty sheet" bug (I hope).
|
- Fixed the "empty sheet" bug (I hope).
|
||||||
- Fixed the "bought_at_rank" does not change according to the PC rank value when an Item is drop on a sheet.
|
- Fixed the "bought_at_rank" does not change according to the PC rank value when an Item is drop on a sheet.
|
||||||
- Fixed the issue #23 "Token image does not save". Now we reflect the change on the token name/image only if it's a linked actor and if the token/sheet have the same values.
|
- Fixed the issue #23 "Token image does not save". Now we reflect the change on the token name/image only if it's a linked actor and if the token/sheet have the same values.
|
||||||
- Fixed the "unlink actor data" who still change the Actor Data.
|
- Fixed the "unlink actor data" who still change the Actor Data when editing an unlinked token.
|
||||||
|
|
||||||
## 1.3.0 - Foundry 0.8 Compatibility
|
## 1.3.0 - Foundry 0.8 Compatibility
|
||||||
__! Be certain to carefully back up any critical user data before installing this update !__
|
__! Be certain to carefully back up any critical user data before installing this update !__
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -384,12 +384,15 @@
|
|||||||
}
|
}
|
||||||
&.title {
|
&.title {
|
||||||
article {
|
article {
|
||||||
|
&.infos {
|
||||||
|
height: calc(100% - 3.5rem);
|
||||||
|
}
|
||||||
&.attributes {
|
&.attributes {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
&.experience {
|
&.experience {
|
||||||
flex: 100%;
|
flex: 100%;
|
||||||
height: calc(100% - 7.5rem);
|
height: calc(100% - 3.5rem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,9 @@
|
|||||||
<ul class="item-properties">
|
<ul class="item-properties">
|
||||||
<li>
|
<li>
|
||||||
{{{ data.linkedProperty.name }}}
|
{{{ data.linkedProperty.name }}}
|
||||||
<span data-item-id="{{data.linkedProperty.id}}" class="item-control linked-property-delete" title="{{localize 'Delete'}}"> <i class="fas fa-trash"></i></span>
|
{{#if options.editable}}
|
||||||
|
<span data-item-id="{{data.linkedProperty.id}}" class="item-control linked-property-delete" title="{{localize 'Delete'}}"> <i class="fas fa-trash"></i></span>
|
||||||
|
{{/if}}
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|||||||
@@ -4,15 +4,6 @@
|
|||||||
<header class="sheet-header">
|
<header class="sheet-header">
|
||||||
<img class="profile-img" src="{{data.img}}" data-edit="img" title="{{data.name}}"/>
|
<img class="profile-img" src="{{data.img}}" data-edit="img" title="{{data.name}}"/>
|
||||||
<h1 class="charname"><input name="name" type="text" value="{{data.name}}" placeholder="Name"/></h1>
|
<h1 class="charname"><input name="name" type="text" value="{{data.name}}" placeholder="Name"/></h1>
|
||||||
</header>
|
|
||||||
{{!-- Sheet Body --}}
|
|
||||||
<section class="sheet-body">
|
|
||||||
{{!-- Sheet Navigation --}}
|
|
||||||
<nav class="sheet-tabs tabs" data-group="primary">
|
|
||||||
<a class="item" data-tab="infos">{{ localize "l5r5e.description" }}</a>
|
|
||||||
<a class="item" data-tab="experience">{{ localize "l5r5e.advancements.title" }}</a>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
{{!-- Attributes Tab --}}
|
{{!-- Attributes Tab --}}
|
||||||
<article class="attributes">
|
<article class="attributes">
|
||||||
<label class="attribute">
|
<label class="attribute">
|
||||||
@@ -28,6 +19,15 @@
|
|||||||
<input class="select-on-focus" type="number" name="data.bought_at_rank" value="{{data.data.bought_at_rank}}" data-dtype="Number" min="0" placeholder="0"/>
|
<input class="select-on-focus" type="number" name="data.bought_at_rank" value="{{data.data.bought_at_rank}}" data-dtype="Number" min="0" placeholder="0"/>
|
||||||
</label>
|
</label>
|
||||||
</article>
|
</article>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{{!-- Sheet Body --}}
|
||||||
|
<section class="sheet-body">
|
||||||
|
{{!-- Sheet Navigation --}}
|
||||||
|
<nav class="sheet-tabs tabs" data-group="primary">
|
||||||
|
<a class="item" data-tab="infos">{{ localize "l5r5e.description" }}</a>
|
||||||
|
<a class="item" data-tab="experience">{{ localize "l5r5e.advancements.title" }}</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
{{!-- Descr + Page ref --}}
|
{{!-- Descr + Page ref --}}
|
||||||
{{> 'systems/l5r5e/templates/items/item/item-infos.html'}}
|
{{> 'systems/l5r5e/templates/items/item/item-infos.html'}}
|
||||||
|
|||||||
Reference in New Issue
Block a user