Skip to content

Commit

Permalink
Fix for electron-builder issues #581 and #584 (#3)
Browse files Browse the repository at this point in the history
* Fix NPM package repository URL

* Update description to reflect ability to sign from Windows

* Fix typo

* Fix for electron-builder issues #581 and #584
  • Loading branch information
Daniel Pereira authored and develar committed Jul 14, 2016
1 parent 2afdd2e commit 034ff45
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "signcode-tf",
"version": "0.7.4",
"version": "0.7.5",
"description": "Sign Windows executables from Windows or MacOS",
"repository": "https://github.com/develar/signcode",
"main": "index.js",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">

<assemblyIdentity
name="Microsoft.Windows.Build.Signing.mssign32.dll"
version="0.0.0.0"
/>

<file name="mssign32.dll">
</file>

</assembly>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">

<assemblyIdentity
name="Microsoft.Windows.Build.Signing.wintrust.dll"
version="0.0.0.0"
/>

<file name="wintrust.dll">
</file>

</assembly>
Binary file added vendor/windows-6/makecat.exe
Binary file not shown.
21 changes: 21 additions & 0 deletions vendor/windows-6/makecat.exe.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
name=" "
version="0.0.0.0"
/>
<dependency>
<dependentAssembly>
<assemblyIdentity
name="Microsoft.Windows.Build.Signing.wintrust.dll"
version="0.0.0.0"
/>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Binary file added vendor/windows-6/mssign32.dll
Binary file not shown.
Binary file modified vendor/windows-6/signtool.exe
Binary file not shown.
26 changes: 26 additions & 0 deletions vendor/windows-6/signtool.exe.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">

<assemblyIdentity
name=" "
version="0.0.0.0"
/>

<dependency>
<dependentAssembly>
<assemblyIdentity
name="Microsoft.Windows.Build.Signing.mssign32.dll"
version="0.0.0.0"
/>
</dependentAssembly>
</dependency>

<dependency>
<dependentAssembly>
<assemblyIdentity
name="Microsoft.Windows.Build.Signing.wintrust.dll"
version="0.0.0.0"
/>
</dependentAssembly>
</dependency>
</assembly>
Binary file added vendor/windows-6/wintrust.dll
Binary file not shown.

0 comments on commit 034ff45

Please sign in to comment.