Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
manifestinteractive committed Aug 1, 2022
2 parents 1ddf576 + b051d84 commit e665024
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ Change Log

> Here's our record of all notable changes made to to this project
v1.3.1
---

* Fixed Naming Issue in PackageJSON

v1.3.0
---

* Added JSON Settings Linter Fix ( Thanks @MatthewTh0 )
* Updated default null settings to `{}` vs `null` ( Thanks @Himadu2000 )
* Add ability to not show picker and just directly exclude selected file ( Thanks @rw3iss )
* Added system indicator to VS Code File Excludes that cannot be removed
* Add the ability to not show picker and directly exclude selected file ( Thanks @rw3iss )
* Updated Workspace Detection to handle a few more unique use cases
* Updated default null settings to {} vs null ( Thanks @Himadu2000 )
* Added JSON Settings Linter Fix ( Thanks @MatthewTh0 )

v1.2.0
---
Expand Down
2 changes: 1 addition & 1 deletion extension/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function activate(context) {

// Get Extension Version Info
const currentVersion = context.globalState.get('explorer-exclude.version')
const packageVersion = vscode.extensions.getExtension('SFCCDevOps.explorer-exclude-vscode-extension').packageJSON.version
const packageVersion = vscode.extensions.getExtension('PeterSchmalfeldt.explorer-exclude').packageJSON.version

// Check if there was a recent change to installed version
if (currentVersion !== packageVersion) {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "explorer-exclude",
"displayName": "Explorer Exclude",
"version": "1.3.0",
"version": "1.3.1",
"description": "Explorer Exclude lets you easily Hide Files & Folders with Dynamic Filter Options. Add a New 'Hidden Items' Explorer Pane for you to Manage and Quickly Toggle Visibility of Hidden Items.",
"license": "MIT",
"publisher": "PeterSchmalfeldt",
Expand Down

0 comments on commit e665024

Please sign in to comment.