metaclean 4.3.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/SECURITY.md +4 -1
- data/lib/metaclean/cli.rb +0 -1
- data/lib/metaclean/version.rb +1 -1
- data/lib/metaclean.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c428b3f2958e89cf07a3cc42602ec6f4716cc30cd7d83ca248830f46884a38a6
|
|
4
|
+
data.tar.gz: b9e573fb8bf73fd0a593ad251d7f38109a38b4c45544774e3f7176d389968bc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38c1773439adfceb3903fa989494813995a84f023c7ac7effe9122d3c603896133635fa9c9ba900cdb65f47ee7efaeb28ede85e9543c74b54ea09efcd520fcad
|
|
7
|
+
data.tar.gz: 23a2d419fd75ee953188252b3ba0ea95e27e6f888fd5a26895e267117e77d6b8d9015220bb5d9f1bc58ed18b84d833e3e4c4a7889883601d333e06be4dce1613
|
data/SECURITY.md
CHANGED
|
@@ -46,7 +46,10 @@ clean while such metadata survives is a security issue.
|
|
|
46
46
|
|
|
47
47
|
A non-standard ICC profile (one whose description is not a recognized standard
|
|
48
48
|
color space) blocks commit unless the user explicitly accepts its identifying
|
|
49
|
-
fields with `--allow-icc-metadata`; standard color spaces clean without it.
|
|
49
|
+
fields with `--allow-icc-metadata`; standard color spaces clean without it. This
|
|
50
|
+
determination trusts the profile's own `ProfileDescription`: a profile whose
|
|
51
|
+
description matches a recognized color space is treated as non-identifying, so
|
|
52
|
+
its remaining ICC fields are not flagged.
|
|
50
53
|
|
|
51
54
|
## Supported versions
|
|
52
55
|
|
data/lib/metaclean/cli.rb
CHANGED
data/lib/metaclean/version.rb
CHANGED
data/lib/metaclean.rb
CHANGED
|
@@ -118,7 +118,7 @@ module Metaclean
|
|
|
118
118
|
missing << 'exiftool' unless Exiftool.available?
|
|
119
119
|
missing << 'mat2' unless Mat2.available?
|
|
120
120
|
missing << 'qpdf' unless Qpdf.available?
|
|
121
|
-
missing << 'ffmpeg'
|
|
121
|
+
missing << 'ffmpeg (with ffprobe)' unless Ffmpeg.available?
|
|
122
122
|
missing << 'cp with metadata preservation' if in_place && !FileOps.metadata_copy_supported?
|
|
123
123
|
return if missing.empty?
|
|
124
124
|
|