plug-ins/print/RELNOTES Version 4.0.2 (this time the official one, not

2000-11-08  Michael Natterer  <mitch@gimp.org>

	* plug-ins/print/RELNOTES
	* plug-ins/print/print-canon.c: Version 4.0.2 (this time the
	official one, not just the README saying 4.0.2 :)
This commit is contained in:
Michael Natterer 2000-11-07 23:23:02 +00:00 committed by Michael Natterer
parent 312c680047
commit bf18b4b7c9
3 changed files with 19 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2000-11-08 Michael Natterer <mitch@gimp.org>
* plug-ins/print/RELNOTES
* plug-ins/print/print-canon.c: Version 4.0.2 (this time the
official one, not just the README saying 4.0.2 :)
2000-11-08 Michael Natterer <mitch@gimp.org>
* Makefile.am

View file

@ -13,10 +13,13 @@ Gimp-Print 4.0.2 contains the following fixes over Gimp-Print 4.0.1:
prints multi-page documents correctly. 4.0.0, 4.0.1, and some
earlier versions printed each page progressively paler.
2) The CUPS driver now prints with proper density on all printers. In
4.0.0 and 4.0.1 it printed too pale with all non-Epson printers,
and the Epson Stylus Photo 870 and 1270 printed with a slight
magenta cast.
2) The CUPS driver should now print with proper density on all
printers. In 4.0.0 and 4.0.1 it printed too pale with most
printers.
3) The Canon driver failed (in GhostScript and CUPS) if no InkType was
specified. It now defaults to a reasonable choice based on the
printer model.
Gimp-Print 4.0.1 contains the following fixes over Gimp-Print 4.0.0:

View file

@ -315,6 +315,12 @@ canon_printhead_type(const char *name, canon_cap_t caps)
if (!strcmp(name,"Photo")) return 4;
if (!strcmp(name,"Black/Photo Color")) return 5;
if (*name == 0) {
if (caps.inks & CANON_INK_CMYK) return 2;
if (caps.inks & CANON_INK_CMY) return 1;
if (caps.inks & CANON_INK_K) return 0;
}
#ifdef DEBUG
fprintf(stderr,"canon: Unknown head combo '%s' - reverting to black\n",name);
#endif