Skip to content

Commit 818fbb2

Browse files
committed
Update website for release 0.4.0-beta
1 parent f3f8756 commit 818fbb2

File tree

6 files changed

+45
-17
lines changed

6 files changed

+45
-17
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# render the templates
2424
template = env.get_template(page)
2525
output = template.render(
26-
version="v0.3.5-alpha",
26+
version="v0.4.0-beta",
2727
n_supported_devices=52,
2828
)
2929

public/download.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ <h2 class="subtitle">The OpenAndroidInstaller is available for download for diff
120120
<div class="tile is-ancestor">
121121
<div class="tile is-6 is-vertical is-parent">
122122
<a class="tile is-child box is-clickable" target="_blank"
123-
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.3.5-alpha/openandroidinstaller-v0.3.5-alpha-ubuntu-latest.zip">
123+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.4.0-beta/openandroidinstaller-v0.4.0-beta-ubuntu-latest.zip">
124124
<div class="icon-text title">
125125
<span class="icon is-medium">
126126
<i class="fab fa-ubuntu" aria-hidden="true"></i>
@@ -131,7 +131,7 @@ <h2 class="subtitle">The OpenAndroidInstaller is available for download for diff
131131
<p>Click to download the zipped executable. You may need to give it execution permissions.</p>
132132
</a>
133133
<a class="tile is-child box is-clickable" target="_blank"
134-
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.3.5-alpha/openandroidinstaller-v0.3.5-alpha-ubuntu-20.04.zip">
134+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.4.0-beta/openandroidinstaller-v0.4.0-beta-ubuntu-20.04.zip">
135135
<div class="icon-text title">
136136
<span class="icon is-medium">
137137
<i class="fab fa-ubuntu" aria-hidden="true"></i>
@@ -154,7 +154,7 @@ <h2 class="subtitle">The OpenAndroidInstaller is available for download for diff
154154
</div>
155155
<div class="tile is-vertical is-parent">
156156
<a class="tile is-child box" target="_blank"
157-
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.3.5-alpha/openandroidinstaller-v0.3.5-alpha-windows-latest.zip">
157+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.4.0-beta/openandroidinstaller-v0.4.0-beta-windows-latest.zip">
158158
<div class="icon-text title">
159159
<span class="icon is-medium">
160160
<i class="fab fa-windows" aria-hidden="true"></i>
@@ -164,7 +164,7 @@ <h2 class="subtitle">The OpenAndroidInstaller is available for download for diff
164164
<p>Click to download the zipped exe.</p>
165165
</a>
166166
<a class="tile is-child box is-clickable" target="_blank"
167-
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.3.5-alpha/openandroidinstaller-v0.3.5-alpha-macos-latest.zip">
167+
href="https://github.com/openandroidinstaller-dev/openandroidinstaller/releases/download/v0.4.0-beta/openandroidinstaller-v0.4.0-beta-macos-latest.zip">
168168
<div class="icon-text title">
169169
<span class="icon is-medium">
170170
<i class="fab fa-apple" aria-hidden="true"></i>

public/faq.html

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,9 @@ <h1 class="is-size-1 is-size-3-mobile has-text-weight-bold">Frequently Asked Que
118118
<!-- TOC -->
119119
<div class="box px-6">
120120
<dl>
121-
<li><a href="#what-android-roms-are-supported">What Android ROMs are supported?</a></li>
121+
<li><a href="#what-android-roms-are-supported">Which Android ROMs are supported?</a></li>
122122
<li><a href="#my-device-is-not-supported">My devices is not supported. What can I do?</a></li>
123+
<li><a href="#which-addons">What are addons and which ones are supported?</a></li>
123124
<li><a href="#can-i-use-gapps">How can I use Google Apps for my devices?</a></li>
124125
</dl>
125126
</div>
@@ -164,16 +165,29 @@ <h4>Ask for support:</h4>
164165
device is not supported and likely will not get support.</p>
165166
</div>
166167
</div>
168+
<div class="notification has-background-white-bis p-6">
169+
<h3 id="which-addons" class="title is-3">What are addons and which ones are supported?</h3>
170+
<p>Addons are optional, additional apps and services that are useful to have. Most notable Google Apps and Services as well as MicroG to replace them or the F-Droid FOSS App-Store.</p>
171+
<br>
172+
<p>There are different packages of *Google Apps* available.</p>
173+
<ul>
174+
<li><a href="https://wiki.lineageos.org/gapps#downloads" target="_blank">MindTheGapps</a></li>
175+
<li><a href="https://nikgapps.com/" target="_blank">NikGApps</a></li>
176+
</ul>
177+
<br>
178+
<p>You can find out more about MicroG here: <a href="https://microg.org/" target="_blank">MicroG</a>.
179+
The recommended way to install MicroG is to use the zip file provided here: <a href="https://github.com/FriendlyNeighborhoodShane/MinMicroG_releases/releases" target="_blank">FriendlyNeighborhoodShane/MinMicroG_releases</a>.
180+
The best way to get an installable zip for F-Droid can be found here: <a href="https://f-droid.org/en/packages/org.fdroid.fdroid.privileged.ota/" target="_blank">F-Droid App-Store</a>.
181+
</p>
182+
</div>
167183
<div class="notification has-background-white-bis p-6">
168184
<h3 id="can-i-use-gapps" class="title is-3">How can I use Google Apps for my device?</h3>
169185
<p>While we don't like google apps, some people feel that they need them to leverage the full experience of
170186
their Android devices.
171-
We believe people should be free to do what they want with their devices. This is why we are working on
172-
supporting you to install them as well.
187+
We believe people should be free to do what they want with their devices. So installing them is supported as well.
173188
</p>
174189
<br>
175-
<p>This is not supported yet, so for now we recommend using ROMs with build-in Google Apps like
176-
PixelExperience.</p>
190+
<p>It is still recommended to use ROMs with build-in Google Apps like PixelExperience.</p>
177191
</div>
178192
<!-- Content end -->
179193
</div>

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ <h2 class="mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-bold" id="what-t
276276
</h2>
277277
<div class="content">
278278
<p>
279-
You can use the OpenAndroidInstaller to install all kinds of custom Android ROMs.
279+
You can use the OpenAndroidInstaller to install all kinds of custom Android ROMs and Addons like <a href="https://openandroidinstaller.org/faq.html#which-addons">Google Apps, MicroG or the F-Droid-Store</a>.
280280
</p>
281281
<h4>A selection of different Android-based ROMs and where to find them:</h4>
282282
<ul>

