summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Walleij <triad@df.lth.se>2006-08-21 23:26:37 +0000
committerLinus Walleij <triad@df.lth.se>2006-08-21 23:26:37 +0000
commiteab650b3948989622e477f7046b483fa3b7b0b2e (patch)
tree55676b4ce53a1c98ca12433ce9fdd47ac1a9c761
parent3ec863176f87f621068888241e923f1599e820ae (diff)
downloadlibmtp-eab650b3948989622e477f7046b483fa3b7b0b2e.tar.gz
Release
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac2
-rw-r--r--src/unicode.c3
3 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ff4e6dc..14ea217 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-22 Linus Walleij <triad@df.lth.se>
+
+ * configure.ac: bump to 0.0.13, also released 0.0.12 now.
+
2006-08-21 Linus Walleij <triad@df.lth.se>
* src/libmtp.c: fixup mmap() usage and add madvise()
diff --git a/configure.ac b/configure.ac
index eca7ab3..94b7fdd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
-AC_INIT([libmtp], [0.0.12], [libmtp-users@lists.sourceforge.net])
+AC_INIT([libmtp], [0.0.13], [libmtp-users@lists.sourceforge.net])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_SRCDIR([src/libmtp.c])
AC_CONFIG_HEADER([config.h])
diff --git a/src/unicode.c b/src/unicode.c
index b457e69..2a1591d 100644
--- a/src/unicode.c
+++ b/src/unicode.c
@@ -192,6 +192,7 @@ static char *builtin_ucs2le_to_utf8(uint16_t const * const unicstr) {
* Converts a little-endian Unicode UCS-2 2-byte string
* to a UTF-8 string.
*
+ * @param device a pointer to the current device.
* @param unicstr the UCS-2 unicode string to convert
* @return a UTF-8 string.
*/
@@ -229,6 +230,7 @@ char *ucs2le_to_utf8(LIBMTP_mtpdevice_t *device, uint16_t const * const unicstr)
* Converts a big-endian UTF-16 2-byte string
* to a UTF-8 string.
*
+ * @param device a pointer to the current device.
* @param unicstr the UTF-16 unicode string to convert
* @return a UTF-8 string.
*/
@@ -339,6 +341,7 @@ static uint16_t *builtin_utf8_to_ucs2le(unsigned char const * const str) {
* Convert a UTF-8 string to a little-endian Unicode
* UCS-2 string.
*
+ * @param device a pointer to the current device.
* @param str the UTF-8 string to convert.
* @return a pointer to a newly allocated UCS-2 string.
*/