Created
August 1, 2018 22:48
-
-
Save iTweakOS/e67d8cad78ce7e1a2db31cf86e9c409c to your computer and use it in GitHub Desktop.
Cydia/Sileo Repo Template
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
<!DOCTYPE html> | |
<html> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover"> | |
<title>Template Repo</title> | |
<link rel="icon" href="https://onuniverse-assets.imgix.net/755E8191-9A86-43E2-A71F-2E3CAB34FFF6.jpg?q=75&dpr=1.25" type="image/gif" sizes="16x16"> | |
<head> | |
<style> | |
</style> | |
</head> | |
<body style="background-color:#f2f2f2;"> | |
<br> | |
<center><h1 style="font-family:arial;font-size:20px;color:#444444;">Template's Repo</h1></center> | |
<br> | |
<center><p style="font-family:arial;font-size:25px;color:#444444;">Discription</p></center> | |
<br> | |
<center><input style="font-family:arial;background-color:#f2f2f2;border-radius:10px;display:block;width:200px;padding:10px;" type="text" value="repo link" id="myInput"><button style="font-family:arial;font-size:12px;padding:8px;margin:8px;" onclick="myFunction()">Copy Repo</button></center> | |
<br> | |
<center><a style="text-decoration:none;font-family:arial;font-size:15px;padding:10px;" href="https://ioshacker.com/how-to/how-to-add-a-repo-in-cydia">How To Add A Repo</a></center> | |
</body> | |
</html> | |
<script>function myFunction() { | |
var copyText = document.getElementById("myInput"); | |
copyText.select(); | |
document.execCommand("copy"); | |
alert("Copied the text: " + copyText.value); | |
}</script> |
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
Package: com.site.tweakname | |
Version: 1.0.0 | |
Architecture: iphoneos-arm | |
Maintainer: YourName <YourEmail> | |
Filename: /TweakName.deb | |
Size: (size without ,'s') | |
MD5sum: xxxxxxxxxxxx | |
SHA1: xxxxxxxxxxxx | |
SHA256: xxxxxxxxxxxx | |
Section: (Folder Name) | |
Description: (What Is This Tweak) | |
Author: (Tweak Owner) (Email) | |
Name: (NameHere) |
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
Origin: Template's Private Repo | |
Label: Template's Repo | |
Suite: stable | |
Version: 1.0 | |
Codename: ios | |
Architectures: iphoneos-arm | |
Components: main | |
Description: Name's Repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment