mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 15:41:13 +02:00
2023-08-01 Fred Gleason <fredg@paravelsystems.com>
* Added an 'ID' column to the 'Podcast Item List' dialog in rdcastmanager(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -24300,3 +24300,6 @@
|
|||||||
2023-07-28 Fred Gleason <fredg@paravelsystems.com>
|
2023-07-28 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdcastmanager(1) where changes to podcast metadata
|
* Fixed a bug in rdcastmanager(1) where changes to podcast metadata
|
||||||
would fail to be reflected in the feed list.
|
would fail to be reflected in the feed list.
|
||||||
|
2023-08-01 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Added an 'ID' column to the 'Podcast Item List' dialog in
|
||||||
|
rdcastmanager(1).
|
||||||
|
@@ -96,7 +96,11 @@ RDPodcastListModel::RDPodcastListModel(unsigned feed_id,QObject *parent)
|
|||||||
d_alignments.push_back(left);
|
d_alignments.push_back(left);
|
||||||
d_column_fields.push_back("`PODCASTS`.`ORIGIN_LOGIN_NAME`");
|
d_column_fields.push_back("`PODCASTS`.`ORIGIN_LOGIN_NAME`");
|
||||||
|
|
||||||
d_headers.push_back(tr("SHA1")); // 08
|
d_headers.push_back(tr("ID")); // 08
|
||||||
|
d_alignments.push_back(right);
|
||||||
|
d_column_fields.push_back("`PODCASTS`.`ID`");
|
||||||
|
|
||||||
|
d_headers.push_back(tr("SHA1")); // 09
|
||||||
d_alignments.push_back(left);
|
d_alignments.push_back(left);
|
||||||
d_column_fields.push_back("`PODCASTS`.`SHA1_HASH`");
|
d_column_fields.push_back("`PODCASTS`.`SHA1_HASH`");
|
||||||
}
|
}
|
||||||
@@ -500,6 +504,9 @@ void RDPodcastListModel::updateRow(int row,RDSqlQuery *q)
|
|||||||
}
|
}
|
||||||
icons.push_back(QVariant());
|
icons.push_back(QVariant());
|
||||||
|
|
||||||
|
// Cast ID
|
||||||
|
texts.push_back(QString::asprintf("%u",q->value(0).toUInt()));
|
||||||
|
|
||||||
// SHA1
|
// SHA1
|
||||||
if(q->value(12).toString().isEmpty()) {
|
if(q->value(12).toString().isEmpty()) {
|
||||||
texts.push_back(tr("[none]"));
|
texts.push_back(tr("[none]"));
|
||||||
|
Reference in New Issue
Block a user