From 3dab6a48f56b35085094649490f540759701e80b Mon Sep 17 00:00:00 2001 From: Philippe De Swert Date: Wed, 26 Feb 2014 18:07:28 +0200 Subject: [PATCH] [usb-moded] Release 0.78.5 Signed-off-by: Philippe De Swert --- configure.ac | 2 +- debian/changelog | 9 +++++++++ src/usb_moded.c | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 33a671a..b3f0307 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([usb_moded], [0.78.4]) +AC_INIT([usb_moded], [0.78.5]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AM_CONFIG_HEADER([config.h]) diff --git a/debian/changelog b/debian/changelog index 1e61a79..0adf64f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +usb-moded (0.78.5) unstable; urgency=low + + * Set new idProduct since the device will fail to be recognized correctly in Windows if used with the old one. + * Fix connection_sharing define. Thanks to lukedirtwalker for spotting it. + * [usb-moded] Add experimental host mode switching support + * [usb-moded] Set mode to undefined/disconnected, before re-reading usb mode configuration. + + -- Philippe De Swert Wed, 26 Feb 2014 18:06:29 +0200 + usb-moded (0.78.4) unstable; urgency=low * [usb-moded] Put ffs as first interface on USB diff --git a/src/usb_moded.c b/src/usb_moded.c index 596d769..f209a59 100644 --- a/src/usb_moded.c +++ b/src/usb_moded.c @@ -613,7 +613,7 @@ static void sigint_handler(int signum) data = get_usb_mode_data(); set_disconnected(data); /* clear existing data to be sure */ - set_usb_mode_data(NULL); + set_usb_mode_data(NULL); /* free and read in modelist again */ free_mode_list(modelist); modelist = read_mode_list(0);