Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed May 17, 2023
2 parents 0db3845 + 3288bcb commit fc1e364
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "11.1.2"
".": "11.1.5"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

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.

## [11.1.5](https://github.com/javalent/initiative-tracker/compare/11.1.4...11.1.5) (2023-05-14)


### Bug Fixes

* actually remove side effects from updateCreatureByName ([cf8bf9f](https://github.com/javalent/initiative-tracker/commit/cf8bf9f806aa0693b3a00551cc9ee53d8ed0d57b))

## [11.1.4](https://github.com/javalent/initiative-tracker/compare/11.1.3...11.1.4) (2023-05-14)


### Bug Fixes

* updateCreatureByName no longer has side effects ([a327221](https://github.com/javalent/initiative-tracker/commit/a327221c878f9c26c1cefbe73d98eea33eca080b))

## [11.1.3](https://github.com/javalent/initiative-tracker/compare/11.1.2...11.1.3) (2023-05-13)


### Bug Fixes

* remove AC from player view ([c6ecb19](https://github.com/javalent/initiative-tracker/commit/c6ecb19cfbf0f39fc3e264b3e9bf5c41d480c019))

## [11.1.2](https://github.com/javalent/initiative-tracker/compare/11.1.1...11.1.2) (2023-05-13)


Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "initiative-tracker",
"name": "Initiative Tracker",
"version": "11.1.2",
"version": "11.1.5",
"minAppVersion": "0.15.0",
"author": "Jeremy Valentine",
"description": "TTRPG Initiative Tracker for Obsidian.md",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "initiative-tracker",
"version": "11.1.2",
"version": "11.1.5",
"description": "TTRPG Initiative Tracker for Obsidian.md",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions src/tracker/stores/tracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,6 @@ function createTracker() {
if (creature) {
if (!isNaN(Number(change.hp))) {
creature.hp =
creature.max =
creature.current_max =
change.hp;
}
if (change.max) {
Expand Down

0 comments on commit fc1e364

Please sign in to comment.