diff -Nru kodi-peripheral-joystick-1.4.8/appveyor.yml kodi-peripheral-joystick-1.5.2/appveyor.yml --- kodi-peripheral-joystick-1.4.8/appveyor.yml 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/appveyor.yml 2020-02-22 05:34:16.000000000 +0000 @@ -5,7 +5,7 @@ - ps: $timestamp = $env:appveyor_repo_commit_timestamp.SubString(0,10) - ps: Update-AppveyorBuild -Version ("{0}-{1}-{2}" -f $env:appveyor_repo_branch, $commit, $timestamp) -image: Visual Studio 2015 +image: Visual Studio 2017 #branches: # only: @@ -21,16 +21,23 @@ app_id: peripheral.joystick matrix: - - GENERATOR: "Visual Studio 14 2015" + - GENERATOR: "Visual Studio 15" CONFIG: Release + - GENERATOR: "Visual Studio 15 Win64" + CONFIG: Release + - GENERATOR: "Visual Studio 15 Win64" + CONFIG: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" + - GENERATOR: "Visual Studio 15 ARM" + CONFIG: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" build_script: - - call "%VS140COMNTOOLS%..\..\VC\bin\vcvars32.bat" - set cur_dir=%cd% - cd .. - - git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git + - git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git - cd %app_id% - mkdir build - cd build - - cmake -G "NMake Makefiles" -DADDONS_TO_BUILD=%app_id% -DCMAKE_BUILD_TYPE=%CONFIG% -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons - - cmake --build "%cur_dir%\build" --target %app_id% \ No newline at end of file + - cmake -T host=x64 -G "%GENERATOR%" %WINSTORE% -DADDONS_TO_BUILD=%app_id% -DCMAKE_BUILD_TYPE=%CONFIG% -DADDONS_DEFINITION_DIR=%APPVEYOR_BUILD_FOLDER%/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons + - cmake --build . --config %CONFIG% --target %app_id% diff -Nru kodi-peripheral-joystick-1.4.8/azure-pipelines.yml kodi-peripheral-joystick-1.5.2/azure-pipelines.yml --- kodi-peripheral-joystick-1.4.8/azure-pipelines.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/azure-pipelines.yml 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1,65 @@ +variables: + app_id: 'peripheral.joystick' + +trigger: + branches: + include: + - Matrix + - releases/* + paths: + include: + - '*' + exclude: + - 'debian/*' + +jobs: + - job: Windows + + pool: + vmImage: 'VS2017-Win2016' + + strategy: + matrix: + Win32: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: Win32 + CONFIGURATION: Release + Win64: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + Win64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" + ARM64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: ARM64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" + + workspace: + clean: all + + steps: + + - script: | + cd .. + git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git kodi + cd $(Build.SourcesDirectory) + mkdir build + cd build + mkdir "definition/$(app_id)" + echo $(app_id) . . > definition/$(app_id)/$(app_id).txt + mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)" + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons' + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)' diff -Nru kodi-peripheral-joystick-1.4.8/debian/changelog kodi-peripheral-joystick-1.5.2/debian/changelog --- kodi-peripheral-joystick-1.4.8/debian/changelog 2020-01-28 15:44:49.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/changelog 2020-04-09 10:44:55.000000000 +0000 @@ -1,16 +1,4 @@ -kodi-peripheral-joystick (1.4.8-2easyVDR1~focal) focal; urgency=high - - * automatic rebuild - - -- Wolfgang Mangold Tue, 28 Jan 2020 16:44:49 +0100 - -kodi-peripheral-joystick (1.4.8-2easyVDR~focal) focal; urgency=high - - * rebuild for focal - - -- Wolfgang Mangold Tue, 10 Dec 2019 23:52:03 +0100 - -kodi-peripheral-joystick (1.4.8-2~eoan) eoan; urgency=low +kodi-peripheral-joystick (1.5.2-1~focal) focal; urgency=low [ kodi ] * autogenerated dummy changelog @@ -18,4 +6,4 @@ [ wsnipex ] * no upstream changelog available - -- wsnipex Mon, 21 Oct 2019 10:18:59 +0000 + -- wsnipex Thu, 09 Apr 2020 10:44:55 +0000 diff -Nru kodi-peripheral-joystick-1.4.8/debian/changelog.tmp kodi-peripheral-joystick-1.5.2/debian/changelog.tmp --- kodi-peripheral-joystick-1.4.8/debian/changelog.tmp 2019-10-21 10:18:56.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/changelog.tmp 2020-04-09 10:44:53.000000000 +0000 @@ -1,4 +1,4 @@ -kodi-peripheral-joystick (1.4.8-2~#DIST#) #DIST#; urgency=low +kodi-peripheral-joystick (1.5.2-1~#DIST#) #DIST#; urgency=low [ kodi ] * autogenerated dummy changelog diff -Nru kodi-peripheral-joystick-1.4.8/debian/compat kodi-peripheral-joystick-1.5.2/debian/compat --- kodi-peripheral-joystick-1.4.8/debian/compat 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/compat 2020-02-22 05:34:16.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru kodi-peripheral-joystick-1.4.8/debian/control kodi-peripheral-joystick-1.5.2/debian/control --- kodi-peripheral-joystick-1.4.8/debian/control 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/control 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ Source: kodi-peripheral-joystick Priority: extra Maintainer: wsnipex -Build-Depends: debhelper (>= 9.0.0), cmake (>= 3.1), libtinyxml-dev, +Build-Depends: debhelper (>= 9.0.0), cmake, libtinyxml-dev, kodi-addon-dev, pkg-config, libudev-dev Standards-Version: 3.9.6 Section: libs diff -Nru kodi-peripheral-joystick-1.4.8/debian/copyright kodi-peripheral-joystick-1.5.2/debian/copyright --- kodi-peripheral-joystick-1.4.8/debian/copyright 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/copyright 2020-02-22 05:34:16.000000000 +0000 @@ -3,7 +3,7 @@ Source: https://github.com/xbmc/peripheral.joystick Files: * -Copyright: 2005-2017 Team Kodi +Copyright: 2005-2020 Team Kodi License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/debian/rules kodi-peripheral-joystick-1.5.2/debian/rules --- kodi-peripheral-joystick-1.4.8/debian/rules 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/rules 2020-02-22 05:34:16.000000000 +0000 @@ -13,7 +13,7 @@ dh $@ --parallel override_dh_auto_configure: - dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 + dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=1 override_dh_strip: dh_strip -pkodi-peripheral-joystick --dbg-package=kodi-peripheral-joystick-dbg diff -Nru kodi-peripheral-joystick-1.4.8/debian/source/format kodi-peripheral-joystick-1.5.2/debian/source/format --- kodi-peripheral-joystick-1.4.8/debian/source/format 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/debian/source/format 2020-02-22 05:34:16.000000000 +0000 @@ -1 +1 @@ -3.0 (native) +3.0 (quilt) diff -Nru kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/CMakeLists.txt kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/CMakeLists.txt --- kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/CMakeLists.txt 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1,22 @@ +cmake_minimum_required(VERSION 3.5) +project(tinyxml) + +set(SOURCES src/tinystr.cpp + src/tinyxml.cpp + src/tinyxmlerror.cpp + src/tinyxmlparser.cpp) + +if(WIN32) + add_definitions(-DWIN32 -D_LIB) +endif() +add_definitions(-DTIXML_USE_STL) + +add_library(tinyxml ${SOURCES}) + +include_directories(${PROJECT_SOURCE_DIR}/include) + +set(HEADERS ${PROJECT_SOURCE_DIR}/include/tinystr.h + ${PROJECT_SOURCE_DIR}/include/tinyxml.h) + +install(FILES ${HEADERS} DESTINATION ${CMAKE_INSTALL_PREFIX}/include) +install(TARGETS tinyxml DESTINATION ${CMAKE_INSTALL_PREFIX}/lib) diff -Nru kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/tinyxml.sha256 kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/tinyxml.sha256 --- kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/tinyxml.sha256 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/tinyxml.sha256 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1 @@ +8164c9ad48b9028667768a584d62f7760cfbfb90d0dd6214ad174403058da10c diff -Nru kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/tinyxml.txt kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/tinyxml.txt --- kodi-peripheral-joystick-1.4.8/depends/common/tinyxml/tinyxml.txt 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/depends/common/tinyxml/tinyxml.txt 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1 @@ +tinyxml http://mirrors.kodi.tv/build-deps/sources/tinyxml-2.6.2_2.tar.gz diff -Nru kodi-peripheral-joystick-1.4.8/.gitignore kodi-peripheral-joystick-1.5.2/.gitignore --- kodi-peripheral-joystick-1.4.8/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/.gitignore 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1,62 @@ +.build +.cproject +.deps +.libs +.project +.settings + +build +Build + +.dummy +.dummy.in +aclocal.m4 +autom4te.cache +config.log +config.status +config.guess +config.sub +configure +configure.lineno +depcomp +INSTALL +install-sh +libtool +ltmain.sh +Makefile +Makefile.in +Makefile.include +Makefile.include.in +missing +compile +.dirstamp + +*.o +*.a +*.P +*.lo +*.la +*.zip +*.m4 + +*.idb +*.tlog +*.lastbuildstate + +# Windows specific generated files +*.exp +*.lib +*.pdb +*.ilk +*.obj +*.suo +*.sdf +*.opensdf +*.vcxproj.user + +peripheral.joystick/project/VS2010Express/Debug +peripheral.joystick/project/VS2010Express/Release +peripheral.joystick/*.so +peripheral.joystick/*.dll +peripheral.joystick/addon.xml +peripheral.joystick/resources/settings.xml diff -Nru kodi-peripheral-joystick-1.4.8/Jenkinsfile kodi-peripheral-joystick-1.5.2/Jenkinsfile --- kodi-peripheral-joystick-1.4.8/Jenkinsfile 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/Jenkinsfile 2020-02-22 05:34:16.000000000 +0000 @@ -1 +1 @@ -buildPlugin(version: "Leia", deploy: ['ubuntu-ppa']) +buildPlugin(version: "Matrix", deploy: ['ubuntu-ppa']) diff -Nru kodi-peripheral-joystick-1.4.8/peripheral.joystick/addon.xml.in kodi-peripheral-joystick-1.5.2/peripheral.joystick/addon.xml.in --- kodi-peripheral-joystick-1.4.8/peripheral.joystick/addon.xml.in 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/peripheral.joystick/addon.xml.in 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -13,6 +13,11 @@ Kodi Joystick Library This library provides joystick drivers and button maps. Multiple joystick APIs are supported, including DirectX, XInput, SDL and the Linux Joystick API. + GPL-2.0 + https://github.com/xbmc/peripheral.joystick @PLATFORM@ + + resources/icon.png + diff -Nru kodi-peripheral-joystick-1.4.8/peripheral.joystick/resources/buttonmaps/xml/cocoa/Xbox_360_Wired_Controller_v045E_p028E_15b_6a.xml kodi-peripheral-joystick-1.5.2/peripheral.joystick/resources/buttonmaps/xml/cocoa/Xbox_360_Wired_Controller_v045E_p028E_15b_6a.xml --- kodi-peripheral-joystick-1.4.8/peripheral.joystick/resources/buttonmaps/xml/cocoa/Xbox_360_Wired_Controller_v045E_p028E_15b_6a.xml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/peripheral.joystick/resources/buttonmaps/xml/cocoa/Xbox_360_Wired_Controller_v045E_p028E_15b_6a.xml 2020-02-22 05:34:16.000000000 +0000 @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Binary files /tmp/tmpTsybS4/eorVoUxTVp/kodi-peripheral-joystick-1.4.8/peripheral.joystick/resources/icon.png and /tmp/tmpTsybS4/AlVzdQwVxo/kodi-peripheral-joystick-1.5.2/peripheral.joystick/resources/icon.png differ diff -Nru kodi-peripheral-joystick-1.4.8/src/addon.cpp kodi-peripheral-joystick-1.5.2/src/addon.cpp --- kodi-peripheral-joystick-1.4.8/src/addon.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/addon.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/addon.h kodi-peripheral-joystick-1.5.2/src/addon.h --- kodi-peripheral-joystick-1.4.8/src/addon.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/addon.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,6 @@ -#pragma once /* - * Copyright (C) 2014-2015 Garrett Brown - * Copyright (C) 2014-2015 Team XBMC + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,11 +13,13 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with XBMC; see the file COPYING. If not, see + * along with Kodi; see the file COPYING. If not, see * . * */ +#pragma once + #include "utils/CommonMacros.h" #include @@ -36,34 +37,34 @@ CPeripheralJoystick(); virtual ~CPeripheralJoystick(); - virtual ADDON_STATUS Create() override; - virtual ADDON_STATUS GetStatus() override; - virtual ADDON_STATUS SetSetting(const std::string& settingName, const kodi::CSettingValue& settingValue) override; - - virtual void GetCapabilities(PERIPHERAL_CAPABILITIES &capabilities) override; - virtual PERIPHERAL_ERROR PerformDeviceScan(unsigned int* peripheral_count, PERIPHERAL_INFO** scan_results) override; - virtual void FreeScanResults(unsigned int peripheral_count, PERIPHERAL_INFO* scan_results) override; - virtual PERIPHERAL_ERROR GetEvents(unsigned int* event_count, PERIPHERAL_EVENT** events) override; - virtual void FreeEvents(unsigned int event_count, PERIPHERAL_EVENT* events) override; - virtual bool SendEvent(const PERIPHERAL_EVENT* event) override; - virtual PERIPHERAL_ERROR GetJoystickInfo(unsigned int index, JOYSTICK_INFO* info) override; - virtual void FreeJoystickInfo(JOYSTICK_INFO* info) override; - virtual PERIPHERAL_ERROR GetFeatures(const JOYSTICK_INFO* joystick, const char* controller_id, + ADDON_STATUS Create() override; + ADDON_STATUS GetStatus() override; + ADDON_STATUS SetSetting(const std::string& settingName, const kodi::CSettingValue& settingValue) override; + + void GetCapabilities(PERIPHERAL_CAPABILITIES &capabilities) override; + PERIPHERAL_ERROR PerformDeviceScan(unsigned int* peripheral_count, PERIPHERAL_INFO** scan_results) override; + void FreeScanResults(unsigned int peripheral_count, PERIPHERAL_INFO* scan_results) override; + PERIPHERAL_ERROR GetEvents(unsigned int* event_count, PERIPHERAL_EVENT** events) override; + void FreeEvents(unsigned int event_count, PERIPHERAL_EVENT* events) override; + bool SendEvent(const PERIPHERAL_EVENT* event) override; + PERIPHERAL_ERROR GetJoystickInfo(unsigned int index, JOYSTICK_INFO* info) override; + void FreeJoystickInfo(JOYSTICK_INFO* info) override; + PERIPHERAL_ERROR GetFeatures(const JOYSTICK_INFO* joystick, const char* controller_id, unsigned int* feature_count, JOYSTICK_FEATURE** features) override; - virtual void FreeFeatures(unsigned int feature_count, JOYSTICK_FEATURE* features) override; - virtual PERIPHERAL_ERROR MapFeatures(const JOYSTICK_INFO* joystick, const char* controller_id, + void FreeFeatures(unsigned int feature_count, JOYSTICK_FEATURE* features) override; + PERIPHERAL_ERROR MapFeatures(const JOYSTICK_INFO* joystick, const char* controller_id, unsigned int feature_count, const JOYSTICK_FEATURE* features) override; - virtual PERIPHERAL_ERROR GetIgnoredPrimitives(const JOYSTICK_INFO* joystick, + PERIPHERAL_ERROR GetIgnoredPrimitives(const JOYSTICK_INFO* joystick, unsigned int* primitive_count, JOYSTICK_DRIVER_PRIMITIVE** primitives) override; - virtual void FreePrimitives(unsigned int primitive_count, JOYSTICK_DRIVER_PRIMITIVE* primitives) override; - virtual PERIPHERAL_ERROR SetIgnoredPrimitives(const JOYSTICK_INFO* joystick, + void FreePrimitives(unsigned int primitive_count, JOYSTICK_DRIVER_PRIMITIVE* primitives) override; + PERIPHERAL_ERROR SetIgnoredPrimitives(const JOYSTICK_INFO* joystick, unsigned int primitive_count, const JOYSTICK_DRIVER_PRIMITIVE* primitives) override; - virtual void SaveButtonMap(const JOYSTICK_INFO* joystick) override; - virtual void RevertButtonMap(const JOYSTICK_INFO* joystick) override; - virtual void ResetButtonMap(const JOYSTICK_INFO* joystick, const char* controller_id) override; - virtual void PowerOffJoystick(unsigned int index) override; + void SaveButtonMap(const JOYSTICK_INFO* joystick) override; + void RevertButtonMap(const JOYSTICK_INFO* joystick) override; + void ResetButtonMap(const JOYSTICK_INFO* joystick, const char* controller_id) override; + void PowerOffJoystick(unsigned int index) override; private: JOYSTICK::CPeripheralScanner* m_scanner; diff -Nru kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickCocoa.cpp kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickCocoa.cpp --- kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickCocoa.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickCocoa.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickCocoa.h kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickCocoa.h --- kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickCocoa.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickCocoa.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickInterfaceCocoa.cpp kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickInterfaceCocoa.cpp --- kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickInterfaceCocoa.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickInterfaceCocoa.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickInterfaceCocoa.h kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickInterfaceCocoa.h --- kodi-peripheral-joystick-1.4.8/src/api/cocoa/JoystickInterfaceCocoa.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/cocoa/JoystickInterfaceCocoa.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickDirectInput.cpp kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickDirectInput.cpp --- kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickDirectInput.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickDirectInput.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickDirectInput.h kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickDirectInput.h --- kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickDirectInput.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickDirectInput.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickInterfaceDirectInput.cpp kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickInterfaceDirectInput.cpp --- kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickInterfaceDirectInput.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickInterfaceDirectInput.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickInterfaceDirectInput.h kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickInterfaceDirectInput.h --- kodi-peripheral-joystick-1.4.8/src/api/directinput/JoystickInterfaceDirectInput.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/directinput/JoystickInterfaceDirectInput.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/IJoystickInterface.cpp kodi-peripheral-joystick-1.5.2/src/api/IJoystickInterface.cpp --- kodi-peripheral-joystick-1.4.8/src/api/IJoystickInterface.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/IJoystickInterface.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2017 Garrett Brown - * Copyright (C) 2017 Team XBMC + * Copyright (C) 2017-2020 Garrett Brown + * Copyright (C) 2017-2020 Team XBMC * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/IJoystickInterface.h kodi-peripheral-joystick-1.5.2/src/api/IJoystickInterface.h --- kodi-peripheral-joystick-1.4.8/src/api/IJoystickInterface.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/IJoystickInterface.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/Joystick.cpp kodi-peripheral-joystick-1.5.2/src/api/Joystick.cpp --- kodi-peripheral-joystick-1.4.8/src/api/Joystick.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/Joystick.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/Joystick.h kodi-peripheral-joystick-1.5.2/src/api/Joystick.h --- kodi-peripheral-joystick-1.4.8/src/api/Joystick.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/Joystick.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickInterfaceCallback.cpp kodi-peripheral-joystick-1.5.2/src/api/JoystickInterfaceCallback.cpp --- kodi-peripheral-joystick-1.4.8/src/api/JoystickInterfaceCallback.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickInterfaceCallback.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickInterfaceCallback.h kodi-peripheral-joystick-1.5.2/src/api/JoystickInterfaceCallback.h --- kodi-peripheral-joystick-1.4.8/src/api/JoystickInterfaceCallback.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickInterfaceCallback.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickManager.cpp kodi-peripheral-joystick-1.5.2/src/api/JoystickManager.cpp --- kodi-peripheral-joystick-1.4.8/src/api/JoystickManager.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickManager.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickManager.h kodi-peripheral-joystick-1.5.2/src/api/JoystickManager.h --- kodi-peripheral-joystick-1.4.8/src/api/JoystickManager.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickManager.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickTranslator.cpp kodi-peripheral-joystick-1.5.2/src/api/JoystickTranslator.cpp --- kodi-peripheral-joystick-1.4.8/src/api/JoystickTranslator.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickTranslator.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickTranslator.h kodi-peripheral-joystick-1.5.2/src/api/JoystickTranslator.h --- kodi-peripheral-joystick-1.4.8/src/api/JoystickTranslator.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickTranslator.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickTypes.h kodi-peripheral-joystick-1.5.2/src/api/JoystickTypes.h --- kodi-peripheral-joystick-1.4.8/src/api/JoystickTypes.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickTypes.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickUtils.cpp kodi-peripheral-joystick-1.5.2/src/api/JoystickUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/api/JoystickUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2017 Garrett Brown - * Copyright (C) 2017 Team Kodi + * Copyright (C) 2017-2020 Garrett Brown + * Copyright (C) 2017-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/JoystickUtils.h kodi-peripheral-joystick-1.5.2/src/api/JoystickUtils.h --- kodi-peripheral-joystick-1.4.8/src/api/JoystickUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/JoystickUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2017 Garrett Brown - * Copyright (C) 2017 Team Kodi + * Copyright (C) 2020 Garrett Brown + * Copyright (C) 2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickInterfaceLinux.cpp kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickInterfaceLinux.cpp --- kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickInterfaceLinux.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickInterfaceLinux.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickInterfaceLinux.h kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickInterfaceLinux.h --- kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickInterfaceLinux.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickInterfaceLinux.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickLinux.cpp kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickLinux.cpp --- kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickLinux.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickLinux.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickLinux.h kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickLinux.h --- kodi-peripheral-joystick-1.4.8/src/api/linux/JoystickLinux.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/linux/JoystickLinux.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/PeripheralScanner.cpp kodi-peripheral-joystick-1.5.2/src/api/PeripheralScanner.cpp --- kodi-peripheral-joystick-1.4.8/src/api/PeripheralScanner.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/PeripheralScanner.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/PeripheralScanner.h kodi-peripheral-joystick-1.5.2/src/api/PeripheralScanner.h --- kodi-peripheral-joystick-1.4.8/src/api/PeripheralScanner.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/PeripheralScanner.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickInterfaceSDL.cpp kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickInterfaceSDL.cpp --- kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickInterfaceSDL.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickInterfaceSDL.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ /* * Copyright (C) 2016-2017 Sam Lantinga - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickInterfaceSDL.h kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickInterfaceSDL.h --- kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickInterfaceSDL.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickInterfaceSDL.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ /* * Copyright (C) 2016-2017 Sam Lantinga - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickSDL.cpp kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickSDL.cpp --- kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickSDL.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickSDL.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ /* * Copyright (C) 2016-2017 Sam Lantinga - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickSDL.h kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickSDL.h --- kodi-peripheral-joystick-1.4.8/src/api/sdl/JoystickSDL.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/sdl/JoystickSDL.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,7 +1,7 @@ /* * Copyright (C) 2016-2017 Sam Lantinga - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickInterfaceUdev.cpp kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickInterfaceUdev.cpp --- kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickInterfaceUdev.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickInterfaceUdev.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickInterfaceUdev.h kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickInterfaceUdev.h --- kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickInterfaceUdev.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickInterfaceUdev.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickUdev.cpp kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickUdev.cpp --- kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickUdev.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickUdev.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickUdev.h kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickUdev.h --- kodi-peripheral-joystick-1.4.8/src/api/udev/JoystickUdev.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/udev/JoystickUdev.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickInterfaceXInput.cpp kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickInterfaceXInput.cpp --- kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickInterfaceXInput.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickInterfaceXInput.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickInterfaceXInput.h kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickInterfaceXInput.h --- kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickInterfaceXInput.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickInterfaceXInput.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickXInput.cpp kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickXInput.cpp --- kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickXInput.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickXInput.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickXInput.h kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickXInput.h --- kodi-peripheral-joystick-1.4.8/src/api/xinput/JoystickXInput.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/JoystickXInput.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/XInputDLL.cpp kodi-peripheral-joystick-1.5.2/src/api/xinput/XInputDLL.cpp --- kodi-peripheral-joystick-1.4.8/src/api/xinput/XInputDLL.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/XInputDLL.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/api/xinput/XInputDLL.h kodi-peripheral-joystick-1.5.2/src/api/xinput/XInputDLL.h --- kodi-peripheral-joystick-1.4.8/src/api/xinput/XInputDLL.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/api/xinput/XInputDLL.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapper.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapper.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapper.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapper.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapper.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapper.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapper.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapper.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTranslator.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTranslator.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTranslator.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTranslator.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTranslator.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTranslator.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTranslator.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTranslator.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTypes.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTypes.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapTypes.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapTypes.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapUtils.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapUtils.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapUtils.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ButtonMapUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ButtonMapUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ControllerTransformer.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/ControllerTransformer.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ControllerTransformer.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ControllerTransformer.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/ControllerTransformer.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/ControllerTransformer.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/ControllerTransformer.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/ControllerTransformer.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/DriverGeometry.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/DriverGeometry.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/DriverGeometry.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/DriverGeometry.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/DriverGeometry.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/DriverGeometry.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/DriverGeometry.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/DriverGeometry.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/JoystickFamily.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/JoystickFamily.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/JoystickFamily.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/JoystickFamily.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/JoystickFamily.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/JoystickFamily.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/JoystickFamily.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/JoystickFamily.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/StringRegistry.cpp kodi-peripheral-joystick-1.5.2/src/buttonmapper/StringRegistry.cpp --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/StringRegistry.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/StringRegistry.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 Garrett Brown - * Copyright (C) 2018 Team Kodi + * Copyright (C) 2018-2020 Garrett Brown + * Copyright (C) 2018-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/buttonmapper/StringRegistry.h kodi-peripheral-joystick-1.5.2/src/buttonmapper/StringRegistry.h --- kodi-peripheral-joystick-1.4.8/src/buttonmapper/StringRegistry.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/buttonmapper/StringRegistry.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 Garrett Brown - * Copyright (C) 2018 Team Kodi + * Copyright (C) 2018-2020 Garrett Brown + * Copyright (C) 2018-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryCache.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryCache.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryCache.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryCache.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryCache.h kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryCache.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryCache.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryCache.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryUtils.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/DirectoryUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/DirectoryUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/Filesystem.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/Filesystem.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/Filesystem.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/Filesystem.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/Filesystem.h kodi-peripheral-joystick-1.5.2/src/filesystem/Filesystem.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/Filesystem.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/Filesystem.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/FilesystemTypes.h kodi-peripheral-joystick-1.5.2/src/filesystem/FilesystemTypes.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/FilesystemTypes.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/FilesystemTypes.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/FileUtils.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/FileUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/FileUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/FileUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/FileUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/FileUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/FileUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/FileUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/generic/ReadableFile.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/generic/ReadableFile.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/generic/ReadableFile.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/generic/ReadableFile.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/generic/ReadableFile.h kodi-peripheral-joystick-1.5.2/src/filesystem/generic/ReadableFile.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/generic/ReadableFile.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/generic/ReadableFile.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/generic/SeekableFile.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/generic/SeekableFile.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/generic/SeekableFile.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/generic/SeekableFile.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/generic/SeekableFile.h kodi-peripheral-joystick-1.5.2/src/filesystem/generic/SeekableFile.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/generic/SeekableFile.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/generic/SeekableFile.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/IDirectoryUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/IDirectoryUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/IDirectoryUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/IDirectoryUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/IFile.h kodi-peripheral-joystick-1.5.2/src/filesystem/IFile.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/IFile.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/IFile.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/IFileUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/IFileUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/IFileUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/IFileUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSDirectoryUtils.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSDirectoryUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSDirectoryUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSDirectoryUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSDirectoryUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSDirectoryUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSDirectoryUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSDirectoryUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSFileUtils.cpp kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSFileUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSFileUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSFileUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSFileUtils.h kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSFileUtils.h --- kodi-peripheral-joystick-1.4.8/src/filesystem/vfs/VFSFileUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/filesystem/vfs/VFSFileUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/log/ILog.h kodi-peripheral-joystick-1.5.2/src/log/ILog.h --- kodi-peripheral-joystick-1.4.8/src/log/ILog.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/ILog.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogAddon.cpp kodi-peripheral-joystick-1.5.2/src/log/LogAddon.cpp --- kodi-peripheral-joystick-1.4.8/src/log/LogAddon.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogAddon.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogAddon.h kodi-peripheral-joystick-1.5.2/src/log/LogAddon.h --- kodi-peripheral-joystick-1.4.8/src/log/LogAddon.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogAddon.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogConsole.cpp kodi-peripheral-joystick-1.5.2/src/log/LogConsole.cpp --- kodi-peripheral-joystick-1.4.8/src/log/LogConsole.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogConsole.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogConsole.h kodi-peripheral-joystick-1.5.2/src/log/LogConsole.h --- kodi-peripheral-joystick-1.4.8/src/log/LogConsole.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogConsole.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/Log.cpp kodi-peripheral-joystick-1.5.2/src/log/Log.cpp --- kodi-peripheral-joystick-1.4.8/src/log/Log.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/Log.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/Log.h kodi-peripheral-joystick-1.5.2/src/log/Log.h --- kodi-peripheral-joystick-1.4.8/src/log/Log.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/Log.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogSyslog.cpp kodi-peripheral-joystick-1.5.2/src/log/LogSyslog.cpp --- kodi-peripheral-joystick-1.4.8/src/log/LogSyslog.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogSyslog.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/log/LogSyslog.h kodi-peripheral-joystick-1.5.2/src/log/LogSyslog.h --- kodi-peripheral-joystick-1.4.8/src/log/LogSyslog.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/log/LogSyslog.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * Portions Copyright (C) 2013-2014 Lars Op den Kamp * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-peripheral-joystick-1.4.8/src/settings/Settings.cpp kodi-peripheral-joystick-1.5.2/src/settings/Settings.cpp --- kodi-peripheral-joystick-1.4.8/src/settings/Settings.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/settings/Settings.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/settings/Settings.h kodi-peripheral-joystick-1.5.2/src/settings/Settings.h --- kodi-peripheral-joystick-1.4.8/src/settings/Settings.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/settings/Settings.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/api/DatabaseJoystickAPI.cpp kodi-peripheral-joystick-1.5.2/src/storage/api/DatabaseJoystickAPI.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/api/DatabaseJoystickAPI.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/api/DatabaseJoystickAPI.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/api/DatabaseJoystickAPI.h kodi-peripheral-joystick-1.5.2/src/storage/api/DatabaseJoystickAPI.h --- kodi-peripheral-joystick-1.4.8/src/storage/api/DatabaseJoystickAPI.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/api/DatabaseJoystickAPI.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/ButtonMap.cpp kodi-peripheral-joystick-1.5.2/src/storage/ButtonMap.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/ButtonMap.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/ButtonMap.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/ButtonMap.h kodi-peripheral-joystick-1.5.2/src/storage/ButtonMap.h --- kodi-peripheral-joystick-1.4.8/src/storage/ButtonMap.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/ButtonMap.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/DeviceConfiguration.cpp kodi-peripheral-joystick-1.5.2/src/storage/DeviceConfiguration.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/DeviceConfiguration.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/DeviceConfiguration.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/DeviceConfiguration.h kodi-peripheral-joystick-1.5.2/src/storage/DeviceConfiguration.h --- kodi-peripheral-joystick-1.4.8/src/storage/DeviceConfiguration.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/DeviceConfiguration.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/Device.cpp kodi-peripheral-joystick-1.5.2/src/storage/Device.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/Device.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/Device.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/Device.h kodi-peripheral-joystick-1.5.2/src/storage/Device.h --- kodi-peripheral-joystick-1.4.8/src/storage/Device.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/Device.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/IDatabase.h kodi-peripheral-joystick-1.5.2/src/storage/IDatabase.h --- kodi-peripheral-joystick-1.4.8/src/storage/IDatabase.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/IDatabase.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/JustABunchOfFiles.cpp kodi-peripheral-joystick-1.5.2/src/storage/JustABunchOfFiles.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/JustABunchOfFiles.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/JustABunchOfFiles.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/JustABunchOfFiles.h kodi-peripheral-joystick-1.5.2/src/storage/JustABunchOfFiles.h --- kodi-peripheral-joystick-1.4.8/src/storage/JustABunchOfFiles.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/JustABunchOfFiles.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/MouseTranslator.cpp kodi-peripheral-joystick-1.5.2/src/storage/MouseTranslator.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/MouseTranslator.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/MouseTranslator.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 Garrett Brown - * Copyright (C) 2018 Team Kodi + * Copyright (C) 2018-2020 Garrett Brown + * Copyright (C) 2018-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/MouseTranslator.h kodi-peripheral-joystick-1.5.2/src/storage/MouseTranslator.h --- kodi-peripheral-joystick-1.4.8/src/storage/MouseTranslator.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/MouseTranslator.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2018 Garrett Brown - * Copyright (C) 2018 Team Kodi + * Copyright (C) 2018-2020 Garrett Brown + * Copyright (C) 2018-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/PrimitiveConfiguration.h kodi-peripheral-joystick-1.5.2/src/storage/PrimitiveConfiguration.h --- kodi-peripheral-joystick-1.4.8/src/storage/PrimitiveConfiguration.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/PrimitiveConfiguration.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageDefinitions.h kodi-peripheral-joystick-1.5.2/src/storage/StorageDefinitions.h --- kodi-peripheral-joystick-1.4.8/src/storage/StorageDefinitions.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageDefinitions.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageManager.cpp kodi-peripheral-joystick-1.5.2/src/storage/StorageManager.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/StorageManager.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageManager.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageManager.h kodi-peripheral-joystick-1.5.2/src/storage/StorageManager.h --- kodi-peripheral-joystick-1.4.8/src/storage/StorageManager.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageManager.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageTypes.h kodi-peripheral-joystick-1.5.2/src/storage/StorageTypes.h --- kodi-peripheral-joystick-1.4.8/src/storage/StorageTypes.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageTypes.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageUtils.cpp kodi-peripheral-joystick-1.5.2/src/storage/StorageUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/StorageUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/StorageUtils.h kodi-peripheral-joystick-1.5.2/src/storage/StorageUtils.h --- kodi-peripheral-joystick-1.4.8/src/storage/StorageUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/StorageUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapDefinitions.h kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapDefinitions.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapDefinitions.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapDefinitions.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapXml.cpp kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapXml.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapXml.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapXml.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapXml.h kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapXml.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/ButtonMapXml.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/ButtonMapXml.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/DatabaseXml.cpp kodi-peripheral-joystick-1.5.2/src/storage/xml/DatabaseXml.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/xml/DatabaseXml.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/DatabaseXml.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/DatabaseXml.h kodi-peripheral-joystick-1.5.2/src/storage/xml/DatabaseXml.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/DatabaseXml.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/DatabaseXml.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/DeviceXml.cpp kodi-peripheral-joystick-1.5.2/src/storage/xml/DeviceXml.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/xml/DeviceXml.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/DeviceXml.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/DeviceXml.h kodi-peripheral-joystick-1.5.2/src/storage/xml/DeviceXml.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/DeviceXml.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/DeviceXml.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamiliesXml.cpp kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamiliesXml.cpp --- kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamiliesXml.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamiliesXml.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamiliesXml.h kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamiliesXml.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamiliesXml.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamiliesXml.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamilyDefinitions.h kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamilyDefinitions.h --- kodi-peripheral-joystick-1.4.8/src/storage/xml/JoystickFamilyDefinitions.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/storage/xml/JoystickFamilyDefinitions.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2016-2017 Garrett Brown - * Copyright (C) 2016-2017 Team Kodi + * Copyright (C) 2016-2020 Garrett Brown + * Copyright (C) 2016-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/utils/CommonMacros.h kodi-peripheral-joystick-1.5.2/src/utils/CommonMacros.h --- kodi-peripheral-joystick-1.4.8/src/utils/CommonMacros.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/utils/CommonMacros.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2014-2017 Garrett Brown - * Copyright (C) 2014-2017 Team Kodi + * Copyright (C) 2014-2020 Garrett Brown + * Copyright (C) 2014-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,6 +17,7 @@ * . * */ + #pragma once #if !defined(ASSERT) diff -Nru kodi-peripheral-joystick-1.4.8/src/utils/StringUtils.cpp kodi-peripheral-joystick-1.5.2/src/utils/StringUtils.cpp --- kodi-peripheral-joystick-1.4.8/src/utils/StringUtils.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/utils/StringUtils.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff -Nru kodi-peripheral-joystick-1.4.8/src/utils/StringUtils.h kodi-peripheral-joystick-1.5.2/src/utils/StringUtils.h --- kodi-peripheral-joystick-1.4.8/src/utils/StringUtils.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/utils/StringUtils.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015-2017 Garrett Brown - * Copyright (C) 2015-2017 Team Kodi + * Copyright (C) 2015-2020 Garrett Brown + * Copyright (C) 2015-2020 Team Kodi * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,6 +17,7 @@ * . * */ + #pragma once #include diff -Nru kodi-peripheral-joystick-1.4.8/src/utils/windows/CharsetConverter.cpp kodi-peripheral-joystick-1.5.2/src/utils/windows/CharsetConverter.cpp --- kodi-peripheral-joystick-1.4.8/src/utils/windows/CharsetConverter.cpp 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/utils/windows/CharsetConverter.cpp 2020-02-22 05:34:16.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2005-2016 Team XBMC - * http://xbmc.org + * Copyright (C) 2005-2020 Team Kodi + * http://kodi.tv * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with XBMC; see the file COPYING. If not, see + * along with Kodi; see the file COPYING. If not, see * . * */ diff -Nru kodi-peripheral-joystick-1.4.8/src/utils/windows/CharsetConverter.h kodi-peripheral-joystick-1.5.2/src/utils/windows/CharsetConverter.h --- kodi-peripheral-joystick-1.4.8/src/utils/windows/CharsetConverter.h 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/src/utils/windows/CharsetConverter.h 2020-02-22 05:34:16.000000000 +0000 @@ -1,8 +1,6 @@ -#pragma once - /* - * Copyright (C) 2005-2016 Team XBMC - * http://xbmc.org + * Copyright (C) 2005-2020 Team Kodi + * http://kodi.tv * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,11 +13,13 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with XBMC; see the file COPYING. If not, see + * along with Kodi; see the file COPYING. If not, see * . * */ +#pragma once + #include #if defined(TARGET_WINDOWS) || defined(TARGET_WIN10) diff -Nru kodi-peripheral-joystick-1.4.8/.travis.yml kodi-peripheral-joystick-1.5.2/.travis.yml --- kodi-peripheral-joystick-1.4.8/.travis.yml 2019-08-19 14:35:05.000000000 +0000 +++ kodi-peripheral-joystick-1.5.2/.travis.yml 2020-02-22 05:34:16.000000000 +0000 @@ -18,9 +18,7 @@ sudo: required compiler: clang - os: osx - osx_image: xcode9 - - os: osx - osx_image: xcode9.4 + osx_image: xcode10.2 # # The addon source is automatically checked out in $TRAVIS_BUILD_DIR, @@ -28,7 +26,7 @@ # before_script: - cd $TRAVIS_BUILD_DIR/.. - - git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git + - git clone --branch master --depth=1 https://github.com/xbmc/xbmc.git - cd ${app_id} && mkdir build && cd build - mkdir -p definition/${app_id} - echo ${app_id} $TRAVIS_BUILD_DIR $TRAVIS_COMMIT > definition/${app_id}/${app_id}.txt