0.14: add support for the mode event
This commit is contained in:
parent
879266c40b
commit
b008d8b2e9
4
Changes
4
Changes
|
@ -1,5 +1,9 @@
|
||||||
Revision history for AnyEvent-I3
|
Revision history for AnyEvent-I3
|
||||||
|
|
||||||
|
0.14 2012-09-22
|
||||||
|
|
||||||
|
* support the mode event
|
||||||
|
|
||||||
0.13 2012-08-05
|
0.13 2012-08-05
|
||||||
|
|
||||||
* support the GET_VERSION request with a fall-back to i3 --version
|
* support the GET_VERSION request with a fall-back to i3 --version
|
||||||
|
|
|
@ -16,11 +16,11 @@ AnyEvent::I3 - communicate with the i3 window manager
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
our $VERSION = '0.13';
|
our $VERSION = '0.14';
|
||||||
|
|
||||||
=head1 VERSION
|
=head1 VERSION
|
||||||
|
|
||||||
Version 0.13
|
Version 0.14
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
|
@ -110,6 +110,7 @@ my $event_mask = (1 << 31);
|
||||||
my %events = (
|
my %events = (
|
||||||
workspace => ($event_mask | 0),
|
workspace => ($event_mask | 0),
|
||||||
output => ($event_mask | 1),
|
output => ($event_mask | 1),
|
||||||
|
mode => ($event_mask | 2),
|
||||||
_error => 0xFFFFFFFF,
|
_error => 0xFFFFFFFF,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue