Add files via upload

This commit is contained in:
WhySooooFurious 2024-10-18 13:14:19 +08:00 committed by GitHub
parent 47661813fe
commit 43c6159ce8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 173 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://whysoooofurious.netlify.app/files/ESign/ESign_5.0.2.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string></string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>whysoooofurious.esign</string>
<key>bundle-version</key>
<string>1</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>5.0.2</string>
<key>title</key>
<string>ESign</string>
</dict>
</dict>
</array>
</dict>
</plist>

Binary file not shown.

View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://whysoooofurious.netlify.app/files/Feather/Feather_1.0.5.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string></string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>whysoooofurious.feather</string>
<key>bundle-version</key>
<string>1</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>1.0.5</string>
<key>title</key>
<string>Feather</string>
</dict>
</dict>
</array>
</dict>
</plist>

View file

@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Downloads</title>
<style>
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: linear-gradient(145deg, #f5f5f7, #eaeef1);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
/* Card Container */
.container {
max-width: 400px;
width: 100%;
padding: 20px;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), inset 0 -1px 3px rgba(255, 255, 255, 0.5);
backdrop-filter: blur(10px);
border-radius: 16px;
text-align: center;
}
h1 {
font-size: 28px;
margin-bottom: 20px;
color: #1d1d1f;
}
/* Card for Each Download Link */
.card {
background: #ffffff;
margin: 10px 0;
padding: 15px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card a {
text-decoration: none;
color: #007aff;
font-weight: 500;
font-size: 18px;
}
/* Footer for Copyright or Additional Info */
footer {
margin-top: 20px;
font-size: 14px;
color: #86868b;
}
</style>
</head>
<body>
<div class="container">
<h1>Download Files</h1>
<div class="card">
<a href="itms-services://?action=download-manifest&url=https://whysoooofurious.netlify.app/files/ESign/manifest.plist" download>ESign</a>
</div>
<div class="card">
<a href="itms-services://?action=download-manifest&url=https://whysoooofurious.netlify.app/files/Feather/manifest.plist" download>Feather</a>
</div>
<div class="card">
<a href="https://whysoooofurious.netlify.app/files/Certificates/Sunrise-Insurance-Group.esigncert" download>Certificate</a>
</div>
</body>
</html>