Skip to content

Commit 27d788f

Browse files
authored
Merge pull request #176 from AlwinEsch/Leia-change
[Leia] Cleanups, copyright year increase, icon add
2 parents 50ee5b3 + 9a2c9fe commit 27d788f

File tree

133 files changed

+291
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+291
-285
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ matrix:
1717
dist: xenial
1818
sudo: required
1919
compiler: clang
20-
- os: osx
21-
osx_image: xcode9
2220
- os: osx
2321
osx_image: xcode9.4
2422

debian/compat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8
1+
9

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: kodi-peripheral-joystick
22
Priority: extra
33
Maintainer: wsnipex <wsnipex@a1.net>
4-
Build-Depends: debhelper (>= 9.0.0), cmake (>= 3.1), libtinyxml-dev,
4+
Build-Depends: debhelper (>= 9.0.0), cmake, libtinyxml-dev,
55
kodi-addon-dev, pkg-config, libudev-dev
66
Standards-Version: 3.9.6
77
Section: libs

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Upstream-Name: peripheral.joystick
33
Source: https://github.com/xbmc/peripheral.joystick
44

55
Files: *
6-
Copyright: 2005-2017 Team Kodi
6+
Copyright: 2005-2020 Team Kodi
77
License: GPL-2+
88
This package is free software; you can redistribute it and/or modify
99
it under the terms of the GNU General Public License as published by
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
usr/lib/*/kodi/addons
2-
usr/share/kodi/addons
1+
usr/lib/*
2+
usr/share/*

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
dh $@ --parallel
1414

1515
override_dh_auto_configure:
16-
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1
16+
dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=1
1717

1818
override_dh_strip:
1919
dh_strip -pkodi-peripheral-joystick --dbg-package=kodi-peripheral-joystick-dbg

debian/source/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0 (native)
1+
3.0 (quilt)

peripheral.joystick/addon.xml.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon
33
id="peripheral.joystick"
4-
version="1.4.8"
4+
version="1.4.9"
55
name="Joystick Support"
66
provider-name="Team Kodi">
77
<requires>@ADDON_DEPENDS@</requires>
@@ -13,6 +13,11 @@
1313
<extension point="xbmc.addon.metadata">
1414
<summary lang="en_GB">Kodi Joystick Library</summary>
1515
<description lang="en_GB">This library provides joystick drivers and button maps. Multiple joystick APIs are supported, including DirectX, XInput, SDL and the Linux Joystick API.</description>
16+
<license>GPL-2.0</license>
17+
<source>https://github.com/xbmc/peripheral.joystick</source>
1618
<platform>@PLATFORM@</platform>
19+
<assets>
20+
<icon>resources/icon.png</icon>
21+
</assets>
1722
</extension>
1823
</addon>
18.7 KB
Loading

src/addon.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2014-2017 Garrett Brown
3-
* Copyright (C) 2014-2017 Team Kodi
2+
* Copyright (C) 2014-2020 Garrett Brown
3+
* Copyright (C) 2014-2020 Team Kodi
44
*
55
* This Program is free software; you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)