rawfilewizard

git clone https://git.clttr.info/rawfilewizard.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit b4763e46cf358f1033a8b7353d2ab44c58c227d6
parent 78ef1015b640121b1e3e14bff05018e69266a926
Author: rwa <apollo@rw-net.de>
Date:   Mon,  1 Oct 2018 22:10:42 +0200

wip #8 - do not show confirmation message before deleting files if moving to recycle bin is activated

Diffstat:
MSilkypixFileMover/MainForm.cs | 3++-
MSilkypixFileMover/Properties/AssemblyInfo.cs | 4++--
MSilkypixFileMover/SilkypixFileMover.csproj | 2+-
3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/SilkypixFileMover/MainForm.cs b/SilkypixFileMover/MainForm.cs @@ -239,7 +239,8 @@ namespace SilkypixFileMover /// <param name="e"></param> private void btnDelete_Click( object sender, EventArgs e ) { - if ( MessageBox.Show("Wollen sie wirklich alle gelisteten Dateien löschen?", "Dateien löschen", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2 ) == DialogResult.Yes ) + if ( Settings.Default.MoveToRecycleBin || + MessageBox.Show("Wollen sie wirklich alle gelisteten Dateien löschen?", "Dateien löschen", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2 ) == DialogResult.Yes ) { PrepareWorker( WorkerAction.Delete ); } diff --git a/SilkypixFileMover/Properties/AssemblyInfo.cs b/SilkypixFileMover/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using System; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.6.0.4")] +[assembly: AssemblyVersion("1.6.0.5")] [assembly: NeutralResourcesLanguage( "de" )] -[assembly: AssemblyFileVersion("1.6.0.4")] +[assembly: AssemblyFileVersion("1.6.0.5")] diff --git a/SilkypixFileMover/SilkypixFileMover.csproj b/SilkypixFileMover/SilkypixFileMover.csproj @@ -38,7 +38,7 @@ <CreateWebPageOnPublish>true</CreateWebPageOnPublish> <WebPage>index.htm</WebPage> <OpenBrowserOnPublish>false</OpenBrowserOnPublish> - <ApplicationRevision>4</ApplicationRevision> + <ApplicationRevision>6</ApplicationRevision> <ApplicationVersion>1.6.0.%2a</ApplicationVersion> <UseApplicationTrust>false</UseApplicationTrust> <CreateDesktopShortcut>true</CreateDesktopShortcut>