Plugin Directory

Changeset 2709709


Ignore:
Timestamp:
04/14/2022 10:23:12 AM (4 years ago)
Author:
jeffreyvr
Message:

Update to version 1.7.1 from GitHub

Location:
easy-liveblogs
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-liveblogs/tags/1.7.1/assets/js/easy-liveblogs.js

    r2697751 r2709709  
    3131                    exclude: elb_exclude,
    3232                    liveblog: elb.liveblog,
    33                     after: elb_liveblog.find('li:first').attr('data-elb-post-datetime')
     33                    after: elb_liveblog.find('> li:first').attr('data-elb-post-datetime')
    3434                },
    3535                success: function (posts) {
     
    8080
    8181        elb_load_new_btn.click(function () { // reset
    82             $('.elb-liveblog-list li').not(':visible').fadeIn();
     82            $('.elb-liveblog-list > li').not(':visible').fadeIn();
    8383            elb_new_posts = 0;
    8484            elb_load_new_btn.hide();
     
    9898                    liveblog: elb.liveblog,
    9999                    action: 'elb_load_more',
    100                     before: elb_liveblog.find('li:last').attr('data-elb-post-datetime')
     100                    before: elb_liveblog.find('> li:last').attr('data-elb-post-datetime')
    101101                },
    102102                success: function (posts) {
  • easy-liveblogs/tags/1.7.1/easy-liveblogs.php

    r2697751 r2709709  
    44Plugin URI: https://vanrossum.dev
    55Description: Live blogging made easy with the Easy Liveblogs plugin from vanrossum.dev.
    6 Version: 1.7.0
     6Version: 1.7.1
    77Author: Jeffrey van Rossum
    88Author URI: https://www.vanrossum.dev
     
    2626        private $plugin_url;
    2727        private $plugin_name    = 'Easy Liveblogs';
    28         private $plugin_version = '1.7.0';
     28        private $plugin_version = '1.7.1';
    2929        private $text_domain    = 'easy-liveblogs';
    3030        public $liveblog;
  • easy-liveblogs/tags/1.7.1/readme.txt

    r2697751 r2709709  
    77Requires at least: 4.4
    88Tested up to: 5.9
    9 Stable Tag: 1.7.0
     9Stable Tag: 1.7.1
    1010License: MIT
    1111
     
    3939
    4040= Unreleased =
     41
     42= 1.7.1, April 14, 2022 =
     43* Fix not loading more entries when last item contains a list item.
    4144
    4245= 1.7.0, March 22, 2022 =
  • easy-liveblogs/trunk/assets/js/easy-liveblogs.js

    r2697751 r2709709  
    3131                    exclude: elb_exclude,
    3232                    liveblog: elb.liveblog,
    33                     after: elb_liveblog.find('li:first').attr('data-elb-post-datetime')
     33                    after: elb_liveblog.find('> li:first').attr('data-elb-post-datetime')
    3434                },
    3535                success: function (posts) {
     
    8080
    8181        elb_load_new_btn.click(function () { // reset
    82             $('.elb-liveblog-list li').not(':visible').fadeIn();
     82            $('.elb-liveblog-list > li').not(':visible').fadeIn();
    8383            elb_new_posts = 0;
    8484            elb_load_new_btn.hide();
     
    9898                    liveblog: elb.liveblog,
    9999                    action: 'elb_load_more',
    100                     before: elb_liveblog.find('li:last').attr('data-elb-post-datetime')
     100                    before: elb_liveblog.find('> li:last').attr('data-elb-post-datetime')
    101101                },
    102102                success: function (posts) {
  • easy-liveblogs/trunk/easy-liveblogs.php

    r2697751 r2709709  
    44Plugin URI: https://vanrossum.dev
    55Description: Live blogging made easy with the Easy Liveblogs plugin from vanrossum.dev.
    6 Version: 1.7.0
     6Version: 1.7.1
    77Author: Jeffrey van Rossum
    88Author URI: https://www.vanrossum.dev
     
    2626        private $plugin_url;
    2727        private $plugin_name    = 'Easy Liveblogs';
    28         private $plugin_version = '1.7.0';
     28        private $plugin_version = '1.7.1';
    2929        private $text_domain    = 'easy-liveblogs';
    3030        public $liveblog;
  • easy-liveblogs/trunk/readme.txt

    r2697751 r2709709  
    77Requires at least: 4.4
    88Tested up to: 5.9
    9 Stable Tag: 1.7.0
     9Stable Tag: 1.7.1
    1010License: MIT
    1111
     
    3939
    4040= Unreleased =
     41
     42= 1.7.1, April 14, 2022 =
     43* Fix not loading more entries when last item contains a list item.
    4144
    4245= 1.7.0, March 22, 2022 =
Note: See TracChangeset for help on using the changeset viewer.