Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Shan Ali Khan authored and shanalikhan committed Sep 1, 2018
1 parent 72dbb7d commit b26256f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### Version - 3.1.2
* Extension CLI Download Improvements.

#### Version - 3.1.1
* Fixed : Extension Download fails for Code Insiders and mac Users [#618](https://github.com/shanalikhan/code-settings-sync/issues/618)
* Fixed : Upload issues for mac [#622](https://github.com/shanalikhan/code-settings-sync/issues/622)
Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ I encourage you to create new pages or make helpful edits to all parts of the wi

## Slack

Join our public Slack:
Join our public Slack:

<a href="https://join.slack.com/t/codesettingssync/shared_invite/enQtMzE3MjY5NTczNDMwLTYwMTIwNGExOGE2MTJkZWU0OTU5MmI3ZTc4N2JkZjhjMzY1OTk5OGExZjkwMDMzMDU4ZTBlYjk5MGQwZmMyNzk">
<img src="https://shanalikhan.github.io/img/slack.PNG" alt="Drawing" style="width: 50px;"/>
Expand All @@ -34,6 +34,8 @@ npm install
code .
```

Checkout the lastest version branch available and Hit `F5` to run Settings Sync in debug mode.

Git and Node should be enough to run this extension. Execute the commands above and you will be able to run the extension in Code.

**PR Base Branch Guideline:**
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.1.1",
"version": "3.1.2",
"icon": "images/cloud.png",
"publisher": "Shan",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/environmentPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as vscode from "vscode";
import { OsType } from "./enums";

export class Environment {
public static CURRENT_VERSION: number = 311;
public static CURRENT_VERSION: number = 312;
public static getVersion(): string {
return (
Environment.CURRENT_VERSION.toString().slice(0, 1) +
Expand Down
6 changes: 1 addition & 5 deletions src/service/pluginService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,7 @@ export class PluginService {
}
} else if (osType === OsType.Mac) {
codeLastFolder = "Frameworks";
if (isInsiders) {
codeCliPath = "Resources/app/bin/code-insiders";
} else {
codeCliPath = "Resources/app/bin/code";
}
codeCliPath = "Resources/app/bin/code";
}
myExt =
'"' +
Expand Down

0 comments on commit b26256f

Please sign in to comment.