diff --git a/docs/scripting-doc/CHANGELOG.md b/docs/scripting-doc/CHANGELOG.md index 60b7880ddc..80bea122bb 100644 --- a/docs/scripting-doc/CHANGELOG.md +++ b/docs/scripting-doc/CHANGELOG.md @@ -1,5 +1,17 @@ ## Changelog +### 1.11.0 + +- Added the new API from Tiled 1.10.2 and 1.11.0 +- Documented FileEdit.isDirectory / filter and fix @link tags (#3777) +- Split ToolDefinition from Tool for registerTool function +- Clarify how to erase tiles and highlight it in the Tool.preview +- Extended docs for TileLayerEdit.apply and MapObject.textAlignment +- Fixed missing "| null" in a few more places +- Fixed hidden doc for Dialog.exec() (#3837) +- Fixed the type of FilePath.url and ImageLayer.imageSource +- Link Tile.frames from Tile.animated + ### 1.10.1 - Added the new API from Tiled 1.10.1 diff --git a/docs/scripting-doc/package-lock.json b/docs/scripting-doc/package-lock.json index 3cbe675f68..9b1e50921e 100644 --- a/docs/scripting-doc/package-lock.json +++ b/docs/scripting-doc/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mapeditor/tiled-api", - "version": "1.10.1", + "version": "1.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mapeditor/tiled-api", - "version": "1.10.1", + "version": "1.11.0", "funding": [ { "type": "github", @@ -59,6 +59,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -76,13 +77,13 @@ } }, "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "dependencies": { "minimist": "^1.2.5", - "neo-async": "^2.6.0", + "neo-async": "^2.6.2", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, @@ -100,6 +101,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -113,9 +115,9 @@ "dev": true }, "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", "dev": true }, "node_modules/lunr": { @@ -258,9 +260,9 @@ } }, "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "version": "3.19.2", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.2.tgz", + "integrity": "sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==", "dev": true, "optional": true, "bin": { diff --git a/docs/scripting-doc/package.json b/docs/scripting-doc/package.json index e144435f45..1dd35ef17b 100644 --- a/docs/scripting-doc/package.json +++ b/docs/scripting-doc/package.json @@ -6,7 +6,7 @@ "url": "git+https://github.com/mapeditor/tiled.git" }, "types": "./index.d.ts", - "version": "1.10.1", + "version": "1.11.0", "scripts": { "test": "tsc" },