Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
as3boyan committed Jun 19, 2014
1 parent f6f4ded commit 619f181
Show file tree
Hide file tree
Showing 6 changed files with 1,238 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.hxml
Expand Up @@ -3,4 +3,4 @@
-neko run.n
-debug
-dce full
-lib hxssl
#-lib hxssl
4 changes: 2 additions & 2 deletions haxelib.json
Expand Up @@ -4,8 +4,8 @@
"license": "MIT",
"tags": ["html5", "node-webkit", "chrome", "node.js"],
"description": "Haxelib which downloads node-webkit binary for your platform and keeps it updated",
"version": "1.0.6",
"releasenote": "Add hxssl.ndll for Windows",
"version": "1.0.7",
"releasenote": "Use downloaded page instead of accessing node-webkit github page(to avoid hxssl issues, seems like it need to be rebuild)",
"contributors": ["as3boyan"],
"dependencies": {}
}
Binary file removed hxssl.ndll
Binary file not shown.
1,233 changes: 1,233 additions & 0 deletions rogerwang_node-webkit.html

Large diffs are not rendered by default.

Binary file modified run.n
Binary file not shown.
3 changes: 2 additions & 1 deletion src/Main.hx
Expand Up @@ -192,7 +192,8 @@ class Main
{
Sys.println("Looking for node-webkit url...");

var data = Http.requestUrl("https://github.com/rogerwang/node-webkit");
var data = sys.io.File.getContent("rogerwang_node-webkit.html");
//Http.requestUrl("https://github.com/rogerwang/node-webkit");

var eregLinux64bit = ~/<li>Linux:[\t ]*<a href="[^"]+[^h]+href="([^"]+)/g;
var eregLinux32bit = ~/<li>Linux:[\t ]*<a href="([^"]+)/g;
Expand Down

0 comments on commit 619f181

Please sign in to comment.