Skip to content

Commit

Permalink
Merge branch 'release/1.6.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
asaquzzaman committed Apr 26, 2018
2 parents 0faefc0 + b605410 commit b5fbb5b
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 6 deletions.
8 changes: 8 additions & 0 deletions assets/js/task-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -1332,6 +1332,14 @@ var CPM_Task_Single = {
}
},
},
watch: {
'$route' (route) {
this.getTask();
window.addEventListener('click', this.windowActivity);

this.$root.$on('cpm_date_picker', this.fromDate);
}
},

created: function() {
this.getTask();
Expand Down
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
= 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.
Expand Down
2 changes: 1 addition & 1 deletion class/notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static function getInstance() {
* @since 1.4.0
*/
public function check_email_url() {
if ( cpm_get_option( 'email_url_link', 'cpm_mails' ) == 'frontend' ) {
if ( (cpm_get_option( 'email_url_link', 'cpm_mails' ) == 'frontend') && class_exists('CPM_Frontend_URLs') ) {
new CPM_Frontend_URLs();
}
}
Expand Down
4 changes: 2 additions & 2 deletions cpm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: WordPress Project Management plugin. Manage your projects and tasks, get things done.
* Author: Tareq Hasan
* Author URI: https://tareq.co
* Version: 1.6.13
* Version: 1.6.14
* License: GPL2
*/
/**
Expand Down Expand Up @@ -49,7 +49,7 @@ class WeDevs_CPM {
*
* @var string
*/
public $version = '1.6.13';
public $version = '1.6.14';

/**
* Plugin Database version
Expand Down
4 changes: 2 additions & 2 deletions languages/cpm.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# This file is distributed under the GPL2.
msgid ""
msgstr ""
"Project-Id-Version: WP Project Manager 1.6.13\n"
"Project-Id-Version: WP Project Manager 1.6.14\n"
"Report-Msgid-Bugs-To: "
"http://wedevs.com/support/forum/plugin-support/wp-project-manager/\n"
"POT-Creation-Date: 2018-04-12 08:23:02+00:00\n"
"POT-Creation-Date: 2018-04-26 09:41:06+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wedevs-project-manager",
"version": "1.6.13",
"version": "1.6.14",
"description": "A project management plugin built on top of WordPress. It simply mimics the simpleness of basecamp.",
"author": "Tareq Hasan",
"license": "GPL",
Expand Down
7 changes: 7 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ A. Found any bugs? Please create an [issue](https://github.com/tareq1988/wp-proj

== Changelog ==

= 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.
Expand Down

0 comments on commit b5fbb5b

Please sign in to comment.