Changeset 3177798
- Timestamp:
- 10/29/2024 08:54:54 AM (16 months ago)
- Location:
- podlove-podcasting-plugin-for-wordpress
- Files:
-
- 10 edited
- 1 copied
-
tags/4.1.17 (copied) (copied from podlove-podcasting-plugin-for-wordpress/trunk)
-
tags/4.1.17/lib/modules/contributors/templates/podcast-contributor-list.twig (modified) (3 diffs)
-
tags/4.1.17/lib/template/twig_sandbox.php (modified) (1 diff)
-
tags/4.1.17/podlove.php (modified) (1 diff)
-
tags/4.1.17/readme.txt (modified) (2 diffs)
-
tags/4.1.17/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/lib/modules/contributors/templates/podcast-contributor-list.twig (modified) (3 diffs)
-
trunk/lib/template/twig_sandbox.php (modified) (1 diff)
-
trunk/podlove.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
podlove-podcasting-plugin-for-wordpress/tags/4.1.17/lib/modules/contributors/templates/podcast-contributor-list.twig
r1168264 r3177798 17 17 <strong class="contributor-name">{{ contributor.name }}</strong> 18 18 <div class="social-icons"> 19 {% for service in contributor.s ocialServices %}19 {% for service in contributor.services %} 20 20 <a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}"> 21 21 {{ 22 22 service.image.html({ 23 width: 32, 23 width: 32, 24 24 class: "podlove-contributor-button", 25 25 alt: service.title ~ " Icon" 26 }) 26 }) 27 27 }} 28 28 </a> … … 34 34 <td class="episodes-cell"> 35 35 <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 %} 41 41 </ul> 42 42 </td> … … 48 48 49 49 <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 () { 53 var items = $("li", this); 54 54 55 55 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 });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 }); 61 61 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) { 63 e.preventDefault(); 64 64 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 }); 70 68 }(jQuery)); 71 69 </script> 72 70 73 71 <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 } 78 76 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 } 83 81 84 .podlove-global-contributors td {85 border-top-width: 0px;86 }82 .podlove-global-contributors td { 83 border-top-width: 0; 84 } 87 85 88 .podlove-global-contributors .episode-row { 89 /*margin-bottom: 10px;*/ 90 } 86 .podlove-global-contributors .episode-row { 87 ; 88 /*margin-bottom: 10px;*/ 89 } 91 90 92 .podlove-global-contributors td ul {93 margin: 0;94 }91 .podlove-global-contributors td ul { 92 margin: 0; 93 } 95 94 96 .podlove-global-contributors .social-cell li {97 margin: 0;98 }95 .podlove-global-contributors .social-cell li { 96 margin: 0; 97 } 99 98 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 } 103 102 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 } 108 106 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 } 115 111 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 } 116 124 </style> -
podlove-podcasting-plugin-for-wordpress/tags/4.1.17/lib/template/twig_sandbox.php
r3177486 r3177798 211 211 '\Podlove\Modules\Transcripts\Template\Line', 212 212 '\Podlove\Modules\Transcripts\Template\Group', 213 '\Podlove\Modules\Shownotes\Template\Entry' 213 214 ]; 214 215 -
podlove-podcasting-plugin-for-wordpress/tags/4.1.17/podlove.php
r3177486 r3177798 3 3 * Plugin Name: Podlove Podcast Publisher 4 4 * Plugin URI: https://podlove.org/podlove-podcast-publisher/ 5 * Version: 4.1.1 65 * Version: 4.1.17 6 6 * Requires at least: 4.9.6 7 7 * Requires PHP: 8.0 -
podlove-podcasting-plugin-for-wordpress/tags/4.1.17/readme.txt
r3177486 r3177798 4 4 Tags: podlove, podcast, publishing, rss, audio 5 5 Tested up to: 6.6.2 6 Stable tag: 4.1.1 66 Stable tag: 4.1.17 7 7 Requires at least: 4.9.6 8 8 Requires PHP: 8.0 … … 115 115 116 116 == Changelog == 117 118 = 4.1.17 = 119 120 * fix some templates that broke with 4.1.16 117 121 118 122 = 4.1.16 = -
podlove-podcasting-plugin-for-wordpress/tags/4.1.17/vendor/composer/installed.php
r3177486 r3177798 2 2 'root' => array( 3 3 'name' => 'podlove/podcast-publisher', 4 'pretty_version' => '4.1.1 6',5 'version' => '4.1.1 6.0',6 'reference' => ' f0d37eac27f8af2132163e163c353f7a6f9c1be7',4 'pretty_version' => '4.1.17', 5 'version' => '4.1.17.0', 6 'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 135 135 ), 136 136 'podlove/podcast-publisher' => array( 137 'pretty_version' => '4.1.1 6',138 'version' => '4.1.1 6.0',139 'reference' => ' f0d37eac27f8af2132163e163c353f7a6f9c1be7',137 'pretty_version' => '4.1.17', 138 'version' => '4.1.17.0', 139 'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3', 140 140 'type' => 'library', 141 141 'install_path' => __DIR__ . '/../../', -
podlove-podcasting-plugin-for-wordpress/trunk/lib/modules/contributors/templates/podcast-contributor-list.twig
r1168264 r3177798 17 17 <strong class="contributor-name">{{ contributor.name }}</strong> 18 18 <div class="social-icons"> 19 {% for service in contributor.s ocialServices %}19 {% for service in contributor.services %} 20 20 <a target="_blank" title="{{ service.title }}" href="{{ service.profileUrl }}"> 21 21 {{ 22 22 service.image.html({ 23 width: 32, 23 width: 32, 24 24 class: "podlove-contributor-button", 25 25 alt: service.title ~ " Icon" 26 }) 26 }) 27 27 }} 28 28 </a> … … 34 34 <td class="episodes-cell"> 35 35 <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 %} 41 41 </ul> 42 42 </td> … … 48 48 49 49 <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 () { 53 var items = $("li", this); 54 54 55 55 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 });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 }); 61 61 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) { 63 e.preventDefault(); 64 64 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 }); 70 68 }(jQuery)); 71 69 </script> 72 70 73 71 <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 } 78 76 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 } 83 81 84 .podlove-global-contributors td {85 border-top-width: 0px;86 }82 .podlove-global-contributors td { 83 border-top-width: 0; 84 } 87 85 88 .podlove-global-contributors .episode-row { 89 /*margin-bottom: 10px;*/ 90 } 86 .podlove-global-contributors .episode-row { 87 ; 88 /*margin-bottom: 10px;*/ 89 } 91 90 92 .podlove-global-contributors td ul {93 margin: 0;94 }91 .podlove-global-contributors td ul { 92 margin: 0; 93 } 95 94 96 .podlove-global-contributors .social-cell li {97 margin: 0;98 }95 .podlove-global-contributors .social-cell li { 96 margin: 0; 97 } 99 98 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 } 103 102 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 } 108 106 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 } 115 111 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 } 116 124 </style> -
podlove-podcasting-plugin-for-wordpress/trunk/lib/template/twig_sandbox.php
r3177486 r3177798 211 211 '\Podlove\Modules\Transcripts\Template\Line', 212 212 '\Podlove\Modules\Transcripts\Template\Group', 213 '\Podlove\Modules\Shownotes\Template\Entry' 213 214 ]; 214 215 -
podlove-podcasting-plugin-for-wordpress/trunk/podlove.php
r3177486 r3177798 3 3 * Plugin Name: Podlove Podcast Publisher 4 4 * Plugin URI: https://podlove.org/podlove-podcast-publisher/ 5 * Version: 4.1.1 65 * Version: 4.1.17 6 6 * Requires at least: 4.9.6 7 7 * Requires PHP: 8.0 -
podlove-podcasting-plugin-for-wordpress/trunk/readme.txt
r3177486 r3177798 4 4 Tags: podlove, podcast, publishing, rss, audio 5 5 Tested up to: 6.6.2 6 Stable tag: 4.1.1 66 Stable tag: 4.1.17 7 7 Requires at least: 4.9.6 8 8 Requires PHP: 8.0 … … 115 115 116 116 == Changelog == 117 118 = 4.1.17 = 119 120 * fix some templates that broke with 4.1.16 117 121 118 122 = 4.1.16 = -
podlove-podcasting-plugin-for-wordpress/trunk/vendor/composer/installed.php
r3177486 r3177798 2 2 'root' => array( 3 3 'name' => 'podlove/podcast-publisher', 4 'pretty_version' => '4.1.1 6',5 'version' => '4.1.1 6.0',6 'reference' => ' f0d37eac27f8af2132163e163c353f7a6f9c1be7',4 'pretty_version' => '4.1.17', 5 'version' => '4.1.17.0', 6 'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 135 135 ), 136 136 'podlove/podcast-publisher' => array( 137 'pretty_version' => '4.1.1 6',138 'version' => '4.1.1 6.0',139 'reference' => ' f0d37eac27f8af2132163e163c353f7a6f9c1be7',137 'pretty_version' => '4.1.17', 138 'version' => '4.1.17.0', 139 'reference' => '320d3f11b64a190cf5083fac1c0198c890e11de3', 140 140 'type' => 'library', 141 141 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.