Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hawku committed Mar 24, 2018
1 parent c203bbe commit 852fe43
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 13 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The GUI minimizes to system tray / notification area. You can reopen the GUI by

## Download

### http://hwk.fi/TabletDriver/TabletDriverV0.1.1.zip
### http://hwk.fi/TabletDriver/TabletDriverV0.1.2.zip

#

Expand Down Expand Up @@ -90,6 +90,12 @@ If you want to compile the code and don't want to install anything from the Tabl
#

## Changelog
>**v0.1.2:**
> - Added experimental support for leaving the Wacom drivers installed on the system.
> Supported tablets: CTL-470, CTL-480, CTH-480, CTL-4100
> - Added `disable_wacom_drivers.bat` and `enable_wacom_drivers.bat` to the `tools` folder.
> These scripts are used to disable and enable Wacom drivers when using the experimental Wacom driver support.
> - Added driver restart button.
>**v0.1.1:**
> - Added support for Wacom CTL-4100 (USB and Bluetooth)
Expand Down
32 changes: 21 additions & 11 deletions TabletDriverGUI/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</Window.Resources>

<Grid Background="Transparent" Margin="0,0,0,0">

<DockPanel Background="White">
<Menu DockPanel.Dock="Top" Background="White">
<MenuItem Header="_File">
Expand All @@ -32,7 +32,7 @@
</Menu>
<TextBox AcceptsReturn="True" />
</DockPanel>

<TabControl Name="tabControl" Margin="0,20,0,59" Selector.IsSelected="True" Background="White">
<TabItem Header="Settings">
<ScrollViewer VerticalScrollBarVisibility="Auto">
Expand Down Expand Up @@ -518,22 +518,32 @@
</TabControl>

<Grid Margin="5,5,5,25" Height="35" VerticalAlignment="Bottom">

<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Button Name="buttonSaveSettings" Margin="0,5,0,5" Width="50" Click="SaveSettings"
ToolTip="Saves settings to Config.xml">Save</Button>
<Button Name="buttonApplySettings" Margin="5,5,0,5" Width="50" Click="ApplySettings"

<!-- Apply -->
<Button Name="buttonApplySettings" Margin="0,5,5,5" Padding="10,0,10,0" Click="ApplySettings"
ToolTip="Applies driver settings.">Apply</Button>
<Button Name="buttonRestartDriver" Margin="25,5,0,5" Width="90"
HorizontalAlignment="Right"
Click="RestartDriverClick"
ToolTip="Restarts the TabletDriverService">Restart Driver</Button>

<!-- Save -->
<Button Name="buttonSaveSettings" Margin="0,5,5,5" Padding="10,0,10,0" Click="SaveSettings"
ToolTip="Saves settings to Config.xml">Save</Button>

</StackPanel>
<CheckBox Name="checkRunAtStartup"
HorizontalAlignment="Right" VerticalAlignment="Center" VerticalContentAlignment="Center"

<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">

<!-- Restart Driver -->
<Button Name="buttonRestartDriver" Margin="5,5,15,5" Padding="5,0,5,0"
Click="RestartDriverClick"
ToolTip="Restarts the TabletDriverService">Restart Driver</Button>

<!-- Run at Startup -->
<CheckBox Name="checkRunAtStartup"
VerticalAlignment="Center" VerticalContentAlignment="Center"
Checked="CheckboxChanged" Unchecked="CheckboxChanged"
ToolTip="Starts and hides the TabletDriverGUI at Windows startup">Run at Windows startup</CheckBox>
</StackPanel>
</Grid>

<StatusBar Height="25" VerticalAlignment="Bottom">
Expand Down
2 changes: 1 addition & 1 deletion TabletDriverGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public partial class MainWindow : Window
{

// Version
public string Version = "0.1.1";
public string Version = "0.1.2";

// Console stuff
private List<string> commandHistory;
Expand Down

0 comments on commit 852fe43

Please sign in to comment.