Commit cf172cf550f00fdadbff635ad6f8c4b00aa800fb
1 parent
cb1d89e7
some doc updates, shlib version
git-svn-id: svn+q:///qpdf/trunk@1002 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
3 changed files
with
53 additions
and
4 deletions
TODO
| 1 | -Next | |
| 2 | -==== | |
| 1 | +2.2.0 | |
| 2 | +===== | |
| 3 | 3 | |
| 4 | - * Work in contrib/vc6. See email from stronghorse@tom.com | |
| 4 | + * shared library version information already bumped for 2.2.0.rc1 | |
| 5 | + | |
| 6 | + * Work in contrib/vc6. See email from stronghorse@tom.com. Not yet | |
| 7 | + mentioned in the docs. | |
| 8 | + | |
| 9 | + * Finish maintainer checklist. Some release notes items have been | |
| 10 | + updated. | |
| 5 | 11 | |
| 6 | 12 | * Find messages exchanged with Stefan Heinsen <stefan.heinsen@gmx.de> |
| 7 | 13 | in August, 2009. He seems to like to send encrypted mail (key | ... | ... |
libqpdf/build.mk
| ... | ... | @@ -72,4 +72,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc |
| 72 | 72 | # * Otherwise, increment REVISION |
| 73 | 73 | |
| 74 | 74 | $(TARGETS_libqpdf): $(OBJS_libqpdf) |
| 75 | - $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),3,4,0) | |
| 75 | + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),4,0,1) | ... | ... |
manual/qpdf-manual.xml
| ... | ... | @@ -2072,6 +2072,49 @@ print "\n"; |
| 2072 | 2072 | </para> |
| 2073 | 2073 | <variablelist> |
| 2074 | 2074 | <varlistentry> |
| 2075 | + <term>2.2.0.rc1: XXX, 2010</term> | |
| 2076 | + <listitem> | |
| 2077 | + <itemizedlist> | |
| 2078 | + <listitem> | |
| 2079 | + <para> | |
| 2080 | + Add new methods to <classname>QPDFObjectHandle</classname> | |
| 2081 | + (<function>newStream</function> and | |
| 2082 | + <function>replaceStreamData</function> for creating new | |
| 2083 | + streams and replacing stream data. This makes it possible to | |
| 2084 | + perform a wide range of operations that were not previously | |
| 2085 | + possible. | |
| 2086 | + </para> | |
| 2087 | + </listitem> | |
| 2088 | + <listitem> | |
| 2089 | + <para> | |
| 2090 | + Add new helper method in | |
| 2091 | + <classname>QPDFObjectHandle</classname> | |
| 2092 | + (<function>addPageContents</function>) for appending or | |
| 2093 | + prepending new content streams to a page. This method makes | |
| 2094 | + it possible to manipulate content streams without having to be | |
| 2095 | + concerned whether a page's contents are a single stream or an | |
| 2096 | + array of streams. | |
| 2097 | + </para> | |
| 2098 | + </listitem> | |
| 2099 | + <listitem> | |
| 2100 | + <para> | |
| 2101 | + Provide two new examples: | |
| 2102 | + <command>pdf-double-page-size</command> and | |
| 2103 | + <command>pdf-invert-images</command> that illustrate the newly | |
| 2104 | + added interfaces. | |
| 2105 | + </para> | |
| 2106 | + </listitem> | |
| 2107 | + <listitem> | |
| 2108 | + <para> | |
| 2109 | + Fix a memory leak that would cause loss of a few bytes for | |
| 2110 | + every object involved in a cycle of object references. Thanks | |
| 2111 | + to Jian Ma for calling my attention to the leak. | |
| 2112 | + </para> | |
| 2113 | + </listitem> | |
| 2114 | + </itemizedlist> | |
| 2115 | + </listitem> | |
| 2116 | + </varlistentry> | |
| 2117 | + <varlistentry> | |
| 2075 | 2118 | <term>2.1.5: April 25, 2010</term> |
| 2076 | 2119 | <listitem> |
| 2077 | 2120 | <itemizedlist> | ... | ... |