-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp_index.json
More file actions
983 lines (983 loc) · 31.8 KB
/
Copy pathapp_index.json
File metadata and controls
983 lines (983 loc) · 31.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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
[
{
"name": "Lightning Piggy",
"publisher": "LightningPiggy Foundation",
"short_description": "Display wallet that shows balance, transactions, receive QR code etc.",
"long_description": "See https://www.LightningPiggy.com",
"fullname": "com.lightningpiggy.displaywallet",
"version": "0.7.1",
"category": "finance",
"activities": [
{
"entrypoint": "assets/displaywallet.py",
"classname": "DisplayWallet",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.lightningpiggy.displaywallet/icons/com.lightningpiggy.displaywallet_0.7.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.lightningpiggy.displaywallet/mpks/com.lightningpiggy.displaywallet_0.7.1.mpk"
}
,{
"name": "BLEep",
"publisher": "MicroPythonOS",
"short_description": "Find and befriend nearby BLE users",
"long_description": "BLE-powered friend maker. Find nearby users, send friend requests, accept/deny incoming ones, and track your friend count. Unfriend when you drift apart.",
"fullname": "com.micropythonos.bleep",
"version": "0.2.0",
"category": "social",
"activities": [
{
"entrypoint": "bleep.py",
"classname": "BLEep",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
},
{
"entrypoint": "bleep.py",
"classname": "BLEepDetail",
"intent_filters": [
{
"action": "view"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.bleep/icons/com.micropythonos.bleep_0.2.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.bleep/mpks/com.micropythonos.bleep_0.2.0.mpk"
}
,{
"name": "Breakout",
"publisher": "MicroPythonOS",
"short_description": "Classic Breakout game",
"long_description": "Classic Breakout game to demonstrate native machinecode (from C) in .mpy files on both AMD64 and ESP32",
"fullname": "com.micropythonos.breakout",
"version": "0.6.0",
"category": "game",
"activities": [
{
"entrypoint": "breakout.py",
"classname": "Breakout",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.breakout/icons/com.micropythonos.breakout_0.6.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.breakout/mpks/com.micropythonos.breakout_0.6.0.mpk"
}
,{
"name": "Camera",
"publisher": "MicroPythonOS",
"short_description": "Camera with QR decoding",
"long_description": "Camera for both internal camera's and webcams, that includes QR decoding.",
"fullname": "com.micropythonos.camera",
"version": "0.4.1",
"category": "hardware",
"activities": [
{
"entrypoint": "camera_app.py",
"classname": "CameraActivity",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/icons/com.micropythonos.camera_0.4.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/mpks/com.micropythonos.camera_0.4.1.mpk"
}
,{
"name": "Confetti",
"publisher": "MicroPythonOS",
"short_description": "Just shows confetti",
"long_description": "Nothing special, just a demo.",
"fullname": "com.micropythonos.confetti",
"version": "0.3.3",
"category": "game",
"activities": [
{
"entrypoint": "confetti_app.py",
"classname": "ConfettiApp",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.confetti/icons/com.micropythonos.confetti_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.confetti/mpks/com.micropythonos.confetti_0.3.3.mpk"
}
,{
"name": "Connect 4",
"publisher": "MicroPythonOS",
"short_description": "Classic Connect 4 game",
"long_description": "Play Connect 4 against the computer with three difficulty levels: Easy, Medium, and Hard. Drop colored discs and try to connect four in a row!",
"fullname": "com.micropythonos.connect4",
"version": "0.4.1",
"category": "game",
"activities": [
{
"entrypoint": "connect4.py",
"classname": "Connect4",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.connect4/icons/com.micropythonos.connect4_0.4.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.connect4/mpks/com.micropythonos.connect4_0.4.1.mpk"
}
,{
"name": "DJ Addon",
"publisher": "MicroPythonOS",
"short_description": "DJ Addon demo",
"long_description": "Shows off the capabilities of the Fri3d DJ Addon 2026.",
"fullname": "com.micropythonos.dj_addon",
"version": "0.3.2",
"category": "development",
"activities": [
{
"entrypoint": "dj_addon.py",
"classname": "DJAddonActivity",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.dj_addon/icons/com.micropythonos.dj_addon_0.3.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.dj_addon/mpks/com.micropythonos.dj_addon_0.3.2.mpk"
}
,{
"name": "Doom Launcher",
"publisher": "MicroPythonOS",
"short_description": "Legendary 3D shooter",
"long_description": "Plays Doom 1, 2 and modded .wad files from internal storage or SD card. Place them in /roms/doom/. Uses ducalex's retro-go port of PrBoom. Supports zipped wad files too.",
"fullname": "com.micropythonos.doom_launcher",
"version": "0.4.5",
"category": "game",
"activities": [
{
"entrypoint": "doom_launcher.py",
"classname": "DoomLauncher",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.doom_launcher/icons/com.micropythonos.doom_launcher_0.4.5_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.doom_launcher/mpks/com.micropythonos.doom_launcher_0.4.5.mpk"
}
,{
"name": "Draw",
"publisher": "MicroPythonOS",
"short_description": "Simple drawing app",
"long_description": "Draw simple shapes on the screen.",
"fullname": "com.micropythonos.draw",
"version": "0.3.1",
"category": "graphics",
"activities": [
{
"entrypoint": "draw.py",
"classname": "Draw",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.draw/icons/com.micropythonos.draw_0.3.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.draw/mpks/com.micropythonos.draw_0.3.1.mpk"
}
,{
"name": "Duke Nukem 3D",
"publisher": "MicroPythonOS",
"short_description": "Legendary 3D shooter",
"long_description": "Plays Duke Nukem 3D .grp files from internal storage or SD card. Place them in /roms/duke3d/. Uses ducalex's retro-go port. Supports zipped grp files too.",
"fullname": "com.micropythonos.duke_launcher",
"version": "0.3.5",
"category": "game",
"activities": [
{
"entrypoint": "duke_launcher.py",
"classname": "DukeLauncher",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.duke_launcher/icons/com.micropythonos.duke_launcher_0.3.5_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.duke_launcher/mpks/com.micropythonos.duke_launcher_0.3.5.mpk"
}
,{
"name": "ESPNowChat",
"publisher": "MicroPythonOS",
"short_description": "ESPNow Chat",
"long_description": "Simple chat app using EspNow protocol for communication between devices.",
"fullname": "com.micropythonos.espnow_chat",
"version": "0.3.1",
"category": "communication",
"activities": [
{
"entrypoint": "espnow_chat.py",
"classname": "EspNowChat",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.espnow_chat/icons/com.micropythonos.espnow_chat_0.3.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.espnow_chat/mpks/com.micropythonos.espnow_chat_0.3.1.mpk"
}
,{
"name": "HelloWorld",
"publisher": "MicroPythonOS",
"short_description": "Minimal app",
"long_description": "Demonstrates the simplest app.",
"fullname": "com.micropythonos.helloworld",
"version": "0.2.0",
"category": "development",
"activities": [
{
"entrypoint": "hello.py",
"classname": "Hello",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.helloworld/icons/com.micropythonos.helloworld_0.2.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.helloworld/mpks/com.micropythonos.helloworld_0.2.0.mpk"
}
,{
"name": "Image View",
"publisher": "MicroPythonOS",
"short_description": "Image Viewer",
"long_description": "Opens and shows images on the display.",
"fullname": "com.micropythonos.imageview",
"version": "0.4.2",
"category": "graphics",
"activities": [
{
"entrypoint": "imageview.py",
"classname": "ImageView",
"intent_filters": [
{
"action": "main",
"category": "launcher"
},
{
"action": "view",
"mimeType": "image/*",
"pathPattern": [
".png",
".jpg",
".jpeg",
".raw",
".bmp"
]
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/icons/com.micropythonos.imageview_0.4.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imageview/mpks/com.micropythonos.imageview_0.4.2.mpk"
}
,{
"name": "IMU",
"publisher": "MicroPythonOS",
"short_description": "Inertial Measurement Unit Visualization",
"long_description": "Visualize data from the Intertial Measurement Unit, also known as the accellerometer.",
"fullname": "com.micropythonos.imu",
"version": "0.3.1",
"category": "hardware",
"activities": [
{
"entrypoint": "imu.py",
"classname": "IMU",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.imu/icons/com.micropythonos.imu_0.3.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.imu/mpks/com.micropythonos.imu_0.3.1.mpk"
}
,{
"name": "IR Remote",
"publisher": "MicroPythonOS",
"short_description": "Send IR commands",
"long_description": "Simple IR remote with power and volume controls.",
"fullname": "com.micropythonos.ir_remote",
"version": "0.3.3",
"category": "hardware",
"activities": [
{
"entrypoint": "ir_remote.py",
"classname": "IRRemote",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.ir_remote/icons/com.micropythonos.ir_remote_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.ir_remote/mpks/com.micropythonos.ir_remote_0.3.3.mpk"
}
,{
"name": "Lights Out",
"publisher": "MicroPythonOS",
"short_description": "Classic Lights Out puzzle game",
"long_description": "Turn off all the lights! Pressing a light toggles it and its neighbors. Solve each level with minimal moves.",
"fullname": "com.micropythonos.lights_out",
"version": "1.2.2",
"category": "game",
"activities": [
{
"entrypoint": "lights_out.py",
"classname": "LightsOut",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.lights_out/icons/com.micropythonos.lights_out_1.2.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.lights_out/mpks/com.micropythonos.lights_out_1.2.2.mpk"
}
,{
"name": "LoRa Chat",
"publisher": "MicroPythonOS",
"short_description": "Chat using LoRa",
"long_description": "Send messages back and forth with your friends using LoRa.",
"fullname": "com.micropythonos.lora_chat",
"version": "0.3.0",
"category": "communication",
"activities": [
{
"entrypoint": "lora_chat.py",
"classname": "LoRaChat",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.lora_chat/icons/com.micropythonos.lora_chat_0.3.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.lora_chat/mpks/com.micropythonos.lora_chat_0.3.0.mpk"
}
,{
"name": "Memory",
"publisher": "MicroPythonOS",
"short_description": "Classic card memory game",
"long_description": "Find all matching pairs of symbols by remembering their positions.",
"fullname": "com.micropythonos.memory",
"version": "1.4.3",
"category": "game",
"activities": [
{
"entrypoint": "memory.py",
"classname": "Memory",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.memory/icons/com.micropythonos.memory_1.4.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.memory/mpks/com.micropythonos.memory_1.4.3.mpk"
}
,{
"name": "Music Player",
"publisher": "MicroPythonOS",
"short_description": "Player audio files",
"long_description": "Traverse around the filesystem and play audio files that you select.",
"fullname": "com.micropythonos.musicplayer",
"version": "0.4.4",
"category": "audio",
"activities": [
{
"entrypoint": "music_player.py",
"classname": "MusicPlayer",
"intent_filters": [
{
"action": "main",
"category": "launcher"
},
{
"action": "view",
"mimeType": "audio/wav",
"pathPattern": [
".wav"
]
},
{
"action": "view",
"mimeType": "audio/rtttl",
"pathPattern": [
".rtttl"
]
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.musicplayer/icons/com.micropythonos.musicplayer_0.4.4_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.musicplayer/mpks/com.micropythonos.musicplayer_0.4.4.mpk"
}
,{
"name": "Nostr Chat",
"publisher": "MicroPythonOS",
"short_description": "Nostr",
"long_description": "Notest and Other Stuff Transmitted by Relays",
"fullname": "com_micropythonos_nostr",
"version": "0.6.0",
"category": "communication",
"activities": [
{
"entrypoint": "chat_list_activity.py",
"classname": "ChatListActivity",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"services": [
{
"entrypoint": "nostr_boot_service.py",
"classname": "NostrBootService",
"intent_filters": [
{
"action": "boot_completed"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com_micropythonos_nostr/icons/com_micropythonos_nostr_0.6.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com_micropythonos_nostr/mpks/com_micropythonos_nostr_0.6.0.mpk"
}
,{
"name": "REPL Shell",
"publisher": "MicroPythonOS",
"short_description": "Interactive Python REPL shell",
"long_description": "Run Python code interactively. Output and errors are displayed inline.",
"fullname": "com.micropythonos.repl_shell",
"version": "0.1.0",
"category": "development",
"activities": [
{
"entrypoint": "repl_shell.py",
"classname": "ReplShell",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.repl_shell/icons/com.micropythonos.repl_shell_0.1.0_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.repl_shell/mpks/com.micropythonos.repl_shell_0.1.0.mpk"
}
,{
"name": "Retro Core Launcher",
"publisher": "MicroPythonOS",
"short_description": "Classic 8-bit and handheld games",
"long_description": "Plays NES and Gameboy ROMs from storage or SD card. Place in /roms/nes/ or /roms/gb/. Uses retro-go. Zipped ROMs supported.",
"fullname": "com.micropythonos.retrocore_launcher",
"version": "0.5.3",
"category": "game",
"activities": [
{
"entrypoint": "retrocore_launcher.py",
"classname": "RetroCoreLauncher",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.retrocore_launcher/icons/com.micropythonos.retrocore_launcher_0.5.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.retrocore_launcher/mpks/com.micropythonos.retrocore_launcher_0.5.3.mpk"
}
,{
"name": "ScanBluetooth",
"publisher": "MicroPythonOS",
"short_description": "Scan Bluetooth",
"long_description": "Lists all nearby Bluetooth devices with some information",
"fullname": "com.micropythonos.scan_bluetooth",
"version": "0.4.1",
"category": "hardware",
"activities": [
{
"entrypoint": "scan_bluetooth.py",
"classname": "ScanBluetooth",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.scan_bluetooth/icons/com.micropythonos.scan_bluetooth_0.4.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.scan_bluetooth/mpks/com.micropythonos.scan_bluetooth_0.4.1.mpk"
}
,{
"name": "Show Battery",
"publisher": "MicroPythonOS",
"short_description": "Minimal app",
"long_description": "Demonstrates the simplest app.",
"fullname": "com.micropythonos.showbattery",
"version": "0.4.2",
"category": "utilities",
"activities": [
{
"entrypoint": "show_battery.py",
"classname": "ShowBattery",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.showbattery/icons/com.micropythonos.showbattery_0.4.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.showbattery/mpks/com.micropythonos.showbattery_0.4.2.mpk"
}
,{
"name": "Show Fonts",
"publisher": "MicroPythonOS",
"short_description": "Show installed fonts",
"long_description": "Visualize the installed fonts so the user can check them out.",
"fullname": "com.micropythonos.showfonts",
"version": "0.3.3",
"category": "utilities",
"activities": [
{
"entrypoint": "showfonts.py",
"classname": "ShowFonts",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.showfonts/icons/com.micropythonos.showfonts_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.showfonts/mpks/com.micropythonos.showfonts_0.3.3.mpk"
}
,{
"name": "Emoji Sort",
"publisher": "MicroPythonOS",
"short_description": "Sort emojis into matching tubes",
"long_description": "A water-sort style puzzle. Move emoji tokens between tubes until each tube contains only one kind of emoji. Levels get progressively harder.",
"fullname": "com.micropythonos.sorter",
"version": "1.0.4",
"category": "game",
"activities": [
{
"entrypoint": "sorter.py",
"classname": "Sorter",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.sorter/icons/com.micropythonos.sorter_1.0.4_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.sorter/mpks/com.micropythonos.sorter_1.0.4.mpk"
}
,{
"name": "Sound Recorder",
"publisher": "MicroPythonOS",
"short_description": "Record audio from microphone",
"long_description": "Record audio from the I2S microphone and save as WAV files. Recordings can be played back with the Music Player app.",
"fullname": "com.micropythonos.soundrecorder",
"version": "0.4.2",
"category": "hardware",
"activities": [
{
"entrypoint": "sound_recorder.py",
"classname": "SoundRecorder",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.soundrecorder/icons/com.micropythonos.soundrecorder_0.4.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.soundrecorder/mpks/com.micropythonos.soundrecorder_0.4.2.mpk"
}
,{
"name": "Space Invaders",
"publisher": "MicroPythonOS",
"short_description": "Classic space invaders shooter",
"long_description": "Defend Earth from invading aliens in this action-packed space shooter. Clear waves of invaders, earn high scores, and save your progress.",
"fullname": "com.micropythonos.space_invaders",
"version": "0.3.3",
"category": "game",
"activities": [
{
"entrypoint": "space_invaders.py",
"classname": "SpaceInvaders",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.space_invaders/icons/com.micropythonos.space_invaders_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.space_invaders/mpks/com.micropythonos.space_invaders_0.3.3.mpk"
}
,{
"name": "Text Editor",
"publisher": "MicroPythonOS",
"short_description": "Edit text files",
"long_description": "A simple text editor for plain text, source code, markup, data and configuration files.",
"fullname": "com.micropythonos.texteditor",
"version": "0.1.2",
"category": "utilities",
"activities": [
{
"entrypoint": "text_editor.py",
"classname": "TextEditor",
"intent_filters": [
{
"action": "main",
"category": "launcher"
},
{
"action": "view",
"mimeType": "text/*",
"pathPattern": [
".txt",
".py",
".html",
".csv",
".json",
".md",
".log",
".xml",
".cfg",
".ini"
]
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.texteditor/icons/com.micropythonos.texteditor_0.1.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.texteditor/mpks/com.micropythonos.texteditor_0.1.2.mpk"
}
,{
"activities": [
{
"classname": "AlbumPlayer",
"entrypoint": "assets/tfl_player.py",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"category": "utilities",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.thefreelanternplayer/mpks/com.micropythonos.thefreelanternplayer_1.0.1.mpk",
"fullname": "com.micropythonos.thefreelanternplayer",
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.thefreelanternplayer/icons/com.micropythonos.thefreelanternplayer_1.0.1_64x64.png",
"long_description": "Streams music from The Free Lantern website or from local SD card.",
"name": "The Free Lantern",
"publisher": "MicroPythonOS",
"short_description": "Plays music from The Free Lantern",
"version": "1.0.1"
}
,{
"name": "Time of Flight",
"publisher": "MicroPythonOS",
"short_description": "Time-of-flight sensor demo",
"long_description": "Shows off time-of-flight range imaging camera sensors by describing distance measurements per pixel based on round-trip light time.",
"fullname": "com.micropythonos.time_of_flight",
"version": "0.3.2",
"category": "hardware",
"activities": [
{
"entrypoint": "time_of_flight.py",
"classname": "TimeOfFlight",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.time_of_flight/icons/com.micropythonos.time_of_flight_0.3.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.time_of_flight/mpks/com.micropythonos.time_of_flight_0.3.2.mpk"
}
,{
"name": "Quasi Bird",
"publisher": "QuasiKili",
"short_description": "Bird Game",
"long_description": "A fun bird flying game with smooth physics. Tap to fly!",
"fullname": "com.quasikili.quasibird",
"version": "0.3.1",
"category": "game",
"activities": [
{
"entrypoint": "assets/quasibird.py",
"classname": "QuasiBird",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.quasikili.quasibird/icons/com.quasikili.quasibird_0.3.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.quasikili.quasibird/mpks/com.quasikili.quasibird_0.3.1.mpk"
}
,{
"name": "Quasi Calculator",
"publisher": "QuasiKili",
"short_description": "Scientific and Standard Calculator",
"long_description": "A calculator app with both scientific and standard modes.",
"fullname": "com.quasikili.quasicalculator",
"version": "0.2.1",
"category": "utilities",
"activities": [
{
"entrypoint": "assets/quasicalculator.py",
"classname": "QuasiCalculator",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.quasikili.quasicalculator/icons/com.quasikili.quasicalculator_0.2.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.quasikili.quasicalculator/mpks/com.quasikili.quasicalculator_0.2.1.mpk"
}
,{
"name": "QuasiClock",
"publisher": "quasikili",
"short_description": "Flipclock styled time display",
"long_description": "Shows the current time with large flipclock styled numbers",
"fullname": "com.quasikili.quasi_clock",
"version": "0.1.1",
"category": "utilities",
"activities": [
{
"entrypoint": "main.py",
"classname": "QuasiClock",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.quasikili.quasi_clock/icons/com.quasikili.quasi_clock_0.1.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.quasikili.quasi_clock/mpks/com.quasikili.quasi_clock_0.1.1.mpk"
}
,{
"name": "Quasi Nametag",
"publisher": "QuasiKili",
"short_description": "Digital Nametag Display",
"long_description": "A customizable digital nametag with color selection.",
"fullname": "com.quasikili.quasinametag",
"version": "0.3.1",
"category": "utilities",
"activities": [
{
"entrypoint": "assets/quasinametag.py",
"classname": "QuasiNametag",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/com.quasikili.quasinametag/icons/com.quasikili.quasinametag_0.3.1_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.quasikili.quasinametag/mpks/com.quasikili.quasinametag_0.3.1.mpk"
}
,{
"activities": [
{
"classname": "WikipediaApp",
"entrypoint": "wikipedia.py",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"category": "knowledge",
"fullname": "com.quasikili.wikipedia",
"name": "Wikipedia",
"publisher": "QuasiKili",
"version": "0.0.2",
"short_description": "An app to search and read Wikipedia articles.",
"long_description": "An app to search and read Wikipedia articles.",
"icon_url": "https://apps.micropythonos.com/apps/com.quasikili.wikipedia/icons/com.quasikili.wikipedia_0.0.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/com.quasikili.wikipedia/mpks/com.quasikili.wikipedia_0.0.2.mpk"
}
,{
"name": "Columns",
"publisher": "Pavel Machek",
"short_description": "Falling columns game",
"long_description": "Blocks of 3 colors are falling. Align the colors to make blocks disappear.",
"fullname": "cz.ucw.pavel.columns",
"version": "0.3.3",
"category": "game",
"activities": [
{
"entrypoint": "main.py",
"classname": "Main",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.columns/icons/cz.ucw.pavel.columns_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.columns/mpks/cz.ucw.pavel.columns_0.3.3.mpk"
}
,{
"name": "Floodit",
"publisher": "Pavel Machek",
"short_description": "Simple game with colors.",
"long_description": "Game with colors, where objective is to turn whole board into single color in minimum number of steps.",
"fullname": "cz.ucw.pavel.floodit",
"version": "0.3.3",
"category": "game",
"activities": [
{
"entrypoint": "main.py",
"classname": "Main",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.floodit/icons/cz.ucw.pavel.floodit_0.3.3_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.floodit/mpks/cz.ucw.pavel.floodit_0.3.3.mpk"
}
,{
"name": "Gyro",
"publisher": "Pavel Machek",
"short_description": "Gyro",
"long_description": "Simple gyro app.",
"fullname": "cz.ucw.pavel.gyro",
"version": "0.2.2",
"category": "hardware",
"activities": [
{
"entrypoint": "main.py",
"classname": "Main",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.gyro/icons/cz.ucw.pavel.gyro_0.2.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.gyro/mpks/cz.ucw.pavel.gyro_0.2.2.mpk"
}
,{
"name": "Navstar",
"publisher": "Pavel Machek",
"short_description": "Simple navigation app.",
"long_description": "Simple navigation app using data from NAVSTAR GPS and other GNSS systems.",
"fullname": "cz.ucw.pavel.navstar",
"version": "0.2.2",
"category": "hardware",
"activities": [
{
"entrypoint": "assets/main.py",
"classname": "Main",
"intent_filters": [
{
"action": "main",
"category": "launcher"
}
]
}
],
"icon_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.navstar/icons/cz.ucw.pavel.navstar_0.2.2_64x64.png",
"download_url": "https://apps.micropythonos.com/apps/cz.ucw.pavel.navstar/mpks/cz.ucw.pavel.navstar_0.2.2.mpk"
}
]