Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shanalikhan committed Jul 18, 2019
1 parent bdf437f commit cbb3fcf
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 62 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

[![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)


#### v3.4.1 - July 18, 2019

* 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)
* 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)
* Russian Translation Improved - Thanks for PR [#957](https://github.com/shanalikhan/code-settings-sync/pull/957) by [@AndreyWV](https://github.com/AndreyWV)

#### v3.4.0 - July 15, 2019

* 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)
Expand Down
67 changes: 35 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ Following are the steps you need to perform to configure.

- Click on `Login with Github` .
- Login Github on Browser and close the browser tab once you get Success message.
- If you are using Settings Sync first time GIST will be created automatically - Configuration Completed.
- 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.
- If you are using Settings Sync first time GIST will be created automatically.
- If you already have GIST, new window will be opened to allow you to select the GIST or `Skip` to create new GIST.

Your Github Token and GIST ID has been configured to use for download and upload processes.


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

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

On Windows, this is `%APPDATA%\Code\User\syncLocalSettings.json`.

Mac, `$HOME/Library/Application Support/Code/User/syncLocalSettings.json`.

Linux, `~/.config/Code/User/syncLocalSettings.json`.

You can customize the sync:

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

```json
{
"ignoreUploadFiles": [
"state.*",
"syncLocalSettings.json",
".DS_Store",
"sync.lock",
"projects.json",
"projects_cache_vscode.json",
"projects_cache_git.json",
"projects_cache_svn.json",
"gpm_projects.json",
"gpm-recentItems.json"
],
"ignoreUploadFolders": ["workspaceStorage"],
"ignoreExtensions": ["ignored_extension_name"],
"gistDescription": "Visual Studio Code Settings Sync Gist",
"version": 310,
"token": "YOUR_GITHUB_TOKEN_HERE",
"downloadPublicGist": false,
"supportedFileExtensions": ["json", "code-snippets"],
"openTokenLink": true,
"lastUpload": null,
"lastDownload": null,
"githubEnterpriseUrl": null,
"hostName": null,
"autoUploadDelay": 20
"ignoreUploadFiles": [
"state.*",
"syncLocalSettings.json",
".DS_Store",
"sync.lock",
"projects.json",
"projects_cache_vscode.json",
"projects_cache_git.json",
"projects_cache_svn.json",
"gpm_projects.json",
"gpm-recentItems.json"
],
"ignoreUploadFolders": [
"workspaceStorage"
],
"ignoreExtensions": [],
"gistDescription": "Visual Studio Code Settings Sync Gist",
"version": 340,
"token": "YOUR_GITHUB_TOKEN",
"downloadPublicGist": false,
"supportedFileExtensions": [ "json", "code-snippets" ],
"openTokenLink": true,
"disableUpdateMessage": false,
"lastUpload": null,
"lastDownload": null,
"githubEnterpriseUrl": null,
"askGistName": false,
"customFiles": {},
"hostName": null,
"universalKeybindings": false,
"autoUploadDelay": 20
}
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-settings-sync",
"displayName": "Settings Sync",
"description": "Synchronize Settings, Snippets, Themes, File Icons, Launch, Keybindings, Workspaces and Extensions Across Multiple Machines Using GitHub Gist.",
"version": "3.4.0",
"version": "3.4.1",
"icon": "images/cloud.png",
"publisher": "Shan",
"author": {
Expand Down
35 changes: 14 additions & 21 deletions release-notes.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
{
"changes": [
{
"details": "Settings Sync now use Webviews to allow you to configure settings",
"details": "Improved UI : Don't show again button",
"type": "NEW",
"color": "success",
"author": "arnohovhannisyan",
"pullRequest": "876"
"pullRequest": "960"
},
{
"details": "code snippets not being synced after update to 3.3.0",
"details": "Chinese localization improved.",
"type": "FIX",
"color": "danger",
"author": "arnohovhannisyan",
"pullRequest": "928"
},
{
"details": "Implement upload delay setting",
"type": "NEW",
"color": "success",
"author": "arnohovhannisyan",
"pullRequest": "925"
"author": "ziofat",
"pullRequest": "961"
},
{
"details": "Dont Upload If GIST and settings content are the same",
"type": "NEW",
"details": "Chinese localization improved.",
"type": "FIX",
"color": "danger",
"author": "arnohovhannisyan",
"pullRequest": "923"
"author": "linsui",
"pullRequest": "966"
},
{
"details": "Prevent accidental upload",
"type": "NEW",
"details": "Russian localization improved.",
"type": "FIX",
"color": "danger",
"author": "arnohovhannisyan",
"pullRequest": "923"
"author": "AndreyWV",
"pullRequest": "957"
}
],
"currentVersion": "v3.4.0"
"currentVersion": "v3.4.1"
}
2 changes: 1 addition & 1 deletion src/environmentPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function osTypeFromString(osName: string): OsType {
}

export class Environment {
public static CURRENT_VERSION: number = 340;
public static CURRENT_VERSION: number = 341;
public static getVersion(): string {
return (
Environment.CURRENT_VERSION.toString().slice(0, 1) +
Expand Down
6 changes: 5 additions & 1 deletion ui/landing-page/landing-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,15 @@ <h3 class="mx-auto mb-3 text-white-50a">
>Questions & Issues</a
>
<br />
<a href="https://github.com/shanalikhan/code-settings-sync/blob/master/CONTRIBUTING.md"
>Contribute</a
>
<br />
</div>
<div class="col col-two">
<h3 class="mb-3">Sponsors</h3>
<p class="mx-auto mt-2 mb-3 text-white-50a">
Settings Sync is looking for sponsors to display here. Contact me on
Contact me on
<a href="https://twitter.com/itsShanKhan">Twitter</a> or
<a href="https://github.com/shanalikhan">GitHub</a>
</p>
Expand Down
10 changes: 4 additions & 6 deletions ui/shared/page-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ alt="Settings Sync"
Settings Sync
</h1>
<h2 class="mx-auto pt-2">
<b>Synchronize</b> settings, snippets, themes, file icons, launch,
keybindings, workspaces and extensions across <b>multiple</b> machines
using GitHub Gist
<b>Synchronize</b> settings, snippets, themes, icons, launch,
keybindings, workspaces and extensions across machines
using GitHub Gist.
</h2>
<h2 class="mx-auto pb-4">
by <a href="https://github.com/shanalikhan">@shanalikhan</a>
</h2>`;
<br/>`;

0 comments on commit cbb3fcf

Please sign in to comment.