forked from weDevsOfficial/wp-project-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1107 lines (800 loc) · 47.6 KB
/
readme.txt
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
=== WP Project Manager - Task, team, and project management plugin featuring kanban board and gantt charts ===
Contributors: tareq1988, nizamuddinbabu, wedevs, asaquzzaman
Donate Link: https://tareq.co/donate/
Tags: project, project manager, project management, kanban board, gantt charts, task manager, team collaboration tool
Requires at least: 4.4 or higher
Tested up to: 6.3.1
Requires PHP: 5.6
Stable tag: 2.6.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
The WP Project Manager makes task scheduling, project management, and team collaboration simpler than ever. Manage your projects with a Kanban board, Gantt charts, and different integrations like GitHub, Bitbucket, Slack & BuddyPress.
== Description ==
**Best Project Management Tool for WordPress**
Being one of the most advanced project management and task management tools for WordPress, [WP Project Manager comes](https://wedevs.com/wp-project-manager-pro) with some of the exceptional features that turn your project management experience of your teammates a joyful ride. Super-charge your productivity by creating, organizing, and assigning tasks within a few clicks.
Its user-friendly interface and web-based task management feature enable the user to complete their to-dos quicker than ever.
[youtube https://www.youtube.com/watch?v=GI4u8wXOxHg]
Effortlessly get your team to complete all the projects timely with its time tracking tool and generate an advanced performance report with its built-in reporting feature absolutely hassle-free. This cutting-edge innovative project management solution is termed as one of the more reliable open source Project Manager software for WordPress.
So now you can through your headache of being able to manage the project efficiently out of the window with this super-efficient project management application.
Want to give it a try? Then try its 👉 [FREE OFFICIAL DEMO](https://pm.wedevsdemos.com/wp-login.php)
**🎯 Key Features of WP Project Manager FREE 🎯**
**🗓 To-do List**
* Add as many to-do lists as you want with titles and description
* Add tasks, assign users, assign a due date
* See the progress bar on the list
* Add comments, descriptions, and titles on individual to-do lists and to-do’s
* Mark to-do as complete/incomplete
**🎯 Milestone**
* 3 types of milestones are there, a) upcoming, b) completed and c) late milestone
* Assign messages and to-do list on milestone
**💬 Messages**
* Messages are used for discussing the project with co-workers of that project
* You can add attachments to messages
* Edit and stylize messages
* Comments can be made for discussion or collaboration
**🗂 Files**
* File sharing feature to ensure better understanding and workflow between co-workers.
* Upload all files on messages and comments and navigate to individual attached threads.
* Upload and share any file anytime in one place (Pro).
**🔔 Dynamic Notification**
* Email notification to keep the users updated about their assigned, upcoming or outdated tasks.
* Control who will receive which notification from settings (Pro).
**🔄 Pusher Integration**
* Get a real-time notification for your project management activities with push notifications.
* You will receive notifications for assigning team members, mentioning in comments, creating tasks, and updating task status.
👉 [Learn more about all the functions and features from our documentation](https://wedevs.com/docs/wp-project-manager/).
**💎💥🏆 === Powerful Pro Features of WP Project Manager ===🏆💥💎**
**[👉 Managing projects from frontend](https://wedevs.com/docs/wp-project-manager/managing-projects-from-wp-project-manager-frontend/)** (Pro)
* Let your users be able to view your projects from the frontend
* WP Project Manager lets you manage projects without going to the backend interface.
**[👉 Kanban Board for WordPress](https://wedevs.com/products/plugins/wp-project-manager-pro/kanban-board/)** (Pro)
* Create unlimited custom kanban boards according to your need for better workflow visualization and project management.
* Drag and drop tasks from one board to another anytime.
* Create new tasks right from any board whenever you want with WP Project Manager
* Get an exact idea of the current stages of all the tasks from one place in the WP Project Manager with the Kanban board.
**[👉 Gantt Chart for WordPress](https://wedevs.com/products/plugins/wp-project-manager-pro/gantt-chart/)** (Pro)
* Observe the duration of the tasks through horizontal bar graphs with WP Project Manager
* Change the beginning and finishing dates of the tasks or projects.
* Assess dependencies among different tasks and subtasks with Gantt charts.
**[👉 Time Tracker](https://wedevs.com/products/plugins/wp-project-manager-pro/time-tracker/)** (Pro)
* Timer with start, stop or pause feature for every task.
* Calculation and tracking of time spent on a task.
* Payment for hourly charged workers is made easy.
**[👉 Invoice for Charging Clients](https://wedevs.com/products/plugins/wp-project-manager-pro/invoice/)** (Pro)
* Invoices will be automatically formatted based on your input in WP Project Manager.
* Upon payment completion, the amount will be added to your account and the invoice will be automatically marked as paid.
* Invoices can be downloaded as pdf on WP Project Manager pro
**[👉 Interactive calendar](https://wedevs.com/docs/wp-project-manager/managing-projects/calendar/)** (Pro)
* Check tasks progress with WP Project Manager.
* Dynamic and interactive drag-and-drop functionality to assign tasks.
* Daily, weekly, monthly and user-specific view in the calendar.
**[👉 Stripe Gateway](https://wedevs.com/wp-project-manager-pro/extensions/invoice-stripe-gateway/)** (Pro)
* WP Project Manager lets your clients pay using stripe gateway.
* Automate the billing process with predefined project templates of the WP Project Manager.
**[👉 BuddyPress for WordPress](https://wedevs.com/products/plugins/wp-project-manager-pro/buddypress/)** (Pro)
* Create different tasks for different teams using WP Project Manager.
* Set administrative staff with access to all departments
* Set different permissions for different employee roles.
* Manage everything using WP Project Manager from the front end of your site.
**[👉 SubTask for more simple task management system](https://wedevs.com/products/plugins/wp-project-manager-pro/sub-task/)** (Pro)
* Break your long tasks into as many portions as you need.
* Assign several team members for several tasks.
**[👉 WooCommerce Integration](https://wedevs.com/products/plugins/wp-project-manager-pro/woocommerce-order/)** (Pro)
* You can create a project automatically after the order or the payment is processed.
* Control which product will create what type of project and task.
* Add and manage user roles like co-workers, managers, and clients to the Projects and Tasks.
**[👉 Advanced Files Management](https://wedevs.com/docs/wp-project-manager/managing-projects/files-wp-project-manager/)** (Pro)
* Upload all files in one place.
* Create folders for different files using WP Project Manager.
* Link messages & task lists with files.
* Make files private.
**[👉 Slack Integration](https://wedevs.com/docs/wp-project-manager/integrations/slack/)** (Pro)
* Integrate your WP Project Manager Pro with the best workspace communication tool - Slack
* Get instant notifications on your Slack channels when a new task, subtask, or comment is created or an existing one is modified. And also when a task is completed or a new co-worker is added.
**[👉 GitHub and Bitbucket Integration](https://wedevs.com/docs/wp-project-manager/integrations/github-bitbucket/)** (Pro)
* Connect your GitHub and Bitbucket account with WP Project Manager easily.
* When issues will be created on your GitHub and Bitbucket accounts, they will be added to your task list. So, your developer team can take action in time.
**[👉 Advanced Reports with Insights](https://wedevs.com/docs/wp-project-manager/reports/view-reports/)** (Pro)
* To make your project management efficient, you need to have reports for tasks and user activities. It will help you to make the right decisions for your projects and team.
* You will get several predefined report cases depending on the user activities with the WP Project Manager. The reports are very much self-explanatory. You will get,
**1. Overdue Tasks**
**2. Completed Task**
**3. User Activities**
**4. Task by Milestone**
**5. Unassigned Tasks**
**6. Summary**
👉 [GET WP PROJECT MANAGER PRO](https://wedevs.com/wp-project-manager-pro/pricing)
**STANDOUT FUNCTIONALITIES OF WP PROJECT MANAGER**
= EFFICIENT TASK MANAGER WITH INTUITIVE INTERFACE =
Manage all types of tasks and projects in the least time possible. The interactive user-friendly interface will not only give you a smooth experience but also assist you to boost overall efficiency.
= TEAM COLLABORATION MADE EASY =
With a built-in discussion thread and file sharing option, make the most out of teamwork without any hassle. Easily work simultaneously with remote teams with this team collaboration tool for WordPress.
= BEST FIT FOR ANY KIND OF TEAMS =
No matter which team or organization you are running, WP Project Manager ensures the best outcome for all kinds of teams. This is why this plugin has become the favorite open source project management software for every team and individual.
= FULL CONTROL OVER PRIVACY AND SECURITY =
No compromise with privacy and permission among the tasks or projects. With user role customization and team permission feature (Pro), manage who can see or who can manage which project very easily.
= PERSONAL DASHBOARD FOR USERS =
Everyone gets their own dashboard to stay updated about tasks in the most organized way. From this personal board, a user will be able to access only the projects and tasks he is allowed to see.
**So still wondering why WP Project Manager should be your first choice in task management plugins?**
👉 [Check out this complete comparison of WP Project Manager with other popular project management solutions.](https://wedevs.com/wp-project-manager-pro/compare/)
👉 [Learn more about all the functions and features from our documentation.](https://wedevs.com/docs/wp-project-manager/)
= SEE HOW WP PROJECT MANAGER HAS BEEN RECOGNIZED BY THE TOP SITES =
1. [Top 20 WordPress Plugins for Freelancers to Improve Their Workflow](https://colorlib.com/wp/freelance-plugins-wordpress/)
2. [9 Best WordPress Project Management Plugins](https://blog.hubspot.com/website/best-wordpress-project-management-plugins)
3. [Top 8 Project Management Plugins For WordPress](https://www.elegantthemes.com/blog/tips-tricks/top-8-project-management-plugins-for-wordpress)
4. [Top 9 Premium WordPress Project Management Plugins](https://www.hostinger.com/tutorials/wordpress-project-management#Top_9_Premium_WordPress_Project_Management_Plugins)
5. [13 Best WordPress Project Management Plugins in 2022](https://wplift.com/best-wordpress-project-management-plugins)
= LEARN HOW YOU CAN LEVERAGE YOUR PRODUCTIVITY TOOL TO THE FULLEST =
1. [How weDevs Has Been Using WP Project Manager Successfully For Collaboration](https://wedevs.com/145814/how-wedevs-has-been-using-wp-project-manager-successfully-for-collaboration/)
2. [How Project Management Tools Help You Reach Milestones](https://wedevs.com/120384/how-project-management-tools-help-reach-milestones/)
3. [How WP Project Manager Makes Managing Milestones Even Better](https://wedevs.com/104306/manage-milestones-wordpress-project-manager/)
4. [How To Use WordPress Project Manager To Build A Successful Remote Team Painlessly](https://wedevs.com/89644/how-to-use-wordpress-project-manager-to-build-a-successful-remote-team-painlessly/)
5. [Create Project Automatically for Your WooCommerce Order & Save Time](https://wedevs.com/100764/create-projects-automatically-woocommerce-order/)
**CONTRIBUTE**
If you think you can help develop this plugin even better then you can always more than welcome to contribute to this project. Please fork the repository from [Github](https://github.com/weDevsOfficial/wp-project-manager).
**OUR VALUABLE CONTRIBUTORS**
* French translation by Corentin allard
* Dutch translation by eskamedia
* Brazilian Portuguese translation by Anderson
* German translation by Alexander Pfabel
* Spanish translation by Luigi Libet
* Indonesian translation by hirizh
* Polish translation by Jacek Synowiec
**CHECKOUT OUR OTHER AWESOME PRODUCTS**
* [Dokan – Multivendor Marketplace Plugin](https://wedevs.com/dokan/?utm_medium=referral&utm_source=wporg&utm_campaign=Project+Manager+Readme&utm_content=Dokan+Multivendor+Marketplace)
* [WP User Frontend Pro](https://wedevs.com/wp-user-frontend-pro/?utm_medium=referral&utm_source=wporg&utm_campaign=Project+Manager+Readme&utm_content=WP+User+Frontend+Pro)
* [WordPress ERP](https://wperp.com/?utm_medium=referral&utm_source=wporg&utm_campaign=Project+Manager+Readme&utm_content=WPERP)
* [WooCommerce Conversion Tracking](https://wedevs.com/woocommerce-conversion-tracking/)
* [weMail](https://getwemail.io/)
* [Appsero](https://appsero.com/)
* [Happy Addons](https://happyaddons.com/?utm_source=wedevs&utm_medium=menu)
* [wePos](https://wedevs.com/wepos)
== Privacy Policy ==
WP Project Manager uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure great user experience for all our users.
Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
Learn more how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
Additionally, read weDevs [privacy policy](https://wedevs.com/privacy-policy/) for a better idea.
== Installation ==
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
== Frequently Asked Questions ==
= Q. Why doesn't it shows up in frontend =
A. Currently all the project management options resides in the admin panel. No functionality shows up in frontend right now.
= Q. Who can create projects? =
A. Only Editors and Admin's can create projects and edit them.
= Q. Who can create tasklist, todo, messages or milestones? =
A. Admins and every co-workers from a project can create these.
= Q. Can every member see every project? =
A. Only admins (editor/administrator) can see all of them. Other user roles can only see their assigned projects.
= Q. Can the WP Project Manager plugin be extended? =
A. Sure, lots of actions and filters are added by default and will add more of them.
= Q. Found a bug on WP Project Manager =
A. Found any bugs? Please create an [issue](https://github.com/tareq1988/wp-project-manager/issues) on github.
== Screenshots ==
1. Project dashboard. You can see all your projects from here and can create new one.
2. New project creation pop-up window
3. Project overview page. See the activities going on in a single page at a glance.
4. Project actvities feeds grouped by date. See what you or your team has done in a project.
5. To-do list page. View all your to-do lists and to-do's inside them.
6. Create to-do list form
7. Create a task in a to-do list. Add task title, additional details, assign multiple users and set dates.
8. Discussions page. Discuss with your team with various topics.
9. Single discussion thread. Hop-in to a discussion and brainstorm with your team.
10. Milestones page. Set milestones for a project and assign tasks, discussions on them and see the progress of that milestone. Mark complete once its done.
11. See all the shared files across various to-do lists, to-do's and comments. All the attached files can be found in one place.
12. Project settings -> General Tab
13. Project Settings -> Email Settings Tab
== Changelog ==
= v2.6.6 - Aug 10, 2023 =
**Fix:** Search users, new users & more features string translation issue.
**Fix:** Authentication error in user project role update.
= v2.6.5 - Jul 24, 2023 =
**Fix:** User controllers meta data updating authentication error.
= v2.6.4 - Jul 14, 2023 =
**Fix:** Translation issues of background email & notifications error messages.
**Fix:** Project creation CTA button name translation issue.
**Fix:** Frontend preview contents translation relevant issues.
**Fix:** Project switch, task creating & several unformatted strings translation issues.
= v2.6.1 - May 24, 2023 =
**Fix:** The email type settings field UI broken issue.
**Fix:** Tasks title content not decoded properly & fix ux issue.
**Fix:** User task calender's starting date data handling security issue.
= v2.6.0 - Nov 30, 2022 =
**New:** Added pm pro version overview for lite users
= v2.5.0 - July 15, 2022 =
**Update:** Compatibility with PHP-8.x
**Update:** Improved codebase to make performance better
**Fix:** Fixed some translation issues
= v2.4.18 - March 28, 2022 =
**Fix:** Fixed Project Searching hover project links. (Issue #437)
**Fix:** Fixed Some Role Permission assign issue after creating project.
= v2.4.17 - Feb 07, 2022 =
**Notice:** Limited time promotional notice on Super Bowl sale
= v2.4.16 - Dec 23, 2021 =
**Fix:** Discussion file url was not downloadable for PDF
**Notice:** Limited time promotional notice on holiday sale
= v2.4.15 - Nov 11, 2021 =
**Update:** ChartJS libraries from v2.x to v3.6.0
**Update:** Removed dummy data, unused files and external cdn links to improve and clean the whole codebase
**Fix:** Data escaping and sanitization issues all over the plugin
**Fix:** Some i18n translation, wrong text-domain issues
**Notice:** Limited time promotional offer regarding Black Friday and Cyber Monday
= v2.4.14 - Oct 11, 2021 =
**Fix:** Data sanitization and validation issues to prevent security threats
**Fix:** Timezone issues in My Calendar
**Fix:** Task file downloading issue by other member of project assignee list
**Fix:** After Task Create Email, `undefined offset` issue in template footer
**Fix:** User assign issue from Project Overview page
**Fix:** Unassigned Reports were not loading
**Notice:** Limited time promotional offer for Halloween
= v2.4.13 - July 16, 2021 =
**Notice:** Limited time promotional offer regarding summer sale
**Update:** Calendar event content styles
**Update:** Some library upgrade for better performance
**Fix:** My Task report was not getting accurate result in some cases
**Fix:** My Calendar single task was unable to be moved
**Fix:** After creating a task, it was not updating instantly in ‘My Calendar’ and ‘My Task at a Glance’ section
**Fix:** Authentication issues on some un-authenticated API endpoints like tasks, task types, activities
= v2.4.12 - May 07, 2021 =
**Notice:** Limited time promotion on account of Eid.
= v2.4.11 - March 17, 2021 =
**Notice:** Limited time promotion for weDevs’ birthday.
= v2.4.10 - Feb 13, 2021 =
**Fix** Vulnerable security issue.
= v2.4.9 - Jan 26, 2021 =
**Fix** Email notification was showing the wrong task completed user name.
**Fix** Every member can see every project.
**Fix** First-time task lists were not loading from the notification email.
**Update** Alignment problem when creating the new project.
= v2.4.8 - Dec 18, 2020 =
**Update** Task query updated for filtering tasks by complete_at date range.
**Fix** Completed tasks were not showing on my-task.
**Fix** Made the icons inline alignment on the subtask create form.
= v2.4.7 - Dec 10, 2020 =
**Update** PSR-4 standard.
**Fix** Project pagination was not working when all projects are deleted from the current page.
**Fix** Fixed the task pagination problem. It was not working when a task is deleted.
= v2.4.6 - Nov 21, 2020 =
**Fix** User capability is not chanting after save it.
**Fix** User can not access their reports from my-task.
**Fix** Email footer logo is not appearing.
= v2.4.5 - Nov 11, 2020 =
**New** Help tooltip in single task.
**Update** Rewrite email template.
**Fixed** Pagination back button is not working for project page.
= v2.4.4 - Oct 08, 2020 =
**New** Introduce new library simshaun/recurr.
**New** Added the remove format option in project manager text editor.
**Fixed** In text editor, after type '@' the list of users exceeds outside of the modal.
**Fix** Task assigned all users can change the task type.
**Fix** User can not delete their own created task comments.
**Fix** Remove the HTML tag from milestone title.
= v2.4.3 - Sep 10, 2020 =
**Update** In dashboard project menu bar has been rearranged.
**Update** In single task now user can navigate to project and task list.
**Fix** Co-worker can not be deleted in self created task comment.
**Fix** In frontend project manager date picker was not showing in single task.
**Fix** In my task, task create form did not change the list even the project has been change.
**Fix** Project title was missing from my-task.
= v2.4.2 - Aug 26, 2020 =
* **Fix** Single task popup is not appearing.
= v2.4.1 - Aug 25, 2020 =
* **New** Add new task type for individual task.
* **Fix** During task update the date picker was not showing.
* **Fix** Was not able to delete the task list description.
* **Fix** Optimize code for security issue.
* **Fix** Task list title was not able to update.
* **Fix** Completed project was not able to restore.
= v2.4.0 - Jul 17, 2020 =
* **New** Component for pm-vue2-daterange-picker, pm-button, pm-do-slot.
* **New** Change all date picker from all forms.
* **New** Manage do-action content without any wrapper.
* **New** API end point is now working for all permalink.
* **Update** UI/UX for creating new task.
* **Update** UI/UX for add new members from single task popup.
* **Update** UI/UX for task due date from single task popup.
* **Fix** Could not download files from the project.
= v2.3.11 - Jun 16, 2020 =
* **Fix** API end point is now working for all permalink.
* **Fix** My-task calendar missing current date task.
* **Fix** In my-task, The task is not updating after user closing the single task popup.
* **Fix** In My- task user can not select the date range during task create time.
* **Fix** User can not delete self created task-list.
* **Fix** In content text should not break in middle of the word (style change break-all to break-word).
= v2.3.10 - May 05, 2020 =
* **Fix** Task load more is not working for co-worker.
= v2.3.9 - Apr 30, 2020 =
* **New** New function for getting tasks, messages, milestones, discussions, projects, comments, files, users.
* **New** Project description shows upon clicking on the description button.
* **Update** Load more buttons showing twice after deleting completed task.
* **Fix** On My task overview graph showing error when there are no task.
* **Fix** Task assigned date is not showing in a single task popup.
* **Fix** Progress bar continue loading after clicking on Clear button on the task filter.
= v2.3.8 - Mar 12, 2020 =
* **New** Add fileter for removing project unique title.
* **Fix** Fixing Multiside completable issues.
* **Update** Update query for fetching users to make Multi-site compatible.
= v2.3.7 - Feb 27, 2020 =
* **Fix** In favorite project section 'all projects' were showing.
* **Fix** Task notification mails contain raw HTML.
* **Fix** Set 200 character limit when adding a new task.
= v2.3.6 - Feb 10, 2020 =
* **New** Set date range picker in my-task section to filter tasks.
* **New** Set date range picker in my-task overview to filter activities.
* **New** Duplicate a task from the task list.
* **New** New components are, pm-button, pm-dropdown-menu, pm-triangle-box, pm-click-wrap, pm-popup-modal, pm-date-range-picker.
* **Update** Redesigned task-create form.
* **Update** Replace jQuery date picker to date range picker.
* **Update** Some features are moved from task create a form to a single task page.
* **Fix** Assigned manager in a project was not getting mail at project creation time.
* **Fix** Make Multi-site compatible for fetching co-workers.
* **Fix** Invisible tools menu for co-workers.
* **Fix** Co-workers could not edit their created task.
* **Fix** 'Inbox' task create form was showing for all pagination pages.
* **Fix** Showing invalid date after searching outstanding task.
* **Fix** Favorite project was not working.
= v2.3.5 - Dec 19, 2019 =
* **New** Add privacy policy in the product description.
* **Fix** Sanitize data while updating task.
* **Fix** Add extra data validation on the database query.
= v2.3.4 - Nov 15, 2019 =
* **Fix** Task label are inserted two times while updating the task.
* **Fix** Task update buttons can not be selected for the tooltip.
* **Update** Project assigned users has been removed from user search results.
* **Update** Add text limit on task title.
= v2.3.3 - Nov 10, 2019 =
* **New** Integrate with Pusher for real time notification.
* **New** Include seeder for project, task-list and task.
* **New** Set filter in project fetch 'join' and 'where' query.
* **Fix** Task update popover menu used to break when task title was long.
* **Update** Reset button on task-list search.
= v2.3.2 - Oct 10, 2019 =
* **Fix** Conflict with elementor.
* **Update** Toastr library.
= v2.3.1 - Sep 26, 2019 =
* **New** User can create new task from my-task section.
* **New** Sorting my-task table column.
* **Update** My-tasks menu is not appear in front-end.
* **Update** Reduce loading executing time for project home page.
* **Update** Refactoring code for getting projects data.
= v2.3.0 - Sep 09, 2019 =
* **New** Remove current task, outstanding task and completed task tabs from my tasks.
* **New** Advanced task filtering option according to current task, outstanding task and completed task in my tasks section.
* **New** pm_capabilities, pm_role_project, pm_role_project_capabilities, pm_role_project_users table for permission management.
* **Update** Change single task popup url from my-task to single task lists.
* **Fix** Progress load more is not working.
= v2.2.4 - Jul 22, 2019 =
* **New** Task title field in task list search form.
* **Fix** Task sorting is not working.
* **Fix** Prevent sorting for default task list (Inbox).
* **Update** Showing 'more task' button even there is not task.
= v2.2.3 - Jul 15, 2019 =
* **Update** Task list search query.
* **Fix** After drag and drop task is not updating from my-task calendar.
* **Fix** Milestone disapear after reloding the page.
= v2.2.2 - Jun 28, 2019 =
* **New** Action hook in task list page 'pm_after_task_content'.
* **New** Event initiation after task user update 'after_update_single_task_user'.
* **New** Action hook before delete task list 'pm_before_delete_task_list'.
* **Update** User gets mail at task updating time even the task is not updated.
* **Update** Archived tasks will not appear on MyTask calendar.
* **Update** New tasks are listing in the descending order in the task lists.
* **Fix** User can remove administrator from manage capability permission.
* **Fix** Inbox task list does not appear at the top of the task lists.
* **Fix** compact(): undefined index variable problem for php 7.3
* **Fix** Text domain 'pm' to 'wedevs-project-manager'.
* **Fix** Task lists menu is not activating while clicking pagination.
= v2.2.1 - Jun 14, 2019 =
* **Fix** Fatal error undefined function.
= v2.2.0 - Jun 14, 2019 =
* **New** Added my task menu from where individual users can check their completed, current and outstanding tasks.
* **Fix** Assigned users can not find the task description.
* **Fix** Add new user in project does not appear in task users dropdown at task create or edit time.
* **Fix** A newly added user in a project did not appear in the dropdown i.e in the list of users while adding, creating or editing a task.
* **Fix** User can not udpate task comment from single task popup.
* **Fix** A newly added user does not appear in project update form.
= v2.1.0 - May 18, 2019 =
* **New** Trello Integration.
* **Fix** Fixed co-worker & client create task activities.
* **Fix** Removed usermap from global setting.
* **Fix** Removed unnecessary dashicons and added title to files.
* **Fix** Resolved conflict from setting header.
* **Fix** Fixed project edit form get closed when user click out side.
= v2.0.15 - May 02, 2019 =
* **Fix** Load more Completed & Incompleted task.
* **Fix** Pagination slug of completed task.
* **Fix** Optimize task queries for retrieving task ids.
* **Fix** The naming of variable "$milestones" to "$milestone" at filter 'pm_milestone_show_query'
= v2.0.14 - April 11, 2019 =
* **New** Included filter at task activity and after create comment.
* **Update** Remove search user minimum 3 character condition.
* **Update** Remove tooltip from list view and kanboard view button.
* **Update** Migrated from icomoon to Flaticon.
* **Fix** API authentication problem.
* **Fix** Some textdomain.
= v2.0.13 - March 04, 2019 =
* **New** Set loading effect for 'Load more' task.
* **New** Set loading effect at task list page and list archive page nevigation.
* **New** Set loading effect at task list pagination.
* **New** New library v-tooltip
* **Fix** Any kinds of url added extra from tinymce text filed.
* **Fix** After project edit, the description is not updated real time.
* **Fix** Less file is not built to css file.
* **Update** Set target blank in tinymce posted url.
= v2.0.12 - Feb 15, 2019 =
* **New** New filter welcome page redirect.
* **Fix** Task pagination did not work.
* **Fix** Close button did not work in new project form.
* **Fix** Milestone due date did not update.
* **Update** Set permission at user create time from project overview page.
= v2.0.11 - Feb 08, 2019 =
* **New** Integrate with popper js.
* **New** Welcome page.
* **New** Premium page.
* **Fix** Change task list fetch query.
* **Fix** Change task fetch query.
* **Fix** File upload problem from discussion section.
* **Fix** After close single task the list page is refreshing.
* **Fix** Remove html tag from email content.
* **Fix** Color picker does not work.
= v2.0.10 - Dec 19, 2018 =
* **Hotfix** Fatal error at page and post edit time.
= v2.0.9 - Dec 19, 2018 =
* **New** Update user from overview page.
* **New** Move tasks from one list to another.
* **Update** Permission for project delete.
* **Fix** Project update time dialog-box close automatically.
* **Fix** Conflict with text editor and datepicker problem for task create.
* **Fix** Date-picker auto close, when select a date.
* **Fix** Coding standard according wordpress.
= v2.0.8 - Nov 29, 2018 =
* **New** Project home page redesign.
* **New** Close single task popup with ESC button.
* **New** Single task popup is enable from activity page.
* **Update** Task filter form alignment.
* **Fix** Relative date for comments.
* **Fix** Tabindex for texteditor.
* **Fix** Latest activity for single task.
* **Fix** More task button missing from completed tasks.
* **Fix** Date picker auto hide problem.
* **Fix** Task list responsive issue.
* **Remove** Slicknav library.
= v2.0.7 - Nov 08, 2018 =
* **New** Switch project with key binding cmd+j/clt+j.
* **New** Task list page redesign.
* **New** Single task list page redesign.
* **New** System default task list inbox.
* **New** All description fields with validation and sanitization at edit time.
* **New** Project title should be unique.
* **Fix** Task filter query.
* **Fix** Task and task-list sorting supported in mobile.
= v2.0.6 - Oct 02, 2018 =
* **New** Set permission setting for user mail notification.
* **New** Task single page redesign.
* **New** Show activity in single task page.
* **New** Projects can mark as favourite by users.
* **New** Added completed_by and completed_at fields in pm_tasks database table.
* **New** Added status field in pm_broad database table.
* **New** Support for video file upload.
* **New** New user notification.
* **New** Advanced task filter from task list page.
* **New** Set deleted activity log in activity section.
* **Fix** Invalid time issue in activity page.
* **Fix** Overview graph for last 3o days activity
* **Fix** Get email notification when update discussion
= v2.0.5 - August 16, 2018 =
* **New** Added filters for getting custom query in all transformers.
* **New** Project description in html format.
* **Fix** Undefined task title from activity.
* **Fix** Single task popup close automatically.
* **Fix** Activity count when delete an element.
* **Fix** Manage capability return false, when user role is not found.
* **Fix** Some translation issues.
* **Fix** Some compatibility issue on internet explorer.
* **Fix** Task assignee input field is not updating when assignee user field is Empty
* **Fix** Task list milestone input field is not updating when milestone is Empty
= v2.0.4 - July 27, 2018 =
* **Fix** Download link for wedevs project manager php-5.6.
= v2.0.3 - July 27, 2018 =
* **New** List drag, drop and reorder.
* **New** Task independently switch in task lists.
* **New** Added categry pagination.
* **Fix** Date format problem for task and overviews graph.
* **Update** Activity date format change.
* **Update** Load All Categories in select form.
* **Update** Load all HTTP request with GET and POST methods.
= v2.0.2 - July 23, 2018 =
* **New** Create function for getting individual task.
* **New** Hook for all CRUD (Create, Read, Update and Delete)
* **Fix** Task complete and incomplete issues in microsoft edge browser.
* **Fix** Pagination set -1 for per page and its getting error.
* **Fix** Multisite installation and upgrade.
* **Fix** Translation for vue files.
* **Fix** Fetch project in single task page.
* **Fix** Reduce conflict with WPERP plugin.
* **Fix** JS make compitable with IE>8.
= v2.0.1 - Jun 29, 2018 =
* **Fix:** Fix database migration problem upon updating the plugin.
= v2.0 - Jun 28, 2018 =
* **BREAKING**: This **v2.0** release is a major version and introduces breaking changes by re-writing the whole plugin. Please test the plugin before updating from <strong>v1.x</strong>. Taking a **database backup** is adviced.
* **New:** REST API added. Now you can access everything of project manager via the API. Creating of mobile apps would be much easier.
* **New:** Moved from custom post type to custom database tables, which performs a lot faster.
* **New:** We have re-written the Project Management UI, powered by [Vue.js](https://vuejs.org/). This introduces a SPA (Single Page Application) with blazing fast page loading and a snappier user experience.
* **Bug Fixes:** We have also squashed a lot pesky bugs under the hood.
= 1.6.16 - Jun 11, 2018 =
* [fixed] Project title is overlaping on RTL language.
* [fixed] Could not select project category while creating/editing a project.
* [fixed] Single task is not re-rendering
= 1.6.15 - May 10, 2018 =
* [fixed] Task list is not showing when using the Internet Explorer browser.
* [fixed] Projects dashboard display missing alignment.
* [Update] Improved plugins text domain.
= 1.6.14 - April 26, 2018 =
* [fixed] Task is not showing after clicking on a task from the calendar.
* [fixed] Mail notificaation system not working.
* [fixed] Category menu selection while creating project not working on RLT.
* [fixed] RTL display missing alignment on milestone.
= 1.6.13 - April 12, 2018 =
* [fixed] RTL display missing alignment.
* [fixed] Settings menu is not showing properly on projects header.
* [fixed] Project settings page translation not working.
= 1.6.12 - March 22, 2018 =
* [fixed] Showing HTML markup in task descriptions when we enter plain text.
* [fixed] To-do list, Discussion, milestone, page translation not working.
* [fixed] Projects page translation not working.
* [update] Improved plugin strings.
= 1.6.11 - February 26, 2018 =
* [fix] Notify users while commenting in a task.
* [fix] Trix-editor intregration with the WP ERP.
* [fix] Compatible with the Microsoft Edge browser.
* [fix] Task re-ordering.
* [fix] Project list and grid view compatible with all browsers.
= 1.6.10 - November 27, 2017 =
* [new] Vuejs loading made compact.
* [new] Included vuejs in project file.
* [update] Included file download attributes.
* [update] Notify manager when updating comments.
* [fix] Navigate to a task from the calendar.
* [fix] User search problem fixed when creating a project.
* [fix] Text editor style problem fixed.
= 1.6.9 - August 24, 2017 =
* [fix] CPM free loader class active after loading WP all plugins
* [fix] All co-workers get mail after completed the task
* [new] weForms Upsell Class
= 1.6.8 - August 17, 2017 =
* [fix] Prevent the loading trix-editor for all WP page.
* [fix] Text formating retained got from others editor.
* [fix] Creating second task does change the date of first task.
* [new] Add new component cpm-datepicker
= 1.6.7 - August 01, 2017 =
* [new] Js Tiptip library has been added.
* [update] Condition applied when showing calendar on setting tast start date.
* [update] Date icon has been shown if no date was set.
* [update] Description icon has been shown if no description was set.
* [update] Co-Worker icon has been shown if no Co-Worker was set in the task.
* [fix] Double date picker shown at task date update time.
* [fix] Undefined index errors.
= 1.6.6 - July 31, 2017 =
* [new] Task title update from single task page.
* [new] Task privacy update from single task page.
* [new] Task description update from single task page.
* [new] Task start and end date update from single task page.
* [new] Add user/co-worker/client from single task page.
* [fix] Unable to complete task.
* [fix] When complete a task then this completed task shown double in the to-do list.
* [fix] Double "New To-Do" button shown.
* [update] 'Get project id' function always return false.
* [update] Design change for single task page.
= 1.6.5 - July 6, 2017 =
* [fix] Co-worker can not show the list corner menu.
* [fix] Co-Worker could not notifying when add or update project.
* [fix] Double "New To-Do" button shown and also cpm-new-todolist-form has shown when clicked "New To-Do" List button.
* [fix] Project create permission.
* [fix] Get complete and incomplete task query
* [fix] Change routing effect at todo-list page to another page
= 1.6.4 - June 22, 2017 =
* [new] Task list view on the right corner in to-do list section.
* [update] Notify co-workers on task completion.
* [update] Task update action hook.
* [update] Style sheets updated.
* [update] Some javascript refactored.
* [fix] Wrong color is showing for a task on basis of task competion status.
* [fix] PHP warning on project overview.
* [fix] PHP warning on my task overview.
= 1.6.3 - June 07, 2017 =
* [new] Drag and drop sortability added to the task
* [update] Task color scheme.
* [update] Activity graph color scheme in my task section.
* [update] Single task redirection in my task section.
* [update] Project duplication.
* [update] Project overview section.
* [fix] Grid/List view action on project listing is not working.
* [fix] Project overview graph is not working.
* [fix] Not all users of a project is being duplicated when duplicating a project.
* [fix] Notification is sent to the co-workers when a project is created.
* [fix] Unable to comment in a task when it is redirected from current task in my task.
* [fix] Unable to comment in a task when it is redirected from outstanding task in mytask.
* [fix] Unable to comment in a task when it is redirected from competed task in my task.
* [fix] User selection is not working in my task.
* [fix] Date section is not working in activity graph in my task.
* [fix] Red color is showing for current task in my task.
* [fix] Overview section in my task is not working
* [fix] Activity section in my task is not working
* [fix] Current task section in my task is not working
* [fix] Outstanding task section in my task is not working
* [fix] Completed task section in my task is not working
* [fix] File attachment is not working when commenting in the file section of a project.
* [fix] Unable to delete a comment in the file section of a project.
* [fix] Commenting in a discussion board is not working.
* [fix] Editing a comment in a discussion board is not working.
* [fix] Deleting a comment in a discussion board is not working.
* [fix] Javascript shows error when commenting, editing comments and deleting comments in discussion board.
= 1.6.2 - April 27, 2017 =
* [new] Email template for mentioning users in a comment. [pro]
* [new] Moment js dependency added.
* [new] Compatibility for mentioning users in a comment.
* [update] Include filter for register project post type.
* [update] Include filter for register project taxonomy.
* [update] Change pagination position from left to right.
* [update] Pagination has been shown up and down of to-do lists content.
* [update] Single task url.
* [update] To-do lists progress bar.
* [update] Unnecessary parameters removed form wp_enqueue_script in cpm.
* [update] Array declaration according to lower version of php.
* [fix] Can’t use function return value in write context.
* [fix] Syntax error, unexpected '['
* [fix] Filtering for to-do lists private view.
* [fix] Filtering problem for the visibility of to-do lists create button.
* [fix] List style problem in tiny-MCE comment box while commenting on discussion board.
* [fix] WP nonce problem in project discussion.
= 1.6.1 - April 11, 2017 =
* [fix] Load JS files only in todo list page
* [fix] Fix typo in todo list privacy checking capability
* [fix] Shortcode rendering in comments
* [fix] Remove users from notification panel outside of the project members
* [fix] Removed PHP array shorthand declaration
* [fix] Single task URL problem in My Task
= 1.6 - April 08, 2017 =
* [new] Use js library Vue
* [new] Design layout changed for To-do Lists.
* [new] Real time update every action for To-do lists.
* [new] Two way data binding for to-do list edit
* [new] Two way data binding for task edit
* [new] Task lazy loading.
* [new] Vue routing for single To-do list
* [new] Real time pagination.
* [new] Completed and incomplete label added for corresponding tasks in single to-list.
* [update] Discussion editor changed from tricks to tinymce.
* [update] Real time change of progress bar.
* [update] Assign user to task options changed from choosen to Vue multiselect.
* [update] User avatar(gravatar) link changed form 404 to mm
* [fix] Remove comments link from overview.
* [fix] All functionalities for to-do list.
= 1.5.1 - September 19, 2016 =
* [new] Send Email Notification when a comment updates.
* [new] Add filter for how many letter to show when image name is long in files tab.
* [fix] Fixed conflict with buddypress.
* [fix] Fixed Project creation capability and update language files.
* [fix] Made Report print friendly.
* [fix] Files tab loading improvement.
* [fix] Show all comments in newly uploaded file view.
* [fix] Client view private discussion.
= 1.5 - August 20, 2016 =
* [new] Report section new design (*pro*).
* [new] New Report item added (*pro*).
* [new] Files tab new design and add new feature in pro version (*pro*).
* [new] Add option for create document and connect to other online Docs (*pro*).
* [new] Add option to upload files / attachment direct to a project (*pro*).
* [fix] Duplicate mail send on project create.
* [fix] Change cpm_get_option function.
= 1.4.3 - May 30, 2016 =
* [fix] Milestone input date and project redirect issue after create.
* [fix] Sorting completed milestone
* [fix] Image broken in emails
* [fix] File upload on first discussion problem fix.
* [fix] Task Done/Undone tick problem fix.
* [fix] New user create on project create or update problem fix.
* [fix] Department or personal projects show in ERP integration.
= 1.4.2 - April 6, 2016 =
* [fix] Project permission problem in free version
= 1.4.1 - March 28, 2016 =
* [new] Task list sticky option added as a replacement for sorting
* [new] Proper mime type icon set
* [new] Initial ERP integration added
* [fix] Front-end URL issue
= 1.4 - March 13, 2016 =
* [new] UI Re-designed
* [new] Tasks now have a description field
* [tweak] As now we have description in tasks, previous tasks were updated.
* [tweak] Project post_type changed from `project` to `cpm_project`
* [tweak] Task post_type changed from `task` to `cpm_task`
* [tweak] Task List post_type changed from `task_list` to `cpm_task_list`
* [tweak] Milestone post_type changed from `milestone` to `cpm_milestone`
* [tweak] Message post_type changed from `message` to `cpm_message`
* [tweak] project_category taxonomy changed from `project_category` to `cpm_project_category`
= 1.3.8 - October 20, 2015 =
* [fix] Front-end current task, outstanding task and completed task url problem fix
* [fix] Without login can access front-end problem fix
* [fix] Current task, outstanding task and completed task live update problem fix.
* [fix] Fetch outstanding and completed task problem fix
= 1.3.7 - October 15, 2015 =
* [fix] Fix LogicException on autoloader
= 1.3.6 - October 15, 2015 =
* [fix][pro] Add category for front-end
* [fix] Email notification subject issue fixed
= 1.3.5 - September 29, 2015 =
* [fix] User role and items table weren't being created during install
= 1.3.4 - September 19, 2015 =