increment version

This commit is contained in:
2013-12-22 23:31:27 +01:00
parent 7d2cdc1aec
commit 51640d64be
3 changed files with 6 additions and 30 deletions
+4
View File
@@ -1,3 +1,7 @@
### 4.2.0
- use custom encoders if not supported on platform (implemented for ISO-8859 and Windows range).
### 4.1.0
- extract description, favicon and front image from meta tags
+2 -2
View File
@@ -22,5 +22,5 @@
// 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("4.1.0")]
[assembly: AssemblyFileVersion("4.1.0")]
[assembly: AssemblyVersion("4.2.0")]
[assembly: AssemblyFileVersion("4.2.0")]
-28
View File
@@ -247,33 +247,5 @@ namespace ReadSharp
Charset = response.Content.Headers.ContentType.CharSet
};
}
/// <summary>
/// Gets the encoding from string.
/// </summary>
/// <param name="encoding">The encoding.</param>
/// <returns></returns>
private Encoding GetEncodingFromString(string encoding)
{
Encoding correctEncoding;
//System.Activator.CreateInstance(Type.GetType("Class1"));
if (String.IsNullOrEmpty(encoding))
{
return null;
}
try
{
correctEncoding = Encoding.GetEncoding(encoding);
}
catch
{
return null;
}
return correctEncoding;
}
}
}