author | Michael Krelin <hacker@klever.net> | 2006-11-06 21:47:00 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-11-06 21:47:00 (UTC) |
commit | 0f89d983a67dc5dd19e38a57e55f5653f059cef3 (patch) (side-by-side diff) | |
tree | e775b1e1a2662a00e6bbe1d98effd3ebae8767f5 | |
parent | 477cf5235fb719dda751a742ff068aa26cb9741b (diff) | |
download | fireflix-0f89d983a67dc5dd19e38a57e55f5653f059cef3.zip fireflix-0f89d983a67dc5dd19e38a57e55f5653f059cef3.tar.gz fireflix-0f89d983a67dc5dd19e38a57e55f5653f059cef3.tar.bz2 |
added new entry in NEWS and bumped version
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@202 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | NEWS.xml | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -1,10 +1,12 @@ +0.0.3 () + - Firefox 2.0 compatibility 0.0.2 (October 17th, 2006) - Added brief help file - Fixed HTML generation code - Fixed a mistyped flickr url so that the 'Flickr' button works now 0.0.1 (October 3rd, 2006) - Added ability to paginate through search results - Fixed packaging bug that omitted packaging license dialog - A lot of code cleanup and UI polishing 0.0 (September 26th, 2006) - Initial release @@ -1,16 +1,19 @@ <?xml version="1.0" encoding="us-ascii"?> <news> + <version version="0.0.3" date=""> + <ni>Firefox 2.0 compatibility</ni> + </version> <version version="0.0.2" date="October 17th, 2006"> <ni>Added brief help file</ni> <ni>Fixed HTML generation code</ni> <ni>Fixed a mistyped flickr url so that the 'Flickr' button works now</ni> </version> <version version="0.0.1" date="October 3rd, 2006"> <ni>Added ability to paginate through search results</ni> <ni>Fixed packaging bug that omitted packaging license dialog</ni> <ni>A lot of code cleanup and UI polishing</ni> </version> <version version="0.0" date="September 26th, 2006"> <ni>Initial release</ni> </version> </news> diff --git a/configure.ac b/configure.ac index d75a575..386d6f1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,28 +1,28 @@ -AC_INIT([fireflix], [0.0.2], [fireflix-bugs@klever.net]) +AC_INIT([fireflix], [0.0.3], [fireflix-bugs@klever.net]) AC_CONFIG_SRCDIR([install.rdf.in]) AM_INIT_AUTOMAKE([dist-bzip2]) AC_SUBST([MOZ_EXT_ID],[{4269f719-86de-4668-b8ad-04752c23a69e}]) AC_PATH_PROG([ZIP],[zip],[false]) if test "${ZIP}" = "false" ; then AC_MSG_ERROR([zip is required to produce packaged extension]) fi AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) AC_SUBST([xpidir],[\${top_builddir}/xpi]) AC_SUBST([xpichromedir],[\${xpidir}/chrome]) AC_SUBST([xpichromecontentdir],[\${xpichromedir}/content]) AC_SUBST([xpichromelocaledir],[\${xpichromedir}/locale]) COPYING="`sed -e 's/\\"/\\"/g' -e 's,$,<br/>,g' -e 's/(c)/\\©/g' COPYING|tr '\n' ' '`" AC_SUBST([COPYING]) AC_CONFIG_FILES([ Makefile install.rdf update.rdf content/Makefile content/autoconf.dtd locale/Makefile ]) AC_OUTPUT |