]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Add support for Japanese Kaku 1 envelope size (rdar://34774110)
authorMichael Sweet <michael.r.sweet@gmail.com>
Mon, 2 Oct 2017 23:29:52 +0000 (19:29 -0400)
committerMichael Sweet <michael.r.sweet@gmail.com>
Mon, 2 Oct 2017 23:29:52 +0000 (19:29 -0400)
- Add jpn_kaku1_270x382mm size to table.

CHANGES.md
cups/pwg-media.c

index 7eb6a862c1f0c5fb5dc28f7666e9ba67e3f0ab81..1bdf177b22aad6e34c7c568bac15ed079ad1c118 100644 (file)
@@ -61,6 +61,7 @@ CHANGES IN CUPS V2.2.5
 - Fixed the localization fallback code on macOS (rdar://33583699)
 - The scheduler did not run with a high enough priority, causing problems on
   busy systems (rdar://33789342)
+- Added support for Japanese Kaku 1 envelope size (rdar://34774110)
 - The `ipptool` program's `-P` option did not work correctly.
 - The `ipptool` program did not compare URI scheme or hostname components
   correctly for the WITH-ALL-HOSTNAMES, WITH-ALL-SCHEMES, WITH-HOSTNAME, or
index 73356fd73b73345825ec782616d19872a55be4a8..62455ea6dfad82c70585f1d64fd8b9351310389c 100644 (file)
@@ -189,6 +189,7 @@ static pwg_media_t const cups_pwg_media[] =
   _PWG_MEDIA_MM("jis_b1_728x1030mm", "jis-b1", "B1", 728, 1030),
   _PWG_MEDIA_MM("jis_b0_1030x1456mm", "jis-b0", "B0", 1030, 1456),
   _PWG_MEDIA_MM("jis_exec_216x330mm", NULL, "216x330mm", 216, 330),
+  _PWG_MEDIA_MM("jpn_kaku1_270x382mm", NULL, "EnvKaku1", 270, 382),
   _PWG_MEDIA_MM("jpn_kaku2_240x332mm", NULL, "EnvKaku2", 240, 332),
   _PWG_MEDIA_MM("jpn_kaku3_216x277mm", NULL, "EnvKaku3", 216, 277),
   _PWG_MEDIA_MM("jpn_kaku4_197x267mm", NULL, "EnvKaku4", 197, 267),