diff --git a/CHANGELOG.md b/CHANGELOG.md index b9b11ac..e3e4a2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,16 @@ All notable changes to the "al-object-helper" extension will be documented in this file. +## [1.3.1] - 28.06.2020 +### Fixed +- Bug, if input is same as a Object, it doesn't find the file + ## [1.3.0] - 28.06.2020 -## Added +### Added - New Command "Package Search" - Compatibility for multiple App Packages -## Changed +### Changed - List View for AL Objects ## [1.2.0] - 25.06.2020 @@ -46,6 +50,7 @@ All notable changes to the "al-object-helper" extension will be documented in th ## [1.0.0] - Initial release +[1.3.1]: https://github.com/DSaladinCH/al-object-helper/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/DSaladinCH/al-object-helper/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/DSaladinCH/al-object-helper/compare/v1.1.5...v1.2.0 [1.1.5]: https://github.com/DSaladinCH/al-object-helper/compare/v1.1.3...v1.1.5 diff --git a/README.md b/README.md index 58c3e76..64cfe24 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,10 @@ Just use the Object Shortcut and the ID. **Newest Releases** +### 1.3.1 + +Fixed Bug, if input is same as a Object, it doesn't find the file + ### 1.3.0 Added new Command "Package Search" to search only the objects of a specific package diff --git a/extension.js b/extension.js index c3aa63c..8cc52ee 100644 --- a/extension.js +++ b/extension.js @@ -59,7 +59,7 @@ async function activate(context) { }); quickPick.onDidAccept(function (event) { const alObjectItem = ALObjectItem.convertToALObjectItem(quickPick.selectedItems[0]); - if (alObjectItem.label == quickPick.value) + if (alObjectItem.label == quickPick.value && alObjectItem.userInputField) reader.openFile(quickPick.value, ''); else { if (alObjectItem.extension) diff --git a/package.json b/package.json index 484f706..e1a085c 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "AL Object Helper", "description": "VS Code Extension for the AL Language", "publisher": "DSaladin", - "version": "1.3.0", + "version": "1.3.1", "icon": "Images/alLanguageHelper.png", "license": "MIT", "engines": {