Skip to content

Commit d00101e

Browse files
authored
Merge pull request #965 from shanalikhan/v3.4.1
V3.4.1
2 parents a4fe4f6 + 371cb86 commit d00101e

18 files changed

+605
-521
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
[![Version](https://vsmarketplacebadge.apphb.com/version/Shan.code-settings-sync.svg)](https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync) [![Travis](https://img.shields.io/travis/rust-lang/rust.svg)](https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync) [![Master course](https://img.shields.io/badge/Supported%20by-VSCode%20Power%20User%20Course%20%E2%86%92-gray.svg?colorA=444444&colorB=4F44D6)](https://t.co/8BEMyhpKU5?amp=1)
44

5+
6+
#### v3.4.1 - July 22, 2019
7+
8+
* Turn off notifications on code startup [#959](https://github.com/shanalikhan/code-settings-sync/issues/959) - Thanks for PR [#960](https://github.com/shanalikhan/code-settings-sync/pull/960) by [@arnohovhannisyan](https://github.com/arnohovhannisyan)
9+
* Chinese Translation Improved - Thanks for PR [#966](https://github.com/shanalikhan/code-settings-sync/pull/966) by [@linsui](https://github.com/linsui) and [#961](https://github.com/shanalikhan/code-settings-sync/pull/961) by [@ziofat](https://github.com/ziofat)
10+
* Russian Translation Improved - Thanks for PR [#957](https://github.com/shanalikhan/code-settings-sync/pull/957) by [@AndreyWV](https://github.com/AndreyWV)
11+
512
#### v3.4.0 - July 15, 2019
613

714
* Settings Sync now use Webviews to allow you to configure settings [#506](https://github.com/shanalikhan/code-settings-sync/issues/506) - Thanks for PR [#876](https://github.com/shanalikhan/code-settings-sync/pull/876) by [@arnohovhannisyan](https://github.com/arnohovhannisyan)

README.md

Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,21 @@ All extensions and complete User Folder that Contains
7272

7373
## Configure Settings Sync
7474

75+
7576
Settings Sync Configuration page will be opened automatically on code start and requires two things to setup:
7677

7778
1. Github Token
78-
2. Github GIST ID
79+
2. Github Gist Id
7980

8081
Github Token needs to be retrived by your Github account while Settings Sync creates GIST if you are first time user.
8182

8283
Following are the steps you need to perform to configure.
8384

8485
- Click on `Login with Github` .
8586
- Login Github on Browser and close the browser tab once you get Success message.
86-
- If you are using Settings Sync first time GIST will be created automatically - Configuration Completed.
87-
- If you already have GIST, new window will be opened to allow you to select the GIST or `Skip` to create new GIST - Configurartion Completed.
87+
- If you are using Settings Sync first time GIST will be created automatically when you upload your settings.
88+
- If you already have Github Gist, new window will be opened to allow you to select the Github Gist or `Skip` to create new Gist.
89+
8890

8991

9092
![Login with GitHub](https://shanalikhan.github.io/img/login-with-github.png)
@@ -205,11 +207,6 @@ You can customize the settings in gist settings like:
205207

206208
Global settings are present in `syncLocalSettings.json` inside `User` folder. These settings will be shared across multiple Gist Environments.
207209

208-
On Windows, this is `%APPDATA%\Code\User\syncLocalSettings.json`.
209-
210-
Mac, `$HOME/Library/Application Support/Code/User/syncLocalSettings.json`.
211-
212-
Linux, `~/.config/Code/User/syncLocalSettings.json`.
213210

214211
You can customize the sync:
215212

@@ -223,31 +220,37 @@ You can customize the sync:
223220

224221
```json
225222
{
226-
"ignoreUploadFiles": [
227-
"state.*",
228-
"syncLocalSettings.json",
229-
".DS_Store",
230-
"sync.lock",
231-
"projects.json",
232-
"projects_cache_vscode.json",
233-
"projects_cache_git.json",
234-
"projects_cache_svn.json",
235-
"gpm_projects.json",
236-
"gpm-recentItems.json"
237-
],
238-
"ignoreUploadFolders": ["workspaceStorage"],
239-
"ignoreExtensions": ["ignored_extension_name"],
240-
"gistDescription": "Visual Studio Code Settings Sync Gist",
241-
"version": 310,
242-
"token": "YOUR_GITHUB_TOKEN_HERE",
243-
"downloadPublicGist": false,
244-
"supportedFileExtensions": ["json", "code-snippets"],
245-
"openTokenLink": true,
246-
"lastUpload": null,
247-
"lastDownload": null,
248-
"githubEnterpriseUrl": null,
249-
"hostName": null,
250-
"autoUploadDelay": 20
223+
"ignoreUploadFiles": [
224+
"state.*",
225+
"syncLocalSettings.json",
226+
".DS_Store",
227+
"sync.lock",
228+
"projects.json",
229+
"projects_cache_vscode.json",
230+
"projects_cache_git.json",
231+
"projects_cache_svn.json",
232+
"gpm_projects.json",
233+
"gpm-recentItems.json"
234+
],
235+
"ignoreUploadFolders": [
236+
"workspaceStorage"
237+
],
238+
"ignoreExtensions": [],
239+
"gistDescription": "Visual Studio Code Settings Sync Gist",
240+
"version": 340,
241+
"token": "YOUR_GITHUB_TOKEN",
242+
"downloadPublicGist": false,
243+
"supportedFileExtensions": [ "json", "code-snippets" ],
244+
"openTokenLink": true,
245+
"disableUpdateMessage": false,
246+
"lastUpload": null,
247+
"lastDownload": null,
248+
"githubEnterpriseUrl": null,
249+
"askGistName": false,
250+
"customFiles": {},
251+
"hostName": null,
252+
"universalKeybindings": false,
253+
"autoUploadDelay": 20
251254
}
252255
```
253256

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "code-settings-sync",
33
"displayName": "Settings Sync",
44
"description": "Synchronize Settings, Snippets, Themes, File Icons, Launch, Keybindings, Workspaces and Extensions Across Multiple Machines Using GitHub Gist.",
5-
"version": "3.4.0",
5+
"version": "3.4.1",
66
"icon": "images/cloud.png",
77
"publisher": "Shan",
88
"author": {
@@ -187,7 +187,7 @@
187187
"fs-extra": "^8.0.1",
188188
"https-proxy-agent": "^2.2.1",
189189
"lockfile": "^1.0.4",
190-
"lodash": "^4.17.11",
190+
"lodash": "^4.17.15",
191191
"node-fetch": "^2.5.0",
192192
"recursive-readdir": "^2.2.2",
193193
"temp": "^0.9.0",

0 commit comments

Comments
 (0)