Skip to content

Commit c8af557

Browse files
author
Deploy from CI
committed
Deploy e40bdea to gh-pages
0 parents  commit c8af557

File tree

136 files changed

+13185
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+13185
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Deploy
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Install mdbook
15+
run: |
16+
mkdir mdbook
17+
curl -sSL https://github.com/PlayCover/mdBook/releases/download/v0.4.24/mdbook-v0.4.24-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
18+
chmod +x ./mdbook/mdbook
19+
echo `pwd`/mdbook >> $GITHUB_PATH
20+
- name: Deploy GitHub Pages
21+
run: |
22+
cd PlayBook
23+
mdbook build
24+
git worktree add gh-pages
25+
git config user.name "Deploy from CI"
26+
git config user.email ""
27+
cd gh-pages
28+
# Delete the ref to avoid keeping history.
29+
git update-ref -d refs/heads/gh-pages
30+
rm -rf *
31+
mv ../book/* .
32+
echo "docs.playcover.io" > CNAME
33+
echo "permalink: pretty" > _config.yml
34+
git add .
35+
git commit -m "Deploy $GITHUB_SHA to gh-pages"
36+
git push --force --set-upstream origin gh-pages

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
### macOS ###
2+
# General
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Icon must end with two \r
8+
Icon
9+
10+
11+
# Thumbnails
12+
._*
13+
14+
# Files that might appear in the root of a volume
15+
.DocumentRevisions-V100
16+
.fseventsd
17+
.Spotlight-V100
18+
.TemporaryItems
19+
.Trashes
20+
.VolumeIcon.icns
21+
.com.apple.timemachine.donotpresent
22+
23+
# Directories potentially created on remote AFP share
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk
29+
30+
### macOS Patch ###
31+
# iCloud generated files
32+
*.icloud

404.html

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js light">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - PlayBook</title>
7+
<base href="/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content="">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff" />
15+
16+
<link rel="shortcut icon" href="favicon.png">
17+
<link rel="stylesheet" href="css/variables.css">
18+
<link rel="stylesheet" href="css/general.css">
19+
<link rel="stylesheet" href="css/chrome.css">
20+
21+
22+
<!-- Fonts -->
23+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
24+
<link rel="stylesheet" href="fonts/fonts.css">
25+
26+
<!-- Highlight.js Stylesheets -->
27+
<link rel="stylesheet" href="highlight.css">
28+
<link rel="stylesheet" href="tomorrow-night.css">
29+
<link rel="stylesheet" href="ayu-highlight.css">
30+
31+
<!-- Custom theme stylesheets -->
32+
33+
</head>
34+
<body>
35+
<!-- Provide site root to javascript -->
36+
<script>
37+
var path_to_root = "";
38+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
39+
</script>
40+
41+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
42+
<script>
43+
try {
44+
var theme = localStorage.getItem('mdbook-theme');
45+
var sidebar = localStorage.getItem('mdbook-sidebar');
46+
47+
if (theme.startsWith('"') && theme.endsWith('"')) {
48+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
49+
}
50+
51+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
52+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
53+
}
54+
} catch (e) { }
55+
</script>
56+
57+
<!-- Set the theme before any content is loaded, prevents flash -->
58+
<script>
59+
var theme;
60+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
61+
if (theme === null || theme === undefined) { theme = default_theme; }
62+
var html = document.querySelector('html');
63+
html.classList.remove('no-js')
64+
html.classList.remove('light')
65+
html.classList.add(theme);
66+
html.classList.add('js');
67+
</script>
68+
69+
<!-- Hide / unhide sidebar before it is displayed -->
70+
<script>
71+
var html = document.querySelector('html');
72+
var sidebar = 'hidden';
73+
if (document.body.clientWidth >= 1080) {
74+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
75+
sidebar = sidebar || 'visible';
76+
}
77+
html.classList.remove('sidebar-visible');
78+
html.classList.add("sidebar-" + sidebar);
79+
</script>
80+
81+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
82+
<div class="sidebar-scrollbox">
83+
<ol class="chapter"><li class="chapter-item expanded affix "><a href="Introduction.html">Introduction</a></li><li class="chapter-item expanded "><a href="getting_started/index.html"><strong aria-hidden="true">1.</strong> Getting Started</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="getting_started/download_playcover.html"><strong aria-hidden="true">1.1.</strong> Download & Install PlayCover</a></li><li class="chapter-item expanded "><a href="getting_started/download_ipa.html"><strong aria-hidden="true">1.2.</strong> Download, Install, and Update iOS .ipa files</a></li><li class="chapter-item expanded "><a href="getting_started/troubleshoot_login.html"><strong aria-hidden="true">1.3.</strong> Troubleshoot App Login Issues</a></li><li class="chapter-item expanded "><a href="getting_started/migrating.html"><strong aria-hidden="true">1.4.</strong> Migrating from an Older Version</a></li></ol></li><li class="chapter-item expanded "><a href="keymapping/index.html"><strong aria-hidden="true">2.</strong> Keymapping</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="keymapping/using_making_keymaps.html"><strong aria-hidden="true">2.1.</strong> Using & Making Keymaps</a></li><li class="chapter-item expanded "><a href="keymapping/import_export_keymaps.html"><strong aria-hidden="true">2.2.</strong> Importing & Exporting Keymaps</a></li><li class="chapter-item expanded "><a href="keymapping/common_issues.html"><strong aria-hidden="true">2.3.</strong> Common Issues</a></li></ol></li><li class="chapter-item expanded "><a href="settings/index.html"><strong aria-hidden="true">3.</strong> Settings</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="settings/keymapping.html"><strong aria-hidden="true">3.1.</strong> Keymapping</a></li><li class="chapter-item expanded "><a href="settings/graphics.html"><strong aria-hidden="true">3.2.</strong> Graphics</a></li><li class="chapter-item expanded "><a href="settings/jailbreak_bypass.html"><strong aria-hidden="true">3.3.</strong> Jailbreak Bypass</a></li><li class="chapter-item expanded "><a href="settings/miscellaneous.html"><strong aria-hidden="true">3.4.</strong> Miscellaneous</a></li></ol></li><li class="chapter-item expanded "><a href="other_features/index.html"><strong aria-hidden="true">4.</strong> Other features</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="other_features/sideloadly_export.html"><strong aria-hidden="true">4.1.</strong> Sideloadly Export</a></li><li class="chapter-item expanded "><a href="other_features/account_manager.html"><strong aria-hidden="true">4.2.</strong> Account Manager</a></li><li class="chapter-item expanded "><a href="other_features/playcover_settings.html"><strong aria-hidden="true">4.3.</strong> PlayCover Settings</a></li><li class="chapter-item expanded "><a href="other_features/ipa_library.html"><strong aria-hidden="true">4.4.</strong> IPA Library</a></li></ol></li><li class="chapter-item expanded "><a href="miscellaneous/index.html"><strong aria-hidden="true">5.</strong> Miscellaneous</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="miscellaneous/blocked_apps.html"><strong aria-hidden="true">5.1.</strong> Blocked Apps</a></li><li class="chapter-item expanded "><a href="miscellaneous/entitlements.html"><strong aria-hidden="true">5.2.</strong> Configuring Entitlements for Jailbreak Bypass</a></li><li class="chapter-item expanded "><a href="miscellaneous/app_purchases.html"><strong aria-hidden="true">5.3.</strong> In-app Purchases</a></li><li class="chapter-item expanded "><a href="miscellaneous/playchain.html"><strong aria-hidden="true">5.4.</strong> PlayChain</a></li><li class="chapter-item expanded "><a href="miscellaneous/photo_storage.html"><strong aria-hidden="true">5.5.</strong> Photo Storage</a></li><li class="chapter-item expanded "><a href="miscellaneous/projects_utilities.html"><strong aria-hidden="true">5.6.</strong> Related Projects and Utilities</a></li><li class="chapter-item expanded "><a href="miscellaneous/run_with_xcode.html"><strong aria-hidden="true">5.7.</strong> Running Apps with Xcode</a></li></ol></li><li class="chapter-item expanded "><a href="building_from_source/index.html"><strong aria-hidden="true">6.</strong> Building from Source</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="building_from_source/why_build.html"><strong aria-hidden="true">6.1.</strong> Why Build From Source?</a></li><li class="chapter-item expanded "><a href="building_from_source/install_prerequisites.html"><strong aria-hidden="true">6.2.</strong> Install Prerequisites</a></li><li class="chapter-item expanded "><a href="building_from_source/building.html"><strong aria-hidden="true">6.3.</strong> Building</a></li></ol></li><li class="chapter-item expanded "><a href="contributing/index.html"><strong aria-hidden="true">7.</strong> Contributing</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="contributing/forking_making_pr.html"><strong aria-hidden="true">7.1.</strong> Forking & Making PRs</a></li><li class="chapter-item expanded "><a href="contributing/code_of_conduct.html"><strong aria-hidden="true">7.2.</strong> Code of Conduct</a></li></ol></li></ol>
84+
</div>
85+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
86+
</nav>
87+
88+
<div id="page-wrapper" class="page-wrapper">
89+
90+
<div class="page">
91+
<div id="menu-bar-hover-placeholder"></div>
92+
<div id="menu-bar" class="menu-bar sticky bordered">
93+
<div class="left-buttons">
94+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
95+
<i class="fa fa-bars"></i>
96+
</button>
97+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
98+
<i class="fa fa-search"></i>
99+
</button>
100+
</div>
101+
102+
103+
<div class="right-buttons">
104+
<a href="https://github.com/PlayCover/PlayBook" title="Git repository" aria-label="Git repository">
105+
<i id="git-repository-button" class="fa fa-github"></i>
106+
</a>
107+
108+
</div>
109+
</div>
110+
111+
<div id="search-wrapper" class="hidden">
112+
<form id="searchbar-outer" class="searchbar-outer">
113+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
114+
</form>
115+
<div id="searchresults-outer" class="searchresults-outer hidden">
116+
<div id="searchresults-header" class="searchresults-header"></div>
117+
<ul id="searchresults">
118+
</ul>
119+
</div>
120+
</div>
121+
122+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
123+
<script>
124+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
125+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
126+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
127+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
128+
});
129+
</script>
130+
131+
<div id="content" class="content">
132+
<main>
133+
<h2 id="404---that-page-doesnt-seem-to-exist"><a class="header" href="#404---that-page-doesnt-seem-to-exist">404 - That page doesn't seem to exist</a></h2>
134+
<blockquote>
135+
<p>Return <a href="./Introduction.html">home</a>.</p>
136+
</blockquote>
137+
138+
</main>
139+
140+
<nav class="nav-wrapper" aria-label="Page navigation">
141+
<!-- Mobile navigation buttons -->
142+
143+
144+
<div style="clear: both"></div>
145+
</nav>
146+
</div>
147+
</div>
148+
149+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
150+
151+
</nav>
152+
153+
</div>
154+
155+
156+
157+
158+
<script>
159+
window.playground_copyable = true;
160+
</script>
161+
162+
163+
<script src="elasticlunr.min.js"></script>
164+
<script src="mark.min.js"></script>
165+
<script src="searcher.js"></script>
166+
167+
<script src="clipboard.min.js"></script>
168+
<script src="highlight.js"></script>
169+
<script src="book.js"></script>
170+
171+
<!-- Custom JS scripts -->
172+
<script src="prettylink.js"></script>
173+
174+
175+
</body>
176+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs.playcover.io

FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FontAwesome/fonts/FontAwesome.ttf

162 KB
Binary file not shown.
162 KB
Binary file not shown.

0 commit comments

Comments
 (0)