-
Notifications
You must be signed in to change notification settings - Fork 305
/
catalog.json
12373 lines (12373 loc) · 903 KB
/
catalog.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
{
"charts": {},
"test": {},
"stable": {
"lanraragi": {
"name": "lanraragi",
"categories": [
"media"
],
"app_readme": "<p>Open source server for archival of comics/manga.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/lanraragi\">https://truecharts.org/charts/stable/lanraragi</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/lanraragi",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.11",
"latest_app_version": "0.8.81",
"latest_human_version": "0.8.81_4.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/lanraragi.png"
},
"docker-compose": {
"name": "docker-compose",
"categories": [
"docker"
],
"app_readme": "<p>Dedicated App for using Docker-Compose on TrueNAS SCALE</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/docker-compose\">https://truecharts.org/charts/stable/docker-compose</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/docker-compose",
"healthy": true,
"healthy_error": null,
"latest_version": "5.0.24",
"latest_app_version": "23.0.1",
"latest_human_version": "23.0.1_5.0.24",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/docker-compose.png"
},
"drawio": {
"name": "drawio",
"categories": [
"media"
],
"app_readme": "<p>Drawio is free online diagram software.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/drawio\">https://truecharts.org/charts/stable/drawio</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/drawio",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.26",
"latest_app_version": "20.8.20",
"latest_human_version": "20.8.20_4.0.26",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/drawio.png"
},
"kitchenowl": {
"name": "kitchenowl",
"categories": [
"utilities"
],
"app_readme": "<p>KitchenOwl is a smart self-hosted grocery list and recipe manager.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/kitchenowl\">https://truecharts.org/charts/stable/kitchenowl</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/kitchenowl",
"healthy": true,
"healthy_error": null,
"latest_version": "3.1.2",
"latest_app_version": "latest",
"latest_human_version": "latest_3.1.2",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/kitchenowl.png"
},
"typecho": {
"name": "typecho",
"categories": [
"hosting"
],
"app_readme": "<p>Typecho is a PHP Blogging Platform.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/typecho\">https://truecharts.org/charts/stable/typecho</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/typecho",
"healthy": true,
"healthy_error": null,
"latest_version": "7.0.19",
"latest_app_version": "1.2.0",
"latest_human_version": "1.2.0_7.0.19",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/typecho.png"
},
"cloudflared": {
"name": "cloudflared",
"categories": [
"network"
],
"app_readme": "<p>Client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/cloudflared\">https://truecharts.org/charts/stable/cloudflared</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/cloudflared",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.15",
"latest_app_version": "2023.2.1",
"latest_human_version": "2023.2.1_3.0.15",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/cloudflared.png"
},
"redmine": {
"name": "redmine",
"categories": [
"productivity"
],
"app_readme": "<p>Redmine is a flexible project management web application written using Ruby on Rails framework.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/redmine\">https://truecharts.org/charts/stable/redmine</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/redmine",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.29",
"latest_app_version": "5.0.4",
"latest_human_version": "5.0.4_6.0.29",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/redmine.png"
},
"code-server": {
"name": "code-server",
"categories": [
"media"
],
"app_readme": "<p>Run VS Code on any machine anywhere and access it in the browser.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/code-server\">https://truecharts.org/charts/stable/code-server</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/code-server",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.10",
"latest_app_version": "4.9.1",
"latest_human_version": "4.9.1_6.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/code-server.png"
},
"mosquitto": {
"name": "mosquitto",
"categories": [
"homeautomation"
],
"app_readme": "<p>Eclipse Mosquitto - An open source MQTT broker</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/mosquitto\">https://truecharts.org/charts/stable/mosquitto</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/mosquitto",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.10",
"latest_app_version": "2.0.15",
"latest_human_version": "2.0.15_8.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/mosquitto.png"
},
"projectsend": {
"name": "projectsend",
"categories": [
"incubator"
],
"app_readme": "<p>Projectsend is a self-hosted application that lets you upload files and assign them to specific clients that you create yourself.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/projectsend\">https://truecharts.org/charts/stable/projectsend</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/projectsend",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.19",
"latest_app_version": "2021.12.10",
"latest_human_version": "2021.12.10_6.0.19",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/projectsend.png"
},
"tsmuxer": {
"name": "tsmuxer",
"categories": [
"media"
],
"app_readme": "<p>tsMuxer is a Transport Stream muxer.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/tsmuxer\">https://truecharts.org/charts/stable/tsmuxer</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/tsmuxer",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.13",
"latest_app_version": "23.02.2",
"latest_human_version": "23.02.2_3.0.13",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/tsmuxer.png"
},
"dizquetv": {
"name": "dizquetv",
"categories": [
"media"
],
"app_readme": "<p>Create live TV channel streams from media on your Plex servers.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/dizquetv\">https://truecharts.org/charts/stable/dizquetv</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/dizquetv",
"healthy": true,
"healthy_error": null,
"latest_version": "9.0.9",
"latest_app_version": "1.5.0",
"latest_human_version": "1.5.0_9.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/dizquetv.png"
},
"youtransfer": {
"name": "youtransfer",
"categories": [
"Cloud",
"Tools-Utilities"
],
"app_readme": "<p>YouTransfer is a simple but elegant self-hosted file transfer sharing solution.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/youtransfer\">https://truecharts.org/charts/stable/youtransfer</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/youtransfer",
"healthy": true,
"healthy_error": null,
"latest_version": "2.1.8",
"latest_app_version": "latest",
"latest_human_version": "latest_2.1.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/youtransfer.png"
},
"babybuddy": {
"name": "babybuddy",
"categories": [
"media"
],
"app_readme": "<p>Helps caregivers track sleep, feedings, diaper changes, tummy time and more to learn about and predict baby's needs without (as much) guess work.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/babybuddy\">https://truecharts.org/charts/stable/babybuddy</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/babybuddy",
"healthy": true,
"healthy_error": null,
"latest_version": "11.0.27",
"latest_app_version": "1.14.0",
"latest_human_version": "1.14.0_11.0.27",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/babybuddy.png"
},
"prowlarr": {
"name": "prowlarr",
"categories": [
"media"
],
"app_readme": "<p>Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/prowlarr\">https://truecharts.org/charts/stable/prowlarr</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/prowlarr",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.24",
"latest_app_version": "1.1.3.2521",
"latest_human_version": "1.1.3.2521_8.0.24",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/prowlarr.png"
},
"synclounge": {
"name": "synclounge",
"categories": [
"incubator"
],
"app_readme": "<p>Synclounge is a third party tool that allows you to watch Plex in sync with your friends/family, wherever you are.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/synclounge\">https://truecharts.org/charts/stable/synclounge</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/synclounge",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.15",
"latest_app_version": "5.2.5",
"latest_human_version": "5.2.5_4.0.15",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/synclounge.png"
},
"dashdot": {
"name": "dashdot",
"categories": [
"media"
],
"app_readme": "<p>dash. (or dashdot) is a modern server dashboard, running on the latest tech, designed with glassmorphism in mind.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/dashdot\">https://truecharts.org/charts/stable/dashdot</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/dashdot",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.16",
"latest_app_version": "4.9.0",
"latest_human_version": "4.9.0_3.0.16",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/dashdot.png"
},
"spotweb": {
"name": "spotweb",
"categories": [
"media"
],
"app_readme": "<p>Spotweb is a decentralized usenet community based on the Spotnet protocol.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/spotweb\">https://truecharts.org/charts/stable/spotweb</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/spotweb",
"healthy": true,
"healthy_error": null,
"latest_version": "7.0.24",
"latest_app_version": "1.5.1",
"latest_human_version": "1.5.1_7.0.24",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/spotweb.png"
},
"minecraft-bedrock": {
"name": "minecraft-bedrock",
"categories": [
"games"
],
"app_readme": "<p>Minecraft Bedrock Dedicated Server</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/minecraft-bedrock\">https://truecharts.org/charts/stable/minecraft-bedrock</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/minecraft-bedrock",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.10",
"latest_app_version": "2022.1.0",
"latest_human_version": "2022.1.0_3.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/minecraft-bedrock.png"
},
"retrobot": {
"name": "retrobot",
"categories": [
"emulator",
"games"
],
"app_readme": "<p>A discord bot that allows you to play old nintendo games with your friends over chat.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/retrobot\">https://truecharts.org/charts/stable/retrobot</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/retrobot",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.10",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/retrobot.png"
},
"sdtd": {
"name": "sdtd",
"categories": [
"games"
],
"app_readme": "<p>This chart will download and install SteamCMD. It will also install 7 Days to Die and run it.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/sdtd\">https://truecharts.org/charts/stable/sdtd</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/sdtd",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.8",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/sdtd.png"
},
"flashpaper": {
"name": "flashpaper",
"categories": [
"Cloud",
"Productivity",
"Security",
"Tools-Utilities",
"Network-Web"
],
"app_readme": "<p>One-time encrypted password/secret sharing</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/flashpaper\">https://truecharts.org/charts/stable/flashpaper</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/flashpaper",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.6",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.6",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/flashpaper.png"
},
"healthchecks": {
"name": "healthchecks",
"categories": [
"media"
],
"app_readme": "<p>Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages (\"pings\") from your cron jobs and scheduled tasks (\"checks\"). When a ping does not arrive on time, Healthchecks sends out alerts.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/healthchecks\">https://truecharts.org/charts/stable/healthchecks</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/healthchecks",
"healthy": true,
"healthy_error": null,
"latest_version": "9.0.8",
"latest_app_version": "1.22.0",
"latest_human_version": "1.22.0_9.0.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/healthchecks.png"
},
"syslog-ng": {
"name": "syslog-ng",
"categories": [
"incubator"
],
"app_readme": "<p>syslog-ng allows you to flexibly collect, parse, classify, rewrite and correlate logs.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/syslog-ng\">https://truecharts.org/charts/stable/syslog-ng</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/syslog-ng",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.10",
"latest_app_version": "4.0.1",
"latest_human_version": "4.0.1_4.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/syslog-ng.png"
},
"picoshare": {
"name": "picoshare",
"categories": [
"media"
],
"app_readme": "<p>PicoShare is a minimalist service that allows you to share files easily.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/picoshare\">https://truecharts.org/charts/stable/picoshare</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/picoshare",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.11",
"latest_app_version": "1.3.1",
"latest_human_version": "1.3.1_4.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/picoshare.png"
},
"synctube": {
"name": "synctube",
"categories": [
"Cloud",
"Productivity",
"Tools-Utilities",
"MediaApp-Video",
"MediaServer-Video",
"Network-Web"
],
"app_readme": "<p>Synchronized video viewing with chat and other features. Lightweight modern implementation and very easy way to run locally.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/synctube\">https://truecharts.org/charts/stable/synctube</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/synctube",
"healthy": true,
"healthy_error": null,
"latest_version": "2.1.9",
"latest_app_version": "latest",
"latest_human_version": "latest_2.1.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/synctube.png"
},
"truecommand": {
"name": "truecommand",
"categories": [
"Administration"
],
"app_readme": "<p>Aggregated management of TrueNAS devices</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/truecommand\">https://truecharts.org/charts/stable/truecommand</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/truecommand",
"healthy": true,
"healthy_error": null,
"latest_version": "13.0.9",
"latest_app_version": "2.2",
"latest_human_version": "2.2_13.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/truecommand.png"
},
"makemkv": {
"name": "makemkv",
"categories": [
"media"
],
"app_readme": "<p>MakeMKV is your one-click solution to convert video that you own into free and patents-unencumbered format that can be played everywhere.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/makemkv\">https://truecharts.org/charts/stable/makemkv</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/makemkv",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.11",
"latest_app_version": "23.02.1",
"latest_human_version": "23.02.1_4.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/makemkv.png"
},
"znc": {
"name": "znc",
"categories": [
"incubator"
],
"app_readme": "<p>Znc is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/znc\">https://truecharts.org/charts/stable/znc</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/znc",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.10",
"latest_app_version": "1.8.2",
"latest_human_version": "1.8.2_4.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/znc.png"
},
"fileflows": {
"name": "fileflows",
"categories": [
"media"
],
"app_readme": "<p>An application that lets you automatically process files through a simple rule flow.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/fileflows\">https://truecharts.org/charts/stable/fileflows</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/fileflows",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.11",
"latest_app_version": "1.0.8",
"latest_human_version": "1.0.8_4.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/fileflows.png"
},
"onlyoffice-document-server": {
"name": "onlyoffice-document-server",
"categories": [
"office",
"documents",
"productivity"
],
"app_readme": "<p>ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/onlyoffice-document-server\">https://truecharts.org/charts/stable/onlyoffice-document-server</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/onlyoffice-document-server",
"healthy": true,
"healthy_error": null,
"latest_version": "9.0.23",
"latest_app_version": "7.3.0",
"latest_human_version": "7.3.0_9.0.23",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/onlyoffice-document-server.png"
},
"synapse": {
"name": "synapse",
"categories": [
"cloud"
],
"app_readme": "<p>A Helm chart to deploy a Matrix homeserver stack into Kubernetes</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/synapse\">https://truecharts.org/charts/stable/synapse</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/synapse",
"healthy": true,
"healthy_error": null,
"latest_version": "7.0.25",
"latest_app_version": "1.76.0",
"latest_human_version": "1.76.0_7.0.25",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/synapse.png"
},
"weblate": {
"name": "weblate",
"categories": [
"media"
],
"app_readme": "<p>Weblate is a copylefted libre software web-based continuous localization system</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/weblate\">https://truecharts.org/charts/stable/weblate</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/weblate",
"healthy": true,
"healthy_error": null,
"latest_version": "7.0.23",
"latest_app_version": "4.15.2",
"latest_human_version": "4.15.2_7.0.23",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/weblate.png"
},
"darktable": {
"name": "darktable",
"categories": [
"incubator"
],
"app_readme": "<p>Darktable is an open source photography workflow application and raw developer.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/darktable\">https://truecharts.org/charts/stable/darktable</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/darktable",
"healthy": true,
"healthy_error": null,
"latest_version": "5.0.12",
"latest_app_version": "3.8.1",
"latest_human_version": "3.8.1_5.0.12",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/darktable.png"
},
"sqlitebrowser": {
"name": "sqlitebrowser",
"categories": [
"media"
],
"app_readme": "<p>A high quality, visual, open source tool to create, design, and edit database files compatible with SQLite</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/sqlitebrowser\">https://truecharts.org/charts/stable/sqlitebrowser</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/sqlitebrowser",
"healthy": true,
"healthy_error": null,
"latest_version": "5.0.8",
"latest_app_version": "3.12.2",
"latest_human_version": "3.12.2_5.0.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/sqlitebrowser.png"
},
"papermerge": {
"name": "papermerge",
"categories": [
"incubator"
],
"app_readme": "<p>Papermerge is an open source document management system (DMS) primarily designed for archiving and retrieving your digital documents.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/papermerge\">https://truecharts.org/charts/stable/papermerge</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/papermerge",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.19",
"latest_app_version": "2.0.1",
"latest_human_version": "2.0.1_6.0.19",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/papermerge.png"
},
"homepage": {
"name": "homepage",
"categories": [
"dashboard"
],
"app_readme": "<p>A highly customizable homepage</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/homepage\">https://truecharts.org/charts/stable/homepage</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/homepage",
"healthy": true,
"healthy_error": null,
"latest_version": "2.0.22",
"latest_app_version": "0.6.7",
"latest_human_version": "0.6.7_2.0.22",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/homepage.png"
},
"cops": {
"name": "cops",
"categories": [
"Cloud",
"MediaApp-Books",
"MediaServer-Books"
],
"app_readme": "<p>Cops(http://blog.slucas.fr/en/oss/calibre-opds-php-server) by S\u00e9bastien Lucas, stands for Calibre OPDS (and HTML) Php Server.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/cops\">https://truecharts.org/charts/stable/cops</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/cops",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.2",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.2",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/cops.png"
},
"overseerr": {
"name": "overseerr",
"categories": [
"media"
],
"app_readme": "<p>Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services such as Sonarr, Radarr and Plex!</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/overseerr\">https://truecharts.org/charts/stable/overseerr</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/overseerr",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.11",
"latest_app_version": "1.32.5",
"latest_human_version": "1.32.5_8.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/overseerr.png"
},
"homebox": {
"name": "homebox",
"categories": [
"inventory"
],
"app_readme": "<p>Inventory and organization system built for the Home User.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/homebox\">https://truecharts.org/charts/stable/homebox</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/homebox",
"healthy": true,
"healthy_error": null,
"latest_version": "1.0.3",
"latest_app_version": "0.7.0",
"latest_human_version": "0.7.0_1.0.3",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/homebox.png"
},
"phpldapadmin": {
"name": "phpldapadmin",
"categories": [
"management"
],
"app_readme": "<p>Web-based LDAP browser to manage your LDAP server</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/phpldapadmin\">https://truecharts.org/charts/stable/phpldapadmin</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/phpldapadmin",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.9",
"latest_app_version": "0.9.0",
"latest_human_version": "0.9.0_8.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/phpldapadmin.png"
},
"nzbhydra": {
"name": "nzbhydra",
"categories": [
"media"
],
"app_readme": "<p>Usenet meta search</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/nzbhydra\">https://truecharts.org/charts/stable/nzbhydra</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/nzbhydra",
"healthy": true,
"healthy_error": null,
"latest_version": "13.0.8",
"latest_app_version": "4.7.1",
"latest_human_version": "4.7.1_13.0.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/nzbhydra.png"
},
"zwavejs2mqtt": {
"name": "zwavejs2mqtt",
"categories": [
"tools"
],
"app_readme": "<p>Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/zwavejs2mqtt\">https://truecharts.org/charts/stable/zwavejs2mqtt</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/zwavejs2mqtt",
"healthy": true,
"healthy_error": null,
"latest_version": "14.0.18",
"latest_app_version": "8.8.5",
"latest_human_version": "8.8.5_14.0.18",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/zwavejs2mqtt.png"
},
"logitech-media-server": {
"name": "logitech-media-server",
"categories": [
"media",
"audio"
],
"app_readme": "<p>Logitech Media Server is a platform for home/office audio streaming.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/logitech-media-server\">https://truecharts.org/charts/stable/logitech-media-server</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/logitech-media-server",
"healthy": true,
"healthy_error": null,
"latest_version": "6.1.14",
"latest_app_version": "8.4.0",
"latest_human_version": "8.4.0_6.1.14",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/logitech-media-server.png"
},
"xen-orchestra": {
"name": "xen-orchestra",
"categories": [
"management"
],
"app_readme": "<p>Xen-Orchestra is a Web-UI for managing your existing XenServer infrastructure.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/xen-orchestra\">https://truecharts.org/charts/stable/xen-orchestra</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/xen-orchestra",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.21",
"latest_app_version": "5.109.0",
"latest_human_version": "5.109.0_3.0.21",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/xen-orchestra.png"
},
"audiobookshelf": {
"name": "audiobookshelf",
"categories": [
"media"
],
"app_readme": "<p>Audiobookshelf is a self-hosted audiobook server for managing and playing your audiobooks.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/audiobookshelf\">https://truecharts.org/charts/stable/audiobookshelf</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/audiobookshelf",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.19",
"latest_app_version": "2.2.15",
"latest_human_version": "2.2.15_4.0.19",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/audiobookshelf.png"
},
"plaxt": {
"name": "plaxt",
"categories": [
"Other",
"MediaApp-Other",
"MediaServer-Other"
],
"app_readme": "<p>This Tools provides a way to keep your watched history synced FROM Plex Server To Trakt.tv</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/plaxt\">https://truecharts.org/charts/stable/plaxt</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/plaxt",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.9",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/plaxt.png"
},
"outline": {
"name": "outline",
"categories": [
"productivity"
],
"app_readme": "<p>A fast, collaborative, knowledge base for your team built using React and Node.js.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/outline\">https://truecharts.org/charts/stable/outline</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/outline",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.22",
"latest_app_version": "0.66.3",
"latest_human_version": "0.66.3_6.0.22",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/outline.png"
},
"joplin-server": {
"name": "joplin-server",
"categories": [
"media"
],
"app_readme": "<p>Allows you to sync any Joplin client.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/joplin-server\">https://truecharts.org/charts/stable/joplin-server</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/joplin-server",
"healthy": true,
"healthy_error": null,
"latest_version": "11.0.27",
"latest_app_version": "2.10.9",
"latest_human_version": "2.10.9_11.0.27",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/joplin-server.png"
},
"quassel-core": {
"name": "quassel-core",
"categories": [
"incubator"
],
"app_readme": "<p>Quassel-core is a modern, cross-platform, distributed IRC client.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/quassel-core\">https://truecharts.org/charts/stable/quassel-core</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/quassel-core",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.23",
"latest_app_version": "0.14.0",
"latest_human_version": "0.14.0_6.0.23",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/quassel-core.png"
},
"rdesktop": {
"name": "rdesktop",
"categories": [
"desktops"
],
"app_readme": "<p>Full desktop environments in many popular flavors for Alpine, Ubuntu, Arch, and Fedora accessible via RDP.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/rdesktop\">https://truecharts.org/charts/stable/rdesktop</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/rdesktop",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.22",
"latest_app_version": "latest",
"latest_human_version": "latest_3.0.22",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/rdesktop.png"
},
"unmanic": {
"name": "unmanic",
"categories": [
"media"
],
"app_readme": "<p>Unmanic is a simple tool for optimising your file library.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/unmanic\">https://truecharts.org/charts/stable/unmanic</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/unmanic",
"healthy": true,
"healthy_error": null,
"latest_version": "5.0.9",
"latest_app_version": "0.2.3",
"latest_human_version": "0.2.3_5.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/unmanic.png"
},
"watchyourlan": {
"name": "watchyourlan",
"categories": [
"network"
],
"app_readme": "<p>Lightweight network IP scanner with web GUI</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/watchyourlan\">https://truecharts.org/charts/stable/watchyourlan</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/watchyourlan",
"healthy": true,
"healthy_error": null,
"latest_version": "3.1.11",
"latest_app_version": "0.9.1",
"latest_human_version": "0.9.1_3.1.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/watchyourlan.png"
},
"mkvtoolnix": {
"name": "mkvtoolnix",
"categories": [
"media"
],
"app_readme": "<p>MKVToolNix is a set of tools to create, alter and inspect Matroska files.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/mkvtoolnix\">https://truecharts.org/charts/stable/mkvtoolnix</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/mkvtoolnix",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.13",
"latest_app_version": "23.02.2",
"latest_human_version": "23.02.2_4.0.13",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/mkvtoolnix.png"
},
"xbackbone": {
"name": "xbackbone",
"categories": [
"files"
],
"app_readme": "<p>XBackBone is a simple, self-hosted, lightweight PHP file manager</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/xbackbone\">https://truecharts.org/charts/stable/xbackbone</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/xbackbone",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.19",
"latest_app_version": "3.3.3",
"latest_human_version": "3.3.3_6.0.19",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/xbackbone.png"
},
"crafty-4": {
"name": "crafty-4",
"categories": [
"GameServers",
"minecraft"
],
"app_readme": "<p>Crafty Controller is a Minecraft Server Control Panel / Launcher.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/crafty-4\">https://truecharts.org/charts/stable/crafty-4</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/crafty-4",
"healthy": true,
"healthy_error": null,
"latest_version": "2.1.11",
"latest_app_version": "4.0.20",
"latest_human_version": "4.0.20_2.1.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/crafty-4.png"
},
"dokuwiki": {
"name": "dokuwiki",
"categories": [
"incubator"
],
"app_readme": "<p>Dokuwiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/dokuwiki\">https://truecharts.org/charts/stable/dokuwiki</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/dokuwiki",
"healthy": true,
"healthy_error": null,
"latest_version": "5.0.22",
"latest_app_version": "20220731.1",
"latest_human_version": "20220731.1_5.0.22",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/dokuwiki.png"
},
"openvscode-server": {
"name": "openvscode-server",
"categories": [
"incubator"
],
"app_readme": "<p>Openvscode-server provides a version of VS Code that runs a server on a remote machine.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/openvscode-server\">https://truecharts.org/charts/stable/openvscode-server</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/openvscode-server",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.12",
"latest_app_version": "1.75.1",
"latest_human_version": "1.75.1_4.0.12",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/openvscode-server.png"
},
"cryptofolio": {
"name": "cryptofolio",
"categories": [
"media"
],
"app_readme": "<p>Track your cryptocurrency holdings/portfolio</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/cryptofolio\">https://truecharts.org/charts/stable/cryptofolio</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/cryptofolio",
"healthy": true,
"healthy_error": null,
"latest_version": "6.0.9",
"latest_app_version": "2.2.0",
"latest_human_version": "2.2.0_6.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/cryptofolio.png"
},
"recyclarr": {
"name": "recyclarr",
"categories": [
"Tools-Utilities"
],
"app_readme": "<p>A command-line application that will automatically synchronize recommended settings from TRaSH guides to your Sonarr/Radarr instances.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/recyclarr\">https://truecharts.org/charts/stable/recyclarr</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/recyclarr",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.16",
"latest_app_version": "4.2.0",
"latest_human_version": "4.2.0_3.0.16",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/recyclarr.png"
},
"youtrack": {
"name": "youtrack",
"categories": [
"ProjectManagement"
],
"app_readme": "<p>YouTrack is a project management tool that can be adapted to your processes to help you deliver great products.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/youtrack\">https://truecharts.org/charts/stable/youtrack</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/youtrack",
"healthy": true,
"healthy_error": null,
"latest_version": "1.0.3",
"latest_app_version": "2022.3.653",
"latest_human_version": "2022.3.653_1.0.3",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/youtrack.png"
},
"gaps": {
"name": "gaps",
"categories": [
"media"
],
"app_readme": "<p>Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/gaps\">https://truecharts.org/charts/stable/gaps</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/gaps",
"healthy": true,
"healthy_error": null,
"latest_version": "13.0.9",
"latest_app_version": "0.10.4",
"latest_human_version": "0.10.4_13.0.9",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/gaps.png"
},
"minetest": {
"name": "minetest",
"categories": [
"games"
],
"app_readme": "<p>Minetest (server) is a near-infinite-world block sandbox game and a game engine.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/minetest\">https://truecharts.org/charts/stable/minetest</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/minetest",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.10",
"latest_app_version": "5.6.1",
"latest_human_version": "5.6.1_3.0.10",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/minetest.png"
},
"resilio-sync": {
"name": "resilio-sync",
"categories": [
"media"
],
"app_readme": "<p>Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/resilio-sync\">https://truecharts.org/charts/stable/resilio-sync</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/resilio-sync",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.8",
"latest_app_version": "2.7.2.1375",
"latest_human_version": "2.7.2.1375_8.0.8",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/resilio-sync.png"
},
"mosdns": {
"name": "mosdns",
"categories": [
"networking"
],
"app_readme": "<p>A location-based pluggable DNS forwarder/splitter.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/mosdns\">https://truecharts.org/charts/stable/mosdns</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/mosdns",
"healthy": true,
"healthy_error": null,
"latest_version": "4.0.14",
"latest_app_version": "5.1.0",
"latest_human_version": "5.1.0_4.0.14",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/mosdns.png"
},
"meshcentral": {
"name": "meshcentral",
"categories": [
"cloud"
],
"app_readme": "<p>MeshCentral is a full computer management web site</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/meshcentral\">https://truecharts.org/charts/stable/meshcentral</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/meshcentral",
"healthy": true,
"healthy_error": null,
"latest_version": "9.0.31",
"latest_app_version": "1.1.4",
"latest_human_version": "1.1.4_9.0.31",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/meshcentral.png"
},
"qbitmanage": {
"name": "qbitmanage",
"categories": [
"Downloaders",
"MediaApp-Other"
],
"app_readme": "<p>This tool will help manage tedious tasks in qBittorrent and automate them. Tag, categorize, remove orphaned data, remove unregistered torrents and much much more.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/qbitmanage\">https://truecharts.org/charts/stable/qbitmanage</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/qbitmanage",
"healthy": true,
"healthy_error": null,
"latest_version": "3.0.11",
"latest_app_version": "3.4.2",
"latest_human_version": "3.4.2_3.0.11",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/qbitmanage.png"
},
"lychee": {
"name": "lychee",
"categories": [
"media"
],
"app_readme": "<p>Lychee is a free photo-management tool, which runs on your server or web-space</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/lychee\">https://truecharts.org/charts/stable/lychee</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/lychee",
"healthy": true,
"healthy_error": null,
"latest_version": "16.0.23",
"latest_app_version": "4.7.0",
"latest_human_version": "4.7.0_16.0.23",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/lychee.png"
},
"radarr": {
"name": "radarr",
"categories": [
"media"
],
"app_readme": "<p>A fork of Sonarr to work with movies \u00e0 la Couchpotato</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/radarr\">https://truecharts.org/charts/stable/radarr</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/radarr",
"healthy": true,
"healthy_error": null,
"latest_version": "13.0.14",
"latest_app_version": "4.3.2.6857",
"latest_human_version": "4.3.2.6857_13.0.14",
"icon_url": "https://truecharts.org/img/hotlink-ok/chart-icons/radarr.png"
},
"reg": {
"name": "reg",
"categories": [
"utilities"
],
"app_readme": "<p>Docker registry v2 command line client and repo listing generator with security checks.</p>\n<p>This App is supplied by TrueCharts, for more information visit the manual: <a href=\"https://truecharts.org/charts/stable/reg\">https://truecharts.org/charts/stable/reg</a></p>\n<hr />\n<p>TrueCharts can only exist due to the incredible effort of our staff.\nPlease consider making a <a href=\"https://truecharts.org/sponsor\">donation</a> or contributing back to the project any way you can!</p>",
"location": "/home/runner/work/catalog/catalog/stable/reg",
"healthy": true,
"healthy_error": null,
"latest_version": "8.0.8",