Skip to content

Commit

Permalink
update for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Persio Arco e Flexa authored and Persio Arco e Flexa committed Dec 24, 2016
1 parent a873d94 commit ef7258b
Show file tree
Hide file tree
Showing 23 changed files with 15 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}\\tests.js",
"program": "${workspaceRoot}\\tests\\index.js",
"cwd": "${workspaceRoot}"
},
{
Expand Down
Binary file added TA-Lib-Core.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var edge = require('edge');

var macdFunc = edge.func({
assemblyFile: 'talib\\bin\\Debug\\talib.dll',
assemblyFile: 'node_modules\\talib-c\\talib.dll',
typeName: 'Integration',
methodName: 'Macd'
});
Expand Down
Binary file added node_modules/talib-c/TA-Lib-Core.dll
Binary file not shown.
Binary file added node_modules/talib-c/talib.dll
Binary file not shown.
Binary file added node_modules/talib-c/talib.pdb
Binary file not shown.
32 changes: 0 additions & 32 deletions npm-debug.log

This file was deleted.

Binary file added talib.dll
Binary file not shown.
Binary file added talib.pdb
Binary file not shown.
Binary file modified talib/.vs/talib/v14/.suo
Binary file not shown.
Binary file modified talib/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
6 changes: 6 additions & 0 deletions talib/obj/Debug/talib.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@ E:\Projects\talib-c\talib\bin\Debug\talib.pdb
E:\Projects\talib-c\talib\obj\Debug\talib.dll
E:\Projects\talib-c\talib\obj\Debug\talib.pdb
E:\Projects\talib-c\talib\bin\Debug\TA-Lib-Core.dll
E:\Projects\tablib-c\talib\obj\Debug\talib.dll
E:\Projects\tablib-c\talib\obj\Debug\talib.pdb
E:\Projects\tablib-c\talib.dll
E:\Projects\tablib-c\talib.pdb
E:\Projects\tablib-c\node_modules\talib-c\talib.dll
E:\Projects\tablib-c\node_modules\talib-c\talib.pdb
Binary file modified talib/obj/Debug/talib.dll
Binary file not shown.
Binary file modified talib/obj/Debug/talib.pdb
Binary file not shown.
Binary file not shown.
Empty file.
Empty file.
Empty file.
4 changes: 4 additions & 0 deletions talib/obj/Release/talib.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
E:\Projects\tablib-c\talib\obj\Release\talib.dll
E:\Projects\tablib-c\talib\obj\Release\talib.pdb
E:\Projects\tablib-c\talib.dll
E:\Projects\tablib-c\talib.pdb
Binary file added talib/obj/Release/talib.dll
Binary file not shown.
Binary file added talib/obj/Release/talib.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions talib/talib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>..\node_modules\talib-c\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down
2 changes: 1 addition & 1 deletion tests.js → tests/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var talib = require("./index.js");
var talib = require("../index.js");

talib.macd(0, 0, [12,3,45], 3, 4, 5, [12,3,45], [12,3,45], [12,3,45], function(result){
});

0 comments on commit ef7258b

Please sign in to comment.