Skip to content

Commit

Permalink
v1.6.4 is ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
asikur committed Jun 22, 2017
1 parent 9a51077 commit 7a2dbd4
Show file tree
Hide file tree
Showing 8 changed files with 5,659 additions and 164 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ module.exports = function(grunt) {
'!.git/**',
'!Gruntfile.js',
'!package.json',
'!package-lock.json',
'!debug.log',
'!phpunit.xml',
'!export.sh',
Expand Down
13 changes: 12 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
= 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
Expand All @@ -10,7 +21,7 @@
* [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 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.
Expand Down
8 changes: 4 additions & 4 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.3
* Version: 1.6.4
* License: GPL2
*/
/**
Expand Down Expand Up @@ -46,7 +46,7 @@ class WeDevs_CPM {
*
* @var string
*/
public $version = '1.6.3';
public $version = '1.6.4';

/**
* Plugin Database version
Expand Down Expand Up @@ -364,12 +364,12 @@ static function admin_scripts() {
wp_enqueue_script( 'cpm-timepicker', CPM_URL . '/assets/js/jquery-ui-timepicker.js', array('jquery'), false, true );
wp_register_script( 'cpm-tiny-mce', site_url( '/wp-includes/js/tinymce/tinymce.min.js' ) );
//wp_register_script( 'cpm-trix', CPM_URL . '/assets/js/trix/trix.js', array( 'jquery' ), time(), false, true );

wp_register_script( 'cpm-moment', CPM_URL . '/assets/js/moment/moment.min.js', false, time(), false );
// this is removing conflict with buddypress momentjs
$momentjs_dependency = apply_filters('momentjs', array('cpm-moment') );
wp_register_script( 'cpm-moment-timezone', CPM_URL . '/assets/js/moment/moment-timezone.min.js', $momentjs_dependency, time(), false );

wp_register_script( 'cpm-vue', CPM_URL . '/assets/js/vue/vue'.$suffix.'.js', array('cpm-tiny-mce','cpm-moment', 'cpm-moment-timezone'), time(), false, true );
wp_register_script( 'cpm-vuex', CPM_URL . '/assets/js/vue/vuex'.$suffix.'.js', array( 'cpm-vue' ), time(), false, true );
wp_register_script( 'cpm-vue-router', CPM_URL . '/assets/js/vue/vue-router'.$suffix.'.js', array( 'cpm-vue' ), time(), false, true );
Expand Down
Loading

0 comments on commit 7a2dbd4

Please sign in to comment.