Wed, 12 Mar 2003 11:17:00 +0000
remove the word 'copyright' from producer string in PDF file info.
Makefile | file | annotate | diff | revisions | |
pdf.c | file | annotate | diff | revisions |
1.1 --- a/Makefile Wed Mar 12 11:13:28 2003 +0000 1.2 +++ b/Makefile Wed Mar 12 11:17:00 2003 +0000 1.3 @@ -1,6 +1,6 @@ 1.4 # t2p: build a PDF file out of one or more TIFF Class F Group 4 files 1.5 # Makefile 1.6 -# $Id: Makefile,v 1.25 2003/03/12 03:08:10 eric Exp $ 1.7 +# $Id: Makefile,v 1.26 2003/03/12 03:17:00 eric Exp $ 1.8 # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.9 # 1.10 # This program is free software; you can redistribute it and/or modify 1.11 @@ -55,7 +55,7 @@ 1.12 # let me know why so I can improve this Makefile. 1.13 # ----------------------------------------------------------------------------- 1.14 1.15 -VERSION = 0.20 1.16 +VERSION = 0.21 1.17 1.18 PACKAGE = t2p 1.19
2.1 --- a/pdf.c Wed Mar 12 11:13:28 2003 +0000 2.2 +++ b/pdf.c Wed Mar 12 11:17:00 2003 +0000 2.3 @@ -4,7 +4,7 @@ 2.4 * will be compressed using ITU-T T.6 (G4) fax encoding. 2.5 * 2.6 * PDF routines 2.7 - * $Id: pdf.c,v 1.6 2003/03/07 22:52:09 eric Exp $ 2.8 + * $Id: pdf.c,v 1.7 2003/03/12 03:17:00 eric Exp $ 2.9 * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 2.10 * 2.11 * This program is free software; you can redistribute it and/or modify 2.12 @@ -98,7 +98,7 @@ 2.13 pdf_new_name (page_mode_string)); 2.14 2.15 pdf_file->info = pdf_new_ind_ref (pdf_file, pdf_new_obj (PT_DICTIONARY)); 2.16 - pdf_set_info (pdf_file, "Producer", "t2p, Copyright 2003 Eric Smith <eric@brouhaha.com>"); 2.17 + pdf_set_info (pdf_file, "Producer", "t2p by Eric Smith <eric@brouhaha.com>"); 2.18 2.19 pdf_file->trailer_dict = pdf_new_obj (PT_DICTIONARY); 2.20 /* Size key will be added later */