mirror of
https://github.com/gordielachance/plugin.audio.subsonic
synced 2025-02-21 14:10:36 +01:00
doc update
This commit is contained in:
parent
5307f5d8c4
commit
5c1ba5015b
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## v2.0.3
|
||||
Released 4 October 2016
|
||||
* Context menu for downloading or marking items as favorite
|
||||
|
||||
## v2.0.2
|
||||
* main code (main.py) fully rewritten
|
||||
* Use SimplePlugin framework (http://romanvm.github.io/script.module.simpleplugin/index.html)
|
||||
|
18
README.md
18
README.md
@ -1,16 +1,26 @@
|
||||
# Subsonic
|
||||
Kodi plugin to stream music from Subsonic.
|
||||
Kodi plugin to stream, star and download music from Subsonic.
|
||||
For feature requests / issues:
|
||||
https://github.com/gordielachance/plugin.audio.subsonic/issues
|
||||
Contributions are welcome:
|
||||
https://github.com/gordielachance/plugin.audio.subsonic
|
||||
|
||||
## Features
|
||||
* Playlist support
|
||||
* Browse by artist, album and genre
|
||||
* Random playlists
|
||||
* Browse by artist, album, tracks, and playlists
|
||||
* Download songs
|
||||
* Star songs
|
||||
|
||||
## Installation
|
||||
* Navigate to your `.kodi/addons/` folder
|
||||
* Clone this repository: `git clone https://github.com/gordielachance/plugin.audio.subsonic.git`
|
||||
* Install the SimplePlugin dependency by cloning its repository: `git clone https://github.com/romanvm/script.module.simpleplugin.git`
|
||||
* (Re)start Kodi.
|
||||
|
||||
## TODO
|
||||
* Scrobble to Last.FM (http://forum.kodi.tv/showthread.php?tid=195597&pid=2429362#pid2429362)
|
||||
* Improve the caching system
|
||||
* Search filter GUI for tracks and albums
|
||||
|
||||
## License
|
||||
See the `LICENSE` file.
|
||||
|
||||
|
11
addon.xml
11
addon.xml
@ -1,17 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.audio.subsonic" name="Subsonic" version="2.0.2" provider-name="BasilFX,grosbouff,lrusak">
|
||||
<addon id="plugin.audio.subsonic" name="Subsonic" version="2.0.3" provider-name="BasilFX,grosbouff,lrusak">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.14.0"/>
|
||||
<import addon="script.module.dateutil" version="2.4.2"/>
|
||||
<import addon="script.module.simpleplugin" version="2.0.1"/>
|
||||
|
||||
</requires>
|
||||
<extension point="xbmc.python.pluginsource" library="main.py">
|
||||
<provides>audio</provides>
|
||||
</extension>
|
||||
<extension point="xbmc.addon.metadata">
|
||||
<summary lang="en">Subsonic music addon for Kodi.</summary>
|
||||
<description lang="en">Subsonic music addon for Kodi. Stream your tunes directly to Kodi.</description>
|
||||
<description lang="en">
|
||||
Stream, star and download your tunes, directly to Kodi !
|
||||
For feature requests / issues:
|
||||
https://github.com/gordielachance/plugin.audio.subsonic/issues
|
||||
Contributions are welcome:
|
||||
https://github.com/gordielachance/plugin.audio.subsonic
|
||||
</description>
|
||||
<disclaimer lang="en"></disclaimer>
|
||||
<language>en</language>
|
||||
<platform>all</platform>
|
||||
|
Loading…
x
Reference in New Issue
Block a user