Skip to content

Commit 156fa24

Browse files
committed
Version bump
- reverse displayed filter order within FilterSelector
1 parent 7840f36 commit 156fa24

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Token Magic FX - Update v0.7.5.1
2+
3+
**Filter Editor**
4+
5+
- Displayed filter order has been reversed; top of the list now represents the last filter to be applied
6+
- Hopefully this lends to better intuition on how filters are layered on top of each other
7+
- `A filter affects all other filters below it`
8+
- `Brazilian Portuguese` localization, courtesy of @Kharmans
9+
110
# Token Magic FX - Update v0.7.5
211

312
**Filter Editor**

tokenmagic/gui/apps/FilterEditor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ class FilterSelector extends HandlebarsApplicationMixin(ApplicationV2) {
228228
],
229229
};
230230
})
231-
.sort((f1, f2) => f1.rank - f2.rank);
231+
.sort((f1, f2) => f1.rank - f2.rank)
232+
.reverse();
232233

233234
return Object.assign(context, { filters: this._filters });
234235
}

tokenmagic/lang/es.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"I18N.LANGUAGE": "Español",
33
"I18N.MAINTAINERS": "@Viriato139ac#0342",
4-
54
"TMFX.TokenMagic": "TokenMagic",
65
"TMFX.preset.add.success": "FX añadido con éxito a la biblioteca de parámetros predeterminados",
76
"TMFX.preset.add.permission.failure": "No tiene permisos para añadir el FX a la biblioteca de parámetros predeterminados",

tokenmagic/module.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"id": "tokenmagic",
33
"title": "Token Magic FX",
44
"description": "<p>Add special effects and animations on your tokens, tiles, drawings, templates, and regions</p>",
5-
"version": "0.7.5",
5+
"version": "0.7.5.1",
66
"manifest": "https://github.com/Feu-Secret/Tokenmagic/releases/latest/download/module.json",
7-
"download": "https://github.com/Feu-Secret/Tokenmagic/releases/download/0.7.5/tokenmagic.zip",
7+
"download": "https://github.com/Feu-Secret/Tokenmagic/releases/download/0.7.5.1/tokenmagic.zip",
88
"compatibility": {
99
"minimum": "13",
1010
"verified": "13.350"

0 commit comments

Comments
 (0)