Update of /cvsroot/libwpg/libwpg
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6910
Modified Files:
Tag: STABLE-0-1-0
ChangeLog configure.in libwpg.spec.in
Log Message:
preparation of 0.1.3 release
Index: ChangeLog
===================================================================
RCS file: /cvsroot/libwpg/libwpg/ChangeLog,v
retrieving revision 1.2.2.2
retrieving revision 1.2.2.3
diff -u -d -r1.2.2.2 -r1.2.2.3
--- ChangeLog 13 Dec 2007 14:03:41 -0000 1.2.2.2
+++ ChangeLog 25 Jul 2008 11:04:04 -0000 1.2.2.3
@@ -1,3 +1,29 @@
+0.1.2 - 0.1.3
+
+- in WPG2, pseudo-handle polyspline: since we dont manage to generate it,
+ we simply draw a polyline and wait for bug reports to give us some more
+ information (Fridrich).
+- change run-lenth decoding of bitmap code from using a manually allocated
+ buffer to a std::vector based solution for both WPG1 and WP2 (Fridrich).
+- robustness improvement of our bitmap parser when handling corrupted
+ documents (Fridrich, sum1).
+- when dumping binary objects and bitmaps in debug mode, don't crash when
+ the current directory is not writable for the user (Fridrich).
+- in WPG1 Bitmap decoding, handle also bitmaps with coulour depth 2 and 4,
+ which allows the FINGER.WPG test file to unveil its attractions (Fridrich).
+- in WPG1, attempt to handle the embedded postscript (Fridrich).
+- in WPG1, handle bezier curves (Fridrich).
+- in WPG1, fix for pen styles (Fridrich).
+- in WPG2, don't assume 1200 dpi for embedded objects if the document specifies
+ a different one (Fridrich).
+- in WPG2, don't try to handle embedded WPG fragments as binary documents, since
+ nobody other out there handles them if we don't (Fridrich).
+- in WPG2, add some useful dump and debug capabilities and fix a wrong seek.
+- in spec file, require pkg-config (Fridrich).
+- let autogen.sh not call configure at all (Fridrich).
+- allow specifying the docdir and don't install documentation as executables (patch
+ Michal Marek <mm...@su...>)
+
0.1.1 - 0.1.2
- Work around an issue with relative seeks backward and certain versions of libstdc++
in the buffered stream implementation (Fridrich, sum1)
Index: configure.in
===================================================================
RCS file: /cvsroot/libwpg/libwpg/configure.in,v
retrieving revision 1.15.2.3
retrieving revision 1.15.2.4
diff -u -d -r1.15.2.3 -r1.15.2.4
--- configure.in 8 Apr 2008 12:13:10 -0000 1.15.2.3
+++ configure.in 25 Jul 2008 11:04:04 -0000 1.15.2.4
@@ -5,7 +5,7 @@
WPG_MAJOR_VERSION=0
WPG_MINOR_VERSION=1
-WPG_MICRO_VERSION=2
+WPG_MICRO_VERSION=3
WPG_VERSION="$WPG_MAJOR_VERSION.$WPG_MINOR_VERSION.$WPG_MICRO_VERSION"
Index: libwpg.spec.in
===================================================================
RCS file: /cvsroot/libwpg/libwpg/libwpg.spec.in,v
retrieving revision 1.9.2.1
retrieving revision 1.9.2.2
diff -u -d -r1.9.2.1 -r1.9.2.2
--- libwpg.spec.in 3 Apr 2008 09:25:39 -0000 1.9.2.1
+++ libwpg.spec.in 25 Jul 2008 11:04:04 -0000 1.9.2.2
@@ -86,7 +86,7 @@
%if %{!?_without_docs:1}%{?_without_docs:0}
%files docs
-%{_datadir}/doc/libwpg-@WPG_VERSION@/*
+%{_datadir}/*
%endif
%changelog
|