author | Michael Krelin <hacker@klever.net> | 2011-08-28 20:27:19 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2011-08-28 20:27:19 (UTC) |
commit | d4eabed619f231e2cd4b6683edab0a1442c410b3 (patch) (side-by-side diff) | |
tree | 7933ce472d457313bf8cb3e91e9268e3d869614f | |
parent | 0d7604dd5ba76c31d7192ff37e0f6ae6f95945ac (diff) | |
download | fireflix-d4eabed619f231e2cd4b6683edab0a1442c410b3.zip fireflix-d4eabed619f231e2cd4b6683edab0a1442c410b3.tar.gz fireflix-d4eabed619f231e2cd4b6683edab0a1442c410b3.tar.bz2 |
Signed-off-by: Michael Krelin <hacker@klever.net>
-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,24 +1,26 @@ +0.0.6.7 (August 28th, 2011) + - Compatibility update for the recent pack of foxes. 0.0.6.3 (August 7th, 2009) - Firefox 3.5 compatibility release 0.0.6.2 (June 19th, 2008) - Firefox 3.0.* compatibility release 0.0.6.1 (December 20th, 2006) - Firefox 2.0.0.* compatibility release 0.0.6 (December 18th, 2006) - Added ability to edit future photo privacy settings before uploading - Show reasons for failed uploads and make uploaded files properties visible after upload is completed (readonly, though). - Added shortcut key for opening fireflix: Ctrl+Shift+X (not configurable, yet) - doubleclicking files in uploads tab - "What's new?" link in help 0.0.5 (November 17th, 2006) - Added toolbar button - Generating HTML for photos selection in sets browser - Enter or double click on photo in set now opens photo in flickr - Double click on photoset opens photoset in flickr - Hiding completely photo properties in sets browser when no photo selected 0.0.4 (November 13th, 2006) - Added button to remove linebreaks from generated HTML - Added the word 'sidebar' to the extension name so that you don't have to look hard for it - UI polishing, including making it more boring - code cosmetics @@ -1,26 +1,29 @@ <?xml version="1.0" encoding="us-ascii"?> <news> + <version version="0.0.6.7" date="August 28th, 2011"> + <ni>Compatibility update for the recent pack of foxes.</ni> + </version> <version version="0.0.6.3" date="August 7th, 2009"> <ni>Firefox 3.5 compatibility release</ni> </version> <version version="0.0.6.2" date="June 19th, 2008"> <ni>Firefox 3.0.* compatibility release</ni> </version> <version version="0.0.6.1" date="December 20th, 2006"> <ni>Firefox 2.0.0.* compatibility release</ni> </version> <version version="0.0.6" date="December 18th, 2006"> <ni>Added ability to edit future photo privacy settings before uploading</ni> <ni>Show reasons for failed uploads and make uploaded files properties visible after upload is completed (readonly, though).</ni> <ni>Added shortcut key for opening fireflix: Ctrl+Shift+X (not configurable, yet)</ni> <ni>doubleclicking files in uploads tab</ni> <ni>"What's new?" link in help</ni> </version> <version version="0.0.5" date="November 17th, 2006"> <ni>Added toolbar button</ni> <ni>Generating HTML for photos selection in sets browser</ni> <ni>Enter or double click on photo in set now opens photo in flickr</ni> <ni>Double click on photoset opens photoset in flickr</ni> <ni>Hiding completely photo properties in sets browser when no photo selected</ni> </version> diff --git a/configure.ac b/configure.ac index e8243a0..c2f2ec0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,25 +1,25 @@ -AC_INIT([fireflix], [0.0.6.3], [fireflix-bugs@klever.net]) +AC_INIT([fireflix], [0.0.6.7], [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' ${srcdir}/COPYING|tr '\n' ' '`" AC_SUBST([COPYING]) AC_CONFIG_FILES([ Makefile install.rdf update-template.rdf content/Makefile content/autoconf.dtd |