forked from kanboard/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
710 lines (710 loc) · 35.7 KB
/
plugins.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
{
"assigncategory": {
"title": "Assign category when moving cards to specified column",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to set the category on a card when moved to a specified column",
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignCategory",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignCategory/master/README.md",
"download": "https://github.com/dmorlitz/kanboard-TaskAssignCategory/archive/1.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.44"
},
"assigndate": {
"title": "Assign date to undated cards",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to set a due date on undated cards to allow card to appear on calendar and ICS feed",
"homepage": "https://github.com/dmorlitz/kanboard-TaskAssignDateToUndated",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskAssignDateToUndated/master/README.md",
"download": "https://github.com/dmorlitz/kanboard-TaskAssignDateToUndated/archive/1.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.44"
},
"assignduedatecolumn": {
"title": "Assign due date when moving cards to specified column",
"version": "1.0.0",
"author": "Jacob Charles Wilson",
"license": "MIT",
"description": "Adds an automatic action which allows you to set a due date (relative to the current time in days) on a card when moved to a specified column",
"homepage": "https://github.com/jclwilson/kanboard-plugin-assignduedate",
"readme": "https://raw.githubusercontent.com/jclwilson/kanboard-plugin-assignduedate/master/README.md",
"download": "https://github.com/jclwilson/kanboard-plugin-assignduedate/archive/1.0.0.zip",
"remote_install": false,
"compatible_version": ">=1.2.0"
},
"autoemailactions": {
"title": "Auto Email Extended Actions",
"version": "0.0.3",
"author": "Craig Crosby",
"license": "MIT",
"description": "Add the automatic actions to Send a task by email to the creator or assignee of the task. Also, included are actions to send a notification via email when a task or subtask due date is impending within a duration or overdue.",
"homepage": "https://github.com/creecros/SendEmailCreator",
"readme": "https://raw.githubusercontent.com/creecros/SendEmailCreator/master/README.md",
"download": "https://github.com/creecros/SendEmailCreator/releases/download/0.0.3/SendEmailCreator-0.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"autosubtasks": {
"title": "Auto Subtask Creation",
"version": "0.0.1",
"author": "Craig Crosby",
"license": "MIT",
"description": "Automatic action to create subtasks when a task is created or moves column.",
"homepage": "https://github.com/creecros/AutoSubtasks",
"readme": "https://raw.githubusercontent.com/creecros/AutoSubtasks/master/README.md",
"download": "https://github.com/creecros/AutoSubtasks/releases/download/0.0.1/AutoSubtasks-0.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"commentonly": {
"title": "Comment Only Resctrictions for Project Viewers",
"version": "0.0.1",
"author": "Craig Crosby",
"license": "MIT",
"description": "Add Commenting abilities for Project Viewers.",
"homepage": "https://github.com/creecros/opencomment",
"readme": "https://raw.githubusercontent.com/creecros/opencomment/master/README.md",
"download": "https://github.com/creecros/opencomment/releases/download/0.0.1/CommentOnly-0.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.46"
},
"group_assign": {
"title": "Group Assign",
"version": "0.0.1",
"author": "Craig Crosby",
"license": "MIT",
"description": "Add group assignment to tasks.",
"homepage": "https://github.com/creecros/Group_assign",
"readme": "https://raw.githubusercontent.com/creecros/Group_assign/master/README.md",
"download": "https://github.com/creecros/Group_assign/releases/download/0.0.1/Group_assign-0.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.1.0"
},
"beanstalk": {
"title": "Beanstalk",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Beanstalkd to process background jobs.",
"homepage": "https://github.com/kanboard/plugin-beanstalk",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-beanstalk/master/README.md",
"download": "https://github.com/kanboard/plugin-beanstalk/releases/download/v1.0.0/Beanstalk-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.32"
},
"bigboard": {
"title": "Bigboard",
"version": "1.0.2",
"author": "Stinnux",
"license": "MIT",
"description": "A Kanboard that can display multiple projects.",
"homepage": "https://github.com/stinnux/kanboard-bigboard",
"readme": "https://raw.githubusercontent.com/stinnux/kanboard-bigboard/master/README.md",
"download": "https://github.com/stinnux/kanboard-bigboard/releases/download/1.0.2/Bigboard-1.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.2.2"
},
"broadcast": {
"title": "Broadcast Message",
"version": "1.0.1",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Broadcast messages to all users via the application or via email.",
"homepage": "https://github.com/kanboard/plugin-broadcast",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-broadcast/master/README.md",
"download": "https://github.com/kanboard/plugin-broadcast/releases/download/v1.0.1/Broadcast-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.2.3"
},
"chat": {
"title": "Chat",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Minimalist chat for small teams.",
"homepage": "https://github.com/kanboard/plugin-chat",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-chat/master/README.md",
"download": "https://github.com/kanboard/plugin-chat/releases/download/v1.0.3/Chat-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.2.3"
},
"s3": {
"title": "Amazon S3 Storage",
"version": "1.0.4",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin stores uploaded files to Amazon S3 instead of storing files on the local file system.",
"homepage": "https://github.com/kanboard/plugin-s3",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-s3/master/README.md",
"download": "https://github.com/kanboard/plugin-s3/releases/download/v1.0.4/S3-1.0.4.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"bitbucket-webhook": {
"title": "Bitbucket Webhook",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Bind Bitbucket webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-bitbucket-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-bitbucket-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-bitbucket-webhook/releases/download/v1.0.5/BitbucketWebhook-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"budget": {
"title": "Budget Planning",
"version": "1.0.9",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "\nBudget planning based on sub-task time tracking:\n\n- Create budget lines\n- See the expenses based on sub-task time tracking\n- Manage user hourly rates\n ",
"homepage": "https://github.com/kanboard/plugin-budget",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-budget/master/README.md",
"download": "https://github.com/kanboard/plugin-budget/releases/download/v1.0.9/Budget-1.0.9.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"calendar": {
"title": "Calendar",
"version": "1.1.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Embedded calendar into Kanboard.",
"homepage": "https://github.com/kanboard/plugin-calendar",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-calendar/master/README.md",
"download": "https://github.com/kanboard/plugin-calendar/releases/download/v1.1.0/Calendar-1.1.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.44"
},
"client-certificate": {
"title": "Client SSL Certificate Authentication",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use SSL client certificate for Kanboard authentication.",
"homepage": "https://github.com/kanboard/plugin-client-certificate",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-client-certificate/master/README.md",
"download": "https://github.com/kanboard/plugin-client-certificate/releases/download/v1.0.0/ClientCertificate-1.0.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.32"
},
"db-storage": {
"title": "Database Storage",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin stores uploaded files into the database instead of using the local filesystem.",
"homepage": "https://github.com/kanboard/plugin-database-storage",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-database-storage/master/README.md",
"download": "https://github.com/kanboard/plugin-database-storage/releases/download/v1.0.0/DatabaseStorage-1.0.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.32"
},
"coverimage": {
"title": "Coverimage",
"version": "1.0.38.1",
"author": "BlueTeck",
"license": "MIT",
"description": "This plugin adds a coverimage function to the board.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_coverimage",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_coverimage/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_coverimage/releases/download/1.0.38.1/Coverimage.zip",
"remote_install": true,
"compatible_version": ">=1.0.38"
},
"duedate": {
"title": "Due Date sorting",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Allow boards to be sorted by card due date",
"homepage": "https://github.com/dmorlitz/kanboard-duedate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-duedate/master/README.md",
"download": "https://github.com/dmorlitz/kanboard-duedate/archive/1.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.44"
},
"extendedMail": {
"title": "extendedMail",
"version": "0.8.0",
"author": "Rens Sikma",
"license": "MIT",
"description": "Adds extra functionality to kanboard comment by email",
"homepage": "https://github.com/atcomputing/kanboard-ExtendedMail",
"readme": "https://github.com/atcomputing/kanboard-ExtendedMail/raw/master/README.md",
"download": "https://github.com/atcomputing/kanboard-ExtendedMail/releases/download/v0.8/ExtendedMail-0.8.0.zip",
"remote_install": true,
"compatible_version": ">=1.2.2"
},
"gantt": {
"title": "Gantt",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Gantt charts for tasks and projects.",
"homepage": "https://github.com/kanboard/plugin-gantt",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gantt/master/README.md",
"download": "https://github.com/kanboard/plugin-gantt/releases/download/v1.0.3/Gantt-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.43"
},
"github-auth": {
"title": "Github Authentication",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Github as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-github-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-github-auth/releases/download/v1.0.3/GithubAuth-1.0.3.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"github-frontend": {
"title": "Github Frontend",
"version": "1.0.2",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Kanboard to manage Github Issues.",
"homepage": "https://github.com/kanboard/plugin-github-frontend",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-frontend/master/README.md",
"download": "https://github.com/kanboard/plugin-github-frontend/releases/download/v1.0.2/GithubFrontend-1.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.48"
},
"github-webhook": {
"title": "Github Webhook",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Github webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-github-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-github-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-github-webhook/releases/download/v1.0.6/GithubWebhook-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gitlab-auth": {
"title": "Gitlab Authentication",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Gitlab as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-gitlab-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-gitlab-auth/releases/download/v1.0.5/GitlabAuth-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gitlab-webhook": {
"title": "Gitlab Webhook",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Gitlab webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-gitlab-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gitlab-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-gitlab-webhook/releases/download/v1.0.6/GitlabWebhook-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"gravatar": {
"title": "Gravatar",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Gravatar to display user avatars images.",
"homepage": "https://github.com/kanboard/plugin-gravatar",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gravatar/master/README.md",
"download": "https://github.com/kanboard/plugin-gravatar/releases/download/v1.0.0/Gravatar-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.42"
},
"gogs-webhook": {
"title": "Gogs Webhook",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Connect Gogs webhook events to Kanboard automatic actions.",
"homepage": "https://github.com/kanboard/plugin-gogs-webhook",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-gogs-webhook/master/README.md",
"download": "https://github.com/kanboard/plugin-gogs-webhook/releases/download/v1.0.5/GogsWebhook-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"google-auth": {
"title": "Google Authentication",
"version": "1.0.7",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use Google as authentication provider.",
"homepage": "https://github.com/kanboard/plugin-google-auth",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-google-auth/master/README.md",
"download": "https://github.com/kanboard/plugin-google-auth/releases/download/v1.0.7/GoogleAuth-1.0.7.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"hipchat": {
"title": "Hipchat",
"version": "1.0.9",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on Hipchat.",
"homepage": "https://github.com/kanboard/plugin-hipchat",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-hipchat/master/README.md",
"download": "https://github.com/kanboard/plugin-hipchat/releases/download/v1.0.9/Hipchat-1.0.9.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"instantactions": {
"title": "Instant Actions for Kanboard Tasks",
"version": "1.0.0",
"author": "Jens Heuschkel",
"license": "MIT",
"description": "Add buttons to tasks in board view for edit, delete and close them.",
"homepage": "https://github.com/juehv/kanboard-InstantActions",
"readme": "https://github.com/juehv/kanboard-InstantActions/blob/master/README.md",
"download": "https://github.com/juehv/kanboard-InstantActions/archive/v1.0.zip",
"remote_install": false,
"compatible_version": ">=1.1.0"
},
"jabber": {
"title": "Jabber",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on Jabber.",
"homepage": "https://github.com/kanboard/plugin-jabber",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-jabber/master/README.md",
"download": "https://github.com/kanboard/plugin-jabber/releases/download/v1.0.8/Jabber-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"mailgun": {
"title": "Mailgun",
"version": "1.0.10",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use the Mailgun API to send emails and create tasks from emails.",
"homepage": "https://github.com/kanboard/plugin-mailgun",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-mailgun/master/README.md",
"download": "https://github.com/kanboard/plugin-mailgun/releases/download/v1.0.10/Mailgun-1.0.10.zip",
"remote_install": true,
"compatible_version": ">=1.0.40"
},
"mattermost": {
"title": "Mattermost",
"version": "1.0.4",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Send Kanboard notifications to Mattermost (self-hosted Slack clone).",
"homepage": "https://github.com/kanboard/plugin-mattermost",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-mattermost/master/README.md",
"download": "https://github.com/kanboard/plugin-mattermost/releases/download/v1.0.4/Mattermost-1.0.4.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"metadata": {
"title": "Metadata Manager",
"version": "1.0.33.2",
"author": "BlueTeck",
"license": "MIT",
"description": "This plugin adds a GUI to manage custom metadata for task, projects and user.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_metadata",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_metadata/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_metadata/releases/download/1.0.33.2/Metadata.zip",
"remote_install": true,
"compatible_version": ">=1.0.33"
},
"milestone": {
"title": "Milestone",
"version": "1.1.2",
"author": "Olivier Maridat",
"license": "MIT",
"description": "Add a section for milestones to show their related tasks.",
"homepage": "https://github.com/oliviermaridat/kanboard-milestone-plugin",
"readme": "https://raw.githubusercontent.com/oliviermaridat/kanboard-milestone-plugin/master/README.md",
"download": "https://github.com/oliviermaridat/kanboard-milestone-plugin/releases/download/1.1.2/Milestone-1.1.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.43"
},
"moveondate": {
"title": "Move cards to specific columns when due date passed",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to move cards to a specific column when the due date has passed",
"homepage": "https://github.com/dmorlitz/kanboard-TaskMoveOnDueDate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskMoveOnDueDate/master/README.md",
"download": "https://github.com/dmorlitz/kanboard-TaskMoveOnDueDate/archive/1.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.44"
},
"oauth2": {
"title": "OAuth2",
"version": "1.0.1",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Generic OAuth2 plugin.",
"homepage": "https://github.com/kanboard/plugin-oauth2",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-oauth2/master/README.md",
"download": "https://github.com/kanboard/plugin-oauth2/releases/download/v1.0.1/OAuth2-1.0.1.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"overwrite_translation": {
"title": "Overwrite Translation",
"version": "1.0.33.1",
"author": "BlueTeck",
"license": "MIT",
"description": "Overwrite default translations without touching kanboard files.",
"homepage": "https://github.com/BlueTeck/kanboard_plugin_overwrite_translation",
"readme": "https://raw.githubusercontent.com/BlueTeck/kanboard_plugin_overwrite_translation/master/README.md",
"download": "https://github.com/BlueTeck/kanboard_plugin_overwrite_translation/releases/download/1.0.33.1/Overwrite_translation.zip",
"remote_install": true,
"compatible_version": ">=1.0.33"
},
"postmark": {
"title": "Postmark",
"version": "1.0.9",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use the Postmark API to send emails and create tasks from emails.",
"homepage": "https://github.com/kanboard/plugin-postmark",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-postmark/master/README.md",
"download": "https://github.com/kanboard/plugin-postmark/releases/download/v1.0.9/Postmark-1.0.9.zip",
"remote_install": true,
"compatible_version": ">=1.0.40"
},
"pushdate": {
"title": "Push out due date on cards when moving to specific columns",
"version": "1.0.0",
"author": "David Morlitz",
"license": "MIT",
"description": "Adds an automatic action which allows you to push the due date a specified number of days when moving cards to a specific column",
"homepage": "https://github.com/dmorlitz/kanboard-TaskPushDate",
"readme": "https://raw.githubusercontent.com/dmorlitz/kanboard-TaskPushDate/master/README.md",
"download": "https://github.com/dmorlitz/kanboard-TaskPushDate/archive/1.0.zip",
"remote_install": false,
"compatible_version": ">=1.0.44"
},
"rabbitmq": {
"title": "RabbitMQ",
"version": "1.0.0",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin use RabbitMQ to process background jobs for Kanboard.",
"homepage": "https://github.com/kanboard/plugin-rabbitmq",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-rabbitmq/master/README.md",
"download": "https://github.com/kanboard/plugin-rabbitmq/releases/download/v1.0.0/RabbitMQ-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.32"
},
"registration": {
"title": "Self-Registration",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Self-registration plugin to allow people to sign up on Kanboard.",
"homepage": "https://github.com/kanboard/plugin-registration",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-registration/master/README.md",
"download": "https://github.com/kanboard/plugin-registration/releases/download/v1.0.8/Registration-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"relationgraph": {
"title": "Relationgraph",
"version": "0.1.3",
"author": "Xavier Vidal",
"license": "MIT",
"description": "Show relations between tasks using a graph library",
"homepage": "https://github.com/xavividal/kanboard-plugin-relationgraph",
"readme": "https://raw.githubusercontent.com/xavividal/kanboard-plugin-relationgraph/master/README.md",
"download": "https://github.com/xavividal/kanboard-plugin-relationgraph/releases/download/0.1.3/0.1.3.zip",
"remote_install": false,
"compatible_version": "1.0.30"
},
"reverse-proxy-ldap": {
"title": "Reverse-Proxy Authentication with LDAP user provider",
"version": "1.0.2",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Authenticate users with Reverse-Proxy method but populate user information from the LDAP directory.",
"homepage": "https://github.com/kanboard/plugin-reverse-proxy-ldap",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-reverse-proxy-ldap/master/README.md",
"download": "https://github.com/kanboard/plugin-reverse-proxy-ldap/releases/download/v1.0.2/ReverseProxyLdap-1.0.2.zip",
"remote_install": false,
"compatible_version": ">=1.0.32"
},
"rocketchat": {
"title": "RocketChat",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on RocketChat.",
"homepage": "https://github.com/kanboard/plugin-rocketchat",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-rocketchat/master/README.md",
"download": "https://github.com/kanboard/plugin-rocketchat/releases/download/v1.0.5/RocketChat-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"sendgrid": {
"title": "Sendgrid",
"version": "1.0.8",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use the Sendgrid API to send emails and create tasks from emails.",
"homepage": "https://github.com/kanboard/plugin-sendgrid",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-sendgrid/master/README.md",
"download": "https://github.com/kanboard/plugin-sendgrid/releases/download/v1.0.8/Sendgrid-1.0.8.zip",
"remote_install": true,
"compatible_version": ">=1.0.40"
},
"slack": {
"title": "Slack",
"version": "1.0.6",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Receive individual or project notifications on Slack.",
"homepage": "https://github.com/kanboard/plugin-slack",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-slack/master/README.md",
"download": "https://github.com/kanboard/plugin-slack/releases/download/v1.0.6/Slack-1.0.6.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"sms-2fa": {
"title": "SMS Two-Factor Authentication",
"version": "1.0.5",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Use SMS text messages for two-factor authentication.",
"homepage": "https://github.com/kanboard/plugin-sms-2fa",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-sms-2fa/master/README.md",
"download": "https://github.com/kanboard/plugin-sms-2fa/releases/download/v1.0.5/SmsTwoFactor-1.0.5.zip",
"remote_install": true,
"compatible_version": ">=1.2.0"
},
"subtask-forecast": {
"title": "Subtask Forecast",
"version": "1.0.3",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "This plugin display estimates of subtasks in the user calendar. The user timetable must be filled to see time slots in the calendar.",
"homepage": "https://github.com/kanboard/plugin-subtask-forecast",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-subtask-forecast/master/README.md",
"download": "https://github.com/kanboard/plugin-subtask-forecast/releases/download/v1.0.3/SubtaskForecast-1.0.3.zip",
"remote_install": true,
"compatible_version": "<=1.0.37"
},
"task-board-date": {
"title": "Task Board Date",
"version": "1.0.2",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "Add a new date field for tasks to define the visibility on the board and dashboard.",
"homepage": "https://github.com/kanboard/plugin-task-board-date",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-task-board-date/master/README.md",
"download": "https://github.com/kanboard/plugin-task-board-date/releases/download/v1.0.2/TaskBoardDate-1.0.2.zip",
"remote_install": true,
"compatible_version": ">=1.0.41"
},
"timetable": {
"title": "Timetable",
"version": "1.0.9",
"author": "Frédéric Guillot",
"license": "MIT",
"description": "\n- Timetable / schedule for users\n- Display in the calendar intersects between sub-task time tracking and user schedule\n- Timetable management: weekly, daily, overtime, days off\n- The timetable is configurable for each user\n- Subtask time tracking is calculated according to the timetable\n ",
"homepage": "https://github.com/kanboard/plugin-timetable",
"readme": "https://raw.githubusercontent.com/kanboard/plugin-timetable/master/README.md",
"download": "https://github.com/kanboard/plugin-timetable/releases/download/v1.0.9/Timetable-1.0.9.zip",
"remote_install": true,
"compatible_version": "<=1.0.37"
},
"wunderlist": {
"title": "Wunderlist",
"version": "1.0.1",
"author": "Maxime (Epoc)",
"license": "MIT",
"description": "This plugin allows you to import Wunderlist tasks and lists directly from the user interface of Kanboard by uploading a Wunderlist export file.",
"homepage": "https://github.com/EpocDotFr/kanboard-wunderlist",
"readme": "https://raw.githubusercontent.com/EpocDotFr/kanboard-wunderlist/master/README.md",
"download": "https://github.com/EpocDotFr/kanboard-wunderlist/releases/tag/v1.0.1",
"remote_install": false,
"compatible_version": "1.0.23"
},
"timetrackingeditor": {
"title": "Time Tracking Editor",
"version": "1.0.19",
"author": "Stinnux",
"license": "MIT",
"description": "Manually Add and Edit Time Tracking entries, add comments and select billable/not billable to time tracking entries. Export Time Tracking Entries as HTML",
"homepage": "https://github.com/stinnux/kanboard-Timetrackingeditor",
"readme": "https://raw.githubusercontent.com/stinnux/kanboard-Timetrackingeditor/master/README.md",
"download": "https://github.com/stinnux/kanboard-Timetrackingeditor/releases/download/1.0.19/Timetrackingeditor-1.0.19.zip",
"remote_install": true,
"compatible_version": ">=1.2.2"
},
"subtaskdate": {
"title": "Subtask Due Date",
"version": "1.0.0",
"author": "Manuel Raposo",
"license": "MIT",
"description": "This plugin adds a Due Date to subtasks.",
"homepage": "https://github.com/eSkiSo/Subtaskdate",
"readme": "https://raw.githubusercontent.com/eSkiSo/Subtaskdate/master/README.md",
"download": "https://github.com/eSkiSo/Subtaskdate/releases/download/v1.0.0/Subtaskdate-1.0.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.34"
},
"timeintervalbutton": {
"title": "Time Interval Button",
"version": "0.9.0",
"author": "Igor Mroz",
"license": "MIT",
"description": "Simple plugins which adds button to incrementally change time spent on task.",
"homepage": "https://github.com/mrozigor/kanboard-add-time-interval-plugin",
"readme": "https://raw.githubusercontent.com/mrozigor/kanboard-add-time-interval-plugin/master/README.md",
"download": "https://github.com/mrozigor/kanboard-add-time-interval-plugin/releases/download/0.9.0/TaskIntervalButton-0.9.0.zip",
"remote_install": true,
"compatible_version": ">=1.0.35"
},
"comment-tooltip": {
"title": "Comment Tooltip",
"version": "0.0.1",
"author": "Enrico Frigo",
"license": "MIT",
"description": "Show task's comments as tooltip as in older kanboard version.",
"homepage": "https://github.com/enricofrigo/kanboard/tree/master/plugin-comment-tooltip",
"readme": "https://github.com/enricofrigo/kanboard/blob/master/plugin-comment-tooltip/CommentTooltip/README.md",
"download": "https://github.com/enricofrigo/kanboard/raw/master/plugin-comment-tooltip/releases/download/v1.0.0/CommentTooltip.zip",
"remote_install": true,
"compatible_version": ">=1.0.35"
},
"telegram": {
"title": "Telegram",
"version": "1.3.0",
"author": "Manu Varkey",
"license": "MIT",
"description": "Receive individual or project notifications on Telegram.",
"homepage": "https://github.com/manuvarkey/kanboard-plugin-telegram",
"readme": "https://raw.githubusercontent.com/manuvarkey/kanboard-plugin-telegram/master/README.md",
"download": "https://github.com/manuvarkey/kanboard-plugin-telegram/releases/download/v1.3.0/Telegram.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
},
"wiki": {
"title": "Wiki",
"version": "0.2.4",
"author": "lastlink",
"license": "MIT",
"description": "Wiki to document projects.",
"homepage": "https://github.com/funktechno/kanboard-plugin-wiki",
"readme": "https://raw.githubusercontent.com/funktechno/kanboard-plugin-wiki/master/README.md",
"download": "https://github.com/funktechno/kanboard-plugin-wiki/releases/download/0.2.4-alpha/Wiki-0.2.4.zip",
"remote_install": true,
"compatible_version": ">=1.0.37"
}
}