From f1555a2e4a0b213e1006e2b5855266f2b7308f00 Mon Sep 17 00:00:00 2001 From: rlv-dan Date: Mon, 20 Apr 2020 19:51:04 +0200 Subject: [PATCH] Add privacy notice to readme. Set file type in save dialog. --- Snap2HTML/ReadMe.txt | 7 +++++++ Snap2HTML/frmMain.cs | 1 + 2 files changed, 8 insertions(+) diff --git a/Snap2HTML/ReadMe.txt b/Snap2HTML/ReadMe.txt index 41460a8..7975440 100644 --- a/Snap2HTML/ReadMe.txt +++ b/Snap2HTML/ReadMe.txt @@ -235,3 +235,10 @@ RL Vision can not be held responsible for any damages whatsoever, direct or indirect, caused by this software or other material from RL Vision. + + --- Privacy Notice ---------------------------------------------------------- + + Snap2HTML does not connect to the internet. It does not phone home, check + for updates, submit telemetry, spy on you or any other crap like that. It + simply doesn't do anything behind your back and any data related to the + program is yours. As it should be. diff --git a/Snap2HTML/frmMain.cs b/Snap2HTML/frmMain.cs index b7cc161..8a23de3 100644 --- a/Snap2HTML/frmMain.cs +++ b/Snap2HTML/frmMain.cs @@ -180,6 +180,7 @@ namespace Snap2HTML saveFileDialog1.DefaultExt = "html"; if( !fileName.ToLower().EndsWith( ".html" ) ) fileName += ".html"; saveFileDialog1.FileName = fileName; + saveFileDialog1.Filter = "HTML files (*.html)|*.html|All files (*.*)|*.*"; saveFileDialog1.InitialDirectory = System.IO.Path.GetDirectoryName(txtRoot.Text); if (saveFileDialog1.ShowDialog() != DialogResult.OK) return; }