-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from Keeper-of-the-Keys/episode-art-list
Episode art list
- Loading branch information
Showing
20 changed files
with
399 additions
and
312 deletions.
There are no files selected for viewing
Submodule gpodder-core
updated
5 files
+1 −1 | share/man/man1/gpo.1 | |
+3 −3 | src/gpodder/__init__.py | |
+17 −6 | src/gpodder/coverart.py | |
+34 −5 | src/gpodder/model.py | |
+21 −6 | src/gpodder/plugins/soundcloud.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule gpodder-ui-qml
updated
3 files
+6 −2 | common/GPodderPlayback.qml | |
+13 −3 | main.py | |
+1 −1 | makefile |
Submodule podcastparser
updated
6 files
+3 −3 | .travis.yml | |
+3 −1 | LICENSE | |
+3 −0 | doc/index.rst | |
+5 −2 | podcastparser.py | |
+16 −0 | tests/data/itunes_episode_image.json | |
+9 −0 | tests/data/itunes_episode_image.rss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import QtQuick 2.0 | ||
import Sailfish.Silica 1.0 | ||
|
||
Item { | ||
Image { | ||
id: episodeArtArea | ||
visible: episode_art || cover_art ? true : false | ||
|
||
anchors { | ||
left: parent.left | ||
top: parent.top | ||
} | ||
height: episode_art ? parent.height * 0.9 : parent.height | ||
width: episode_art ? parent.width * 0.9 : parent.width | ||
|
||
source: episode_art ? episode_art : cover_art | ||
} | ||
Image { | ||
id: podcastArtArea | ||
visible: episode_art && cover_art ? true : false | ||
|
||
anchors { | ||
right: parent.right | ||
bottom: parent.bottom | ||
} | ||
opacity: 0.75 | ||
height: parent.height * 0.4 | ||
width: parent.width * 0.4 | ||
source: cover_art | ||
} | ||
Rectangle { | ||
anchors.fill: parent | ||
visible: !cover_art && !episode_art ? true : false | ||
color: Theme.rgba(Theme.highlightColor, 0.5) | ||
|
||
clip: true | ||
|
||
Label { | ||
anchors.centerIn: parent | ||
|
||
font.pixelSize: parent.height * 0.8 | ||
text: title_char | ||
color: Theme.highlightColor | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.