-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.html
More file actions
191 lines (177 loc) · 6.11 KB
/
FAQ.html
File metadata and controls
191 lines (177 loc) · 6.11 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Peppe289">
<meta property="og:title" content="Rave Kernel">
<meta name="description" content="FAQ">
<meta property="og:site_name" content="Rave">
<link rel="stylesheet" type="text/css" href="./resource/css/topbar.css">
<link rel="stylesheet" type="text/css" href="./resource/css/faq.css">
<link rel="stylesheet" type="text/css" href="./resource/css/side_scroll_bar.css">
<link rel="icon" type="image/x-icon" href="resource/img/ravelogo.png">
<title>Rave FAQ</title>
</head>
<style>
body {
margin: 0;
scroll-behavior: smooth;
background-color: black;
}
:root {
scroll-behavior: smooth;
}
</style>
<body>
<div id="TopBar" class="menu">
<div class="space">
<img class="blob" src="./resource/img/ravelogo.png" alt="logo">
<p>Rave</p>
</div>
<ul>
<li><a href="./index.html">Home</a></li>
<span></span>
<li><a href="./index.html#download">Download</a></li>
<span></span>
<li>
<div class="toolbar">
<p>Support</p>
</div>
<div class="childToolBar">
<a href="https://t.me/RaveProjectChat">Dev Chat</a>
<a href="https://t.me/RaveRelease">Channel</a>
</div>
</li>
<span></span>
<li>
<div class="toolbar">
<p>Source</p>
</div>
<div class="childToolBar">
<a href="https://github.com/Peppe289/kernel_xiaomi_lavender">Lavender</a>
<a href="https://github.com/Peppe289/kernel_begonia">Begonia</a>
</div>
</li>
</ul>
</div>
<div style="width: auto; color: rgb(216, 216, 216);
padding: 0; margin: 10px; margin-bottom: 40px;">
<h1>FAQ's Page</h1>
<h2>Before asking in the support group see this page.</h2>
</div>
<hr class="hr-line">
<div class="toggle-helper">
<p class="text all-close">Open All</p>
</div>
<section class="faq-container">
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">What is Rave?</h1>
<!-- faq answer -->
<div class="faq-body">
<p>Rave is a project that concerns linux software,
specifically the kernel. Official releases currently
include Redmi Note 7 and Redmi Note 8 Pro.</p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">Sir can you do OverClock?</h1>
<!-- faq answer -->
<div class="faq-body">
<p>Currently the versions for Redmi Note 7 do not
include OC of any kind. Unlike for Redmi Note 8 Pro
there is an OC GPU at 850Mhz.</p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">Sir my phone exploded with your kernel!</h1>
<!-- faq answer -->
<div class="faq-body">
<p>Any responsibility for damage caused by modding is
yours. I'm not responsible for nuclear explosions
either... So buy a new phone!</p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">Is this a gaming or BB kernel?</h1>
<!-- faq answer -->
<div class="faq-body">
<p>Stop asking it! It is not a specific kernel. It
is useless to classify it. behaves according to usage.</p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">When next release?</h1>
<!-- faq answer -->
<div class="faq-body">
<p>I have a life! I don't know when I will have time
to devote to development</p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">The kernel is not working well!</h1>
<!-- faq answer -->
<div class="faq-body">
<p>Get the ROM and kernel log and send it to the
developer. <a href="./report.html">find how</a></p>
</div>
</div>
<hr class="hr-line">
<div>
<!-- faq question -->
<h1 class="faq-page">QTI version is oldcam or newcam?</h1>
<!-- faq answer -->
<div class="faq-body">
bro, qti version is oldcam. and qti mean vibration control drivers.
</div>
</div>
<hr class="hr-line">
</section>
</body>
<script>
var faq = document.getElementsByClassName("faq-page");
var i;
for (i = 0; i < faq.length; i++) {
faq[i].addEventListener("click", function () {
this.classList.toggle("active");
});
}
// open and close all
var toggle_helper = document.getElementsByClassName("toggle-helper");
var isOpen = 0;
var k;
var text = document.getElementsByClassName("text");
toggle_helper[0].addEventListener("click", function () {
if (isOpen == 0) {
text[0].classList.remove("all-close");
text[0].classList.add("all-open");
} else {
text[0].classList.remove("all-open");
text[0].classList.add("all-close");
}
for (k = 0; k != faq.length; ++k) {
if (isOpen == 0) {
faq[k].classList.add("active");
} else {
faq[k].classList.remove("active");
}
}
if (isOpen == 0) {
isOpen = 1;
} else {
isOpen = 0;
}
});
</script>
</html>