Skip to content

Commit

Permalink
[script.audio.motherearth] 2.2 (#2525)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReiterer authored Nov 19, 2023
1 parent f4c5209 commit 2cfb676
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
3 changes: 3 additions & 0 deletions script.audio.motherearth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.2
- added Mother Earth Jazz channel

## 2.1
- updated to https
- added artist fanart background when available
Expand Down
2 changes: 1 addition & 1 deletion script.audio.motherearth/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# script.audio.motherearth
Mother Earth Radio - Hi Res Audio and Vinyl 192kHz/24bit FLAC streaming

Version 2.1
Version 2.2

Choose FLAC or AAC-stream in addon options.
4 changes: 2 additions & 2 deletions script.audio.motherearth/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.audio.motherearth" name="Mother Earth Radio" version="2.1" provider-name="Florian Reiterer">
<addon id="script.audio.motherearth" name="Mother Earth Radio" version="2.2" provider-name="Florian Reiterer">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.0.0"/>
Expand All @@ -16,7 +16,7 @@
<license>GPL-3.0-or-later</license>
<platform>all</platform>
<news>
- updated to https streaming
added Mother Earth Jazz channel
</news>
<assets>
<icon>resources/icon.png</icon>
Expand Down
6 changes: 6 additions & 0 deletions script.audio.motherearth/motherearth.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
'url_aac': 'https://motherearth.streamserver24.com/listen/motherearth_instrumental/motherearth.instrumental.aac',
'url_flac': 'https://motherearth.streamserver24.com/listen/motherearth_instrumental/motherearth.instrumental',
},
{
'channel': 3,
'title': 'Mother Earth Jazz',
'url_aac': 'https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz.mp4',
'url_flac': 'https://motherearth.streamserver24.com/listen/motherearth_jazz/motherearth.jazz',
},
]
STREAM_INFO = {s['url_aac']: s for s in STREAMS}
STREAM_INFO.update({s['url_flac']: s for s in STREAMS})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ msgstr ""
msgctxt "#30205"
msgid "Mother Earth Instrumental"
msgstr ""

msgctxt "#30206"
msgid "Mother Earth Jazz"
msgstr ""
1 change: 1 addition & 0 deletions script.audio.motherearth/resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<option label="30203">0</option>
<option label="30204">1</option>
<option label="30205">2</option>
<option label="30206">3</option>
</options>
</constraints>
<control type="spinner" format="string"/>
Expand Down

0 comments on commit 2cfb676

Please sign in to comment.