GraphicsMagick: 2 new changesets
GraphicsMagick Commits <[email protected]>
| Newsgroups | gmane.comp.video.graphicsmagick.cvs |
|---|---|
| Message-ID | <mailman.39525.1672809888.1350.graphicsmagick-commit@lists.sourceforge.net> |
changeset a71974e36eb0 in /hg/GraphicsMagick details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=a71974e36eb0 summary: VisualMagick/tests/runtest.bat Added new tests for PGX (jp2), MAT, uncommented test for EPDF and PICON. changeset 8a2f008e12a9 in /hg/GraphicsMagick details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=8a2f008e12a9 summary: merge heads diffstat: ChangeLog | 5 +++++ VisualMagick/installer/inc/version.isx | 4 ++-- VisualMagick/tests/runtest.bat | 30 ++++++++++++++++++++++++------ magick/version.h | 4 ++-- www/Changelog.html | 22 ++++++++++++++++++++++ 5 files changed, 55 insertions(+), 10 deletions(-) diffs (153 lines): diff -r 2b58e96d9056 -r 8a2f008e12a9 ChangeLog --- a/ChangeLog Tue Jan 03 17:42:53 2023 +0100 +++ b/ChangeLog Wed Jan 04 06:24:22 2023 +0100 @@ -1,3 +1,8 @@ +2023-01-04 Fojtik Jaroslav <[email protected]> + + * VisualMagick/tests/runtest.bat Added new tests for PGX (jp2), MAT, + uncommented test for EPDF and PICON. + 2023-01-03 Fojtik Jaroslav <[email protected]> * VisualMagick/jp2/src/appl/UTILITY.txt removed fuzz.c. diff -r 2b58e96d9056 -r 8a2f008e12a9 VisualMagick/installer/inc/version.isx --- a/VisualMagick/installer/inc/version.isx Tue Jan 03 17:42:53 2023 +0100 +++ b/VisualMagick/installer/inc/version.isx Wed Jan 04 06:24:22 2023 +0100 @@ -10,5 +10,5 @@ #define public MagickPackageName "GraphicsMagick" #define public MagickPackageVersion "1.4" -#define public MagickPackageVersionAddendum ".020230102" -#define public MagickPackageReleaseDate "snapshot-20230102" +#define public MagickPackageVersionAddendum ".020230103" +#define public MagickPackageReleaseDate "snapshot-20230103" diff -r 2b58e96d9056 -r 8a2f008e12a9 VisualMagick/tests/runtest.bat --- a/VisualMagick/tests/runtest.bat Tue Jan 03 17:42:53 2023 +0100 +++ b/VisualMagick/tests/runtest.bat Wed Jan 04 06:24:22 2023 +0100 @@ -28,16 +28,22 @@ :_testall call :_dorwtest both AVS if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both ART +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both BMP if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both CAL +if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both CIN +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both CMYK if not %COUNT% EQU 6 goto :_failed call :_dorwtest both DIB if not %COUNT% EQU 6 goto :_failed call :_dorwtest both DPX if not %COUNT% EQU 6 goto :_failed -:call :_dorwtest both EPDF -:if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both EPDF +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both EPSF if not %COUNT% EQU 6 goto :_failed call :_dorwtest both EPSI @@ -56,6 +62,9 @@ if not %COUNT% EQU 6 goto :_failed call :_dorwtest both GRAY if not %COUNT% EQU 6 goto :_failed +@rem This test is failing! +call :_dorwtest both HTML +@rem if not %COUNT% EQU 6 goto :_failed call :_dorwtest both ICB if not %COUNT% EQU 6 goto :_failed call :_dorwtest both JBIG @@ -66,6 +75,11 @@ if not %COUNT% EQU 6 goto :_failed call :_dorwtest both JNG if not %COUNT% EQU 6 goto :_failed +@rem This test is failing! +call :_dorwtest both MAP +@rem if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both MAT +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both MIFF if not %COUNT% EQU 6 goto :_failed call :_dorwtest both MNG @@ -86,8 +100,10 @@ if not %COUNT% EQU 6 goto :_failed call :_dorwtest both PGM if not %COUNT% EQU 6 goto :_failed -:call :_dorwtest both PICON -:if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both PGX +if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both PICON +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both PICT if not %COUNT% EQU 6 goto :_failed call :_dorwtest both PNG @@ -97,9 +113,9 @@ call :_dorwtest both PPM if not %COUNT% EQU 6 goto :_failed call :_dorwtest both PS -: if not %COUNT% EQU 6 goto :_failed -: call :_dorwtest both PSD if not %COUNT% EQU 6 goto :_failed +@rem call :_dorwtest both PSD +@rem if not %COUNT% EQU 6 goto :_failed call :_dorwtest both PTIF if not %COUNT% EQU 6 goto :_failed call :_dorwtest both RAS @@ -116,6 +132,8 @@ if not %COUNT% EQU 6 goto :_failed call :_dorwtest both TIFF if not %COUNT% EQU 6 goto :_failed +call :_dorwtest both TXT +if not %COUNT% EQU 6 goto :_failed call :_dorwtest both UYVY if not %COUNT% EQU 6 goto :_failed call :_dorwtest both VDA diff -r 2b58e96d9056 -r 8a2f008e12a9 magick/version.h --- a/magick/version.h Tue Jan 03 17:42:53 2023 +0100 +++ b/magick/version.h Wed Jan 04 06:24:22 2023 +0100 @@ -38,8 +38,8 @@ #define MagickLibVersion 0x272401 #define MagickLibVersionText "1.4" #define MagickLibVersionNumber 27,24,1 -#define MagickChangeDate "20230102" -#define MagickReleaseDate "snapshot-20230102" +#define MagickChangeDate "20230103" +#define MagickReleaseDate "snapshot-20230103" /* The MagickLibInterfaceNewest and MagickLibInterfaceOldest defines diff -r 2b58e96d9056 -r 8a2f008e12a9 www/Changelog.html --- a/www/Changelog.html Tue Jan 03 17:42:53 2023 +0100 +++ b/www/Changelog.html Wed Jan 04 06:24:22 2023 +0100 @@ -37,6 +37,28 @@ </div> <div class="document"> +<p>2023-01-03 Fojtik Jaroslav <<a class="reference external" href="mailto:JaFojtik%40yandex.com">JaFojtik<span>@</span>yandex<span>.</span>com</a>></p> +<blockquote> +<ul class="simple"> +<li><p>VisualMagick/jp2/src/appl/UTILITY.txt removed fuzz.c.</p></li> +</ul> +</blockquote> +<p>2023-01-03 Fojtik Jaroslav <<a class="reference external" href="mailto:JaFojtik%40yandex.com">JaFojtik<span>@</span>yandex<span>.</span>com</a>></p> +<blockquote> +<blockquote> +<ul class="simple"> +<li><p>VisualMagick/jp2/src/libjasper/pgx/LIBRARY.txt</p></li> +</ul> +</blockquote> +<div class="system-message"> +<p class="system-message-title">System Message: WARNING/2 (<span class="docutils literal"><string></span>, line 8)</p> +<p>Block quote ends without a blank line; unexpected unindent.</p> +</div> +<ul class="simple"> +<li><p>jp2/src/libjasper/include/jasper/jas_config.h +PGX codec was not compilled into gm, now added.</p></li> +</ul> +</blockquote> <p>2023-01-02 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> <blockquote> <ul class="simple">