Skip to content

Commit

Permalink
Merge pull request #15 from gpodder/master
Browse files Browse the repository at this point in the history
Updated from original project
  • Loading branch information
carmenfdezb authored Dec 10, 2019
2 parents e710afa + 41b021d commit e862287
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gpodder-core
Submodule gpodder-core updated 2 files
+3 −3 src/gpodder/__init__.py
+29 −9 src/gpodder/plugins/soundcloud.py
1 change: 1 addition & 0 deletions gpodder-sailfish.pro
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ TRANSLATIONS += \
translations/harbour-org.gpodder.sailfish-it.ts \
translations/harbour-org.gpodder.sailfish-zh_CN.ts \
translations/harbour-org.gpodder.sailfish-sv.ts \
translations/harbour-org.gpodder.sailfish-pl.ts \
translations/harbour-org.gpodder.sailfish.ts

TRANSLATION_SOURCES += /$$_PRO_FILE_PWD_/gpodder-ui-qml/common/
Expand Down
2 changes: 1 addition & 1 deletion gpodder-ui-qml
Submodule gpodder-ui-qml updated 2 files
+3 −2 main.py
+1 −1 makefile
4 changes: 2 additions & 2 deletions qml/EpisodeItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,14 @@ ListItem {
}

Label {
text: subtitle
text: total_time > 0 ? Util.formatDuration(total_time) + ' | ' + subtitle : subtitle
anchors {
left: titleItem.left
right: titleItem.right
}
truncationMode: TruncationMode.Fade
opacity: titleItem.opacity
visible: subtitle !== ''
visible: this.text !== ''
font.pixelSize: Theme.fontSizeExtraSmall
}
}
Expand Down
6 changes: 5 additions & 1 deletion qml/PodcastDetail.qml
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,12 @@ Page {
id: editPodcastPage

Dialog {
id: sectionDialog
canAccept: sectionFieldInput.text != podcastDetail.section
onAccepted: {
py.call('main.change_section', [podcast_id, sectionFieldInput.text])
sectionField.text = sectionFieldInput.text
podcastDetail.section = sectionFieldInput.text
pageStack.pop()
}

Column {
Expand All @@ -208,6 +210,8 @@ Page {
left: parent.left
right: parent.right
}
EnterKey.enabled: text.length > 0 && text != podcastDetail.section
EnterKey.onClicked: sectionDialog.accept()
}
}
}
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.8.1
Version: 4.9.0
Release: 1
Group: System/GUI/Other
License: ISC / GPLv3
Expand Down
2 changes: 1 addition & 1 deletion translations/harbour-org.gpodder.sailfish-bg.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="bg_BG">
<TS version="2.1" language="bg_BG">
<context>
<name>AboutPage</name>
<message>
Expand Down

0 comments on commit e862287

Please sign in to comment.