-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnothing.json
2990 lines (2990 loc) · 141 KB
/
nothing.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
[
{
"nothing_phone_1": {
"3.0_open_beta_1": {
"name": "3.0 open beta 1",
"build_number": "Spacewar-V3.0-241211-0926",
"changelog": "Shared Widgets<br>\ud83d\udd2e Use widgets to link up with friends and family. See another person\u2019s widgets displayed on your home screen and interact with each other through reactions. A new way to stay connected.<br>Lock screen<br>\ud83d\udd12 New lock screen customisation page. Access by long-pressing the lock screen or via the Customisation page.<br>\ud83d\udd70\ufe0f Upgraded clock faces. Choose your favourite style.<br>\ud83d\uddbc\ufe0fExpanded widget space, allowing you to place more widgets on your lock screen.<br>Smart Drawer<br>\ud83e\udd16Added AI-powered Smart Drawer feature to automatically categorise your apps into folders. For better organisation and easy access.<br>\ud83d\udcccFor ultimate convenience, you can pin your favourite apps to the top of the app drawer. No scrolling required.<br>Quick Settings<br>\ud83e\udde9Reconsidered Quick Settings design with an optimised editing experience.<br>\ud83d\uddbc\ufe0f Enhanced widget library design.<br>\ud83c\udfa8Updated visuals in Settings including better Network & Internet and Bluetooth options.<br>Camera improvements<br>\ud83d\udcf7 Faster camera launch speed under the Camera Widget.<br>\ud83d\uddbc\ufe0f Reduced HDR scene processing time.<br>\u23f2\ufe0f Smoothened user interface after countdown photos<br>\ud83d\udd0d Improved zoom slider display.<br>Enhanced pop-up view<br>\ud83d\udcf1 Movable pop-up view for cleaner and more productive multi-tasking.<br>\ud83d\udcd0 Easily resize the pop-up view by dragging the bottom corners.<br>\ud83d\udccd Pin the pop-up view on the screen edge for quick access.<br>\ud83d\udd14View information without leaving your current app. Simply swipe down on incoming notifications to enter the pop-up view. Enable via Settings > System > Pop-up view.<br>Other improvements<br>\ud83e\udd16AI-powered selection and prioritisation of your frequently used apps, keeping them at your fingertips for a more efficient experience<br>\ud83d\uddc3\ufe0f Added support for auto-archive function to automatically free up storage space without removing apps or data from your device.<br>\ud83d\udda5\ufe0f Partial screen sharing for more efficient and secure screen recording. Record just an app window rather than the entire screen.<br>\ud83d\ude80 Updated setup wizard to version 3.0 for the smoothest introduction to Nothing OS.<br>\u2b05\ufe0f Enabled predictive back animations for apps that have opted in.<br>\ud83d\udc46New fingerprint animation with signature dot matrix styling.<br>\ud83d\udd0bNew charging animation with signature dot matrix styling.",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "3.0_open_beta_1",
"pre_version": "2.6_hotfix_2",
"url": "https://archive.org/download/nothing-phone-1-firmwakladkladre/3.0%20open%20beta%201/ota_diff_20241031_181822_20241211_092656.zip"
},
{
"type": "rollback",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6hotfix2",
"pre_version": "3.0_open_beta_1",
"url": "https://archive.org/download/nothing-phone-1-firmware/3.0%20open%20beta%201/ota_diff_20241211_092656_20241031_181822.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/3.0%20open%20beta%201/3.0.OB1_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/3.0%20open%20beta%201/Magisk-Patched_3.0.OB1_Boot.img"
}
]
},
"2.6_hotfix_2": {
"name": "2.6 hotfix 2",
"build_number": "Spacewar-U2.6-241031-1818",
"changelog": "What\u2019s new in this update<br>General improvements and bug fixes<br>\ud83d\udcde Expanded support for video calling across more carriers.<br>\ud83d\udcf6 Fixed the issue where some devices couldn\u2019t connect to VoLTE.<br>\ud83d\udee1\ufe0f Updated security patch to November.<br>\ud83d\udd04 Fixed system lag when rapidly switching the network tile in Quick Settings.<br>\ud83c\udfa7 Resolved the issue of the Bluetooth tile not refreshing device status promptly.<br>\ud83d\udcf7 Fixed the issue where photos taken at 2.0x zoom or higher didn\u2019t display detail information.",
"ota": [
{
"type": "full",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6_hotfix_2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix%202/ea1bbddf05a019dfe73499cbbac43a0c12b585bc.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6_hotfix_2",
"pre_version": "2.6_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix%202/c479de02126d8b5d2044600cc2107a36000aa7a4.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix%202/2.6.HOTFIX2_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix%202/Magisk-Patched_2.6.HOTFIX2_Boot.img"
}
]
},
"2.6_hotfix": {
"name": "2.6 hotfix",
"build_number": "Spacewar-U2.6-240904-1634",
"changelog": "What\u2019s new in this update<br>New features<br>\ud83d\udc47 Swipe down incoming notifications to enter Pop-up view. For easy access to information without having to leave an app. Turn on via Settings > System > Pop-up view.<br>\ud83d\udd14 Enable vibration for third-party apps during calls. Turn on via Settings > Sound and vibration > Vibration.<br>\ud83d\udeb6 Battery and Pedometer Widgets can now be displayed on the lock screen and Always On Display.<br>Bug fixes and improvements<br>\ud83d\udcb3 Enhanced NFC stability for more reliable connections.<br>\u26a1\ufe0f Improved the speed of the Bluetooth tile toggle in Quick Settings.<br>\ud83c\udfa7 Ensured Bluetooth tile reflects correct earbud information.<br>\ud83d\udce8 Fixed an issue where certain carriers were unable to send multimedia messages and failed to register for VoWiFi.<br>\ud83d\udd08 Resolved an issue where the call ringing volume was too low when using the speaker.<br>\ud83d\udd26 Resolved an issue where the flashlight tile was missing in Quick Settings.<br>\ud83d\udd04 Resolved the problem causing some Cloned Apps to auto-rotate despite being disabled.<br>\ud83c\udfb5 Fixed an issue where the Media Player Widget couldn\u2019t play music when switching from guest to main user.",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6_hotfix",
"pre_version": "2.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix/159a36df32499e2153475db11ef1f6b8775770f2.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix/2.6.HOTFIX_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6%20hotfix/Magisk-Patched_2.6.HOTFIX_Boot.img"
}
]
},
"2.6": {
"name": "2.6",
"build_number": "Spacewar-U2.6-240705-1617",
"changelog": "What\u2019s new in this update<br>New features & experience improvements<br>\ud83d\uddbc\ufe0f Added 4 new wallpapers.<br>\ud83c\udf04 Added support for deleting wallpaper history in Wallpaper Studio.<br>\ud83d\udee1\ufe0f Updated security patch to July 2024<br>Game Mode enhancements<br>\ud83c\udfae Tap the left Game Sidebar for quick access to Game Dashboard during games.<br>\ud83d\udcf2 Incoming calls during games can now be displayed in a pop-up view.<br>\ud83d\udeab Added support to reject third-party app calls during gameplay.<br>\ud83d\udcde Support for one-tap callback after rejecting a regular call.<br>\ud83d\udd14 Optimised light notifications to show more information during games in landscape mode.<br>\ud83d\uded1 Support for blocking notifications during gameplay to reduce distractions.<br>Bug Fixes<br>\ud83d\udcf6 Optimized the quick recovery mechanism for blocked data network connections to improve network stability.<br>\ud83d\udcde Fixed an issue where some carriers allowed receiving calls but not making outgoing calls.<br>\ud83d\udd12 Resolved an issue causing overlapping of the Lock Screen display in certain scenarios.<br>\ud83d\udcf1 Fixed an issue where some apps could not use the Cloned Apps feature<br>properly<br>\ud83d\udc7e Other general bug fixes.",
"ota": [
{
"type": "full",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6/merged-qssi-Spacewar-otafull-20240705_161759.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.6",
"pre_version": "2.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6/879c1c1c8fc99eb43a6378d716ae8704a78924b3.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6/2.6_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.6/Magisk-Patched_2.6_Boot.img"
}
]
},
"2.5.6": {
"name": "2.5.6",
"build_number": "Spacewar-U2.5-240612-2149",
"changelog": "Nothing OS 2.5.6<br>New features<br>\ud83d\udc48 Added a \u201cHide navigation bar\u201d feature for more full-screen immersive experience. Accessed via Settings > System > Gestures > Navigation mode > Gesture navigation settings > Hide navigation bar.<br>\u2728 Optimised the interaction for editing widgets on the home screen. You can now long-press widgets to access that widget\u2019s shortcuts menu.<br>\ud83d\udca1 New swipe function in the Glyph interface for better setting the Glyph brightness.<br>\ud83c\udf04 Introduced support for Ultra HDR feature in Camera, supporting XDR display effect for photos.<br>Improvements<br>\ud83d\udcde Introduced a recovery mechanism for abnormal call states to improve call stability.<br>\ud83d\udd12 Ensure the screen stays off when the power key is pressed during an incoming call to enhance privacy and prevent accidental touches.<br>\ud83d\udce1 Added support for sending and receiving SMS over 5G for certain carriers.<br>\ud83d\udcf6 Added VoWiFi support for certain carriers .<br>Bug Fixes<br>\ud83d\udd27 Fixed an issue causing recording problems in WhatsApp under specific paths.<br>\u260e\ufe0f Resolved the issue where dialling 111 in the UK redirected to the 999 emergency number in some scenarios.<br>\ud83d\ude97 Fixed a problem where the volume bar kept popping up when connected to car Bluetooth.",
"ota": [
{
"type": "full",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.6/merged-qssi-Spacewar-otafull-20240612_214905.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.6",
"pre_version": "2.5.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.6/54c1298c0fbeae5b9f2454762183beb074d883b5.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.6/2.5.6_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.6/Magisk-Patched_2.5.6_Boot.img"
}
]
},
"2.5.5": {
"name": "2.5.5",
"build_number": "Spacewar-U2.5-240419-1617",
"changelog": "Nothing OS 2.5.5<br>ChatGPT Integration<br>The following features are available with the latest ChatGPT version installed from the Play Store:<br>\ud83d\udcac New gesture option in the Nothing X app for starting a voice conversation with ChatGPT. Works via Nothing Ear and Nothing Ear (a). Coming soon to other Nothing audio products.<br>\ud83e\udd16 Added new ChatGPT widgets for fast and easy access from your home screen.<br>\ud83d\udccb Added a button on the screenshot and clipboard pop-up to directly paste content to a new conversation in ChatGPT.<br>New features<br>\ud83d\udd2e Added an option for the Nothing Icon Pack to be applied only to the Home Screen to improve accessibility in the App Drawer.<br>\u27a1\ufe0f You can now scroll through pages on the Home Screen while holding app icons for a more intuitive experience while organising icons.<br>\ud83d\udeab Added a custom option for enabling/disabling the QuickSetting swipe-down page on the lock screen interface. Accessed via \u201cSettings > Lock Screen and AOD > Quick Settings\u201d.<br>\ud83c\udf9b\ufe0f New options for customising icons within the status bar. Accessed via \u201cSettings > Display > Status bar\u201d.<br>\ud83d\ude80 Added RAM Booster feature. To set, head to Settings > System > RAM Booster.<br>Improvements<br>\ud83c\udf1f Integrated an AI-powered algorithm for smarter lighting adjustments for auto-brightness.<br>\ud83d\udd04 Reordered Quick Settings tiles for improved accessibility.<br>\ud83c\udf1f New animations for Quick Settings widgets to enhance engagement.<br>\u26a1 Optimised response speed when toggling Bluetooth in Quick Settings, for quicker interactions.<br>\ud83d\udd0a Enhanced the volume settings experience to make it more intuitive.<br>General fixes<br>\ud83d\udd17 Fixed an issue where Wi-Fi would automatically disconnect.<br>\ud83c\udfa7 Resolved a problem causing earbud volume to not sync with the phone\u2019s volume.<br>\ud83d\udcde Resolved an issue where audio would not switch to a connected watch during calls when also connected to an earbud.<br>\ud83d\uddbc\ufe0f Fixed an issue where screenshots did not display the frame or allow entry into the editor.<br>\ud83d\udcf1 Resolved a rare problem causing a lack of vibration feedback when swiping sideways to go back on the screen.",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.5",
"pre_version": "2.5.3A",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.5/1b6de06002f9cbb4e62a1ec4267e72910e705c78.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.5",
"pre_version": "2.5.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.5/d464235c4b9920d93d662b21e9713632731a203a.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.5/2.5.5_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.5/Magisk-Patched_2.5.5_Boot.img"
}
]
},
"2.5.3A": {
"name": "2.5.3A",
"build_number": "Spacewar-U2.5-240317-2245",
"changelog": "General improvements<br>\ud83c\udf99\ufe0f New Recorder widget.<br>\ud83d\ude80 Better fluidity from optimised widgets and app-opening animations.<br>\ud83d\udd12 Enhanced lock screen animation effects for a smoother experience.<br>\ud83c\udf19 Improved the clock animation on the Always On Display (AOD) interface.<br>\ud83d\udee1\ufe0f Updated security patch for enhanced device protection.Bug Fixes<br>\ud83d\udd27 Resolved flickering issues when editing or displaying lock screen widgets in certain scenarios.<br>\u2709\ufe0f Fixed the problem where text messages failed to send in specific scenarios.<br>\ud83d\udd12 Resolved flickering issues during fingerprint unlocking on the AOD interface.<br>\ud83c\udfb6 Fixed the issue of blurry thumbnail display in the Media Player widget while playing Spotify.",
"ota": [
{
"type": "full",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.3A",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3A/af8523121e2e73f564bb78ceb3074deec7222c6b.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.3A",
"pre_version": "2.5.3",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3A/176fffc72ad05488556821215d3e10ffc939ff35.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.3A",
"pre_version": "2.5.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3A/158f65d4c44323ac9ea4c0c64e97b0a37d9aac74.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3A/2.5.3a_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3A/Magisk-Patched_2.5.3a_Boot.img"
}
]
},
"2.5.3": {
"name": "2.5.3",
"build_number": "Spacewar-U2.5-240301-1852",
"changelog": "Nothing OS 2.5.3<br>General improvements<br>\ud83c\udf99\ufe0f New Recorder widget.<br>\ud83d\ude80 Better fluidity from optimised widgets and app-opening animations.<br>\ud83d\udd12 Enhanced lock screen animation effects for a smoother experience.<br>\ud83c\udf19 Improved the clock animation on the Always On Display (AOD) interface.<br>\ud83d\udee1\ufe0f Updated security patch for enhanced device protection.<br>Bug Fixes<br>\ud83d\udd27 Resolved flickering issues when editing or displaying lock screen widgets in certain scenarios.<br>\u2709\ufe0f Fixed the problem where text messages failed to send in specific scenarios.<br>\ud83d\udd12 Resolved flickering issues during fingerprint unlocking on the AOD interface.",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.3",
"pre_version": "2.5.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3/993ef2c61a5d996015d7ff07f955cc8dbb6344c4.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3/2.5.3_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.3/Magisk-Patched_2.5.3_Boot.img"
}
]
},
"2.5.2_hotfix": {
"name": "2.5.2 hotfix",
"build_number": "Spacewar-U2.5-240207-1031",
"changelog": "Nothing OS 2.5<br>This update transitions you to Nothing OS 2.5, powered by Android 14 - our most significant update since the launch of OS 2.0. Full of exciting new features and improvements to enhance your everyday experience. Here\u2019s what\u2019s in store:<br>Customisation<br>\u2728 Redesigned a joint Home Screen and Lock Screen customisation page and improved the edit wallpaper flow for a more comprehensive view of options.<br>\ud83c\udf0c New Atmosphere wallpaper effect: Transform your background photo into a dynamic wallpaper that brings motion to colours on your home screen. A seamless transition between your <br>lock and home screens<br>\ud83c\udfa8 Introduced solid colour wallpapers for a cleaner Home Screen appearance.<br>\u26aa Added a monochrome colour theme in the basic colour section.<br>Glyph Interface<br>\ud83c\udfb6 Get direct access to the Glyph Interface\u2019s Music Visualisation feature (some of you may have already discovered it).<br>\ud83c\udf1f Improved overall Glyph light playback effect when synchronising with your device\u2019s audio.<br>\ud83d\udcab Added a new Glyph animation for when NFC is being used.<br>\ud83d\udd04 Improved the experience of Flip to Glyph.<br>Gesture<br>\ud83d\udca1Customisable double-press power button to quickly access a chosen feature. Just head to Settings > System > Gestures.<br>\ud83e\udd16 More Lock Screen shortcut options like: Do Not Disturb, Mute, QR code scanner, video camera.<br>\ud83d\udcf8 Capture screenshots quickly with a three-finger swipe gesture.<br>\u270f\ufe0f New screenshot editor and menu, allowing for more advanced editing features and quick deletions.<br>\u2b05\ufe0f Refreshed the back gesture arrow visual to be more in line with Nothing\u2019s style.<br>Quick Settings<br>\ud83d\udd14 Added support for switching ring modes in Quick Settings.<br>\ud83d\udcf6 You can now directly set your network via Quick Settings without unlocking the device.<br>\u2699\ufe0f Updated Quick Settings layout and support to show more devices icons.<br>New Widgets<br>\ud83d\udeb6 Pedometer Widget: Track your daily steps directly from your home screen. Set goals and monitor your progress to stay motivated.<br>\ud83c\udfb5 Media Player Widget: Displays the currently playing song. Control your music easily while on-the-move.<br>\u23f3 Screen Time Widget: Monitor and manage your daily screen time to maintain a healthy digital lifestyle.<br>More improvements<br>\ud83c\udf25\ufe0f Optimised the experience of the Weather app and improved the notification of weather alerts.<br>\ud83d\udd14 Made it possible to set ringtone and notification sound volumes separately, with an updated volume control interface.<br>\ud83d\udcf8 Automatically excludes the preview of the previous screenshot when taking continuous screenshots.<br>\ud83d\udcf7 Improved the stability of the camera.<br>\ud83d\ude80 Enhanced the overall smoothness and responsiveness of the system for a more fluid user experience.<br>\ud83d\udc7e Enhanced system stability and improved battery life.",
"ota": [
{
"type": "full",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2%20hotfix/80dec3051c16eb22f456e8682917f0849b749ba8.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.2_hotfix",
"pre_version": "2.5.2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2%20hotfix/8360e08fd1591985d36398a2e0549a93bae0d191.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.2_hotfix",
"pre_version": "2.0.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2%20hotfix/11d4669cdf0b425d4f8e237f71edc849062365da.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2%20hotfix/2.5.2.HOTFIX_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2%20hotfix/Magisk-Patched_2.5.2.HOTFIX_Boot.img"
}
]
},
"2.5.2": {
"name": "2.5.2",
"build_number": "Spacewar-U2.5-240119-1910",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.2",
"pre_version": "2.5.1_open_beta_2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2/6dfc76a6c3f009d12c2f81955e4424e93f6293ec.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.2",
"pre_version": "2.0.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2/af7de84da8337982201cbd7da8cee51ddc9d0241.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2/2.5.2_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.2/Magisk-Patched_2.5.2_Boot.img"
}
]
},
"2.5.1_open_beta_2": {
"name": "2.5.1 open beta 2",
"build_number": "Spacewar-U2.5-240106-2238",
"ota": [
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.1_open_beta_2",
"pre_version": "2.5.1_closed_beta_1_hotfix_2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta2/238c2558175aca6ae8423b86e9753bb1c21b547c.zip"
},
{
"type": "incremental",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.5.1_open_beta_2",
"pre_version": "2.5.1_open_beta_1",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta2/893848a68e13391107fd0790a6b95719146900ff.zip"
},
{
"type": "rollback",
"region": [
"eea",
"global"
],
"variant": [],
"post_version": "2.0.5",
"pre_version": "2.5.1_open_beta_2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta2/ota_diff_20240106_223823_20231110_173157.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta2/2.5.1.OB2_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta2/Magisk-Patched_2.5.1.OB2_Boot.img"
}
]
},
"2.5.1_closed_beta_1_hotfix_2": {
"name": "2.5.1 closed beta 1 hotfix 2",
"build_number": "Spacewar-U2.5-231005-0836",
"ota": [
{
"type": "incremental",
"region": [
"global"
],
"variant": [
"eeaincremental"
],
"post_version": "2.5.1_closed_beta_1_hotfix_2",
"pre_version": "2.5.1_closed_beta_1_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta1/946762fa268bb0898509de8578814741542c5311.zip"
}
]
},
"2.5.1_open_beta_1": {
"name": "2.5.1 open beta 1",
"build_number": "Spacewar-U2.5-231215-2256",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.5.1_open_beta_1",
"pre_version": "2.0.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta1/ota_diff_20231110_173157_20231215_225600.zip"
},
{
"type": "rollback",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.5",
"pre_version": "2.5.1_open_beta_1",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta1/ota_diff_20231215_225600_20231110_173157.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta1/2.5.1.OB1_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/open%20beta1/Magisk-Patched_2.5.1.OB1_Boot.img"
}
]
},
"2.5.1_closed_beta_1_hotfix": {
"name": "2.5.1 closed beta 1 hotfix",
"build_number": "Spacewar-U2.5-231005-1147",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.5.1_closed_beta_1_hotfix",
"pre_version": "2.5.1_closed_beta_1",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/closed%20beta1%20hotfix/36fe7c14ca535ec865d63c28ca7973798e43efda.zip"
}
]
},
"2.5.1_closed_beta_1": {
"name": "2.5.1 closed beta 1",
"build_number": "Spacewar-U2.5-231005-0153",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.5.1_closed_beta_1",
"pre_version": "2.0.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.5.1/closed%20beta1/288576a3468f6c6adaf40f749c408f6a63e1b1c1.zip"
}
]
},
"ADP_14_BETA_3": {
"name": "ADP 14 BETA 3",
"build_number": "UpsideDownCake-230719-1535",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "ADP_14_BETA_3",
"pre_version": "1.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/Android%2014%20Developer%20Preview/BETA3/ota_diff_20230706_194202_20230719_153500.zip"
},
{
"type": "rollback",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.6",
"pre_version": "ADP_14_BETA_3",
"url": "https://archive.org/download/nothing-phone-1-firmware/Android%2014%20Developer%20Preview/BETA3/ota_diff_20230719_153500_20230706_194202.zip"
}
]
},
"ADP_14_BETA_1": {
"name": "ADP 14 BETA 1",
"build_number": "UpsideDownCake-230321-2229",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "ADP_14_BETA_1",
"pre_version": "1.5.4",
"url": "https://archive.org/download/nothing-phone-1-firmware/Android%2014%20Developer%20Preview/BETA1/ota_diff_20230428_201717_20230428_222944.zip"
},
{
"type": "rollback",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.4",
"pre_version": "ADP_14_BETA_1",
"url": "https://archive.org/download/nothing-phone-1-firmware/Android%2014%20Developer%20Preview/BETA1/ota_diff_20230428_222944_20230428_201717.zip"
}
]
},
"2.0.5": {
"name": "2.0.5",
"build_number": "Spacewar-T2.0-231110-1731",
"ota": [
{
"type": "full",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/d8c21c8c162c9677ba78e51305abaf5b0ccd30e2.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.5",
"pre_version": "2.0.4",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/d7a07c6103f9aa3cfc93a83d8d15d547f6281b67.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.5",
"pre_version": "1.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/af30545337f5e2c40600fe6eb237033467456be7.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.5",
"pre_version": "1.5.4",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/6a42790767b4b1091ba52d1a675df21f68df7d1b.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/2.0.5_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.5/Magisk-Patched_2.0.5_Boot.img"
}
]
},
"2.0.4": {
"name": "2.0.4",
"build_number": "Spacewar-T2.0-231006-1014",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.4",
"pre_version": "2.0.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.4/c7d1f41953dcf87dd7201ac4c11906bf0e8e3858.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.4/2.0.4_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.4/Magisk-Patched_2.0.4_Boot.img"
}
]
},
"2.0.2_hotfix": {
"name": "2.0.2 hotfix",
"build_number": "Spacewar-T2.0-230901-1652",
"ota": [
{
"type": "full",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20hotfix/6da1e9319f3aa4443175dd1d4d9a10cdbbac6dbe.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2_hotfix",
"pre_version": "2.0.2",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20hotfix/1adc1351b0bd9a7a75efe40b3aa8baa7c6eb054f.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2_hotfix",
"pre_version": "1.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20hotfix/90c0ffe26ea5149fef44cc506781b004553a273a.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20hotfix/2.0.2.HOTFIX_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20hotfix/Magisk-Patched_2.0.2.HOTFIX_Boot.img"
}
]
},
"2.0.2": {
"name": "2.0.2",
"build_number": "Spacewar-T2.0-230822-1751",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2",
"pre_version": "2.0.2_closed_beta",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2/3000f38fcc6276e73e754e3540b22eb7777dc29d.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2",
"pre_version": "1.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2/117f22e84abcb24eea583125ef69ab938643f914.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2/2.0.2_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2/Magisk-Patched_2.0.2_Boot.img"
}
]
},
"2.0.2_closed_beta": {
"name": "2.0.2 closed beta",
"build_number": "Spacewar-T2.0-230817-0030",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "2.0.2_closed_beta",
"pre_version": "1.5.6",
"url": "https://archive.org/download/nothing-phone-1-firmware/2.0.2%20leaked/4e0529a5087e0ac662d2eed9cba8da4bfcaaa6f8.zip"
}
]
},
"1.5.6": {
"name": "1.5.6",
"build_number": "Spacewar-T1.5-230706-1942",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.6",
"pre_version": "1.5.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.6/9b59f7c44dee9c7712b163af950a554d63950ff3.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.6",
"pre_version": "EEA_1.1.8",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.6/603a222f6d0d93eb66a0aa996ed272c69739e86e.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.6/1.5.6_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.6/Magisk-Patched_1.5.6_Boot.img"
}
]
},
"1.5.5": {
"name": "1.5.5",
"build_number": "Spacewar-T1.5-230619-0042",
"ota": [
{
"type": "full",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.5",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.5/1d156af4eb59f85c62c7921e6c4a97c2761bcc3b.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.5",
"pre_version": "1.5.4",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.5/b0d72e21232dfd4392c6eaaeb651dcfd163007f3.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.5/1.5.5_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.5/Magisk-Patched_1.5.5_Boot.img"
}
]
},
"1.5.4": {
"name": "1.5.4",
"build_number": "Spacewar-T1.5-230428-2017",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.4",
"pre_version": "1.5.3_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.4/da75a517b2ab113621a45c01fad5f8867caea71c.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.4",
"pre_version": "1.5.2",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.4/945010bc8ae5f6e2171c54bb2fee51a99ca16223.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.4",
"pre_version": "GLOBAL_1.1.8",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.4/2c17b815911108fdacee1c6124ef67b45538c298.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.4/1.5.4_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.4/Magisk-Patched_1.5.4_Boot.img"
}
]
},
"1.5.3_hotfix": {
"name": "1.5.3 hotfix",
"build_number": "Spacewar-T1.5-230317-2039",
"ota": [
{
"type": "full",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.3_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3%20hotfix/dd360e97f8ed9167905e8dfe9b24d0d68844b7f1.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.3_hotfix",
"pre_version": "1.5.3",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3%20hotfix/364c55148c84d22efab1c58953d807e40da040a9.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3%20hotfix/1.5.3.HOTFIX_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3%20hotfix/Magisk-Patched_1.5.3.HOTFIX_Boot.img"
}
]
},
"1.5.3": {
"name": "1.5.3",
"build_number": "Spacewar-T1.5-230310-1650",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.3",
"pre_version": "1.5.2",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3/68158669e0fc6d6eee95e2612c2e84ed840faeec.zip"
}
],
"boot": [
{
"type": "stock",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3/1.5.3_Boot.img"
},
{
"type": "magisk_patched",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.3/Magisk-Patched_1.5.3_Boot.img"
}
]
},
"1.5.2": {
"name": "1.5.2",
"build_number": "Spacewar-T1.5-230213-2131",
"ota": [
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.2",
"pre_version": "GLOBAL_1.1.8",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.2/ae6c43b3022f2d554bd7a15e3dffb363e6b89000.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.2",
"pre_version": "EEA_1.1.8",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.2/6718db370773ad0191b970df545f54c4163a014e.zip"
},
{
"type": "incremental",
"region": [
"global",
"eea"
],
"variant": [],
"post_version": "1.5.2",
"pre_version": "1.5.1_open_beta_2_hotfix",
"url": "https://archive.org/download/nothing-phone-1-firmware/1.5.2/e77cd22198a67cbed75b059470797a5dd66a3d5e.zip"
}
],
"boot": [
{
"type": "stock",