Skip to content

Commit 2cfb676

Browse files
[script.audio.motherearth] 2.2 (#2525)
1 parent f4c5209 commit 2cfb676

File tree

6 files changed

+17
-3
lines changed

6 files changed

+17
-3
lines changed

script.audio.motherearth/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.2
2+
- added Mother Earth Jazz channel
3+
14
## 2.1
25
- updated to https
36
- added artist fanart background when available

script.audio.motherearth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# script.audio.motherearth
22
Mother Earth Radio - Hi Res Audio and Vinyl 192kHz/24bit FLAC streaming
33

4-
Version 2.1
4+
Version 2.2
55

66
Choose FLAC or AAC-stream in addon options.

script.audio.motherearth/addon.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.audio.motherearth" name="Mother Earth Radio" version="2.1" provider-name="Florian Reiterer">
2+
<addon id="script.audio.motherearth" name="Mother Earth Radio" version="2.2" provider-name="Florian Reiterer">
33
<requires>
44
<import addon="xbmc.python" version="3.0.0"/>
55
<import addon="script.module.requests" version="2.0.0"/>
@@ -16,7 +16,7 @@
1616
<license>GPL-3.0-or-later</license>
1717
<platform>all</platform>
1818
<news>
19-
- updated to https streaming
19+
added Mother Earth Jazz channel
2020
</news>
2121
<assets>
2222
<icon>resources/icon.png</icon>

script.audio.motherearth/motherearth.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
'url_aac': 'https://motherearth.streamserver24.com/listen/motherearth_instrumental/motherearth.instrumental.aac',
2626
'url_flac': 'https://motherearth.streamserver24.com/listen/motherearth_instrumental/motherearth.instrumental',
2727
},
28+
{
29+
'channel': 3,
30+
'title': 'Mother Earth Jazz',
31+
'url_aac': 'https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz.mp4',
32+
'url_flac': 'https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz',
33+
},
2834
]
2935
STREAM_INFO = {s['url_aac']: s for s in STREAMS}
3036
STREAM_INFO.update({s['url_flac']: s for s in STREAMS})

script.audio.motherearth/resources/language/resource.language.en_gb/strings.po

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ msgstr ""
2828
msgctxt "#30205"
2929
msgid "Mother Earth Instrumental"
3030
msgstr ""
31+
32+
msgctxt "#30206"
33+
msgid "Mother Earth Jazz"
34+
msgstr ""

script.audio.motherearth/resources/settings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<option label="30203">0</option>
2424
<option label="30204">1</option>
2525
<option label="30205">2</option>
26+
<option label="30206">3</option>
2627
</options>
2728
</constraints>
2829
<control type="spinner" format="string"/>

0 commit comments

Comments
 (0)