Plugin Directory

Changeset 3143078


Ignore:
Timestamp:
08/28/2024 04:44:46 PM (19 months ago)
Author:
widgetlogics
Message:

update to v6.02

Location:
widget-logic
Files:
9 edited
11 copied

Legend:

Unmodified
Added
Removed
  • widget-logic/tags/6.02/block/index.php

    r3131425 r3143078  
    2626            esc_url(plugins_url('/css/widget-logic.css', __FILE__)),
    2727            array(),
    28             filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css'),
     28            filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css')
    2929        );
    3030    }
  • widget-logic/tags/6.02/block_widget/index.php

    r3131425 r3143078  
    2020        esc_url(plugins_url('/css/widget.css', __FILE__)),
    2121        array(),
    22         filemtime(plugin_dir_path(__FILE__) . '/css/widget.css'),
     22        filemtime(plugin_dir_path(__FILE__) . '/css/widget.css')
    2323    );
    2424}
  • widget-logic/tags/6.02/readme.txt

    r3135406 r3143078  
    44Requires at least: 3.0
    55Tested up to: 6.6
    6 Stable tag: 6.0.1
     6Stable tag: 6.02
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    1919
    2020BIG UPDATE:
    21 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is jus as easy as before but also in gutenberg view.
     21
     22* Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is just as easy as before but also in gutenberg view.
    2223
    2324* Pre-installed widgets let you add special widget with one click of the mouse. First pre-installed widget is Live Match that let you add widget of one random live football game with real time score updates (teams logos, livescore, minute of the match, tournament name). And more interesting widgets to come!
     
    124125
    125126== Changelog ==
     127
     128= 6.02 =
     129
     130* fixed bug for php7.2
     131
     132= 6.0.1 =
     133
     134* Bug fixes
    126135
    127136= 6.0.0 =
  • widget-logic/tags/6.02/widget.php

    r3131425 r3143078  
    2323    public function widget($args, $instance) {
    2424        $defaults = array(
    25             'title'       => esc_html__('Live Match', 'widget-logic'),
     25            'title'       => esc_html__('Live Match', 'widget-logic')
    2626        );
    2727        $instance = wp_parse_args( (array) $instance, $defaults );
     
    4848    public function form($instance) {
    4949        $defaults = array(
    50             'title' => esc_html__( 'Live Match', 'widget-logic' ),
     50            'title' => esc_html__( 'Live Match', 'widget-logic' )
    5151        );
    5252        $instance = wp_parse_args( (array) $instance, $defaults );
  • widget-logic/tags/6.02/widget/admin.php

    r3135406 r3143078  
    176176                                    'after_setup_theme' => __('after theme loads', 'widget-logic'),
    177177                                    'wp_loaded'         => __('when all PHP loaded', 'widget-logic'),
    178                                     'wp_head'           => __('during page header', 'widget-logic'),
     178                                    'wp_head'           => __('during page header', 'widget-logic')
    179179                                );
    180180                                foreach ($wl_load_points as $action => $action_desc) {
  • widget-logic/tags/6.02/widget_cfg.php

    r3131425 r3143078  
    2727return array(
    2828    'ver' => widget_logic_getServiceVersion(),
    29     'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org'),
     29    'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org')
    3030);
  • widget-logic/tags/6.02/widget_logic.php

    r3135406 r3143078  
    55Plugin Name: Widget Logic
    66Description: Control widgets with WP's conditional tags is_home etc
    7 Version:     6.0.1
     7Version:     6.02
    88Author:      Widget Logic
     9Author URI:  https://widgetlogic.org
    910Text Domain: widget-logic
    1011License:     GPLv2 or later
  • widget-logic/trunk/block/index.php

    r3131425 r3143078  
    2626            esc_url(plugins_url('/css/widget-logic.css', __FILE__)),
    2727            array(),
    28             filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css'),
     28            filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css')
    2929        );
    3030    }
  • widget-logic/trunk/block_widget/index.php

    r3131425 r3143078  
    2020        esc_url(plugins_url('/css/widget.css', __FILE__)),
    2121        array(),
    22         filemtime(plugin_dir_path(__FILE__) . '/css/widget.css'),
     22        filemtime(plugin_dir_path(__FILE__) . '/css/widget.css')
    2323    );
    2424}
  • widget-logic/trunk/readme.txt

    r3135406 r3143078  
    44Requires at least: 3.0
    55Tested up to: 6.6
    6 Stable tag: 6.0.1
     6Stable tag: 6.02
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    1919
    2020BIG UPDATE:
    21 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is jus as easy as before but also in gutenberg view.
     21
     22* Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is just as easy as before but also in gutenberg view.
    2223
    2324* Pre-installed widgets let you add special widget with one click of the mouse. First pre-installed widget is Live Match that let you add widget of one random live football game with real time score updates (teams logos, livescore, minute of the match, tournament name). And more interesting widgets to come!
     
    124125
    125126== Changelog ==
     127
     128= 6.02 =
     129
     130* fixed bug for php7.2
     131
     132= 6.0.1 =
     133
     134* Bug fixes
    126135
    127136= 6.0.0 =
  • widget-logic/trunk/widget.php

    r3131425 r3143078  
    2323    public function widget($args, $instance) {
    2424        $defaults = array(
    25             'title'       => esc_html__('Live Match', 'widget-logic'),
     25            'title'       => esc_html__('Live Match', 'widget-logic')
    2626        );
    2727        $instance = wp_parse_args( (array) $instance, $defaults );
     
    4848    public function form($instance) {
    4949        $defaults = array(
    50             'title' => esc_html__( 'Live Match', 'widget-logic' ),
     50            'title' => esc_html__( 'Live Match', 'widget-logic' )
    5151        );
    5252        $instance = wp_parse_args( (array) $instance, $defaults );
  • widget-logic/trunk/widget/admin.php

    r3135406 r3143078  
    176176                                    'after_setup_theme' => __('after theme loads', 'widget-logic'),
    177177                                    'wp_loaded'         => __('when all PHP loaded', 'widget-logic'),
    178                                     'wp_head'           => __('during page header', 'widget-logic'),
     178                                    'wp_head'           => __('during page header', 'widget-logic')
    179179                                );
    180180                                foreach ($wl_load_points as $action => $action_desc) {
  • widget-logic/trunk/widget_cfg.php

    r3131425 r3143078  
    2727return array(
    2828    'ver' => widget_logic_getServiceVersion(),
    29     'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org'),
     29    'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org')
    3030);
  • widget-logic/trunk/widget_logic.php

    r3135406 r3143078  
    55Plugin Name: Widget Logic
    66Description: Control widgets with WP's conditional tags is_home etc
    7 Version:     6.0.1
     7Version:     6.02
    88Author:      Widget Logic
     9Author URI:  https://widgetlogic.org
    910Text Domain: widget-logic
    1011License:     GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.