diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b61837c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# Samithay Changelog + +## Unreleased + +## version 0.1.0 (2017-10-01) + +### Protocol handling + +- Low-level handling routines for several wayland globals: + - `wayland::shm` handles `wl_shm` + - `wayland::compositor` handles `wl_compositor` and `wl_subcompositor` + - `wayland::shell` handles `wl_shell` and `xdg_shell` + - `wayland::seat` handles `wl_seat` + - `wayland::output` handles `wl_output` + +### Backend + +- Winit backend (EGL context & input) +- DRM backend +- libinput backend +- glium integration diff --git a/Cargo.toml b/Cargo.toml index 6b228aa..df7ffb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "smithay" version = "0.1.0" -authors = ["Victor Berger "] +authors = ["Victor Berger ", "Drakulix (Victor Brekenfeld)"] license = "MIT" +description = "Smithay is a library for writing wayland compositors." [dependencies] wayland-server = "0.10.2"