wasStitchNET – Diff between revs 11 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 13
Line 21... Line 21...
21 public static readonly string STITCH_VERSION = Assembly.GetEntryAssembly().GetName().Version.ToString(); 21 public static readonly string STITCH_VERSION = Assembly.GetEntryAssembly().GetName().Version.ToString();
Line 22... Line 22...
22   22  
23 public static readonly ProductInfoHeaderValue USER_AGENT = 23 public static readonly ProductInfoHeaderValue USER_AGENT =
Line 24... Line -...
24 new ProductInfoHeaderValue(Assembly.GetEntryAssembly().GetName().Name, STITCH_VERSION); -  
25   24 new ProductInfoHeaderValue(Assembly.GetEntryAssembly().GetName().Name, STITCH_VERSION);
26 public const string GEOIP_PATH = @"GeoIP-Databases"; 25  
Line 27... Line 26...
27 public const string GEOIP_CITY_DATABASE = @"GeoLite2-City.mmdb.gz"; 26 public const string GEOIP_CITY_DATABASE = @"GeoLite2-City.mmdb.gz";
-   27 public const string GEOIP_UNKNOWN_COUNTRY = @"a galaxy far, far away...";
-   28  
-   29 public const string OFFICIAL_UPDATE_SERVER = @"http://corrade.grimore.org";
-   30  
-   31 public const string SERVICE_NAME = @"Stitch";
-   32 public const string SERVICE_DESCRIPTION = @"The Stitch Software Update Service.";
-   33 public const string DATE_TIME_STAMP = @"dd-MM-yyyy HH:mm:ss";
28 public const string GEOIP_UNKNOWN_COUNTRY = @"a galaxy far, far away..."; 34 public const string LOG_FILE_PATH = @"logs/Stitch.log";
29   35  
30 public const string OFFICIAL_UPDATE_SERVER = @"http://corrade.grimore.org"; 36 public const int LOCAL_FILE_ACCESS_TIMEOUT = 60000;