From 1bd20529a14a5d32b48a51a1158ef4fb226b4b80 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Tue, 18 Aug 2026 15:09:55 -0400 Subject: [PATCH 1/3] Fix missing erb gem --- site/Gemfile | 1 + site/Gemfile.lock | 2 ++ 2 files changed, 3 insertions(+) diff --git a/site/Gemfile b/site/Gemfile index d82b988..bdbdd69 100644 --- a/site/Gemfile +++ b/site/Gemfile @@ -18,6 +18,7 @@ group :jekyll_plugins do end gem 'json' +gem 'erb' gem "bootswatch", github: "thomaspark/bootswatch", tag: "v5.3.8" gem "bootstrap", "~> 5.3.8" diff --git a/site/Gemfile.lock b/site/Gemfile.lock index 44bd13d..45508d1 100644 --- a/site/Gemfile.lock +++ b/site/Gemfile.lock @@ -20,6 +20,7 @@ GEM em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) + erb (6.0.7) eventmachine (1.2.7) ffi (1.17.2) ffi (1.17.2-aarch64-linux-gnu) @@ -161,6 +162,7 @@ PLATFORMS DEPENDENCIES bootstrap (~> 5.3.8) bootswatch! + erb http_parser.rb (~> 0.6.0) jekyll (~> 4.3) json From 72e340245e962708578dc1afb76bae3b4fd41440 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Tue, 18 Aug 2026 15:13:53 -0400 Subject: [PATCH 2/3] Make winusb step clearer --- site/_wiki/Install/Windows.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/site/_wiki/Install/Windows.md b/site/_wiki/Install/Windows.md index 9d59a91..498a6d3 100644 --- a/site/_wiki/Install/Windows.md +++ b/site/_wiki/Install/Windows.md @@ -29,11 +29,13 @@ Alternatively you can install it to a new directory. > You can create a shortcut to this file, just make sure that the working directory points to the extracted directory. -## Installation of WinUSB {#winusb} +### (Usually not required) Installation of WinUSB {#winusb} Some tablets require Zadig's WinUSB installed on a device interface to interact with the tablet correctly. To figure out if your tablet requires WinUSB, carefully check the notes on [the supported list of tablets here]({% link _sections/Tablets.md %}). +This is a list of ALL tablets supported by OpenTabletDriver, NOT a list of all tablets that need WinUSB. +If your tablet does not have a note specifically mentioning `Zadig’s WinUSB`, you DO NOT need WinUSB. Some WinUSB-requiring tablets require a specific interface to be chosen. This is also noted in the list of tablets, if relevant. From c3c555cbb59cd0fc82b03c60aef06fafbb50e418 Mon Sep 17 00:00:00 2001 From: kuuuube Date: Wed, 19 Aug 2026 13:25:37 -0400 Subject: [PATCH 3/3] Mention maybe needing to install the bundler --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a94b79f..fc88f6e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ The next version of OpenTabletDriver.Web ### Requirements - [Ruby](https://www.ruby-lang.org/en/downloads/) (tested with Ruby 3.4) +- Ruby Bundler. This may come preinstalled or require an additional package. Run `bundle --version` to check if you have it installed. + - On Linux from your package manager: look for a `ruby-bundler`, `ruby-default-gems`, or similar package. + - As a gem: `gem install bundler` (note that it may not be on PATH by default). ## Steps