diff options
-rw-r--r-- | CONTRIBUTING.md | 2 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | dist/archlinux/PKGBUILD | 4 | ||||
-rw-r--r-- | types/wlr_keyboard.c | 2 |
4 files changed, 8 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 242c8bd4..74c0746c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,7 +13,7 @@ upstream. Try this: 1. Fork wlroots 2. `git clone https://github.com/username/wlroots && cd wlroots` -3. `git remote add upstream https://github.com/SirCmpwn/wlroots` +3. `git remote add upstream https://github.com/swaywm/wlroots` You only need to do this once. You're never going to use your fork's master branch. Instead, when you start working on a feature, do this: @@ -1,13 +1,13 @@ -# wlroots [![](https://api.travis-ci.org/SirCmpwn/wlroots.svg)](https://travis-ci.org/SirCmpwn/wlroots) +# wlroots [![](https://api.travis-ci.org/swaywm/wlroots.svg)](https://travis-ci.org/swaywm/wlroots) Pluggable, composable modules for building a [Wayland](http://wayland.freedesktop.org/) compositor. -This is a WIP: [status](https://github.com/SirCmpwn/wlroots/issues/9) +This is a WIP: [status](https://github.com/swaywm/wlroots/issues/9) ## Contributing -See [CONTRIBUTING.md](https://github.com/SirCmpwn/wlroots/blob/master/CONTRIBUTING.md) +See [CONTRIBUTING.md](https://github.com/swaywm/wlroots/blob/master/CONTRIBUTING.md) ## Building diff --git a/dist/archlinux/PKGBUILD b/dist/archlinux/PKGBUILD index a65fc7ff..68f174f9 100644 --- a/dist/archlinux/PKGBUILD +++ b/dist/archlinux/PKGBUILD @@ -16,8 +16,8 @@ depends=( "libxcb" ) arch=("x86_64") -url="https://github.com/SirCmpwn/wlroots" -source=("${pkgname}::git+https://github.com/SirCmpwn/wlroots.git") +url="https://github.com/swaywm/wlroots" +source=("${pkgname}::git+https://github.com/swaywm/wlroots.git") sha1sums=('SKIP') provides=('wlroots') conflicts=('wlroots') diff --git a/types/wlr_keyboard.c b/types/wlr_keyboard.c index f51ea8c4..5dbcf064 100644 --- a/types/wlr_keyboard.c +++ b/types/wlr_keyboard.c @@ -69,6 +69,8 @@ void wlr_keyboard_destroy(struct wlr_keyboard *kb) { } else { wl_list_remove(&kb->events.key.listener_list); } + xkb_state_unref(kb->xkb_state); + xkb_map_unref(kb->keymap); close(kb->keymap_fd); free(kb); } |