Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[script.audio.motherearth] 2.2 #2525

Merged
merged 1 commit into from
Nov 19, 2023
Merged
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
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
Loading