diff --git a/PocketSharp/PocketReader.cs b/PocketSharp/PocketReader.cs index fdf6df0..f5f0a44 100644 --- a/PocketSharp/PocketReader.cs +++ b/PocketSharp/PocketReader.cs @@ -44,10 +44,12 @@ namespace PocketSharp /// - /// Reads content from the given URI. + /// Reads article content from the given PocketItem. + /// This method does not use the official Article View API, which is private. + /// The PocketReader is based on a custom PCL port of NReadability and SgmlReader. /// /// The pocket item. - /// + /// A Pocket article with extracted content and title. /// public async Task Read(PocketItem item) { diff --git a/PocketSharp/Properties/AssemblyInfo.cs b/PocketSharp/Properties/AssemblyInfo.cs index 5e9f028..b05a031 100644 --- a/PocketSharp/Properties/AssemblyInfo.cs +++ b/PocketSharp/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ using System.Runtime.InteropServices; // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("PocketSharp")] -[assembly: AssemblyDescription("PocketSharp is a .NET class library, that integrates the Pocket API v3")] +[assembly: AssemblyDescription("PocketSharp is a .NET class library that integrates the Pocket API v3")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("cee")] [assembly: AssemblyProduct("PocketSharp")] @@ -25,5 +25,5 @@ using System.Runtime.InteropServices; // 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("1.5.1")] -[assembly: AssemblyFileVersion("1.5.1")] \ No newline at end of file +[assembly: AssemblyVersion("2.0.0")] +[assembly: AssemblyFileVersion("2.0.0")] \ No newline at end of file