Skip to content

Commit

Permalink
Merge pull request #277 from ksooo/piers-support
Browse files Browse the repository at this point in the history
Add support for Piers.
  • Loading branch information
enen92 authored Aug 2, 2024
2 parents 440a545 + 03be74a commit c9143f9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-kodi-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
repo: ['repo-plugins', 'repo-scripts', 'repo-scrapers', 'repo-resources', 'repo-skins']
kodi-version: ['gotham', 'helix', 'isengard', 'jarvis', 'krypton', 'leia', 'matrix', 'nexus', 'omega']
repo: ['repo-plugins', 'repo-scripts', 'repo-scrapers', 'repo-resources', 'repo-skins', 'repo-webinterfaces']
kodi-version: ['gotham', 'helix', 'isengard', 'jarvis', 'krypton', 'leia', 'matrix', 'nexus', 'omega', 'piers']

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion kodi_addon_checker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
See LICENSES/README.md for more information.
"""

__version__ = "0.0.33"
__version__ = "0.0.34"

ValidKodiVersions = [
"gotham",
Expand All @@ -18,4 +18,5 @@
"matrix",
"nexus",
"omega",
"piers",
]
17 changes: 11 additions & 6 deletions kodi_addon_checker/check_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@
'leia': {'min_compatible': '2.1.0', 'advised': '2.26.0'},
'matrix': {'min_compatible': '3.0.0', 'advised': '3.0.0'},
'nexus': {'min_compatible': '3.0.0', 'advised': '3.0.1'},
'omega': {'min_compatible': '3.0.0', 'advised': '3.0.1'}
'omega': {'min_compatible': '3.0.0', 'advised': '3.0.1'},
'piers': {'min_compatible': '3.0.0', 'advised': '3.0.1'}
},
'xbmc.gui': {
'gotham': {'min_compatible': '5.0.0', 'advised': '5.0.0'},
Expand All @@ -74,9 +75,10 @@
'jarvis': {'min_compatible': '5.10.0', 'advised': '5.10.0'},
'krypton': {'min_compatible': '5.12.0', 'advised': '5.12.0'},
'leia': {'min_compatible': '5.14.0', 'advised': '5.14.0'},
'matrix': {'min_compatible': '5.14.0', 'advised': '5.15.0'},
'matrix': {'min_compatible': '5.15.0', 'advised': '5.15.0'},
'nexus': {'min_compatible': '5.15.0', 'advised': '5.16.0'},
'omega': {'min_compatible': '5.15.0', 'advised': '5.16.0'}
'omega': {'min_compatible': '5.17.0', 'advised': '5.17.0'},
'piers': {'min_compatible': '5.17.0', 'advised': '5.17.0'}
},
'xbmc.json': {
'gotham': {'min_compatible': '6.0.0', 'advised': '5.0.0'},
Expand All @@ -87,7 +89,8 @@
'leia': {'min_compatible': '6.0.0', 'advised': '9.7.2'},
'matrix': {'min_compatible': '6.0.0', 'advised': '12.4.0'},
'nexus': {'min_compatible': '6.0.0', 'advised': '13.0.0'},
'omega': {'min_compatible': '6.0.0', 'advised': '13.0.0'}
'omega': {'min_compatible': '6.0.0', 'advised': '13.5.0'},
'piers': {'min_compatible': '6.0.0', 'advised': '13.6.0'}
},
'xbmc.addon': {
'gotham': {'min_compatible': '12.0.0', 'advised': '13.0.0'},
Expand All @@ -98,7 +101,8 @@
'leia': {'min_compatible': '12.0.0', 'advised': '17.9.910'},
'matrix': {'min_compatible': '12.0.0', 'advised': '19.1.0'},
'nexus': {'min_compatible': '12.0.0', 'advised': '20.0.0'},
'omega': {'min_compatible': '12.0.0', 'advised': '20.90.101'}
'omega': {'min_compatible': '12.0.0', 'advised': '21.0.0'},
'piers': {'min_compatible': '12.0.0', 'advised': '21.90.700'}
},
'xbmc.metadata': {
'gotham': {'min_compatible': '1.0', 'advised': '2.1.0'},
Expand All @@ -109,7 +113,8 @@
'leia': {'min_compatible': '1.0', 'advised': '2.1.0'},
'matrix': {'min_compatible': '1.0', 'advised': '2.1.0'},
'nexus': {'min_compatible': '1.0', 'advised': '2.1.0'},
'omega': {'min_compatible': '1.0', 'advised': '2.1.0'}
'omega': {'min_compatible': '1.0', 'advised': '2.1.0'},
'piers': {'min_compatible': '1.0', 'advised': '2.1.0'}
},
}

Expand Down

0 comments on commit c9143f9

Please sign in to comment.