[FOray-commit] SF.net SVN: foray:[11813] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2021-01-17 22:37:13
|
Revision: 11813
http://sourceforge.net/p/foray/code/11813
Author: victormote
Date: 2021-01-17 22:37:08 +0000 (Sun, 17 Jan 2021)
Log Message:
-----------
Upgrade Batik to 1.9.1.
Modified Paths:
--------------
trunk/foray/foray-graphic/src/main/java/org/foray/graphic/batik/PdfGraphics2D.java
trunk/foray/master/build.gradle
Modified: trunk/foray/foray-graphic/src/main/java/org/foray/graphic/batik/PdfGraphics2D.java
===================================================================
--- trunk/foray/foray-graphic/src/main/java/org/foray/graphic/batik/PdfGraphics2D.java 2021-01-17 22:06:08 UTC (rev 11812)
+++ trunk/foray/foray-graphic/src/main/java/org/foray/graphic/batik/PdfGraphics2D.java 2021-01-17 22:37:08 UTC (rev 11813)
@@ -193,6 +193,10 @@
*/
public PdfGraphics2D(final PdfGraphics2D g) {
super(g);
+ this.currentStream = g.currentStream;
+ this.fontConsumer = g.fontConsumer;
+ this.pdfContext = g.pdfContext;
+ this.graphicsStateStack = g.graphicsStateStack;
}
/**
Modified: trunk/foray/master/build.gradle
===================================================================
--- trunk/foray/master/build.gradle 2021-01-17 22:06:08 UTC (rev 11812)
+++ trunk/foray/master/build.gradle 2021-01-17 22:37:08 UTC (rev 11813)
@@ -44,7 +44,7 @@
ext.servletApiVersion = '3.1.0' // Latest is 4.0.1 as of 2021-01-12. See Note 6.
ext.xercesVersion = '2.12.1' // Latest is 2.12.1 as of 2021-01-12.
ext.xmlgraphicsCommonsVersion = '2.4' // Latest is 2.4 as of 2021-01-12.
- ext.batikVersion = '1.8' // Latest is 1.13 as of 2021-01-12. See Note 7.
+ ext.batikVersion = '1.9.1' // Latest is 1.13 as of 2021-01-12. See Note 7.
ext.jeuclidVersion = '3.0.3' // Latest is 3.1.9 as of 2021-01-12. See Note 8.
ext.icu4jVersion = '68.2' // Latest is 68.2 as of 2021-01-12.
@@ -76,7 +76,7 @@
*
* 6. Servlet-api 4.0.1 is compiled with Java 1.8 (major version 52), which produces compile-time warnings when we try
* to build with Java 1.7.
- * We have therefore stayed with the hight version of 3.0, which is 3.1.0.
+ * We have therefore stayed with the highest version of 3.x, which is 3.1.0.
*
* 7. Batik 1.13 will require handling some API changes.
*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|