File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 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 ` .
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
Original file line number Diff line number Diff line change 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" ,
3535 " vscode-syncing"
3636 ],
3737 "activationEvents" : [
38- " *"
38+ " onCommand:syncing.uploadSettings" ,
39+ " onCommand:syncing.downloadSettings" ,
40+ " onCommand:syncing.openSettings"
3941 ],
4042 "contributes" : {
4143 "commands" : [
Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments