Skip to content

Commit

Permalink
3.6.4
Browse files Browse the repository at this point in the history
3.6.4
  • Loading branch information
Taknok authored May 8, 2023
2 parents 4e4d51f + ca7cb1b commit 8411077
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "3.6.3",
"version": "3.6.4",
"manifest_version": 2,
"description": "__MSG_appDesc__",
"icons": {
Expand Down
6 changes: 3 additions & 3 deletions app/scripts/modules/miscellaneous.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ function getCreatorFromVideo() {
let name = null;
let URL = null;
if (window.IS_PAPER) {
creatorBlock = document.querySelector("ytd-video-owner-renderer[modern-metapanel]");
name = creatorBlock.querySelector("ytd-channel-name#channel-name a").textContent;
URL = creatorBlock.querySelector("ytd-channel-name#channel-name a").href;
creatorBlock = document.querySelector("ytd-video-owner-renderer .ytd-channel-name #text a");
name = creatorBlock.textContent;
URL = creatorBlock.href;
} else {
creatorBlock = document.querySelector("#container.ytd-video-secondary-info-renderer");
name = creatorBlock.querySelector("yt-formatted-string.ytd-channel-name>a").textContent;
Expand Down
2 changes: 2 additions & 0 deletions app/update_info.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ <h1 id="title"><strong>YouTube</strong> Auto Like</h1>
<li>Update to new Youtube layout. Thank you <a href="https://github.com/Taknok/youtube-auto-like/issues/68"> NexusDarkshade</a> !</li>
<li>Fix changes after new Youtube layout. Thank you <a href="https://github.com/Taknok/youtube-auto-like/issues/72"> JoelleEmmily & Fraeksn (and also Divin1ty666 & ReiNasc)</a> !</li>
<li>Fix changes in Youtube layout. Thank you <a href="https://github.com/Taknok/youtube-auto-like/issues/74"> LittleVulpix, JinkerJinx & NexusDarkshade</a> !</li>
<li>Fix (again) changes in Youtube layout. Thank you <a href="https://github.com/Taknok/youtube-auto-like/issues/59"> wisnoskij</a> & <a href="https://github.com/Taknok/youtube-auto-like/issues/78"> MykStreja</a> !</li>
<li>Fix "Add creator" button with new layout. Thank you <a href="https://github.com/Taknok/youtube-auto-like/issues/81">Mikrowelliger & alaestor</a></li>
</ul>
<p>Feel free to report any bug on <a id="report-link" href="https://github.com/Taknok/youtube-auto-like">Github</a>.</p>
<div id="links">
Expand Down

0 comments on commit 8411077

Please sign in to comment.