Skip to content

Commit

Permalink
update hid
Browse files Browse the repository at this point in the history
  • Loading branch information
a committed Dec 31, 2021
1 parent 20b7ca0 commit 0bf733e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 41 deletions.
4 changes: 4 additions & 0 deletions hid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.0

* Add macOS implementation.

## 0.0.7

* Dart version.
Expand Down
40 changes: 2 additions & 38 deletions hid/README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,3 @@
<!--
This README describes the package. If you publish this package to pub.dev,
this README's contents appear on the landing page for your package.
# hid

For information about how to write a good package README, see the guide for
[writing package pages](https://dart.dev/guides/libraries/writing-package-pages).
For general information about developing packages, see the Dart guide for
[creating packages](https://dart.dev/guides/libraries/create-library-packages)
and the Flutter guide for
[developing packages and plugins](https://flutter.dev/developing-packages).
-->

TODO: Put a short description of the package here that helps potential users
know whether this package might be useful for them.

## Features

TODO: List what your package can do. Maybe include images, gifs, or videos.

## Getting started

TODO: List prerequisites and provide or point to information on how to
start using the package.

## Usage

TODO: Include short and useful examples for package users. Add longer examples
to `/example` folder.

```dart
const like = 'sample';
```

## Additional information

TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.
A multi-platform plugin which allows an application to interface with USB HID-Class devices on Windows, Android, and macOS.
5 changes: 4 additions & 1 deletion hid/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: hid
description: A multi-platform plugin which allows an application to interface with USB HID-Class devices on Windows, Android, and macOS.
version: 0.0.7
version: 0.1.0
repository: https://github.com/rustui/hid/tree/main/hid

environment:
Expand All @@ -12,6 +12,7 @@ dependencies:
sdk: flutter
hid_platform_interface: ^0.0.7
hid_windows: ^0.0.7
hid_macos: ^0.1.0

dev_dependencies:
flutter_test:
Expand All @@ -27,3 +28,5 @@ flutter:
platforms:
windows:
default_package: hid_windows
macos:
default_package: hid_macos
4 changes: 2 additions & 2 deletions hid_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 0.0.1
## 0.1.0

* TODO: Describe initial release.
* Initial release.

0 comments on commit 0bf733e

Please sign in to comment.