Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xbmc/kodi-tv
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 486d8b5f3c2ff2d17033769dfc1ed8b8a917ec61
Choose a base ref
..
head repository: xbmc/kodi-tv
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cb9278664a3443cb07e88521e5229d2a43a123bb
Choose a head ref
Showing with 21,681 additions and 17,188 deletions.
  1. +1 −1 .github/workflows/update-addon-history.yml
  2. +851 −660 package-lock.json
  3. +13 −13 package.json
  4. +1 −1 src/components/SectionWidgets.tsx
  5. +95 −0 src/content/article/kodi-20-3-nexus-release/index.md
  6. +62 −0 src/content/article/kodi-20-4-nexus-release/index.md
  7. +120 −0 src/content/article/kodi-21-0-omega-beta-2/index.md
  8. +19 −0 src/content/article/kodi-at-fosdem-2024/index.md
  9. +5,420 −4,527 src/data/addons/nexus/addons.json
  10. +8,695 −6,588 src/data/addons/nexus/authors.json
  11. +6,385 −5,379 src/data/addons/nexus/categories.json
  12. +3 −3 src/data/yaml/distribution/android.yaml
  13. +2 −2 src/data/yaml/distribution/ios.yaml
  14. +1 −1 src/data/yaml/distribution/linux.yaml
  15. +2 −2 src/data/yaml/distribution/macos.yaml
  16. +1 −1 src/data/yaml/distribution/raspberry-pi.yaml
  17. +2 −2 src/data/yaml/distribution/tvos.yaml
  18. +3 −3 src/data/yaml/distribution/windows.yaml
  19. +3 −3 src/data/yaml/stats/stats.yaml
  20. +1 −1 src/pages/index.tsx
  21. +1 −1 static/.well-known/org.flathub.VerifiedApps.txt
  22. BIN static/images/addons/nexus/game.libretro.beetle-cygne/resources/icon.png
  23. BIN static/images/addons/nexus/game.libretro.beetle-cygne/resources/screenshot-01.jpg
  24. BIN static/images/addons/nexus/game.libretro.beetle-cygne/resources/screenshot-02.jpg
  25. BIN static/images/addons/nexus/game.libretro.beetle-cygne/resources/screenshot-03.jpg
  26. BIN static/images/addons/nexus/game.libretro.bsnes-hd/resources/icon.png
  27. BIN static/images/addons/nexus/game.libretro.bsnes-hd/resources/screenshot-01.jpg
  28. BIN static/images/addons/nexus/game.libretro.bsnes-hd/resources/screenshot-02.jpg
  29. BIN static/images/addons/nexus/game.libretro.bsnes-hd/resources/screenshot-03.jpg
  30. BIN static/images/addons/nexus/game.libretro.mupen64plus/resources/icon.png
  31. BIN static/images/addons/nexus/game.libretro.openlara/resources/icon.png
  32. BIN static/images/addons/nexus/game.libretro.openlara/resources/screenshot-01.jpg
  33. BIN static/images/addons/nexus/game.libretro.openlara/resources/screenshot-02.jpg
  34. BIN static/images/addons/nexus/game.libretro.openlara/resources/screenshot-03.jpg
  35. BIN static/images/addons/nexus/plugin.video.piped/resources/fanart.jpg
  36. BIN static/images/addons/nexus/plugin.video.piped/resources/icon.png
  37. BIN static/images/addons/nexus/script.areace/resources/screenshots/acestream_buffering.jpg
  38. BIN static/images/addons/nexus/script.areace/resources/screenshots/chose_app.jpg
  39. BIN static/images/addons/nexus/script.areace/resources/screenshots/select_stream.jpg
  40. BIN static/images/addons/nexus/script.areace/resources/screenshots/settings.jpg
  41. BIN static/images/addons/nexus/script.areace/resources/screenshots/telegram_channel.png
  42. BIN static/images/addons/nexus/script.module.feedparser/resources/icon.png
  43. BIN static/images/addons/nexus/script.module.httplib2/resources/icon.png
  44. BIN static/images/addons/nexus/script.module.pyparsing/resources/icon.png
  45. BIN static/images/blog/fosdem2024.webp
  46. BIN static/images/blog/kodi-20.3-nexus-splash.webp
  47. BIN static/images/blog/kodi-20.4-nexus-splash.webp
2 changes: 1 addition & 1 deletion .github/workflows/update-addon-history.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v4

- name: Cache addon-parser npm node nodules
uses: actions/cache@v3
uses: actions/cache@v4
id: nodecache
with:
path: |
Loading