Plugin Directory

Changeset 3177798


Ignore:
Timestamp:
10/29/2024 08:54:54 AM (16 months ago)
Author:
eteubert
Message:

Update to version 4.1.17 from GitHub

Location:
podlove-podcasting-plugin-for-wordpress
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.17/lib/modules/contributors/templates/podcast-contributor-list.twig

    r1168264 r3177798  
    1717                        <strong class="contributor-name">{{ contributor.name }}</strong>
    1818                        <div class="social-icons">
    19                             {% for service in contributor.socialServices %}
     19                            {% for service in contributor.services %}
    2020                                <a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}">
    2121                                    {{
    2222                                        service.image.html({
    23                                             width: 32, 
     23                                            width: 32,
    2424                                            class: "podlove-contributor-button",
    2525                                            alt: service.title ~ " Icon"
    26                                         }) 
     26                                        })
    2727                                    }}
    2828                                </a>
     
    3434                    <td class="episodes-cell">
    3535                        <ul>
    36                         {% for episode in contributor.episodes %}
    37                             <li>
    38                                 <a href="{{ episode.url }}">{{ episode.title }}</a>
    39                             </li>
    40                         {% endfor %}
     36                            {% for episode in contributor.episodes %}
     37                                <li>
     38                                    <a href="{{ episode.url }}">{{ episode.title }}</a>
     39                                </li>
     40                            {% endfor %}
    4141                        </ul>
    4242                    </td>
     
    4848
    4949<script type="text/javascript">
    50 (function ($) {
    51     $(document).ready(function() {
    52         $(".podlove-global-contributors .episodes-cell").each(function() {
    53             var items = $("li", this);
     50    (function ($) {
     51$(document).ready(function () {
     52$(".podlove-global-contributors .episodes-cell").each(function () {
     53var items = $("li", this);
    5454
    5555
    56             if (items.length > 5) {
    57                 $("li:gt(4)", this).hide();
    58                 $('<span class="show-all-episodes"><a href="#">… show all episodes</a><span>').insertAfter($("ul", this));
    59             }
    60         });
     56if (items.length > 5) {
     57$("li:gt(4)", this).hide();
     58$('<span class="show-all-episodes"><a href="#">… show all episodes</a><span>').insertAfter($("ul", this));
     59}
     60});
    6161
    62         $(".podlove-global-contributors").on("click", ".show-all-episodes a", function(e) {
    63             e.preventDefault();
     62$(".podlove-global-contributors").on("click", ".show-all-episodes a", function (e) {
     63e.preventDefault();
    6464
    65             $(this).closest(".episodes-cell")
    66                 .find("li").show().end()
    67                 .find(".show-all-episodes").hide();
    68         });
    69     });
     65$(this).closest(".episodes-cell").find("li").show().end().find(".show-all-episodes").hide();
     66});
     67});
    7068}(jQuery));
    7169</script>
    7270
    7371<style type="text/css">
    74 .podlove-global-contributors td {
    75     vertical-align: top;
    76     line-height: 1.3em;
    77 }
     72    .podlove-global-contributors td {
     73        vertical-align: top;
     74        line-height: 1.3em;
     75    }
    7876
    79 .podlove-global-contributors .avatar-cell {
    80     max-width: 100px;
    81     text-align: center;
    82 }
     77    .podlove-global-contributors .avatar-cell {
     78        max-width: 100px;
     79        text-align: center;
     80    }
    8381
    84 .podlove-global-contributors td {
    85     border-top-width: 0px;
    86 }
     82    .podlove-global-contributors td {
     83        border-top-width: 0;
     84    }
    8785
    88 .podlove-global-contributors .episode-row {
    89     /*margin-bottom: 10px;*/
    90 }
     86    .podlove-global-contributors .episode-row {
     87        ;
     88        /*margin-bottom: 10px;*/
     89    }
    9190
    92 .podlove-global-contributors td ul {
    93     margin: 0;
    94 }
     91    .podlove-global-contributors td ul {
     92        margin: 0;
     93    }
    9594
    96 .podlove-global-contributors .social-cell li {
    97     margin: 0;
    98 }
     95    .podlove-global-contributors .social-cell li {
     96        margin: 0;
     97    }
    9998
    100 .podlove-global-contributors .episodes-cell {
    101     padding-top: 0px;
    102 }
     99    .podlove-global-contributors .social-cell .social-icons a {
     100        text-decoration: none;
     101    }
    103102
    104 .podlove-global-contributors .episodes-cell li {
    105     display: inline-block;
    106     margin: 0;
    107 }
     103    .podlove-global-contributors .episodes-cell {
     104        padding-top: 0;
     105    }
    108106
    109 .podlove-global-contributors .episodes-cell li a {
    110     background: #eee;
    111     padding: 2px 10px;
    112     line-height: 170%;
    113     border-radius: 10px;
    114 }
     107    .podlove-global-contributors .episodes-cell ul {
     108        margin-left: 0;
     109        padding-left: 0;
     110    }
    115111
     112    .podlove-global-contributors .episodes-cell li {
     113        display: inline-block;
     114        margin: 0;
     115    }
     116
     117    .podlove-global-contributors .episodes-cell li a {
     118        background: #eee;
     119        padding: 2px 10px;
     120        line-height: 170%;
     121        border-radius: 10px;
     122        text-decoration: none;
     123    }
    116124</style>
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.17/lib/template/twig_sandbox.php

    r3177486 r3177798  
    211211            '\Podlove\Modules\Transcripts\Template\Line',
    212212            '\Podlove\Modules\Transcripts\Template\Group',
     213            '\Podlove\Modules\Shownotes\Template\Entry'
    213214        ];
    214215
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.17/podlove.php

    r3177486 r3177798  
    33 * Plugin Name: Podlove Podcast Publisher
    44 * Plugin URI:  https://podlove.org/podlove-podcast-publisher/
    5  * Version: 4.1.16
     5 * Version: 4.1.17
    66 * Requires at least: 4.9.6
    77 * Requires PHP: 8.0
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.17/readme.txt

    r3177486 r3177798  
    44Tags: podlove, podcast, publishing, rss, audio
    55Tested up to: 6.6.2
    6 Stable tag: 4.1.16
     6Stable tag: 4.1.17
    77Requires at least: 4.9.6
    88Requires PHP: 8.0
     
    115115
    116116== Changelog ==
     117
     118= 4.1.17 =
     119
     120* fix some templates that broke with 4.1.16
    117121
    118122= 4.1.16 =
  • podlove-podcasting-plugin-for-wordpress/tags/4.1.17/vendor/composer/installed.php

    r3177486 r3177798  
    22    'root' => array(
    33        'name' => 'podlove/podcast-publisher',
    4         'pretty_version' => '4.1.16',
    5         'version' => '4.1.16.0',
    6         'reference' => 'f0d37eac27f8af2132163e163c353f7a6f9c1be7',
     4        'pretty_version' => '4.1.17',
     5        'version' => '4.1.17.0',
     6        'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    135135        ),
    136136        'podlove/podcast-publisher' => array(
    137             'pretty_version' => '4.1.16',
    138             'version' => '4.1.16.0',
    139             'reference' => 'f0d37eac27f8af2132163e163c353f7a6f9c1be7',
     137            'pretty_version' => '4.1.17',
     138            'version' => '4.1.17.0',
     139            'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3',
    140140            'type' => 'library',
    141141            'install_path' => __DIR__ . '/../../',
  • podlove-podcasting-plugin-for-wordpress/trunk/lib/modules/contributors/templates/podcast-contributor-list.twig

    r1168264 r3177798  
    1717                        <strong class="contributor-name">{{ contributor.name }}</strong>
    1818                        <div class="social-icons">
    19                             {% for service in contributor.socialServices %}
     19                            {% for service in contributor.services %}
    2020                                <a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}">
    2121                                    {{
    2222                                        service.image.html({
    23                                             width: 32, 
     23                                            width: 32,
    2424                                            class: "podlove-contributor-button",
    2525                                            alt: service.title ~ " Icon"
    26                                         }) 
     26                                        })
    2727                                    }}
    2828                                </a>
     
    3434                    <td class="episodes-cell">
    3535                        <ul>
    36                         {% for episode in contributor.episodes %}
    37                             <li>
    38                                 <a href="{{ episode.url }}">{{ episode.title }}</a>
    39                             </li>
    40                         {% endfor %}
     36                            {% for episode in contributor.episodes %}
     37                                <li>
     38                                    <a href="{{ episode.url }}">{{ episode.title }}</a>
     39                                </li>
     40                            {% endfor %}
    4141                        </ul>
    4242                    </td>
     
    4848
    4949<script type="text/javascript">
    50 (function ($) {
    51     $(document).ready(function() {
    52         $(".podlove-global-contributors .episodes-cell").each(function() {
    53             var items = $("li", this);
     50    (function ($) {
     51$(document).ready(function () {
     52$(".podlove-global-contributors .episodes-cell").each(function () {
     53var items = $("li", this);
    5454
    5555
    56             if (items.length > 5) {
    57                 $("li:gt(4)", this).hide();
    58                 $('<span class="show-all-episodes"><a href="#">… show all episodes</a><span>').insertAfter($("ul", this));
    59             }
    60         });
     56if (items.length > 5) {
     57$("li:gt(4)", this).hide();
     58$('<span class="show-all-episodes"><a href="#">… show all episodes</a><span>').insertAfter($("ul", this));
     59}
     60});
    6161
    62         $(".podlove-global-contributors").on("click", ".show-all-episodes a", function(e) {
    63             e.preventDefault();
     62$(".podlove-global-contributors").on("click", ".show-all-episodes a", function (e) {
     63e.preventDefault();
    6464
    65             $(this).closest(".episodes-cell")
    66                 .find("li").show().end()
    67                 .find(".show-all-episodes").hide();
    68         });
    69     });
     65$(this).closest(".episodes-cell").find("li").show().end().find(".show-all-episodes").hide();
     66});
     67});
    7068}(jQuery));
    7169</script>
    7270
    7371<style type="text/css">
    74 .podlove-global-contributors td {
    75     vertical-align: top;
    76     line-height: 1.3em;
    77 }
     72    .podlove-global-contributors td {
     73        vertical-align: top;
     74        line-height: 1.3em;
     75    }
    7876
    79 .podlove-global-contributors .avatar-cell {
    80     max-width: 100px;
    81     text-align: center;
    82 }
     77    .podlove-global-contributors .avatar-cell {
     78        max-width: 100px;
     79        text-align: center;
     80    }
    8381
    84 .podlove-global-contributors td {
    85     border-top-width: 0px;
    86 }
     82    .podlove-global-contributors td {
     83        border-top-width: 0;
     84    }
    8785
    88 .podlove-global-contributors .episode-row {
    89     /*margin-bottom: 10px;*/
    90 }
     86    .podlove-global-contributors .episode-row {
     87        ;
     88        /*margin-bottom: 10px;*/
     89    }
    9190
    92 .podlove-global-contributors td ul {
    93     margin: 0;
    94 }
     91    .podlove-global-contributors td ul {
     92        margin: 0;
     93    }
    9594
    96 .podlove-global-contributors .social-cell li {
    97     margin: 0;
    98 }
     95    .podlove-global-contributors .social-cell li {
     96        margin: 0;
     97    }
    9998
    100 .podlove-global-contributors .episodes-cell {
    101     padding-top: 0px;
    102 }
     99    .podlove-global-contributors .social-cell .social-icons a {
     100        text-decoration: none;
     101    }
    103102
    104 .podlove-global-contributors .episodes-cell li {
    105     display: inline-block;
    106     margin: 0;
    107 }
     103    .podlove-global-contributors .episodes-cell {
     104        padding-top: 0;
     105    }
    108106
    109 .podlove-global-contributors .episodes-cell li a {
    110     background: #eee;
    111     padding: 2px 10px;
    112     line-height: 170%;
    113     border-radius: 10px;
    114 }
     107    .podlove-global-contributors .episodes-cell ul {
     108        margin-left: 0;
     109        padding-left: 0;
     110    }
    115111
     112    .podlove-global-contributors .episodes-cell li {
     113        display: inline-block;
     114        margin: 0;
     115    }
     116
     117    .podlove-global-contributors .episodes-cell li a {
     118        background: #eee;
     119        padding: 2px 10px;
     120        line-height: 170%;
     121        border-radius: 10px;
     122        text-decoration: none;
     123    }
    116124</style>
  • podlove-podcasting-plugin-for-wordpress/trunk/lib/template/twig_sandbox.php

    r3177486 r3177798  
    211211            '\Podlove\Modules\Transcripts\Template\Line',
    212212            '\Podlove\Modules\Transcripts\Template\Group',
     213            '\Podlove\Modules\Shownotes\Template\Entry'
    213214        ];
    214215
  • podlove-podcasting-plugin-for-wordpress/trunk/podlove.php

    r3177486 r3177798  
    33 * Plugin Name: Podlove Podcast Publisher
    44 * Plugin URI:  https://podlove.org/podlove-podcast-publisher/
    5  * Version: 4.1.16
     5 * Version: 4.1.17
    66 * Requires at least: 4.9.6
    77 * Requires PHP: 8.0
  • podlove-podcasting-plugin-for-wordpress/trunk/readme.txt

    r3177486 r3177798  
    44Tags: podlove, podcast, publishing, rss, audio
    55Tested up to: 6.6.2
    6 Stable tag: 4.1.16
     6Stable tag: 4.1.17
    77Requires at least: 4.9.6
    88Requires PHP: 8.0
     
    115115
    116116== Changelog ==
     117
     118= 4.1.17 =
     119
     120* fix some templates that broke with 4.1.16
    117121
    118122= 4.1.16 =
  • podlove-podcasting-plugin-for-wordpress/trunk/vendor/composer/installed.php

    r3177486 r3177798  
    22    'root' => array(
    33        'name' => 'podlove/podcast-publisher',
    4         'pretty_version' => '4.1.16',
    5         'version' => '4.1.16.0',
    6         'reference' => 'f0d37eac27f8af2132163e163c353f7a6f9c1be7',
     4        'pretty_version' => '4.1.17',
     5        'version' => '4.1.17.0',
     6        'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    135135        ),
    136136        'podlove/podcast-publisher' => array(
    137             'pretty_version' => '4.1.16',
    138             'version' => '4.1.16.0',
    139             'reference' => 'f0d37eac27f8af2132163e163c353f7a6f9c1be7',
     137            'pretty_version' => '4.1.17',
     138            'version' => '4.1.17.0',
     139            'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3',
    140140            'type' => 'library',
    141141            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.