mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
Merge branch 'releases/1.5' into master
This commit is contained in:
commit
8b06a55cb0
4 changed files with 20 additions and 9 deletions
|
|
@ -1,6 +1,7 @@
|
|||
# Changelog
|
||||
|
||||
* [Unreleased](#Unreleased)
|
||||
* [1.5.2](#1-5-2)
|
||||
* [1.5.1](#1-5-1)
|
||||
* [1.5.0](#1-5-0)
|
||||
* [1.4.4](#1-4-4)
|
||||
|
|
@ -50,6 +51,14 @@
|
|||
### Contributors
|
||||
|
||||
|
||||
## 1.5.2
|
||||
|
||||
### Fixed
|
||||
|
||||
* Regression: middle clicking double pastes in e.g. vim
|
||||
(https://codeberg.org/dnkl/foot/issues/168)
|
||||
|
||||
|
||||
## 1.5.1
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
2
PKGBUILD
2
PKGBUILD
|
|
@ -1,5 +1,5 @@
|
|||
pkgname=('foot-git' 'foot-terminfo-git')
|
||||
pkgver=1.5.1
|
||||
pkgver=1.5.2
|
||||
pkgrel=1
|
||||
arch=('x86_64' 'aarch64')
|
||||
url=https://codeberg.org/dnkl/foot
|
||||
|
|
|
|||
16
input.c
16
input.c
|
|
@ -1625,13 +1625,15 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer,
|
|||
}
|
||||
}
|
||||
|
||||
if (!term_mouse_grabbed(term, seat) &&
|
||||
cursor_is_on_grid)
|
||||
{
|
||||
term_mouse_down(
|
||||
term, button, seat->mouse.row, seat->mouse.col,
|
||||
seat->kbd.shift, seat->kbd.alt, seat->kbd.ctrl);
|
||||
}
|
||||
}
|
||||
|
||||
if (!seat->mouse.consumed &&
|
||||
!term_mouse_grabbed(term, seat) &&
|
||||
cursor_is_on_grid)
|
||||
{
|
||||
term_mouse_down(
|
||||
term, button, seat->mouse.row, seat->mouse.col,
|
||||
seat->kbd.shift, seat->kbd.alt, seat->kbd.ctrl);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
project('foot', 'c',
|
||||
version: '1.5.1',
|
||||
version: '1.5.2',
|
||||
license: 'MIT',
|
||||
meson_version: '>=0.53.0',
|
||||
default_options: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue