Skip to content

Commit

Permalink
0.5.1 (#14)
Browse files Browse the repository at this point in the history
* v11 and pack update

* v12 support

* 0.5.0

* pacls

* Scrolling Combat Numbers

* Send SheetItems to Chat

* data model

* dataModel for Actors and Items

* dataModel Template.json

* Update system.json

* Update for getProperty

* NPC Ability Slider

* Fix for Slider

* Update vagabonds.css
  • Loading branch information
jsavko authored Jun 12, 2024
1 parent 9dd9673 commit e3fa454
Show file tree
Hide file tree
Showing 21 changed files with 1,226 additions and 371 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# IDE
.idea/
.vs/
packs/

# Node Modules
node_modules/
Expand Down
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Vagabonds of Dyfed Foundry VTT System

0.5.1
* Added the ability to send Techniques, Injury and Items to the Chat Window with the new blowhorn button
* Added Scrolling Combat Text on tokens when hp changes
* Updated the NPC sheet to give more room (as requested)
* Updated Actors and Items to use dataModels
* Updated NPC sheet to have slide out ability descriptions

0.5.0
* Updated for v12

0.4.1
* Fixed an with actor sheets in v10

Expand Down
27 changes: 23 additions & 4 deletions css/vagabonds.css
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,17 @@
}

.vagabonds .items-list .item {
height: 30px;

line-height: 24px;
padding: 3px 0;
border-bottom: 1px solid #BBB;
}

.break {
flex-basis: 100%;
height: 0;
}

.vagabonds .items-list .item .item-image {
-webkit-box-flex: 0;
-ms-flex: 0 0 24px;
Expand All @@ -258,10 +263,16 @@

.vagabonds .items-list .item-controls {
-webkit-box-flex: 0;
-ms-flex: 0 0 86px;
flex: 0 0 86px;
-ms-flex: auto;
flex: auto;
text-align: right;
opacity: 66%;
width: 10px;
}

.vagabonds .npc_item_list {
display: flex;
flex-wrap: wrap;
}

.vagabonds .items-list .item-controls:hover {
Expand Down Expand Up @@ -310,4 +321,12 @@ span.flavor-text h2 {

span.flavor-text h1 {
text-align: center;
}
}


.npc_item_desc {
text-align:left;
display: none;
padding-left: 40px;
padding-right: 40px;
}
Loading

0 comments on commit e3fa454

Please sign in to comment.