Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Renamed setting
Browse files Browse the repository at this point in the history
Updated version
  • Loading branch information
nefarius committed Apr 10, 2016
1 parent 9ffa944 commit 3f8d562
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 40 deletions.
4 changes: 2 additions & 2 deletions Installer/ScpToolkit Setup.aip
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<ROW Property="AppLogoIcon" Value="applogoicon" MultiBuildValue="DefaultBuild:DualShock.png" Type="1" MsiKey="AppLogoIcon"/>
<ROW Property="CTRLS" Value="2"/>
<ROW Property="Manufacturer" Value="Nefarius Software Solutions"/>
<ROW Property="ProductCode" Value="1033:{8316FD79-8AC5-40F5-AB18-91FDDBA3D12C} " Type="16"/>
<ROW Property="ProductCode" Value="1033:{730D2D63-4863-49A9-876F-9A69320C6DB1} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="ScpToolkit"/>
<ROW Property="ProductVersion" Value="1.7.275.16101" Type="32"/>
<ROW Property="ProductVersion" Value="1.7.276.16101" Type="32"/>
<ROW Property="RUNAPPLICATION" Value="1" Type="4"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/>
<ROW Property="UpgradeCode" Value="{541750FB-F05E-4F6A-AB9A-69A633D3D681}"/>
Expand Down
4 changes: 2 additions & 2 deletions ScpCleanWipe/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpControl/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
6 changes: 3 additions & 3 deletions ScpControl/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ScpControl/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<Setting Name="IsVBusDisabled" Provider="ScpControl.Utilities.PortableSettingsProvider" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="AlwaysDisconnectVirtualBusDevice" Provider="ScpControl.Utilities.PortableSettingsProvider" Type="System.Boolean" Scope="User">
<Setting Name="AlwaysUnPlugVirtualBusDevice" Provider="ScpControl.Utilities.PortableSettingsProvider" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="UseAsyncHidReportProcessing" Provider="ScpControl.Utilities.PortableSettingsProvider" Type="System.Boolean" Scope="User">
Expand Down
2 changes: 1 addition & 1 deletion ScpControl/RootHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ protected override void OnHidReportReceived(object sender, ScpHidReport e)
_vibration[serial][0] = _vibration[serial][1] = 0;
_mNative[serial][0] = _mNative[serial][1] = 0;

if (GlobalConfiguration.Instance.AlwaysDisconnectVirtualBusDevice)
if (GlobalConfiguration.Instance.AlwaysUnPlugVirtualBusDevice)
{
_scpBus.Unplug(_scpBus.IndexToSerial((byte)e.PadId));
}
Expand Down
2 changes: 1 addition & 1 deletion ScpControl/ScpControl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<AssemblyInfoVersionSettings>
</AssemblyInfoVersionSettings>
<PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
<AssemblyVersion>1.7.275.16101</AssemblyVersion>
<AssemblyVersion>1.7.276.16101</AssemblyVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
6 changes: 3 additions & 3 deletions ScpControl/ScpCore/GlobalConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ public bool IsVBusDisabled
set { Settings.Default.IsVBusDisabled = value; }
}

public bool AlwaysDisconnectVirtualBusDevice
public bool AlwaysUnPlugVirtualBusDevice
{
get { return Settings.Default.AlwaysDisconnectVirtualBusDevice; }
set { Settings.Default.AlwaysDisconnectVirtualBusDevice = value; }
get { return Settings.Default.AlwaysUnPlugVirtualBusDevice; }
set { Settings.Default.AlwaysUnPlugVirtualBusDevice = value; }
}

public bool ReservePadSlot
Expand Down
2 changes: 1 addition & 1 deletion ScpControl/app.config
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
<setting name="IsVBusDisabled" serializeAs="String">
<value>False</value>
</setting>
<setting name="AlwaysDisconnectVirtualBusDevice" serializeAs="String">
<setting name="AlwaysUnPlugVirtualBusDevice" serializeAs="String">
<value>True</value>
</setting>
<setting name="UseAsyncHidReportProcessing" serializeAs="String">
Expand Down
4 changes: 2 additions & 2 deletions ScpDebugInfoCollector/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpDriverInstaller/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpGamepadAnalyzer/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpMonitor/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpPair/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpProfiler/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpServer/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpService/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
8 changes: 4 additions & 4 deletions ScpSettings/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
Grid.Row="0" Margin="0,0,0,10">
<StackPanel>
<TextBlock>
By checking one or more of the checkboxes below the service will check you device drivers on every start-up and re-applies the correct driver on your Bluetooth dongle or Usb-wired DualShock controllers to ensure proper communication with the software.
By checking one or more of the check-boxes below the service will check you device drivers on every start-up and re-applies the correct driver on your Bluetooth dongle or Usb-wired DualShock controllers to ensure proper communication with the software.
</TextBlock>
<CheckBox IsChecked="{Binding Path=ForceBluetoothDriverReinstallation}">Force Bluetooth driver installation</CheckBox>
<CheckBox IsChecked="{Binding Path=ForceDs3DriverReinstallation}">Force DualShock 3 driver installation</CheckBox>
Expand All @@ -378,11 +378,11 @@
</TextBlock>
<CheckBox IsChecked="{Binding Path=IsVBusDisabled}">Disable Virtual Bus events</CheckBox>
<TextBlock>
The default behavior of the virtual Xbox 360 controller device created by the virtual bus is to linger in a connected state even if the physical gamepad gets disconnected (turned off). If you'd like the virtual Xbox 360 controller to "disconnect" from the system when the physical pad gets shut off, tick the box below.
The default behavior of the virtual Xbox 360 controller device created by the virtual bus is to linger in a connected state even if the physical game-pad gets disconnected (turned off). If you'd like the virtual Xbox 360 controller to "disconnect" from the system when the physical pad gets shut off, tick the box below.
</TextBlock>
<CheckBox IsChecked="{Binding Path=AlwaysDisconnectVirtualBusDevice}">Always unplug virtual controller</CheckBox>
<CheckBox IsChecked="{Binding Path=AlwaysUnPlugVirtualBusDevice}">Always unplug virtual controller</CheckBox>
<TextBlock>
Reserves the slot of the controller to its MAC address if enabled. Usefull if you have a DualShock-only environment and want a fixed slot index for your pad.
Reserves the slot of the controller to its MAC address if enabled. Useful if you have a DualShock-only environment and want a fixed slot index for your pad.
</TextBlock>
<CheckBox IsChecked="{Binding Path=ReservePadSlot}">Reserve controller slot</CheckBox>
</StackPanel>
Expand Down
4 changes: 2 additions & 2 deletions ScpSettings/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]
4 changes: 2 additions & 2 deletions ScpXInputBridge/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("1.7.275.16101")]
[assembly: AssemblyFileVersion("1.7.275.16101")]
[assembly: AssemblyVersion("1.7.276.16101")]
[assembly: AssemblyFileVersion("1.7.276.16101")]

0 comments on commit 3f8d562

Please sign in to comment.