From what I can tell it'll be about another 5 hours. I'm going to have to go to bed and check on it in the morning.
Unfortunately the stock-standard lemmy-ui doesn't like it that pict-rs is migrating to a new version of database and not serving images, so it's stubbornly just not working at all.
Fix for fetch page title.
>- Fix create post focus resets.
> - Make media uploads viewable only on your own profile.
>- Fixing an auto-download bug.
>- Regenerating lemmy-ui themes.
I made this userscript to put the vote count in comments back beside the vote button because the new one is kind of hard to see, its not the prettiest script (idk much about javascript), but I've tested it in Librewolf with Violentmonkey and it does work, hope it helps someone else!
// ==UserScript==
// @name New script blahaj.zone
// @namespace Violentmonkey Scripts
// @match https://lemmy.blahaj.zone/post/*
// @grant none
// @version 1.0
// @author -
// @description 8/24/2024, 3:32:47 PM
// @run-at document-idle
// ==/UserScript==
function main ()
{
var parent_comments = document.getElementsByClassName("comment list-unstyled");
for (var i = 0; i < parent_comments.length; /*i++*/)
{
/*console.log(i);*/
var comments = parent_comments[i].getElementsByTagName("article");
for (var j = 0; j < comments.length; j++)
{
var upvote_button = comments[j].getElementsByTagName("button")[1];
if (upvote_button.attributes["vote_count_patched"] != null)
{
i++;
continue;
}
var post_votes = upvote_button.attributes[2].textContent.split(' ')[0];
upvote_button.append(' ' + String(post_votes));
upvote_button.attributes["vote_count_patched"] = true;
i++;
}
}
}
/*var mutation = null;
var mutation_observer = new MutationObserver(function(m) { mutation = m; console.log("new mutation logged yo");} );
mutation_observer.observe(document, { childList: true, subtree: true }); */
var mutation_observer = new MutationObserver(main);
mutation_observer.observe(document, { childList: true, subtree: true});
main();
14 Comments
supakaity@lemmy.blahaj.zone · 27 pts · 2y
The pict-rs upgrade is ongoing.
From what I can tell it'll be about another 5 hours. I'm going to have to go to bed and check on it in the morning.
Unfortunately the stock-standard lemmy-ui doesn't like it that pict-rs is migrating to a new version of database and not serving images, so it's stubbornly just not working at all.
supakaity@lemmy.blahaj.zone · 20 pts · 2y
Apparently I was wrong, it's decided it's done and working again now.
whodatdair@lemmy.blahaj.zone · 13 pts · 2y
Ty for your work! ❤️
rustyfemboy@lemmy.blahaj.zone · 9 pts · 2y
Thank you for fixing the bug that prevented me from uploading images. :)
kittykittycatboys@lemmy.blahaj.zone · 8 pts · 2y
thamkyouss !!!
Korrok@lemmy.blahaj.zone · 8 pts · 2y
Thanks! What's new on this update?
Rozauhtuno@lemmy.blahaj.zone · 13 pts · 2y
https://join-lemmy.org/news/2024-06-19_-_Lemmy_Release_v0.19.5_-_A_Few_Bugfixes
Korrok@lemmy.blahaj.zone · 4 pts · 2y
thanks!
princessnorah@lemmy.blahaj.zone · 8 pts · 2y
thank you kaity! :)
jelloeater85@lemmy.world · 3 pts · 2y
CONGRATS @supakaity@lemmy.blahaj.zone 🤘😎🤘
Blaze@feddit.org · 1 pts · 2y
Well done!
queue@lemmy.blahaj.zone · 1 pts · 2y
Thank you very much!
12510198@lemmy.blahaj.zone · 1 pts · 2y
I made this userscript to put the vote count in comments back beside the vote button because the new one is kind of hard to see, its not the prettiest script (idk much about javascript), but I've tested it in Librewolf with Violentmonkey and it does work, hope it helps someone else!
cowboycrustation@lemmy.blahaj.zone · 1 pts · 2y
Thanks ada and laity