diff --git a/ChangeLog b/ChangeLog index f5a47aa0..e696d238 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24275,3 +24275,10 @@ dropbox imports 2023-07-07 Fred Gleason * Incremented the database version to 371. +2023-07-07 Fred Gleason + * Moved the entry for the '--update-metadata' to its proper + alphabetical position on the rdimport(1) man page. + * Tweaked the layout of the 'Dropbox Configuration' dialog in + rdadmin(1). + * Updated the screenshot for the 'Dropbox Configuration' dialog in + rdadmin(1). diff --git a/docs/manpages/rdimport.xml b/docs/manpages/rdimport.xml index dcf1ff76..fe3df7f5 100644 --- a/docs/manpages/rdimport.xml +++ b/docs/manpages/rdimport.xml @@ -6,7 +6,7 @@ rdimport 1 - October 2020 + July 2023 Linux Audio Manual @@ -195,19 +195,6 @@ - - - - - - - Attempt to update the library metadata from the embedded data in - the source audio file when importing new audio - into an existing cart. - - - - @@ -1000,6 +987,19 @@ + + + + + + + Attempt to update the library metadata from the embedded data in + the source audio file when importing new audio + into an existing cart. + + + + diff --git a/docs/opsguide/rdadmin.dropbox_configuration_dialog.png b/docs/opsguide/rdadmin.dropbox_configuration_dialog.png index b19d4a46..8639c916 100644 Binary files a/docs/opsguide/rdadmin.dropbox_configuration_dialog.png and b/docs/opsguide/rdadmin.dropbox_configuration_dialog.png differ diff --git a/docs/opsguide/rdadmin.xml b/docs/opsguide/rdadmin.xml index 945f3af3..d4546791 100644 --- a/docs/opsguide/rdadmin.xml +++ b/docs/opsguide/rdadmin.xml @@ -1832,7 +1832,7 @@ - + The Dropbox Configuration Dialog @@ -2047,7 +2047,11 @@ - Update Library metadata on successful importation when replacing audio in an existing cart. Checked or unchecked, this option has no effect on updating the metadata when importing audio into a cart for the first time. + Update cart-level metadata on successful importation + when adding an additional cut to an existing cart + . Checked or unchecked, this option has no effect + on updating the metadata when importing audio into a cart for + the first time. diff --git a/rdadmin/edit_dropbox.cpp b/rdadmin/edit_dropbox.cpp index 08fee468..f8683b34 100644 --- a/rdadmin/edit_dropbox.cpp +++ b/rdadmin/edit_dropbox.cpp @@ -135,25 +135,25 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent) // Logging // box_log_to_syslog_check=new QCheckBox(this); - box_log_to_syslog_check->setGeometry(50,124,15,15); + box_log_to_syslog_check->setGeometry(50,125,15,15); label=new QLabel(tr("Log events in Syslog"),this); label->setGeometry(70,122,250,19); label->setFont(labelFont()); label->setAlignment(Qt::AlignLeft|Qt::AlignVCenter); box_log_path_edit=new QLineEdit(this); - box_log_path_edit->setGeometry(140,137,sizeHint().width()-210,19); - box_log_path_edit->setMaxLength(255); + box_log_path_edit->setGeometry(140,141,sizeHint().width()-210,19); + box_log_path_edit->setMaxLength(191); connect(box_log_to_syslog_check,SIGNAL(toggled(bool)), box_log_path_edit,SLOT(setDisabled(bool))); box_log_path_label=new QLabel(tr("Log File:"),this); - box_log_path_label->setGeometry(10,141,125,19); + box_log_path_label->setGeometry(10,142,125,19); box_log_path_label->setFont(labelFont()); box_log_path_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter); connect(box_log_to_syslog_check,SIGNAL(toggled(bool)), box_log_path_label,SLOT(setDisabled(bool))); box_log_path_button=new QPushButton(tr("Select"),this); - box_log_path_button->setGeometry(sizeHint().width()-60,136,50,23); + box_log_path_button->setGeometry(sizeHint().width()-60,138,50,23); box_log_path_button->setFont(subButtonFont()); connect(box_log_path_button,SIGNAL(clicked()), this,SLOT(selectLogPathData())); @@ -326,7 +326,7 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent) box_startoffset_spin->setGeometry(215,486,50,20); box_startoffset_spin->setRange(-7,7); label=new QLabel(tr("Offset start date by"),this); - label->setGeometry(90,486,120,20); + label->setGeometry(10,486,200,20); label->setFont(labelFont()); label->setAlignment(Qt::AlignRight|Qt::AlignVCenter); label=new QLabel(tr("days"),this); @@ -341,7 +341,7 @@ EditDropbox::EditDropbox(int id,bool duplicate,QWidget *parent) box_endoffset_spin->setGeometry(215,510,50,20); box_endoffset_spin->setRange(-7,7); label=new QLabel(tr("Offset end date by"),this); - label->setGeometry(90,510,120,20); + label->setGeometry(10,510,200,20); label->setFont(labelFont()); label->setAlignment(Qt::AlignRight|Qt::AlignVCenter); label=new QLabel(tr("days"),this);