Skip to content

Commit b43b8f6

Browse files
committed
Updated changelog
1 parent 9f267b1 commit b43b8f6

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.5.1] - 2021-12-13
6+
7+
### Added
8+
9+
- Basic gamepad controller support and a new event: `JoyHatMotion`.
10+
- `PixEngineBuider::with_deadzone` which alters the default gamepad axis
11+
deadzone.
12+
- `AppState::on_controller_pressed`, `AppState::on_controller_released`,
13+
`AppState::on_controller_axis_motion`, `AppState::on_controller_update`.
14+
- More supported events: `AudioDeviceAdded`, `AudioDeviceRemoved`,
15+
`WindowEvent::Exposed`, `Key::Kp*` events for Keypad support.
16+
- Warning logs for unsupported events.
17+
18+
### Changed
19+
20+
#### Core
21+
22+
- `PixEngineBuilder::icon` and `WindowBuilder::icon` now take an
23+
`Into<Icon>` parameter that can converted into either a `PathBuf` or an
24+
`Image` which allows loading an icon from a file, or a static or dynamic
25+
image.
26+
27+
#### UI
28+
29+
- Various UI padding now use frame padding instead of item padding.
30+
31+
### Breaking
32+
33+
- Changed `Unknown` event variants to `Unsupported` to better reflect that some
34+
events are known, but are not supported by this library.
35+
536
## [0.5.0] - 2021-11-27
637

738
### Added
@@ -81,7 +112,7 @@ All notable changes to this project will be documented in this file.
81112

82113
### Breaking
83114

84-
### Core
115+
#### Core
85116

86117
- `core` module removed and all included modules moved up a level.
87118
- `PixResult` changed to return `anyhow::Error`, which can include a backtrace

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
name = "pix-engine"
1010
repository = "https://github.com/lukexor/pix-engine.git"
1111
resolver = "2"
12-
version = "0.5.0"
12+
version = "0.5.1"
1313
exclude = ["/images"]
1414

1515
[package.metadata]

0 commit comments

Comments
 (0)