Skip to content

Commit 5ec27fa

Browse files
author
nonoroazoro
committed
Merge branch 'develop'
2 parents 6b46fb4 + 8df0cd9 commit 5ec27fa

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelogs
22

3+
## 2.0.7 - December 03, 2018
4+
5+
- Changed: Syncing will remain deactivated until you execute any of its commands.
6+
7+
- Fixed: Sort the extensions in alphabetical order to stabilize the settings.
8+
9+
310
## 2.0.6 - November 29, 2018
411

512
- Fixed: Fixed the [issue](https://github.com/octokit/rest.js/issues/1144) introduced by `deepmerge`.
@@ -21,7 +28,7 @@
2128

2229
- Changed: Refactor and improve code readability (migrate from node async utilities to async functions).
2330

24-
- Fixed: Trying to avoid the repeated creation of gists.
31+
- Fixed: Try not to repeatedly create the gists while uploading the settings.
2532

2633

2734
## 2.0.0 - October 30, 2018

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "syncing",
33
"displayName": "%displayName%",
44
"description": "%description%",
5-
"version": "2.0.6",
5+
"version": "2.0.7",
66
"publisher": "nonoroazoro",
77
"author": {
88
"email": "xiaochao.k@gmail.com",
@@ -35,7 +35,9 @@
3535
"vscode-syncing"
3636
],
3737
"activationEvents": [
38-
"*"
38+
"onCommand:syncing.uploadSettings",
39+
"onCommand:syncing.downloadSettings",
40+
"onCommand:syncing.openSettings"
3941
],
4042
"contributes": {
4143
"commands": [

src/core/Extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class Extension
9898
result.push(item);
9999
}
100100
}
101-
return result;
101+
return result.sort((a, b) => (a.id || "").localeCompare(b.id || ""));
102102
}
103103

104104
/**

0 commit comments

Comments
 (0)