~ubuntu-branches/ubuntu/utopic/gutenprint/utopic

« back to all changes in this revision

Viewing changes to src/cups/genppd.c

  • Committer: Package Import Robot
  • Author(s): Till Kamppeter
  • Date: 2012-02-14 22:41:51 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120214224151-81lkvr2cow0u55f5
Tags: 5.2.8~pre1-0ubuntu1
* New upstream release
  - Added support for Canon BJC 4550, S330, S520, S530D, S630, S750, S820,
    S830D, S900, S9000, PIXMA mini220, mini320, mini360, i50, i70, i450,
    i455, i470D. i550, i900D, i950, i960, i6100, i6500, i9100, i9900,
    iP3300, iP3500, iP3600, iP4900, iP6210D, iP6220D, iP6310D, iP7100,
    iP7500, iP8100, iP8600, iP9910, MP140, MP190, MP210, MP240, MP375R,
    MP470, MP490, MP530, MP900, MG2100, MG3100, MG4100, MG5300, MG6200,
    MG8200, EPSON ME Office 940FW, PX 204, PX 504A, Stylus CX3900, NX530,
    NX635, SX535WD, Stylus Office BX535WD, BX630FW, BX635FWD, TX620FWD,
    Stylus Photo RX650, WorkForce 545, 630, 645, Stylus Pro 7900/9900
    (Partial -- no orange/green inks).
  - Printers redefined: Canon BJC 3000, S300, S500, S600, S800, PIXMA i80,
    i560, i850, i860, i865, iP2000, iP4100, iP5000, MP600, MP750, MP760,
    MP770, MP780, MP790, MP970
  - Support for the following printers was greatly improved, or tested:
    Canon PIXMA MP700, MP710, MP730, MP740, MP950, MP960, MX340, MX350,
    iP4000, MG5100
  - Canon BJC series printers using photo cartridge have printing modes
    added that will select this cartridge.
  - A crash with the EPSON Stylus Photo R3000 has been fixed.
  - Chinese (Mandarin), Galician, and Ukrainian translations have
    been added.
* debian/patches/0001-patch-stdio.h-is-required-by-commandtoepson-and-comm.patch:
  Removed, applied upstream.
* 0002-genppd-don-t-write-color-profile-information-with-br.patch: Refreshed
  with quilt.
* debian/printer-driver-gutenprint.ppd-updater,
  debian/foomatic-db-gutenprint.ppd-updater: Support also pre-releases with
  "-preX" version number extension.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * "$Id: genppd.c,v 1.186 2011/03/13 19:28:50 rlk Exp $"
 
2
 * "$Id: genppd.c,v 1.188 2011/12/18 00:55:16 rlk Exp $"
3
3
 *
4
4
 *   PPD file generation program for the CUPS drivers.
5
5
 *
988
988
  gzprintf(fp, "*ShortNickName: \"%s\"\n", short_long_name);
989
989
 
990
990
 /*
991
 
  * The Windows driver download stuff has problems with NickName fields
992
 
  * with commas.  Now use a dash instead...
993
 
  */
994
 
 
995
 
 /*
996
991
  * NOTE - code in rastertoprinter looks for this version string.
997
992
  * If this is changed, the corresponding change must be made in
998
993
  * rastertoprinter.c.  Look for "ppd->nickname"
1245
1240
  gzputs(fp, "*ColorKeyWords: \"ColorModel\"\n");
1246
1241
  gzprintf(fp, "*OpenUI *ColorModel/%s: PickOne\n", _("Color Model"));
1247
1242
  gzputs(fp, "*OPOptionHints ColorModel: \"radiobuttons\"\n");
1248
 
  gzputs(fp, "*OrderDependency: 10 AnySetup *ColorModel\n");
 
1243
  gzputs(fp, "*OrderDependency: 2 AnySetup *ColorModel\n");
1249
1244
 
1250
1245
  if (printer_is_color)
1251
1246
    {
1314
1309
      gzputs(fp, "*ColorKeyWords: \"StpColorPrecision\"\n");
1315
1310
      gzprintf(fp, "*OpenUI *StpColorPrecision/%s: PickOne\n", _("Color Precision"));
1316
1311
      gzputs(fp, "*OPOptionHints StpColorPrecision: \"radiobuttons\"\n");
1317
 
      gzputs(fp, "*OrderDependency: 10 AnySetup *StpColorPrecision\n");
 
1312
      gzputs(fp, "*OrderDependency: 1 AnySetup *StpColorPrecision\n");
1318
1313
      gzputs(fp, "*DefaultStpColorPrecision: Normal\n");
1319
1314
      gzputs(fp, "*StpDefaultStpColorPrecision: Normal\n");
1320
1315
      gzprintf(fp, "*StpColorPrecision Normal/%s:\t\"<<"
1875
1870
 
1876
1871
#if 0
1877
1872
  /* Macintosh color management */
 
1873
 
1878
1874
  gzputs(fp, "*cupsICCProfile Gray../Grayscale: \"/System/Library/ColorSync/Profiles/sRGB Profile.icc\"\n");
1879
1875
  gzputs(fp, "*cupsICCProfile RGB../Color:      \"/System/Library/ColorSync/Profiles/sRGB Profile.icc\"\n");
1880
1876
  gzputs(fp, "*cupsICCProfile CMYK../Color:     \"/System/Library/ColorSync/Profiles/Generic CMYK Profile.icc\"\n");
2565
2561
 
2566
2562
 
2567
2563
/*
2568
 
 * End of "$Id: genppd.c,v 1.186 2011/03/13 19:28:50 rlk Exp $".
 
2564
 * End of "$Id: genppd.c,v 1.188 2011/12/18 00:55:16 rlk Exp $".
2569
2565
 */