[go: up one dir, main page]

evdev 0.13.1

evdev interface for Linux
Documentation
# Changelog

## evdev next
[6aed780...HEAD](https://github.com/emberian/evdev/compare/7cbae16...HEAD)

### Added

### Changed

### Fixed

## evdev 0.13.1 (2025-03-31)
[7cbae16...6aed780](https://github.com/emberian/evdev/compare/7cbae16...6aed780)

### Added
- `Device::is_grabbed() -> bool`

### Changed
- `Device` now implements `Debug`.
- `Device` now calls `ungrab()` on Drop.

### Fixed

## evdev 0.13.0 (2025-01-22)
[02aef0c...5a5ec3c](https://github.com/emberian/evdev/compare/02aef0c...5a5ec3c)

### Added
- Create a `...Event` struct for each `EventType` to hold the `InputEvent`
  - Guarantee that each `...Event` struct can only hold a `InputEvent` of the corresponding `EventType`
- Demonstrate what the `FFEvent` does in the `force_feedback` example.

- `Device`, `RawDevice`, and `VirtualDevice` now implement `AsFd`.
- `VirtualDevice::builder()` as an alias for `VirtualDeviceBuilder::new()`
  - `VirtualDeviceBuilder::new()` is now deprecated.

### Changed
- Removed the `evdev::Error` type - fallible functions now just return `io::Error`.
- Consistent naming and structure of all new-types for event-codes
  - Some of them where previously named `...Type` now they are all named `...Code`
  - Rename `InputEventKind` to `EventSummary`
  - Created missing `EventSummary` variants. I know some of them are kind of unused but it is less confusing if they are all there and look the same.
  - Each variant of the `EventSummary` enum now has the structure `Variant(...Event, ...Type, value)`
  - Renamed `Key` struct (the one with all the Key constants) to `KeyCode` to keep the naming consistent!
- Rename `InputEvent::kind` to `InputEvent::destructure` this now returns a `EventSummary`
- `InputEvent::new` no longer takes the `EventType` but `u16` as first argument. If the `EventType` is known we can directly construct the correct variant.
- Ensure the unsafe code still does what we expect.
- Update the Examples.

- The minimum supported rust version (MSRV) is now `1.63`, due to `AsFd` support.
- In order for the `EventStream` types to implement Stream, the `stream-trait`
  feature must now be specified.
- `FFEffect` and `AutoRepeat` are now defined in the root of the crate instead of in `raw_stream`.
- `VirtualDeviceBuilder::with_phys` now accepts a `&CStr` instead of a `&str`.

### Fixed
- Update `VirtualDevice::fetch_events` to yield `InputEvent`s instead of `UInputEvent`s. That was a bug which was not accounted for be the type system. Yielding `UInputEvent`s there will now panic.

## evdev 0.12.2 (2024-05-08)
[8fc58e1...af3c9b3](https://github.com/emberian/evdev/compare/8fc58e1...af3c9b3)

### Added

- `&AttributeSetRef` and `&mut AttributeSetRef` now implement `Default`.
- `&AttributeSetRef` now implements `IntoIterator`.
- `AttributeSet` now implements `FromIterator<&T>`.

### Changed

### Fixed
- `enumerate_dev_nodes[_blocking]` now always returns a path to a file in `/dev/input`

## evdev 0.12.1 (2022-12-09)
[86dfe33...8fc58e1](https://github.com/emberian/evdev/compare/86dfe33...8fc58e1)

### Added

- Add `Device::max_ff_effects()` to return the maximum number of force feedback effects that can be played simultaneously.
- Add support for `EV_MSC` (miscellaneous events) to `VirtualDeviceBuilder`.
- Add support for device properties to `VirtualDeviceBuilder`.

### Changed

- Examples now show the device path of the virtual device.

### Fixed

- Avoid infinite loop in `DevNodes::next_entry()`.
- Fix issue on 32-bit platforms where `tv_sec` (`time_t`) is 32-bit.
- Fix documentation links.
- Document all the features (on docs.rs).

## evdev 0.12.0 (2022-08-17)
[c0bd8dd...86dfe33](https://github.com/emberian/evdev/compare/c0bd8dd...86dfe33)

### Added

- Document `FFEffect`.
- Publicly export `FFEffect` from root.
- Add `FFEffect::id()` as an accessor for the effect ID.
- Add missing `EventStream::device_mut()` in `sync_stream.rs`.

### Changed

### Fixed

- Make sure that the `DevNodesBlocking` iterator is not blocking indefinitely when all entries in the directory have been exhausted.
- Fix incorrect cast in `eviocrmff` to support 32-bit platforms [#82]https://github.com/emberian/evdev/pull/82.
- FreeBSD support [#88]https://github.com/emberian/evdev/pull/88.

## evdev 0.11.6 (2022-08-03)
[372d000...c0bd8dd](https://github.com/emberian/evdev/compare/372d000...c0bd8dd)

### Added

- Add a `CHANGELOG.md` with a changelog for each new release.
- Force feedback support [#74]https://github.com/emberian/evdev/pull/74.
- Implement serde support for `evdev_enum!` types and `InputEventKind` [#76]https://github.com/emberian/evdev/pull/76.
- Implement `VirtualDevice::get_sys_path()` as well as an iterator over the device node paths for virtual devices [#72]https://github.com/emberian/evdev/pull/72.
- Implement an `Error` type [#75]https://github.com/emberian/evdev/pull/75.
- Add `EventStream::device_mut()` to get a mutable reference to `RawDevice` [#73]https://github.com/emberian/evdev/pull/73.
- Add support for absolute axes for virtual devices [#71]https://github.com/emberian/evdev/pull/71.

### Changed

### Fixed

- Documentation and code tidying [#67]https://github.com/emberian/evdev/pull/67.

## evdev 0.11.5 (2022-03-05)
[099b6e9...372d000](https://github.com/emberian/evdev/compare/099b6e9...372d000)

### Added

- Introduce `RawDevice::sys_path` and `Device::sys_path` [#62]https://github.com/emberian/evdev/pull/62.
- Implement `FromIterator` for `AttributeSet`.

### Changed

### Fixed

## evdev 0.11.4 (2022-01-12)
[1d020f1...099b6e9](https://github.com/emberian/evdev/compare/1d020f1...099b6e9)

### Added

### Changed

- Update bitvec to 1.0.

### Fixed

## evdev 0.11.3 (2021-12-07)
[898bb5c...1d020f1](https://github.com/emberian/evdev/compare/898bb5c...1d020f1)

### Added

- Introduce `RawDevice::send_event` and `Device::send_event` to toggle LEDs, play sounds and play force feedback effects [#60]https://github.com/emberian/evdev/pull/60.

### Changed

### Fixed

- Fix a bug in `compensate_events` where it returned the same event when invoking `next()` multiple times [#61]https://github.com/emberian/evdev/pull/61.

## evdev 0.11.2 (2021-12-03)
[763ef01...898bb5c](https://github.com/emberian/evdev/compare/763ef01...898bb5c)

### Added

### Changed

- Update bitvec to 1.0.0-rc1.

### Fixed

## evdev 0.11.1 (2021-10-08)
[1898f49...763ef01](https://github.com/emberian/evdev/compare/1898f49...763ef01)

### Added

- Implement `Device::grab` and `Device::ungrab`
- Implement `VirtualDeviceBuilder::with_switches`.
- Support autorepeats and getting keymap entries.

### Changed

- Update nix to 0.23.

### Fixed

## evdev 0.11.0 (2021-04-01)
[79b6c2b...1898f49](https://github.com/emberian/evdev/compare/79b6c2b...1898f49)