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
5 changes: 5 additions & 0 deletions script.radioparadise/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v2.4.0

- Restore Serenity channel
- Use https in stream URLs

## v2.3.0

- Add KFAT channel
Expand Down
1 change: 1 addition & 0 deletions script.radioparadise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ RunScript('script.radioparadise', 1)
| 2 | Rock Mix |
| 3 | Global Mix |
| 5 | Beyond... |
| 42 | Serenity |
| 945 | KFAT |

This can be used to add shortcuts for RP channels in [favourites.xml][].
Expand Down
2 changes: 1 addition & 1 deletion script.radioparadise/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.radioparadise" name="Radio Paradise" version="2.3.0" provider-name="Alexander Dietrich">
<addon id="script.radioparadise" name="Radio Paradise" version="2.4.0" provider-name="Alexander Dietrich">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.requests" version="2.0.0"/>
Expand Down
30 changes: 18 additions & 12 deletions script.radioparadise/resources/channels.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,43 @@
{
"channel_id": 0,
"title": "Main Mix",
"url_aac": "http://stream.radioparadise.com/aac-128",
"url_flac": "http://stream.radioparadise.com/flacm"
"url_aac": "https://stream.radioparadise.com/aac-128",
"url_flac": "https://stream.radioparadise.com/flacm"
},
{
"channel_id": 1,
"title": "Mellow Mix",
"url_aac": "http://stream.radioparadise.com/mellow-128",
"url_flac": "http://stream.radioparadise.com/mellow-flacm"
"url_aac": "https://stream.radioparadise.com/mellow-128",
"url_flac": "https://stream.radioparadise.com/mellow-flacm"
},
{
"channel_id": 2,
"title": "Rock Mix",
"url_aac": "http://stream.radioparadise.com/rock-128",
"url_flac": "http://stream.radioparadise.com/rock-flacm"
"url_aac": "https://stream.radioparadise.com/rock-128",
"url_flac": "https://stream.radioparadise.com/rock-flacm"
},
{
"channel_id": 3,
"title": "Global Mix",
"url_aac": "http://stream.radioparadise.com/global-128",
"url_flac": "http://stream.radioparadise.com/global-flacm"
"url_aac": "https://stream.radioparadise.com/global-128",
"url_flac": "https://stream.radioparadise.com/global-flacm"
},
{
"channel_id": 5,
"title": "Beyond...",
"url_aac": "http://stream.radioparadise.com/beyond-128",
"url_flac": "http://stream.radioparadise.com/beyond-flacm"
"url_aac": "https://stream.radioparadise.com/beyond-128",
"url_flac": "https://stream.radioparadise.com/beyond-flacm"
},
{
"channel_id": 42,
"title": "Serenity",
"url_aac": "https://stream.radioparadise.com/serenity",
"url_flac": "https://stream.radioparadise.com/serenity"
},
{
"channel_id": 945,
"title": "KFAT",
"url_aac": "http://stream.radioparadise.com/kfat-128",
"url_flac": "http://stream.radioparadise.com/kfat-flacm"
"url_aac": "https://stream.radioparadise.com/kfat-128",
"url_flac": "https://stream.radioparadise.com/kfat-flacm"
}
]
1 change: 1 addition & 0 deletions script.radioparadise/resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<option label="30205">2</option>
<option label="30206">3</option>
<option label="30209">5</option>
<option label="30208">42</option>
<option label="30210">945</option>
</options>
</constraints>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<left>50%</left>
<centertop>50%</centertop>
<width>140</width>
<height>180</height>
<height>210</height>
<viewtype>list</viewtype>
<itemlayout height="30">
<control type="label">
Expand Down
Loading