Skip to content

Commit 7d339a8

Browse files
committed
release 3.0.1
2 parents c1910e0 + e89c15c commit 7d339a8

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelogs
22

3+
## 3.0.1 - May 10, 2019
4+
5+
- Changed: No longer pause auto-sync during uploading.
6+
7+
38
## 3.0.0 - May 10, 2019
49

510
- Added: Add support for settings **auto-sync**.

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": "%displayName%",
44
"description": "%description%",
5-
"version": "3.0.0",
5+
"version": "3.0.1",
66
"publisher": "nonoroazoro",
77
"author": {
88
"email": "xiaochao.k@gmail.com",

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ async function _uploadVSCodeSettings()
8888
if (_isReady && !_isSynchronizing)
8989
{
9090
_isSynchronizing = true;
91-
_pauseAutoSyncService();
9291
try
9392
{
9493
const syncingSettings = await _syncing.prepareUploadSettings(true);
@@ -105,7 +104,6 @@ async function _uploadVSCodeSettings()
105104
finally
106105
{
107106
_isSynchronizing = false;
108-
_resumeAutoSyncService();
109107
}
110108
}
111109
}

0 commit comments

Comments
 (0)