0.14: add support for the mode event

This commit is contained in:
Michael Stapelberg 2012-09-22 13:11:08 +02:00
parent 879266c40b
commit b008d8b2e9
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -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,
);