Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 46 (legacy GNOME 44) #203

Open
wants to merge 25 commits into
base: gnome-44-legacy
Choose a base branch
from
Open

Version 46 (legacy GNOME 44) #203

wants to merge 25 commits into from

Conversation

neffo
Copy link
Owner

@neffo neffo commented Apr 1, 2023

Changes in this release:

  • Fix incorrectly setting a shuffle timer when clicking random image (the dice)
  • Clicking on thumbnail opens that image in an image viewer (restore original behavior)
  • Download highest quality images from Bing
  • Improvements to shuffle mode (ignore certain images, only UHD or only favorites modes)
  • Fix shuffle mode strange behavior
  • Shuffle can now be set on the hour, daily or weekly

@neffo neffo linked an issue Apr 1, 2023 that may be closed by this pull request
utils.js Outdated
Comment on lines 196 to 209
let filtered = [];
image_list.forEach(function(x, i) {
let ignore = false;
if (filter.faves && !x.favourite)
ignore = true;
if (filter.min_height && x.height < filter.min_height)
ignore = true;
if (filter.hidden && x.hidden)
ignore = true;

if (!ignore)
filtered.push(x);
});
return filtered;

This comment was marked as outdated.

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah there is a bit of refactoring I need to do for the awkward logic that's kind of been hacked together over time. This one is a new hack though, haha.

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, thanks for review @mercutiodesign

Copy link

@mercutiodesign mercutiodesign left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the extension! It's one of my favorite pieces of customization.

@neffo neffo linked an issue Jun 29, 2023 that may be closed by this pull request
@neffo neffo mentioned this pull request Jun 30, 2023
@neffo neffo linked an issue Jul 30, 2023 that may be closed by this pull request
neffo and others added 3 commits July 31, 2023 08:14
We should follow the brand naming of GNOME.
@neffo neffo changed the base branch from master to gnome-44-legacy October 21, 2023 06:03
This was referenced Oct 21, 2023
@neffo neffo changed the title Version 46 Version 46 (legacy GNOME 44) Oct 21, 2023
Update Korean translation
Fix spelling mistakes and set french apostrophe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants