1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-16 10:06:54 +00:00
* Fixed: Do not set `src` for images on Firefox, since that causes animations to reset when a new image is added to the DOM with the same `src`. For some reason. Thanks, Firefox.
* Fixed: The FFZ Control Center, Emote Cards, and Link Cards are now all aware of each other in a limited sense. The most recently interacted-with window will appear on top of the others.
* Fixed: Channel page links not having enhanced tool-tip preview support. (Still no link cards when you click them, but it's a start.)
* Developer: Made it so the Link Tester in Debugging > Data Sources will properly open link cards, as long as you have link cards enabled.
* API Added: Update to the latest FFZ rich tokens format, which has a new `i18n_select` token. This allows, for example, the link preview service to return multiple languages of titles and descriptions for a YouTube video so that your client can pick the best one to display.
* Experiment Changed: The "API-Based Link Lookups" experiment now has a third option that uses Cloudflare Workers. It's set very low while I try to gauge how much traffic it would see, and if this is a viable option.
This commit is contained in:
SirStendec 2023-10-09 19:25:29 -04:00
parent 29419eee22
commit 5b65f6b735
19 changed files with 223 additions and 91 deletions

View file

@ -368,7 +368,7 @@
grid-column-end: 3;
img, video {
object-fit:contain;
object-fit: contain;
}
.ffz-aspect { img, video { object-fit: cover; } }
@ -386,10 +386,18 @@
&[data-items="2"] > * {
min-height: calc(50% - 2px);
img, video {
max-height: calc(calc(350px + 4px) / 2);
}
}
&[data-items="1"] > * {
min-height: 100%;
img, video {
max-height: calc(350px + 4px);
}
}
img, video {