Skip to content

Commit e51fb36

Browse files
Merge changes
2 parents b417f20 + e65080c commit e51fb36

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This can be obtained by installing Visual Studio 2013 / 2015 or downloading:
4040
More details how to obtain and install F# on different platforms can be found on http://fsharp.org/
4141

4242
## WebPreview
43-
`WebView` allows the user to override the default conventions used to run and preview web applications. To do so You need to create an `.ionide` file in the root folder of Your project opened by Atom. The configuration file uses the [TOML](https://github.com/toml-lang/toml) language.
43+
`WebView` allows the user to override the default conventions used to run and preview web applications. To do so You need to create an `.ionide` file in the root folder of Your project opened by VSCode. The configuration file uses the [TOML](https://github.com/toml-lang/toml) language.
4444

4545
Here is the default configuration values used if the `.ionide` file doesn't exist or some entry is missing:
4646

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.6.10 - 19.05.2016
2+
* Update FSAC
3+
14
### 1.6.8 - 28.04.2016
25
* Fix typo
36

paket.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NUGET
22
remote: https://www.nuget.org/api/v2
3-
FAKE (4.25.5)
3+
FAKE (4.26)
44
FunScript (1.1.94)
55
Microsoft.Bcl (1.1.10) - framework: net10, net11, net20, net30, net35, net40, net40-full
66
Microsoft.Bcl.Build (>= 1.0.14)
@@ -21,7 +21,7 @@ GIT
2121
(8b996684032cebe1ba052696fb30081fab023b1f)
2222
build: build.cmd
2323
remote: https://github.com/ionide/FsAutoComplete.git
24-
(40248ae40c8b30921565fb573091e3917ff2a3cf)
24+
(e291884b2b52da09f24924a899e8ac84be42c9bc)
2525
build: build.cmd LocalRelease
2626
remote: https://github.com/fsprojects/Forge.git
2727
(0ce0281d45e8f7368f447fc33bf22406b4992801)
@@ -30,5 +30,5 @@ GIT
3030
(8061b5296321522633b16d7df66af8cf5fcd3784)
3131
GITHUB
3232
remote: fsharp/FAKE
33-
modules/Octokit/Octokit.fsx (26ea4dbb3d60352b88162bb32577015af2e7c44e)
33+
modules/Octokit/Octokit.fsx (32e262c11174b196dc8af16a577c8c3aa0ab0b2b)
3434
Octokit

release/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This can be obtained by installing Visual Studio 2013 / 2015 or downloading:
4040
More details how to obtain and install F# on different platforms can be found on http://fsharp.org/
4141

4242
## WebPreview
43-
`WebView` allows the user to override the default conventions used to run and preview web applications. To do so You need to create an `.ionide` file in the root folder of Your project opened by Atom. The configuration file uses the [TOML](https://github.com/toml-lang/toml) language.
43+
`WebView` allows the user to override the default conventions used to run and preview web applications. To do so You need to create an `.ionide` file in the root folder of Your project opened by VSCode. The configuration file uses the [TOML](https://github.com/toml-lang/toml) language.
4444

4545
Here is the default configuration values used if the `.ionide` file doesn't exist or some entry is missing:
4646

release/RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.6.10 - 19.05.2016
2+
* Update FSAC
3+
14
### 1.6.8 - 28.04.2016
25
* Fix typo
36

release/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Ionide-fsharp",
3-
"version": "1.6.8",
3+
"version": "1.6.10",
44
"publisher": "Ionide",
55
"description": "F# Language Support",
66
"categories":[

src/main.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ let translateModules (typ : System.Type) fileName =
7676
yield "var _funcs = wrappedFunScript();"
7777
yield "var _self = _funcs[0]();"
7878
yield ""
79-
yield "exports.activate = _funcs[1](_self);" ]
79+
yield "exports.activate = _funcs[1](_self);"
80+
yield "exports.deactivate = _funcs[2](_self);" ]
8081
|> String.concat "\n"
8182
System.IO.File.WriteAllText(System.IO.Path.Combine(root, fileName), moduleJS)
8283

0 commit comments

Comments
 (0)