Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Anderson committed Dec 27, 2019
2 parents 433a6b8 + e99927b commit fd65f8b
Show file tree
Hide file tree
Showing 34 changed files with 1,774 additions and 2,597 deletions.
5 changes: 3 additions & 2 deletions .debug
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Debugging file flag for development.
Placing this file in the root of the repository will activate "debug" logging in Push.
; Debugging file flag for development.
; Placing this file in the root of the repository will activate "debug" logging in Push.
trace_allow = ""
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Push Changelog
All notable changes to Push will be documented in this file. If this file has appeared within Visual Studio Code, it means that Push has had a notable update. You can easily disable this feature by setting the `njpPush.showChangelog` to `false`.

## 0.7.3
- Added support for multiple files to be selected within the explorer pane.
- Improved handling for transfer collissions (especially when dealing with multiple single files).
- Updated various dependencies.
- Various optimisations/bug fixes.

## 0.7.21
- Fixed icon size.

Expand Down
4 changes: 2 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ exports.activate = (context) => {

vscode.window.registerTreeDataProvider(
'push.watchListExplorer',
ui.explorers.watchList
ui.push.explorers.watchList
);

vscode.window.registerTreeDataProvider(
'push.uploadQueueExplorer',
ui.explorers.uploadQueue
ui.push.explorers.uploadQueue
);
};

Expand Down
6 changes: 3 additions & 3 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"es6"
]
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
}
Loading

0 comments on commit fd65f8b

Please sign in to comment.