From 05c830bc5fc8c94d8f6539487238ccc86daf1bea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Str=C3=B8hm?= Date: Sat, 23 Sep 2023 07:21:58 +0100 Subject: [PATCH] Remove note about the dev branch in the readme (#388) Since this repository no longer does all the development on a dev branch the instructions in the readme noting this are no longer accurate. Therefore this PR removes this note, and since this was the only instruction outside of the "Getting started", I've removed the "Instructions" header and upgraded the "Getting started" header. --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 05d0673da..b6b23adc2 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,7 @@ and a single input can result in multiple actions being triggered, which can be - Gamepads must be manually assigned to each input map: read from the `Gamepads` resource and use `InputMap::set_gamepad`. -## Instructions - -**Development occurs on the `dev` branch, which is merged into `main` on each release.** -This ensures the examples are in-sync with the latest release. - -### Getting started +## Getting started 1. Add `leafwing-input-manager` to your `Cargo.toml`. 2. Create an enum of the logical actions you want to represent, and derive the `Actionlike` trait for it.