version bump 0.11.810 submit/tizen_ivi/20140619.111013
authorKevron Rees <kevron.m.rees@intel.com>
Thu, 29 May 2014 21:32:25 +0000 (14:32 -0700)
committerKevron Rees <kevron.m.rees@intel.com>
Wed, 11 Jun 2014 22:37:32 +0000 (15:37 -0700)
CMakeLists.txt
RELEASE
plugins/bluetooth/bluetoothplugin.cpp

index 874824f..bf532ef 100644 (file)
@@ -6,7 +6,7 @@ set(CMAKE_BUILD_TYPE, Debug)
 include(FindPkgConfig)
 
 set(PROJECT_NAME "automotive-message-broker")
-set(PROJECT_VERSION "0.11.809")
+set(PROJECT_VERSION "0.11.810")
 set(PROJECT_CODENAME "veyron")
 set(PROJECT_QUALITY "alpha")
 
diff --git a/RELEASE b/RELEASE
index 3ecc116..2dfff13 100644 (file)
--- a/RELEASE
+++ b/RELEASE
@@ -4,11 +4,17 @@ New features:
 - Added "frequency" option to database plugin.  Now periodic data can be written to the db.
   this is useful for high speed data that you don't want to flood the database.
 - New test tools: amb-get, amb-set and amb-get-history
+- New bluetooth spp plugin
+- cangen and cansim plugins simulate a real CAN network.
 
 Changes:
 - Deprecated and removed the "FooChanged" (where "Foo" is a property like "VehicleSpeed") signal
 - DBus Object paths do not appear until FindObject* is called.  The object path disappears with
   the last pid that called FindObject* disconnects from DBus (or closes).
+- Many internal stl containers have been changed to use more efficient ones.
+- Some internal methods changed to const & references to avoid copies.
+- DBus plugin will no cache unsubscribed values.  Improves performance.
 
 Fixes:
 - database plugin updated to use zones
+- obd-II plugin updated to use bluez5 APIs
index 451e10d..b605726 100644 (file)
@@ -112,6 +112,7 @@ void BluetoothSinkPlugin::newConnection(string path, QDBusUnixFileDescriptor fd,
        DebugOut()<<"new Connection! Path: "<<path<<" fd: "<<fd.fileDescriptor()<<endl;
 
        socket.setDescriptor(fd.fileDescriptor());
+       socket.write("ping");
 
        GIOChannel *chan = g_io_channel_unix_new(socket.fileDescriptor());
        g_io_add_watch(chan, GIOCondition(G_IO_IN | G_IO_HUP | G_IO_ERR),(GIOFunc)readCallback, this);