Skip to content

Commit ef3fc93

Browse files
committed
Merge branch 'develop'
2 parents 62a14b4 + b0e706f commit ef3fc93

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

CHANGELOG.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
# Changelogs
22

3+
## 1.5.3 - February 08, 2018
4+
5+
- Fixed: An error introduced by VSCode 1.2.0.
6+
7+
38
## 1.5.2 - December 28, 2017
49

510
- Fixed: A bug caused by adm-zip on Linux Mint and Xubuntu ([Issue #21](https://github.com/nonoroazoro/vscode-syncing/issues/21)).
611
- Changed: Enhance user guides.
712

813

9-
## 1.5.1 - December 4, 2017
14+
## 1.5.1 - December 04, 2017
1015

1116
- Added: Added `Breaking Changes` section in README.
1217
- Changed: Simplified user guide.
1318
- Changed: Reduced extension file size.
1419

1520

16-
## 1.5.0 - December 2, 2017
21+
## 1.5.0 - December 02, 2017
1722

1823
- Changed: Rewrite in `TypeScript`, now we have `typings`.
1924
- Added: Isolate the `http_proxy` setting into `Syncing`'s settings file (which means `Syncing` will no longer read proxy settings from `VSCode` settings), this may prevent a potential failure caused by wrong proxy settings while syncing between different devices (Thank [@mubaidr](https://github.com/mubaidr) for the advice).
@@ -77,7 +82,7 @@
7782
- Fixed: Image URLs are now resolved to `https` URLs as required by VSCode-1.14.
7883

7984

80-
## 1.3.9 - June 9, 2017
85+
## 1.3.9 - June 09, 2017
8186

8287
- Fixed: Using extension's local version to properly remove the old extensions.
8388

@@ -87,32 +92,32 @@
8792
- Changed: Tuning the timeout threshold to reduce the connection failures on slow networks.
8893

8994

90-
## 1.3.7 - May 4, 2017
95+
## 1.3.7 - May 04, 2017
9196

9297
- Fixed: Reset Keyboard-Shortcuts image size.
9398

9499

95-
## 1.3.6 - May 4, 2017
100+
## 1.3.6 - May 04, 2017
96101

97102
- Changed: Resize Keyboard-Shortcuts image.
98103

99104

100-
## 1.3.5 - May 4, 2017
105+
## 1.3.5 - May 04, 2017
101106

102107
- Changed: Update guides.
103108

104109

105-
## 1.3.4 - April 7, 2017
110+
## 1.3.4 - April 07, 2017
106111

107112
- Fixed: Minor fixes to the Downloading and Uploading features.
108113

109114

110-
## 1.3.3 - March 3, 2017
115+
## 1.3.3 - March 03, 2017
111116

112117
- Fixed: Checking user access privileges when uploading.
113118

114119

115-
## 1.3.2 - March 2, 2017
120+
## 1.3.2 - March 02, 2017
116121

117122
- Changed: Update the messages of `Settings File Not Found` and `Setting File Invalid` errors.
118123
- Fixed: Upload an `empty array` (instead of `null`) when extension list is empty, to avoid potential error.
@@ -130,7 +135,7 @@
130135
- Changed: Enhance user guides.
131136

132137

133-
## 1.2.9 - February 8, 2017
138+
## 1.2.9 - February 08, 2017
134139

135140
- Added: Clean up temporary files automatically.
136141
- Changed: Pretty JSON files: `extensions.json`, `syncing.json`, make it a little more user-friendly (Thank [@fengcen](https://github.com/fengcen) for the advice).
@@ -151,7 +156,7 @@
151156
- Fixed: Reload dialog isn't shown when extensions are changed.
152157

153158

154-
## 1.2.5 - November 9, 2016
159+
## 1.2.5 - November 09, 2016
155160

156161
- Added: Hints of the synchronization.
157162
- Added: Show reload dialog when extensions are changed.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "syncing",
33
"displayName": "Syncing",
44
"description": "Sync every settings with your own GitHub Gist.",
5-
"version": "1.5.2",
5+
"version": "1.5.3",
66
"publisher": "nonoroazoro",
77
"author": {
88
"email": "xiaochao.k@gmail.com",

src/utils/Extension.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,10 @@ export default class Extension
212212
{
213213
Toast.clearSpinner("");
214214
}
215-
resolve(result);
215+
216+
// Fixed: Remove ".obsolete" file (added from VSCode v1.2.0) after the synchronization.
217+
fse.remove(path.join(this._env.extensionsPath, ".obsolete"))
218+
.then(() => resolve(result)).catch(() => resolve(result));
216219
}
217220
);
218221
});

0 commit comments

Comments
 (0)