diff --git a/changelog.txt b/changelog.txt index b738eb30a..fba0a9478 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,10 +1,14 @@ -= v2.0.2 - July 9, 2018 = - * **New** Add new field task estimated - * **Fix** task complete incomplete issues in ms-edge - * **Fix** pagination error for per page -1 - * **Fix** multisite installation and upgrade - * **Fix** translation for vue files - * **Fix** Load project in single task page += 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 = diff --git a/config/app.php b/config/app.php index 270127122..39e948e1d 100644 --- a/config/app.php +++ b/config/app.php @@ -3,8 +3,8 @@ return [ 'name' => 'Project Manager', 'slug' => 'pm', - 'version' => '2.0.1', + 'version' => '2.0.2', 'api' => '2', 'db_version' => '2.0', 'text_domain' => 'pm' -]; \ No newline at end of file +]; diff --git a/cpm.php b/cpm.php index 9be86657d..9209112a4 100644 --- a/cpm.php +++ b/cpm.php @@ -132,21 +132,22 @@ function pm_install_project_manager() { add_filter('upgrader_pre_install', array($upgrader, 'deactivate_plugin_before_upgrade'), 10, 2); add_filter('upgrader_clear_destination', array($upgrader, 'delete_old_plugin'), 10, 4); - $result = $upgrader->install( 'https://github.com/weDevsOfficial/wp-project-manager/releases/download/v2.0.1/wedevs-project-manager-php5.6-v2.0.1.zip' ); + $result = $upgrader->install( 'https://github.com/weDevsOfficial/wp-project-manager/releases/download/v2.0.2/wedevs-project-manager-php5.6-v2.0.2.zip' ); if ( is_wp_error( $result ) ) { - wp_send_json_error( $result ); + wp_send_json_error( $result ); } $result = activate_plugin( 'wedevs-project-manager/cpm.php' ); if ( is_wp_error( $result ) ) { - wp_send_json_error( $result ); + wp_send_json_error( $result ); } + wp_send_json_success(); } define('PM_FILE', __FILE__); define ('PM_BASENAME', plugin_basename(__FILE__)); -require __DIR__.'/bootstrap/start.php'; \ No newline at end of file +require __DIR__.'/bootstrap/start.php'; diff --git a/package.json b/package.json index 23a4ac3ba..97361289e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pmapi", - "version": "2.0.1", + "version": "2.0.2", "description": "Front-end package manager for project manager", "main": "index.js", "directories": { diff --git a/readme.txt b/readme.txt index fbfb16909..c5f43a1ed 100644 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: tareq1988, wedevs, asaquzzaman, mshossain110 Donate Link: https://tareq.co/donate/ Tags: project, manager, project manager, project management, todo, todo list, task, basecamp, milestone, message, file, comment, client, team, tracking, planning, lists, reporting, project management plugin for wordpress, project manager, project manager plugin for wordpress, wordpress project management Requires at least: 4.4 -Tested up to: 4.9.6 -Stable tag: 2.0.1 +Tested up to: 4.9.7 +Stable tag: 2.0.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html