-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated & Signed Binaries For 1.8.0.1
- Updated version number - Updated project file for new SDK - Created new, signed binaries - Added file for cleanup and binary signing
- Loading branch information
1 parent
e0b75d6
commit 5479543
Showing
6 changed files
with
37 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@ECHO OFF | ||
|
||
:: cert info to use for signing | ||
SET CERT=9CC90E20ABF21CDEF09EE4C467A79FD454140C5A | ||
set TSAURL=http://time.certum.pl/ | ||
set LIBNAME=Repacls | ||
set LIBURL=https://github.com/NoMoreFood/Repacls | ||
|
||
:: do cleanup | ||
FOR %%X IN (Debug Temp .vs) DO ( | ||
FORFILES /S /P "%~dp0.." /M "%%X" /C "CMD /C IF @isdir==TRUE RD /S /Q @path" | ||
) | ||
FOR %%X IN (Win32 x64 Debug Release) DO ( | ||
FORFILES /S /P "%~dp0.." /M "*.*pdb" /C "CMD /C DEL /Q @path" | ||
FORFILES /S /P "%~dp0.." /M "*.*obj" /C "CMD /C DEL /Q @path" | ||
FORFILES /S /P "%~dp0.." /M "*.log" /C "CMD /C DEL /Q @path" | ||
) | ||
|
||
:: setup environment variables based on location of this script | ||
SET BINDIR=%~dp0Release | ||
|
||
:: determine 32-bit program files directory | ||
IF DEFINED ProgramFiles SET PX86=%ProgramFiles% | ||
IF DEFINED ProgramFiles(x86) SET PX86=%ProgramFiles(x86)% | ||
|
||
:: setup paths | ||
SET PATH=%WINDIR%\system32;%WINDIR%\system32\WindowsPowerShell\v1.0 | ||
SET PATH=%PATH%;%PX86%\Windows Kits\10\bin\x64 | ||
SET PATH=%PATH%;%PX86%\Windows Kits\8.1\bin\x64 | ||
|
||
:: sign the main executables | ||
signtool sign /sha1 %CERT% /fd sha1 /tr %TSAURL% /td sha1 /d %LIBNAME% /du %LIBURL% "%BINDIR%\x86\*.exe" "%BINDIR%\x64\*.exe" | ||
signtool sign /sha1 %CERT% /as /fd sha256 /tr %TSAURL% /td sha256 /d %LIBNAME% /du %LIBURL% "%BINDIR%\x86\*.exe" "%BINDIR%\x64\*.exe" | ||
|
||
PAUSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#pragma once | ||
|
||
#define VERSION_STRING "1.8.0.0" | ||
#define VERSION_STRING "1.8.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters