Releases: Snoothy/UCR
Releases · Snoothy/UCR
Release v0.9.0 Alpha
[0.9.0] - 2020-01-02
Added
- Added Shadow devices
- Added option to clear bindings
- Added Filters for plugins
Button to Filter
: Allows toggling of a filter using a buttonAxis to Filter
: Allows toggling of a filter using an axis- Added device cache allowing configuration of disconnected devices
- Added per input blocking for supported providers
- Provider Report now contains
ErrorMessage
property. If the provider is not live, this should contain a string indicating why - [Tobii Provider] If IsLive is false, now reports reason in ErrorMessage
- [SpaceMouse provider] IsLive is always true, as HID is always present
- [MIDI provider] IsLive is always true, as MIDI is always present
- [TitanOne Provider] IsLive now reflects connected status of device
- [TitanOne Provider] Reports 0 devices if IsLive is false
- [vJoy Provider] IsLive now reflects whether driver is installed
- [Interception Provider] IsLive is false if no devices are found, assumes driver is not installed
Fixed
- Child profiles now properly inherit all parent devices. Fixes crash on activating profile
- IOWrapper device list is now refreshed every time devices are queried
Changed
- Updated to IOWrapper v0.11.2
- [Interception Provider] Blockable property of BindingDescriptor now indicates if input is blockable or not. This is controlled by whether BlockingEnabled in the settings file is true or not
- [XInput Provider] Only show Xinput devices in ProviderReport that are currently connected
- [DS4WindowsApi Provider] Only show DS4 devices in ProviderReport that are currently connected
- [SpaceMouse Provider] Only show SpaceMouse devices in ProviderReport that are currently connected
- [Tobii Provider] IsLive now reflects state of driver
- [Tobii Provider] Only show Tobii devices in ProviderReport that are currently connected
- [ViGEm Provider] Do not show devices if Bus Driver not installed
Removed
- [Interception Provider] BlockingControlledByUi setting removed
Release v0.8.0 Alpha
Added
- Material design
- Quick access button to add new profile
- Profile overview in the main window
- Added save button to profile window
- Added Anti-Deadzone helper
- Added Anti-Deadzone option to AxisToAxis plugin
- Added ButtonToEvent plugin
- Added input validation for plugin values
Changed
- Updated to IOWrapper v0.10.5
Button to Axis
parameters changed to two axis values and option for initialization- Redesigned main window dashboard
- Redesigned profile window
- Show active profile in process bar
- Replaced menu with toolbar in main window
- Replaced dialog windows with proper dialogs
- Replaced menu with toolbar in profile window
- UCR Unblocker now uses the current directory as default
- Sensitivity to Axis Merger plugin added
- Improved circular deadzone calculation
Removed
- Removed states
Fixed
- Sum Mode in Axis Merger plugin no longer overflows
- Unblocking no longer crashes if the UCR path has spaces
- Bind Mode button now only responds to mouse down and not mouse up (Fixes binding Space bar re-triggering Bind Mode on release)
Release v0.7.0 Alpha
Changed
Button to Axis
parameters changed to two axis values and option for initialization- Plugin updates are now of type short instead of long. Some operations are performed using int, to avoid wrap-around or crashes.
- Subscription and Bind Mode callbacks are now executed as Tasks and are an
Action<short>
rather than dynamic - Default blocking to true while UCR GUI does not support selecting block
Release v0.6.0 Alpha
Added
- Added bind mode for inputs
Changed
- Updated to IOWrapper v0.9.11
Release v0.5.2 Alpha
Fixed
- Values other than 0 or 50 for DeadZone should now work properly - Maximum deflection should now be achievable again
Release v0.5.1 Alpha
Added
- Interception Provider: Duplicate devices now have #2, #3 etc at end of name to differentiate them
- You no longer put a Provider into Bind Mode, you put a Device into Bind Mode (Bind Mode is still not implemented on the front end)
- "Provider Libraries" to simplify writing of new providers
- Rewritten DirectInput and XInput providers using new Provider Libraries
- Unit tests for Provider Libraries
Fixed
- Interception Provider: Should no longer crash on startup when there are multiple identical devices.
- Interception Provider: Keyboard keys are no longer inverted (Press is now press, release is now release)
- Interception Provider: When both X and Y movement was received (ie diagonal movement), Interception would only process X and ignore Y.
Removed
- IOWrapper: All code from ProviderInterface that was not related to the interface itself was removed (ie Old helper libraries removed)
Release v0.5.0 Alpha
Added
Buttons to Axis
plugin- Invert output to
Button to Axis
Button to Buttons (Long Press)
- Reset button for
Delta To Axis
relative mode - DLL blocking detecting and unblocking
- Appveyor build server setup
Fixed
- Allow
+
and-
to be typed into plugin decimal inputs - nuke restore task
- nuke versioning task
Removed
- AxisToAxisCumulative, AxisToDelta, ButtonToButtonsLongPress and DeltaToAxis plugins were removed from the UCR repo and moved to the UCR-Plugins repo
- Cake build script
Release v0.4.0 Alpha
Changelog
Added
- Inputs and outputs now support live preview when a profile is active
- Added circular dead zone feature
Button to Axis
has absolute value to support Xbox triggersAxes to Axes
: Maps a stick to another stick, with optional circular dead zone which acts on both axesAxis to Axis (Cumulative)
: Cumulatively move the output axis with the value of the input axisAxis to Delta
: Joystick type axis to Mouse type axisDelta to Axis
: Mouse type axis to Joystick type axis- IOWrapper: Complete Delta Axis implementation for mouse support
- IOWrapper: Interception devices now show
K:
orM:
prefix to aid in identification - IOWrapper: Interception support for horizontal wheel
Changed
- Updated to IOWrapper v0.5.7
Fixed
- Fixed wrapping errors for invert, dead zone and sensitivity settings
- IOWrapper: Interception provider, fixes to device enumeration - should now find PS/2 and built-in devices
- IOWrapper: Interception mouse wheel fix
- IOWrapper: ViGEm DS4 DPad fixed
- IOWrapper: ViGEm Xbox triggers fixed
Release v0.3.1 Alpha
Change list
- Updated to IOWrapper v0.5.4
- Xbox triggers in ViGEm provider now use standard scale
- Fixed crash on Unsubscribe
Release v0.3.0 Alpha
This new release brings a new architecture and lots of changes. This means that previous context.xml
are unsupported.
Change list
- Architecture
- Profile window redesigned
- Mappings are now a new layer between the profile and plugins
- Plugins have been rewritten using the new GUI attribute support
- Cake build script replaced with nuke
- Better build support for UCR and IOWrapper in Visual Studio 2017
- Updated to IOWrapper v0.5.1
- Features
- Device groups are now selected when creating a new profile and can be changed from the profiles menu
- Mappings can override parent profiles if they share the same name
- States can be added to a profile
- Plugins can be added to states. Plugins will only send data to the output if the state is active or if it is in the default state
- New plugins
- Axis splitter
- Axis merger
- IOWrapper changes
- Interception mouse buttons fixed
- DirectInput and XInput providers rewritten
- DirectInput no longer crashes querying a device with no axes
- XInput Dpad left is now working as expected