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