Skip to content

Commit 9cd3eb3

Browse files
committed
v 2.3.4 see readme
1 parent f0ebbbe commit 9cd3eb3

14 files changed

+34
-7
lines changed

Diff for: .gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ script/lib/yzur1.js
1010
asset/headquarter.png~
1111
asset/token_border_landscape.png~
1212
asset/token_border_portrait.png~
13-
asset/.token_border.png-autosave.kra
13+
*.kra
14+
*.png~

Diff for: README.md

+10
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,17 @@ This system provides character sheets and items for your play, if you would lik
3333
## Licence
3434
[GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/)
3535

36+
3637
## Release Notes
38+
39+
v2.3.4
40+
- Fixed colors on DSN dice
41+
- Added German Localization thanks [Ivy Coyote](https://github.com/IvyCoyote) (issue[33](https://github.com/fvtt-fria-ligan/vaesen-foundry-vtt/issues/33))
42+
- fixed display of conditions on Vaesen sheet. (issue [35](https://github.com/fvtt-fria-ligan/vaesen-foundry-vtt/issues/35))
43+
44+
v2.3.3
45+
- Fixed double roll for icons on player combat tab
46+
3747
v2.3.2
3848
-fixed css for Vasen sheet note field not showing.
3949

Diff for: asset/dsn/dsn-d6-1.png

-630 Bytes
Loading

Diff for: asset/dsn/dsn-d6-2.png

-380 Bytes
Loading

Diff for: asset/dsn/dsn-d6-3.png

-465 Bytes
Loading

Diff for: asset/dsn/dsn-d6-4.png

-1.11 KB
Loading

Diff for: asset/dsn/dsn-d6-5.png

-1.05 KB
Loading

Diff for: asset/dsn/dsn-d6-6.png

-1.18 KB
Loading

Diff for: model/tab/vaesen-main.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<div class="flex column heavy-border" style="width: 97%;">
33
<b class="title" style="width: 95%; margin: auto;">{{localize "HEADER.CONDITIONS"}}</b>
44
<div class="conditions flex column margin grow">
5-
<div class="condition flex row center light-border">
5+
<div class="condition center light-border grid grid-conditions">
66

7-
<b class="name">{{localize "CONDITION.NAME"}}</b>
7+
<b class="name span-2">{{localize "CONDITION.NAME"}}</b>
88
<b class="bonus">{{localize "CONDITION.BONUS"}}</b>
99

1010
<a class="button item-create" title='{{localize "UI.ADD"}}' data-type="condition"><i class="fas fa-plus"></i></a>
@@ -14,7 +14,7 @@
1414
{{#if item.isCondition}}
1515

1616
<div class="condition item flex column center " data-item-id="{{item._id}}">
17-
<div class="flex row center space-between grow">
17+
<div class="grid grid-conditions">
1818
<div class="selected checkbox-container">
1919
<label class="checkbox-label">
2020
<input type="checkbox" name="conditon" id="{{item._id}}"

Diff for: script/hooks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Hooks.once('diceSoNiceReady', (dice3d) => {
8989
description: 'Vaesen Dice',
9090
category: 'Vaesen',
9191
foreground: "#2D1A00",
92-
background: "#F5F4F1",
92+
background: "#e2c8b6",
9393
outline: '#402117',
9494
material: 'wood',
9595
default: true

Diff for: style/index.css

+8
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ input.light {
146146
display: grid;
147147
}
148148

149+
.grid-conditions {
150+
grid-template-columns: 25px auto 75px 55px;
151+
}
152+
149153
.grid-2col-fr {
150154
grid-template-columns: repeat(2, 1fr);
151155
}
@@ -182,6 +186,10 @@ input.light {
182186
align-self: end;
183187
}
184188

189+
.span-2 {
190+
grid-column: span 2;
191+
}
192+
185193
.block {
186194
display: block;
187195
}

Diff for: style/index.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: style/scss/layout/_base_layout.scss

+8
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
display: grid;
2626
}
2727

28+
.grid-conditions{
29+
grid-template-columns: 25px auto 75px 55px;
30+
}
31+
2832
.grid-2col-fr{
2933
grid-template-columns: repeat(2, 1fr);
3034
}
@@ -61,6 +65,10 @@
6165
align-self: end;
6266
}
6367

68+
.span-2{
69+
grid-column: span 2;
70+
}
71+
6472
.block{
6573
display: block;
6674
}

Diff for: system.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vaesen",
33
"title": "Vaesen",
44
"description": "Nordic horror role-playing",
5-
"version": "2.3.3",
5+
"version": "2.3.4",
66
"minimumCoreVersion": "0.8.6",
77
"compatibleCoreVersion": "9",
88
"templateVersion": 2,

0 commit comments

Comments
 (0)