-
Notifications
You must be signed in to change notification settings - Fork 0
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
WS2-1575: Card Arrangement: PNG images not being compressed #76
Draft
juanmitriatti
wants to merge
4
commits into
master
Choose a base branch
from
WS2-1575
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
900a0b0
WS2-1575: Card Arrangement: PNG images not being compressed
juanmitriatti 80afc14
WS2-1575: Importing configs for ImageMagick module
juanmitriatti 6966e45
Merge branch 'master' into WS2-1575
mlsamuelson 7d7e679
WS2-1575: Remove files extensions.
juanmitriatti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
config/install/file_mdm.file_metadata_plugin.getimagesize.yml
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
configuration: | ||
cache: | ||
override: false | ||
settings: | ||
enabled: true | ||
expiration: 172800 | ||
disallowed_paths: { } |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
metadata_cache: | ||
enabled: true | ||
expiration: 172800 | ||
disallowed_paths: { } |
7 changes: 7 additions & 0 deletions
7
config/install/imagemagick.file_metadata_plugin.imagemagick_identify.yml
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
configuration: | ||
cache: | ||
override: false | ||
settings: | ||
enabled: true | ||
expiration: 172800 | ||
disallowed_paths: { } |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
quality: 75 | ||
binaries: imagemagick | ||
path_to_binaries: '' | ||
prepend: '' | ||
log_warnings: true | ||
debug: false | ||
locale: en_US.UTF-8 | ||
image_formats: | ||
PNG: | ||
mime_type: image/png | ||
JPEG: | ||
mime_type: image/jpeg | ||
JPG: | ||
mime_type: image/jpeg | ||
weight: 10 | ||
enabled: false | ||
GIF: | ||
mime_type: image/gif | ||
GIF87: | ||
mime_type: image/gif | ||
weight: 10 | ||
enabled: false | ||
SVG: | ||
mime_type: image/svg+xml | ||
enabled: false | ||
WEBP: | ||
mime_type: image/webp | ||
AVIF: | ||
mime_type: image/avif | ||
enabled: false | ||
TIFF: | ||
mime_type: image/tiff | ||
enabled: false | ||
PDF: | ||
mime_type: application/pdf | ||
enabled: false | ||
HEIC: | ||
mime_type: image/heif | ||
enabled: false | ||
BMP: | ||
mime_type: image/x-ms-bmp | ||
enabled: false | ||
PSD: | ||
mime_type: image/x-photoshop | ||
enabled: false | ||
WBMP: | ||
mime_type: image/vnd.wap.wbmp | ||
enabled: false | ||
XBM: | ||
mime_type: image/x-xbitmap | ||
enabled: false | ||
ICO: | ||
mime_type: image/vnd.microsoft.icon | ||
enabled: false | ||
advanced: | ||
density: 0 | ||
colorspace: '0' | ||
profile: '' | ||
coalesce: false |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
map_option: 0 | ||
map_class: '' | ||
map_commands: { } |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
toolkit: imagemagick |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@juanmitriatti The
importConfigFile
function requires that the file name not have the extension at the end. Also, there is a problem with that function. It should reference $filename, but it only references the undefined $name variable. So, it doesn't work. I have created a ticket that fixes that problem and issued a pull request. So, now this PR depends on that one (ASUWebPlatforms/webspark-module-webspark_utility#23).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @tbutterf
Pr has been updated, please check.
Thanks for your feedback.