Plugin Directory

Changeset 3290224


Ignore:
Timestamp:
05/09/2025 04:56:05 AM (10 months ago)
Author:
progressplanner
Message:

Update to version 1.4.1 from GitHub

Location:
progress-planner
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • progress-planner/tags/1.4.1/CHANGELOG.md

    r3289779 r3290224  
     1= 1.4.1 =
     2
     3Bugs we fixed:
     4
     5* Fixed a conflict with the premium version of Yoast SEO.
     6
    17= 1.4.0 =
    28
  • progress-planner/tags/1.4.1/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php

    r3289779 r3290224  
    1616     * Providers.
    1717     *
    18      * @var array
     18     * @var (\Progress_Planner\Suggested_Tasks\Providers\Integrations\Yoast\Yoast_Provider|\Progress_Planner\Suggested_Tasks\Providers\Tasks)[]
    1919     */
    2020    protected $providers = [];
     
    4949            // Add Ravi icon if the task is pending or is completed.
    5050            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();
    5253
    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                    }
    5557                }
    5658            }
  • progress-planner/tags/1.4.1/progress-planner.php

    r3289779 r3290224  
    1010 * Requires at least: 6.3
    1111 * Requires PHP:      7.4
    12  * Version:           1.4.0
     12 * Version:           1.4.1
    1313 * Author:            Team Emilia Projects
    1414 * Author URI:        https://prpl.fyi/about
  • progress-planner/tags/1.4.1/readme.txt

    r3289779 r3290224  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPL3+
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    110110
    111111== Changelog ==
     112
     113= 1.4.1 =
     114
     115Bugs we fixed:
     116
     117* Fixed a conflict with the premium version of Yoast SEO.
    112118
    113119= 1.4.0 =
  • progress-planner/trunk/CHANGELOG.md

    r3289779 r3290224  
     1= 1.4.1 =
     2
     3Bugs we fixed:
     4
     5* Fixed a conflict with the premium version of Yoast SEO.
     6
    17= 1.4.0 =
    28
  • progress-planner/trunk/classes/suggested-tasks/providers/integrations/yoast/class-add-yoast-providers.php

    r3289779 r3290224  
    1616     * Providers.
    1717     *
    18      * @var array
     18     * @var (\Progress_Planner\Suggested_Tasks\Providers\Integrations\Yoast\Yoast_Provider|\Progress_Planner\Suggested_Tasks\Providers\Tasks)[]
    1919     */
    2020    protected $providers = [];
     
    4949            // Add Ravi icon if the task is pending or is completed.
    5050            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();
    5253
    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                    }
    5557                }
    5658            }
  • progress-planner/trunk/progress-planner.php

    r3289779 r3290224  
    1010 * Requires at least: 6.3
    1111 * Requires PHP:      7.4
    12  * Version:           1.4.0
     12 * Version:           1.4.1
    1313 * Author:            Team Emilia Projects
    1414 * Author URI:        https://prpl.fyi/about
  • progress-planner/trunk/readme.txt

    r3289779 r3290224  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPL3+
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    110110
    111111== Changelog ==
     112
     113= 1.4.1 =
     114
     115Bugs we fixed:
     116
     117* Fixed a conflict with the premium version of Yoast SEO.
    112118
    113119= 1.4.0 =
Note: See TracChangeset for help on using the changeset viewer.