templates/faq.html

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ <h1 class="is-size-1 is-size-3-mobile has-text-weight-bold">Frequently Asked Que
1818
<!-- TOC -->
1919
<div class="box px-6">
2020
<dl>
21-
<li><a href="#what-android-roms-are-supported">What Android ROMs are supported?</a></li>
21+
<li><a href="#what-android-roms-are-supported">Which Android ROMs are supported?</a></li>
2222
<li><a href="#my-device-is-not-supported">My devices is not supported. What can I do?</a></li>
23+
<li><a href="#which-addons">What are addons and which ones are supported?</a></li>
2324
<li><a href="#can-i-use-gapps">How can I use Google Apps for my devices?</a></li>
2425
</dl>
2526
</div>
@@ -64,16 +65,29 @@ <h4>Ask for support:</h4>
6465
device is not supported and likely will not get support.</p>
6566
</div>
6667
</div>
68+
<div class="notification has-background-white-bis p-6">
69+
<h3 id="which-addons" class="title is-3">What are addons and which ones are supported?</h3>
70+
<p>Addons are optional, additional apps and services that are useful to have. Most notable Google Apps and Services as well as MicroG to replace them or the F-Droid FOSS App-Store.</p>
71+
<br>
72+
<p>There are different packages of *Google Apps* available.</p>
73+
<ul>
74+
<li><a href="https://wiki.lineageos.org/gapps#downloads" target="_blank">MindTheGapps</a></li>
75+
<li><a href="https://nikgapps.com/" target="_blank">NikGApps</a></li>
76+
</ul>
77+
<br>
78+
<p>You can find out more about MicroG here: <a href="https://microg.org/" target="_blank">MicroG</a>.
79+
The recommended way to install MicroG is to use the zip file provided here: <a href="https://github.com/FriendlyNeighborhoodShane/MinMicroG_releases/releases" target="_blank">FriendlyNeighborhoodShane/MinMicroG_releases</a>.
80+
The best way to get an installable zip for F-Droid can be found here: <a href="https://f-droid.org/en/packages/org.fdroid.fdroid.privileged.ota/" target="_blank">F-Droid App-Store</a>.
81+
</p>
82+
</div>
6783
<div class="notification has-background-white-bis p-6">
6884
<h3 id="can-i-use-gapps" class="title is-3">How can I use Google Apps for my device?</h3>
6985
<p>While we don't like google apps, some people feel that they need them to leverage the full experience of
7086
their Android devices.
71-
We believe people should be free to do what they want with their devices. This is why we are working on
72-
supporting you to install them as well.
87+
We believe people should be free to do what they want with their devices. So installing them is supported as well.
7388
</p>
7489
<br>
75-
<p>This is not supported yet, so for now we recommend using ROMs with build-in Google Apps like
76-
PixelExperience.</p>
90+
<p>It is still recommended to use ROMs with build-in Google Apps like PixelExperience.</p>
7791
</div>
7892
<!-- Content end -->
7993
</div>

templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ <h2 class="mt-2 mb-3 is-size-1 is-size-3-mobile has-text-weight-bold" id="what-t
176176
</h2>
177177
<div class="content">
178178
<p>
179-
You can use the OpenAndroidInstaller to install all kinds of custom Android ROMs.
179+
You can use the OpenAndroidInstaller to install all kinds of custom Android ROMs and Addons like <a href="https://openandroidinstaller.org/faq.html#which-addons">Google Apps, MicroG or the F-Droid-Store</a>.
180180
</p>
181181
<h4>A selection of different Android-based ROMs and where to find them:</h4>
182182
<ul>

0 commit comments

Comments
 (0)