From 4b9e1f5c34fd4c37fca410e4a44abcf41ead928c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Wed, 1 Aug 2012 14:44:34 +0200 Subject: [PATCH] config: remove undocumented 'home_path' option --- SparkleLib/SparkleConfig.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/SparkleLib/SparkleConfig.cs b/SparkleLib/SparkleConfig.cs index dfe5f42b..52c87def 100755 --- a/SparkleLib/SparkleConfig.cs +++ b/SparkleLib/SparkleConfig.cs @@ -35,9 +35,6 @@ namespace SparkleLib { public string HomePath { get { - if (GetConfigOption ("home_path") != null) - return GetConfigOption ("home_path"); - if (SparkleBackend.Platform == PlatformID.Win32NT) return Environment.GetFolderPath (Environment.SpecialFolder.UserProfile); else @@ -56,7 +53,7 @@ namespace SparkleLib { public SparkleConfig (string config_path, string config_file_name) { FullPath = Path.Combine (config_path, config_file_name); - LogFilePath = Path.Combine (config_path, "debug-log.txt"); + LogFilePath = Path.Combine (config_path, "debug_log.txt"); if (File.Exists (LogFilePath)) { try {