Skip to content

Commit 482ad7e

Browse files
committed
release v1.2.0
1 parent 07c29d9 commit 482ad7e

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
## Features
1010

1111
- Works on Linux, Mac and Windows
12-
- Create a binary distribution of your application
12+
- Creates a binary distribution of your application
1313
- Supports natively any form of `require`, including dynamic ones (e.g. `require(myPath + 'module.js')
1414
- Supports any module, including direct download and compilation from npm
1515
- Native C/C++ modules fully supported
@@ -29,11 +29,13 @@ It takes less than 5 minutes to compile any project with `node-compiler`.
2929

3030
You won't need to modify a single line of code in your application, no matter how you developed it as long as it works in plain node.js!
3131

32-
| | Arch. | Latest Stable |
33-
|:---------------------:|:--------:|----------------------------------------------------------------------------------------|
34-
| **Windows** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-x64.exe/download |
35-
| **macOS** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-darwin-x64/download |
36-
| **Linux** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-linux-x64/download |
32+
| | Architecture | Latest Stable |
33+
|:---------------------:|:------------:|----------------------------------------------|
34+
| **Windows** | x86-64 | http://enclose.io/nodec/nodec-x64.zip |
35+
| **macOS** | x86-64 | http://enclose.io/nodec/nodec-darwin-x64.gz |
36+
| **Linux** | x86-64 | http://enclose.io/nodec/nodec-linux-x64.gz |
37+
38+
For previous releases, cf. http://enclose.io/nodec
3739

3840
### Install on Linux
3941

@@ -47,7 +49,7 @@ First install the prerequisites:
4749

4850
Then,
4951

50-
curl -L https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-linux-x64/download > nodec
52+
curl -L http://enclose.io/nodec/nodec-linux-x64.gz | gunzip > nodec
5153
chmod +x nodec
5254
./nodec
5355

@@ -65,7 +67,7 @@ First install the prerequisites:
6567

6668
Then,
6769

68-
curl -L https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-darwin-x64/download > nodec
70+
curl -L http://enclose.io/nodec/nodec-darwin-x64.gz | gunzip > nodec
6971
chmod +x nodec
7072
./nodec
7173

@@ -82,7 +84,7 @@ First install the prerequisites:
8284
- [Visual Studio 2017](https://www.visualstudio.com/downloads/), any edition (including the Build Tools SKU).
8385
__Required Components:__ "MSbuild", "VC++ 2017 v141 toolset" and one of the Windows SDKs (10 or 8.1).
8486

85-
Then download the executable [nodec-x64.exe](https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-x64.exe/download), optionally rename it to `nodec.exe` and put it under `C:\Windows` (or any other directory that is part of `PATH`). Execute `nodec` from the command line.
87+
Then download the executable [nodec-x64.exe](http://enclose.io/nodec/nodec-x64.zip). Unzip it. Optionally, rename it to `nodec.exe` and put it under `C:\Windows` (or any other directory that is part of `PATH`). Execute `nodec` from the command line.
8688

8789
## Usage
8890

tests/node-compiler-blbt

0 commit comments

Comments
 (0)