Plugin Directory

Changeset 3380030


Ignore:
Timestamp:
10/17/2025 10:50:25 AM (5 months ago)
Author:
taskbuilder
Message:

version change

Location:
taskbuilder
Files:
2 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • taskbuilder/tags/4.0.9/includes/admin/projects/open_project/wppm_set_change_project_details.php

    r3210469 r3380030  
    2929    $wppmfunction->change_project_end_date( $project_id, $project_end_date);
    3030}
    31 if( $project_category && $project_category != $project_data['cat_id']){
     31if( $project_category != $project_data['cat_id']){
    3232    $wppmfunction->change_category( $project_id, $project_category);
    3333    $change_category_value = array('prev_cat'=>$project_data['cat_id'],'new_cat'=>$project_category);
     
    4141}
    4242
    43 if( $project_description && $project_description != $project_data['description']){
     43if( $project_description != $project_data['description']){
    4444    $wppmfunction->change_project_description( $project_id, $project_description);
    4545}
  • taskbuilder/tags/4.0.9/includes/admin/tasks/open_task/wppm_set_change_task_details.php

    r3210469 r3380030  
    3535}
    3636
    37 if( $task_priority && $task_priority != $task_data['priority']){
     37if( $task_priority != $task_data['priority']){
    3838    $wppmfunction->change_priority( $task_id, $task_priority);
    3939    $change_priority_value = array('prev_prio'=>"$task_data[priority]",'new_prio'=>"$task_priority");
     
    4646}
    4747
    48 if( $task_description && $task_description != $task_data['description']){
     48if( $task_description != $task_data['description']){
    4949    $wppmfunction->change_description( $task_id, $task_description);
    5050}
  • taskbuilder/tags/4.0.9/includes/admin/tasks/open_task/wppm_set_clone_task.php

    r3210469 r3380030  
    1818 exit;
    1919}
     20$wppm_default_duplicate_project_email_notification = get_option('wppm_default_duplicate_project_email_notification');
    2021$checklists = $wppmfunction->get_checklist($prev_task_id);
    2122$task_project = isset($project_id) ? $project_id : $task['project'];
     
    3940);
    4041$task_id = $wppmfunction->create_task($values);
    41 do_action('wppm_after_task_created', $task_id);
     42if(!isset($project_id) || $wppm_default_duplicate_project_email_notification==1){
     43    do_action('wppm_after_task_created', $task_id);
     44}
    4245if(!empty($checklists)){
    4346    foreach($checklists as $checklist){
  • taskbuilder/tags/4.0.9/readme.txt

    r3358435 r3380030  
    44Tags: project,project management,task management,task manager,Kanban
    55Requires at least: 4.4
    6 Tested up to: 6.8.2
    7 Stable tag: 4.0.8
     6Tested up to: 6.8.3
     7Stable tag: 4.0.9
    88License: GPL v3
    99
     
    7373* German(formal)
    7474* Turkey
     75* Portuguese (Brazil)
    7576If 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/).
    7677
     
    117118
    118119== 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
    119130= V 4.0.8(September 9,2025) =
    120131* Fix: Change Visibility bug fix.
  • taskbuilder/tags/4.0.9/taskbuilder.php

    r3358435 r3380030  
    44 * Plugin URI: https://wordpress.org/plugins/taskbuilder/
    55 * Description: Wordpress Project Management & Task Management plugin. Easy to keep track of projects & tasks!
    6  * Version: 4.0.8
     6 * Version: 4.0.9
    77 * Author: Taskbuilder Team
    88 * Author URI: https://taskbuilder.net/
    99 * Requires at least: 4.4
    10  * Tested up to: 6.8.2
     10 * Tested up to: 6.8.3
    1111 * Text Domain: taskbuilder
    1212 * Domain Path: /lang
     
    2020 
    2121  final class WP_Taskbuilder {
    22     public $version    = '4.0.8';
     22    public $version    = '4.0.9';
    2323    public function __construct() {
    2424      // define global constants
  • taskbuilder/trunk/includes/admin/projects/open_project/wppm_set_change_project_details.php

    r3210469 r3380030  
    2929    $wppmfunction->change_project_end_date( $project_id, $project_end_date);
    3030}
    31 if( $project_category && $project_category != $project_data['cat_id']){
     31if( $project_category != $project_data['cat_id']){
    3232    $wppmfunction->change_category( $project_id, $project_category);
    3333    $change_category_value = array('prev_cat'=>$project_data['cat_id'],'new_cat'=>$project_category);
     
    4141}
    4242
    43 if( $project_description && $project_description != $project_data['description']){
     43if( $project_description != $project_data['description']){
    4444    $wppmfunction->change_project_description( $project_id, $project_description);
    4545}
  • taskbuilder/trunk/includes/admin/tasks/open_task/wppm_set_change_task_details.php

    r3210469 r3380030  
    3535}
    3636
    37 if( $task_priority && $task_priority != $task_data['priority']){
     37if( $task_priority != $task_data['priority']){
    3838    $wppmfunction->change_priority( $task_id, $task_priority);
    3939    $change_priority_value = array('prev_prio'=>"$task_data[priority]",'new_prio'=>"$task_priority");
     
    4646}
    4747
    48 if( $task_description && $task_description != $task_data['description']){
     48if( $task_description != $task_data['description']){
    4949    $wppmfunction->change_description( $task_id, $task_description);
    5050}
  • taskbuilder/trunk/includes/admin/tasks/open_task/wppm_set_clone_task.php

    r3210469 r3380030  
    1818 exit;
    1919}
     20$wppm_default_duplicate_project_email_notification = get_option('wppm_default_duplicate_project_email_notification');
    2021$checklists = $wppmfunction->get_checklist($prev_task_id);
    2122$task_project = isset($project_id) ? $project_id : $task['project'];
     
    3940);
    4041$task_id = $wppmfunction->create_task($values);
    41 do_action('wppm_after_task_created', $task_id);
     42if(!isset($project_id) || $wppm_default_duplicate_project_email_notification==1){
     43    do_action('wppm_after_task_created', $task_id);
     44}
    4245if(!empty($checklists)){
    4346    foreach($checklists as $checklist){
  • taskbuilder/trunk/readme.txt

    r3358435 r3380030  
    44Tags: project,project management,task management,task manager,Kanban
    55Requires at least: 4.4
    6 Tested up to: 6.8.2
    7 Stable tag: 4.0.8
     6Tested up to: 6.8.3
     7Stable tag: 4.0.9
    88License: GPL v3
    99
     
    7373* German(formal)
    7474* Turkey
     75* Portuguese (Brazil)
    7576If 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/).
    7677
     
    117118
    118119== 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
    119130= V 4.0.8(September 9,2025) =
    120131* Fix: Change Visibility bug fix.
  • taskbuilder/trunk/taskbuilder.php

    r3358435 r3380030  
    44 * Plugin URI: https://wordpress.org/plugins/taskbuilder/
    55 * Description: Wordpress Project Management & Task Management plugin. Easy to keep track of projects & tasks!
    6  * Version: 4.0.8
     6 * Version: 4.0.9
    77 * Author: Taskbuilder Team
    88 * Author URI: https://taskbuilder.net/
    99 * Requires at least: 4.4
    10  * Tested up to: 6.8.2
     10 * Tested up to: 6.8.3
    1111 * Text Domain: taskbuilder
    1212 * Domain Path: /lang
     
    2020 
    2121  final class WP_Taskbuilder {
    22     public $version    = '4.0.8';
     22    public $version    = '4.0.9';
    2323    public function __construct() {
    2424      // define global constants
Note: See TracChangeset for help on using the changeset viewer.