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) (unidiff) | |
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 @@ | |||
1 | 0.0.3 () | ||
2 | - Firefox 2.0 compatibility | ||
1 | 0.0.2 (October 17th, 2006) | 3 | 0.0.2 (October 17th, 2006) |
2 | - Added brief help file | 4 | - Added brief help file |
3 | - Fixed HTML generation code | 5 | - Fixed HTML generation code |
4 | - Fixed a mistyped flickr url so that the 'Flickr' button works now | 6 | - Fixed a mistyped flickr url so that the 'Flickr' button works now |
5 | 0.0.1 (October 3rd, 2006) | 7 | 0.0.1 (October 3rd, 2006) |
6 | - Added ability to paginate through search results | 8 | - Added ability to paginate through search results |
7 | - Fixed packaging bug that omitted packaging license dialog | 9 | - Fixed packaging bug that omitted packaging license dialog |
8 | - A lot of code cleanup and UI polishing | 10 | - A lot of code cleanup and UI polishing |
9 | 0.0 (September 26th, 2006) | 11 | 0.0 (September 26th, 2006) |
10 | - Initial release | 12 | - Initial release |
@@ -1,16 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="us-ascii"?> | 1 | <?xml version="1.0" encoding="us-ascii"?> |
2 | <news> | 2 | <news> |
3 | <version version="0.0.3" date=""> | ||
4 | <ni>Firefox 2.0 compatibility</ni> | ||
5 | </version> | ||
3 | <version version="0.0.2" date="October 17th, 2006"> | 6 | <version version="0.0.2" date="October 17th, 2006"> |
4 | <ni>Added brief help file</ni> | 7 | <ni>Added brief help file</ni> |
5 | <ni>Fixed HTML generation code</ni> | 8 | <ni>Fixed HTML generation code</ni> |
6 | <ni>Fixed a mistyped flickr url so that the 'Flickr' button works now</ni> | 9 | <ni>Fixed a mistyped flickr url so that the 'Flickr' button works now</ni> |
7 | </version> | 10 | </version> |
8 | <version version="0.0.1" date="October 3rd, 2006"> | 11 | <version version="0.0.1" date="October 3rd, 2006"> |
9 | <ni>Added ability to paginate through search results</ni> | 12 | <ni>Added ability to paginate through search results</ni> |
10 | <ni>Fixed packaging bug that omitted packaging license dialog</ni> | 13 | <ni>Fixed packaging bug that omitted packaging license dialog</ni> |
11 | <ni>A lot of code cleanup and UI polishing</ni> | 14 | <ni>A lot of code cleanup and UI polishing</ni> |
12 | </version> | 15 | </version> |
13 | <version version="0.0" date="September 26th, 2006"> | 16 | <version version="0.0" date="September 26th, 2006"> |
14 | <ni>Initial release</ni> | 17 | <ni>Initial release</ni> |
15 | </version> | 18 | </version> |
16 | </news> | 19 | </news> |
diff --git a/configure.ac b/configure.ac index d75a575..386d6f1 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,28 +1,28 @@ | |||
1 | AC_INIT([fireflix], [0.0.2], [fireflix-bugs@klever.net]) | 1 | AC_INIT([fireflix], [0.0.3], [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 |