Skip to content

Commit

Permalink
Bumped up to 2.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochili committed Aug 10, 2024
1 parent 973b287 commit 77252f1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 16 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,27 @@ All notable changes to the Defold Kit extension will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [2.1.7] - 2024-08-05
## [2.1.8] - 2024-08-11

### Added

- Added `Lua.runtime.pathStrict: true` with additional fixes for annotation paths so that autocompletion of libraries works.
- Added comparing Defold and annotations versions to sync Defold API automatically. Turned on by default.
- Added watching on the `.internal/libs` folder changes to sync libraries annotations automatically [#45](https://github.com/astrochili/vscode-defold/issues/45). Turned on by default.

### Fixed

- Removed `Lua.runtime.pathStrict': true` from the `settings.json` template because of the bad side effect on external libraries autocompletion. Will review it later.
- Fixed excessive nesting of annotation folders (`defold_api/defold_api` and `libs_api/extension_v1/extension/...`).

### Removed

- Removed `d954mas/defold-api-emmylua` from the annotation sources because it's almost a year out of date.

## [2.1.7] - 2024-08-05

### Removed

- Removed `Lua.runtime.pathStrict: true` from the `settings.json` template because of the bad side effect on external libraries autocompletion. Will review it later.

## [2.1.6] - 2024-07-07

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.

30 changes: 18 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"publisher": "astronachos",
"name": "defold",
"contributesPrefix": "defoldKit",
"version": "2.1.7",
"version": "2.1.8",
"license": "MIT",
"displayName": "Defold Kit",
"description": "Toolkit to build, launch, debug, bundle and deploy your game made with Defold",
Expand Down Expand Up @@ -142,62 +142,68 @@
],
"description": "Which Github repository to use to fetch Defold API annotations"
},
"defoldKit.annotations.autosync": {
"defoldKit.annotations.autosync.defold": {
"order": 4,
"type": "boolean",
"default": true,
"description": "Sync Defold API annotations automatically during the launch"
"description": "Sync annotations for Defold API automatically at the extension launch"
},
"defoldKit.dependencies.email": {
"defoldKit.annotations.autosync.libs": {
"order": 5,
"type": "boolean",
"default": true,
"markdownDescription": "Sync annotations for dependencies automatically by watching `.internal/libs` folder"
},
"defoldKit.dependencies.email": {
"order": 6,
"type": "string",
"default": "",
"description": "User email to resolve dependencies"
},
"defoldKit.dependencies.authToken": {
"order": 6,
"order": 7,
"type": "string",
"default": "",
"description": "Authentication token to resolve dependencies"
},
"defoldKit.bundle.ios.debug.provisioningProfile": {
"order": 7,
"order": 8,
"type": "string",
"default": "",
"markdownDescription": "Path to the `*.mobileprovision profile` for the Debug variant"
},
"defoldKit.bundle.ios.debug.identity": {
"order": 8,
"order": 9,
"type": "string",
"default": "",
"markdownDescription": "Code signing identity for `#defoldKit.bundle.ios.debug.provisioningProfile#`"
},
"defoldKit.bundle.ios.release.provisioningProfile": {
"order": 9,
"order": 10,
"type": "string",
"default": "",
"markdownDescription": "Path to the `*.mobileprovision` profile for the Release variant"
},
"defoldKit.bundle.ios.release.identity": {
"order": 10,
"order": 11,
"type": "string",
"default": "",
"markdownDescription": "Code signing identity for `#defoldKit.bundle.ios.release.provisioningProfile#`"
},
"defoldKit.bundle.android.keystore": {
"order": 11,
"order": 12,
"type": "string",
"default": "",
"markdownDescription": "Path to the `*.keystore` file"
},
"defoldKit.bundle.android.keystorePass": {
"order": 12,
"order": 13,
"type": "string",
"default": "",
"markdownDescription": "Path to the `*.keystore.pass.txt` file"
},
"defoldKit.bundle.android.keystoreAlias": {
"order": 13,
"order": 14,
"type": "string",
"default": "",
"markdownDescription": "Name of the alias from the `#defoldKit.bundle.android.keystore#`"
Expand Down

0 comments on commit 77252f1

Please sign in to comment.