Plugin Directory

Changeset 3409684


Ignore:
Timestamp:
12/03/2025 02:47:53 PM (3 months ago)
Author:
taskbuilder
Message:

version change

Location:
taskbuilder
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • taskbuilder/tags/5.0.1/includes/admin/tasks/open_task/wppm_open_task.php

    r3399768 r3409684  
    681681</style>
    682682<script>
    683   const button = document.getElementById('wppm_print_task_btn');
    684   const box = document.getElementById('wppmprint_menu');
    685 
    686   // Show box on button click
    687   button.addEventListener('click', (e) => {
    688     e.stopPropagation(); // prevent document click from firing immediately
    689     box.style.display = 'flex';
    690   });
    691 
    692   // Prevent hiding when clicking inside box
    693   box.addEventListener('click', (e) => {
    694     e.stopPropagation();
    695   });
    696 
    697   // Hide when clicking outside
    698   document.addEventListener('click', () => {
    699     box.style.display = 'none';
    700   });
    701683jQuery( document ).ready( function( jQuery ) {<?php
    702684  if ((($current_user->ID && $current_user->has_cap('manage_options')) || $wppmfunction->has_permission('change_task_details',$task->id))){ ?>
     
    801783      <?php } ?>
    802784    <?php } ?>
     785    const button = document.getElementById('wppm_print_task_btn');
     786    const box = document.getElementById('wppmprint_menu');
     787
     788    // Show box on button click
     789    button.addEventListener('click', (e) => {
     790      e.stopPropagation(); // prevent document click from firing immediately
     791      box.style.display = 'flex';
     792    });
     793
     794    // Prevent hiding when clicking inside box
     795    box.addEventListener('click', (e) => {
     796      e.stopPropagation();
     797    });
     798
     799    // Hide when clicking outside
     800    document.addEventListener('click', () => {
     801      box.style.display = 'none';
     802    });
    803803});
    804804
  • taskbuilder/tags/5.0.1/readme.txt

    r3399768 r3409684  
    44Tags: project,project management,task management,task manager,Kanban
    55Requires at least: 4.4
    6 Tested up to: 6.8.3
    7 Stable tag: 5.0.0
     6Tested up to: 6.9
     7Stable tag: 5.0.1
    88License: GPL v3
    99
     
    2222[wppm_tasks project ="insert project name here"]- If you want to display only selected project's task on page, you can add attribute as project name to tasks shortcode. It will only display tasks of selected project.
    2323[wppm_public_projects_tasks] = Display public project's tasks from frontend.
     24[wppm_gantt_chart project ="insert project name here"]- You can access Gantt Chart from frontend. You have to give project name as parameter in shortcode.
    2425
    2526`
     
    118119
    119120== Changelog ==
     121= V 5.0.1(December 3,2025) =
     122* Fix: Checklist progress bar not updated without page refresh.
     123* New (Pro feature): Gantt Chart shortcode. Gantt chart is accesible from frontend using shortcode [wppm_gantt_chart project ="insert project name here"].
     124
    120125= V 5.0.0(November 20,2025) =
    121126* Fix: XSS Vulnerability.
  • taskbuilder/tags/5.0.1/taskbuilder.php

    r3399768 r3409684  
    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: 5.0.0
     6 * Version: 5.0.1
    77 * Author: Taskbuilder Team
    88 * Author URI: https://taskbuilder.net/
    99 * Requires at least: 4.4
    10  * Tested up to: 6.8.3
     10 * Tested up to: 6.9
    1111 * Text Domain: taskbuilder
    1212 * Domain Path: /lang
     
    2020 
    2121  final class WP_Taskbuilder {
    22     public $version    = '5.0.0';
     22    public $version    = '5.0.1';
    2323    public function __construct() {
    2424      // define global constants
  • taskbuilder/trunk/includes/admin/tasks/open_task/wppm_open_task.php

    r3399768 r3409684  
    681681</style>
    682682<script>
    683   const button = document.getElementById('wppm_print_task_btn');
    684   const box = document.getElementById('wppmprint_menu');
    685 
    686   // Show box on button click
    687   button.addEventListener('click', (e) => {
    688     e.stopPropagation(); // prevent document click from firing immediately
    689     box.style.display = 'flex';
    690   });
    691 
    692   // Prevent hiding when clicking inside box
    693   box.addEventListener('click', (e) => {
    694     e.stopPropagation();
    695   });
    696 
    697   // Hide when clicking outside
    698   document.addEventListener('click', () => {
    699     box.style.display = 'none';
    700   });
    701683jQuery( document ).ready( function( jQuery ) {<?php
    702684  if ((($current_user->ID && $current_user->has_cap('manage_options')) || $wppmfunction->has_permission('change_task_details',$task->id))){ ?>
     
    801783      <?php } ?>
    802784    <?php } ?>
     785    const button = document.getElementById('wppm_print_task_btn');
     786    const box = document.getElementById('wppmprint_menu');
     787
     788    // Show box on button click
     789    button.addEventListener('click', (e) => {
     790      e.stopPropagation(); // prevent document click from firing immediately
     791      box.style.display = 'flex';
     792    });
     793
     794    // Prevent hiding when clicking inside box
     795    box.addEventListener('click', (e) => {
     796      e.stopPropagation();
     797    });
     798
     799    // Hide when clicking outside
     800    document.addEventListener('click', () => {
     801      box.style.display = 'none';
     802    });
    803803});
    804804
  • taskbuilder/trunk/readme.txt

    r3399768 r3409684  
    44Tags: project,project management,task management,task manager,Kanban
    55Requires at least: 4.4
    6 Tested up to: 6.8.3
    7 Stable tag: 5.0.0
     6Tested up to: 6.9
     7Stable tag: 5.0.1
    88License: GPL v3
    99
     
    2222[wppm_tasks project ="insert project name here"]- If you want to display only selected project's task on page, you can add attribute as project name to tasks shortcode. It will only display tasks of selected project.
    2323[wppm_public_projects_tasks] = Display public project's tasks from frontend.
     24[wppm_gantt_chart project ="insert project name here"]- You can access Gantt Chart from frontend. You have to give project name as parameter in shortcode.
    2425
    2526`
     
    118119
    119120== Changelog ==
     121= V 5.0.1(December 3,2025) =
     122* Fix: Checklist progress bar not updated without page refresh.
     123* New (Pro feature): Gantt Chart shortcode. Gantt chart is accesible from frontend using shortcode [wppm_gantt_chart project ="insert project name here"].
     124
    120125= V 5.0.0(November 20,2025) =
    121126* Fix: XSS Vulnerability.
  • taskbuilder/trunk/taskbuilder.php

    r3399768 r3409684  
    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: 5.0.0
     6 * Version: 5.0.1
    77 * Author: Taskbuilder Team
    88 * Author URI: https://taskbuilder.net/
    99 * Requires at least: 4.4
    10  * Tested up to: 6.8.3
     10 * Tested up to: 6.9
    1111 * Text Domain: taskbuilder
    1212 * Domain Path: /lang
     
    2020 
    2121  final class WP_Taskbuilder {
    22     public $version    = '5.0.0';
     22    public $version    = '5.0.1';
    2323    public function __construct() {
    2424      // define global constants
Note: See TracChangeset for help on using the changeset viewer.