aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2012-09-22 13:11:08 +0200
committerMichael Stapelberg <michael@stapelberg.de>2012-09-22 13:11:08 +0200
commita021ba6875db8cc9cf826a418366bf16be654071 (patch)
tree5907627e986a365cc972116f0502bebabdc80d26
parent9688e0f656801ab51a31c049ea6745773538288c (diff)
downloadi3-AnyEvent-0.14.tar.gz
i3-AnyEvent-0.14.zip
0.14: add support for the mode eventAnyEvent-0.14
-rw-r--r--Changes4
-rw-r--r--lib/AnyEvent/I3.pm5
2 files changed, 7 insertions, 2 deletions
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,
);