-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #89: Options to select fit size / wallpaper mode. Image-dependent…
… smart fit. (#518) * Split overloaded UI pages into separate pages * Add options and UI for auto-rotate and display mode * Add logic to run auto-rotate and display-mode related commands * Pluginize the display modes * Revert changes to set_wp_throttled * Implement "Smart" display mode that depends on image size * Faster Heavy and Soft blur filters * Smart mode: Add logic to use "spanned" when image ratio close to total screen size * Add a comment in set_wallpaper
- Loading branch information
Showing
17 changed files
with
1,573 additions
and
930 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# These are automatically appended to the user's filters. | ||
# New default filters should be added here, as well as in the default config so that existing users will also see them | ||
# (they already have a config file, so the default config is not used for them) | ||
|
||
False|Keep original| | ||
False|Grayscale|-type Grayscale | ||
False|Heavy blur|-blur 120x40 | ||
False|Oil painting|-paint 8 | ||
False|Pointilism|-spread 10 -noise 3 | ||
False|Pixellate|-scale 3% -scale 3333% | ||
# These are automatically appended to the user's filters. | ||
# New default filters should be added here, as well as in the default config so that existing users will also see them | ||
# (they already have a config file, so the default config is not used for them) | ||
|
||
False|Keep original| | ||
False|Grayscale|-type Grayscale | ||
False|Heavy blur|-scale 20% -blur 0x10 -resize 500% | ||
False|Soft blur|-scale 20% -blur 0x2 -resize 500% | ||
False|Oil painting|-paint 8 | ||
False|Pointilism|-spread 10 -noise 3 | ||
False|Pixellate|-scale 3% -scale 3333% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.