2023-08-01 Fred Gleason <fredg@paravelsystems.com>

* Added the podcast ID to the first column of the item listing in
	the feed list in rdcastmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2023-08-01 18:02:15 -04:00
parent 6bd99621a2
commit f7dbfc6627
2 changed files with 5 additions and 0 deletions

View File

@ -24303,3 +24303,6 @@
2023-08-01 Fred Gleason <fredg@paravelsystems.com> 2023-08-01 Fred Gleason <fredg@paravelsystems.com>
* Added an 'ID' column to the 'Podcast Item List' dialog in * Added an 'ID' column to the 'Podcast Item List' dialog in
rdcastmanager(1). rdcastmanager(1).
2023-08-01 Fred Gleason <fredg@paravelsystems.com>
* Added the podcast ID to the first column of the item listing in
the feed list in rdcastmanager(1).

View File

@ -596,6 +596,8 @@ void RDFeedListModel::updateCastRow(int feed_line,int cast_line,
rda->iconEngine()->listIcon(RDIconEngine::WhiteBall); rda->iconEngine()->listIcon(RDIconEngine::WhiteBall);
break; break;
} }
d_cast_texts[feed_line][cast_line][0]=
QString::asprintf("%u",q->value(q_offset).toUInt()); // Cast ID
d_cast_texts[feed_line][cast_line][1]=q->value(1+q_offset); // Item Title d_cast_texts[feed_line][cast_line][1]=q->value(1+q_offset); // Item Title
d_cast_texts[feed_line][cast_line][3]= d_cast_texts[feed_line][cast_line][3]=
rda->shortDateString(q->value(3+q_offset).toDateTime().date()); rda->shortDateString(q->value(3+q_offset).toDateTime().date());