-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegacy.html
More file actions
133 lines (123 loc) · 4.65 KB
/
Copy pathlegacy.html
File metadata and controls
133 lines (123 loc) · 4.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SharpAdb Wiki</title>
<meta name="description" content="The wiki of SharpAdb Projects">
<base href="/legacy.html" />
<link rel="apple-touch-icon" sizes="180x180"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/958d3288-c356-4793-b78a-57d0f6527bae">
<link rel="icon" type="image/png" sizes="32x32"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/db268f7a-3ddc-4a4b-a362-df6a4307aaea">
<link rel="icon" type="image/png" sizes="16x16"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/918e6bfe-ae35-4588-87c4-a118500bbc16">
<link rel="mask-icon"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/f6d2261d-0ce2-4cc8-8246-bbccc0705c66"
color="#202020">
<!-- Styles -->
<script>
if (typeof CSS === 'undefined' || typeof CSS.supports === 'undefined' || !CSS.supports('--a', 0)) {
function addScript(src) {
var script = document.createElement('script');
script.src = src;
var parentNode = document.head || document.scripts[0].parentNode;
parentNode.appendChild(script);
return script;
}
var script = addScript('https://cdn.jsdelivr.net/npm/css-vars-ponyfill');
script.onload = function () { cssVars({ watch: true }); };
}
</script>
<style>
:root {
--siteFont: PT Sans;
--codeFontFamily: Roboto Mono, Monaco, courier, monospace;
--bodyFontSize: 17px;
--accent: #42b983;
--theme-color: var(--accent);
--toogleBackground: #091a28;
--background: #ffffff;
--textColor: #34495e;
--codeTextColor: #525252;
--codeBackgroundColor: #f8f8f8;
--borderColor: rgba(0, 0, 0, 0.07);
--blockQuoteColor: #858585;
--highlightColor: #d22778;
--sidebarSublink: #505d6b;
--codeTypeColor: #091a28;
--coverBackground: linear-gradient(to left bottom, hsl(118, 100%, 85%) 0%, hsl(181, 100%, 85%) 100%);
--toogleImage: url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme/icons/moon.svg);
color-scheme: light;
}
@media (prefers-color-scheme: dark) {
:root {
--toogleBackground: #ffffff;
--background: #091a28;
--textColor: #b4b4b4;
--codeTextColor: #ffffff;
--codeBackgroundColor: #0e2233;
--borderColor: #0d2538;
--sidebarSublink: #b4b4b4;
--codeTypeColor: #ffffff;
--toogleImage: url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme/icons/sun.svg);
color-scheme: dark;
}
}
body {
background-color: var(--background);
color: var(--textColor);
font-family: var(--siteFont), Helvetica Neue, Arial, sans-serif;
font-size: var(--bodyFontSize);
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-darklight-theme/dist/style.min.css"
title="docsify-darklight-theme" />
<style>
@media screen and (max-width: 768px) {
#docsify-darklight-theme {
left: auto;
}
}
</style>
<!-- Polyfill -->
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=Element.prototype.classList"
defer></script>
<!-- Docsify -->
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-darklight-theme/dist/index.min.js" defer></script>
<!-- Prism.JS -->
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-csharp.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-powershell.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-python.min.js" defer></script>
<!-- Config -->
<script>
window.$docsify = {
alias: {
'/.*/_sidebar.md': './_sidebar.md'
},
auto2top: true,
basePath: './source/',
executeScript: true,
homepage: 'introduction.md',
loadSidebar: true,
name: 'AdvancedSharpAdbClient',
nativeEmoji: true,
search: {
depth: 3,
noData: 'No results!',
placeholder: 'Search...'
},
darklightTheme: {
defaultTheme: 'dark',
}
}
</script>
</head>
<body>
<div id="app">Loading...</div>
</body>
</html>