Skip to content

Commit

Permalink
Merge pull request #114 from Keeper-of-the-Keys/ui-bugfixes
Browse files Browse the repository at this point in the history
Ui bugfixes
  • Loading branch information
Keeper-of-the-Keys authored Mar 4, 2020
2 parents 5bb084b + de172c7 commit 9e0c71b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gpodder-ui-qml
Submodule gpodder-ui-qml updated 3 files
+4 −0 common/GPodderPodcastListModel.qml
+1 −1 main.py
+1 −1 makefile
2 changes: 1 addition & 1 deletion qml/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Page {
width: parent.width
wrapMode: Text.WordWrap
text: [
'© 2005-2019 '+ qsTr("Thomas Perl and the gPodder Team"),
'© 2005-2020 '+ qsTr("Thomas Perl and the gPodder Team"),
qsTr("License: ISC / GPLv3 or later"),
qsTr("Website: ") + 'http://gpodder.org/',
'',
Expand Down
2 changes: 1 addition & 1 deletion qml/EpisodeItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ ListItem {
}

Label {
text: total_time > 0 ? Util.formatDuration(total_time) + ' | ' + subtitle : subtitle
text: total_time > 0 ? (subtitle != '' ? Util.formatDuration(total_time) + ' | ' + subtitle : Util.formatDuration(total_time)) : subtitle
anchors {
left: titleItem.left
right: titleItem.right
Expand Down
2 changes: 1 addition & 1 deletion qml/PodcastsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Page {
}

ViewPlaceholder {
enabled: podcastListModel.count == 0 && py.ready
enabled: podcastListModel.count === 0 && podcastListModel.firstRun
text: qsTr("No subscriptions")
}
}
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-org.gpodder.sailfish.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Summary: Media and podcast aggregator
Name: harbour-org.gpodder.sailfish
Version: 4.9.0
Version: 4.10.0
Release: 1
Group: System/GUI/Other
License: ISC / GPLv3
Expand Down

0 comments on commit 9e0c71b

Please sign in to comment.