texlive[56326] Master/texmf-dist/scripts/tlgs/gswin32:

commits+kakuto at tug.org commits+kakuto at tug.org
Sat Sep 12 00:03:38 CEST 2020


Revision: 56326
          http://tug.org/svn/texlive?view=revision&revision=56326
Author:   kakuto
Date:     2020-09-12 00:03:38 +0200 (Sat, 12 Sep 2020)
Log Message:
-----------
-dALLOWPSTRANSPARENCY in scripts for gs (win32).

Modified Paths:
--------------
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu
    trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -123,7 +123,7 @@
 if os.type=='unix' then push (command, '-sstdout=%stderr') end
 
 push(command, '-sOutputFile='..file.output, '-dNOPAUSE',
-     '-dBATCH', '-P-', '-dSAFER', '-dDEVICEWIDTH=250000', 
+     '-dBATCH', '-P-', '-dALLOWPSTRANSPARENCY', '-dDEVICEWIDTH=250000', 
      '-dDEVICEHEIGHT=250000')
 
 push(command, options)

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -53,7 +53,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-q', '-dNODISPLAY', '-dSAFER', '-dDELAYSAFER',
+push(command, '-q', '-dNODISPLAY', '-dALLOWPSTRANSPARENCY', '-dDELAYSAFER',
      '-sPDFname='..pdffile, '-sDSCname='..dscfile, 'pdf2dsc.ps',
      '-c', 'quit')
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -138,7 +138,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
 
 if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -93,7 +93,7 @@
 local command={gs}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, {'-q', '-dNODISPLAY', '-P-', '-dSAFER', '-dDELAYBIND',
+push(command, {'-q', '-dNODISPLAY', '-P-', '-dALLOWPSTRANSPARENCY', '-dDELAYBIND',
 	       '-dWRITESYSTEMDICT', '-dSIMPLE'})
 
 push(command, '-c', 'save', '-f', 'ps2ascii.ps')

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -138,7 +138,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
 
 if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -138,7 +138,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
 
 if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -138,7 +138,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
 
 if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -138,7 +138,7 @@
 local command={}
 if os.type == 'unix' then command={'gs'} else command={'gswin32c'} end
 
-push(command, '-P-', '-dSAFER', options, '-dCompatibilityLevel='..PDF_level)
+push(command, '-P-', '-dALLOWPSTRANSPARENCY', options, '-dCompatibilityLevel='..PDF_level)
 
 if progname == 'pdfopt' then push(command, '-dFastWebView=true') end
 

Modified: trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu
===================================================================
--- trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu	2020-09-11 21:37:25 UTC (rev 56325)
+++ trunk/Master/texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu	2020-09-11 22:03:38 UTC (rev 56326)
@@ -123,7 +123,7 @@
 if os.type=='unix' then push(command, '-sstdout=%stderr') end
 
 push(command, '-sOutputFile='..file.output)
-push(command, '-dNOPAUSE', '-dBATCH', '-P-', '-dSAFER')
+push(command, '-dNOPAUSE', '-dBATCH', '-P-', '-dALLOWPSTRANSPARENCY')
 push(command, options, file.input)
 
 command=fixwin(command)



More information about the tex-live-commits mailing list.