summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--COPYING2
-rw-r--r--NEWS.xml4
-rw-r--r--configure.ac2
3 files changed, 4 insertions, 4 deletions
diff --git a/COPYING b/COPYING
index 9579d6d..d01e680 100644
--- a/COPYING
+++ b/COPYING
@@ -1,19 +1,19 @@
-Copyright (c) 2009-2011 Klever Group (http://www.klever.net/)
+Copyright (c) 2009-2012 Klever Group (http://www.klever.net/)
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
diff --git a/NEWS.xml b/NEWS.xml
index e626a5c..2a73a8b 100644
--- a/NEWS.xml
+++ b/NEWS.xml
@@ -1,27 +1,27 @@
<?xml version="1.0" encoding="us-ascii"?>
<news>
- <version version="" date="">
+ <version version="0.3" date="January 21st, 2012">
<ni>supports whatever file type card is willing to send now</ni>
<ni>optimized integrity digest calculation memory usage</ni>
<ni>report the lack of config file for the card</ni>
<ni>do some startup checks for config files</ni>
- <ni>minor bugfixes</ni>
+ <ni>minor bugfixes and improvements</ni>
</version>
<version version="0.2" date="March 20th, 2011">
<ni>extract and store .log files supplied for geotagging purpose</ni>
<ni>added a sample script for geotagging photos based on the log file</ni>
<ni>improved compatibility with Geo X2 card</ni>
<ni>added script for post-processing uploaded photo (sort by exif
timestamp)</ni>
<ni>added utility to extract chunks from RIFF (video) files to assist in
automatic sorting of videos</ni>
<ni>minor internal changes</ni>
</version>
<version version="0.1" date="April 5th, 2009">
<ni>integrity digest verification</ni>
<ni>try to create upload directory if it doesn't exist</ni>
</version>
<version version="0.0" date="March 8th, 2009">
<ni>Initial release</ni>
</version>
</news>
diff --git a/configure.ac b/configure.ac
index 99d668d..c814b53 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,25 +1,25 @@
-AC_INIT([iii], [0.2.1], [iii-bugs@klever.net])
+AC_INIT([iii], [0.3], [iii-bugs@klever.net])
AC_CONFIG_SRCDIR([src/iiid.cc])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([dist-bzip2])
AC_PROG_INSTALL
AC_PROG_CXX
AC_PROG_CC
PKG_PROG_PKG_CONFIG
AC_HEADER_STDC
AC_PATH_PROG([XSLTPROC],[xsltproc],[true])
PKG_CHECK_MODULES([MODULES],[gsoap++ libcrypto libconfuse])
PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false])
AM_CONDITIONAL([HAVE_UUID],[$have_uuid])
if $have_uuid ; then
AC_DEFINE([HAVE_LIBUUID],,[defined in presence of libuuid])
AC_SUBST([UUID_UUID],[uuid])
fi
AC_PATH_PROG([SOAPCPP2],[soapcpp2],[false])
test "$SOAPCPP2" = "false" && AC_MSG_ERROR([no soapcpp2 tool, part of gsoap package, found.])