Skip to content

Commit

Permalink
chore(release): 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Jul 17, 2022
1 parent 38ff166 commit bd80c82
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 7 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@

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.

## [3.0.0](https://github.com/ghost-fvtt/fxmaster/compare/v2.7.0...v3.0.0) (2022-07-17)


### ⚠ BREAKING CHANGES

* * Support for v9 has been dropped
* Weather effects have been renamed to particle effects:
* The hooks `fxmaster.updateWeather`, `fxmaster.switchWeather` have been
replaced by `fxmaster.updateParticleEffects` and
`fxmaster.switchParticleEffect`. Compatibility shims exist but will be
removed in v4.
* Properties of `canvas.fxmaster` have been renamed (`weather` =>
`particleEffectsContainer`, `weatherEffects` => `particleEffects`,
`drawWeather` => `drawParticleEffects`)
* `CONFIG.fxmaster.weather` is deprecated and has been replaced by
`CONFIG.fxmaster.particleEffects`. A compatibility shim still exists
but it will be removed in v4.
* The hook `fxmaster.drawWeather` has been removed
* Many assets have been moved. For the most important things (e.g. macro
icons), there are migration, but not for everything.
* The possibility to apply filters only to specific canvas layers has been
removed (unfortunately necessary due to changes in foundry core).
* The implementation of the masking functionality has changed completely,
which very likely breaks compatibility with modules such as
Weather Blocker and Perfect Vision, which have been patching that
functionality.
* The `updateMask` hook has been removed.

### Features

* add support for Foundry Virtual Tabletop v10 ([d8c48a4](https://github.com/ghost-fvtt/fxmaster/commit/d8c48a435ff42c73d9e5036b1c73cd4ba93f4766))


### Bug Fixes

* address a small issue in world migration 3 and improve french translation ([38ff166](https://github.com/ghost-fvtt/fxmaster/commit/38ff1665adf70f2f17ea7fe65b2cbdd5d3dc0b59))

## [2.7.0](https://github.com/ghost-fvtt/fxmaster/compare/v2.6.0...v2.7.0) (2022-04-25)


Expand Down
10 changes: 5 additions & 5 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
}
],
"url": "https://github.com/ghost-fvtt/fxmaster",
"license": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v2.7.0/LICENSE.md",
"readme": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v2.7.0/README.md",
"license": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v3.0.0/LICENSE.md",
"readme": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v3.0.0/README.md",
"bugs": "https://github.com/ghost-fvtt/fxmaster/issues",
"changelog": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v2.7.0/CHANGELOG.md",
"version": "2.7.0",
"changelog": "https://raw.githubusercontent.com/ghost-fvtt/fxmaster/v3.0.0/CHANGELOG.md",
"version": "3.0.0",
"compatibility": {
"minimum": "10.273",
"verified": "10"
Expand Down Expand Up @@ -77,6 +77,6 @@
],
"socket": true,
"manifest": "https://github.com/ghost-fvtt/fxmaster/releases/latest/download/module.json",
"download": "https://github.com/ghost-fvtt/fxmaster/releases/download/v2.7.0/module.zip",
"download": "https://github.com/ghost-fvtt/fxmaster/releases/download/v3.0.0/module.zip",
"manifestPlusVersion": "1.2.0"
}
2 changes: 1 addition & 1 deletion 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": "fxmaster",
"version": "2.7.0",
"version": "3.0.0",
"description": "Adds various particle and filter effects.",
"private": true,
"scripts": {
Expand Down

0 comments on commit bd80c82

Please sign in to comment.