Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicSaladin committed Jun 28, 2020
2 parents 7a1f804 + 515c34e commit 2f54023
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 2f54023

Please sign in to comment.