From: Michael Stapelberg Date: Sat, 22 Sep 2012 11:11:08 +0000 (+0200) Subject: 0.14: add support for the mode event X-Git-Tag: AnyEvent-0.14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a021ba6875db8cc9cf826a418366bf16be654071;p=i3%2Fi3 0.14: add support for the mode event --- diff --git a/Changes b/Changes index 5915a90d..0a62838b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for AnyEvent-I3 +0.14 2012-09-22 + + * support the mode event + 0.13 2012-08-05 * support the GET_VERSION request with a fall-back to i3 --version diff --git a/lib/AnyEvent/I3.pm b/lib/AnyEvent/I3.pm index 5254e22d..b0bf2a09 100644 --- a/lib/AnyEvent/I3.pm +++ b/lib/AnyEvent/I3.pm @@ -16,11 +16,11 @@ AnyEvent::I3 - communicate with the i3 window manager =cut -our $VERSION = '0.13'; +our $VERSION = '0.14'; =head1 VERSION -Version 0.13 +Version 0.14 =head1 SYNOPSIS @@ -110,6 +110,7 @@ my $event_mask = (1 << 31); my %events = ( workspace => ($event_mask | 0), output => ($event_mask | 1), + mode => ($event_mask | 2), _error => 0xFFFFFFFF, );