Skip to content

Commit

Permalink
16.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dream-alpha committed Aug 31, 2023
1 parent f0f3dc2 commit 7ca6c8c
Show file tree
Hide file tree
Showing 99 changed files with 833 additions and 1,764 deletions.
2 changes: 1 addition & 1 deletion CONTROL/control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Description: MediaCockpit
Maintainer: dream-alpha
Package: enigma2-plugin-extensions-mediacockpit
Version: 15.2.5
Version: 16.0.6
Architecture: all
Depends: python-imaging, python-twisted, python-mutagen, ffmpeg, python-merlinpictureviewer, python-merlinmusicplayer, enigma2-plugin-systemplugins-mountcockpit, enigma2-plugin-systemplugins-componentscockpit
3 changes: 1 addition & 2 deletions src/ConfigScreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, session, config_plugins_plugin):
self["config"].onSelectionChanged.append(self.updateHelp)
# self["config"].onSelectionChanged.append(self.handleInputHelpers)

self.setTitle(PLUGIN)
self.setTitle(PLUGIN + " " + _("Setup"))
self.createConfig()

def selectionChanged(self):
Expand Down Expand Up @@ -172,7 +172,6 @@ def createConfig(self):
else:
self.list.append(getConfigListEntry(conf[0], conf[1], conf[2], conf[3], conf[4], conf[5], conf[6]))
self["config"].setList(self.list)
self.setTitle(_("Setup"))

def loadDefaultSettings(self):
self.session.openWithCallback(
Expand Down
14 changes: 14 additions & 0 deletions src/RecordingUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,17 @@ def startTimeshiftRecording():
logger.info("...")
if hasattr(InfoBar.instance, "startTimeshiftRecording"):
InfoBar.instance.startTimeshiftRecording()


def getSeriesDir(name):
logger.info("name: %s", name)
parts = []
dirname = ""
if ": " in name:
parts = name.split(": ")
elif " - " in name:
parts = name.split(" - ")
if len(parts) > 1:
dirname = parts[0]
logger.info("dirname: %s", dirname)
return dirname
2 changes: 1 addition & 1 deletion src/Version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

PLUGIN = "MediaCockpit"
ID = "MDC"
VERSION = "15.2.5"
VERSION = "16.0.6"
COPYRIGHT = "2018-2023 by dream-alpha"
LICENSE = "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version."
11 changes: 0 additions & 11 deletions src/skin/CockpitDisplaySummary.xmlinc

This file was deleted.

22 changes: 0 additions & 22 deletions src/skin/CockpitMusicPlayerSummary.xmlinc

This file was deleted.

1 change: 0 additions & 1 deletion src/skin/Default-FHD/CockpitPlayerIcon.xmlinc

This file was deleted.

21 changes: 0 additions & 21 deletions src/skin/Default-FHD/CockpitPlayerSummary.xmlinc

This file was deleted.

6 changes: 0 additions & 6 deletions src/skin/Default-FHD/ColorButtons.xmlinc

This file was deleted.

6 changes: 0 additions & 6 deletions src/skin/Default-FHD/ColorButtonsLabels.xmlinc

This file was deleted.

10 changes: 0 additions & 10 deletions src/skin/Default-FHD/ConfigScreen.xmlinc

This file was deleted.

10 changes: 0 additions & 10 deletions src/skin/Default-FHD/DateTime.xmlinc

This file was deleted.

4 changes: 0 additions & 4 deletions src/skin/Default-FHD/ScreenPVRState.xmlinc

This file was deleted.

15 changes: 15 additions & 0 deletions src/skin/Default-FHD/colors.xmlinc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<colors>
<color name="black" value="#000000"/>
<color name="white" value="#ffffff"/>
<color name="grey" value="#aaaaaa"/>
<color name="dark" value="#20062748"/>
<color name="red" value="#f23d21"/>
<color name="green" value="#389416"/>
<color name="blue" value="#0064c7"/>
<color name="yellow" value="#e6bd00"/>
<color name="transparent" value="#ff000000"/>
<color name="transpBlack" value="#80000000"/>
<color name="transpWhite" value="#80ffffff"/>
<color name="background" value="#200d1940"/>
<color name="foreground" value="#ffffff"/>
</colors>
Binary file added src/skin/Default-FHD/images/display_bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7ca6c8c

Please sign in to comment.