mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-21 11:56:08 -04:00
'Not Downloaded' reads as a claim about the file on disk, but the status it names is really an instruction about the future. Telling someone with a finished audiobook to set it 'Not Downloaded' asks them to assert something they know is false, which is why the question keeps coming up. 'Download Pending' says the same thing about intent without saying anything untrue about the file, and stands alone in a dropdown or a support reply where bare 'Pending' would not. The context menu carriers move from "Set Download status to 'X'" to "Mark as 'X'" so the word does not land twice in one breath, with the accelerator on P to stay clear of Downloaded's D. The persisted enum, the --not-downloaded CLI flag and the IsLiberated search tags are unchanged, so scripts and saved quick filters keep working. WinForms status combo boxes grow from 121 to 150px and the better-quality Mark button from 210 to 240px to fit the longer label. Docs carry 'previously "Not Downloaded"' on first mention, since years of Reddit and GitHub answers use the old name. Co-authored-by: rmcrackan <rmcrackan@gmail.com>
49 lines
1.5 KiB
XML
49 lines
1.5 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="550" d:DesignHeight="135"
|
|
xmlns:controls="clr-namespace:LibationAvalonia.Controls"
|
|
x:Class="LibationAvalonia.Dialogs.LiberatedStatusBatchAutoDialog"
|
|
Title="Liberated status: Whether the book has been downloaded"
|
|
MinHeight="135" MaxHeight="135"
|
|
MinWidth="550" MaxWidth="550"
|
|
Width="550" Height="135"
|
|
xmlns:dialogs="clr-namespace:LibationAvalonia.Dialogs"
|
|
x:DataType="dialogs:LiberatedStatusBatchAutoDialog"
|
|
WindowStartupLocation="CenterOwner">
|
|
|
|
<Grid Margin="10" RowDefinitions="Auto,Auto">
|
|
|
|
<StackPanel
|
|
Grid.Row="0"
|
|
Orientation="Vertical">
|
|
|
|
<CheckBox
|
|
Margin="0,0,0,10"
|
|
IsChecked="{Binding SetDownloaded, Mode=TwoWay}">
|
|
|
|
<TextBlock
|
|
TextWrapping="Wrap"
|
|
Text="If the audio file can be found, mark the book 'Downloaded'" />
|
|
</CheckBox>
|
|
<CheckBox
|
|
Margin="0,0,0,10"
|
|
IsChecked="{Binding SetNotDownloaded, Mode=TwoWay}">
|
|
|
|
<TextBlock
|
|
TextWrapping="Wrap"
|
|
Text="If the audio file cannot be found, mark the book 'Download Pending'" />
|
|
</CheckBox>
|
|
</StackPanel>
|
|
|
|
<Button
|
|
Grid.Row="1"
|
|
Classes="SaveButton"
|
|
Name="SaveButton"
|
|
HorizontalAlignment="Right"
|
|
Content="Save"
|
|
Command="{Binding SaveAndClose}"/>
|
|
</Grid>
|
|
</Window>
|