Changeset 3290224
- Timestamp:
- 05/09/2025 04:56:05 AM (10 months ago)
- Location:
- progress-planner
- Files:
-
- 8 edited
- 1 copied
-
tags/1.4.1 (copied) (copied from progress-planner/trunk)
-
tags/1.4.1/CHANGELOG.md (modified) (1 diff)
-
tags/1.4.1/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php (modified) (2 diffs)
-
tags/1.4.1/progress-planner.php (modified) (1 diff)
-
tags/1.4.1/readme.txt (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php (modified) (2 diffs)
-
trunk/progress-planner.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
progress-planner/tags/1.4.1/CHANGELOG.md
r3289779 r3290224 1 = 1.4.1 = 2 3 Bugs we fixed: 4 5 * Fixed a conflict with the premium version of Yoast SEO. 6 1 7 = 1.4.0 = 2 8 -
progress-planner/tags/1.4.1/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php
r3289779 r3290224 16 16 * Providers. 17 17 * 18 * @var array18 * @var (\Progress_Planner\Suggested_Tasks\Providers\Integrations\Yoast\Yoast_Provider|\Progress_Planner\Suggested_Tasks\Providers\Tasks)[] 19 19 */ 20 20 protected $providers = []; … … 49 49 // Add Ravi icon if the task is pending or is completed. 50 50 if ( $provider->is_task_relevant() || \progress_planner()->get_suggested_tasks()->was_task_completed( $provider->get_task_id() ) ) { 51 $focus_task = $provider->get_focus_tasks(); 51 if ( method_exists( $provider, 'get_focus_tasks' ) ) { 52 $focus_task = $provider->get_focus_tasks(); 52 53 53 if ( $focus_task ) { 54 $focus_tasks = array_merge( $focus_tasks, $focus_task ); 54 if ( $focus_task ) { 55 $focus_tasks = array_merge( $focus_tasks, $focus_task ); 56 } 55 57 } 56 58 } -
progress-planner/tags/1.4.1/progress-planner.php
r3289779 r3290224 10 10 * Requires at least: 6.3 11 11 * Requires PHP: 7.4 12 * Version: 1.4. 012 * Version: 1.4.1 13 13 * Author: Team Emilia Projects 14 14 * Author URI: https://prpl.fyi/about -
progress-planner/tags/1.4.1/readme.txt
r3289779 r3290224 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPL3+ 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 110 110 111 111 == Changelog == 112 113 = 1.4.1 = 114 115 Bugs we fixed: 116 117 * Fixed a conflict with the premium version of Yoast SEO. 112 118 113 119 = 1.4.0 = -
progress-planner/trunk/CHANGELOG.md
r3289779 r3290224 1 = 1.4.1 = 2 3 Bugs we fixed: 4 5 * Fixed a conflict with the premium version of Yoast SEO. 6 1 7 = 1.4.0 = 2 8 -
progress-planner/trunk/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php
r3289779 r3290224 16 16 * Providers. 17 17 * 18 * @var array18 * @var (\Progress_Planner\Suggested_Tasks\Providers\Integrations\Yoast\Yoast_Provider|\Progress_Planner\Suggested_Tasks\Providers\Tasks)[] 19 19 */ 20 20 protected $providers = []; … … 49 49 // Add Ravi icon if the task is pending or is completed. 50 50 if ( $provider->is_task_relevant() || \progress_planner()->get_suggested_tasks()->was_task_completed( $provider->get_task_id() ) ) { 51 $focus_task = $provider->get_focus_tasks(); 51 if ( method_exists( $provider, 'get_focus_tasks' ) ) { 52 $focus_task = $provider->get_focus_tasks(); 52 53 53 if ( $focus_task ) { 54 $focus_tasks = array_merge( $focus_tasks, $focus_task ); 54 if ( $focus_task ) { 55 $focus_tasks = array_merge( $focus_tasks, $focus_task ); 56 } 55 57 } 56 58 } -
progress-planner/trunk/progress-planner.php
r3289779 r3290224 10 10 * Requires at least: 6.3 11 11 * Requires PHP: 7.4 12 * Version: 1.4. 012 * Version: 1.4.1 13 13 * Author: Team Emilia Projects 14 14 * Author URI: https://prpl.fyi/about -
progress-planner/trunk/readme.txt
r3289779 r3290224 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPL3+ 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 110 110 111 111 == Changelog == 112 113 = 1.4.1 = 114 115 Bugs we fixed: 116 117 * Fixed a conflict with the premium version of Yoast SEO. 112 118 113 119 = 1.4.0 =
Note: See TracChangeset
for help on using the changeset viewer.