-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathbuilds.json
1696 lines (1696 loc) · 85.5 KB
/
builds.json
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
{
"WSA_2305.40000.5.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.5.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "2863c3b784bbee34c9e3782d27097dc6a34e15335fca5735f712bb914bc8f695",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "fc085787a8b64cf6434b44623039f0a97a4ef0e5558011422f9b6e0d07fbe817",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1": {
"filename": "WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "9f13e5a9d5942d51429aa6681ea29a79ee1ae399f8664b3ac14b380d576659bb",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_arm64_Release-with-magisk-26.1.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_arm64_Release": {
"filename": "WSA_2305.40000.5.0_arm64_Release.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "bbdbaa577392b085d5c3aacae7a1571229dc2346529b4f413f66c922bc1ef54e",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_arm64_Release.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.5.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "fc5c8b2cfd68e076f3962ad3b2466cd514ce11c24f53b8ff593cd55085dc7ed7",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "e9262e770505ba9ecec196cb05c4dc032e388b74b058370fa92ea0a565fe35b1",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_x64_Release-with-magisk-26.1": {
"filename": "WSA_2305.40000.5.0_x64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "3a5edd8b77b5be9d8e764a4333f6d66f1c9fe8cd710ab4f30f8f72ef45d10011",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_x64_Release-with-magisk-26.1.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.5.0_x64_Release": {
"filename": "WSA_2305.40000.5.0_x64_Release.zip",
"type": "Release",
"version": "2305.40000.5.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "a5d674c1d285f907a80863d1abb0b6965703188e0a2807ad1f1b48f1293f7602",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.5.0/WSA_2305.40000.5.0_x64_Release.zip",
"timestamp": 1687414709.0
},
"WSA_2305.40000.6.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.6.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "3ef0fa65f889e403696b52b6f8cba91ae3b643b13fd1c4e433ed0f1bad67054f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "823f590769949eaacd35921fb00a84d9efd95639a8502ea8f9e76970f81fbe41",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1": {
"filename": "WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "e604d5366254bb20b542057301bb6fbffb0be31181339c3bcbe2079f3ea2c2d0",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_arm64_Release-with-magisk-26.1.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_arm64_Release": {
"filename": "WSA_2305.40000.6.0_arm64_Release.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "4fe8d18e70e513429da267997e8a3b751bd1585b3c6cfd4897e403f233fe5d2f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_arm64_Release.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.6.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "0d9e00bd4d2ec50671d46a30e121faff5b36892d3f95f81a18526f7e09de1b85",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2305.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "58d3138676b7585e4970d4e46685c4f1b17e112f37fa42f5dee43ca06266a6a4",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_x64_Release-with-magisk-26.1": {
"filename": "WSA_2305.40000.6.0_x64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "b46ad0eea53c50eb36df384432f7a5b4d1bf7f6067daa88154d437a0c9d4e5da",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_x64_Release-with-magisk-26.1.zip",
"timestamp": 1690009501.0
},
"WSA_2305.40000.6.0_x64_Release": {
"filename": "WSA_2305.40000.6.0_x64_Release.zip",
"type": "Release",
"version": "2305.40000.6.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "c75a322bb9b9e20161155aa00ec00c1a43a2812b87e9d47b2cd8792f89e5f010",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2305.40000.6.0/WSA_2305.40000.6.0_x64_Release.zip",
"timestamp": 1690009501.0
},
"WSA_2306.40000.4.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2306.40000.4.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "667fc8f21809fc2bc0ee178128305dd1715158970820b40fab1414de116e64f9",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "dca4972ffd6721ad88314a621ea5d5762065b08af6c7bb26854955655efdf422",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1": {
"filename": "WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "abdc47d74cc12cec3ebc438dd204da81a7b1177ea5972f1582116f800f8ada75",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_arm64_Release-with-magisk-26.1.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_arm64_Release": {
"filename": "WSA_2306.40000.4.0_arm64_Release.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "0aa4ed487519e788725bf64ba89183f3c346a1f23b73ef9d3ec76006df4b492a",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_arm64_Release.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2306.40000.4.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "f460e3396bfb3c0a886906269fe5c7847a841f63f38ae0d80a54011039add33e",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2306.40000.4.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "1a9cf9e38bab73380539867b74a636e553279e72b8fe255b80c9d3842dcab7dc",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_x64_Release-with-magisk-26.1": {
"filename": "WSA_2306.40000.4.0_x64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "c18fcc33640ec895fd273aaadd2054e68e1363da60cba6430f68691cbd0c2a34",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_x64_Release-with-magisk-26.1.zip",
"timestamp": 1690099960.0
},
"WSA_2306.40000.4.0_x64_Release": {
"filename": "WSA_2306.40000.4.0_x64_Release.zip",
"type": "Release",
"version": "2306.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "29340604136eabb18be7ba545406a09dc9b53ddfaceef9dbbf738b75e8dca305",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2306.40000.4.0/WSA_2306.40000.4.0_x64_Release.zip",
"timestamp": 1690099960.0
},
"WSA_2307.40000.5.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.5.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "0ff8582e99722f11e426c21e32e259b5d8cc7927a31eb7ac2a807d1a9a623967",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "de174e48954de89def4e0b94decbcb724bdc517f3390164f1becfd475d422704",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1": {
"filename": "WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "7b04857a5984eac21b9dffedee1bb203c7d052d21c0546e50d0ef94d797e462e",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_arm64_Release-with-magisk-26.1.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_arm64_Release": {
"filename": "WSA_2307.40000.5.0_arm64_Release.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "cf8b3c2118255db77a78193e802310792d16c48f95d306dbbcfc8a8e212d461d",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_arm64_Release.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.5.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "670bc6a3515ea86bd30ccc2893f51cbf1b38b3cd17afe28f749373ea63cebcb8",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "9b1a961d9fb93a8f1fc0b43c69c838821f16fbe589ea96f25f28e3772c41c37d",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_x64_Release-with-magisk-26.1": {
"filename": "WSA_2307.40000.5.0_x64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "6ef470ce057b5988c5a4cc06263104dc08f7aab9f0e474d013968fc1b1653476",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_x64_Release-with-magisk-26.1.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.5.0_x64_Release": {
"filename": "WSA_2307.40000.5.0_x64_Release.zip",
"type": "Release",
"version": "2307.40000.5.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "b86df387d7dc60929a780de6a9b75286fd19d896e150d97cf9ffcdb42bb372b8",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.5.0/WSA_2307.40000.5.0_x64_Release.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.6.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "8af34064699b63f824423f41b48c1971d61b751f69c5a9709f6130d29e301cb6",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "25272866aaa067243140f279556b546963e14148158ca67a063c8e89d27b249e",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1": {
"filename": "WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "1b10db77542034d3bb4720beaa9c291ebb365dc2b7c5bc9447738ca37c10080e",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_arm64_Release-with-magisk-26.1.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_arm64_Release": {
"filename": "WSA_2307.40000.6.0_arm64_Release.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "374b52bcc41b87ee6046c38098d363478a677071337e908451f84a2fb1f35791",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_arm64_Release.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.6.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "6d1a015f1b2500b48b410a517ed59fa44b958b8ea33581e275318881c11774a9",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0": {
"filename": "WSA_2307.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "7b69a88817312ffdb0779fb3fbc9a90fd03503cb599be153c8ff80370a0f3f94",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_x64_Release-with-magisk-26.1-MindTheGapps-13.0.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_x64_Release-with-magisk-26.1": {
"filename": "WSA_2307.40000.6.0_x64_Release-with-magisk-26.1.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "398fccf8470fc94382036371f76edbc46de15da034b35bd270a291e5969b7fd1",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_x64_Release-with-magisk-26.1.zip",
"timestamp": 1691812961.0
},
"WSA_2307.40000.6.0_x64_Release": {
"filename": "WSA_2307.40000.6.0_x64_Release.zip",
"type": "Release",
"version": "2307.40000.6.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "bafc388175bcea5529352df0cae462b8eba3832f4a04555ed0d9462741c36ac6",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2307.40000.6.0/WSA_2307.40000.6.0_x64_Release.zip",
"timestamp": 1691812961.0
},
"WSA_2308.40000.3.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.3.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "32364bb90edf0d621db1ad3f2cfd3f3ef9c5070d021d971285ffc11ae01866e8",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "ae65f525e8d6346648038840587be3f95c375ff285f8910a63d38253709c290f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3": {
"filename": "WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "a4253176dc3e73b6af857ef7a1e275c767d12d7b314c102addf5e16e4591b360",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_arm64_Release-with-magisk-26.3.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_arm64_Release": {
"filename": "WSA_2308.40000.3.0_arm64_Release.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "688a97730b37a7510d0a6b390a4de195e2df3821c2206f6a2db31fe94ace22dd",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_arm64_Release.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.3.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "8a810500287c9f2cf5b983259d3da91957a992ca4fd9bc8587c8f7f9e40cb767",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.3.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "ecbc5676c9e1e7085ea1c85b9de4e000fa7704c04af85450e03c2cb31830d7da",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_x64_Release-with-magisk-26.3": {
"filename": "WSA_2308.40000.3.0_x64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "aa36dca3b87ea52e55caa09aa3c1e919c97d5b4bc4aa65177033276226e46f3d",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_x64_Release-with-magisk-26.3.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.3.0_x64_Release": {
"filename": "WSA_2308.40000.3.0_x64_Release.zip",
"type": "Release",
"version": "2308.40000.3.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "cf66d786c4f653504ac65c1e312e3631f73bdc6227a6b07cb8c272326a96981f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.3.0/WSA_2308.40000.3.0_x64_Release.zip",
"timestamp": 1695349099.0
},
"WSA_2308.40000.4.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.4.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "5de9b231a72b33f24ec90cfd0221334db235d3522eb6bda2c5a074c1df8a51b7",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "501b9a0987384252e702b73c989f18423ba49653441747937e7b9ee0b3a9eba9",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3": {
"filename": "WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "92486025048e8ba0ac73624daec8c28e4ccde308a5cddff9b2f7595d765f30c1",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_arm64_Release-with-magisk-26.3.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_arm64_Release": {
"filename": "WSA_2308.40000.4.0_arm64_Release.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "f10d4bb22ff459aae581a7f2b3ce8168626fe95a3ef9bc1c5e3fc7502cdab865",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_arm64_Release.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.4.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "296165b99439d4e7ff8d124bfc4d96506b755d8d40af5afcf45846e83f382073",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2308.40000.4.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "b079738b28e93a9ba05d57513f6b5fa25809215c761cadcfa186976257808f5f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_x64_Release-with-magisk-26.3": {
"filename": "WSA_2308.40000.4.0_x64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "33b544e451681c48df36d6ea0fc3370802db90dd37a8ab6f50357df0edd56aa2",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_x64_Release-with-magisk-26.3.zip",
"timestamp": 1697002156.0
},
"WSA_2308.40000.4.0_x64_Release": {
"filename": "WSA_2308.40000.4.0_x64_Release.zip",
"type": "Release",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "b170a9a022e2271f5b8f7b2390e559ca13f182ea81b628537006fce26be2a2b4",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2308.40000.4.0/WSA_2308.40000.4.0_x64_Release.zip",
"timestamp": 1697002156.0
},
"WSA_2309.40000.8.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.8.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "021f568cc366879295e5d1fd58442028cb46c604daa0345ed77bd2a2bf0580a3",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "5f646a1e1fdf9ee16fa686fdb5dd57266591977fe1da121eb77566840c713ad5",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3": {
"filename": "WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "1efdcc7249e413d36c786bc56d72a3bc68ae1547b0d90f522a23ee19afd83c74",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_arm64_Release-with-magisk-26.3.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_arm64_Release": {
"filename": "WSA_2309.40000.8.0_arm64_Release.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "7d9e5a10c1f4a660076ebc54c8ade9111e2ba13d972dcd701eb04cb695ecf7f7",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_arm64_Release.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.8.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "9e91702d4a03175eb283573edd879686b74efdb0ab262d2e0830fa81bcacfb11",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.8.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "02195c14d9dfbcaab733791819f30d5aea63d6dc45a74e8d5d2a14a4d75d3ede",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_x64_Release-with-magisk-26.3": {
"filename": "WSA_2309.40000.8.0_x64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "3936a38f3c0846f64eb7307e7b976d3d8702d78279fe4ba305b5127796da706f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_x64_Release-with-magisk-26.3.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.8.0_x64_Release": {
"filename": "WSA_2309.40000.8.0_x64_Release.zip",
"type": "Release",
"version": "2309.40000.8.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "82be323f7c2ed1810018a444a7da135a3c0bf55cf56f0d6f48c564efc3e57669",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.8.0/WSA_2309.40000.8.0_x64_Release.zip",
"timestamp": 1697777365.0
},
"WSA_2309.40000.10.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "b07922cb2000bae69bc14ed921fdc3b5c3c579e7d7679701d7f4fc6f171eaf30",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "kernelsu",
"gapps_brand": "MindTheGapps",
"sha256": "6bfcebfe9e41cf8671fb8039503acf5ebcac55b91e5c6ada7d3d6a8739cadcdc",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0": {
"filename": "WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "kernelsu",
"gapps_brand": "none",
"sha256": "58856b421ec4209e21bf7a3e8a530c76b12b797dec3971de413b59b5b5d4c1ff",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release-with-kernelsu-v0.7.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "0560354d28d3350120fc0e6f8d8f4e99272a92ea444de57eb7fc21eb7b49926c",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3": {
"filename": "WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "abd7f4d90999097ae72aa06cb8d0878f87df058c10a4e6749a4a4cb7dd3bfd85",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release-with-magisk-26.3.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_arm64_Release": {
"filename": "WSA_2309.40000.10.0_arm64_Release.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "96b9d25a5531b50cb697bfa27fdc7ff3e82a131f31cc2653e1041ffc0d9a86d7",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_arm64_Release.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "f40ec9bd7cac373663a5db86023ec76b4d8352d49af1f46a3c118e7ac4ebc60d",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "kernelsu",
"gapps_brand": "MindTheGapps",
"sha256": "7c0573e369a3635f005dbb8a903b4e66a72c15f58129c930158710f0f9620446",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0": {
"filename": "WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "kernelsu",
"gapps_brand": "none",
"sha256": "58eafddd06d68119cff188a0ade5a15e297f491f8173bcb7d29d8810c0db137b",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release-with-kernelsu-v0.7.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0": {
"filename": "WSA_2309.40000.10.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "45ef832b4c54123632f88a79c1d4992fd8a794284633a4e2112bbb9ec80f735b",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release-with-magisk-26.3-MindTheGapps-13.0.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release-with-magisk-26.3": {
"filename": "WSA_2309.40000.10.0_x64_Release-with-magisk-26.3.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "87d8d8664190a68f5d7f0aff7513685b207c63c76510c7cebefb63173d4874cb",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release-with-magisk-26.3.zip",
"timestamp": 1698472618.928029
},
"WSA_2309.40000.10.0_x64_Release": {
"filename": "WSA_2309.40000.10.0_x64_Release.zip",
"type": "Release",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "be24e66f2ff39a3f215286bc4967a0c0c7900542a865499ef34eff1c85fe734b",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2309.40000.10.0/WSA_2309.40000.10.0_x64_Release.zip",
"timestamp": 1698472618.928029
},
"WSA_2308.40000.4.0_x64_Release-Nightly-with-kernelsu-v0.7.0-NoGApps-RemovedAmazon": {
"filename": "WSA_2308.40000.4.0_x64_Release-Nightly-with-kernelsu-v0.7.0-NoGApps-RemovedAmazon.zip",
"type": "Build",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "kernelsu",
"gapps_brand": "none",
"sha256": "d0b29d3fd3750c7a6df9e303dd8cd6ac1beb390215d5fba6e35cbeb478f56f6c",
"url": "https://github.com/Lyxot/WSAOnWin10/actions/runs/6675822673",
"timestamp": 1698482435.9962683
},
"WSA_2308.40000.4.0_x64_Release-Nightly-NoGApps-RemovedAmazon": {
"filename": "WSA_2308.40000.4.0_x64_Release-Nightly-NoGApps-RemovedAmazon.zip",
"type": "Build",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "eafce5e4e4378fc03602313de4f24db455ef29d832809587a1ab8a21b2fa6337",
"url": "https://github.com/Lyxot/WSAOnWin10/actions/runs/6676271057",
"timestamp": 1698488991.2234287
},
"WSA_2309.40000.10.0_x64_Release-Nightly-with-magisk-0352ea2c(26302)-canary-NoGApps-RemovedAmazon": {
"filename": "WSA_2309.40000.10.0_x64_Release-Nightly-with-magisk-0352ea2c(26302)-canary-NoGApps-RemovedAmazon.zip",
"type": "Build",
"version": "2309.40000.10.0",
"arch": "x64",
"root_sol": "magisk canary",
"gapps_brand": "none",
"sha256": "aec323056bedfa5d9b111f33d9f69c751d18a4c69884091d63279fe8ca36341d",
"url": "https://github.com/Lyxot/WSAOnWin10/actions/runs/6677706836",
"timestamp": 1698507928.6063328
},
"WSA_2308.40000.4.0_x64_Release-Nightly-OpenGApps-11.0-pico-RemovedAmazon": {
"filename": "WSA_2308.40000.4.0_x64_Release-Nightly-OpenGApps-11.0-pico-RemovedAmazon.zip",
"type": "Build",
"version": "2308.40000.4.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "OpenGApps",
"sha256": "871cf805e8093aa3437fc8cf0efffe344e8dd79b5ee2eba9c883d46c3b3680a4",
"url": "https://github.com/Lyxot/WSAOnWin10/actions/runs/6613623997",
"timestamp": 1698067407.0
},
"WSA_2310.40000.2.0_arm64_Release-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_arm64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "15a2da259ea115f1138160af0f28406d2eddc45b9233c8abae4183d8ff6d8a72",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release-MindTheGapps-13.0.zip",
"timestamp": 1700005684.9925787
},
"WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "kernelsu",
"gapps_brand": "MindTheGapps",
"sha256": "8d80cf1c204bccb86a90219ca17daf8110648ac49d387441b7f6a4771fd153c2",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0.zip",
"timestamp": 1700005676.4269526
},
"WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1": {
"filename": "WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "kernelsu",
"gapps_brand": "none",
"sha256": "70b3205a1d7ea9112f335b75d49e78b57feb808e912ec6b90c1376314ca18edc",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release-with-kernelsu-v0.7.1.zip",
"timestamp": 1700005198.7413075
},
"WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "3ae4706ab9e017013de01ce3a933f13dd4ee8267d4e363a9d164d87b17c5b7eb",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4-MindTheGapps-13.0.zip",
"timestamp": 1700005673.2302
},
"WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4": {
"filename": "WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "f59420980b7add7e7729ba6e7497e52ac68fd7a1348b3ae11643b0ca43ca0947",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release-with-magisk-26.4.zip",
"timestamp": 1700005192.8602612
},
"WSA_2310.40000.2.0_arm64_Release": {
"filename": "WSA_2310.40000.2.0_arm64_Release.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "arm64",
"root_sol": "none",
"gapps_brand": "none",
"sha256": "6277898f64e7198b3a69325955bbcdcc800902dcfa02b81a907da66d68ced21a",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_arm64_Release.zip",
"timestamp": 1700005372.6871936
},
"WSA_2310.40000.2.0_x64_Release-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_x64_Release-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "x64",
"root_sol": "none",
"gapps_brand": "MindTheGapps",
"sha256": "163f73e02916a1412a7210eb66bd276407b58ef945a0db4b0cf21be2d75357b3",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_x64_Release-MindTheGapps-13.0.zip",
"timestamp": 1700005588.4589188
},
"WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "x64",
"root_sol": "kernelsu",
"gapps_brand": "MindTheGapps",
"sha256": "b29b9122740a67d173b9074755b40256fcc98aad8f06aba4f22f3c7612ce0ebc",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1-MindTheGapps-13.0.zip",
"timestamp": 1700005599.3776712
},
"WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1": {
"filename": "WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "x64",
"root_sol": "kernelsu",
"gapps_brand": "none",
"sha256": "30f36b17b3f450bcc38dc58c504da907a1b29719ca6cd30ec3b86a07dbbea09f",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_x64_Release-with-kernelsu-v0.7.1.zip",
"timestamp": 1700005332.265392
},
"WSA_2310.40000.2.0_x64_Release-with-magisk-26.4-MindTheGapps-13.0": {
"filename": "WSA_2310.40000.2.0_x64_Release-with-magisk-26.4-MindTheGapps-13.0.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "MindTheGapps",
"sha256": "ab647b065e677873d05d268097200c7c2bff6535668502764bd05942aaec18da",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_x64_Release-with-magisk-26.4-MindTheGapps-13.0.zip",
"timestamp": 1700005594.723937
},
"WSA_2310.40000.2.0_x64_Release-with-magisk-26.4": {
"filename": "WSA_2310.40000.2.0_x64_Release-with-magisk-26.4.zip",
"type": "Release",
"version": "2310.40000.2.0",
"arch": "x64",
"root_sol": "magisk",
"gapps_brand": "none",
"sha256": "845c42fc64efe34be797d17529a0658f500a4eb5f532ddd816c7129cbea02070",
"url": "https://github.com/Lyxot/WSAOnWin10/releases/download/2310.40000.2.0/WSA_2310.40000.2.0_x64_Release-with-magisk-26.4.zip",