Skip to content

Commit

Permalink
Add Omega branches
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzard committed Feb 20, 2023
1 parent a9a2f01 commit 89218fe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-kodi-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
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']
kodi-version: ['gotham', 'helix', 'isengard', 'jarvis', 'krypton', 'leia', 'matrix', 'nexus', 'omega']

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 @@ -16,5 +16,6 @@
"krypton",
"leia",
"matrix",
"nexus"
"nexus",
"omega"
]
15 changes: 10 additions & 5 deletions kodi_addon_checker/check_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
'krypton': {'min_compatible': '2.1.0', 'advised': '2.25.0'},
'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'}
'nexus': {'min_compatible': '3.0.0', 'advised': '3.0.1'},
'omega': {'min_compatible': '3.0.0', 'advised': '3.0.1'}
},
'xbmc.gui': {
'gotham': {'min_compatible': '5.0.0', 'advised': '5.0.0'},
Expand All @@ -74,7 +75,8 @@
'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'},
'nexus': {'min_compatible': '5.15.0', 'advised': '5.16.0'}
'nexus': {'min_compatible': '5.15.0', 'advised': '5.16.0'},
'omega': {'min_compatible': '5.15.0', 'advised': '5.16.0'}
},
'xbmc.json': {
'gotham': {'min_compatible': '6.0.0', 'advised': '5.0.0'},
Expand All @@ -84,7 +86,8 @@
'krypton': {'min_compatible': '6.0.0', 'advised': '7.0.0'},
'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'}
'nexus': {'min_compatible': '6.0.0', 'advised': '13.0.0'},
'omega': {'min_compatible': '6.0.0', 'advised': '13.0.0'}
},
'xbmc.addon': {
'gotham': {'min_compatible': '12.0.0', 'advised': '13.0.0'},
Expand All @@ -94,7 +97,8 @@
'krypton': {'min_compatible': '12.0.0', 'advised': '17.0.0'},
'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.90.101'}
'nexus': {'min_compatible': '12.0.0', 'advised': '20.0.0'},
'omega': {'min_compatible': '12.0.0', 'advised': '20.90.101'}
},
'xbmc.metadata': {
'gotham': {'min_compatible': '1.0', 'advised': '2.1.0'},
Expand All @@ -104,7 +108,8 @@
'krypton': {'min_compatible': '1.0', 'advised': '2.1.0'},
'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'}
'nexus': {'min_compatible': '1.0', 'advised': '2.1.0'},
'omega': {'min_compatible': '1.0', 'advised': '2.1.0'}
},
}

Expand Down

0 comments on commit 89218fe

Please sign in to comment.