Skip to content

Commit b26256f

Browse files
Shan Ali Khanshanalikhan
authored andcommitted
1 parent 72dbb7d commit b26256f

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### Version - 3.1.2
2+
* Extension CLI Download Improvements.
3+
14
#### Version - 3.1.1
25
* Fixed : Extension Download fails for Code Insiders and mac Users [#618](https://github.com/shanalikhan/code-settings-sync/issues/618)
36
* Fixed : Upload issues for mac [#622](https://github.com/shanalikhan/code-settings-sync/issues/622)

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ I encourage you to create new pages or make helpful edits to all parts of the wi
1010

1111
## Slack
1212

13-
Join our public Slack:
13+
Join our public Slack:
1414

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

37+
Checkout the lastest version branch available and Hit `F5` to run Settings Sync in debug mode.
38+
3739
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.
3840

3941
**PR Base Branch Guideline:**

package.json

Lines changed: 1 addition & 1 deletion
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.1.1",
5+
"version": "3.1.2",
66
"icon": "images/cloud.png",
77
"publisher": "Shan",
88
"author": {

src/environmentPath.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as vscode from "vscode";
88
import { OsType } from "./enums";
99

1010
export class Environment {
11-
public static CURRENT_VERSION: number = 311;
11+
public static CURRENT_VERSION: number = 312;
1212
public static getVersion(): string {
1313
return (
1414
Environment.CURRENT_VERSION.toString().slice(0, 1) +

src/service/pluginService.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -315,11 +315,7 @@ export class PluginService {
315315
}
316316
} else if (osType === OsType.Mac) {
317317
codeLastFolder = "Frameworks";
318-
if (isInsiders) {
319-
codeCliPath = "Resources/app/bin/code-insiders";
320-
} else {
321-
codeCliPath = "Resources/app/bin/code";
322-
}
318+
codeCliPath = "Resources/app/bin/code";
323319
}
324320
myExt =
325321
'"' +

0 commit comments

Comments
 (0)