-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
1865 lines (1861 loc) · 111 KB
/
index.html
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- PAGE settings -->
<link rel="icon" href="favicon.ico">
<title>Bliss OS For PC</title>
<meta name="description" content="Open Source OS for PC's, based on
AOSP">
<meta name="keywords" content="blissroms, bliss, os, x86, aosp, android,
rom, teambliss, android x86">
<!-- CSS dependencies -->
<link rel="stylesheet" href="neon.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/buttonstyle.css">
<link rel="stylesheet" href="css/table.css">
<link rel="stylesheet" href="css/chat-style.css">
<!-- Script: Make my navbar transparent when the document is scrolled to top -->
<script src="js/navbar-ontop.js"></script>
<style> a>* {
pointer-events: none;
}
</style>
<script data-ad-client="ca-pub-7639560510014441" async="" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
<!-- Navbar -->
<div class="container">
<nav class="navbar navbar-expand-lg fixed-top bg-primary
navbar-dark">
<div class="container">
<a class="navbar-brand" style="text-align: center;" href="index.html"><img src="images/bliss_icon_light.png" class="d-inline-block align-top" style="width: 40%;" alt="logo"></a>
<a class="navbar-brand" href="index.html">
<span style="font-weight: 500">Bliss OS</span>
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbar2SupportedContent" aria-controls="navbar2SupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center
justify-content-end" id="navbar2SupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item mx-2">
<a class="nav-link" href="index.html#features">Features</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="index.html#team">Team</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="https://blisslabs.org" target="_blank">Org</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="index.html#documentation">Docs</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" target="_blank" href="https://blog.blissos.org">Blog</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="licensing.html">Licensing</a>
</li>
</ul>
<a class="btn navbar-btn mx-2 btn-secondary shadow" href="index.html#download">Download</a>
</div>
</div>
</nav>
</div>
<!-- Cover -->
<section class="section-fade-out-white pt-2 main_background">
<div class="container pt-6">
<div class="row mb-5">
<div class="col-md-6 text-left">
<h2 class="display-4 mb-4">Bliss OS for PC</h2>
<h3>Android for your PC</h3>
<p>An Android-based open source OS that incorporates many optimizations, features, and that supports many more devices. What's more? It's available for just about any Chromebook, PC or tablet released in the last 10 years.</p>
</div>
<div class="col-md-5 align-self-center">
<img class="img-fluid mx-auto" style="
border: 1rem solid transparent;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;
" src="images/bliss15_home.jpg">
</div>
</div>
</div>
</section>
<!-- Features -->
<section class="my-5 pb-5" id="features">
<div class="container">
<div class="text-center mb-5">
<h1>Bliss OS Features</h1>
</div>
<div class="row">
<div class="col-sm text-center my-3">
<h4 class="text-primary">Focus on design</h4>
<p class="mb-4">We have a minimal theme design, without any bloatware or unwanted adware apps</p>
<h4 class="text-primary pt-4">Customized settings</h4>
<p class="mb-4">We offer many customizable options for screens, big and small, that allow you to setup your device for whatever task is at hand</p>
</div>
<div class="col-sm text-center">
<img class="img-fluid" src="images/thinkpad1.png">
<img class="img-fluid mt-4" style="
border: 10px solid transparent;
border-radius: 10px;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;
transform: skew(-8deg, 0deg) rotate(6deg);" src="images/bliss14_menu_s.jpg">
</div>
<div class="col-sm text-center mt-3">
<h4 class="text-primary">Performance</h4>
<p class="mb-4">We built the OS with a focus on speed and stability with tweaks to assist in the most demanding use cases</p>
<h4 class="text-primary pt-3">Compatibility</h4>
<p class="mb-4">We bring Bliss to every device we can, and our PC builds even include extra ARM/ARM64 compatibility so you can use your favorite apps</p>
</div>
</div>
</div>
</section>
<!-- Desktop or Tablet UI -->
<section class="my-5" id="about">
<div class="main_grid my-5" style="
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
align-items: center">
<div class="w-75">
<img class="img-fluid position-relative" style="
border: 1rem solid transparent;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;
right: -70%;
z-index: -1;" src="images/bliss15_multi_left.jpg">
</div>
<div class="">
<img class="img-fluid position-relative" style="
border: 1rem solid transparent;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;
z-index: 1000;" src="images/bliss15_multi_menu.jpg">
</div>
<div class="w-75">
<img class="img-fluid position-relative" style="
border: 1rem solid transparent;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;
right: 50%;
z-index: -1;" src="images/bliss15_about.jpg">
</div>
</div>
<div class="container">
<div class="text-left align-items-start">
<h2>Desktop or Tablet UI</h2>
<p class="mb-3">Bliss OS lets the user choose between Desktop or Tablet UI, based on the launcher being used. You can even mix the two to truly make your system your own</p>
</div>
<div class="row my-5">
<div class="col-sm">
<h5>Taskbar, by @farmerbb</h5>
<p class="small">An Open Source Desktop launcher that allows the use of a bottom taskbar, with Bliss button (start menu)</p>
</div>
<div class="col-sm">
<h5>Smart Dock by @axel358</h5>
<p class="small">A user-friendly desktop mode launcher that offers a modern and customizable user interface </p>
</div>
<div class="col-sm">
<h5>BoringDroid by @utzcoz</h5>
<p class="small">An integrated desktop launcher with tasks, built into the navigation bar (Experimental, only on 14.10)</p>
</div>
<div class="col-sm">
<h5>AOSP's Quickstep</h5>
<p class="small">The classic Launcher3 from AOSP with some minor tweaks for desktop mode and navigation</p>
</div>
</div>
</div>
</section>
<!-- More Compatibility -->
<section class="py-5 bg-secondary">
<div class="container">
<div class="row" style="align-items: center;">
<div class="col-md-6">
<img class="img-fluid" style="
border: 1rem solid transparent;
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
background: linear-gradient(to left, #191919,
#292929) border-box;" src="images/bliss15_multi.jpg">
</div>
<div class="col-md-6 p-4">
<h2>More Compatibility</h2>
<p> Bliss OS comes with a variety of added features for compatibility, be it ARM/ARM64 app support on your PC, letting you use the games & apps you know and love or VA-API hardware accelerated video decoding to watch your favorite streaming platform. Also, with the latest XtMapper keymapper, you will be able to control your apps using a keyboard & mouse with ease. <small> <br>(More app support will be added soon, also Xtmapper is still in early development phase.)</small>
</p>
</div>
</div>
</div>
</section>
<div class="py-5">
<div class="container">
<div class="row">
<div class="px-5 col-md-8 text-center mx-auto">
<h3 class="text-primary display-4"><b>Immutable System</b></h3>
<h2 class="my-3">Bliss OS uses an immutable system setup by default </h2>
<p class="mb-3">This ensures the operating system's core remains unchanged. The root file system for the immutable system remains read-only, also allowing for a secure way to update and maintain critical system structure. </p>
</div>
</div>
</div>
</div>
<section class="py-4" style="background: rgb(0 86 157);">
<div class="container">
<div class="row my-4" style="align-items: center;">
<div class="col-md-6 text-right">
<h2 class="h2"><a class="text-light" href="https://kernelsu.org/">Pre-rooted with KernelSU </a></h2>
<p>Bliss OS is the first Android-x86 derivative that includes weishu's KernelSU that works with the systems immutability. With it, you can easily grant root permission for apps and even install Magisk modules without having to install Magisk or write to the system partition. <small><br>(KernelSU is still in the beta stage, and modules support is still experimental)</small>
</p>
</div>
<div class="col-md-4 p-4">
<img class="w-50 shadow-lg" src="images/kernsu.png" alt="kernelsu">
</div>
</div>
</div>
</section>
<!-- Visit Social Communites -->
<section class="py-4 community_banner" style="background: #037;">
<div class="container">
<div class="row">
<div class="my-3 col-sm col-md-7">
<h2 class="text-left">Visit our social communities and share your experience with developers</h2>
</div>
<div class="col-sm col-md-3 d-flex p-4">
<a href="https://www.facebook.com/BlissFamilyOfROMs/" target="_blank">
<i class="mr-2 text-light fa-2x"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-facebook"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg></i>
</a>
<a href="https://instagram.com/blissos_org" target="_blank">
<i class="mx-2 text-light fa-2x"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-instagram"><rect width="20" height="20" x="2" y="2" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" x2="17.51" y1="6.5" y2="6.5"/></svg></i>
</a>
<a href="https://github.com/blissroms-x86" target="_blank">
<i class="mx-2 text-light fa-2x"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-github"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"/><path d="M9 18c-4.51 2-5-2-7-2"/></svg></i>
</a>
<a href="https://twitter.com/blissos_org" target="_blank">
<i class="ml-2 text-light fa-2x"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-twitter"><path d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"/></svg></i>
</a>
<a href="https://discord.com/invite/F9n5gbdNy2" target="_blank">
<i class="ml-2 text-light fa-2x"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-message-square-quote"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/><path d="M8 12a2 2 0 0 0 2-2V8H8"/><path d="M14 12a2 2 0 0 0 2-2V8h-2"/></svg></i>
</a>
</div>
</div>
</div>
</section>
<!-- Privacy Section -->
<section class="py-4">
<div class="container">
<h2 class="text-center">Everything We Do is Open Source</h2>
<p class="mb-4 text-center">Many of our competitors offer their OS as a free download, but with no source-code available, that typically leaves <b>you</b> as the product, with no way of knowing what data they are collecting or if they are selling your data as a way to make profits.<br><b>By making Bliss OS open source and being part of a non-profit org, it can be ensured that nothing is being sold and no malicious code is included.</b>
</p>
<div class="row">
<div class="col-sm mt-2">
<h2>We respect your privacy.</h2>
<p class="mb-0">Not only do we respect your privacy, but we vow to never include anything to put your data in jeopardy. We are also constantly updating things with the latest security updates from Google for the currently active and maintained versions of Bliss OS. And as an open source project, all our source code is also available, so you and others can ensure your data and safety are at the top of our concerns. For users that have an even greater concern about their user data, we also offer Bliss OS builds that are Google Services free, and come with F-Droid, Aurora & microG for a <i>truly</i> secure user experience. </p>
</div>
<div class="col-sm">
<div class="text-center mt-4">
<img class="img-fluid" src="images/Personal-Data-sm.png">
</div>
</div>
</div>
</div>
</section>
<!-- We volunteer our time -->
<section class="py-4 bg-secondary">
<div class="container">
<div class="row">
<div class="col-sm col-md-4 text-center p-3" style="">
<img class="w-50" src="images/coffee-break.svg">
</div>
<div class="col-sm col-md-7" style="">
<div class="text-left">
<h2>We volunteer our time.</h2>
<p>We are just one of many other projects under BlissLabs, a 501(c3) nonprofit, run by people that donate their free time towards the project. We do our best to bring a quality OS to your device, while working a real job on the side in most cases. Please consider showing us we're on the right track by donating using the button below.</p>
<a href="https://opencollective.com/bliss-os/donate" target="_blank" class="btn btn-primary shadow">Buy Us a Coffee</a>
</div>
</div>
</div>
</div>
</section>
<!-- Bliss OS Versions -->
<section class="download-section pt-5">
<div class="container">
<h2 class="text-center">Bliss OS Versions</h2>
<table class="table table-borderless text-center text-dark">
<thead>
<tr class="p3">
<th class="bg-warning" scope="col"></th>
<th class="bg-warning" scope="col">Bliss OS 16 (Beta) (Android 13)</th>
<th class="bg-danger" scope="col">Bliss OS Zenith (Bleeding-Edge) (Android 13)</th>
</tr>
<tr class="bg-success p3">
<th scope="col"></th>
<th scope="col">Bliss OS 14 (Stable) (Android 11)</th>
<th scope="col">Bliss OS 15 (Stable) (Android 12L)</th>
</tr>
</thead>
<tbody>
<tr class="bg-dark p3">
<th scope="row"></th>
<td>Bliss OS 11 (Deprecated) (Android 9.0)</td>
<td>Bliss OS 12 (Deprecated) (Android 10)</td>
</tr>
</tbody>
</table>
<div class="alert alert-danger my-4" role="alert" style="text-align: center !important">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">
<i class="fas fa-exclamation-triangle"></i> Please Note <i class="fas fa-exclamation-triangle"></i>
</h4>
<p>Our Bliss OS 11 & 12 builds are no longer maintained, and updates will not be delivered. <br><i>It is <b>HIGHLY</b> recommended to download Bliss OS 14.x or 15.x builds instead. Support and updates are available for those versions.</i>
</p>
</div>
</div>
</section><!-- Bliss OS Flavors & Variations -->
<section>
<div class="container my-5">
<h2>Bliss OS comes in a few flavors</h2>
<p>Since we're usually working across multiple versions of Android with Bliss OS, things can get a little confusing when it comes to figuring out what build type is right for you. Here is an explanation of our currently supported variants to help things along.</p>
<div class="row mt-4">
<div class="col-sm p-2 mx-2 bg-primary rounded">
<h2 class="my-3">Bliss OS 14.10.x</h2>
<p>These are builds based on Android 11 and BlissROMs sources. These builds are considered stable.</p>
<a class="btn btn-secondary mb-3 mx-1" target="blank" href="https://forum.xda-developers.com/t/bliss-os-x86-for-pcs-12-x-14-x-development-beta-builds.4004419/">XDA thread</a>
</div>
<div class="col-sm p-2 mx-2 rounded bg-success">
<h2 class="my-3"> Bliss OS 15.9.x</h2>
<p>These are builds based on Android 12L and BlissROMs sources. These builds are considered stable.</p>
<a class="btn btn-secondary mb-3" target="blank" href="https://forum.xda-developers.com/t/bliss-os-x86-for-pcs-12-x-14-x-development-beta-builds.4004419/">XDA thread</a>
</div>
</div>
<div class="row mt-4">
<div class="col-sm p-2 mx-2 rounded bg-warning">
<h2 class="my-3">Bliss OS 16.x</h2>
<p>These are builds based on Android 13 and BlissROMs sources. These builds are considered beta.</p>
<a class="btn btn-secondary mb-3 mx-1" target="blank" href="https://xdaforums.com/t/bliss-os-x86_64-v2-for-pcs-16-x-development-beta-builds.4608697/">XDA thread</a>
</div>
<div class="col-sm p-2 mx-2 rounded bg-danger">
<h2 class="my-3"> Bliss OS Zenith</h2>
<p>These are generic builds based on the latest stable Linux kernel and the latest version of Bliss OS (Android 13). These builds are considered bleeding-edge.</p>
<a class="btn btn-secondary mb-3 disabled" target="blank" href="https://forum.xda-developers.com/t/bliss-os-x86-for-pcs-12-x-14-x-development-beta-builds.4004419/">XDA thread</a>
</div>
</div>
</div>
<div class="container my-5 text-left">
<h2>Bliss OS Variations</h2>
<p class="mb-3">Info about what is included in the different builds and how it relates to your hardware.</p>
<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> App Services </button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body"> These are the apps included in the builds. Each set is a minimal set of default apps, providing basic functionaliy. <br>
<br>
<ul>
<li>Stock or Vanilla - Normally barebones, minimal apps added. Perfect for product testing <br>
</li>
<li>FOSS - Includes Free and Open Source apps and app store solutions (Aurora Droid for open-source apps from F-Droid repos, and Aurora Store for accessing the Google Play library of apps) <br>
</li>
<li>Gapps/GMS - Includes Google Play Services (Minimal set of apps, comparible to Pico/Nano) <br>
</li>
</ul>
<br> Find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/build-filenames/" target="_blank">Bliss OS Knowledge Base</a>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"> Kernel </button>
</h5>
</div>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body"> The Kernel is the most low level part of a system, providing the functionality that Bliss and the majority of other operating systems rely on. As such, it is the most crucial part of the OS. New Kernels can cause instability in older hardware so choose according to your computer's functionality. <br>
<br> How to identify the Kernel version of the ISO file? <br> This is the naming system we use to define kernel & system architecture in our ISO builds. <br>
<br>
<ul>
<li>x86/x86_64: Device Architecture, 32bit or 64bit respectively <br>
</li>
<li>_k-xxxx: Kernel Branch, e.g. _k-5.4 <br>
</li>
</ul>
<br> Find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/build-filenames/" target="_blank">Bliss OS Knowledge Base</a>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> Mesa </button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body"> Mesa is an open-source implementation of the OpenGL specification. OpenGL is a programming library for writing interactive 3D applications. <br> Basically, it's what handles anything 3D for Android-x86. <br>
<br> How to identify the Mesa version of the ISO file? <br>
<br>
<ul>
<li>_m-xxxxx: Mesa Branch, e.g: m-r-x86 (r/r-x86 means stock Mesa branch in current manifest) <br>
</li>
<br> Find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/build-filenames/" target="_blank">Bliss OS Knowledge Base</a>
</ul>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingfour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapsefour" aria-expanded="false" aria-controls="collapsefour"> Native-bridge </button>
</h5>
</div>
<div id="collapsefour" class="collapse" aria-labelledby="headingfour" data-parent="#accordionExample">
<div class="card-body"> Native-Bridge is an ARM translation layer for android x86 developed by Intel and Google to run ARM apps on x86 architecture. <br>
<br> How to identify the Native-Bridge type of the ISO file? <br>
<br>
<ul>
<li>houdini - Includes Intel's Houdini (Works with most Intel CPU's and some recent AMD CPU's) <br>
</li>
<li>libndk - Includes Google's libndk-translation (Works on all CPU's, but not as efficient as Houdini) <br>
</li>
</ul>
<br> Find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/build-filenames/" target="_blank">Bliss OS Knowledge Base</a>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingfive">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapsefive" aria-expanded="false" aria-controls="collapsefive"> Supported CPU's </button>
</h5>
</div>
<div id="collapsefive" class="collapse" aria-labelledby="headingfive" data-parent="#accordionExample">
<div class="card-body"> All Intel & AMD x86_64-v2 compatible CPUs <br> You can find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/hardware-compatibility/" target="_blank">Bliss OS Knowledge Base</a> or <a href="https://en.wikipedia.org/wiki/X86-64#Microarchitecture_levels"> Wikipedia</a> & <a href="https://developer.android.com/ndk/guides/abis"> Android Developers Documentation.</a><br>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingsix">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapsesix" aria-expanded="false" aria-controls="collapsesix"> Supported GPU's </button>
</h5>
</div>
<div id="collapsesix" class="collapse" aria-labelledby="headingsix" data-parent="#accordionExample">
<div class="card-body"> All of our builds include support for the following GPU's: <br>
<br>
<ul>
<li>Intel / AMD iGPU - all supported + Vulkan <br>
</li>
<li>AMD Desktop GPUs - mostly supported + Vulkan <br>
</li>
<li>Nvidia Desktop GPUs - poor support - no vulkan <br>
</li>
</ul>
<br> Find more info on <a href="https://docs.blissos.org/knowledgebase/frequently-asked-questions/hardware-compatibility/" target="_blank">Bliss OS Knowledge Base</a>
</div>
</div>
</div>
</div>
</section><!-- Bliss OS Download Section -->
<section id="download" class="text-center my-5">
<div class="container">
<!-- Bliss OS Download Model -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Thank you for choosing Bliss OS</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Your download will start automatically...<br> Meanwhile you can help us to spread the word of Bliss by telling your friends about it. It only takes a second, and helps us tremendously.</p>
<div class="alert alert-danger my-5" role="alert">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">Heads Up</h4>
<p>
<b>** If the download does not redirect, please check your browsers popup settings for this site. **</b>
</p>
</div>
<p></p>
</div>
<div class="modal-footer">
<div class="row">
<div class="px-3 py-3">
<a href="https://opencollective.com/bliss-os/donate" target="_blank">
<img src="https://opencollective.com/bliss-os/donate/button@2x.png?color=white" width="260">
</a>
</div>
</div>
<div class="row">
<button type="button" class="btn
btn-primary
px-3" data-toggle="collapse" data-target="#share-toggle" aria-expanded="false" aria-controls="share-toggle">
<i class="fas fa-share-alt"></i> Share </button>
</div>
</div>
<!-- using Sharingbuttons.io buttons for sharing on social media -->
<div class="row collapse my-3" id="share-toggle">
<div class="col-sm">
<!-- Sharingbutton Facebook -->
<a class="resp-sharing-button__link" href="https://facebook.com/sharer/sharer.php?u=https%3A%2F%2Fblissos.org%2F" target="_blank" rel="noopener" aria-label="">
<div class="resp-sharing-button
resp-sharing-button--facebook
resp-sharing-button--small">
<div aria-hidden="true" class="resp-sharing-button__icon
resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M18.77
7.46H14.5v-1.9c0-.9.6-1.1
1-1.1h3V.5h-4.33C10.24.5
9.5 3.44 9.5
5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z"></path>
</svg>
</div>
</div>
</a>
<!-- Sharingbutton Twitter -->
<a class="resp-sharing-button__link" href="https://twitter.com/intent/tweet?text=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20android%20x86%20distro%20called%20%23blissos&url=https%3A%2F%2Fblissos.org%2F" target="_blank" rel="noopener" aria-label="">
<div class="resp-sharing-button
resp-sharing-button--twitter
resp-sharing-button--small">
<div aria-hidden="true" class="resp-sharing-button__icon
resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M23.44
4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96
1.32-2.02-.88.52-1.86.9-2.9
1.1-.82-.88-2-1.43-3.3-1.43-2.5
0-4.55 2.04-4.55
4.54 0
.36.03.7.1
1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6
1.45-.6 2.3 0
1.56.8
2.95 2
3.77-.74-.03-1.44-.23-2.05-.57v.06c0
2.2 1.56 4.03
3.64
4.44-.67.2-1.37.2-2.06.08.58
1.8 2.26 3.12
4.25
3.16C5.78 18.1
3.37
18.74 1 18.46c2
1.3
4.4 2.04 6.97
2.04
8.35 0
12.92-6.92
12.92-12.93 0-.2
0-.4-.02-.6.9-.63
1.96-1.22
2.56-2.14z"></path>
</svg>
</div>
</div>
</a>
<!-- Sharingbutton Reddit -->
<a class="resp-sharing-button__link" href="https://reddit.com/submit?url=https%3A%2F%2Fblissos.org%2F&resubmit=true&title=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20android%20x86%20distro%20called%20%23blissos" target="_blank" rel="noopener" aria-label="">
<div class="resp-sharing-button
resp-sharing-button--reddit
resp-sharing-button--small">
<div aria-hidden="true" class="resp-sharing-button__icon
resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24
24">
<path d="M24
11.5c0-1.65-1.35-3-3-3-.96
0-1.86.48-2.42
1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05
1.52-3.7.72-.4
1.73-.24 3
.5C17.2 6.3
18.46 7.5 20
7.5c1.65 0
3-1.35
3-3s-1.35-3-3-3c-1.38
0-2.54.94-2.88
2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95
3.47-2
4.55-2.33.08-4.45.7-6.1
1.72C4.86
8.98
3.96 8.5 3
8.5c-1.65
0-3
1.35-3 3 0
1.32.84 2.44
2.05
2.84-.03.22-.05.44-.05.66
0 3.86 4.5 7
10
7s10-3.14
10-7c0-.22-.02-.44-.05-.66
1.2-.4
2.05-1.54
2.05-2.84zM2.3
13.37C1.5
13.07
1 12.35 1
11.5c0-1.1.9-2
2-2 .64 0
1.22.32
1.6.82-1.1.85-1.92
1.9-2.3
3.05zm3.7.13c0-1.1.9-2
2-2s2 .9 2
2-.9
2-2
2-2-.9-2-2zm9.8
4.8c-1.08.63-2.42.96-3.8.96-1.4
0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18
1.83 1.06
4.76
1.06 6.6 0
.23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1
0-2-.9-2-2s.9-2
2-2 2 .9 2
2-.9
2-2
2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82
1.6-.82 1.1
0 2
.9 2 2 0
.84-.53
1.57-1.3
1.87z"></path>
</svg>
</div>
</div>
</a>
<!-- Sharingbutton VK -->
<a class="resp-sharing-button__link" href="http://vk.com/share.php?title=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20android%20x86%20distro%20called%20%23blissos&url=https%3A%2F%2Fblissos.org%2F" target="_blank" rel="noopener" aria-label="">
<div class="resp-sharing-button
resp-sharing-button--vk
resp-sharing-button--small">
<div aria-hidden="true" class="resp-sharing-button__icon
resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
24
24">
<path d="M21.547
7h-3.29a.743.743
0 0
0-.655.392s-1.312
2.416-1.734
3.23C14.734
12.813
14
12.126
14
11.11V7.603A1.104
1.104 0
0 0
12.896
6.5h-2.474a1.982
1.982 0
0
0-1.75.813s1.255-.204
1.255
1.49c0
.42.022
1.626.04
2.64a.73.73
0 0
1-1.272.503
21.54
21.54
0 0
1-2.498-4.543.693.693
0 0
0-.63-.403h-2.99a.508.508
0 0
0-.48.685C3.005
10.175
6.918
18 11.38
18h1.878a.742.742
0 0 0
.742-.742v-1.135a.73.73
0 0 1
1.23-.53l2.247
2.112a1.09
1.09 0 0
0
.746.295h2.953c1.424
0
1.424-.988.647-1.753-.546-.538-2.518-2.617-2.518-2.617a1.02
1.02 0 0
1-.078-1.323c.637-.84
1.68-2.212
2.122-2.8.603-.804
1.697-2.507.197-2.507z"></path>
</svg>
</div>
</div>
</a>
<!-- Sharingbutton Telegram -->
<a class="resp-sharing-button__link" href="https://telegram.me/share/url?text=Hey%20guys%2C%20I'm%20switching%20to%20this%20amazing%20android%20x86%20distro%20called%20%23blissos&url=https%3A%2F%2Fblissos.org%2F" target="_blank" rel="noopener" aria-label="">
<div class="resp-sharing-button
resp-sharing-button--telegram
resp-sharing-button--small">
<div aria-hidden="true" class="resp-sharing-button__icon
resp-sharing-button__icon--solid">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0
0
24 24">
<path d="M.707
8.475C.275
8.64
0
9.508
0
9.508s.284.867.718
1.03l5.09
1.897
1.986
6.38a1.102
1.102
0
0 0
1.75.527l2.96-2.41a.405.405
0 0
1
.494-.013l5.34
3.87a1.1
1.1
0 0
0
1.046.135
1.1
1.1
0 0
0
.682-.803l3.91-18.795A1.102
1.102
0
0 0
22.5.075L.706
8.475z"></path>
</svg>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Bliss OS Downloads -->
<h1 class="text-center">
<i class="fas fa-chevron-down"></i> Bliss OS Downloads <i class="fas fa-chevron-down"></i>
</h1>
<div class="row">
<div class="col">
<ul class="nav nav-pills mb-3 justify-content-center nav-justified px-5 mb-4" id="pills-tab" role="tablist">
<li class="nav-item">
<a class="nav-link active text-light" id="bliss14-tab" data-toggle="pill" data-target="#bliss14" role="tab" aria-controls="bliss14" aria-selected="false">Bliss OS 14</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" id="bliss15-tab" data-toggle="pill" data-target="#bliss15" role="tab" aria-controls="bliss15" aria-selected="false">Bliss OS 15</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" id="bliss16-tab" data-toggle="pill" data-target="#bliss16" role="tab" aria-controls="bliss16" aria-selected="false">Bliss OS 16</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" id="blissZ-tab" data-toggle="pill" data-target="#blissZ" role="tab" aria-controls="blissZ" aria-selected="false">Bliss OS Zenith</a>
</li>
</ul>
<!-- Bliss OS 11 Downloads -->
<div class="tab-content" id="pills-tabContent">
<!-- Bliss OS 14 Downloads -->
<div class="tab-pane fade show active" id="bliss14" role="tabpanel" aria-labelledby="bliss14-tab">
<p>Bliss OS 14.x builds are based on Android 11, these builds are stable and can be used as daily driver.</p>
<div class="table-reponsive
w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td> Bliss OS 14.10.x (x86_64-v2) with GApps<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/OpenGApps/Generic/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #GApps </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="0" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
<tr>
<td> Bliss OS 14.10.x (x86_64-v2) with FOSS apps<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/FOSS/Generic/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #FOSS </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="1" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>These are builds for some Microsoft Surface devices that uses linux-surface patches. Not all Microsoft Surface devices need to use these builds. Check our Documentation to see which devices these builds are supported</p>
<div class="table-reponsive w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td> Bliss OS 14.10.x (x86_64-v3) with GApps & linux-surface<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/OpenGApps/Surface/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #GApps </i>
<i class="text-info"> #Surface </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="2" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
<tr>
<td> Bliss OS 14.10.x (x86_64-v3) with FOSS apps & linux-surface<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/FOSS/Surface/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #FOSS </i>
<i class="text-info"> #Surface </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="3" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>The Go builds are targeting low end x86_64-v2 devices.</p>
<div class="table-reponsive w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td> Bliss OS 14.10.x (x86_64-v2) with GApps & Android Go <a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/OpenGApps/Go/" target="_blank" class="small">Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #GApps </i>
<i class="text-info"> #Go </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="4" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
<tr>
<td> Bliss OS 14.10.x (x86_64-v2) with FOSS apps & Android Go <a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/FOSS/Go/" target="_blank" class="small">Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #FOSS </i>
<i class="text-info"> #Go </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="5" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Bliss OS 15 Downloads -->
<div class="tab-pane fade" id="bliss15" role="tabpanel" aria-labelledby="bliss15-tab">
<p>Bliss OS 15.x builds are based on Android 12L, these builds are stable and can be used as daily driver.</p>
<div class="table-reponsive w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td> Bliss OS 15.9.x (x86_64-v2) with GApps<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS15/Gapps/Generic/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #GApps </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="6" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
<tr>
<td> Bliss OS 15.9.x (x86_64-v2) with FOSS apps<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/FOSS/Generic/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #FOSS </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="7" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>These are builds for some Microsoft Surface devices that uses linux-surface patches. Not all Microsoft Surface devices need to use these builds. Check our Documentation to see which devices these builds are supported</p>
<div class="table-reponsive
w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td> Bliss OS 15.9.x (x86_64-v3) with GApps & linux-surface<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS15/Gapps/Surface/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #GApps </i>
<i class="text-info"> #Surface </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="8" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
<tr>
<td> Bliss OS 15.9.x (x86_64-v3) with FOSS apps & linux-surface<a href="https://sourceforge.net/projects/blissos-x86/files/Official/BlissOS14/FOSS/Surface/" target="_blank" class="small"> Changelog </a>
</td>
<td><i class="text-success"> #Kernel 6.1.x </i>
<i class="text-danger"> #Mesa 23.3.x </i>
<i class="text-secondary"> #FOSS </i>
<i class="text-info"> #Surface </i>
</td>
<td>
<a class="btn btn-primary" data-toggle="modal" id="9" onclick="myFunction(event)" data-target="#exampleModalCenter">
<i class="fas fa-cloud-download-alt"></i> SourceForge</a>
</td>
</tr>
</tbody>
</table>
</div>
<p>The Go builds are targeting low end x86_64-v2 devices.</p>
<div class="table-reponsive
w-75 mx-auto">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Version</th>
<th scope="col">Features</th>
<th scope="col">Download</th>