From 4f97618f7d5fede278bf1e0f28000a00a98c1a70 Mon Sep 17 00:00:00 2001 From: Tyler Reynolds Date: Fri, 14 May 2021 00:33:17 -0700 Subject: [PATCH 1/4] Fix readme errors --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 94db3e2..08b148f 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,15 @@ ViLA (**Vi**rpil **L**ED **A**utomator) is an extensible tool for configuring your Virpil usb device's LEDs to react to certain events. It can be extended via plugins written by anybody, which can do things like tail log files, pair with DCS-BIOS, and more. These plugins send messages to ViLA, which are parsed according to its configuration file. -![Gear down](https://gfycat.com/responsiblefearlessiceblueredtopzebra.gif) -![Lights test](https://gfycat.com/wateryunevenbarasingha.gif) -![Hornet fire test](https://gfycat.com/colossalembellishedfattaileddunnart.gif) - + + + ## Installation Download the latest version from the Releases page, and place it in its own folder wherever you want to keep it. You'll need two things: -1. [`config.json`](#config.json) +1. [`config.json`](#configjson) 1. `Plugins/` folder (where your plugins will go) From d52f6ae735980acb1c90767784d472af1b2fd653 Mon Sep 17 00:00:00 2001 From: Tyler Reynolds Date: Fri, 14 May 2021 00:37:11 -0700 Subject: [PATCH 2/4] Update schema file location in sample config --- README.md | 2 +- ViLA/Configuration/config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08b148f..6ee950b 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ It's structured like so: ```json5 { // schema at the top - "$schema": "./Schema/ActionConfiguration.json.schema", + "$schema": "https://raw.githubusercontent.com/charliefoxtwo/ViLA/develop/ViLA/Configuration/Schema/ActionConfiguration.json.schema", // devices, identified by hex code PID "devices": { "825B": [ diff --git a/ViLA/Configuration/config.json b/ViLA/Configuration/config.json index 7115202..934d95c 100644 --- a/ViLA/Configuration/config.json +++ b/ViLA/Configuration/config.json @@ -1,5 +1,5 @@ { - "$schema": "./Schema/ActionConfiguration.json.schema", + "$schema": "https://raw.githubusercontent.com/charliefoxtwo/ViLA/main/ViLA/Configuration/Schema/ActionConfiguration.json.schema", "devices": { "825B": [ { From c0dd5ba4d4decd272e80a605699111cb19b9e47a Mon Sep 17 00:00:00 2001 From: Tyler Reynolds Date: Fri, 14 May 2021 00:41:12 -0700 Subject: [PATCH 3/4] Add PID info to readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 6ee950b..965e657 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,14 @@ It's structured like so: } ``` +Known PID hex codes: + +| Device | Hex PID | +| --- | --- | +| Control Panel #1 | `0259` | +| Control Panel #2 | `825B` | +| CM2 Throttle | `8193` | + The following is an example of a device action: ```json5 { From e957e24e51558199a450a96b156c7959ec319bfd Mon Sep 17 00:00:00 2001 From: Tyler Reynolds Date: Fri, 14 May 2021 00:44:23 -0700 Subject: [PATCH 4/4] Bump version to 0.1.0 --- ViLA/ViLA.csproj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ViLA/ViLA.csproj b/ViLA/ViLA.csproj index a985a15..ec03230 100644 --- a/ViLA/ViLA.csproj +++ b/ViLA/ViLA.csproj @@ -4,6 +4,8 @@ Exe net5.0 enable + 0.1.0 + 0.1.0