]> git.sur5r.net Git - i3/i3/commitdiff
0.14: add support for the mode event
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 22 Sep 2012 11:11:08 +0000 (13:11 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 19 Aug 2017 16:13:19 +0000 (18:13 +0200)
Changes
lib/AnyEvent/I3.pm

diff --git a/Changes b/Changes
index 5915a90d855f7079a07d0ae5b98633606fc53b32..0a62838b3103f83f4ad9b630bf3467c00afe08b0 100644 (file)
--- 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
index 5254e22dd169adbc7e1b19bc57d307c75b22e3c5..b0bf2a0971d55485b4af7358c301daed8f814c4e 100644 (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,
 );