Skip to content

Commit

Permalink
Release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asaquzzaman committed Jul 23, 2018
1 parent 7446bac commit d9f9ebb
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
18 changes: 11 additions & 7 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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 =

Expand Down
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
];
];
9 changes: 5 additions & 4 deletions cpm.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
require __DIR__.'/bootstrap/start.php';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d9f9ebb

Please sign in to comment.