This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
/
ChangeLog
1841 lines (1379 loc) · 67.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2015-10-24 Rick Richardson <[email protected]>
* foomatic-db/printer/Epson-AcuLaser_CX17NF.xml:
Change margins on Epson AcuLaser CX17NF.
2015-10-11 Rick Richardson <[email protected]>
* New Printer: Epson AcuLaser CX17NF using the foo2hbpl2 driver.
2015-07-04 pavel.shvagirev <[email protected]>
* Modify: hplj10XX to not call us twice on Ubuntu 14.
2015-05-11 Rick Richardson <[email protected]>
* Bug in foomatic-db/printer/Xerox-Phaser_6115MFP.xml . Should use
foo2lava driver. Thanks to user "ophers".
2015-02-11 Rick Richardson <[email protected]>
* New Printer: Oki C511 using foo2hiperc.
2014-12-21 Rick Richardson <[email protected]>
* osx-hotplug: make it work with OS X 10.10
2014-12-04 Rick Richardson <[email protected]>
* make cups: add "Sandboxing Relaxed" to cups-files.conf iff cups >= 2
2014-09-25 Rick Richardson <[email protected]>
* foo2hblp2, foo2hblp2-wrapper, foomatic et al:
Add paper size A5.
* foo2hblp2 foomatic db entries:
Changed resolution to 600x600, 1200x600, and 1200x1200.
Note: need to recreate the printers if you want more choices!
2014-05-19 Rick Richardson <[email protected]>
* HP CLJ CP1215: Adjust margins: *HWMargins: 18 14.40 18 14
2014-05-04 Rick Richardson <[email protected]>
* foo2hbpl2-wrapper: Change PAPER=21 to PAPER=0 for custom page sizes.
2014-04-17 Rick Richardson <[email protected]>
* New Printer: Fuji Xerox DocuPrint CM215 MFP using the foo2hbpl2
driver.
2014-04-08 Rick Richardson <[email protected]>
* Upgrade to JBIGKIT 2.1
2014-04-01 Rick Richardson <[email protected]>
* foo2hbpl2 foomatic-db files and PPDs:
Bug with default PageSize.
PLEASE delete and recreate the foo2hbpl2 printers.
2014-03-22 Rick Richardson <[email protected]>
* hbpldecode: another redundancy from Dave Coffin
2014-03-18 Rick Richardson <[email protected]>
* hbpldecode: More envelope sizes.
2014-03-17 Rick Richardson <[email protected]>
* foo2hbpl2.c: Bug, was using A4(1) instead of letter(4) by default
* hbpldecode: Print out paper codes.
2014-03-15 Rick Richardson <[email protected]>
* hbpldecode: More changes from Dave. Still gets
Segmentation fault (core dumped)
* hbpldecode: Changed unsigned to int in 2 places. Works good!!!
2014-03-13 Rick Richardson <[email protected]>
* hbpldecode: Bug with no -d/-r.
2014-03-13 Rick Richardson <[email protected]>
* hbpldecode: Changes to pick apart version 1 from
Dave Coffin <[email protected]>
* I get:
Decoding page 1 to page-01.ppm ...
Segmentation fault (core dumped)
2014-03-02 Rick Richardson <[email protected]>
* New Printer: Fuji Xerox DocuPrint M215 MFP using the foo2hbpl2 driver.
2014-02-09 Rick Richardson <[email protected]>
* New Printer: Xerox WorkCentre 3045 MFP using the foo2hbpl2 driver.
2014-01-26 Rick Richardson <[email protected]>
* foo2qpdl et al: with -z3 (e.g. CLP-365) you can adjust
Brightness and Contrast for monochrome prints, and you can adjust
Saturation, Cyan-Red, Magenta-Green, Yellow-Blue Balances.
* foo2hp: somewhere a bug in foomatic (probably 4.x) crept in
so foo2hp-AlignCMYK.xml was only processing one option instead
of three options! Split the file into foo2hp-AlignC.xml,
foo2hp-AlignM.xml, and foo2hp-AlignY.xml.
2014-01-24 Rick Richardson <[email protected]>
* New Printer: Dell C1765nf/nfw using the foo2hbpl2 driver.
2014-01-08 Rick Richardson <[email protected]>
* New Printer: Epson AcuLaser M1400 using the foo2hbpl2 driver.
2013-12-25 Rick Richardson <[email protected]>
* New Printer: HP LaserJet Pro M1212nf MFP using the foo2xqx driver.
2013-12-01 Rick Richardson <[email protected]>
* foo2hiperc: clean up man pages
2013-11-29 Rick Richardson <[email protected]>
* foo2hiperc-wrapper, foomatic and PPD stuff:
add -z1 for Oki C810 so everything will be
rotated 90 degrees EXCEPT paper==a3 OR paper==ledger/tabloid
2013-11-18 Rick Richardson <[email protected]>
* New Printer: Oki C810 with A3 size paper.
2013-08-13 Rick Richardson <[email protected]>
* printer-profile: add Samsung clp-365.
2013-08-06 Rick Richardson <[email protected]>
* New Printer: Fuji Xerox DocuPrint P205
* foo2hbpl2: Bpp = ResX / ResY
2013-07-31 Rick Richardson <[email protected]>
* foo2zjs-pstops: Fix for FreeBSD
2013-06-18 Rick Richardson <[email protected]>
* Fix typo's in manual pages.
2013-05-27 Rick Richardson <[email protected]>
* foomatic-db/printer/Samsung-CLX-3185.xml: fix typo
"Please move "FileDevice Yes" on line 139 of /etc/cups/cupsd.conf
2013-03-21 Rick Richardson <[email protected]>
* Makefile: change cups target /etc/cups/cups-files.conf if it exists.
"Please move "FileDevice Yes" on line 139 of /etc/cups/cupsd.conf
to the /etc/cups/cups-files.conf file; this will become an error
in a future release."
2013-03-06 Rick Richardson <[email protected]>
* cleanup on foo2hblp2.
2013-03-03 Rick Richardson <[email protected]>
* printer-profile: add dell 1355.
* foo2hbpl2: merge in changes from Peter Korf <[email protected]>
* hbpldecode: swap yellow and cyan
* New Printers: Fuji Xerox DocuPrint CM205
* hbpldecode: implement -d option
2013-03-02 Rick Richardson <[email protected]>
* foo2hbpl2 et al: Added manual pages.
* foo2hbpl2 et al: added new page sizes for envelopes
2013-03-01 Rick Richardson <[email protected]>
* foo2hbpl2, foo2hbpl2-wrapper, foomatic and PPD stuff: Added
* New Printers: Dell 1355 and Xerox WorkCentre 6015
- pre-alpha quality !!!!!!
* merge in changes from Peter Korf <[email protected]>
2013-02-20 Rick Richardson <[email protected]>
* install-hotplug: Fedora 18 changed "/usr/lib/udev/udevd"
to "/usr/lib/systemd/systemd-udevd".
2013-02-19 Rick Richardson <[email protected]>
* hbpldecode: Handle \r\n in the PCL stream.
* hbpldecode: Update for HBPL version 2
2013-01-22 Rick Richardson <[email protected]>
* New Printer: Samsung CLX-3185, CLX-3185FW
2013-01-14 Rick Richardson <[email protected]>
* hplj10xx_gui.tcl: Bug: add "replace" parm in "old"
2013-01-13 Rick Richardson <[email protected]>
* hplj1000: add a sleep 3
2013-01-04 Rick Richardson <[email protected]>
* New Printer: Okidata C301dn
2013-01-02 Rick Richardson <[email protected]>
* New Printer: Samsung CLP-365W
2012-09-09 Rick Richardson <[email protected]>
* Makefile: Add DESTDIR to CUPS_SERVERBIN
2012-06-01 Rick Richardson <[email protected]>
* Makefile, hplj1000: remove /lib/udev/rules.d/86-hpmud_plugin.rules
Same thing as 2010-12-10, different path!
2012-05-10 Rick Richardson <[email protected]>
* Makefile: gratiutous movement of udevd in F17
2012-05-04 Rick Richardson <[email protected]>
* hplj1000: put an "exit" in
2012-02-23 Rick Richardson <[email protected]>
* foo2zjs-pstops: put gs9 code in, but no CMYK color profiles (yet).
2011-12-27 Rick Richardson <[email protected]>
* Makefile: install-ppd for Mac
2011-12-26 Rick Richardson <[email protected]>
* Makefile: make cups FileDevice Yes
2011-12-02 Rick Richardson <[email protected]>
* Makefile: ignore warning from missing cups-config
* Makefile: "make cups" for Fedora 16
2011-11-23 Rick Richardson <[email protected]>
* Makefile: command2foo2lava-pjl won't work with cups < 1.4
* foo2zjs-pstops.sh: also do %%Page: (1) 1
2011-11-12 Rick Richardson <[email protected]>
* foo2zjs: there is a bug in HP printers p1102 (-z2) and
cp1025 (-z3). Workaround is to set MX=0.
* foo2zjs-wrapper: fix initial offset for -z2 and -z3 printers.
2011-11-08 Rick Richardson <[email protected]>
* foo2oak: don't error out if padlen == 0
2011-11-05 Rick Richardson <[email protected]>
* Makefile: change "make cups" target to also add a "FileDev Yes" line
to /etc/cups/cupsd.conf. Because cups 1.4.6+ does not like
the usb:/dev/usb/lp0 syntax, but file:/dev/usb/lp0 works.
2011-10-23 Rick Richardson <[email protected]>
* updated the C110 ieee1284 string.
2011-10-23 Rick Richardson <[email protected]>
* foo2zjs-wrapper: put gs9 code in, but no CMYK color profiles (yet).
2011-10-20 Rick Richardson <[email protected]>
* hplj1000: Reverse the checks for Ubuntu 11.10.
2011-10-14 Rick Richardson <[email protected]>
* foomatic-db, PPDs: New printer "KONICA_MINOLTA-magicolor_2430"
like Minolta-magicolor_2430 except for Manufacturer.
2011-10-14 Till Kamppeeter <[email protected]>
* hplj1000: make it work with usblp and CUPS (libusb)
2011-10-10 Rick Richardson <[email protected]>
* lavadecode: print the compression (JBIG or unknown)
2011-10-09 Rick Richardson <[email protected]>
* lavadecode: adjust for magicolor 3730
2011-09-01 Rick Richardson <[email protected]>
* Updated: printer-profile script to Argyll_V1.3.4
2011-08-10 Rick Richardson <[email protected]>
* foomatic-db, PPDs: Bug with Samsung CLP-325, CLP-325W.
PLEASE delete and recreate CLP-325 printers.
2011-08-07 Rick Richardson <[email protected]>
* foo2oak-wrapper: KM-1635/2035: don't rotate on A3 or ledger size paper
2011-07-31 Rick Richardson <[email protected]>
* Makefile: all-test checks for dc -V and gsed (OSX only).
2011-07-30 Rick Richardson <[email protected]>
* foo2zjs-pstops: Use gsed instead of sed on Mac OSX
2011-07-22 Rick Richardson <[email protected]>
* osx-hotplug/osx-hplj-hotplug.m: cleanup for xcode 4.x
2011-07-17 Rick Richardson <[email protected]>
* opt/foo2lava-ColorMode.xml, PPD's: Removed -C1 -C2 -C3 opts;
they are for magicolor 2300 DL only.
2011-06-09 Rick Richardson <[email protected]>
* Cleanup: remove "unused-but-set-variable".
2011-06-02 Rick Richardson <[email protected]>
* New program: hbpldecode for decoding Fuji-Zerox cp105b
and Dell 1250c.
2011-05-25 Rick Richardson <[email protected]>
* make install on Fedora 15:
Use "rpm -e --nodeps system-config-printer-udev" instead of "yum".
2011-03-08 Rick Richardson <[email protected]>
* hplj10xx.conf: For FreeBSD 8, s/zjx/xqx/ for HP LJ P???? printers
Ref: Yury G. Kudryashov <[email protected]>
2011-02-10 Rick Richardson <[email protected]>
* Makefile: fix perms on PPD files.
2011-01-31 Rick Richardson <[email protected]>
* New Printer: Oki C310dn.
2011-01-23 Rick Richardson <[email protected]>
* osx-hotplug/osx-hplj-hotplug.1in: Man page
2011-01-21 Rick Richardson <[email protected]>
* osx-hotplug/osx-hplj-hotplug.m:
If FWVER is present, then no download is needed.
2011-01-20 Rick Richardson <[email protected]>
* Makefile: make install-hotplug for OSX.
2011-01-19 Rick Richardson <[email protected]>
* Change foo2hp2600-wrapper to remove "expr substr ..." and
replace it with "echo ... | sed ..." for OSX (because expr != gexpr)
2011-01-18 Rick Richardson <[email protected]>
* New program: osx-hplj-hotplug
Does hotplug on Mac OSX. Add a line to /etc/rc.local and reboot:
killall osx-hplj-hotplug; osx-hplj-hotplug \
>/tmp/osx-hplj-hotplug 2>&1 &
2011-04-15 Rick Richardson <[email protected]>
* New Printer: Samsung CLP-325, CLP-325W.
2011-03-08 Rick Richardson <[email protected]>
* hplj10xx.conf: For FreeBSD 8, s/zjx/xqx/ for HP LJ P???? printers
Ref: Yury G. Kudryashov <[email protected]>
2011-02-10 Rick Richardson <[email protected]>
* Makefile: fix perms on PPD files.
2011-01-31 Rick Richardson <[email protected]>
* New Printer: Oki C310dn.
2011-01-23 Rick Richardson <[email protected]>
* osx-hotplug/osx-hplj-hotplug.1in: Man page
2011-01-21 Rick Richardson <[email protected]>
* osx-hotplug/osx-hplj-hotplug.m:
If FWVER is present, then no download is needed.
2011-01-20 Rick Richardson <[email protected]>
* Makefile: make install-hotplug for OSX.
2011-01-19 Rick Richardson <[email protected]>
* Change foo2hp2600-wrapper to remove "expr substr ..." and
replace it with "echo ... | sed ..." for OSX (because expr != gexpr)
2011-01-18 Rick Richardson <[email protected]>
* New program: osx-hplj-hotplug
Does hotplug on Mac OSX. Add a line to /etc/rc.local and reboot:
killall osx-hplj-hotplug; osx-hplj-hotplug \
>/tmp/osx-hplj-hotplug 2>&1 &
2011-01-14 Rick Richardson <[email protected]>
* foo2*-wrapper, foomatic-db, PPDs: Add Halftone Algoritm.
Standard (QUALITY=1), Accurate Screens (QUALITY=as),
Well Tempered Screens (QUALITY=wts). WTS is the default.
PLEASE delete and recreate ALL printers.
2011-01-09 Rick Richardson <[email protected]>
* foo2*-wrapper:
use QUALITY=1 instead of QUALITY=wts due to a bug in gs (8.71+)
2011-01-09 Rick Richardson <[email protected]>
* foomatic-db, PPDs: Change ICM value for CLX-3175 (comestic)
2010-12-22 Rick Richardson <[email protected]>
* New printers: HP LaserJet 1022n, HP LaserJet 1022nw
* hplj1020.desktop: change Name and Comment
2010-12-13 Rick Richardson <[email protected]>
* foo2zjs.c: with -z3, use BIH width for ZJI_RASTER_X
Tested with a real HP LaserJet Pro CP1025nw printer.
* ICM for -z3 is done. Do: make; ./getweb 1025; make install
and PLEASE delete and recreate the foo2zjs-z3 printers
2010-12-12 Rick Richardson <[email protected]>
* foo2zjs.c: with -z3, adjust to mod(128) pixels.
2010-12-10 Rick Richardson <[email protected]>
* Makefile, hplj1000 et al:
rm /etc/udev/rules.d/*hpmud*laserjet_{1000,1005,1018, 1020,
p1005,p1006,p1007,p1008,p1505}*
Needed for Ubuntu 10.04 and greater with the proprietary "hplip"
package installed.
rm /etc/udev/rules.d/*hpmud_support.rules
Needed for Fedora 13+
2010-12-09 Rick Richardson <[email protected]>
* foo2zjs.c, foo2zjs-wrapper.in, zjsdecode, ppd/*, foomatic-db/*:
Add 4x6, 5x8, and 10x15 page size for HP LaserJet Pro CP1025nw
2010-12-08 Rick Richardson <[email protected]>
* foo2zjs.c, foo2zjs-wrapper.in, zjsdecode:
Add -z3 for HP LaserJet Pro CP1025nw
* New Printer: HP LaserJet Pro CP1025nw
ALPHA quality!!! No ICM for color yet!!!
2010-11-12 Rick Richardson <[email protected]>
* New Printer: Olivetti d-Color P160W
2010-11-02 Rick Richardson <[email protected]>
* foo2oak-wrapper: Change default HP CLJ 1500 ICM file. Do:
make; ./getweb 1500; make install
2010-10-26 Rick Richardson <[email protected]>
* foo2*wrapper: Typo in GAMMAFILE
2010-10-26 József CZOMPÓ <[email protected]>
* foo2oak et al: Add tray 2.
* foo2oak.c: make -A and -B compatible with foo2hp, foo2zjs.
2010-10-16 Rick Richardson <[email protected]>
* foo2lava.c: Iff MODE_COLOR and nbie = 1, then it is a mono page.
2010-10-12 Rick Richardson <[email protected]>
* getweb: move dl2300.tar.gz
2010-08-17 Rick Richardson <[email protected]>
* New foo2lava printer: Xerox Phaser 6121MFP (printer only)
2010-08-09 Rick Richardson <[email protected]>
* Makefile: only do command2foo2lava-pjl IFF cups-devel package
is installed
2010-08-07 Rick Richardson <[email protected]>
* foo2qpdl: -z3 resolution
2010-07-28 Rick Richardson <[email protected]>
* Added manual page for foo2zjs-icc2ps.
2010-07-26 Rick Richardson <[email protected]>
* command2foo2lava-pjl.c: switched to use foo2zjsNegateMarkerLevels
2010-07-25 Rick Richardson <[email protected]>
* command2foo2lava-pjl.c: improved formatting
2010-07-24 Rick Richardson <[email protected]>
* foo2*-wrapper: add eval gs.foo for BSD
2010-07-22 Rick Richardson <[email protected]>
* Modify "modify-ppd" file for *cupsSNMPSupplies: False
* Modify: foo2zjs for Duplex and -z2 (HP P1606dn)
2010-07-20 Rick Richardson <[email protected]>
* Reinhold Kainhofer <[email protected]>
* New file: command2foo2lava-pjl.c
* New file: modify-ppd
* Change PPD's for Konica Minolta mc1600W, mc1680MF, mc1690MF,
mc2490 MF, mc2530 DL, mc4690MF, and Oki C110 if cups-devel
is installed.
Used for reporting marker (toner) levels via PJL on
foo2lava printers.
* command2foo2lava-pjl.c: Add a sleep(5) for mc2530 DL
* command2foo2lava-pjl.c: Add IMGDRUM, CONSUMETONERCOUNTERFEIT*
* command2foo2lava-pjl.c: Read PPD file for product
2010-06-20 Rick Richardson <[email protected]>
* foo2zjs, foo2zjs-wrapper, foomatic and ppd file:
Add Printer Density. For HP zjs printers. Please remove
and recreate the printers.
2010-06-19 Rick Richardson <[email protected]>
* Add manual page for gipddecode.
* foo2xqx, foo2xqx-wrapper, foomatic and ppd file:
Add Printer Density. For HP xqx printers. Please remove
and recreate the printers.
2010-06-15 Rick Richardson <[email protected]>
* foo2qpdl foomatic-db and PPD files: fix Duplex for clp-6100, clp-610,
clp-620. Manual Duplex is no longer supported. Use Gnome-Manual-Duplex
instead.
Please delete and recreate the Samsung CLP-6?? printers.
* New Printer: Oki C110
2010-05-28 Rick Richardson <[email protected]>
* Split out foo2zjs into:
foo2zjs - Minolta 2200 DL, 2300 DL, HP 1000, HP 1005
foo2zjs-z1 - HP 1018, 1020, 1022, M1319MFP, P2035
foo2zjs-z2 - HP Laserjet Pro P1102, P1102w, P1566, P1606dn
* Add new paper sizes and media types to foo2zjs-z1 and foo2zjs-z2
A6, 16K *, Postcard and Double Postcard, German Legal (8.5 x 13!)
* PLEASE delete and recreate the foo2zjs-z1 and foo2zjs-z2 printers!!!
Otherwise, Page Size will be "Letter" even if you set it to A4.
This is a Cups problem (cups-1.4.2-26.fc11.i586).
2010-05-24 Rick Richardson <[email protected]>
* Modify: foo2xxx-{Copies,Nup,NupOrient}.xml: include foo2oak-z1 driver
2010-05-07 Rick Richardson <[email protected]>
* Modify: foo2zjs.c: if Model == MODEL_HP_PRO, blank initial lines
for 0.25". Sheesh!!!
* Modify: foo2zjs-wrapper: -z2 set_clipping <x1> 2 <x2> <y2>
2010-05-06 Rick Richardson <[email protected]>
* Modify: foo2qpdl.c: modolo 256 on custom paper size.
2010-05-04 Rick Richardson <[email protected]>
* Modify: foo2qpdl-wrapper: modolo 256 some papers (i.e. env#10)
2010-05-02 Rick Richardson <[email protected]>
* Modify: hplj10xx_gui.tcl to put in the status
2010-05-01 Rick Richardson <[email protected]>
* Upgrade P1005, P1006, P1505 firmware to 09/16/2009
2010-04-29 Rick Richardson <[email protected]>
* Modify: hplj10xx_gui.tcl to put in the pagecount
2010-04-21 Rick Richardson <[email protected]>
* New Printers: Oki C5650
2010-04-12 Rick Richardson <[email protected]>
* New Printers: HP LaserJet Pro P1102, P1102w
* New Printers: HP LaserJet Pro P1566
* New Printers: HP LaserJet Pro P1606dn
2010-04-09 Rick Richardson <[email protected]>
* hplj10xx.rules: implement old(1.47-) and new(1.48+) rules
2010-03-29 Rick Richardson <[email protected]>
* New Printer: Samsung CLP-620 added to foo2qpdl et al.
2010-03-26 Rick Richardson <[email protected]>
* Makefile: install-hotplug: remove system-config-printer-udev.
2010-03-11 Rick Richardson <[email protected]>
* foo2xqx-wrapper: Add -p257, -p263, -p264 for 16K* paper.
* foomatic-db and .ppd files: Add three 16K papers to foo2xqx driver.
* Makefile: Get rid of Ubuntu 9.*'s
/lib/udev/rules.d/85-hplj10xx.rules
because it does not work!
2010-03-07 Rick Richardson <[email protected]>
* foo2*-wrapper: Bug fix for custom page size. Some versions
of CUPS don't embed the size in the PS file:
%%BeginFeature: *CustomPageSize True
552.755920410156 765.354370117188 1 0.000000 0.000000
and only list it in the command line:
foo2zjs-wrapper -pCustom.533x765
* Fix WARN with cupstestppd PPD/*.ppd:
EnvB5 -> EnvISOB5
Nup -> NupPages
* Fix FAIL with cupstestppd PPD/*.ppd:
ManualDuplex -> no (replaced by GnomeManualDuplex)
http://sourceforge.net/projects/g-manual-duplex/
2010-03-06 Rick Richardson <[email protected]>
* New Printers: HP LaserJet P1505n, P2014n, P2035n
2010-03-02 Rick Richardson <[email protected]>
* Updated foo2lava manual pages
* Adjust Makefile so it doesn't do some tests (gs 8.71 is flaky)
2010-02-26 Rick Richardson <[email protected]>
* Added freebsd-install for FreeBSD 8.x
2010-02-25 Rick Richardson <[email protected]>
* Added /etc/devd/hplj10xx.conf for FreeBSD 8.x
2010-02-07 Rick Richardson <[email protected]>
* foo2hp2600-wrapper: add -O to log for debugging.
2010-01-23 Rick Richardson <[email protected]>
* hplj1000 install-usblp: remove bug
2010-01-06 Rick Richardson <[email protected]>
* Updated: printer-profile script to Argyll_V1.1.0_RC4
2009-12-03 Rick Richardson <[email protected]>
* foo2hiperc.c: C5600: Set Duplex like this:
if (Duplex == DMDUPLEX_OFF)
rec[6] = be32(0);
else
rec[6] = be32( (PageNum & 1) ? 0x100 : 0x200);
* foo2hiperc.c: Don't do EvenPages() when auto-duplex.
2009-11-12 Rick Richardson <[email protected]>
* foo2xqx.c: set PJL ECONOMODE ON/OFF
2009-11-06 Rick Richardson <[email protected]>
* Updated: printer-profile script to Argyll_V1.1.0_RC1
2009-10-27 Rick Richardson <[email protected]>
* hplj1000: add an exit 0 to install-usblp
2009-10-25 jkan <[email protected]>
* foo2hp.c: add alignment for -b2
2009-10-17 Rick Richardson <[email protected]>
* clp-310: fix PPD file
2009-10-14 Rick Richardson <[email protected]>
* foo2oak: Fix sprintf bug
2009-10-13 Rick Richardson <[email protected]>
* foo2oak, foo2oak-wrapper: Add short edge
2009-10-12 Rick Richardson <[email protected]>
* foo2oak, foo2oak-wrapper:
Change papercode UNK for KM-1635
Add OAK_DRIVER record.
Adjust JBG parms
2009-10-10 Rick Richardson <[email protected]>
* foo2oak: Add a DUPLEX record type.
2009-10-09 Rick Richardson <[email protected]>
* foo2oak, foo2oak-wrapper, foomatic, and PPD's:
Add Duplex option for Kyocera Mita KM-1635, KM-2035.
2009-09-22 Rick Richardson <[email protected]>
* foo2hp, foo2hp2600-wrapper, foomatic, and PPD's:
HP LJC CP1215: Add alignment for Cyan, Magenta, or Yellow.
2009-09-08 Rick Richardson <[email protected]>
* For Ubuntu 9.10 Alpha 5: fix Makefile and hplj1000
to *not* list usblp in /etc/modprobe.d/blacklist*
2009-06-23 Rick Richardson <[email protected]>
* Moved: Minolta-QMS Page Page, 2200 DL, 2300 DL *.icm files
2009-06-14 Rick Richardson <[email protected]>
* New foo2lava printer:
Konica-Minolta magicolor 4690MF
* upgate getweb for the 4690 printer
2009-06-07 Rick Richardson <[email protected]>
* Moved: Minolta-QMS Page Page, 2200 DL, 2300 DL *.icm files
2009-05-30 Rick Richardson <[email protected]>
* Added: Samsung CLP-310 manual pages.
2009-05-11 Rick Richardson <[email protected]>
* On SUSE, /bin/logger instead of /usr/bin/logger
2009-05-04 Rick Richardson <[email protected]>
* Added: Samsung CLP-310 like CLP-315. The case is white!
2009-04-22 Rick Richardson <[email protected]>
* Update: zjsdecode, foo2hp.c: Add ZJI_BITMAP_xxx types.
2009-04-13 Rick Richardson <[email protected]>
* Fix: hplj1000 to protect against /lp*
2009-03-24 Rick Richardson <[email protected]>
* Add: km-1600-rgb-392-bpp1.icm for color correction using
the X-rite ColorMunki and Argyll.
For KONICA MINOLTA 1600W, 1680MF, 1690MF
Delete 1600W, re-download, make, ./getweb 1600w, make install
2009-03-24 Rick Richardson <[email protected]>
* Modify: foo2zjs-icc2ps to "Little CMS" (lcms), v1.18.
$ make regress
[same as 03/01/09]
2009-03-14 Rick Richardson <[email protected]>
* New foo2lava printers:
Konica-Minolta magicolor 1600W
Konica-Minolta magicolor 1680MF
Konica-Minolta magicolor 1690MF
ALPHA QUALITY! PRINTER ONLY!
2009-03-08 Rick Richardson <[email protected]>
* New: printer-profile script using X-Rite ColorMunki and Argyll CMS
2009-03-08 Rick Richardson <[email protected]>
* Updated samclp-315-argyll-0.icm for color correction using
the X-rite ColorMunki and Argyll!
Do:
$ ./getweb 315
$ su
# make install
2009-03-07 Rick Richardson <[email protected]>
* Clean up fwrite/fread/fscanf warnings on Ubuntu 8.10.
2009-03-04 Rick Richardson <[email protected]>
* zjsdecode: Add bpp=2 when doing -d. Produces a .pgm file.
2009-03-04 Rick Richardson <[email protected]>
* foo2*-wrapper: Add logging of foo2zjs-icc2ps
2009-03-01 Rick Richardson <[email protected]>
* Modify: foo2zjs-icc2ps to "Little CMS" (lcms), v1.18 beta 1.
$ make regress
little cms PostScript converter - v1.5+v1.18beta1+foo2zjs
ca8227261a3b18e10ee7fa720dd90ccb C3400-L1-BIN-ICC_0603150.icm.ps
91625a11ef859a4c3662379db1ffafd2 C3400-L2-BIN-ICC_0604110.icm.ps
6dd402051dd3747e40b1a7b1e2e82196 hp1215-argyll-0.icm.ps
9f104c51f07705599ce874f83c6f8783 hpclj2600n-0.icm.ps
6f324397fad3c195250ec7a159d293f9 hpclj2600n-1.icm.ps
96454f21ba7c1ccad1953524670f5f72 km2430_0.icm.ps
862ca1d836f097ea403ba9f630a5258f km2430_1.icm.ps
35f478bf58d43db5cc0853caec9a5868 km2430_2.icm.ps
f75cb27671de78d63a81d7be3bff310f km2530_0.icm.ps
a1c0cccd4b898319fc37887a7106466b km2530_1.icm.ps
ab78bcd38fad306ddeda108a43c31c96 km2530_2.icm.ps
44d45f189f3986eef5b7565159da167e km2530-jconner-d50.icm.ps
312e49d3deaed093c8b3834487bc7620 lexRPCA2000.icm.ps
e72e37a4f8cb14e36dfe8337b6988aee OK3200L1.icm.ps
9bab8e1f5a3a78c5e47316941bb4c915 OK3200L2.icm.ps
1d63e82bae789fc2c5101dbc4077e67c OK5600L1.icm.ps
bd6a812ce413387288d23e4773b80c8b OK5600L2.icm.ps
8d0d23d861137faf90ab567e2f20afbd OK5600L3.icm.ps
f9d96dc460f49e718ce3a9963e7d7595 samclp300-0.icm.ps
7014e454afff845627779cda3b28e0c5 samclp315-argyll-0.icm.ps
2009-02-19 Rick Richardson <[email protected]>
* foo2hp: Fix segv when -b2 and -d2 are given.
* foo2hp: Fix PageNum when -b2 is given.
2009-01-22 Rick Richardson <[email protected]>
* New printer: HP LaserJet M1319 MFP. Printer only!!
2009-01-22 Rick Richardson <[email protected]>
* New printer: HP LaserJet P2035
2009-01-22 Rick Richardson <[email protected]>
* zjsdecode: add -p option for HP LaserJet P2035
2009-01-11 Rick Richardson <[email protected]>
* foo2oak-wrapper bug fix
2008-12-31 Rick Richardson <[email protected]>
* New printer: Samsung CLX-3175
2008-12-29 Rick Richardson <[email protected]>
* New printer: Oki C3100
2008-12-07 Rick Richardson <[email protected]>
* Samsung CLP-315:
- Now use Argyll (samclp-315-argyll-0.icm) for color correction
- make; ./getweb 315; make install
- Delete and recreate Samsung CLP-315
2008-12-06 Rick Richardson <[email protected]>
* HP CLJ CP1215:
- Now use Argyll (hp1215-argyll-0.icm) for color correction
- make; ./getweb 1215; make install
- Delete and recreate HP Color LaserJet CP1215
- foo2hp2600-wrapper: implement -z <model>; 0=1600/2600, 1=1215
2008-12-04 Rick Richardson <[email protected]>
* foo2zjs-pstops: Fix bug with -w
2008-10-07 Rick Richardson <[email protected]>
* foo2qpdl: bug fix: -z2 (clp-315. clp-610): stripe starts
with 0, not 1.
2008-09-23 Rick Richardson <[email protected]>
* foo2qpdl: bug fix: LONGEDGE does not need to be flipped on CLP-610.
* zjsdecode, gipddecode, slxdecode: fix bug with argc[1]
2008-09-22 Rick Richardson <[email protected]>
* foo2qpdl: Do auto duplex on clp-610
Delete CLP-610 printer then re-install them (PPD changed)
2008-09-18 Rick Richardson <[email protected]>
* foo2qpdl: Change unknown value (margin?) based on page size.
2008-09-05 Rick Richardson <[email protected]>
* Upgrade to JBIGKIT 2.0
2008-07-30 Rick Richardson <[email protected]>
* Makefile: rm gipddecode.o on a "make clean".
2008-07-22 Rick Richardson <[email protected]>
* New printer: Samsung CLP-315
2008-06-05 Rick Richardson <[email protected]>
* New printers: HP LJ P1007 and P1008
2008-06-03 Rick Richardson <[email protected]>
* Upgrade P1005, P1006, P1505 firmware to 04/15/2008
2008-05-23 Rick Richardson <[email protected]>
* foomatic-db and PPDs: update ieee string for CP1215
2008-05-21 Rick Richardson <[email protected]>
* foomatic-db and PPDs: New HP Color LaserJet CP1215 using foo2hp
ALPHA QUALITY, imperfect color correction.
2008-05-15 Rick Richardson <[email protected]>
* foomatic-db and PPDs: New Oki C3530 MFP
2008-05-01 Rick Richardson <[email protected]>
* New Printers: Kyocera Mita KM-1635, KM-2035.
* foomatic-db and PPDs: Kyocera Mita KM-1635, KM-2035.
- PageSize, InputSlot, MediaType
2008-04-30 Rick Richardson <[email protected]>
* foo2oak, foo2oak-wrapper, foo2zjs-pstops:
Implement rotate 90 for Kyocera Mita KM-1635, KM-2035.
* foo2hiperc: fix 600x1200 resolution.
2008-04-26 Rick Richardson <[email protected]>
* foo2lava.c: implement copies.
2008-04-24 Rick Richardson <[email protected]>
* foo2hiperc-wrapper, et al:
Change Input Slot to
auto, tray1, tray2, multi, manual
2008-04-18 Rick Richardson <[email protected]>
* foo2qpdl-wrapper: set clipping to 150x100 for Custom page size.
2008-04-01 Rick Richardson <[email protected]>
* New Printer: Samsung CLP-610 added to foo2qpdl et al.
2008-03-30 Rick Richardson <[email protected]>
* qpdldecode: add new compression mode 0x15 for CLP-610.
2008-03-24 Rick Richardson <[email protected]>
* New printer: HP LaserJet 2014 using foo2xqx.
2008-03-23 Rick Richardson <[email protected]>
* Add: gipddecode.for Granite Image Printer Driver. Used
by Granite Systems, inc. a.k.a Monotype Imaging, e.g.
Dell 1125 MFP, Lexmark X500
2008-02-16 Rick Richardson <[email protected]>
* Add: manual pages for arm2hpdl, usb_printerid
* Modify: foo2xqx-wrapper to put in WTS.
2008-02-15 Rick Richardson <[email protected]>
* Add: Copies, Nup, NupOrient, Quality to foo2hiperc, foo2slx
foomatic-db and PPD files
2008-02-07 Rick Richardson <[email protected]>
* Add: HP-LaserJet_M1120_MFP using the foo2xqx driver
* Modify: Oki foomatic and PPD entries for C5500/C5600/C5800
Color Correction
2008-02-06 Rick Richardson <[email protected]>
* Add: C5200
* Modify: Oki foomatic and PPD entries for C3200/C5100/C5200
Color Correction
* Modify: Oki foomatic and PPD entries for C3300/C3400
Color Correction
2008-02-05 Rick Richardson <[email protected]>
* Modify: foo2hiperc. Put out the correct end_doc
* Modify: foo2hiperc. Pad to 256 lines.
2008-02-02 Rick Richardson <[email protected]>
* Modify: foo2hiperc color mode
* Modify: foo2hiperc compessed mode.
2008-02-01 Rick Richardson <[email protected]>
* Modify: foo2hiperc et al.
2008-01-31 Rick Richardson <[email protected]>
* Add: man pages for foo2hiperc.
* Modify: foo2hiperc et al.
2008-01-30 Rick Richardson <[email protected]>
* Add: foo2hiperc et al. Another set of printers added:
Oki C3200n/C3300n/C3400n/C5100n/C5500n
Note: alpha quality, no color correction at all!!!
2008-01-28 Rick Richardson <[email protected]>
* Modify: getweb 2300
2008-01-22 Rick Richardson <[email protected]>
* Modify: icc2ps to "Little CMS" (lcms), v1.17.
Bugs fixed in icc2ps/cmsio1.c.
2008-01-22 Rick Richardson <[email protected]>
* Modify: icc2ps/cmsio1.c to malloc space for wchar_t right.
2007-12-27 Rick Richardson <[email protected]>
* Modify: foo2*-wrapper to only put in WTS stuff when in COLOR (-c)
Otherwise, gs 8.60/8.61 core dumps with -r1200x600
2007-12-19 Rick Richardson <[email protected]>
* Modify manual pages for Solaris
* Modify foo2zjs-pstops: remove sed -e "$a"
* Modify foo2oak.c, oakdecode.c for OpenBSD
2007-12-15 Rick Richardson <[email protected]>
* Modify foo2qpdl-InputSlot.xml: Add lower paper tray 2.
2007-12-13 Rick Richardson <[email protected]>
* Modify foo2slx.c: Do manual duplex.
2007-12-10 Rick Richardson <[email protected]>
* Modify foo2slx.c: produce colors in the right order.
2007-12-10 Rick Richardson <[email protected]>
* Modify foo2slx.c: Set ExtraPad to 0.
* Modify foo2slx.c: Use item_int32_write_pad for 0x03, 0x04
2007-12-09 Rick Richardson <[email protected]>
* Modify foo2*.c:
If called by CUPS, print page accounting stuff to stderr.
Change DEVICE_URL to DEVICE_URI for IsCUPS
This is a misfeature of CUPS only.
* Modify foo2slx.c: Add pad to SLI_0x03.
* Modify foo2slx-wrapper: GAMMAFILE=default for color
2007-12-08 Rick Richardson <[email protected]>
* Modify foo2slx.c:
SLI_COUNT, 1 (0x1)
SLI_0x0e, 0 (0x0) (was SLI_DMCOLLATE)
2007-12-07 Rick Richardson <[email protected]>
* Modify foo2*-wrapper: change CustomPageSize for Acrobat 8.1.1 rpm.
* Modify foo2*-wrapper: change ghostscript for Acrobat 8.1.1:
"gs ... -" to "gs ... -_"
2007-11-26 Rick Richardson <[email protected]>
* Modify Makefile:
OpenSolaris, Solaris Express Developer Edition 9/07, Solaris 11 (beta)
Make networking (2530 dl, Samsung 300, etc.) printers work.
2007-11-25 Rick Richardson <[email protected]>
* Add printers HP LaserJet P1005/P1006/P1505 to foo2xqx driver.
2007-11-21 Rick Richardson <[email protected]>
* Modify: Makefile install usb_printerid /bin
2007-11-17 Rick Richardson <[email protected]>
* Modify: Makefile uninstall
2007-11-15 Rick Richardson <[email protected]>
* Put in comments RE: /bin/ into hp1000 and Makefile
2007-11-14 Rick Richardson <[email protected]>
* Modify: hplj10xx_gui.tcl to use /sys/...
2007-11-13 Rick Richardson <[email protected]>
* Add: hplj10xx_gui.tcl
Usage: $ wish /usr/share/foo2zjs/hplj10xx_gui.tcl
2007-11-12 Rick Richardson <[email protected]>
* Add: GNOME desktop file: hplj1020.desktop
Applications -> System Tools -> HPLJ 10xx Replaced Paper
invokes: usb_printerid /dev/usb/lp0
2007-11-10 Rick Richardson <[email protected]>
* Modify: hplj10xx.rules to put -%n in the symlink field
2007-11-06 Rick Richardson <[email protected]>
* Modify: *.1in: Only use specialps with -Tps
* Modify: *.1in: get rid of:
grotty:./foo2lava.1:4269: character above first line discarded
2007-11-05 Rick Richardson <[email protected]>
* Modify: foo2*.c bug with -l, -u
* Modify: opldecode.c,.1 change ro to opl.
2007-11-01 Rick Richardson <[email protected]>
* Add: foo2slx et al. Another printer added: Lexmark C500n
Note: alpha quality!!!
2007-10-30 Rick Richardson <[email protected]>
* Modify: foo2zjs-pstops take out CIEColor
* Modify: zjsdecode, qpdldecode
* Modify: foo2qpdl-wrapper: Add default for -G
2007-10-26 Rick Richardson <[email protected]>
* Put version info in getweb and foo2zjs-pstops
* foo2*-wrapper: Make PREFILTER=tee if -D9
2007-10-25 Rick Richardson <[email protected]>
* Modify: foo2zjs-pstops put it before "%%Page: 1 1"
2007-10-24 Rick Richardson <[email protected]>
* Modify: foo2zjs-pstops so that CIE + WTS are in the right order.
2007-10-23 Rick Richardson <[email protected]>
* foo2lava ICM: km2530-jconner-d50.icm is the default
Do:
$ ./getweb 2530
$ sudo make install
again.
2007-10-22 Rick Richardson <[email protected]>
* Add: foo2zjs-pstops: Add PS code for foo2*-wrapper
* Modify foo2*-wrapper: Use WTS with Firefox, et al.
2007-10-20 Rick Richardson <[email protected]>
* foomatic-db/opts/*ICM*, PPD/*: improved
2007-10-19 Rick Richardson <[email protected]>
* Replace sihp1020.img with sihp1020-20050309.img. Was 20041129.
$ ./getweb 1020
# make install
* Resurrect foo2oak
2007-10-18 Rick Richardson <[email protected]>
* foo2zjs-wrapper: Implement WTS when -C10.
* foo2hp2600-wrapper: Segfault on 64-bit and gs 8.14/8.15.
2007-10-15 Rick Richardson <[email protected]>
* foo2*-wrapper: WTS works with this workaround:
GSOPTS="-dCOLORSCREEN -dMaxBitmap=500000000 $GSOPTS"
So WTS works on 8.54-8.57 AND 8.60-8.61.
* INSTALL:
* Well Tempered Screening (WTS) works with ghostscript 8.54-8.60+.
So if you want BEST COLORS, you'll have to install gs 8.54 or
better if you don't have it.
$ gs --version
8.15.2
$ wget "http://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs860/ghostscript-8.60.tar.gz"