Skip to content

Commit 77beb7f

Browse files
authored
Merge pull request #388 from Stypox/2025-02-16-newpipe-0.27.6-rewrite-team-states
Add 2025-02-16-newpipe-0.27.6-rewrite-team-states blogpost
2 parents b58ff92 + 8274b87 commit 77beb7f

12 files changed

+265
-7
lines changed

_includes/release_data.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
}}
1111
{%- capture releaseChangelog -%}
1212
<ul>
13-
<li>Support reading comment replies</li>
14-
<li>Added playlist descriptions</li>
15-
<li>Re-order custom playlists</li>
16-
<li>[YouTube] Fixed comments</li>
17-
<li>[YouTube] Fixed access to some streams</li>
18-
<li>Multiple player improvements</li>
19-
<li>More improvements and fixes</li>
13+
<li>[YouTube] Fix not loading any video information, fix HTTP 403 errors while playing videos and restore playback of some age-restricted videos</li>
14+
<li>Fix caption sizes not being changed</li>
15+
<li>Fix downloading info twice when opening a stream</li>
16+
<li>[Soundcloud] Remove unplayable DRM-protected streams</li>
17+
<li>Updated translations</li>
2018
</ul>
2119
{%- endcapture -%}
2220

2321
{%- capture releasePostUrl -%}
22+
{{ site.baseurl }}/blog/pinned/announcement/newpipe-0.27.6-rewrite-team-states/
2423
{%- endcapture -%}

_posts/2025-02-16-newpipe-0.27.6-rewrite-team-states.md

Lines changed: 188 additions & 0 deletions
Large diffs are not rendered by default.

css/blog.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,10 @@ figure figcaption {
10761076
text-align: center;
10771077
}
10781078

1079+
figure.center {
1080+
text-align: center;
1081+
}
1082+
10791083
figure.center img {
10801084
margin-left: auto;
10811085
margin-right: auto;
@@ -1085,10 +1089,40 @@ figure.small img {
10851089
max-width: 100%;
10861090
}
10871091

1092+
/*
1093+
The "small" class is also provided in Bootstrap and sets the font-size to 85%.
1094+
But here "small" is our tag which means small image, so we undo Bootstrap's change.
1095+
*/
1096+
figure.small {
1097+
font-size: 100%;
1098+
}
1099+
1100+
figure.right {
1101+
text-align: center;
1102+
margin-top: 2em;
1103+
margin-bottom: 2em;
1104+
}
1105+
1106+
figure.right img,
1107+
figure.right video {
1108+
margin-left: auto;
1109+
margin-right: auto;
1110+
max-width: min(100%, 200px);
1111+
}
1112+
10881113
@media (min-width: 768px) {
10891114
figure.small img {
10901115
max-width: 300px;
10911116
}
1117+
1118+
figure.right {
1119+
float: right;
1120+
max-width: 200px;
1121+
margin-top: 0.2em;
1122+
margin-bottom: 0.2em;
1123+
margin-left: 2em;
1124+
margin-right: 1em;
1125+
}
10921126
}
10931127

10941128
.post-content p, .post-collection .border-box p {
@@ -1139,3 +1173,40 @@ span.applepipe-voss {
11391173
.fdroid-repo-qr-code {
11401174
width: 250px;
11411175
}
1176+
1177+
figure.screenshot-list {
1178+
display: flex;
1179+
flex-wrap: wrap;
1180+
margin-top: 2em;
1181+
margin-bottom: 2em;
1182+
justify-content: space-around;
1183+
gap: 0.5em;
1184+
}
1185+
1186+
figure.screenshot-list img {
1187+
width: 230px;
1188+
}
1189+
1190+
figure.screenshot-list figcaption {
1191+
width: 100%;
1192+
text-align: center;
1193+
}
1194+
1195+
@media (min-width: 768px) {
1196+
figure.screenshot-list {
1197+
display: flex;
1198+
}
1199+
}
1200+
1201+
/*
1202+
When pointing to a specific place in the page by adding the fragment to the url,
1203+
e.g. #title-here, the navigation bar would be in the way without this fix.
1204+
See https://stackoverflow.com/a/24298427.
1205+
*/
1206+
[id]:target::before {
1207+
content: '';
1208+
display: block;
1209+
height: 85px;
1210+
margin-top: -85px;
1211+
visibility: hidden;
1212+
}

img/merch_2025.jpg

2.97 MB
Loading

img/screenshots/newplayer.webm

7.81 MB
Binary file not shown.

img/screenshots/rewrite_1.png

289 KB
Loading

img/screenshots/rewrite_2.png

659 KB
Loading

img/screenshots/rewrite_3.png

271 KB
Loading

img/screenshots/rewrite_4.png

176 KB
Loading

img/screenshots/rewrite_5.png

206 KB
Loading

0 commit comments

Comments
 (0)