Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b573a5ed0 | ||
|
|
1dce3a5444 |
@@ -1,6 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
Date format : day/month/year
|
Date format : day/month/year
|
||||||
|
|
||||||
|
## 1.9.3 - 29/09/2022 - Combat Tracker
|
||||||
|
- Fix for L5R combat tracker bar who have disappeared.
|
||||||
|
|
||||||
|
## 1.9.2 - 09/09/2022 - Advancements Again
|
||||||
|
- Fix for advancements ownership (items in items).
|
||||||
|
|
||||||
## 1.9.1 - 08/09/2022 - Advancements Bugfixes
|
## 1.9.1 - 08/09/2022 - Advancements Bugfixes
|
||||||
- Fix for advancements fail to add new items ("_id" readonly error. see #42).
|
- Fix for advancements fail to add new items ("_id" readonly error. see #42).
|
||||||
|
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ export default class HooksL5r5e {
|
|||||||
if (elmt.length > 0) {
|
if (elmt.length > 0) {
|
||||||
elmt.replaceWith(tpl);
|
elmt.replaceWith(tpl);
|
||||||
} else {
|
} else {
|
||||||
html.find("#combat-round").append(tpl);
|
html.find(".combat-tracker-header").append(tpl);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Buttons Listeners
|
// Buttons Listeners
|
||||||
|
|||||||
@@ -224,7 +224,9 @@ export class ItemL5r5e extends Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Copy the parent permission to the sub item
|
// Copy the parent permission to the sub item
|
||||||
item.ownership = this.ownership;
|
// In v10 actor's items inherit the ownership from the actor, but theirs ownership do not reflect that.
|
||||||
|
// So we must take actor's ownership for sub-item
|
||||||
|
item.ownership = this.actor?.ownership ?? this.ownership;
|
||||||
|
|
||||||
// Tag parent (flags won't work as we have no id in db)
|
// Tag parent (flags won't work as we have no id in db)
|
||||||
item.system.parent_id = this.getParentsIds();
|
item.system.parent_id = this.getParentsIds();
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -602,8 +602,9 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Combat
|
// Combat
|
||||||
#combat {
|
#combat,
|
||||||
#combat-round {
|
#combat-popout {
|
||||||
|
.combat-tracker-header {
|
||||||
.encounters {
|
.encounters {
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
|
|||||||
@@ -7,11 +7,11 @@
|
|||||||
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
"changelog": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/CHANGELOG.md",
|
||||||
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
"license": "https://gitlab.com/teaml5r/l5r5e/-/blob/master/LICENSE.md",
|
||||||
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
"manifest": "https://gitlab.com/teaml5r/l5r5e/-/raw/master/system/system.json",
|
||||||
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.9.1/raw/l5r5e.zip?job=build",
|
"download": "https://gitlab.com/teaml5r/l5r5e/-/jobs/artifacts/v1.9.3/raw/l5r5e.zip?job=build",
|
||||||
"version": "1.9.1",
|
"version": "1.9.3",
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": 10,
|
"minimum": 10,
|
||||||
"verified": "10.284"
|
"verified": "10.286"
|
||||||
},
|
},
|
||||||
"manifestPlusVersion": "1.2.0",
|
"manifestPlusVersion": "1.2.0",
|
||||||
"socket": true,
|
"socket": true,
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ Nothing fancy, just accept when FoundryVTT prompt you to download or activate th
|
|||||||
| Module name | Notes |
|
| Module name | Notes |
|
||||||
|------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| [Babele](https://foundryvtt.com/packages/babele) | Required for non english compendium translation |
|
| [Babele](https://foundryvtt.com/packages/babele) | Required for non english compendium translation |
|
||||||
| [Permission Viewer](https://foundryvtt.com/packages/permission_viewer) | Lets you see instantly who has permissions to see what item |
|
| [Ownership Viewer](https://foundryvtt.com/packages/permission_viewer) | Lets you see instantly who has permissions to see what item |
|
||||||
| [Dice So Nice!](https://foundryvtt.com/packages/dice-so-nice) | Add 3D dices that bounce on the screen when you roll dice |
|
| [Dice So Nice!](https://foundryvtt.com/packages/dice-so-nice) | Add 3D dices that bounce on the screen when you roll dice |
|
||||||
| [Small Legend of the 5 Rings Tools](https://foundryvtt.com/packages/l5r-dragruler) | Series of tools for L5R |
|
| [Small Legend of the 5 Rings Tools](https://foundryvtt.com/packages/l5r-dragruler) | Series of tools for L5R |
|
||||||
| [Search Anywhere](https://foundryvtt.com/packages/searchanywhere) | Don't spent too much time searching the right technique |
|
| [Search Anywhere](https://foundryvtt.com/packages/searchanywhere) | Don't spent too much time searching the right technique |
|
||||||
|
|||||||
Reference in New Issue
Block a user