Changeset 3409684
- Timestamp:
- 12/03/2025 02:47:53 PM (3 months ago)
- Location:
- taskbuilder
- Files:
-
- 6 edited
- 1 copied
-
tags/5.0.1 (copied) (copied from taskbuilder/trunk)
-
tags/5.0.1/includes/admin/tasks/open_task/wppm_open_task.php (modified) (2 diffs)
-
tags/5.0.1/readme.txt (modified) (3 diffs)
-
tags/5.0.1/taskbuilder.php (modified) (2 diffs)
-
trunk/includes/admin/tasks/open_task/wppm_open_task.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/taskbuilder.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
taskbuilder/tags/5.0.1/includes/admin/tasks/open_task/wppm_open_task.php
r3399768 r3409684 681 681 </style> 682 682 <script> 683 const button = document.getElementById('wppm_print_task_btn');684 const box = document.getElementById('wppmprint_menu');685 686 // Show box on button click687 button.addEventListener('click', (e) => {688 e.stopPropagation(); // prevent document click from firing immediately689 box.style.display = 'flex';690 });691 692 // Prevent hiding when clicking inside box693 box.addEventListener('click', (e) => {694 e.stopPropagation();695 });696 697 // Hide when clicking outside698 document.addEventListener('click', () => {699 box.style.display = 'none';700 });701 683 jQuery( document ).ready( function( jQuery ) {<?php 702 684 if ((($current_user->ID && $current_user->has_cap('manage_options')) || $wppmfunction->has_permission('change_task_details',$task->id))){ ?> … … 801 783 <?php } ?> 802 784 <?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 }); 803 803 }); 804 804 -
taskbuilder/tags/5.0.1/readme.txt
r3399768 r3409684 4 4 Tags: project,project management,task management,task manager,Kanban 5 5 Requires at least: 4.4 6 Tested up to: 6. 8.37 Stable tag: 5.0. 06 Tested up to: 6.9 7 Stable tag: 5.0.1 8 8 License: GPL v3 9 9 … … 22 22 [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. 23 23 [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. 24 25 25 26 ` … … 118 119 119 120 == 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 120 125 = V 5.0.0(November 20,2025) = 121 126 * Fix: XSS Vulnerability. -
taskbuilder/tags/5.0.1/taskbuilder.php
r3399768 r3409684 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: 5.0. 06 * Version: 5.0.1 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.310 * Tested up to: 6.9 11 11 * Text Domain: taskbuilder 12 12 * Domain Path: /lang … … 20 20 21 21 final class WP_Taskbuilder { 22 public $version = '5.0. 0';22 public $version = '5.0.1'; 23 23 public function __construct() { 24 24 // define global constants -
taskbuilder/trunk/includes/admin/tasks/open_task/wppm_open_task.php
r3399768 r3409684 681 681 </style> 682 682 <script> 683 const button = document.getElementById('wppm_print_task_btn');684 const box = document.getElementById('wppmprint_menu');685 686 // Show box on button click687 button.addEventListener('click', (e) => {688 e.stopPropagation(); // prevent document click from firing immediately689 box.style.display = 'flex';690 });691 692 // Prevent hiding when clicking inside box693 box.addEventListener('click', (e) => {694 e.stopPropagation();695 });696 697 // Hide when clicking outside698 document.addEventListener('click', () => {699 box.style.display = 'none';700 });701 683 jQuery( document ).ready( function( jQuery ) {<?php 702 684 if ((($current_user->ID && $current_user->has_cap('manage_options')) || $wppmfunction->has_permission('change_task_details',$task->id))){ ?> … … 801 783 <?php } ?> 802 784 <?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 }); 803 803 }); 804 804 -
taskbuilder/trunk/readme.txt
r3399768 r3409684 4 4 Tags: project,project management,task management,task manager,Kanban 5 5 Requires at least: 4.4 6 Tested up to: 6. 8.37 Stable tag: 5.0. 06 Tested up to: 6.9 7 Stable tag: 5.0.1 8 8 License: GPL v3 9 9 … … 22 22 [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. 23 23 [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. 24 25 25 26 ` … … 118 119 119 120 == 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 120 125 = V 5.0.0(November 20,2025) = 121 126 * Fix: XSS Vulnerability. -
taskbuilder/trunk/taskbuilder.php
r3399768 r3409684 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: 5.0. 06 * Version: 5.0.1 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.310 * Tested up to: 6.9 11 11 * Text Domain: taskbuilder 12 12 * Domain Path: /lang … … 20 20 21 21 final class WP_Taskbuilder { 22 public $version = '5.0. 0';22 public $version = '5.0.1'; 23 23 public function __construct() { 24 24 // define global constants
Note: See TracChangeset
for help on using the changeset viewer.