Skip to content

Commit

Permalink
v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Moerill committed Aug 30, 2020
1 parent b4e6cfe commit 04386ce
Show file tree
Hide file tree
Showing 89 changed files with 124 additions and 1,046 deletions.
98 changes: 98 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"google"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"ignorePatterns": ["**/*.md", "LICENSE", "**/*.json", "scripts/dict/*"],
"rules": {
"no-console": 0,
"require-jsdoc": 0,
"max-len": 0
},
"globals": {
"ROUTE_PREFIX": "readonly",
"Roll": "readonly",
"ChatMessage": "readonly",
"SetupConfiguration": "readonly",
"ImagePopout": "readonly",
"Actors": "readonly",
"caches": "readonly",
"ondevicemotion": "readonly",
"ondeviceorientation": "readonly",
"ondeviceorientationabsolute": "readonly",
"$": "readonly",
"jQuery": "readonly",
"Handlebars": "readonly",
"HandlebarsIntl": "readonly",
"HowlerGlobal": "readonly",
"Howler": "readonly",
"Howl": "readonly",
"Sound": "readonly",
"WebFont": "readonly",
"PIXI": "readonly",
"io": "readonly",
"tinymce": "readonly",
"tinyMCE": "readonly",
"easyrtc_lang": "readonly",
"adapter": "readonly",
"easyrtc": "readonly",
"duplicate": "readonly",
"getType": "readonly",
"invertObject": "readonly",
"filterObject": "readonly",
"flattenObject": "readonly",
"expandObject": "readonly",
"isObjectEmpty": "readonly",
"mergeObject": "readonly",
"diffObject": "readonly",
"hasProperty": "readonly",
"getProperty": "readonly",
"setProperty": "readonly",
"encodeURL": "readonly",
"rgbToHsv": "readonly",
"hsvToRgb": "readonly",
"rgbToHex": "readonly",
"hexToRGB": "readonly",
"hexToRGBAString": "readonly",
"colorStringToHex": "readonly",
"isNewerVersion": "readonly",
"randomID": "readonly",
"loadFont": "readonly",
"saveDataToFile": "readonly",
"readTextFromFile": "readonly",
"fromUuid": "readonly",
"_handleMouseWheelInputChange": "readonly",
"getTemplate": "readonly",
"loadTemplates": "readonly",
"renderTemplate": "readonly",
"srcExists": "readonly",
"getTexture": "readonly",
"loadTexture": "readonly",
"CONST": "readonly",
"toDegrees": "readonly",
"normalizeDegrees": "readonly",
"toRadians": "readonly",
"normalizeRadians": "readonly",
"validateForm": "readonly",
"timeSince": "readonly",
"_templateCache": "readonly",
"TextEditor": "readonly",
"CONFIG": "readonly",
"socket": "readonly",
"ui": "readonly",
"canvas": "readonly",
"keyboard": "readonly",
"Hooks": "readonly",
"SortingHelpers": "readonly",
"math": "readonly",
"game": "readonly"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/*/}
- name: Zip files
run: |
zip -r ${{ steps.get_version.outputs.VERSION }}.zip *.css *.js scripts module.json LICENSE templates assets
zip -r ${{ steps.get_version.outputs.VERSION }}.zip *.css *.js module.json LICENSE scripts templates assets
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# v2.8

- *IMPORTANT* Removed sticky templates from token mold! There is now a dedicated module for sticking stuff to tokens: ![Token Attacher by Kayelgee](https://foundryvtt.com/packages/token-attacher/)
- Now also overwriting the tokens actor name, on name generation.
- *FIX* Tab content not being shown in FVTT 0.7.X
- Removed the welcome screen / popup
- *FIX* some deprecated code used in the regenerating names function.
- Removed bundling through webpack. Now only native ESM 6 modules are used.
- Reason: slowness when building for development, less complications for people wanting to contribute
- Modified the dict files, to be native ESM6 modules enow instead of json files.

# v2.7.1
<ul>
<li>*NEW* Portuguese adjective lists, thanks to Discord User @innocenti</li>
Expand Down
5 changes: 0 additions & 5 deletions dist/assets/adjectives.db

This file was deleted.

21 changes: 0 additions & 21 deletions dist/css/overlay.css

This file was deleted.

Empty file removed dist/css/sticky-templates.css
Empty file.
238 changes: 0 additions & 238 deletions dist/css/token-mold.css

This file was deleted.

Loading

0 comments on commit 04386ce

Please sign in to comment.