-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path25.json
2836 lines (2836 loc) Β· 249 KB
/
25.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
{
"aaochat": {
"hash": "sha256-CWApkYa8xmjkyJBGwPq3QrcckLIflbFszar4hVyl5dQ=",
"url": "https://github.com/aaochat/aaochat/files/11040280/aaochat.tar.gz",
"version": "0.0.6",
"description": "Transform your Team's communication with Aao Business Chat!\n\nThis powerful App offers numerous helpful features to make your chats smoother, more engaging, and hassle-free. With Aao Business, you can:\n\n- π Share Audio/Video/Documents with ease\n- ποΈ Schedule messages for optimal timing\n- π Snooze messages for later\n- π Draft and save messages for later\n- π·οΈ Label messages for better organization\n- π€« Reply privately in groups\n- π Create Admin-Only Groups but with a Twist\n- π’ Use Broadcast Groups to reach multiple people at once\n- π Schedule Mute for when you need to focus\n- πΌοΈ View documents/media without downloading\n- π€ Utilize AI (OCR) to search photos, videos, and documents\n\nExperience Seamless and Efficient Team communication with Aao Business Chat.\n\n#####\n\nHere is the **[link](https://youtu.be/0n6bcnDckyc)** to the video: Step by step guide on how to install Aao Business Chat on Nextcloud **[https://youtu.be/0n6bcnDckyc](https://youtu.be/0n6bcnDckyc)**",
"homepage": "https://aaochat.com/",
"licenses": [
"agpl"
]
},
"afterlogic": {
"hash": "sha256-WGrAYaevoSFg/kgDtqN5LMFtrgMVV7CsfyqdVCUh7K8=",
"url": "https://afterlogic.com/download/nextcloud/afterlogic-nextcloud-209.tar.gz",
"version": "2.0.9",
"description": "Afterlogic WebMail",
"homepage": "https://afterlogic.org/webmail-lite",
"licenses": [
"agpl"
]
},
"analytics": {
"hash": "sha256-ytCe+qCEIeKdRAR5nL/saXuR/vu1HOIXq+eRSTz5+M4=",
"url": "https://github.com/Rello/analytics/releases/download/4.11.1/analytics-4.11.1.tar.gz",
"version": "4.11.1",
"description": "Connect data from different sources in one place.\nEnable flexible reports and enjoy seamless Nextcloud integration.\nVisualize and share anything, from financial analysis to IoT logs.\n\n##### Features:\n- Data sources: csv, spreadsheet, API, imports, manual entry\n- 3rd party: GitHub Statistics, website grabber, JSON\n- Register external data sources from other apps\n- Storage: real-time or database\n- Advanced data loads with scheduling\n- Visualization: combined charts, zoom, tables, filters\n- Analysis functions: trend, dis-/aggregation\n- Thresholds for alerts and color coding\n- Integration: Files, Activity, Notifications, Flow, Dashboard, Search, Smart picker, Translation\n- Sharing: user, groups, link",
"homepage": "https://rello.github.io/analytics/",
"licenses": [
"agpl"
]
},
"analytics_sourcepack": {
"hash": "sha256-m0sFPTtfdsVAUY/LJwTEZO14/ULEnkVfyJXungWo7IE=",
"url": "https://github.com/Rello/analytics_sourcepack/releases/download/0.0.3/analytics_sourcepack-0.0.3.tar.gz",
"version": "0.0.3",
"description": "Additional data sources for the Analytics app\n\n- Salesforce Sales Cloud\n- Odoo CRM\n- Nextcloud user quota (beta)",
"homepage": "https://github.com/Rello/analytics_sourcepack",
"licenses": [
"agpl"
]
},
"announcementcenter": {
"hash": "sha256-4H1/e2TLzEVza10WXZNLqIeITQlmLR+ZHZvvD/y7/8o=",
"url": "https://github.com/nextcloud-releases/announcementcenter/releases/download/v6.6.2/announcementcenter-v6.6.2.tar.gz",
"version": "6.6.2",
"description": "Announce your maintenance window ποΈ, introduce a new colleague π€ or make sure everyone knows about the big event next month π
\n\nποΈ Markdown support\n\nπ Comments including @-mentions\n\nπͺ Group permissions\n\nβ Dashboard integration\n\nβ‘ Activities integration\n\nπ Notifications integration",
"homepage": "https://github.com/nextcloud/announcementcenter",
"licenses": [
"agpl"
]
},
"appointments": {
"hash": "sha256-2VXBhcfd+cx07zv3cIXl+z1GgeddMwPQyeC8wOMJ8s0=",
"url": "https://github.com/SergeyMosin/Appointments/raw/v1.15.4/build/artifacts/appstore/appointments.tar.gz",
"version": "1.15.4",
"description": "Book appointments into your calendar via secure online form. Attendees can confirm or cancel their appointments via an email link.",
"homepage": "https://www.srgdev.com/lab/nextcloud-appointments/",
"licenses": [
"agpl"
]
},
"approval": {
"hash": "sha256-s4zXk/O0+ixPWQucFyBVyTZ/W7611WQpmy/TOfdSyzg=",
"url": "https://github.com/nextcloud-releases/approval/releases/download/v1.1.1/approval-v1.1.1.tar.gz",
"version": "1.1.1",
"description": "Approve/reject files based on workflows defined by admins.",
"homepage": "https://github.com/nextcloud/approval",
"licenses": [
"agpl"
]
},
"audioplayer": {
"hash": "sha256-ZPIvn5devG6puTyxgXlBpA60kJsYWXbQLNiL5f2jLrA=",
"url": "https://github.com/Rello/audioplayer/releases/download/3.4.1/audioplayer-3.4.1.tar.gz",
"version": "3.4.1",
"description": "A music player for FLAC, MP3, MP4, AIF, AAC, streams, β¦ with playlist support and SONOS integration.\n\n- Cover or List view by various categories\n- Tuned for big audio collections\n- Smart lists & playlists\n- Stream URLs\n- Favorites, Search & Collaborative Tag integration\n- Specifying media folder (with exclude functionality)\n- Hardware media keys & Chrome/Android/macOS integration\n- [SONOS player](https://github.com/rello/audioplayer_sonos) via add-on\n- Use the Recognize app to classify genres by machine learning\n\nSee [README](https://github.com/rello/audioplayer/blob/master/README.md) file for all supported MIME types and additional information.",
"homepage": "https://rello.github.io/audioplayer",
"licenses": [
"agpl"
]
},
"auto_groups": {
"hash": "sha256-wyBRPcsSs2s6DBD2VV8hyexhrJ6JvVAB96ihxdXsCfE=",
"url": "https://github.com/stjosh/auto_groups/releases/download/v1.5.3/auto_groups-v1.5.3.tar.gz",
"version": "1.5.3",
"description": "Automatically add users to the specified Auto Groups, except those users belonging to one of the specified Override Groups. \nOptionally, the group assignment can be triggered on every successful login, which is useful for external user backends.\n\n## Configuration\n\n- Go to \"Settings > Administration > Additional settings\"\n- Configure the Auto Groups\n- If required, configure the Override Groups (e.g., for Service Accounts)\n- Optionally, enable the Login Hook, which will enforce correct group membership on every successful login\n\nNote that this app prevents group deletions for groups referenced as Auto Groups or Override Groups.\n\n## Comparison to similar Apps\n\n* [Everyone Group](https://apps.nextcloud.com/apps/group_everyone): The \"Everyone Group\" app adds a virtual Group Backend, always returning all users. In contrast, \"Auto Groups\" operates on \"real\" groups in your normal Group Backend. Additionally, it is possible to specify Override Groups which will prevent users from being added to the Auto Group(s).\n* [Default Group](https://apps.nextcloud.com/apps/defaultgroup): \"Auto Groups\" is actually a modernized and maintaned fork of \"Default Group\", which seems to be abandoned since NC12 or so. In terms of functionality, they are almost identical.\n\nIn addition, I plan to add some more features over time, e.g., \"Union Groups\" - see the [Milestone Plans](https://github.com/stjosh/auto_groups/milestones) for more details.",
"homepage": "https://github.com/stjosh/auto_groups",
"licenses": [
"agpl"
]
},
"backup": {
"hash": "sha256-8ded/JdR8qSgHWOqKzOzVesH0MCCxNAoN/mqg58IU3M=",
"url": "https://github.com/nextcloud-releases/backup/releases/download/1.2.0/backup-1.2.0.tar.gz",
"version": "1.2.0",
"description": "The Backup App creates and stores backup images of your Nextcloud:\n\n- Backup the instance, its apps, your data and your database,\n- Administrator can configure the time slots for automated backup,\n- Full and Partial backup, with different frequencies,\n- 2-pass to limit downtime (maintenance mode) of your instance,\n- Compression and encryption,\n- Upload your encrypted backup on an external filesystem,\n- Download and search for your data,\n- Restore single file or the entire instance.",
"homepage": "https://github.com/nextcloud/backup",
"licenses": [
"agpl"
]
},
"bbb": {
"hash": "sha256-S5gBSH1LE9PSwXA23jGYWP8z5iT0gb8p823KqZ3ImPA=",
"url": "https://github.com/sualko/cloud_bbb/releases/download/v2.5.0/bbb-v2.5.0.tar.gz",
"version": "2.5.0",
"description": "This app allows to create meetings with an external installation of [BigBlueButton](https://bigbluebutton.org).\n\n* **Room setup** Create multiple room configurations with name, welcome message β¦\n* **Share guest link** Share the room link with all your guests\n* **Share moderator link** Invite moderators to the room\n* **Share rooms** Share rooms with members, groups or circles\n* **Custom presentation** Start a room with a selected presentation from your file browser\n* **Manage recordings** View, share and delete recordings for your rooms\n* **Restrictions** Restrict room creation to certain groups\n* **Activities** Get an overview of your room activities\n\nQuick start guide and further information in our [readme](https://github.com/sualko/cloud_bbb).\nDo you like this application? Give something back to the open source community and checkout our\n[ways to contribute](https://github.com/sualko/cloud_bbb/blob/master/.github/contributing.md).\n\nDeveloper wanted! If you have time it would be awesome if you could help to enhance this application.\n\n*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*",
"homepage": "https://github.com/sualko/cloud_bbb/",
"licenses": [
"agpl"
]
},
"bookmarks": {
"hash": "sha256-NVyaVeg/UPgFaW/iCZiJkw1l5Vqc+S/4FMfFhHCBUTo=",
"url": "https://github.com/nextcloud/bookmarks/releases/download/v12.1.0/bookmarks-12.1.0.tar.gz",
"version": "12.1.0",
"description": "- π Sort bookmarks into folders\n- π· Add tags and personal notes\n- π Full-text search\n- π² Synchronize with all your browsers and devices\n- πͺ Share bookmarks with other users and publicly\n- β Find broken links\n- β Generate RSS feeds of your collections\n- π Read archived versions of your links in case they are depublished\n- π¬ Create new bookmarks directly from within Nextcloud Talk\n- πΌ Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0",
"homepage": "https://github.com/nextcloud/bookmarks",
"licenses": [
"agpl"
]
},
"breezedark": {
"hash": "sha256-QjZ7N5rSJal8UTSTllD0Rc0qE5IjkxGV9Giq+CQLkbI=",
"url": "https://github.com/mwalbeck/nextcloud-breeze-dark/releases/download/v25.0.2/breezedark.tar.gz",
"version": "25.0.2",
"description": "# Breeze Dark\nThis is a breeze dark theme for Nextcloud, based on the Breeze Dark theme made by the KDE Project.\n\n## Usage\n\nAfter you install the theme, you need to enable it. There are two options for this, a global and a personal one.\n\n### Global\n\nWith the global options you can enforce the use of the theme for all users as well as unauthenticated visits. Please note that when the theme is enforced for all users it isn't possible for them to disable the theme or choose a different theme.\n\nThere is also an option to let the theme be enabled / disabled based on the theming preferences reported by browser. When the theme is deactivated using this method, Nextcloud will revert to using the default light theme. This setting only sets the default for when the theme is globally enforced and can be overridden by the user.\n\nYou can also choose whether the login page should be themed. Though this only has an effect if the theme is enforced globally, or during the login phase of a user that has the theme enabled.\n\nYou can find the global options here:\n\n```\nSettings > Administration > Theming > Breeze Dark\n```\n\n### Personal\n\nThe personal option allows each user to enable / disable the theme unless it's being enforced by the global options. They can though choose whether the theme should follow the theming choice reported by the browser. This option is also available when the theme is being enforced globally. If the user hasn't set a preference they will follow the global default. You can find the personal option here:\n\n```\nSettings > Personal > Appearance and accessibility > Breeze Dark\n```\n\n### Custom styling\n\nUnder the Theming section in the admin settings you can add your own custom styling to the theme. Only standard CSS can be used. This custom styling will be applied whenever the theme is enabled and only affects the Breeze Dark theme.",
"homepage": "https://github.com/mwalbeck/nextcloud-breeze-dark",
"licenses": [
"agpl"
]
},
"cadviewer": {
"hash": "sha256-kWyu04xUjA6nr1VfS96fDDQfFy1/ogTcv42ErtIbhC0=",
"url": "https://github.com/CADViewer/NextCloud/releases/download/cv__nextcloud_v9.47.1/cadviewer-v9.47.1.tar.gz",
"version": "9.47.1",
"description": "# CADViewer\nCADViewer implements CAD viewing, markup and collaboration on the NextCloud platform for AutoCAD, MicroStation, PDF and advanced raster graphics. Following CADViewer features are available:\n- **AutoCAD**: Support for DWG, DXF and DWF files.\n- **MicroStation**: Support for DGN files.\n- **PDF**: Support for Vector Graphics PDF files. (Use **...** menu)\n- **TIFF**: Support for TIFF format. (Use **...** menu)\n- **PNG, JPG, GIF**: Bitmap support. (Use **...** menu)\n- **SVG**: SVG support. (Use **...** menu)\n- **Annotation**: Full redlining interface of drawings where each user has individually associated redlines.\n- **PDF Collaboration**: Redlines/Annotations on drawings are saved as PDF to the user's *CADViewer-Markup* folder, where the user can then share internally/externally.\n- **Download**: Direct download of SVG or PDF image with/without redlines/annotations.\n- **Printing**: Printing of drawings to printer driver or as PDF.\n- **Measurement**: Global scale matrix preserved in drawing for measurement and calibration methods.\n- **Zoom**: Advanced zoom and pan controls.\n- **Layers**: Retained layer structure for layer management.\n- **Search**: Integrated text search method.\n- **Compare**: Advanced compare of drawings. Compare of different versions of same files in Nextcloud 27+.\n\n## πOnline Demo\n- To test the look and feel of [CADViewer](https://cadviewer.com), check out our [Online Demos](https://cadviewer.com/cadviewerdemo/).\n\n## π¦Installation\n1. Install the app from the Nextcloud app store or from CADViewer [GitHub repository](https://github.com/CADViewer/NextCloud/).\n2. Perform the [configuration steps](https://github.com/CADViewer/NextCloud/blob/main/README.md).\n3. **NOTE**: The configuration steps (possible permission settings and ownership for executable, log files, and folders, and .htaccess file modification for rewrite rule) are needed for the back-end CAD conversion to work properly. Without check of settings, no drawings will display!\n4. Simply open your CAD drawings and start collaborate.. π \n5. If you have any issues displaying drawings, see [troubleshooting](https://github.com/CADViewer/NextCloud/blob/main/README.md) , file an [issue report](https://github.com/CADViewer/NextCloud/issues) or [contact us](mailto:[email protected]).\n6. Software run with all features enabled, but with small canvas watermarks to discurage redistribution of converted drawings. To remove watermarks through a license key, corp or single user(s), [Contact Us!](https://cadviewer.com/contact/).\n7. **NOTE**: The back-end CAD converter is an x86_64 executable, currently ARM architecture is not supported.\n\n## Guides\n1. [Administrator Interface Guide](https://cadviewer.com/cadviewerusermanual/referenceapplications/nextcloud/admin/).\n2. [User Interface Guide](https://cadviewer.com/cadviewerusermanual/referenceapplications/nextcloud/userinterface/).",
"homepage": "https://www.cadviewer.com",
"licenses": [
"agpl"
]
},
"calendar": {
"hash": "sha256-MHjHgMMWJ8zaQYUpuodfkYGVMcewAAE7E6fSAzn310A=",
"url": "https://github.com/nextcloud-releases/calendar/releases/download/v4.6.7/calendar-v4.6.7.tar.gz",
"version": "4.6.7",
"description": "The Calendar app is a user interface for Nextcloud's CalDAV server. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* π **Integration with other Nextcloud apps!** Currently Contacts - more to come.\n* π **WebCal Support!** Want to see your favorite teamβs matchdays in your calendar? No problem!\n* π **Attendees!** Invite people to your events\n* βοΈ **Free/Busy!** See when your attendees are available to meet\n* β° **Reminders!** Get alarms for events inside your browser and via email\n* π Search! Find your events at ease\n* βοΈ Tasks! See tasks with a due date directly in the calendar\n* π **Weβre not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.",
"homepage": "https://github.com/nextcloud/calendar/",
"licenses": [
"agpl"
]
},
"calendar_news": {
"hash": "sha256-5NlSORDBxZMt1f37vd2Y7GvZtUOulU9kW0PkBEj6o+k=",
"url": "https://github.com/mziech/nextcloud-calendar-news/releases/download/v1.1.8/calendar_news.tar.gz",
"version": "1.1.8",
"description": "This generates a scheduled e-mail newsletter based on calendar events.\n\nThe administrator can freely configure the sections of the newsletter.\nThe following section types are supported:\n* Static headline\n* Static text paragraph\n* List of calendar entries of calendars accessible to the administrator\n\nFor each calendar, the relative timespan can be configured and the list entries can be formatted using a simple placeholder-language.",
"homepage": "https://github.com/mziech/nextcloud-calendar-news",
"licenses": [
"agpl"
]
},
"calendar_resource_management": {
"hash": "sha256-6SuYmQF5Gc4yTUdAYYe+eEZebC8eLFuAXgNRF7krb5o=",
"url": "https://github.com/nextcloud-releases/calendar_resource_management/releases/download/v0.6.0/calendar_resource_management-v0.6.0.tar.gz",
"version": "0.6.0",
"description": "Management for calendar resources and rooms",
"homepage": "",
"licenses": [
"agpl"
]
},
"camerarawpreviews": {
"hash": "sha256-OoVdK0KZuDr3veZqyNx0cErr6v8P1ziEMMC6X8qO/Qw=",
"url": "https://github.com/ariselseng/camerarawpreviews/releases/download/v0.8.4/camerarawpreviews_nextcloud.tar.gz",
"version": "0.8.4",
"description": "This app will make previews of "RAW" files from cameras in Nextcloud.",
"homepage": "",
"licenses": [
"agpl"
]
},
"carnet": {
"hash": "sha256-xKG0MRzWdBYJERXZ6HU4sZIqhL9lVZHnWIkaVdZnYUg=",
"url": "https://github.com/CarnetApp/CarnetNextcloud/releases/download/v0.25.4/carnet-nc-v0.25.4.tar.gz",
"version": "0.25.4",
"description": "Carnet is a powerful note taking app which purpose is not only to write your shopping list but can also be used to write longer texts, stories, etc. Carnet is available on Android and Linux, on your web browser, Windows and\nMac, with sync capabilities\n- Complete editor : bold/italic/underline/color/highlight\n- Import from Google Keep (only on desktop, then sync on mobile)\n- Insert images / review\n- Open HTML format\n- Organize with folders and choose root storage folder depending on your needs\n- Keywords\n- Quickly see your recent notes\n- Search amount your notes\n- Protect the app with a pin code (no encryption) on android\n- Statistics : words/sentences/characters\n- Sync with ownCloud/NextCloud\n- Online editor as a ownCloud/NextCloud App",
"homepage": "https://github.com/CarnetApp/CarnetNextcloud",
"licenses": [
"agpl"
]
},
"cas": {
"hash": "sha256-J4hokoIpghJt5CZ2LJMpZsRlyd4gLm0IbYSdCpFKh/o=",
"url": "https://github.com/mziech/nextcloud-cas/releases/download/v0.2.11/cas.tar.gz",
"version": "0.2.11",
"description": "This is an very basic and experimental implementation of the CAS server protocol for Nextcloud.\nIt is not another user backend for Nextcloud, instead it allows you to authenticate 3rd-party or\ncustom web applications against the Nextcloud user database.\n \nIf you are creating a custom application and you want to integrate it seemlessly with Nextcloud login,\nyou can either follow the [CAS protocol specification](https://apereo.github.io/cas/4.2.x/protocol/CAS-Protocol-Specification.html)\nor better use one of the many available CAS client libraries.",
"homepage": "https://github.com/mziech/nextcloud-cas",
"licenses": [
"agpl"
]
},
"certificate24": {
"hash": "sha256-B5M3yKIyRzq0t1dsCodVHpTp0ApBeLh1msB9EkAh4wQ=",
"url": "https://github.com/strukturag/nextcloud-certificate24/releases/download/v0.2.3/certificate24.tar.gz",
"version": "0.2.3",
"description": "Certificate24 - Digital Document Signature\n\nWith Certificate24 you can request digital signatures of documents stored in your Nextcloud from other users in Nextcloud or from external users (by email).\n\nSee [the website](https://www.certificate24.com) for further information.",
"homepage": "https://www.certificate24.com",
"licenses": [
"agpl"
]
},
"cfg_share_links": {
"hash": "sha256-jGc/kT4wEJHjGulMxAktoeImkR4Zfng5OQOz2F19+Ok=",
"url": "https://github.com/jimmyl0l3c/cfg_share_links/releases/download/v4.2.0/cfg_share_links.tar.gz",
"version": "4.2.0",
"description": "App for Nextcloud that adds the ability to specify share tokens when creating new public links and change tokens of existing links.\n\n## Features\n\nSharing sidebar is expanded by new section (Custom public link) that allows you to create public links with custom share tokens.\nYou can also customize share tokens of existing public links.\n\n## Settings\n\nBy going to **Administration settings > Administration > Configurable Share Links** admins can set default labels for custom links and minimal token length.\nDefault label can be: none, same as token or custom (the same custom label for all custom links).",
"homepage": "https://github.com/jimmyl0l3c/cfg_share_links",
"licenses": [
"agpl"
]
},
"checksum": {
"hash": "sha256-Ds6CQQCwGh5Ui+LJ4yj0fL8WsqQDmkDORTsFLys1kNE=",
"url": "https://github.com/westberliner/checksum/releases/download/v1.2.4/checksum.tar.gz",
"version": "1.2.4",
"description": "Allows users to create a hash checksum of a file.\n Possible algorithms are md5, sha1, sha256, sha384, sha512, sha3-256, sha3-512 and crc32.\n\n Just open the details view of the file (Sidebar). There should be a new tab called \"Checksum\".\n Select a algorithm and it will try to generate a hash.\n If you want an other algorithm, just click on the reload button.",
"homepage": "https://github.com/westberliner/checksum/",
"licenses": [
"agpl"
]
},
"chores": {
"hash": "sha256-Vth91scO2SrcbCdPxMQqldmt9Tp2Q3aPRze1iPn1ZWs=",
"url": "https://teo.sinyax.net/cdn/chores_0.0.5-1-gd80d463.tar.gz",
"version": "0.0.5",
"description": "Track chores and receive points for doing them!\n\nCreate a team and invite other Nextcloud users from the same server, the total\npoints for each member are tracked.\n\nChores can be set to automatically repeat based on a schedule.",
"homepage": "https://sr.ht/~cypheon/nextcloud-chores/",
"licenses": [
"agpl"
]
},
"circlesdb": {
"hash": "sha256-yyila0I8RNr0iYX76XOEelgGxEY7xt7SFHmTn32HoZU=",
"url": "https://github.com/derbenx/nextcloud-circlesdb/releases/download/v1.8.2/circlesdb.tar.gz",
"version": "1.8.2",
"description": "# circlesdb\nA Nextcloud app that lets you play Circles.\nCircles is a game where you attempt to match all the coloured half circles by moving the big circles around.\nThe computer will generate and shuffle a new puzzle, all you have to do is put it together like a jigsaw puzzle.\n\nDrag pieces with a plus or line.\nClick pieces with a circle or curve.\nNeed help? Take a look at the Tutorial Video: https://youtu.be/CwkhMN1WqD0",
"homepage": "https://github.com/derbenx/nextcloud-circlesdb",
"licenses": [
"agpl"
]
},
"cloud_py_api": {
"hash": "sha256-FXsLCL2IBE3V3wfRzFcuUuX2dG2FEEodfGyNa5kv6Gc=",
"url": "https://github.com/cloud-py-api/cloud_py_api/releases/download/v0.1.8/cloud_py_api.tar.gz",
"version": "0.1.8",
"description": "Nextcloud Python API Framework\n\n| **Currently in development, all is under design**\n\n### Provides convenient functions for Python\n\n- Read & write file system objects\n- Working with database\n- Wrapper around `OCC` calls\n- Calling your python function from php part of your app and return a result\n\n### Used by the following apps\n\n- [MediaDC](https://apps.nextcloud.com/apps/mediadc) - Nextcloud Media Duplicate Collector app",
"homepage": "https://github.com/cloud-py-api/cloud_py_api",
"licenses": [
"agpl"
]
},
"cms_pico": {
"hash": "sha256-XEZPm8rB4WWW8cHNohMnEtZe+P9znNsUHvsrxcg0cWQ=",
"url": "https://github.com/nextcloud/cms_pico/releases/download/v1.0.21/cms_pico-v1.0.21.tar.gz",
"version": "1.0.21",
"description": "[Pico CMS for Nextcloud](https://github.com/nextcloud/cms_pico) combines the power of [**Pico**](http://picocms.org/) and [**Nextcloud**](https://nextcloud.com/) to create simple, secure, shareable and amazingly powerful websites with just a few clicks. Pico is a stupidly simple, blazing fast, flat file CMS - making the web easy.\n\n* Start a blog\n* Share your resume with the world\n* Create a plan for world domination and only share with the right friends\n* Build a knowledge base and let the smart ones among your colleagues help out\n\nInstalling Pico CMS for Nextcloud allows your users to create and manage their own websites. Creating a new page with Pico is no more than creating a simple text file in a users' Nextcloud files. No config is required, no utterly complex management interfaces - just files. It's the perfect match with Nextcloud. Secure Sharing, Collaboration, Access Control - not just for your files, but also your websites, all made possible by Pico CMS for Nextcloud! Breaking the boundaries between your Mobile & Desktop devices and your Server.\n\nWebsites will be accessible through URLs like `https://cloud.example.com/sites/my_site/` and consist of just a bunch of `.md` text files in a user's Nextcloud files. `.md` stands for [**Markdown**](https://www.markdownguide.org/) - a super simple and intuitive markup to create headings, paragraphs, text formatting, lists, images and links. But don't despair - you don't have to learn yet another language if you don't want to. Consider enabling Nextcloud's [Markdown Editor](https://apps.nextcloud.com/apps/files_markdown) app to make easy things stupidly simple. Please note that Nextcloud's built-in Text editor is incompatible with Pico CMS for Nextcloud. But what about meta data like a page's title or release date? Guess right, it's all in one place. At the top of your Markdown files you can place a block with such meta data - called the [**YAML**](https://en.wikipedia.org/wiki/YAML) Front Matter. Creating websites can't be easierβ¦\n\nBut that wasn't everythingβ¦ Pico CMS for Nextcloud is highly customizable. You can change Picoβs appearance by using custom themes and add new functionality by using custom plugins. For security reasons users can neither add custom themes nor plugins on their own - but as an admin you can. Plugins and themes arenβt just new \"skins\" or \"widgets\", the underlying technologies are powerful frameworks you can leverage to make your users' websites truly unique. However, with great power comes great responsibility. Pico CMS for Nextcloud does its best to prevent users from including scripts into websites, since this might bear security risks (so called \"Cross Scripting\"). Since this risk doesn't apply to Pico itself, 3rd-party developers of plugins and themes might not be aware of this issue - so be careful when installing custom plugins and themes.\n\nYou want to learn more about Pico CMS for Nextcloud? Easy! Just download and enable the app from [Nextcloud's App Store](https://apps.nextcloud.com/apps/cms_pico) and navigate to Nextcloud's settings page. As an admin you'll find two \"Pico CMS\" sections in your Nextcloud settings - one below \"Personal\", another below \"Administration\". The latter allows you to add custom themes, plugins and templates to Pico, as well as tweaking some advanced settings. The \"Pico CMS\" section below \"Personal\" exists for all Nextcloud users and allows one to create personal websites. Simply create your first personal website and choose \"sample_pico\" as website template. Pico's sample contents will explain all you need to knowβ¦",
"homepage": "https://github.com/nextcloud/cms_pico",
"licenses": [
"agpl"
]
},
"co2clock": {
"hash": "sha256-MAOLF19//Y8+/CCHlzNuBoc2LKevJHvyruRgcDZWN+E=",
"url": "https://github.com/theCalcaholic/nextcloud-co2-clock/releases/download/v1.0.2/co2clock.tar.gz",
"version": "1.0.2",
"description": "Displays a clock showing the remaining global CO2 budget (and the time we will have used it up at the current rate) on the Nextcloud login pages of Nextcloud itself and password protected shared links.\n\nSource for the clock: [mcc-berlin.net](https://www.mcc-berlin.net/en/research/co2-budget.html)",
"homepage": "https://github.com/thecalcaholic/nextcloud-co2-clock",
"licenses": [
"mpl"
]
},
"collectives": {
"hash": "sha256-sD+2rlmooZaWJS9vF5hIiO+6C8CB5ZeACfHLwY23lFY=",
"url": "https://github.com/nextcloud/collectives/releases/download/v2.9.2/collectives-2.9.2.tar.gz",
"version": "2.9.2",
"description": "Collectives is a Nextcloud App for activist and community projects to organize together.\nCome and gather in collectives to build shared knowledge.\n\n* π₯ **Collective and non-hierarchical workflow by heart**: Collectives are\n tied to a [Nextcloud Team](https://github.com/nextcloud/circles) and\n owned by the collective.\n* π **Collaborative page editing** like known from Etherpad thanks to the\n [Text app](https://github.com/nextcloud/text).\n* π€ **Well-known [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax**\n for page formatting.\n\n## Installation\n\nIn your Nextcloud instance, simply navigate to **Β»AppsΒ«**, find the\n**Β»TeamsΒ«** and **Β»CollectivesΒ«** apps and enable them.",
"homepage": "https://github.com/nextcloud/collectives",
"licenses": [
"agpl"
]
},
"contacts": {
"hash": "sha256-zxmgMiizzXGfReRS9XJ+fb6tJRLH/Z5NvuLpspYARFI=",
"url": "https://github.com/nextcloud-releases/contacts/releases/download/v5.5.3/contacts-v5.5.3.tar.gz",
"version": "5.5.3",
"description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* π **Integration with other Nextcloud apps!** Currently Mail and Calendar β more to come.\n* π **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* π₯ **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* π **Weβre not reinventing the wheel!** Based on the great and open SabreDAV library.",
"homepage": "https://github.com/nextcloud/contacts#readme",
"licenses": [
"agpl"
]
},
"cookbook": {
"hash": "sha256-EHc+AMKsjAVVcNQ00Yf0Z4AFeUWdtf1uYGA5BHlTcTM=",
"url": "https://github.com/christianlupus-nextcloud/cookbook-releases/releases/download/v0.10.5/cookbook-0.10.5.tar.gz",
"version": "0.10.5",
"description": "A library for all your recipes. It uses JSON files following the schema.org recipe format. To add a recipe to the collection, you can paste in the URL of the recipe, and the provided web page will be parsed and downloaded to whichever folder you specify in the app settings.",
"homepage": "https://github.com/nextcloud/cookbook/",
"licenses": [
"agpl"
]
},
"cospend": {
"hash": "sha256-49jcRpt9iC30WmjgiB6BapbFo+k7FwMrmdW32SLuw5I=",
"url": "https://github.com/julien-nc/cospend-nc/releases/download/v1.5.8/cospend-1.5.8.tar.gz",
"version": "1.5.8",
"description": "# Nextcloud Cospend π°\n\nNextcloud Cospend is a group/shared budget manager. It was inspired by the great [IHateMoney](https://github.com/spiral-project/ihatemoney/).\n\nYou can use it when you share a house, when you go on vacation with friends, whenever you share expenses with a group of people.\n\nIt lets you create projects with members and bills. Each member has a balance computed from the project bills. Balances are not an absolute amount of money at members disposal but rather a relative information showing if a member has spent more for the group than the group has spent for her/him, independently of exactly who spent money for whom. This way you can see who owes the group and who the group owes. Ultimately you can ask for a settlement plan telling you which payments to make to reset members balances.\n\nProject members are independent from Nextcloud users. Projects can be shared with other Nextcloud users or via public links.\n\n[MoneyBuster](https://gitlab.com/eneiluj/moneybuster) Android client is [available in F-Droid](https://f-droid.org/packages/net.eneiluj.moneybuster/) and on the [Play store](https://play.google.com/store/apps/details?id=net.eneiluj.moneybuster).\n\n[PayForMe](https://github.com/mayflower/PayForMe) iOS client is currently under developpement!\n\nThe private and public APIs are documented using [the Nextcloud OpenAPI extractor](https://github.com/nextcloud/openapi-extractor/). This documentation can be accessed directly in Nextcloud. All you need is to install Cospend (>= v1.6.0) and use the [the OCS API Viewer app](https://apps.nextcloud.com/apps/ocs_api_viewer) to browse the OpenAPI documentation.\n\n## Features\n\n* β Create/edit/delete projects, members, bills, bill categories, currencies\n* β Check member balances\n* π Display project statistics\n* β» Display settlement plan\n* Move bills from one project to another\n* Move bills to trash before actually deleting them\n* Archive old projects before deleting them\n* π Automatically create reimbursement bills from settlement plan\n* π Create recurring bills (day/week/month/year)\n* π Optionally provide custom amount for each member in new bills\n* π Link personal files to bills (picture of physical receipt for example)\n* π© Public links for people outside Nextcloud (can be password protected)\n* π« Share projects with Nextcloud users/groups/circles\n* π« Import/export projects as csv (compatible with csv files from IHateMoney and SplitWise)\n* π Generate link/QRCode to easily add projects in MoneyBuster\n* π² Implement Nextcloud notifications and activity stream\n\nThis app usually support the 2 or 3 last major versions of Nextcloud.\n\nThis app is under development.\n\nπ Help us to translate this app on [Nextcloud-Cospend/MoneyBuster Crowdin project](https://crowdin.com/project/moneybuster).\n\nβ Check out other ways to help in the [contribution guidelines](https://github.com/julien-nc/cospend-nc/blob/master/CONTRIBUTING.md).\n\n## Documentation\n\n* [User documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/user.md)\n* [Admin documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/admin.md)\n* [Developer documentation](https://github.com/julien-nc/cospend-nc/blob/master/docs/dev.md)\n* [CHANGELOG](https://github.com/julien-nc/cospend-nc/blob/master/CHANGELOG.md#change-log)\n* [AUTHORS](https://github.com/julien-nc/cospend-nc/blob/master/AUTHORS.md#authors)\n\n## Known issues\n\n* It does not make you rich\n\nAny feedback will be appreciated.\n\n\n\n## Donation\n\nI develop this app during my free time.\n\n* [Donate with Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66PALMY8SF5JE) (you don't need a paypal account)\n* [Donate with Liberapay : ![Donate using Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/eneiluj/donate)",
"homepage": "https://github.com/julien-nc/cospend-nc",
"licenses": [
"agpl"
]
},
"cpanelmailsync": {
"hash": "sha256-YShsc1UySpDLLbwgBVdBAZxnFGDyc0EDwtT0BnntBPo=",
"url": "https://gitlab.com/ethernet.zero/nextcloud-cpanelmailsync/-/jobs/2129418437/artifacts/raw/build/artifacts/appstore/cpanelmailsync.tar.gz",
"version": "0.1.7",
"description": "Manages CPanel mail accounts from Nextcloud user creations, deletions and updates, using the CPanel UAPI.",
"homepage": "",
"licenses": [
"mpl"
]
},
"csp_editor": {
"hash": "sha256-W5rBEDsumQHvTHxPpaIt2yJZHVnIWJe1nwJfxZFyGkg=",
"url": "https://packages.framasoft.org/projects/nextcloud-apps/csp-editor/csp_editor-1.1.0.tar.gz",
"version": "1.1.0",
"description": "# Description\n\nThis app allows to edit Nextcloud's default CSP policy.",
"homepage": "https://framagit.org/framasoft/nextcloud/csp_editor",
"licenses": [
"agpl"
]
},
"data_request": {
"hash": "sha256-cmAdDPOk6ksF1LYK/d+h23GkiccCKwE1Qe9BVGTO2Bc=",
"url": "https://github.com/nextcloud-releases/data_request/releases/download/v1.12.0/data_request-v1.12.0.tar.gz",
"version": "1.12.0",
"description": "Enable your users to request an export or deletion of their data. According options are added to the personal settings section. Administrators will be notified by email about the request.",
"homepage": "https://github.com/nextcloud/data_request",
"licenses": [
"agpl"
]
},
"deck": {
"hash": "sha256-eucGe+qtWp7o+OcdiBFe6v05K7Nhp4vVq7BcNblyMho=",
"url": "https://github.com/nextcloud-releases/deck/releases/download/v1.8.8/deck-v1.8.8.tar.gz",
"version": "1.8.8",
"description": "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- π₯ Add your tasks to cards and put them in order\n- π Write down additional notes in Markdown\n- π Assign labels for even better organization\n- π₯ Share with your team, friends or family\n- π Attach files and embed them in your Markdown description\n- π¬ Discuss with your team using comments\n- β‘ Keep track of changes in the activity stream\n- π Get your project organized",
"homepage": "https://github.com/nextcloud/deck",
"licenses": [
"agpl"
]
},
"diary": {
"hash": "sha256-nvK+tcXxU7M7wFFb+qhH0P+gzeNhOl4vOWL3RsKhX3U=",
"url": "https://github.com/danielroehrig/diary/releases/download/v.0.0.11/diary.tar.gz",
"version": "0.0.11",
"description": "Keep your diary in your Nextcloud. Write entries for each day in\na Markdown editor. Use the calendar to jump to any date and edit your entries.\n\nWarning! This is a very early alpha release and things are still pretty rough around the edges.",
"homepage": "https://github.com/danielroehrig/diary",
"licenses": [
"agpl"
]
},
"dicomviewer": {
"hash": "sha256-euGmkNt/wxqT0qLUtQBVLnhzAysVGf24qqmbcb31g1Q=",
"url": "https://github.com/ayselafsar/dicomviewer/releases/download/v1.2.5/dicomviewer-1.2.5.tar.gz",
"version": "1.2.5",
"description": "DICOM Viewer allows to display and manipulate DICOM images with a streamlined sidebar and viewer.\n\nIt renders DICOM data sets in 2D, 3D, and reconstructed representations; allows for the manipulation, annotation,\nand serialization of observations; supports internationalization, hotkeys, and many more features.\n\nSee [README](https://github.com/ayselafsar/dicomviewer) for a list of full features and future roadmap.",
"homepage": "https://github.com/ayselafsar/dicomviewer",
"licenses": [
"agpl"
]
},
"discoursesso": {
"hash": "sha256-QJLIy2+8i4obIoP3LFPcajsL7ASiZqbrcVF9MpEUgBA=",
"url": "https://github.com/soudis/discoursesso/releases/download/v.1.28.0/discoursesso-1.28.0.tar.gz",
"version": "1.28.0",
"description": "Discourse has it's own SSO protocol, that needs an specially designed endpoint to authenticate with. This app implements this endpoint and allows Discourse instances to authenticate against an Nextcloud instance. Please look at the admin documentation for security issues!",
"homepage": "",
"licenses": [
"agpl"
]
},
"discretepdfsigner": {
"hash": "sha256-6fe6zh7YEm++pH/pZU7hmGBisnoXDFn4LuAepcR6ODE=",
"url": "https://github.com/salonikumawat28/NextCloud_DiscretePDFSigner/releases/download/v0.4/nextcloud_discretepdfsigner.tar.gz",
"version": "0.0.4",
"description": "Enables ability to sign PDFs via Privasphere",
"homepage": "",
"licenses": [
"agpl"
]
},
"documentserver_community": {
"hash": "sha256-rNzVKvzvvbKsf+pXi8khkEGOb5NbYZ03uViWVDhfjnU=",
"url": "https://github.com/chadek/documentserver_community/releases/download/v0.1.17/documentserver_community.tar.gz",
"version": "0.1.17",
"description": "Document server for OnlyOffice, community edition.\n\nThe community document server is designed to make it easy to get OnlyOffice running in a Nextcloud instance without the need to setup an external document server,\nthe community document server does not support all features of the official OnlyOffice document server and does not provide the same performance and scalability.\n\nIf you are setting up a larger instance or require the additional performance, please see https://onlyoffice.com for options for getting the official document server.\n\nThe community document server will automatically be configured if no other document server is configured for OnlyOffice.\n\nAdditionally, the community document server only supports running on x86-64 Linux servers.",
"homepage": "https://github.com/nextcloud/documentserver_community",
"licenses": [
"agpl"
]
},
"dokuwiki": {
"hash": "sha256-uX9ljSz0Z74y3EFSQCj2XuDIVBGkgzA76/8x3kX3ijs=",
"url": "https://github.com/rotdrop/nextcloud-app-dokuwiki/releases/download/v1.0.1/dokuwiki.tar.gz",
"version": "1.0.1",
"description": "Embed an existing DokuWiki instance into Nextcloud, potentially with SSO. For SSO DokuWiki users and Nextcloud users have to coincide, e.g. by using a common authentication backend like LDAP, or with an appropriate auth plugin on either side of the integration.",
"homepage": "",
"licenses": [
"agpl"
]
},
"drawio": {
"hash": "sha256-QD7b6+UjWNeS4Z2QLcgBfetIXwqNngFRX9Fryx90mQA=",
"url": "https://github.com/jgraph/drawio-nextcloud/releases/download/v2.1.4/drawio-v2.1.4.tar.gz",
"version": "2.1.4",
"description": "Integrates draw.io diagrams editor with Nextcloud",
"homepage": "https://github.com/jgraph/drawio-nextcloud",
"licenses": [
"agpl"
]
},
"droneci_fast_lane": {
"hash": "sha256-ltvEqPOH/lWykmTI0fQ0gppmT13W71Xdwp2lc+av9rk=",
"url": "https://github.com/nextcloud-releases/droneci_fast_lane/releases/download/v1.0.2/droneci_fast_lane-v1.0.2.tar.gz",
"version": "1.0.2",
"description": "A simple manager to manipulate Drone CI's FIFO queue.",
"homepage": "",
"licenses": [
"agpl"
]
},
"drop_account": {
"hash": "sha256-Q8FLEBD8hI9VauMGnXRXv8qpapDomZEAcU8sKBU012E=",
"url": "https://packages.framasoft.org/projects/nextcloud-apps/drop-account/drop_account-2.2.0.tar.gz",
"version": "2.2.0",
"description": "# Description\n\nThis app allows users to delete their accounts by removing all their data.\n\nIt can also send activities to the admins about deleted accounts.",
"homepage": "https://framagit.org/framasoft/nextcloud/drop_account",
"licenses": [
"agpl"
]
},
"eidlogin": {
"hash": "sha256-kMBYSbxk+JCZ6VMGQANihE2wtvNvHvZd9fR9No/nipY=",
"url": "https://github.com/eid-login/eid-login-nextcloud/releases/download/1.0.14/eidlogin.tar.gz",
"version": "1.0.14",
"description": "The eID-Login App allows to use the German eID-card and similar electronic identity documents for secure and privacy-friendly login to Nextcloud. For this purpose, a so-called eID-Client, such as the AusweisApp2 or the Open eCard App and eID-Service are required. In the default configuration a suitable eID-Service is provided without any additional costs.",
"homepage": "https://eID.services/eidlogin/nextcloud",
"licenses": [
"agpl"
]
},
"electronicsignatures": {
"hash": "sha256-0L8j8451ak5+oAKU9SFf23jBB0syfoiBCGyFc5/3hVg=",
"url": "https://github.com/eideasy/nextcloud-electronic-signatures-plugin/releases/download/v2.0.5/v2.0.5.tar.gz",
"version": "2.0.5",
"description": "# Features\n- ππ Accept Qualified Electronic Signatures (QES - strongest legal value) in PDF or .asice formats\n- π Accept Simple Electronic Signatures (sms based signature - simple to sign)\n\n### How it works:\n1. Pick a file\n2. Select \"Signing\" in the file's dropdown menu\n3. Add signers\n4. Signers receive a link on their e-mail\n5. They sign the document\n6. The signed document appears in your Nextcloud instance, next to the original file\n\n# Built on top of eID Easy\nElectronic signatures app uses [eID Easy](https://eideasy.com) as its signing back-end. eID Easy handles the signing process. Refer to [eID Easy's pricing](https://eideasy.com/pricing/) for pricing information.\n\n### Get β¬10 to try out eID Easy\nFor limited time only, we're offering β¬10 of credit that you can spend to try out all the eID Easy signing services.\n\nWrite to [email protected] to claim this offer.\n\n# Two levels of electronic signatures\n**Qualified Electronic Signature** - the strongest kind of electronic signature. The signer's identity and approval is linked to the file contents and a timestamp by cryptographic means. The signing time and the document's integrity can be verified to ensure that the document has not been tampered with after signing.\n\n**Simple Electronic Signature** - the simplest kind of electronic signature. eID Easy sends a unique link to the signer's e-mail. The signer opens the link, reviews the file and confirms their approval. A visual signature is added to the file. eId Easy adds a cryptographic e-seal to the file, to ensure that it cannot be modified after signing.\n\n# Pricing\nSee [https://eideasy.com/pricing](https://eideasy.com/pricing) for pricing information.\n\n# Feedback is welcome\nAre you not seeing your preferred signature card / signing app / other QES method? Are we not quite covering your use case? Let us know at [email protected]\n\n# Documentation\n\n## Set up\nSee the following guides:\n[1. Installation](https://docs.eideasy.com/nextcloud/nextcloud-app-installation.html#_1-installation)\n[2. Set up](https://docs.eideasy.com/nextcloud/nextcloud-app-setup.html#_2-set-up)\n[3. Signing a document](https://docs.eideasy.com/nextcloud/nextcloud-app-signing.html#_3-signing-a-document)\n\n[CHANGELOG](https://github.com/eideasy/nextcloud-electronic-signatures-plugin/blob/master/CHANGELOG.md)",
"homepage": "",
"licenses": [
"agpl"
]
},
"emlviewer": {
"hash": "sha256-oqT9ZSuvjfawaYo59pxv5dQ9HnGSKARuYRGvL30kRgE=",
"url": "https://github.com/newroco/emlviewer/releases/download/1.0.8/emlviewer-1.0.8.tar.gz",
"version": "1.0.8",
"description": "Provides an email preview functionality. It creates preview for the .eml files and displays it as a modal.",
"homepage": "https://github.com/newroco/emlviewer",
"licenses": [
"agpl"
]
},
"end_to_end_encryption": {
"hash": "sha256-UA7s3otpdE1+Ro5XrECb/VyQhtUsxc4b6x/64ji74iU=",
"url": "https://github.com/nextcloud-releases/end_to_end_encryption/releases/download/v1.11.4/end_to_end_encryption-v1.11.4.tar.gz",
"version": "1.11.4",
"description": "Provides the necessary endpoint to enable end-to-end encryption.\n\n**Notice:** E2EE is currently not compatible to be used together with server-side encryption",
"homepage": "https://github.com/nextcloud/end_to_end_encryption",
"licenses": [
"agpl"
]
},
"epubviewer": {
"hash": "sha256-S2qd3mc/KS7QboJTVJce14wy9/yEvtFUxCaK9RuPrlI=",
"url": "https://github.com/devnoname120/epubviewer/releases/download/1.5.3/epubviewer-1.5.3.tar.gz",
"version": "1.5.3",
"description": "# EPUB Viewer\nEPUB Viewer is an ebook reader based on pure javascript renderers. It works for publications formatted according to the following standards:\n\n - [EPUB]\n - [PDF]\n - [CBR and CBZ] ('comics')\n\nEPUB files are displayed using the futurepress [epub.js] renderer to provide near-native looks, especially when used full-screen. Turn pages by pressing the left/right hand side of the screen/window or using the cursor keys (if you have those), use the sidebar to browse through chapters or bookmarks and add annotations.\n\nPDF is handled by Mozilla's [pdf.js] renderer in combination with a custom reader app to enable side-by-side display, batch search and more. Controls are like those used in the Epub renderer with a few exceptions, e.g. night mode has not been implemented yet.\n\nCBR and CBZ are supported using a custom renderer inspired by [balaclark]'s work. As with Epub, books can be navigated using the keyboard as well as mouse or touch navigation. Reader generates a visual index of all pages, show in the sidebar (thumbnail generation can be disabled for low-memory and/or -speed devices). As CBx files are often of varying quality, a set of image enhancement filters are provided.\n\nSee [README] for more exhaustive information on features and potential misfeatures of this app.\n\n [epub.js]: https://github.com/futurepress/epub.js\n [EPUB]: http://idpf.org/epub\n [CBR and CBZ]: https://wiki.mobileread.com/wiki/CBR_and_CBZ\n [balaclark]: https://github.com/balaclark/HTML5-Comic-Book-Reader\n [PDF]: https://en.wikipedia.org/wiki/Portable_Document_Format\n [pdf.js]: https://github.com/mozilla/pdf.js\n [README]: https://github.com/devnoname120/epubviewer#readme",
"homepage": "https://github.com/devnoname120/epubviewer",
"licenses": [
"agpl"
]
},
"event_update_notification": {
"hash": "sha256-XWV4AjQqaTSb9/AD0FN/IRoXKByAU1UBM3QnUXD+UbE=",
"url": "https://github.com/nextcloud-releases/event_update_notification/releases/download/v2.2.0/event_update_notification-v2.2.0.tar.gz",
"version": "2.2.0",
"description": "Receive a notification when an event in a shared calendar was added, modified or deleted.",
"homepage": "https://github.com/nickv-nextcloud/event_update_notification",
"licenses": [
"agpl"
]
},
"external": {
"hash": "sha256-4EQ6A4tOPQADvGwSc20UR/yqiWhIfbGDl9utPnopYF0=",
"url": "https://github.com/nextcloud-releases/external/releases/download/v5.0.3/external-v5.0.3.tar.gz",
"version": "5.0.3",
"description": "This application allows an admin to add additional links into the Nextcloud menus.\nFollowing a link, the external website appears in the Nextcloud frame.\nIt is also possible to add links only for a given language, device type or user group.\n\nMore information is available in the External sites documentation.",
"homepage": "https://github.com/nextcloud/external",
"licenses": [
"agpl"
]
},
"externalpassword": {
"hash": "sha256-grM+hCY5Moe+mdSwFYhz2jxqnCzv837vqnoJsXmkZpY=",
"url": "https://files.snyman.info/externalpassword/v1.1.0/externalpassword.tar.gz",
"version": "1.1.0",
"description": "An app for Nextcloud to allow an administrator to direct a user to an external site for changing their password. This is useful in conjunction with an app like external_users.",
"homepage": "https://git.snyman.info/raoul/externalpassword",
"licenses": [
"agpl"
]
},
"externalportal": {
"hash": "sha256-jEkiBB6VrrJJf8OJM2+tmJFw9+nDFNUS/yJWxaHEMME=",
"url": "https://github.com/puavo-org/externalportal/releases/download/v1.2.0/externalportal.tar.gz",
"version": "1.2.0",
"description": "A dashboard widget that displays the content from the External sites app on Dashboard in a nice and inviting form.",
"homepage": "",
"licenses": [
"agpl"
]
},
"extract": {
"hash": "sha256-y1NacOWnCd/f5sOeEOLeZrWnqwi8q/XezOrhT7AzV/o=",
"url": "https://github.com/PaulLereverend/NextcloudExtract/releases/download/1.3.6/extract.tar.gz",
"version": "1.3.6",
"description": "Extract archives.\n\n* **Supported :**\n\n * Zip\n * Rar\n * Tar\n * Gzip\n * 7z\n * Deb\n * Bzip2\n\n* **Requirements :**\n * Rar PHP extension (pecl -v install rar)\n\n * **OR**\n * unrar (sudo apt-get install unrar)\n\n * **AND**\n * p7zip (sudo apt-get install p7zip p7zip-full)\n\n* **Note :** Encrypted files are not supported yet",
"homepage": "https://github.com/PaulLereverend/NextcloudExtract",
"licenses": [
"agpl"
]
},
"facerecognition": {
"hash": "sha256-67ELgr9tMH82JIACyt9UJ0tEK14Q2qKgsVkuoIm7HKM=",
"url": "https://github.com/matiasdelellis/facerecognition/releases/download/v0.9.12/facerecognition.tar.gz",
"version": "0.9.12",
"description": "**Detect and group faces of your loved one in your cloud**\n\nβ οΈ This application requires minimum of 1GB of RAM memory to work! See [Requirements](https://github.com/matiasdelellis/facerecognition/wiki/Requirements-and-Limitations) for details.\n\nβ οΈ Setup of this app requires access to terminal and even getting your hands dirty with installation of additional software. See [Installation](https://github.com/matiasdelellis/facerecognition/wiki/Installation) for details.\n\n- **π Detect faces from images:** Use FaceRecognition app to detect _any_ face in _any_ of your images!\n- **πͺ Group faces to persons:** Detected faces are grouped together based on similarity and then FaceRecognition app can recognize persons!\n- **π Built-in privacy:** No data is leaving your cloud. Defaults are always off and each user controls enabling/disabling face detection. Images from every directory can be excluded from face detection, if needed.\n- **βοΈ Power of AI:** FaceRecognition app leverages power of AI and already built neural network models through extensive usage of [DLib](http://dlib.net/) library.\n- **π Build your own thing:** FaceRecognition app is just a basic building block. Through FaceRecognition API, you can build your advanced scenarios - automatically add tags to images, connect contacts and persons, share images from specific personβ¦ We want to hear your ideas!",
"homepage": "https://github.com/matiasdelellis/facerecognition",
"licenses": [
"agpl"
]
},
"familytree": {
"hash": "sha256-l66ZIt+/TlFEJFic3iocIHuxgMt8IBCSuBwkmX2eoWo=",
"url": "https://github.com/derbenx/nextcloud-familytree/releases/download/1.3.5/familytree.tar.gz",
"version": "1.3.5",
"description": "# familytree\nA Nextcloud app that lets you build your own family tree, freestyle. All done in your browser, no database required.",
"homepage": "https://github.com/derbenx/nextcloud-familytree",
"licenses": [
"agpl"
]
},
"files_3dmodelviewer": {
"hash": "sha256-Trt4z/rpRRjo7MYTrcvMuf2kww3M1MjnX0Iq55aICek=",
"url": "https://github.com/WARP-LAB/files_3dmodelviewer/releases/download/v0.0.12/files_3dmodelviewer.tar.gz",
"version": "0.0.12",
"description": "# Visualise and explore 3D models\n\n- 3dm | Rhino\n- 3ds | Autodesk 3D Studio\n- 3mf | 3D Manufacturing Format\n- bim | dotbim\n- brep/brp | Boundary Representation\n- dae | Collada\n- fbx | Filmbox\n- fcstd | FreeCAD Standard File Format\n- glb | GL Transmission Format\n- gltf | GL Transmission Format\n- ifc | International Foundation Class\n- iges/igs | Initial Graphics Exchange Specification\n- obj | Wavefront\n- off | Object File Format\n- ply | Polygon File Format\n- step/stp | Standard for Exchange of Product Model Data\n- stl | Stereolithography Standard Tesselation/Triangle Language\n- wrl | Virtual Reality Modeling Language",
"homepage": "https://github.com/WARP-LAB/files_3dmodelviewer",
"licenses": [
"agpl"
]
},
"files_accesscontrol": {
"hash": "sha256-fGJn5TvP7G5Xu+POUBYP5jjFz+N1znNlQxpyScLD5Hk=",
"url": "https://github.com/nextcloud-releases/files_accesscontrol/releases/download/v1.15.3/files_accesscontrol-v1.15.3.tar.gz",
"version": "1.15.3",
"description": "Nextcloud's File Access Control app enables administrators to protect data from unauthorized access or modifications.\n\n## How it works\nThe administrator can create and manage a set of rule groups. Each of the rule groups consists of one or more rules. If all rules of a group hold true, the group matches the request and access is being denied or the upload is blocked. The rules criteria range from IP address, MIME type and request time to group membership, tags, user agent and more.\n\nAn example would be to deny access to MS Excel/XLSX files owned by the \"Human Resources\" group accessed from an IP not on the internal company network or to block uploads of files bigger than 512 mb by students in the \"1st year\" group.\n\nLearn more about File Access Control on [https://nextcloud.com/workflow](https://nextcloud.com/workflow)",
"homepage": "https://github.com/nextcloud/files_accesscontrol",
"licenses": [
"agpl"
]
},
"files_antivirus": {
"hash": "sha256-LG8m+cOFkSx06kQmArsMaVWFrI48YJswB4J4FRvXUm0=",
"url": "https://github.com/nextcloud-releases/files_antivirus/releases/download/v5.5.0/files_antivirus-v5.5.0.tar.gz",
"version": "5.5.0",
"description": "Antivirus for files is an antivirus app for Nextcloud.\n\n* π΅οΈββοΈ When the user uploads a file, it's checked\n* β’οΈ Uploaded and infected files will be deleted and a notification will be shown and/or sent via email\n* π Background Job to scan all files\n* β Use ClamAV (open source), Kaspersky Scan Engine or an ICAP compatible scanner\n\nThis application inspects files that are uploaded to Nextcloud for viruses before they are written to the Nextcloud storage. If a file is identified as a virus, it is either logged or not uploaded to the server. The application relies on the underlying ClamAV virus scanning engine, which the admin points Nextcloud to when configuring the application. Alternatively, a Kaspersky Scan Engine can be configured, which has to run on a separate server.\nFor this app to be effective, the ClamAV virus definitions should be kept up to date. Also note that enabling this app will impact system performance as additional processing is required for every upload. More information is available in the Antivirus documentation.",
"homepage": "",
"licenses": [
"agpl"
]
},
"files_archive": {
"hash": "sha256-z1VLwgZmZqCrOXZmKxlrbZpk3exz7qb4G+ZlT97t3MA=",
"url": "https://github.com/rotdrop/nextcloud-app-files-archive/releases/download/v1.1.3/files_archive.tar.gz",
"version": "1.1.3",
"description": "Inspect, mount and extract archive files (zip, tar, etc.)",
"homepage": "",
"licenses": [
"agpl"
]
},
"files_automatedtagging": {
"hash": "sha256-qrMopPF+B/10ArU+Pi6QXwAEikF7NT+0HH9RnNUueG4=",
"url": "https://github.com/nextcloud-releases/files_automatedtagging/releases/download/v1.15.3/files_automatedtagging-v1.15.3.tar.gz",
"version": "1.15.3",
"description": "An app for Nextcloud that automatically assigns tags to newly uploaded files based on some conditions.\n\nThe tags can later be used to control retention, file access, automatic script execution and more.\n\n## How it works\nTo define tags, administrators can create and manage a set of rule groups. Each rule group consists of one or more rules combined through operators. Rules can include criteria like file type, size, time and more. A request matches a group if all rules evaluate to true. On uploading a file all defined groups are evaluated and when matching, the given tags are assigned to the file.",
"homepage": "https://github.com/nextcloud/files_automatedtagging",
"licenses": [
"agpl"
]
},
"files_bpm": {
"hash": "sha256-QNyfY1HJ73IZKILR4Fv2ZSEa+x3xdYAPoY+NOeD7Hq0=",
"url": "https://github.com/kirstenhh/nc-bpm-app/releases/download/v1.3.2/files_bpm-v1.3.2.tar.gz",
"version": "1.3.2",
"description": "A BPMN 2.0/DMN 1.3 Viewer and Editor",
"homepage": "https://github.com/kirstenhh/nc-bpm-app/",
"licenses": [
"agpl"
]
},
"files_confidential": {
"hash": "sha256-0UX8iTyuLZ8Jj0Uqc08snaPi5Wv3XHZ+8UhgxCyIi8U=",
"url": "https://github.com/nextcloud/files_confidential/releases/download/v1.0.5/files_confidential.tar.gz",
"version": "1.0.5",
"description": "This app allows you to define a set of classification labels that will be assigned to files as Nextcloud tags.\nFor each classification label you can define a set of rules when it will be assigned to a file, based on text\ncontent or BAILS classification meta data.",
"homepage": "https://github.com/nextcloud/files_confidential",
"licenses": [
"agpl"
]
},
"files_downloadactivity": {
"hash": "sha256-ZRdteT3grIgkxKvdPBT4lGq7sfJJ1V59Q0SF1prOAPY=",
"url": "https://github.com/nextcloud-releases/files_downloadactivity/releases/download/v1.16.0/files_downloadactivity-v1.16.0.tar.gz",
"version": "1.16.0",
"description": "Creates activities for downloads of files that were shared with other users or a group",
"homepage": "https://github.com/nextcloud/files_downloadactivity",
"licenses": [
"agpl"
]
},
"files_downloadlimit": {
"hash": "sha256-XBHoN6xR8Sj4Bn8CknkO2NgFs6rjvc2poVu+8NoMc0o=",
"url": "https://github.com/nextcloud-releases/files_downloadlimit/releases/download/v1.2.0/files_downloadlimit-v1.2.0.tar.gz",
"version": "1.2.0",
"description": "This app allows limiting the number of downloads for external link shares.",
"homepage": "https://github.com/nextcloud/files_downloadlimit",
"licenses": [
"agpl"
]
},
"files_external_ethswarm": {
"hash": "sha256-z4MRq6Q719u4iBg2HL4/CM1DXjo2bXDyLt7/TuJ+tUw=",
"url": "https://github.com/MetaProvide/nextcloud-swarm-plugin/releases/download/v0.3.0/files_external_ethswarm.tar.gz",
"version": "0.3.0",
"description": "# Nextcloud Swarm Plugin\n\n*Decentralized Sovereign cloud-storage comes to Nextcloud!*\n\nThis plugin brings [Swarm](https://www.ethswarm.org/) to [Nextcloud](https://nextcloud.com) - decentralized file-storage, connected to the blockchain.\n\n## Table of Contents\n\n- [Dependencies](#dependencies)\n- [Setup and Installation](#setup-and-installation)\n- [Usage](#usage)\n\t- [Settings](#settings)\n\t- [Using Swarm](#using-swarm)\n- [License](#license)\n\n## Dependencies\n\nTo use the plugin you need the following\n\n* A Nextcloud instance\n* A Bee node\n\n## Setup and Installation\n\nFor setting up a Bee node please have a look at the [official documentation](https://docs.ethswarm.org/docs/installation/quick-start)\n\nThe following steps explain how to configure a Bee node in Nextcloud.\n\n- Make sure the \"External Storage\" plugin is enabled\n- Install the \"External Storage: Swarm\" app from the Nextcloud App store\n- Navigate to External Storage Administration (Profile menu -> Settings -> External Storage)\n- Add the connection settings for a new Bee node\n- Navigate to Ethswarm Storage Administration (Profile menu -> Settings -> Ethswarm Storage)\n- Configure the Bee node - by default, encryption is active\n- To use a Bee node, it is necessary to [Purchase a Batch of new stamps](https://docs.ethswarm.org/docs/access-the-swarm/keep-your-data-alive) from the funds in the chequebook\n- Once the new batch is purchased, a unique batchId is generated. Once your batch has been purchased, it will take a few minutes for other Bee nodes in the Swarm to catch up and register your batch. Allow some time for your batch to propagate in the network before proceeding to the next step. This is indicated by the checkbox \"Usable\".\n- Uploading files to the swarm costs Bzz, so it is necessary to select a Batch as \"Active\". Only 1 batch is allowed to be Active for a given Bee node. Then click \"Save Settings\".\n\n## Usage\n\nFile handling operations involving the Bee node are integrated in the External Storage (\"Files\") section of Nextcloud.\n\nUsing the plugin, the main file operations that are available in Nextcloud are:\n\n- Upload file(s) to a Bee node\n- Download and view files\n- Copy/Move files from any External Storage to a Bee node\n- Copy files from a Bee node to any External Storage\n\n### Settings\n\nAvailable to users with administrative credentials, the external storage accepts configuration options from two places, the normal External Storage settings, which allows a user to configure the basic connection properties of a Bee node.\n\nSince every operation in Swarm costs money, it is important to view how much money is available to the Bee node directly and also provide a convenient way of handling the payment system in Swarm - all managed directly in Nextcloud. This is in a specific section with more advanced configuration for the Bee node, where the following settings can be viewed and edited:\n\n- Configure which Bee node to manage\n- View current status of the Bee node\n- Option to toggle encryption on and off\n- How much BZZ is available to the node\n- Any purchased stamp batches and the remaining balances\n- Have the option to purchase a new batch of stamps\n- Toggle the batch used for uploading files active/inactive\n\n### Using Swarm\n\nOnce setup and configured, the Bee node is ready to use.\n- Navigate to \"Files\" option on the menu -> \"External Storage\" and then the name of the Bee node.\n- You can then upload files just like you normally would in Nextcloud.\n- Once uploaded, it can be viewed internally or downloaded. It can also be copied to another storage.\n- Files from another Nextcloud storage can also be copied/moved to the Bee node.",
"homepage": "https://github.com/MetaProvide/nextcloud-swarm-plugin",
"licenses": [
"agpl"
]
},
"files_fulltextsearch": {
"hash": "sha256-qDfot+LpTnIWNAa48yhbnKWU4FguF/3FEzi6P8YZNfc=",
"url": "https://github.com/nextcloud-releases/files_fulltextsearch/releases/download/25.0.1/files_fulltextsearch-25.0.1.tar.gz",
"version": "25.0.1",
"description": "Extension to the _Full text search_ app to index your users' files.",
"homepage": "https://github.com/nextcloud/files_fulltextsearch",
"licenses": [
"agpl"
]
},
"files_fulltextsearch_tesseract": {
"hash": "sha256-8UmMadGAPigoG86TK+Y1YAi9UBRaSZZ6RkdEXmsu1L0=",
"url": "https://github.com/nextcloud-releases/files_fulltextsearch_tesseract/releases/download/25.0.0/files_fulltextsearch_tesseract-25.0.0.tar.gz",
"version": "25.0.0",
"description": "Extension to the _Full text search - Files_ app to OCR your documents before index.\n\nThis is a simple app that use [Tesseract OCR for PHP](https://github.com/thiagoalessio/tesseract-ocr-for-php),\nwhich is a wrapper for the command line program [Tesseract OCR](https://github.com/tesseract-ocr/tesseract)\n\nTesseract must be installed locally, and configured.",
"homepage": "https://github.com/nextcloud/files_fulltextsearch_tesseract",
"licenses": [
"agpl"
]
},
"files_inotify": {
"hash": "sha256-Y1l6HKhwEpHYW+os4IhI/Y6zFKb87u80rs0lyI8gxvE=",
"url": "https://github.com/icewind1991/files_inotify/releases/download/v0.1.16/files_inotify-v0.1.16.tar.gz",
"version": "0.1.16",
"description": "Adds support detecting changes in local external storages with\nocc files_external:notify.\n\nNote that there are scalability limitations to using `inotify` on large folder structures, see the [README](https://github.com/icewind1991/files_inotify/blob/master/README.md) for more information",
"homepage": "https://github.com/icewind1991/files_inotify",
"licenses": [
"agpl"
]
},
"files_linkeditor": {
"hash": "sha256-LJi5CoXVQ55OMj6fo4tsTHwPJDzYK2M9jJq9z0hdk7o=",
"url": "https://github.com/te-online/nextcloud-app-releases/raw/main/files_linkeditor/v1.1.16/files_linkeditor.tar.gz",
"version": "1.1.16",
"description": "### External web links in Nextcloud!\n* βοΈ **create and edit** .URL and .webloc links in the file view\n* π **open links** by clicking them and confirming you want to go to the external site\n* π€ **works in public shares** so you can share links easily with others\n* π **sync your links** as .URL and .webloc are web links as created on most operating systems.\n\n_[View changelog](https://github.com/te-online/files_linkeditor/blob/main/CHANGELOG.md)_",
"homepage": "https://github.com/te-online/files_linkeditor",
"licenses": [
"agpl"
]
},
"files_lock": {
"hash": "sha256-U2v93GnVUe1kf2TpYPC9yn3GaXByYG8XF4OfihPlIuY=",
"url": "https://github.com/nextcloud-releases/files_lock/releases/download/v27.0.5/files_lock-v27.0.5.tar.gz",
"version": "27.0.5",
"description": "Allow your users to temporary lock their files to avoid conflicts while working on shared files.",
"homepage": "https://github.com/nextcloud/files_lock",
"licenses": [
"agpl"
]
},
"files_markdown": {
"hash": "sha256-6A9IMfRbKcF1+et7pzFF4zlZDmegx562cnyYsOFsVzU=",
"url": "https://github.com/icewind1991/files_markdown/releases/download/v2.4.1/files_markdown-v2.4.1.tar.gz",
"version": "2.4.1",
"description": "Markdown Editor extends the Nextcloud text editor with a live preview for markdown files.\n\nA full list of features can be found [in the README](https://github.com/icewind1991/files_markdown)",
"homepage": "https://github.com/icewind1991/files_markdown",
"licenses": [
"agpl"
]
},
"files_mindmap": {
"hash": "sha256-VsaJT3lsPqnCmgLYkkdLhyIRmi/CumEdezsvhra2NQk=",
"url": "https://github.com/ACTom/files_mindmap/releases/download/v0.0.30/files_mindmap-0.0.30.tar.gz",
"version": "0.0.30",
"description": "This application enables Nextcloud users to open, save and edit mind map files in the web browser. If enabled, an entry in the New button at the top of the web browser the Mindmap file entry appears. When clicked, a new mindmap file opens in the browser and the file can be saved into the current Nextcloud directory.",
"homepage": "https://github.com/ACTom/files_mindmap",
"licenses": [
"agpl"
]
},
"files_notify_redis": {
"hash": "sha256-GY5cJQwzzroT89DopDlLL8/eiixZxMJgpcwp9hL8i5o=",
"url": "https://github.com/icewind1991/files_notify_redis/releases/download/v0.3.3/files_notify_redis-v0.3.3.tar.gz",
"version": "0.3.3",
"description": "Adds support for handling filesystem notifications for local storages that are pushed into redis",
"homepage": "https://github.com/icewind1991/files_notify_redis",
"licenses": [
"agpl"
]
},
"files_photospheres": {
"hash": "sha256-Pk4Sox2iQgTUoaIclVvs78elfciuA5zFKZ9/2iKYtEc=",
"url": "https://github.com/nextcloud/files_photospheres/releases/download/v1.25.3/files_photospheres.tar.gz",
"version": "1.25.3",
"description": "Enables viewing of google photosphere images by\n integrating the photo-sphere-viewer.js component\n into your nextcloud instance.",
"homepage": "",
"licenses": [
"agpl"
]
},
"files_readmemd": {
"hash": "sha256-tilluHmSXiuiW07rtbBGckUxrL92BPhIcBt5aPLkhq8=",
"url": "https://github.com/mamatt/files_readmemd/releases/download/V2.0.1/files_readmemd.tar.gz",
"version": "2.0.1",
"description": "Show README.md & HEADER.md gitlab style on your NextCloud !\nWith this app you can add a header and a footer to your nextcloud directories.\nThis can be use to explain the goal of a directory, describe the content of a folder ...\nIt show README.md in the way gitlab does.",
"homepage": "https://github.com/mamatt/files_readmemd",
"licenses": [
"agpl"
]
},
"files_retention": {
"hash": "sha256-8pHbyPTdag/49Da/vSxYqmRh676jFDmBzM1dJu6PnXg=",
"url": "https://github.com/nextcloud-releases/files_retention/releases/download/v1.14.1/files_retention-v1.14.1.tar.gz",
"version": "1.14.1",
"description": "An app for Nextcloud to control automatic deletion of files after a given time.\nOptionally the users can be informed the day before.",
"homepage": "https://github.com/nextcloud/files_retention",
"licenses": [
"agpl"
]
},
"files_scripts": {
"hash": "sha256-OeI/jwpJsnW9caMhI9i1tHMpLG9k5b6a0SuoqWaUqmg=",
"url": "https://github.com/Raudius/files_scripts/releases/download/v3.1.3/files_scripts-3.1.3.tar.gz",
"version": "3.1.3",
"description": "Allows administrators to write small scripts which users can run through the file actions menu in the Files app!\n\n- **π Lua:** Script in Lua, it's simple and has plenty of online resources.\n- **β‘οΈ Empower users:** Make hard tasks easy, straight from the Files app.\n- **π Open to suggestions:** Are you missing a function in the scripting API? Open an issue on Github!\n- **π€ Integration with Nextcloud Flow:** allows you to fully automate workflows.\n\nβ οΈ **Attention** Scripts may modify and delete files permanently. Take care and make sure to read the documentation thoroughly before scripting.",
"homepage": "",
"licenses": [
"agpl"
]
},
"files_snapshots": {
"hash": "sha256-PQGf+HtlXnhHZydZ47KkqJRWhQpzWRTPMO2XG1SH3R0=",
"url": "https://github.com/icewind1991/files_snapshots/releases/download/v1.0.7/files_snapshots-v1.0.7.tar.gz",
"version": "1.0.7",
"description": "Allows using filesystem snapshots (from btrfs, zfs, etc) as versions trough the Nextcloud web interface. A full description can be found [in the README](https://github.com/icewind1991/files_snapshots)",
"homepage": "https://github.com/icewind1991/files_snapshots",
"licenses": [
"agpl"
]
},
"files_staticmimecontrol": {
"hash": "sha256-m+Ih+IF/SImUTTuFP6NDczQFYXiIk2IIyqqUY0zVlv0=",
"url": "https://github.com/Nagold/files_staticmimecontrol/releases/download/1.1.0/files_staticmimecontrol-1.1.0.tar.gz",
"version": "1.1.0",
"description": "app to enable controlling of allowed mimetypes per folder(s) via a static text file. More instructions can be found in the docs.",
"homepage": "https://github.com/Nagold/files_staticmimecontrol",
"licenses": [
"agpl"
]
},
"files_texteditor": {
"hash": "sha256-pvrtT6ZgiLzC13CWE4Hx3Fk80nVqIcYtNs6MUjOPbUw=",
"url": "https://github.com/nextcloud-releases/files_texteditor/releases/download/v2.15.1/files_texteditor-v2.15.1.tar.gz",
"version": "2.15.1",
"description": "This application enables Nextcloud users to open, save and edit text files in the web browser. If enabled, an entry called \"Text file\" in the \"New\" button menu at the top of the web browser appears. When clicked, a new text file opens in the browser and the file can be saved into the current Nextcloud directory. Further, when a text file is clicked in the web browser, it will be opened and editable. If the privileges allow, a user can also edit shared files and save these changes back into the web browser.\nMore information is available in the text editor documentation.",
"homepage": "https://github.com/nextcloud/files_texteditor",
"licenses": [
"agpl"
]
},
"files_versions_s3": {
"hash": "sha256-/66xZAHohjJciCItL33+zDoNNDEYCFWXBjo/pSNr3lA=",
"url": "https://github.com/nextcloud-releases/files_versions_s3/releases/download/v0.1.10/files_versions_s3-v0.1.10.tar.gz",
"version": "0.1.10",
"description": "Use S3 object versioning for file versioning.\n\n## Warning\n\nThis app does not include any mechanism for expiring old s3 versions,\nyou should setup your own version expiry (also called \"Lifecycle management\" in S3)\nto prevent versions from taking up an ever increasing amount of space.\n\n## Usage\n\n- install the app\n- check if bucket versioning is enabled for your storage using `occ files_versions_s3:status`\n- enable bucket versioning if not yet enabled using `occ files_versions_s3:enable <id>`",
"homepage": "https://github.com/nextcloud/files_versions_s3",
"licenses": [
"agpl"
]
},
"files_zip": {
"hash": "sha256-qwXOcbHJq5Jht5G+EK/j0rWap/yVuRQDGFpTIMCk2Ao=",
"url": "https://github.com/nextcloud-releases/files_zip/releases/download/v1.4.1/files_zip-v1.4.1.tar.gz",
"version": "1.4.1",
"description": "Allow zipping files directly in your Nextcloud!",
"homepage": "https://github.com/nextcloud/files_zip",
"licenses": [
"agpl"
]
},
"fileslibreofficeedit": {
"hash": "sha256-zvzcxXOqfkXKsoDpSpbHAybCZNs29TA/27BCdFvaupE=",
"url": "https://github.com/allotropia/nextcloud_files_libreoffice_edit/releases/download/v1.1.0/fileslibreofficeedit.tar.gz",
"version": "1.1.0",
"description": "This adds a new context menu item to the Files dropdown menu \"Edit with LibreOffice\".\nClicking that item will open the file in LibreOffice via WebDAV (the file can then be edited and saved back directly in LibreOffice).\n\nThis greatly improves the user experience when working with Office files in the browser. No need to download, edit, reupload. Instead use the \"Edit with LibreOffice\" item.\n\nThis app requires at least LibreOffice 7.2 on Linux and macOS. On Windows it also works with older LibreOffice versions (since LibreOffice 5.3).",
"homepage": "https://github.com/allotropia/nextcloud_files_libreoffice_edit",
"licenses": [
"agpl"
]
},
"flow_notifications": {
"hash": "sha256-6B29jWGt5dPtY+6yF4wMN6XLyfpmIfyuZxxLx23EsXI=",
"url": "https://github.com/nextcloud-releases/flow_notifications/releases/download/v1.5.0/flow_notifications-v1.5.0.tar.gz",
"version": "1.5.0",
"description": "Enable users to configure notifications with customized conditions in their Flow configuration.\n\nUsers are empowered to configure a \"Send a notification\" Flow in their personal settings. They can choose between the events being triggered, and other conditions like filetypes, assigned tags, time ranges and more. They can specify an inscription so that when the notification appears they will have context.\n\n![Notification Flow Configuration](https://raw.githubusercontent.com/nextcloud/flow_notifications/master/screenshots/configuration.png)\n\nWhen an event happens where all conditions are apply, the user will receive a regular Nextcloud notification.\n\n![Flow Notification](https://raw.githubusercontent.com/nextcloud/flow_notifications/master/screenshots/notification.png)",
"homepage": "https://github.com/nextcloud/flow_notifications",
"licenses": [
"agpl"
]
},
"forms": {
"hash": "sha256-N+hEXVhy4+9mDK1qf/r+Jll7b9Oi1YW1/xzyGj6XUFY=",
"url": "https://github.com/nextcloud-releases/forms/releases/download/v3.3.1/forms-v3.3.1.tar.gz",
"version": "3.3.1",
"description": "**Simple surveys and questionnaires, self-hosted!**\n\n- **π Simple design:** No mass of options, only the essentials. Works well on mobile of course.\n- **π View & export results:** Results are visualized and can also be exported as CSV in the same format used by Google Forms.\n- **π Data under your control!** Unlike in Google Forms, Typeform, Doodle and others, the survey info and responses are kept private on your instance.\n- **π§βπ» Connect to your software:** Easily integrate Forms into your service with our full-fledged [REST-API](https://github.com/nextcloud/forms/blob/main/docs/API.md).\n- **π Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!",
"homepage": "https://github.com/nextcloud/forms",
"licenses": [
"agpl"
]
},
"fulltextsearch": {
"hash": "sha256-sTCAp3oElTlvqSjNiX5OSGU4THkoKI0ref97MfUW6Ps=",
"url": "https://github.com/nextcloud-releases/fulltextsearch/releases/download/25.0.1/fulltextsearch-25.0.1.tar.gz",
"version": "25.0.1",
"description": "Core App of the full-text search framework for your Nextcloud.",
"homepage": "https://github.com/nextcloud/fulltextsearch",
"licenses": [
"agpl"
]
},
"fulltextsearch_elasticsearch": {
"hash": "sha256-7cGdVpmWa5S4SOgZIQv0efQYIeZklC5RX0aEC2jBY/k=",
"url": "https://github.com/nextcloud-releases/fulltextsearch_elasticsearch/releases/download/25.0.1/fulltextsearch_elasticsearch-25.0.1.tar.gz",
"version": "25.0.1",
"description": "Extension to the _Full text search_ app to communicate with ElasticSearch.",
"homepage": "https://github.com/nextcloud/fulltextsearch_elasticsearch",
"licenses": [
"agpl"
]
},
"geoblocker": {
"hash": "sha256-leh1H5RSWlQ9GWIRHsBaqjg+ApjId0FHl9lQbp/o0YI=",
"url": "https://github.com/HomeITAdmin/nextcloud_geoblocker/releases/download/0.5.11/geoblocker.tar.gz",
"version": "0.5.11",
"description": "This is a front end to geo localization services, that allows blocking (beta), delaying (beta) and logging of login attempts from specified countries.\nLogin attempts from local network IP addresses are never blocked, delayed or logged.\nIn the current implementation the login page is normally shown to everybody independent of the country. Also login attempts with a non existing user are failing as usual independent of the country.\nWrong Nextcloud configuration (especially in container) can lead to all access seems to come from local network IP address.\nDetermination of the country from IP address is only as good as the chosen service.\n\nCountries can be specified using allowlisting or blocklisting.\n\nCurrently available localization services are:\n- Geoiplookup (local programm on the host)\n- MaxMind GeoLite2 (local database accessed via PHP API)\n- Data from Regional Internet Registries (Nextcloud SQL database build up with data downloaded from the RIRs FTP servers)\n\nFor help how to set up the localization services please have a look at the GitHub repository (homepage on the right side).",
"homepage": "https://github.com/HomeITAdmin/nextcloud_geoblocker/",
"licenses": [
"agpl"
]
},
"gestion": {
"hash": "sha256-IpKkqfr2J8OJIsPJd/EG5+3hwxcI76ldT6f1+Ku1aPk=",
"url": "https://github.com/baimard/gestion/releases/download/2.4.3/gestion.tar.gz",
"version": "2.4.3",
"description": "# Company management by Gestion\n\nThis application allows the management of invoicing in a very simple way for Micro-Entreprise.\n\nFunctionality:\n\n* Add customer\n* Generate a quote\n* Generate an invoice\n* Generate product lines to include in quotes\n* You can generate PDFs directly from the app and save them to your Nextcloud\n\nPresentation video in user documentation\n\nIf you need to adapt this application to your country laws, please open issue.\n\n[Love my work ? Buy me a coffee !](https://www.buymeacoffee.com/benjaminaimard)",
"homepage": "https://github.com/baimard/gestion",
"licenses": [
"agpl"
]
},
"google_synchronization": {
"hash": "sha256-5X8QWNrJ5O5jO9FwmTta9kKgYyXxQjCWxHtoAaVOyao=",
"url": "https://github.com/MarcelRobitaille/nextcloud_google_synchronization/releases/download/v1.0.9.0/google_synchronization-v1.0.9.0.tar.gz",
"version": "1.0.9",
"description": "Google Synchronization automatically keeps your Nextcloud calendar up to date with your Google Calendar.",
"homepage": "https://github.com/MarcelRobitaille/nextcloud_google_synchronization",
"licenses": [
"agpl"
]
},
"googledocsredirect": {
"hash": "sha256-e8C14h7xP5fkpzOa8HFDYYll2WIrhBTZtYA95qTE5Og=",
"url": "https://github.com/grubersjoe/nextcloud-google-docs-redirect/releases/download/v1.0.5/googledocsredirect-v1.0.5.tar.gz",
"version": "1.0.5",
"description": "This app adds a few lines of JavaScript to open uploaded Google Docs documents (.gddoc etc.) in a new tab (redirect to Google Docs) instead of downloading them.",
"homepage": "https://jogruber.de/projects/nextcloud-google-docs-redirect/",
"licenses": [
"agpl"
]
},
"gpoddersync": {
"hash": "sha256-E8f/pvTw8MW3WL7texdf05qC8G2NE1LJvvy2lw54Gf8=",
"url": "https://github.com/thrillfall/nextcloud-gpodder/releases/download/3.8.1/gpoddersync.tar.gz",
"version": "3.8.1",
"description": "Expose GPodder API to sync podcast consumer apps like AntennaPod",
"homepage": "https://github.com/thrillfall/nextcloud-gpodder",
"licenses": [
"agpl"
]
},
"gpxpod": {
"hash": "sha256-Ylhl9jdOxG+Qfk5zgNO8FwOtAzrjGHS66y59qmorXPU=",
"url": "https://github.com/julien-nc/gpxpod/releases/download/v5.0.10/gpxpod-5.0.10.tar.gz",
"version": "5.0.10",
"description": "# GpxPod Nextcloud application\n\nDisplay, analyse, compare and share GPS track files.\n\nπ Help us to translate this app on [GpxPod Crowdin project](https://crowdin.com/project/gpxpod).\n\nGpxPod:\n\n* πΊ can display your gpx/kml/tcx/igc/fit files\n* π supports metric, english and nautical measure systems\n* π draws interactive chart for elevation, speed, pace or any extension data\n* π use line gradient color for track lines with speed, elevation, pace or any extension data\n* π shows track statistics\n* π» displays geotagged pictures\n* π§ generates public links pointing to a track/folder\n* π can correct tracks elevations using SRTM data\n* β can make global comparison of multiple tracks\n* β can make visual pair comparison of divergent parts of similar tracks\n* π allows users to add personal map tile servers\n* π allows user to manually choose line color for each track\n* π works with encrypted data folder (server side encryption)\n* π proudly uses Leaflet and MapLibre GL\n\nLink to Nextcloud application website : https://apps.nextcloud.com/apps/gpxpod\n\n## Install\n\nSee the [AdminDoc](https://gitlab.com/eneiluj/gpxpod-oc/wikis/admindoc) for installation details\n\n## Known issues\n\n* *WARNING*, kml conversion will NOT work with recent kml files using the proprietary \"gx:track\" extension tag.\n\nAny feedback will be appreciated.\n\n\n## Donation\n\nI develop this app during my free time.\n\n* [Donate with Paypal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66PALMY8SF5JE) (you don't need a paypal account)\n* [Donate with Liberapay : ![Donate using Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/eneiluj/donate)",
"homepage": "https://github.com/julien-nc/gpxpod",
"licenses": [
"agpl"
]
},
"grauphel": {
"hash": "sha256-1JKdJpqcT5Q93A4ZSC2k56vGuQ0FwNQ9Cvi2H+ip9w8=",
"url": "https://grosjo.net/grauphel-1.0.18.tar.gz",
"version": "1.0.18",
"description": "Tomboy REST API server to sync notes between devices.\n\n Tomboy, Conboy and Tomdroid clients are supported.",
"homepage": "https://github.com/grosjo/nextcloud-grauphel",
"licenses": [
"agpl"
]
},
"group_default_quota": {
"hash": "sha256-GIr8DHBzjRRklwkm5Ys4Q5+TEcEQ/QB5k46/kSufpsA=",
"url": "https://github.com/icewind1991/group_default_quota/releases/download/v0.1.7/group_default_quota-v0.1.7.tar.gz",
"version": "0.1.7",
"description": "Allow setting the default quota for users based on their group membership.",
"homepage": "https://github.com/icewind1991/group_default_quota",
"licenses": [
"agpl"
]
},
"group_everyone": {
"hash": "sha256-WiuOAu3PPxVfpFB7jQ+mBdiWx63iInQPSuiL9aKl4rE=",
"url": "https://github.com/icewind1991/group_everyone/releases/download/v0.1.13/group_everyone-v0.1.13.tar.gz",
"version": "0.1.13",
"description": "Adds a virtual \"Everyone\" group.",
"homepage": "https://github.com/icewind1991/group_everyone",
"licenses": [
"agpl"
]
},
"groupfolders": {
"hash": "sha256-sBsyHXSc4qTYeJOa9Ylbcz24e+APdmTE8o62GKA2f9M=",
"url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v13.1.6/groupfolders-v13.1.6.tar.gz",
"version": "13.1.6",
"description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.\n\nNote: Encrypting the contents of group folders is currently not supported.",
"homepage": "https://github.com/nextcloud/groupfolders",
"licenses": [
"agpl"
]
},
"groupquota": {
"hash": "sha256-cEuMhETEiUCtuq+kTv7KlI58CK81DSGIjx22zGbDYsk=",
"url": "https://github.com/nextcloud-releases/groupquota/releases/download/v0.1.13/groupquota-v0.1.13.tar.gz",
"version": "0.1.13",
"description": "Allow setting a disk quota for an entire group.\n\nNote: configuring quota is only possible trough the API, no admin interface is currently available.",
"homepage": "https://github.com/nextcloud/groupquota",
"licenses": [
"agpl"
]