Plugin Directory

Changeset 2511604


Ignore:
Timestamp:
04/08/2021 05:29:47 PM (5 years ago)
Author:
pinkuchanda
Message:

Releasing Version 1.0.6

Location:
bloglentor-for-elementor
Files:
94 added
8 edited

Legend:

Unmodified
Added
Removed
  • bloglentor-for-elementor/trunk/README.md

    r2457871 r2511604  
    44Requires at least: 4.8
    55Requires PHP: 5.4 or greater
    6 Tested up to: 5.6
     6Tested up to: 5.7
    77Stable tag: trunk
    88License: GPLv2 or later
     
    132132== Changelog ==
    133133
     134= 1.0.6 - 08 April 2021 =
     135- Fixed - Warning for slick JS in Elementor 3.x
     136
    134137= 1.0.5 - 17 January 2021 =
    135 - Fixed Date Format issue
     138- Fixed - Date Format issue
    136139
    137140= 1.0.4 - 08 January 2021 =
    138 - Fixed Skin Hero2, Hero3 Pagination Issue
     141- Fixed - Skin Hero2, Hero3 Pagination Issue
    139142
    140143= 1.0.3 - 28 December 2020 =
    141 - Added Template Header Settings Option
    142 - Added Template Header Style Option
    143 - Added Order by - Popular Posts By Views Count
    144 - Fixed Template Responsive Issue
    145 - Fixed Meta Extra Separator Issue
     144- Added - Template Header Settings Option
     145- Added - Template Header Style Option
     146- Added - Order by - Popular Posts By Views Count
     147- Fixed - Template Responsive Issue
     148- Fixed - Meta Extra Separator Issue
    146149
    147150= 1.0.2 - 03 September 2020 =
    148 - Added Post Taxonomy Widget
    149 - Fixed News Ticker Animation Issue
    150 - Fixed Post List Image Hide Content Width Issue
    151 - Fixed Post Gird, Post List item class repeat issue
     151- Added - Post Taxonomy Widget
     152- Fixed - News Ticker Animation Issue
     153- Fixed - Post List Image Hide Content Width Issue
     154- Fixed - Post Gird, Post List item class repeat issue
    152155
    153156= 1.0.1 - 17 August 2020 =
    154 - Added News Ticker Widget
    155 - Added Post Title Trim Feature
    156 - Added Post Title Indicator Option
    157 - Added Post Excerpt Indicator Option
    158 - Improve Carousel Prev Nav CSS
    159 - Fixed Pagination Responsive CSS Issue
    160 - Fixed Hover CSS Issue
    161 - Fixed Hero2, Hero3 Skin Meta Space Issue
    162 - Fixed Hero Skin Inner Padding Issue
    163 - Fixed Posts Per Page Issue
     157- Added - News Ticker Widget
     158- Added - Post Title Trim Feature
     159- Added - Post Title Indicator Option
     160- Added - Post Excerpt Indicator Option
     161- Improve - Carousel Prev Nav CSS
     162- Fixed - Pagination Responsive CSS Issue
     163- Fixed - Hover CSS Issue
     164- Fixed - Hero2, Hero3 Skin Meta Space Issue
     165- Fixed - Hero Skin Inner Padding Issue
     166- Fixed - Posts Per Page Issue
    164167
    165168= 1.0.0 - 04 August 2020 =
  • bloglentor-for-elementor/trunk/assets/lib/slick/slick-theme.css

    r2352572 r2511604  
    33.slick-loading .slick-list
    44{
    5     background: #fff url('../images/loading.gif') center center no-repeat;
     5    background: #fff url('./ajax-loader.gif') center center no-repeat;
    66}
    77
  • bloglentor-for-elementor/trunk/bloglentor-for-elementor.php

    r2457871 r2511604  
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 1.0.5
     10 * Version: 1.0.6
    1111 * Text Domain: bloglentor
    1212 * Domain Path: /languages
     
    1818}
    1919
    20 define('BLFE', '1.0.5');
     20define('BLFE', '1.0.6');
    2121define('BLFE_DIR_PATH', plugin_dir_path(__FILE__));
    2222define('BLFE_DIR_URL', plugin_dir_url(__FILE__));
  • bloglentor-for-elementor/trunk/modules/news-ticker/widgets/news-ticker-base.php

    r2362519 r2511604  
    2424
    2525    public function get_script_depends() {
    26         return array('bloglentor-frontend', 'jquery-slick');
     26        return array('bloglentor-frontend', 'slick');
    2727    }
    2828
  • bloglentor-for-elementor/trunk/modules/post-grid/widgets/posts-base.php

    r2446484 r2511604  
    2424
    2525    public function get_script_depends() {
    26         return  apply_filters( 'blfe/post_grid_script_depends', array('bloglentor-frontend', 'jquery-slick') );
     26        return  apply_filters( 'blfe/post_grid_script_depends', array('bloglentor-frontend', 'slick') );
    2727    }
    2828
  • bloglentor-for-elementor/trunk/modules/post-list/widgets/posts-base.php

    r2374698 r2511604  
    2424
    2525    public function get_script_depends() {
    26         return  apply_filters( 'blfe/post_list_script_depends', array('bloglentor-frontend', 'jquery-slick') );
     26        return  apply_filters( 'blfe/post_list_script_depends', array('bloglentor-frontend', 'slick') );
    2727    }
    2828
  • bloglentor-for-elementor/trunk/plugin.php

    r2446484 r2511604  
    127127     */
    128128    public function enqueue_frontend_scripts() {
     129        wp_register_script(
     130            'slick',
     131            BLFE_DIR_URL . 'assets/lib/slick/slick.min.js',
     132            [ 'jquery' ],
     133            BLFE,
     134            true
     135        );
    129136        wp_register_script(
    130137            'bloglentor-frontend',
  • bloglentor-for-elementor/trunk/readme.txt

    r2457871 r2511604  
    44Requires at least: 4.8
    55Requires PHP: 5.4 or greater
    6 Tested up to: 5.6
     6Tested up to: 5.7
    77Stable tag: trunk
    88License: GPLv2 or later
     
    132132== Changelog ==
    133133
     134= 1.0.6 - 08 April 2021 =
     135- Fixed - Warning for slick JS in Elementor 3.x
     136
    134137= 1.0.5 - 17 January 2021 =
    135 - Fixed Date Format issue
     138- Fixed - Date Format issue
    136139
    137140= 1.0.4 - 08 January 2021 =
    138 - Fixed Skin Hero2, Hero3 Pagination Issue
     141- Fixed - Skin Hero2, Hero3 Pagination Issue
    139142
    140143= 1.0.3 - 28 December 2020 =
    141 - Added Template Header Settings Option
    142 - Added Template Header Style Option
    143 - Added Order by - Popular Posts By Views Count
    144 - Fixed Template Responsive Issue
    145 - Fixed Meta Extra Separator Issue
     144- Added - Template Header Settings Option
     145- Added - Template Header Style Option
     146- Added - Order by - Popular Posts By Views Count
     147- Fixed - Template Responsive Issue
     148- Fixed - Meta Extra Separator Issue
    146149
    147150= 1.0.2 - 03 September 2020 =
    148 - Added Post Taxonomy Widget
    149 - Fixed News Ticker Animation Issue
    150 - Fixed Post List Image Hide Content Width Issue
    151 - Fixed Post Gird, Post List item class repeat issue
     151- Added - Post Taxonomy Widget
     152- Fixed - News Ticker Animation Issue
     153- Fixed - Post List Image Hide Content Width Issue
     154- Fixed - Post Gird, Post List item class repeat issue
    152155
    153156= 1.0.1 - 17 August 2020 =
    154 - Added News Ticker Widget
    155 - Added Post Title Trim Feature
    156 - Added Post Title Indicator Option
    157 - Added Post Excerpt Indicator Option
    158 - Improve Carousel Prev Nav CSS
    159 - Fixed Pagination Responsive CSS Issue
    160 - Fixed Hover CSS Issue
    161 - Fixed Hero2, Hero3 Skin Meta Space Issue
    162 - Fixed Hero Skin Inner Padding Issue
    163 - Fixed Posts Per Page Issue
     157- Added - News Ticker Widget
     158- Added - Post Title Trim Feature
     159- Added - Post Title Indicator Option
     160- Added - Post Excerpt Indicator Option
     161- Improve - Carousel Prev Nav CSS
     162- Fixed - Pagination Responsive CSS Issue
     163- Fixed - Hover CSS Issue
     164- Fixed - Hero2, Hero3 Skin Meta Space Issue
     165- Fixed - Hero Skin Inner Padding Issue
     166- Fixed - Posts Per Page Issue
    164167
    165168= 1.0.0 - 04 August 2020 =
Note: See TracChangeset for help on using the changeset viewer.