diff --git a/README.md b/README.md index 1c26c19..c0361f5 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,26 @@ # TabletDriver +This is a low latency graphics tablet driver that is meant to be used with rhythm game [osu!](https://osu.ppy.sh/home) + Currently the driver only works when the TabletDriverGUI is running. The GUI minimizes to system tray / notification area. You can reopen the GUI by double clicking the system tray icon. +**If you have problems with the driver, please read the FAQ:** + +**https://github.com/hawku/TabletDriver/wiki/FAQ** + ## Download -### http://hwk.fi/TabletDriver/TabletDriverV0.0.18.zip +### http://hwk.fi/TabletDriver/TabletDriverV0.1.0.zip -**If you have problems with the driver, please read the FAQ:** +# -**https://github.com/hawku/TabletDriver/wiki/FAQ** +### Supported operating systems: + - Windows 7 64-bit + - Windows 8 64-bit + - Windows 8.1 64-bit + - Windows 10 64-bit # @@ -74,6 +84,11 @@ If you want to compile the code and don't want to install anything from the Tabl ### Changelog +>**v0.1.0:** +> - Added `Bench` / `Benchmark` command. +> - Added `-hide` GUI command line parameter. GUI will start as minimized when you run `TabletDriverGUI.exe -hide` +> - Added an option to run the TabletDriverGUI at Windows startup. + >**v0.0.18:** > - Added TabletDriverService.exe multi-instance prevention. > - Added yet another Wacom 490 tip click fix. diff --git a/TabletDriverGUI/MainWindow.xaml.cs b/TabletDriverGUI/MainWindow.xaml.cs index 089182b..0fe8ee7 100644 --- a/TabletDriverGUI/MainWindow.xaml.cs +++ b/TabletDriverGUI/MainWindow.xaml.cs @@ -24,7 +24,7 @@ public partial class MainWindow : Window { // Version - public string Version = "0.0.18"; + public string Version = "0.1.0"; // Console stuff private List commandHistory;