Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
madwizard-thomas committed Jan 26, 2020
1 parent 168fdc0 commit 00b7bb0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2.0.0 (2020-01-26)

* Fix ControlTransfer methods to return the actual number of bytes received. Thanks to @adadurov!
* This is a small but breaking change, so this is a new major version.

## 1.0.3 (2017-01-24)

* Allow raw window handle for USBNotifier
Expand Down
7 changes: 4 additions & 3 deletions HelpProject/WinUSBNet.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{48421796-a4bf-4d98-9236-6fb0f5a98115}</ProjectGuid>
<SHFBSchemaVersion>2015.6.5.0</SHFBSchemaVersion>
<SHFBSchemaVersion>2017.9.26.0</SHFBSchemaVersion>
<!-- AssemblyName, Name, and RootNamespace are not used by SHFB but Visual Studio adds them anyway -->
<AssemblyName>Documentation</AssemblyName>
<RootNamespace>Documentation</RootNamespace>
Expand All @@ -18,15 +18,15 @@
<HtmlHelpName>WinUSBNet</HtmlHelpName>
<Language>en-US</Language>
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
<HelpFileFormat>HtmlHelp1, Website</HelpFileFormat>
<HelpFileFormat>Website</HelpFileFormat>
<IndentHtml>False</IndentHtml>
<KeepLogFile>True</KeepLogFile>
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
<CleanIntermediates>True</CleanIntermediates>
<DocumentationSources>
<DocumentationSource sourceFile="..\WinUSBNet\WinUSBNet.csproj" xmlns="" />
</DocumentationSources>
<HelpFileVersion>1.0.3</HelpFileVersion>
<HelpFileVersion>2.0.0</HelpFileVersion>
<MaximumGroupParts>2</MaximumGroupParts>
<NamespaceGrouping>False</NamespaceGrouping>
<SyntaxFilters>C#, Visual Basic, Managed C++</SyntaxFilters>
Expand All @@ -40,6 +40,7 @@
<CopyrightHref>http://www.madwizard.org/</CopyrightHref>
<ContentPlacement>AboveNamespaces</ContentPlacement>
<MissingTags>Summary, Parameter, Returns, AutoDocumentCtors, TypeParameter, AutoDocumentDispose</MissingTags>
<SaveComponentCacheCapacity>100</SaveComponentCacheCapacity>
</PropertyGroup>
<!-- There are no properties for these groups. AnyCPU needs to appear in order for Visual Studio to perform
the build. The others are optional common platform types that may appear. -->
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ The library is *stable*. If you find any bugs or problems please report them usi
* [Library reference online](http://madwizard-thomas.github.io/winusbnet/docs/)
* [Online wiki with short howto](https://github.com/madwizard-thomas/winusbnet/wiki)
* [Changelog](Changelog.md)
* [WinUSB overview](https://msdn.microsoft.com/en-us/library/ff540196.aspx)
* [How to Use WinUSB to Communicate with a USB Device](http://www.microsoft.com/whdc/connect/usb/winusb_howto.mspx)
* [Jan Axelson's page on WinUSB](http://janaxelson.com/winusb.htm)

## Migration from google code

This project was previously available at google code (code.google.com/p/winusbnet/). This github repository is now the official repository for WinUSBNet.
* [WinUSB overview](https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/winusb)
* [How to Access a USB Device by Using WinUSB Functions](https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/using-winusb-api-to-communicate-with-a-usb-device)
* [Jan Axelson's page on WinUSB](http://janaxelson.com/winusb.htm)
6 changes: 3 additions & 3 deletions WinUSBNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Madwizard.org")]
[assembly: AssemblyProduct("WinUSBNet")]
[assembly: AssemblyCopyright("Copyright © 2010 - 2016 by Thomas Bleeker")]
[assembly: AssemblyCopyright("Copyright © 2010 - 2020 by Thomas Bleeker")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -34,5 +34,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("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
4 changes: 2 additions & 2 deletions WinUSBNet/WinUSBNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>https://opensource.org/licenses/mit-license.php</licenseUrl>
<license type="expression">MIT</license>
<projectUrl>https://github.com/madwizard-thomas/winusbnet</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>WinUSBNet is a .NET class library that provides easy access to the WinUSB API from C#, VB.NET and other .NET languages.</description>
<copyright>Copyright © 2010 - 2017 by Thomas Bleeker (MadWizard.org)</copyright>
<copyright>Copyright © 2010 - 2020 by Thomas Bleeker (MadWizard.org)</copyright>
<tags>WinUSB USB</tags>
</metadata>
</package>

0 comments on commit 00b7bb0

Please sign in to comment.