-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AppVeyor builds and fix small issues
- Loading branch information
Showing
6 changed files
with
43 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
*.d | ||
*.db | ||
*.dat | ||
*.dec | ||
*.dll | ||
*.doc | ||
*.exe | ||
|
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
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,6 +1,13 @@ | ||
# cdecrypt | ||
|
||
[![Build status](https://img.shields.io/appveyor/ci/VitaSmith/cdecrypt.svg?style=flat-square)](https://ci.appveyor.com/project/VitaSmith/cdecrypt) | ||
[![Github stats](https://img.shields.io/github/downloads/VitaSmith/gust_tools/total.svg?style=flat-square)](https://github.com/VitaSmith/gust_tools/releases) | ||
[![Latest release](https://img.shields.io/github/release-pre/VitaSmith/gust_tools?style=flat-square)](https://github.com/VitaSmith/gust_tools/releases) | ||
|
||
A commandline utility that can be used to decrypt Wii U NUS content files. | ||
|
||
This is a fork of fork of https://code.google.com/p/cdecrypt intended for modders, | ||
This is a fork of https://code.google.com/p/cdecrypt intended for modders, | ||
who want to explore or modify the content of the Wii U applications they own. | ||
|
||
Unlike other clones, this version of cdecrypt has **no** external dependencies | ||
such as OpenSSL libraries and whatnot. A single executable file is all you need. |
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
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,30 @@ | ||
image: Visual Studio 2019 | ||
|
||
skip_non_tags: true | ||
|
||
environment: | ||
PROJECT_NAME: cdecrypt | ||
FRIENDLY_NAME: cdecrypt | ||
|
||
build_script: | ||
ps: |- | ||
msbuild "$env:PROJECT_NAME.sln" /m /p:Configuration=Release /p:Platform=x86 /p:AppVersion=$env:APPVEYOR_REPO_TAG_NAME /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" | ||
after_build: | ||
ps: |- | ||
7z a "$env:PROJECT_NAME.zip" .\x86\Release\*.exe README.md LICENSE.txt | ||
Get-FileHash "$env:PROJECT_NAME.zip" -Algorithm SHA256 | Format-List | ||
artifacts: | ||
- path: $(PROJECT_NAME).zip | ||
name: $(FRIENDLY_NAME) | ||
|
||
deploy: | ||
release: $(APPVEYOR_REPO_TAG_NAME) | ||
description: $(FRIENDLY_NAME) $(APPVEYOR_REPO_TAG_NAME) | ||
provider: GitHub | ||
auth_token: | ||
secure: NJtYKU1LEV3Y13rBlM/EU93LwU7di/h2o/Sa0niABhIhFqD5Q2/jjbHYbS45IPhf | ||
artifact: /.*\.zip/ | ||
draft: false | ||
prerelease: false |
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