Re: [i3] Call for testing for the 4.8 release (2)

2014-06-13 Thread Baptiste Daroussin
Build and run seems ok so far on FreeBSD

2014-06-13 23:21 GMT+02:00 Serge van Ginderachter :
>
> On 13 June 2014 22:52, Serge van Ginderachter 
> wrote:
>>
>> Should we use the raring repo for Ubuntu 14.04 aka. trusty, or is there no
>> option here?
>>
>> (http://build.i3wm.org/ubuntu/ doesn't have trusty mentioned)
>
>
> I got a 'yes' on that on irc. Thanks.
>


Re: [i3] Call for testing for the 4.8 release (2)

2014-06-13 Thread Serge van Ginderachter
On 13 June 2014 22:52, Serge van Ginderachter 
wrote:

> ​Should we use the raring repo for Ubuntu 14.04 aka. trusty, or is there
> no option here?
>
> (http://build.i3wm.org/ubuntu/ doesn't have trusty mentioned)
>

​I got a 'yes' on that on irc. Thanks.​


Re: [i3] Call for testing for the 4.8 release (2)

2014-06-13 Thread Serge van Ginderachter
On 13 June 2014 22:40, Michael Stapelberg  wrote:

> For Debian and Ubuntu, we have http://i3wm.org/docs/repositories.html
>

​Should we use the raring repo for Ubuntu 14.04 aka. trusty, or is there no
option here?

(http://build.i3wm.org/ubuntu/ doesn't have trusty mentioned)


[i3] Call for testing for the 4.8 release (2)

2014-06-13 Thread Michael Stapelberg
Hi everyone,

the old thread got pretty messy, so I’m starting a new one to make sure
I reach everyone.

As announced, I want to release i3 v4.8 soon. The current plan is to
release what we have in the “next” git branch right now in two days,
i.e. on Sunday, 2014-06-15. I’ve just committed a bunch of bugfixes, so
please update and test.

For Debian and Ubuntu, we have http://i3wm.org/docs/repositories.html
with that version so that you don’t need to compile it yourself.

In case you notice a grave problem, please report a bug at
http://bugs.i3wm.org/ as usual.

-- 
Best regards,
Michael


Re: [i3] Call for testing for the 4.8 release

2014-06-12 Thread Marcus Crestani
>"MS" == Michael Stapelberg  writes:
MS> Thanks. Next time, can you submit it to http://cr.i3wm.org/ directly
MS> please?

Sure, sorry for the inconvenience.

-- 
Marcus


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Michael Stapelberg
Hi Marcus,

Marcus Crestani  writes:
> I've attached a patch that moves the __APPLE__ specific include of
> sysctl.h below the include of i3.h.  This way, the compiler considers
> the redefinitions to come from a system header and does not show the
> warnings.  Also, types.h is no longer needed on OS X.
Thanks. Next time, can you submit it to http://cr.i3wm.org/ directly
please?

-- 
Best regards,
Michael


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Marcus Crestani
>"MS" == Michael Stapelberg  writes:
MS> I want to release i3 v4.8 soon, so here is a call for testing.

On OS X, I see a ton of "macro redefined" warnings when compiling
src/log.c.  The redefinitions are caused by include/queue.h that exists
as a system header /usr/include/sys/queue.h on OS X.

I've attached a patch that moves the __APPLE__ specific include of
sysctl.h below the include of i3.h.  This way, the compiler considers
the redefinitions to come from a system header and does not show the
warnings.  Also, types.h is no longer needed on OS X.

With this patch i3 builds cleanly and works fine for me.

-- 
Marcus

>From 349d7b2d1b603ce1ea54e275776505bd2a980e16 Mon Sep 17 00:00:00 2001
From: Marcus Crestani 
Date: Wed, 11 Jun 2014 20:53:22 +0200
Subject: [PATCH] Include sys/sysctl.h after i3.h to prevent redefinition warnings caused by queue.h on OS X.

---
 src/log.c |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/log.c b/src/log.c
index ec44f3a..1014908 100644
--- a/src/log.c
+++ b/src/log.c
@@ -21,10 +21,6 @@
 #include 
 #include 
 #include 
-#if defined(__APPLE__)
-#include 
-#include 
-#endif
 
 #include "util.h"
 #include "log.h"
@@ -32,6 +28,10 @@
 #include "libi3.h"
 #include "shmlog.h"
 
+#if defined(__APPLE__)
+#include 
+#endif
+
 static bool debug_logging = false;
 static bool verbose = false;
 static FILE *errorfile;
-- 
1.6.4.2



Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Anders Aagaard
Guess it isn't a regression then. A bit surprising for me, I've been
using i3 for ages and I've never seen the issue before. Now it's
popped up more than once in the last few days.

On Wed, Jun 11, 2014 at 5:00 PM, Lewis Gunsch  wrote:
> On Wed, Jun 11, 2014 at 2:30 AM,  wrote:
>>
>>
>>
>> Le 11.06.2014 09:29, Anders Aagaard a écrit :
>>
>>> Java focus issues isn't what I originally reported though. Me typing
>>> stuff and it ending up in a different (non Java) window is definitely
>>> a regression.
>>
>>
>> I agree that this is not a Java problem, but I do not agree that it is a
>> regression. I had the problem few days ago, with the version which can be
>> found in Debian backports ( 4.7.2 ). I did not reported it because I am
>> unable to reproduce it, and does not have internet at home (I'm currently at
>> work).
>
>
> I have had this problem on other programs then Intellij. I have regularly
> encountered this issue in the Conkeror web browser. I focus a window, but
> the typing ends up in some other window in the same workspace. Usually, this
> means another Conkeror window since the workspace is devoted to it. No
> amount of refocusing seems to solve it, but I've also never tried to switch
> workspaces. However, I have had this problem for well over 6 months now. So,
> I would agree that it is not a regression.
>
> Cheers,
> ~Lewis
>



-- 
Mvh
Anders Aagaard


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread avinash r
Can anyone tell me how to repeat this, I usually have windows popping in
and out every now and then, and use IntelliJ idea for development work. So
I'd like to look into this too.
On Jun 11, 2014 8:31 PM, "Lewis Gunsch"  wrote:

> On Wed, Jun 11, 2014 at 2:30 AM,  wrote:
>
>>
>>
>> Le 11.06.2014 09:29, Anders Aagaard a écrit :
>>
>>  Java focus issues isn't what I originally reported though. Me typing
>>> stuff and it ending up in a different (non Java) window is definitely
>>> a regression.
>>>
>>
>> I agree that this is not a Java problem, but I do not agree that it is a
>> regression. I had the problem few days ago, with the version which can be
>> found in Debian backports ( 4.7.2 ). I did not reported it because I am
>> unable to reproduce it, and does not have internet at home (I'm currently
>> at work).
>>
>
> I have had this problem on other programs then Intellij. I have regularly
> encountered this issue in the Conkeror web browser. I focus a window, but
> the typing ends up in some other window in the same workspace. Usually,
> this means another Conkeror window since the workspace is devoted to it. No
> amount of refocusing seems to solve it, but I've also never tried to switch
> workspaces. However, I have had this problem for well over 6 months now.
> So, I would agree that it is not a regression.
>
> Cheers,
> ~Lewis
>
>


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Lewis Gunsch
On Wed, Jun 11, 2014 at 2:30 AM,  wrote:

>
>
> Le 11.06.2014 09:29, Anders Aagaard a écrit :
>
>  Java focus issues isn't what I originally reported though. Me typing
>> stuff and it ending up in a different (non Java) window is definitely
>> a regression.
>>
>
> I agree that this is not a Java problem, but I do not agree that it is a
> regression. I had the problem few days ago, with the version which can be
> found in Debian backports ( 4.7.2 ). I did not reported it because I am
> unable to reproduce it, and does not have internet at home (I'm currently
> at work).
>

I have had this problem on other programs then Intellij. I have regularly
encountered this issue in the Conkeror web browser. I focus a window, but
the typing ends up in some other window in the same workspace. Usually,
this means another Conkeror window since the workspace is devoted to it. No
amount of refocusing seems to solve it, but I've also never tried to switch
workspaces. However, I have had this problem for well over 6 months now.
So, I would agree that it is not a regression.

Cheers,
~Lewis


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread berenger . morel



Le 11.06.2014 09:29, Anders Aagaard a écrit :

Java focus issues isn't what I originally reported though. Me typing
stuff and it ending up in a different (non Java) window is definitely
a regression.


I agree that this is not a Java problem, but I do not agree that it is 
a regression. I had the problem few days ago, with the version which can 
be found in Debian backports ( 4.7.2 ). I did not reported it because I 
am unable to reproduce it, and does not have internet at home (I'm 
currently at work).


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Michael Stapelberg
Hi Anders,

Anders Aagaard  writes:
> Java focus issues isn't what I originally reported though. Me typing stuff
> and it ending up in a different (non Java) window is definitely a
> regression.
You were mentioning IntelliJ as one of the windows, and IntelliJ is
written in Java. Not sure how this is not java-related.

In any case, try upgrading to the latest commit
(8ece9950012e0a2d20db9d4d15bc3a3e30b96121 at the time of writing), that
may fix the issue(s).

-- 
Best regards,
Michael


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Anders Aagaard
Java focus issues isn't what I originally reported though. Me typing stuff
and it ending up in a different (non Java) window is definitely a
regression.
On Jun 11, 2014 9:22 AM, "Michael Stapelberg"  wrote:

> Hi,
>
> Marius Muja  writes:
> > I can confirm a focusing issue with intellij. I can reproduce it by doing
> > Navigate -> Line and when the editor jumps to some line I cannot type in
> > although the window has focus. If I move the focus out and back in the
> > cursor appears and I can type.
> We've been having issues with java for as long as the project
> lives. These are not new problems and hence not blocking the upcoming
> release.
>
> Thanks to everyone for testing, please update and continue testing so
> that we can release (this weekend probably) :).
>
> --
> Best regards,
> Michael
>


Re: [i3] Call for testing for the 4.8 release

2014-06-11 Thread Michael Stapelberg
Hi,

Marius Muja  writes:
> I can confirm a focusing issue with intellij. I can reproduce it by doing
> Navigate -> Line and when the editor jumps to some line I cannot type in
> although the window has focus. If I move the focus out and back in the
> cursor appears and I can type.
We’ve been having issues with java for as long as the project
lives. These are not new problems and hence not blocking the upcoming
release.

Thanks to everyone for testing, please update and continue testing so
that we can release (this weekend probably) :).

-- 
Best regards,
Michael


Re: [i3] Call for testing for the 4.8 release

2014-06-10 Thread Tony Crisci

I can reproduce this easily with `focus_follows_mouse` when switching focus
with pointer enter, but not at all with keyboard focus.

There is a similar issue on the stable branch, except that focus does not
change at all on pointer enter, so i3 remains in sync. This suggests the
underlying cause is with `focus_follows_mouse`.

On 06/10/2014 02:58 AM, Anders Aagaard wrote:

I just noticed one issue now, this is from 7482a0f which I've been
using for about a week. I had focus in one window (and the window is
active), however when I type it ends up in another window.

Unfortunately I jumped in and out of windows trying to figure out what
was going on. The problem I saw was the jetbrains/intellij window had
focus, I typed and it ended up in gnome-terminal. Switching to another
workspace and back seemed to fix it, and the last few characters typed
ended up in the correct window.

So the problem is from this log, before switching workspace to 2 and
then back to 1 again.

https://dl.dropboxusercontent.com/u/18745774/i3-focus-issue.log

On Tue, Jun 10, 2014 at 12:19 AM, Marcin Herda  wrote:

Hi,

I have been using it for the last month or so without any problems
(including saving and restoring layouts http://www.slackword.net/?p=733)

Thank you.

regards
Marcin



Hi,

I want to release i3 v4.8 soon, so here is a call for testing. If you
haven't, please use an i3 build from the "next" git branch. For Debian
and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
version so that you don't need to compile it yourself.

In case you notice a grave problem, please report a bug at
http://bugs.i3wm.org/ as usual.

If nothing shows up, I'll make a release within the next few days.

(FYI: This also means only urgent bugfix patches will be merged until
   the release is done.)

--
Best regards,
Michael









Re: [i3] Call for testing for the 4.8 release

2014-06-10 Thread Marius Muja
I can confirm a focusing issue with intellij. I can reproduce it by doing
Navigate -> Line and when the editor jumps to some line I cannot type in
although the window has focus. If I move the focus out and back in the
cursor appears and I can type.


On Mon, Jun 9, 2014 at 11:58 PM, Anders Aagaard  wrote:

> I just noticed one issue now, this is from 7482a0f which I've been
> using for about a week. I had focus in one window (and the window is
> active), however when I type it ends up in another window.
>
> Unfortunately I jumped in and out of windows trying to figure out what
> was going on. The problem I saw was the jetbrains/intellij window had
> focus, I typed and it ended up in gnome-terminal. Switching to another
> workspace and back seemed to fix it, and the last few characters typed
> ended up in the correct window.
>
> So the problem is from this log, before switching workspace to 2 and
> then back to 1 again.
>
> https://dl.dropboxusercontent.com/u/18745774/i3-focus-issue.log
>
> On Tue, Jun 10, 2014 at 12:19 AM, Marcin Herda  wrote:
> > Hi,
> >
> > I have been using it for the last month or so without any problems
> > (including saving and restoring layouts http://www.slackword.net/?p=733)
> >
> > Thank you.
> >
> > regards
> > Marcin
> >
> >
> >>> Hi,
> >>>
> >>> I want to release i3 v4.8 soon, so here is a call for testing. If you
> >>> haven't, please use an i3 build from the "next" git branch. For Debian
> >>> and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
> >>> version so that you don't need to compile it yourself.
> >>>
> >>> In case you notice a grave problem, please report a bug at
> >>> http://bugs.i3wm.org/ as usual.
> >>>
> >>> If nothing shows up, I'll make a release within the next few days.
> >>>
> >>> (FYI: This also means only urgent bugfix patches will be merged until
> >>>   the release is done.)
> >>>
> >>> --
> >>> Best regards,
> >>> Michael
> >
> >
>
>
>
> --
> Mvh
> Anders Aagaard
>


Re: [i3] Call for testing for the 4.8 release

2014-06-09 Thread Anders Aagaard
I just noticed one issue now, this is from 7482a0f which I've been
using for about a week. I had focus in one window (and the window is
active), however when I type it ends up in another window.

Unfortunately I jumped in and out of windows trying to figure out what
was going on. The problem I saw was the jetbrains/intellij window had
focus, I typed and it ended up in gnome-terminal. Switching to another
workspace and back seemed to fix it, and the last few characters typed
ended up in the correct window.

So the problem is from this log, before switching workspace to 2 and
then back to 1 again.

https://dl.dropboxusercontent.com/u/18745774/i3-focus-issue.log

On Tue, Jun 10, 2014 at 12:19 AM, Marcin Herda  wrote:
> Hi,
>
> I have been using it for the last month or so without any problems
> (including saving and restoring layouts http://www.slackword.net/?p=733)
>
> Thank you.
>
> regards
> Marcin
>
>
>>> Hi,
>>>
>>> I want to release i3 v4.8 soon, so here is a call for testing. If you
>>> haven't, please use an i3 build from the "next" git branch. For Debian
>>> and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
>>> version so that you don't need to compile it yourself.
>>>
>>> In case you notice a grave problem, please report a bug at
>>> http://bugs.i3wm.org/ as usual.
>>>
>>> If nothing shows up, I'll make a release within the next few days.
>>>
>>> (FYI: This also means only urgent bugfix patches will be merged until
>>>   the release is done.)
>>>
>>> --
>>> Best regards,
>>> Michael
>
>



-- 
Mvh
Anders Aagaard


Re: [i3] Call for testing for the 4.8 release

2014-06-09 Thread Marcin Herda

Hi,

I have been using it for the last month or so without any problems 
(including saving and restoring layouts http://www.slackword.net/?p=733)


Thank you.

regards
Marcin


Hi,

I want to release i3 v4.8 soon, so here is a call for testing. If you
haven’t, please use an i3 build from the “next” git branch. For Debian
and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
version so that you don’t need to compile it yourself.

In case you notice a grave problem, please report a bug at
http://bugs.i3wm.org/ as usual.

If nothing shows up, I’ll make a release within the next few days.

(FYI: This also means only urgent bugfix patches will be merged until
  the release is done.)

--
Best regards,
Michael




Re: [i3] Call for testing for the 4.8 release

2014-06-09 Thread Wael Nasreddine

I have been using it since last week, no problems so far..

Thanks,

Wael

Michael Stapelberg  writes:

> Hi,
>
> I want to release i3 v4.8 soon, so here is a call for testing. If you
> haven’t, please use an i3 build from the “next” git branch. For Debian
> and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
> version so that you don’t need to compile it yourself.
>
> In case you notice a grave problem, please report a bug at
> http://bugs.i3wm.org/ as usual.
>
> If nothing shows up, I’ll make a release within the next few days.
>
> (FYI: This also means only urgent bugfix patches will be merged until
>  the release is done.)
>
> -- 
> Best regards,
> Michael
-- 
Wael Nasreddine | SRE at Google | wael.nasredd...@gmail.com | (650) 735-1773


Re: [i3] Call for testing for the 4.8 release

2014-06-09 Thread Michael Stapelberg
Hi berenger,

berenger.mo...@neutralite.org writes:
> Just to be sure, is the version 4.7.3-1+g4.7.2-189-g6fe44d81 the 
> version you speak about? Just wanted to be sure, since unlike for Ubuntu 
> there is only one repo.
That’s exactly the one, yeah.

-- 
Best regards,
Michael


Re: [i3] Call for testing for the 4.8 release

2014-06-09 Thread berenger . morel



Le 09.06.2014 12:14, Michael Stapelberg a écrit :

Hi,

I want to release i3 v4.8 soon, so here is a call for testing. If you
haven’t, please use an i3 build from the “next” git branch. For 
Debian

and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
version so that you don’t need to compile it yourself.

In case you notice a grave problem, please report a bug at
http://bugs.i3wm.org/ as usual.

If nothing shows up, I’ll make a release within the next few days.

(FYI: This also means only urgent bugfix patches will be merged until
 the release is done.)


Hi.

Just to be sure, is the version 4.7.3-1+g4.7.2-189-g6fe44d81 the 
version you speak about? Just wanted to be sure, since unlike for Ubuntu 
there is only one repo.
Anyway, I'll test it asap, so now let's browse the changelog to try to 
use the new features :)


PS: thanks for your work.


[i3] Call for testing for the 4.8 release

2014-06-09 Thread Michael Stapelberg
Hi,

I want to release i3 v4.8 soon, so here is a call for testing. If you
haven’t, please use an i3 build from the “next” git branch. For Debian
and Ubuntu, we have http://i3wm.org/docs/repositories.html with that
version so that you don’t need to compile it yourself.

In case you notice a grave problem, please report a bug at
http://bugs.i3wm.org/ as usual.

If nothing shows up, I’ll make a release within the next few days.

(FYI: This also means only urgent bugfix patches will be merged until
 the release is done.)

-- 
Best regards,
Michael