Skip to content

Commit

Permalink
Merge pull request #35 from KaiseiYokoyama/dev/0.3.1
Browse files Browse the repository at this point in the history
Dev/0.3.1
  • Loading branch information
KaiseiYokoyama authored Apr 27, 2020
2 parents 2e273d4 + 6deac22 commit 7ff29dc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ on:
release:
push:
types: [published]
# branches:
# - master
branches-ignore:
- '**'
branches:
- master

jobs:
Release:
Expand Down
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
[package]
name = "joycon-rs"
version = "0.3.0"
version = "0.3.1"
authors = ["Kaisei Yokoyama <[email protected]>"]
repository = "https://github.com/KaiseiYokoyama/joycon-rs"
edition = "2018"
description = " a framework for dealing with Nintendo Switch Joy-Con on Rust easily and efficiently"
readme = "README.md"
keywords = ["nintendo_switch", "joy-con", "gamedev", "hid"]
keywords = ["nintendo_switch", "joycon", "gamedev", "hid"]
license = "Apache-2.0"
exclude = ["/images/*"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hidapi = { git = "https://github.com/KaiseiYokoyama/hidapi-rs" }
hidapi-alt-for-hidapi-issue-127 = "1.2.1"
crossbeam-channel = "0.4.2"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![joycon-rs](images/joycon-rs.png)
![joycon-rs](https://raw.githubusercontent.com/KaiseiYokoyama/joycon-rs/master/images/joycon-rs.png)

# Joycon-rs
![Test on mac](https://github.com/KaiseiYokoyama/joycon-rs/workflows/Test%20on%20mac/badge.svg?branch=master)
Expand All @@ -11,7 +11,7 @@ A framework for dealing with Nintendo Switch Joy-Con on Rust easily and efficien
Please see the documentation comments for detailed instructions on how to use it.

Joycon-rs is in development and is still incomplete.
Please be aware that the update will include breaking changes for the time being. Pardon out dust!
Please be aware the update will include breaking changes for the time being. Pardon out dust!

# Setup
On macOS or Windows, there are no preparation.
Expand Down
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![doc(html_logo_url = "https://user-images.githubusercontent.com/8509057/79100490-9a4a7900-7da1-11ea-9ee4-5e15439bbd0c.png")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/KaiseiYokoyama/joycon-rs/master/images/favicon.ico")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/KaiseiYokoyama/joycon-rs/master/images/logo.png")]
//! # Joycon-rs Library Documentation
//!
//! Hello, and welcome to joycon-rs documentation.
Expand Down Expand Up @@ -145,6 +146,8 @@
//! [SubCommandMode<D, RD>]: joycon/input_report_mode/sub_command_mode/struct.SubCommandMode.html
//! [Deal with LED (Player lights)]: joycon/lights/index.html
//! [Vibration (Rumble)]:joycon/struct.Rumble.html
extern crate hidapi_alt_for_hidapi_issue_127 as hidapi;

pub mod joycon;

#[cfg(doctest)]
Expand Down

0 comments on commit 7ff29dc

Please sign in to comment.