Skip to content

Commit

Permalink
Add SystemNinja (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash258 committed Aug 30, 2018
1 parent e2b9506 commit 1a61698
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions SystemNinja.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "3.2.3",
"description": "System Ninja. Fast, powerful and effective system optimization solution for Windows.",
"homepage": "https://singularlabs.com/software/system-ninja/",
"url": "https://singularlabs.com/download/10294/#/cosi.exe",
"hash": "fabf1c5648a91b56f7383f85a2e330d7d1a946bba11bd6ee2d5e95c851754a93",
"pre_install": [
"$FILE = 'config.ini'",
"$CONT = 'AutoUpdate:False'",
"if (!(Test-Path \"$persist_dir\\$FILE\")) {",
" Set-Content \"$dir\\$FILE\" $CONT -Encoding ascii",
"}",
" # Download plugins",
"function download([String] $remote, [String] $local) {",
" (New-Object System.Net.WebClient).DownloadFile($remote, \"$dir\\plugins\\$local\")",
"}",
"if (!(Test-Path \"$persist_dir\\plugins\")) {",
" New-Item \"$dir\\plugins\" -Type Directory | Out-Null",
" download 'https://singularlabs.com/download/11036/' 'Registry.zip'",
" download 'https://singularlabs.com/download/10456/' 'ServiceRegistry.zip'",
" extract_7zip \"$dir\\plugins\\*.zip\" \"$dir\\plugins\"",
" Remove-Item \"$dir\\plugins\\*.zip\" -Force",
"}"
],
"innosetup": true,
"persist": [
"plugins",
"config.ini"
],
"shortcuts": [
[
"System Ninja.exe",
"System Ninja"
]
],
"checkver": "Version ([\\d+\\.]+) released \\d+",
"autoupdate": {
"url": "https://singularlabs.com/download/10294/#/cosi.exe"
}
}
2 changes: 1 addition & 1 deletion TODO/E2B.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"depends": "MPI",
"url": "http://files.easy2boot.com/200003284-5ae465bd40/Easy2Boot_v1.A0_DPMS.exe",
"hash": "5c1e033717ee69b9e141999f60a5c968b02a43f88023055b55ca19dcc9a5e6dc",
"innosetup": true,
"pre_install": [
" # Download MPI",
"$MPI = \"$dir\\_MPI\"",
Expand All @@ -20,6 +19,7 @@
" # Create shortcuts",
"& \"$MPI\\CreateDesktopShortcuts.cmd\""
],
"innosetup": true,
"persist": [
"_ISO",
"_MPI"
Expand Down

0 comments on commit 1a61698

Please sign in to comment.