Version 0.1.0

This commit is contained in:
Victor Berger 2017-10-01 22:57:02 +02:00
parent 8ee08ef6f2
commit dca932bbd3
No known key found for this signature in database
GPG Key ID: 5866DDBC86BE4680
2 changed files with 23 additions and 1 deletions

21
CHANGELOG.md Normal file
View File

@ -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

View File

@ -1,8 +1,9 @@
[package] [package]
name = "smithay" name = "smithay"
version = "0.1.0" version = "0.1.0"
authors = ["Victor Berger <victor.berger@thalesgroup.com>"] authors = ["Victor Berger <victor.berger@m4x.org>", "Drakulix (Victor Brekenfeld)"]
license = "MIT" license = "MIT"
description = "Smithay is a library for writing wayland compositors."
[dependencies] [dependencies]
wayland-server = "0.10.2" wayland-server = "0.10.2"