2023-07-07 Fred Gleason <fredg@paravelsystems.com>

* 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).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2023-07-07 13:25:19 -04:00
parent a3b8bae34d
commit 99399f3ba0
5 changed files with 34 additions and 23 deletions

View File

@ -24275,3 +24275,10 @@
dropbox imports
2023-07-07 Fred Gleason <fredg@paravelsystems.com>
* Incremented the database version to 371.
2023-07-07 Fred Gleason <fredg@paravelsystems.com>
* 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).

View File

@ -6,7 +6,7 @@
<refmeta>
<refentrytitle>rdimport</refentrytitle>
<manvolnum>1</manvolnum>
<refmiscinfo class='source'>October 2020</refmiscinfo>
<refmiscinfo class='source'>July 2023</refmiscinfo>
<refmiscinfo class='manual'>Linux Audio Manual</refmiscinfo>
</refmeta>
<refnamediv>
@ -195,19 +195,6 @@
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--update-metadata</option>
</term>
<listitem>
<para>
Attempt to update the library metadata from the embedded data in
the source audio file when importing <emphasis>new</emphasis> audio
into an <emphasis>existing</emphasis> cart.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--drop-box</option>
@ -1000,6 +987,19 @@
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--update-metadata</option>
</term>
<listitem>
<para>
Attempt to update the library metadata from the embedded data in
the source audio file when importing <emphasis>new</emphasis> audio
into an <emphasis>existing</emphasis> cart.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--use-cartchunk-cutid</option>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 81 KiB

View File

@ -1832,7 +1832,7 @@
<para>
<mediaobject>
<imageobject>
<imagedata align="center" fileref="rdadmin.dropbox_configuration_dialog.png" width="87mm" depth="123mm"/>
<imagedata align="center" fileref="rdadmin.dropbox_configuration_dialog.png" width="87mm"/>
</imageobject>
<caption>
<para>The Dropbox Configuration Dialog</para>
@ -2047,7 +2047,11 @@
</term>
<listitem>
<para>
Update Library metadata on successful importation <emphasis>when replacing audio in an existing cart</emphasis>. 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
<emphasis>when adding an additional cut to an existing cart
</emphasis>. Checked or unchecked, this option has no effect
on updating the metadata when importing audio into a cart for
the first time.
</para>
</listitem>
</varlistentry>

View File

@ -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);