Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[usb-moded] Release 0.66
  * Fix bug with configuration merging.
  * Implement charging mode for the android gadget.
  * Use android gadget mac
  * Remove unused legacy dsme code
  * Update usage of Android config values for usb

Signed-off-by: Philippe De Swert <philippe.deswert@jollamobile.com>
  • Loading branch information
philippedeswert committed Aug 14, 2013
1 parent c9527b3 commit bc16f61
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
@@ -1,4 +1,4 @@
AC_INIT([usb_moded], [0.65.1])
AC_INIT([usb_moded], [0.66])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])

AM_CONFIG_HEADER([config.h])
Expand Down Expand Up @@ -62,12 +62,12 @@ AC_ARG_ENABLE([gconf], AS_HELP_STRING([--enable-gconf], [Use GConf for configura
esac],[gconf=false])
AM_CONDITIONAL([GCONF], [test x$gconf = xtrue])

AC_ARG_ENABLE([app_sync], AS_HELP_STRING([--enable-app-sync], [Enable application syncing @<:@default=false@:>@]),
AC_ARG_ENABLE([app_sync], AS_HELP_STRING([--enable-app-sync], [Enable application syncing @<:@default=true@:>@]),
[case "${enableval}" in
yes) app_sync=true ; CFLAGS="-DAPP_SYNC $CFLAGS" ;;
no) app_sync=false ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-app-sync]) ;;
esac],[app_sync=false])
esac],[app_sync=true])
AM_CONDITIONAL([APP_SYNC], [test x$app_sync = xtrue])

AC_ARG_ENABLE([udev], AS_HELP_STRING([--enable-udev], [Enable udev interface @<:@default=true@:>@]),
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
@@ -1,3 +1,13 @@
usb-moded (0.66) unstable; urgency=low

* Fix bug with configuration merging.
* Implement charging mode for the android gadget.
* Use android gadget mac
* Remove unused legacy dsme code
* Update usage of Android config values for usb

-- Philippe De Swert <philippe.deswert@jollamobile.com> Wed, 14 Aug 2013 16:08:08 +0300

usb-moded (0.65.1) unstable; urgency=low

* Fix up pc_suite name and feedback string from usb_moded_util
Expand Down

0 comments on commit bc16f61

Please sign in to comment.