From aed19cd68e02b11e27275c05e00cf242a337553a Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 19 Jan 2016 10:35:23 -0500 Subject: Add LICENSE File fixes #333 --- LICENSE | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000..54d44277e4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2014 Ford Motor Company, +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Ford Motor Company nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file -- cgit v1.2.1 From 36ba4ad62a5de51be4f1d3b02ac69b6e55dbb648 Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 19 Jan 2016 10:43:36 -0500 Subject: Fixes #314 --- .../transport_manager/src/bluetooth/bluetooth_device_scanner.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/transport_manager/src/bluetooth/bluetooth_device_scanner.cc b/src/components/transport_manager/src/bluetooth/bluetooth_device_scanner.cc index 29be3cd219..c422d895d0 100644 --- a/src/components/transport_manager/src/bluetooth/bluetooth_device_scanner.cc +++ b/src/components/transport_manager/src/bluetooth/bluetooth_device_scanner.cc @@ -97,6 +97,7 @@ int FindPairedDevs(std::vector* result) { } pclose(pipe); LOG4CXX_TRACE(logger_, "exit with 0"); + delete [] buffer; return 0; } } // namespace -- cgit v1.2.1 From e17c03a16041178b6cf916a99a82ce5a256ea91c Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 19 Jan 2016 11:16:15 -0500 Subject: Remove DCHECKs that seem to always be tripping everyone up --- src/components/application_manager/src/message_helper.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/application_manager/src/message_helper.cc b/src/components/application_manager/src/message_helper.cc index 1ec93f8bad..bbe5bad19b 100644 --- a/src/components/application_manager/src/message_helper.cc +++ b/src/components/application_manager/src/message_helper.cc @@ -1267,9 +1267,7 @@ bool MessageHelper::CreateHMIApplicationStruct(ApplicationConstSharedPtr app, } const SmartObject* app_types = app->app_types(); - DCHECK_OR_RETURN(app_types, false); const SmartObject* ngn_media_screen_name = app->ngn_media_screen_name(); - DCHECK_OR_RETURN(ngn_media_screen_name, false); const connection_handler::DeviceHandle handle = app->device(); std::string device_name = ApplicationManagerImpl::instance()->GetDeviceName(handle); -- cgit v1.2.1 From 02d72336832bf99d09ab13347db6809d69da96a0 Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Tue, 19 Jan 2016 11:23:41 -0500 Subject: removed redundant includes fixes #223 --- src/components/application_manager/src/hmi_capabilities.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/application_manager/src/hmi_capabilities.cc b/src/components/application_manager/src/hmi_capabilities.cc index 5cdce194a3..5c7f3f0b5d 100644 --- a/src/components/application_manager/src/hmi_capabilities.cc +++ b/src/components/application_manager/src/hmi_capabilities.cc @@ -41,9 +41,7 @@ #include "smart_objects/smart_object.h" #include "application_manager/smart_object_keys.h" #include "application_manager/message_helper.h" -#include "application_manager/smart_object_keys.h" #include "application_manager/application_manager_impl.h" -#include "application_manager/message_helper.h" #include "formatters/CFormatterJsonBase.hpp" namespace application_manager { -- cgit v1.2.1 From 73a227291c827507221ce16dc78f1c7d84bc9dc5 Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Thu, 21 Jan 2016 11:31:44 -0500 Subject: Added Slack Badge to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38a3b9cfe6..f7fbcec88c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -##### Note: Please use the [develop](https://github.com/smartdevicelink/sdl_core/tree/develop) or [master](https://github.com/smartdevicelink/sdl_core) branches of sdl_core for the most stable versions. - +[![Slack Status](http://sdlslack.herokuapp.com/badge.svg)](http://slack.smartdevicelink.org) + # SmartDeviceLink (SDL) SmartDeviceLink (SDL) is a standard set of protocols and messages that connect applications on a smartphone to a vehicle head unit. This messaging enables a consumer to interact with their application using common in-vehicle interfaces such as a touch screen display, embedded voice recognition, steering wheel controls and various vehicle knobs and buttons. There are three main components that make up the SDL ecosystem. -- cgit v1.2.1 From c52b9875f0b0169663f9afebed4d676d090160cc Mon Sep 17 00:00:00 2001 From: Justin Dickow Date: Mon, 25 Jan 2016 13:22:48 -0500 Subject: Add SDL Youtube Video Link to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f7fbcec88c..c372e01442 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ Pull Requests Welcome! * [Transport Manager Programming Guide](https://app.box.com/s/1pjquttvmhf19uujtw4x4fv4t1leqasa) * [Software Detailed Design](https://app.box.com/s/ohgrvemtx39f8hfea1ab676xxrzvyx1y) * [Integration Guidelines](https://app.box.com/s/ohcgjv61cykgkuhycglju6cc4efr0ym3) + +SmartDeviceLink ## SDL Core -- cgit v1.2.1