Skip to content

Commit ddf6471

Browse files
committed
chore(release): 🚀 1.1.0
1 parent 63e0b9a commit ddf6471

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.1.0](https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/compare/1.0.1...1.1.0) (2023-08-18)
6+
7+
8+
### Features
9+
10+
* ✨ Add setting and functionality for resetting each round ([b2980c9](https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/commit/b2980c961977231d0af76cac2daabc076ecb669b))
11+
512
### [1.0.1](https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/compare/1.0.0...1.0.1) (2023-01-07)
613

714

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yearzero-combat-fvtt",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"description": "Foundry VTT module for Year Zero Engine combat",
66
"scripts": {

schemas/combat-tracker.schema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
},
3131
"property": {
3232
"type": "string",
33-
"description": "The property to set on the combatant when the button is clicked. E.g. 'isDead'"
33+
"description": "A boolean property to set on the combatant when the button is clicked. E.g. 'isDead'"
3434
},
3535
"label": {
3636
"type": "string",
37-
"description": "The tooltip to display when the button is hovered"
37+
"description": "The label to display when the button is hovered. E.g. 'MyGame.CombatTracker.myButton"
3838
},
3939
"visibility": {
4040
"type": "string",
4141
"description": "The player the button is visible to. Default: 'all'",
4242
"enum": ["gm", "owner", "all"]
4343
}
4444
},
45-
"required": ["eventName", "icon", "id", "property", "tooltip"],
45+
"required": ["eventName", "icon", "id", "property", "label"],
4646
"additionalProperties": false
4747
}
4848
},

static/module.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "yze-combat",
33
"title": "Year Zero Engine: ⚔️ Combat",
44
"description": "Adds YZE combat mechanics to a game system: Card initiative, slow & fast actions, groups, and more!",
5-
"version": "1.0.1",
5+
"version": "1.1.0",
66
"compatibility": {
77
"minimum": 10,
88
"verified": "10.291",
@@ -56,7 +56,7 @@
5656
"license": "LICENSE.txt",
5757
"socket": true,
5858
"manifest": "https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/releases/latest/download/system.json",
59-
"download": "https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/releases/download/1.0.1/module.zip",
59+
"download": "https://github.com/fvtt-fria-ligan/yearzero-combat-fvtt/releases/download/1.1.0/module.zip",
6060
"flags": {
6161
"allowBugReporter": true
6262
}

0 commit comments

Comments
 (0)