Skip to content

Commit 2d142ad

Browse files
Merge pull request #12 from Keeper-of-the-Keys/master
Add firstRun property to PodcastListModel
2 parents 006947b + 3433f64 commit 2d142ad

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Diff for: common/GPodderPodcastListModel.qml

+4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,14 @@ import 'util.js' as Util
2424

2525
ListModel {
2626
id: podcastListModel
27+
property bool firstRun: false
2728

2829
function reload() {
2930
py.call('main.load_podcasts', [], function (podcasts) {
3031
Util.updateModelFrom(podcastListModel, podcasts);
32+
if(!firstRun) {
33+
firstRun = true;
34+
}
3135
});
3236
}
3337
}

Diff for: main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# of gpodder-core, but we might have a different release schedule later on. If
2020
# we decide to have parallel releases, we can at least start using this version
2121
# to check if the core version is compatible with the QML UI version.
22-
__version__ = '4.9.0'
22+
__version__ = '4.10.0'
2323

2424
import sys
2525
import os

Diff for: makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT := gpodder-ui-qml
2-
VERSION := 4.9.0
2+
VERSION := 4.10.0
33

44
all:
55
@echo ""

0 commit comments

Comments
 (0)