While you're here, please consider supporting GamingOnLinux on:
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- GOG Winter Sale is now live and they're giving away games again with a surprise each day
- Direct3D 12 to Vulkan project VKD3D-Proton v2.14 out now with various performance improvements
- GE-Proton 9-21 released for Linux / Steam Deck bringing more game fixes
- The Witcher IV revealed with Ciri as the protagonist
- Core Keeper developer announced KYORA that looks suspiciously like Terraria where "every pixel is yours to shape"
- > See more over 30 days here
-
A Game About Digging A Hole has you dig the stupidest b…
- Luke_Nukem -
Tactical Breach Wizards has a Beta with improvements fo…
- scaine -
Proton Experimental gets fixes for Final Fantasy XIV, N…
- Pyrate -
Proton Experimental gets fixes for Final Fantasy XIV, N…
- Xetal -
Proton Experimental gets fixes for Final Fantasy XIV, N…
- CatKiller - > See more comments
Note
Yes, the switcher requires JavaScript. Since I know some don't like that, you can still use the theme switcher in your User settings. That was also updated, as it now properly forces your picked theme there (which overrides the top nav slider).
Of course, there will be issues, some edge-cases I've missed.
If you see anything that doesn't look right or act right please let me know here so I can fix them. Before reporting, please refresh your cache to ensure it's not your browser keeping old CSS/JS around.
The forum
The old category/forum view is gone, long live flat forum. Honestly, it's just better, it matches the home page style of all categories shown. This way, categories that don't usually get a look-in will now actually have their posts show up when people make them.
Last edited by Liam Dawe on 29 March 2020 at 8:52 pm UTC
View PC info
View PC info
If you switch to the dark theme and then close the browser, or go to another website and come back, you end up with the light theme.
If you Force the theme through the profile settings, it works fine.
Last edited by serge on 29 March 2020 at 4:14 pm UTC
I am seeing the same behaviour as well. Also when the dark theme is enabled and (re)loading the page, the toggle button "switches" after the page have finished loading which draws attention to it. I find it a bit annoying. At least now that I noticed it :)
As it turns out, the above is exactly what Twitch do. Only realised after I did it, so it seems like the real solution that I fell into there :D
Haven't yet come up with a good solution for the switcher flicking between though. Happy to take on ideas.I've moved the slider into the user menu on desktop/mobile menu.
I'll also adjust for Guests/Not Logged In people to have a menu to do so too.Guests now have their own little menu.Last edited by Liam Dawe on 29 March 2020 at 8:48 pm UTC
The "theme" key in local storage is saved, though and set to "dark".
Since the attribute "data-theme" is set, your code doesn't even look at what's set in the local storage and just uses "default" as the value, as that's set in:
<html data-theme="default" class=" idcae idcac" lang="en">
var website_theme='light';
if (document.documentElement.hasAttribute("data-theme")) {
website_theme=document.documentElement.getAttribute("data-theme");
} else {
// If I run this on its own, the theme changes to dark as expected.
if (localStorage.getItem("theme")) {
if(localStorage.getItem("theme")=="dark") {
website_theme="dark";
}
}
else if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
website_theme="dark"
}
if (website_theme=="dark") {
document.documentElement.setAttribute("data-theme","dark")
}
}
Last edited by chris.echoz on 1 April 2020 at 9:58 pm UTC
Edit: Actually just noticed it says default, that looks like a leftover issue from the switch. Hold on 5 mins.
Edit 2: Should be fixed, a bunch of people didn't have their theme correctly unset from "default" (which no longer exists) it's either nothing and set by the JS and the new toggle or forced as light/dark in the User Control Panel.
Last edited by Liam Dawe on 1 April 2020 at 10:06 pm UTC
Hate this reddit category type BS :(
Edit: Also finally made the category view more responsive to the screen size, hiding some bits to make it better :)
Last edited by Liam Dawe on 19 April 2020 at 11:52 am UTC
The vertical centre alignment of the images on the front page looks really messy to me. Since the right part is top aligned, the image is never in the same place. Doesn't look good to me. Never had any problems with the top alignment.
Ever more of an issue for me is the share buttons with the articles. It starts with "share", which doesn't really do anything. Then I get four icons for services that I don't even have an account for. And the last one is RSS feed of articles which is not a share and is since it doesn't apply to the article, it is out of place. All of it is combined with attention grabbing colours. Although it's worse for me than the first, I can easily have the whole thing removed with ublock. In fact, it already does so with my standard setup.
Otherwise everything is great. Still not a fan of the dark theme, but standard suits my needs just fine.
That I actually agree with, the share image itself was also aligned funky across different browsers. It's now just a nicely aligned plain text. It makes it clear while also taking less attention. Good shout.
Again, agreed. RSS icon removed, wrong place for it and we already have it on the home page article list anyway. Good shout again on it.
:D:D:D:D
Frankly, Firefox's current default content line, where it decides to load the full image is not great, it's far too close to your actual view. Chrome has a more sane default with things loading when slightly off the screen so you save data and see less pop-in.
Of course:
View cookie preferences.
Accept & Show Accept All & Don't show this again Direct Link
It gets more interesting though. When I click up on the scrollbar once, I get:
View cookie preferences.
Accept & Show Accept All & Don't show this again Direct Link
See how the picture was replaced, but it has moved up with respect to the position of the "tiny" picture. So might be an alignment thing of some sort.
Edit: also another interesting thing. Right now it doesn't matter how far I scroll the page and go back. When scrolling up, the first image to not load when scrolling back up is the one from the fractalis post.
Last edited by Ehvis on 21 April 2020 at 1:28 pm UTC
That was part of the problem here I think, as the tiny low-res image never matched up and it couldn't because the tagline images were always a different size. I've adjusted the first 7 items on the home page, let me know how you get on.