Skip to content

Commit

Permalink
chore(release): 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethaks committed Jun 19, 2024
1 parent 57f9d45 commit ba98528
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 33 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# Changelog

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.
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [0.8.0](https://github.com/Ethaks/pf1spheres/compare/v0.7.0...v0.8.0) (2024-06-19)


### ⚠ BREAKING CHANGES

* replace sphere journal entries with individual pages
* move sphere configuration fields into single object

* move sphere configuration fields into single object ([a8f5bbc](https://github.com/Ethaks/pf1spheres/commit/a8f5bbc49c2eb24980f71bd370b8517c6150f5be))
* replace sphere journal entries with individual pages ([4fa9036](https://github.com/Ethaks/pf1spheres/commit/4fa903632f86fbbc50a9bfd8d2bc8dbae8d46ca4))


### Features

* add journal entry for battered condition ([f862eb3](https://github.com/Ethaks/pf1spheres/commit/f862eb3b899e987db7dedaec30c8e4cf2b9e7fb7))
* add sphere filter to feat browser ([02c9f77](https://github.com/Ethaks/pf1spheres/commit/02c9f7739fcb616409994abdf0c7b3acb67b2e03)), closes [#29](https://github.com/Ethaks/pf1spheres/issues/29)
* show path tooltip for talent counts ([2c6e83e](https://github.com/Ethaks/pf1spheres/commit/2c6e83e5a75424cb8abb1d319315f8ad39a6f620)), closes [#31](https://github.com/Ethaks/pf1spheres/issues/31)
* use new system tooltip layout ([beed333](https://github.com/Ethaks/pf1spheres/commit/beed33356dfb59db532c2018b60aecb43c2a3043)), closes [#30](https://github.com/Ethaks/pf1spheres/issues/30)


### Bug Fixes

* add skill talent section to actor sheet ([14bcd8d](https://github.com/Ethaks/pf1spheres/commit/14bcd8dd967f014de49050625438a6be07152978))
* allow selection of caster progression for classes ([73dec4d](https://github.com/Ethaks/pf1spheres/commit/73dec4d6c11365c5c86f4e5dd5af835f803fb7a5))
* **pack:** add wraith form instead of mastery at wraith level 1 ([9fb0ec2](https://github.com/Ethaks/pf1spheres/commit/9fb0ec27376202487fbf1fb91e66ddb6e5001b0f)), closes [#33](https://github.com/Ethaks/pf1spheres/issues/33)
* restore sphere and count excluded inputs ([64a3b6a](https://github.com/Ethaks/pf1spheres/commit/64a3b6adeefc05e99f1ae7f61ef6801baf00291d))

## [0.7.0](https://gitlab.com/ethaks-fvtt/foundryvtt-pf1-spheres/compare/v0.6.1...v0.7.0) (2023-11-23)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "pf1spheres",
"version": "0.7.0",
"version": "0.8.0",
"description": "",
"license": "EUPL-1.2",
"homepage": "https://github.com/ethaks/pf1spheres",
Expand Down
38 changes: 7 additions & 31 deletions public/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "pf1spheres",
"title": "Spheres for Pathfinder 1e",
"description": "Adds Spheres of Power/Might content packs and mechanics to Pathfinder 1e",
"version": "0.7.0",
"version": "0.8.0",
"authors": [
{
"name": "Ethaks",
Expand All @@ -20,48 +20,24 @@
"esmodules": ["pf1spheres.js"],
"styles": ["style.css"],
"packs": [
{
"name": "combat-talents",
"label": "Combat Talents",
"system": "pf1",
"type": "Item"
},
{
"name": "magic-talents",
"label": "Magic Talents",
"system": "pf1",
"type": "Item"
},
{
"name": "sphere-feats",
"label": "Spheres Feats",
"system": "pf1",
"type": "Item"
},
{
"name": "classes",
"label": "Spheres Classes",
"system": "pf1",
"type": "Item"
},
{ "name": "combat-talents", "label": "Combat Talents", "system": "pf1", "type": "Item" },
{ "name": "magic-talents", "label": "Magic Talents", "system": "pf1", "type": "Item" },
{ "name": "sphere-feats", "label": "Spheres Feats", "system": "pf1", "type": "Item" },
{ "name": "classes", "label": "Spheres Classes", "system": "pf1", "type": "Item" },
{
"name": "class-features",
"label": "Spheres Class Features",
"system": "pf1",
"type": "Item"
},
{
"name": "rules",
"label": "Spheres Rules",
"type": "JournalEntry"
}
{ "name": "rules", "label": "Spheres Rules", "type": "JournalEntry" }
],
"dependencies": [],
"languages": [{ "lang": "en", "name": "English", "path": "lang/en.json" }],
"socket": false,
"url": "https://github.com/ethaks/pf1spheres",
"manifest": "https://github.com/ethaks/pf1spheres/-/releases/permalink/latest/download/module.json",
"download": "https://github.com/Ethaks/pf1spheres/-/releases/v0.7.0/download/pf1spheres.zip",
"download": "https://github.com/Ethaks/pf1spheres/releases/download/v0.8.0/module.zip",
"license": "EUPL-1.2",
"readme": "https://github.com/ethaks/pf1spheres/-/blob/master/README.md",
"bugs": "https://github.com/ethaks/pf1spheres/-/issues",
Expand Down

0 comments on commit ba98528

Please sign in to comment.