Skip to content

Commit 494dcf0

Browse files
Release 1.0.2
Updated readme and added changelog
1 parent eeff62a commit 494dcf0

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

Changelog.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
3+
## 1.0.2
4+
5+
* Proper use of language ID in string descriptors (issue #8, pr #14)
6+
* Device notification handle bugfix (issue #9)
7+
* Bugfix in GetDescriptor marshall (issue #4)
8+
9+
## 1.0.1 (2012-03-28)
10+
11+
* Bugfix in USBPipe write (issue #3)
12+
13+
## 1.0.0 (2010-09-05)
14+
15+
* Stable release
16+
17+
## 0.9.1 beta (2010-01-17)
18+
19+
* Bugfixes
20+
21+
## 0.9.0 beta (2010-01-13)
22+
23+
* First public beta release
24+
25+

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
# WinUSBNet #
1+
# WinUSBNet
22

33
WinUSBNet is a .NET class library that provides easy access to the WinUSB API from C#, VB.NET and other .NET languages. WinUSB is a user mode API available for Windows XP, Vista and 7 (XP will require an update), allowing low level access to USB devices such as control transfers and reading from and writing to endpoints.
44

55
Please note that there is at least one different project with the same name (at codeplex), this libary is not related.
66

7-
## Status ##
7+
## Download
8+
9+
[Download latest release](https://github.com/madwizard-thomas/winusbnet/releases/latest)
10+
11+
## Status
812

913
The library is *stable*. If you find any bugs or problems please report them using the issue tracker or add a pull request if you have fixed something yourself.
1014

11-
## Features ##
15+
## Features
1216

1317
* MIT licensed with C# source code available (free for both personal and commercial use)
1418
* CLS compliant library (usable from all .NET languages such as C#, VB.NET and C++.NET)
@@ -18,12 +22,14 @@ The library is *stable*. If you find any bugs or problems please report them usi
1822
* Support for multiple interfaces and endpoints
1923
* Intellisense documentation
2024

21-
## Related documentation ##
25+
## Related documentation
2226
* [Library reference online](http://madwizard-thomas.github.io/winusbnet/docs/)
27+
* [Online wiki with short howto](https://github.com/madwizard-thomas/winusbnet/wiki)
28+
* [Changelog](Changelog.md)
2329
* [WinUSB overview](https://msdn.microsoft.com/en-us/library/ff540196.aspx)
2430
* [How to Use WinUSB to Communicate with a USB Device](http://www.microsoft.com/whdc/connect/usb/winusb_howto.mspx)
2531
* [Jan Axelson's page on WinUSB](http://janaxelson.com/winusb.htm)
2632

27-
## Migration from google code ##
33+
## Migration from google code
2834

2935
This project was previously available at google code (code.google.com/p/winusbnet/). This github repository is now the official repository for WinUSBNet.

WinUSBNet/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[assembly: AssemblyConfiguration("")]
1212
[assembly: AssemblyCompany("Madwizard.org")]
1313
[assembly: AssemblyProduct("WinUSBNet")]
14-
[assembly: AssemblyCopyright("Copyright © 2010 - 2012 by Thomas Bleeker")]
14+
[assembly: AssemblyCopyright("Copyright © 2010 - 2016 by Thomas Bleeker")]
1515
[assembly: AssemblyTrademark("")]
1616
[assembly: AssemblyCulture("")]
1717

@@ -35,5 +35,5 @@
3535
// You can specify all the values or you can default the Build and Revision Numbers
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
38-
[assembly: AssemblyVersion("1.0.1.0")]
39-
[assembly: AssemblyFileVersion("1.0.1.0")]
38+
[assembly: AssemblyVersion("1.0.2.0")]
39+
[assembly: AssemblyFileVersion("1.0.2.0")]

0 commit comments

Comments
 (0)