Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

lib/__pycache__/

*.db
64 changes: 0 additions & 64 deletions README

This file was deleted.

46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# KODI Mixcloud Plugin

### Developer:
- jackyNIX

### Contributors:
- Bochi
- SilentException
- fleshgolem
- gordielachance
- understatement
- peat8
- ronan-ln

### Current version:
3.0.2
- Matrix

### Features:
- Profile
- Followings
- Followers
- Favorites
- History
- Uploads
- Listen later
- Playlists
- Browse
- Categories
- Search
- Cloudcasts
- Users
- Search history
- Play cloudcasts
- Mixcloud resolver
- Offliberty resolver
- Mixcloud-Downloader resolver (broken)
- Thumbnails
- History
- Profile
- Local
- Localisation
- English
- Dutch
- French
- German
26 changes: 26 additions & 0 deletions addon.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-

'''
@author: jackyNIX

Copyright (C) 2011-2020 jackyNIX

This file is part of KODI Mixcloud Plugin.

KODI Mixcloud Plugin is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

KODI Mixcloud Plugin is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with KODI Mixcloud Plugin. If not, see <http://www.gnu.org/licenses/>.
'''

# from lib import run
from lib import run
run()
39 changes: 24 additions & 15 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.audio.mixcloud"
name="MixCloud"
version="2.4.3"
name="Mixcloud"
version="3.0.2"
provider-name="jackyNIX">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>audio</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en">KODI Plugin for MixCloud</summary>
<summary lang="nl">KODI Plugin voor MixCloud</summary>
<summary lang="fr">KODI Plugin pour MixCloud</summary>
<summary lang="de">KODI Plugin für MixCloud</summary>
<description lang="en">Mixcloud is re-thinking radio. Listen to great radio shows, Podcasts and DJ mix sets on-demand.</description>
<description lang="nl">Mixcloud herdefinieerd radio. Luister naar uitstekende radioshows, podcasts en dj sets on demand.</description>
<description lang="fr">Mixcloud redéfinit la radio. Écoutez les émissions radio, podcasts et mixes DJ sur demande.</description>
<description lang="de">Mixcloud erfindet Radio neu. Höre Radioshows, Podcasts und DJ Mixe wann immer Du willst.</description>
<summary lang="en_GB">KODI plugin for Mixcloud</summary>
<summary lang="nl_NL">KODI plugin voor Mixcloud</summary>
<summary lang="fr_FR">KODI plugin pour Mixcloud</summary>
<summary lang="de_DE">KODI plugin für Mixcloud</summary>
<description lang="en_GB">Mixcloud is re-thinking radio. Listen to great radio shows, Podcasts and DJ mix sets on-demand.</description>
<description lang="nl_NL">Mixcloud herdefinieerd radio. Luister naar uitstekende radioshows, podcasts en dj sets on demand.</description>
<description lang="fr_FR">Mixcloud redéfinit la radio. Écoutez les émissions radio, podcasts et mixes DJ sur demande.</description>
<description lang="de_DE">Mixcloud erfindet Radio neu. Höre Radioshows, Podcasts und DJ Mixe wann immer Du willst.</description>
<news>
v3.0.2 (2020-09-25)
[fix] fixed local mixcloud resolver
</news>
<platform>all</platform>
<language></language>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<language>en</language>
<license>GPL-3.0-or-later</license>
<forum>https://forum.kodi.tv/showthread.php?tid=116386</forum>
<website>https://www.mixcloud.com</website>
<source>https://github.com/jackyNIX/xbmc-mixcloud-plugin</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>
13 changes: 13 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
3.0.1
- fixed offliberty resolver
- deactivate broken resolvers
- changed lognotice to loginfo

3.0.0
- python 3 migration
- new logo, icons and other art
- improved context menus
- improved history
- cleanup obsolete menu items
- reworked resolvers

2.4.3
- handle exclusive cloudcasts
- removed obsolete menu items
Expand Down
Loading