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;
}