summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDom Lachowicz <doml@src.gnome.org>2004-07-18 20:33:54 +0000
committerDom Lachowicz <doml@src.gnome.org>2004-07-18 20:33:54 +0000
commit0bef378e4ebd8cb141b2a26a83a89684cb8a9691 (patch)
tree1c1f44a5c446b2a314d4ad2d1f50b5227440c1ab
parent611729cbf81349bdca9bc08b157767af17a850be (diff)
downloadlibrsvg-0bef378e4ebd8cb141b2a26a83a89684cb8a9691.tar.gz
update manpage, news, bump version number
-rw-r--r--ChangeLog6
-rw-r--r--NEWS5
-rw-r--r--configure.in2
-rw-r--r--rsvg-shapes.c4
-rw-r--r--rsvg.119
5 files changed, 21 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index a8429cf2..bcf5762b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-07-18 Dom Lachowicz <cinamod@hotmail.com>
+
+ * configure.in: Bump version number (2.7.4)
+ * rsvg.1: Add stuff to the man page
+ * NEWS: Document newer developments
+
2004-07-19 Caleb Moore <c.moore@student.unsw.edu.au>
* rsvg-filter.c: made lighting work much better
diff --git a/NEWS b/NEWS
index bf64ae03..8a4b478d 100644
--- a/NEWS
+++ b/NEWS
@@ -3,11 +3,12 @@ Version 2.7.x
- Filters
- GTK+ theme engine
- Masks
-- Markers
+- Path markers
- Mozilla plugin
-- Numerous bug fixes
- Patterns
- Standalone viewer
+- Decent <image> support
+- Numerous bug fixes
== gnome-2-6 branch ==
diff --git a/configure.in b/configure.in
index 2e8f01a4..f736e7d4 100644
--- a/configure.in
+++ b/configure.in
@@ -20,7 +20,7 @@ dnl ===========================================================================
LIBRSVG_MAJOR_VERSION=2
LIBRSVG_MINOR_VERSION=7
-LIBRSVG_MICRO_VERSION=2
+LIBRSVG_MICRO_VERSION=4
AC_SUBST(LIBRSVG_MAJOR_VERSION)
AC_SUBST(LIBRSVG_MINOR_VERSION)
AC_SUBST(LIBRSVG_MICRO_VERSION)
diff --git a/rsvg-shapes.c b/rsvg-shapes.c
index 34cfff21..7327f63c 100644
--- a/rsvg-shapes.c
+++ b/rsvg-shapes.c
@@ -1547,10 +1547,6 @@ rsvg_pixbuf_new_from_href (const char *href,
return img;
}
-/* TODO 1: issue with affining alpha images - this is gdkpixbuf's fault...
- * TODO 2: issue with rotating images - do we want to rotate the whole
- * canvas 2x to get this right, only to have #1 bite us?
- */
void
rsvg_start_image (RsvgHandle *ctx, RsvgPropertyBag *atts)
{
diff --git a/rsvg.1 b/rsvg.1
index 978d2771..6a13b98f 100644
--- a/rsvg.1
+++ b/rsvg.1
@@ -1,19 +1,19 @@
.TH rsvg 1
.SH NAME
-rsvg \- Turn SVG files into raster images
+rsvg \- Turn SVG files into raster images.
.SH SYNOPSIS
.B rsvg
-[option] in.svg out.png
+[options] in.svg out.png
.I ""
.SH DESCRIPTION
-RSVG coverts SVG images into PNG and JPEG raster images.
+RSVG coverts SVG images into PNG, JPEG, and ICO raster images.
.SS OPTIONS
.TP
.I "\-d \-\-dpi-x number"
-Set the resolution of the image in pixels per inch. RSVG's current default is 90dpi
+Set the X resolution of the image in pixels per inch. RSVG's current default is 90dpi
.TP
.I "\-p \-\-dpi-y number"
-Set the resolution of the image in pixels per inch. RSVG's current default is 90dpi
+Set the Y resolution of the image in pixels per inch. RSVG's current default is 90dpi
.TP
.I "\-x \-\-x\-zoom number"
X Zoom factor, as a percentage. If unspecified, 1.0 is used as the default.
@@ -27,14 +27,17 @@ Specify how wide you wish the image to be. If unspecified, the natural width of
.I "\-h \-\-height integer"
Specify how tall you wish the image to be. If unspecified, the natural height of the image is used as the default.
.TP
-.I "\-f \-\-format [png, jpeg]"
+.I "\-f \-\-format [png, jpeg, ico]"
Specify the output format you wish the image to be saved in. If unspecified, PNG is used as the default.
.TP
+.I "\-q \-\-quality integer"
+Specify JPEG compression factor. Number must be between 1 and 100, inclusive.
+.TP
.I "\-v \-\-version"
Display what version of rsvg this is.
.SH MORE INFORMATION
-http://www.gnome.org/
http://librsvg.sourceforge.net/
http://www.w3.org/TR/SVG11/
+http://www.gnome.org/
.SH "AUTHORS"
-Dom Lachowicz (cinamod@hotmail.com), Alex Larsson (alex@redhat.com), and a host of others
+Dom Lachowicz (cinamod@hotmail.com), Caleb Moore (c.moore@student.unsw.edu.au), and a host of others.