Changeset 3380030
- Timestamp:
- 10/17/2025 10:50:25 AM (5 months ago)
- Location:
- taskbuilder
- Files:
-
- 2 added
- 10 edited
- 1 copied
-
tags/4.0.9 (copied) (copied from taskbuilder/trunk)
-
tags/4.0.9/includes/admin/projects/open_project/wppm_set_change_project_details.php (modified) (2 diffs)
-
tags/4.0.9/includes/admin/tasks/open_task/wppm_set_change_task_details.php (modified) (2 diffs)
-
tags/4.0.9/includes/admin/tasks/open_task/wppm_set_clone_task.php (modified) (2 diffs)
-
tags/4.0.9/lang/taskbuilder-pt_BR.mo (added)
-
tags/4.0.9/readme.txt (modified) (3 diffs)
-
tags/4.0.9/taskbuilder.php (modified) (2 diffs)
-
trunk/includes/admin/projects/open_project/wppm_set_change_project_details.php (modified) (2 diffs)
-
trunk/includes/admin/tasks/open_task/wppm_set_change_task_details.php (modified) (2 diffs)
-
trunk/includes/admin/tasks/open_task/wppm_set_clone_task.php (modified) (2 diffs)
-
trunk/lang/taskbuilder-pt_BR.mo (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/taskbuilder.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
taskbuilder/tags/4.0.9/includes/admin/projects/open_project/wppm_set_change_project_details.php
r3210469 r3380030 29 29 $wppmfunction->change_project_end_date( $project_id, $project_end_date); 30 30 } 31 if( $project_category && $project_category!= $project_data['cat_id']){31 if( $project_category != $project_data['cat_id']){ 32 32 $wppmfunction->change_category( $project_id, $project_category); 33 33 $change_category_value = array('prev_cat'=>$project_data['cat_id'],'new_cat'=>$project_category); … … 41 41 } 42 42 43 if( $project_description && $project_description!= $project_data['description']){43 if( $project_description != $project_data['description']){ 44 44 $wppmfunction->change_project_description( $project_id, $project_description); 45 45 } -
taskbuilder/tags/4.0.9/includes/admin/tasks/open_task/wppm_set_change_task_details.php
r3210469 r3380030 35 35 } 36 36 37 if( $task_priority && $task_priority!= $task_data['priority']){37 if( $task_priority != $task_data['priority']){ 38 38 $wppmfunction->change_priority( $task_id, $task_priority); 39 39 $change_priority_value = array('prev_prio'=>"$task_data[priority]",'new_prio'=>"$task_priority"); … … 46 46 } 47 47 48 if( $task_description &&$task_description != $task_data['description']){48 if( $task_description != $task_data['description']){ 49 49 $wppmfunction->change_description( $task_id, $task_description); 50 50 } -
taskbuilder/tags/4.0.9/includes/admin/tasks/open_task/wppm_set_clone_task.php
r3210469 r3380030 18 18 exit; 19 19 } 20 $wppm_default_duplicate_project_email_notification = get_option('wppm_default_duplicate_project_email_notification'); 20 21 $checklists = $wppmfunction->get_checklist($prev_task_id); 21 22 $task_project = isset($project_id) ? $project_id : $task['project']; … … 39 40 ); 40 41 $task_id = $wppmfunction->create_task($values); 41 do_action('wppm_after_task_created', $task_id); 42 if(!isset($project_id) || $wppm_default_duplicate_project_email_notification==1){ 43 do_action('wppm_after_task_created', $task_id); 44 } 42 45 if(!empty($checklists)){ 43 46 foreach($checklists as $checklist){ -
taskbuilder/tags/4.0.9/readme.txt
r3358435 r3380030 4 4 Tags: project,project management,task management,task manager,Kanban 5 5 Requires at least: 4.4 6 Tested up to: 6.8. 27 Stable tag: 4.0. 86 Tested up to: 6.8.3 7 Stable tag: 4.0.9 8 8 License: GPL v3 9 9 … … 73 73 * German(formal) 74 74 * Turkey 75 * Portuguese (Brazil) 75 76 If you are a translator, you can get free access to all premium add-ons for a year in exchange for translating them into your language if it is not available already. We will renew the Premium subscription next year if you continue contributing to the translation. If interested, don't hesitate to contact us via our [support page](https://taskbuilder.net/support/). 76 77 … … 117 118 118 119 == Changelog == 120 = V 4.0.9(October 17,2025) = 121 * New: Portuguese (Brazil) Translation added. 122 * Fix: If edit project description and remain empty, it does not save empty value. 123 * Fix: If edit category and remain it empty, it does not save empty value. 124 * Fix: If edit task description and remain empty, it does not save empty value. 125 * Fix: If edit task priority and emain it empty, it does not save empty value. 126 * New: Duplicate project email notification setting- 127 1. Send single email for task creation(which mention all tasks), after duplicate project. 128 2. Send each email for task, after duplicate project. 129 119 130 = V 4.0.8(September 9,2025) = 120 131 * Fix: Change Visibility bug fix. -
taskbuilder/tags/4.0.9/taskbuilder.php
r3358435 r3380030 4 4 * Plugin URI: https://wordpress.org/plugins/taskbuilder/ 5 5 * Description: Wordpress Project Management & Task Management plugin. Easy to keep track of projects & tasks! 6 * Version: 4.0. 86 * Version: 4.0.9 7 7 * Author: Taskbuilder Team 8 8 * Author URI: https://taskbuilder.net/ 9 9 * Requires at least: 4.4 10 * Tested up to: 6.8. 210 * Tested up to: 6.8.3 11 11 * Text Domain: taskbuilder 12 12 * Domain Path: /lang … … 20 20 21 21 final class WP_Taskbuilder { 22 public $version = '4.0. 8';22 public $version = '4.0.9'; 23 23 public function __construct() { 24 24 // define global constants -
taskbuilder/trunk/includes/admin/projects/open_project/wppm_set_change_project_details.php
r3210469 r3380030 29 29 $wppmfunction->change_project_end_date( $project_id, $project_end_date); 30 30 } 31 if( $project_category && $project_category!= $project_data['cat_id']){31 if( $project_category != $project_data['cat_id']){ 32 32 $wppmfunction->change_category( $project_id, $project_category); 33 33 $change_category_value = array('prev_cat'=>$project_data['cat_id'],'new_cat'=>$project_category); … … 41 41 } 42 42 43 if( $project_description && $project_description!= $project_data['description']){43 if( $project_description != $project_data['description']){ 44 44 $wppmfunction->change_project_description( $project_id, $project_description); 45 45 } -
taskbuilder/trunk/includes/admin/tasks/open_task/wppm_set_change_task_details.php
r3210469 r3380030 35 35 } 36 36 37 if( $task_priority && $task_priority!= $task_data['priority']){37 if( $task_priority != $task_data['priority']){ 38 38 $wppmfunction->change_priority( $task_id, $task_priority); 39 39 $change_priority_value = array('prev_prio'=>"$task_data[priority]",'new_prio'=>"$task_priority"); … … 46 46 } 47 47 48 if( $task_description &&$task_description != $task_data['description']){48 if( $task_description != $task_data['description']){ 49 49 $wppmfunction->change_description( $task_id, $task_description); 50 50 } -
taskbuilder/trunk/includes/admin/tasks/open_task/wppm_set_clone_task.php
r3210469 r3380030 18 18 exit; 19 19 } 20 $wppm_default_duplicate_project_email_notification = get_option('wppm_default_duplicate_project_email_notification'); 20 21 $checklists = $wppmfunction->get_checklist($prev_task_id); 21 22 $task_project = isset($project_id) ? $project_id : $task['project']; … … 39 40 ); 40 41 $task_id = $wppmfunction->create_task($values); 41 do_action('wppm_after_task_created', $task_id); 42 if(!isset($project_id) || $wppm_default_duplicate_project_email_notification==1){ 43 do_action('wppm_after_task_created', $task_id); 44 } 42 45 if(!empty($checklists)){ 43 46 foreach($checklists as $checklist){ -
taskbuilder/trunk/readme.txt
r3358435 r3380030 4 4 Tags: project,project management,task management,task manager,Kanban 5 5 Requires at least: 4.4 6 Tested up to: 6.8. 27 Stable tag: 4.0. 86 Tested up to: 6.8.3 7 Stable tag: 4.0.9 8 8 License: GPL v3 9 9 … … 73 73 * German(formal) 74 74 * Turkey 75 * Portuguese (Brazil) 75 76 If you are a translator, you can get free access to all premium add-ons for a year in exchange for translating them into your language if it is not available already. We will renew the Premium subscription next year if you continue contributing to the translation. If interested, don't hesitate to contact us via our [support page](https://taskbuilder.net/support/). 76 77 … … 117 118 118 119 == Changelog == 120 = V 4.0.9(October 17,2025) = 121 * New: Portuguese (Brazil) Translation added. 122 * Fix: If edit project description and remain empty, it does not save empty value. 123 * Fix: If edit category and remain it empty, it does not save empty value. 124 * Fix: If edit task description and remain empty, it does not save empty value. 125 * Fix: If edit task priority and emain it empty, it does not save empty value. 126 * New: Duplicate project email notification setting- 127 1. Send single email for task creation(which mention all tasks), after duplicate project. 128 2. Send each email for task, after duplicate project. 129 119 130 = V 4.0.8(September 9,2025) = 120 131 * Fix: Change Visibility bug fix. -
taskbuilder/trunk/taskbuilder.php
r3358435 r3380030 4 4 * Plugin URI: https://wordpress.org/plugins/taskbuilder/ 5 5 * Description: Wordpress Project Management & Task Management plugin. Easy to keep track of projects & tasks! 6 * Version: 4.0. 86 * Version: 4.0.9 7 7 * Author: Taskbuilder Team 8 8 * Author URI: https://taskbuilder.net/ 9 9 * Requires at least: 4.4 10 * Tested up to: 6.8. 210 * Tested up to: 6.8.3 11 11 * Text Domain: taskbuilder 12 12 * Domain Path: /lang … … 20 20 21 21 final class WP_Taskbuilder { 22 public $version = '4.0. 8';22 public $version = '4.0.9'; 23 23 public function __construct() { 24 24 // define global constants
Note: See TracChangeset
for help on using the changeset viewer.