awesome | 1 Sep 2008 01:01
Favicon

[awesome bugs] #295 - taglist_squares (unfocused) not shown when...

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

A new Flyspray task has been opened.  Details are below. 

User who did this - calmar (calmar) 

Attached to Project - awesome
Summary - taglist_squares  (unfocused) not shown when...
Task Type - Bug Report
Category - Core
Status - New
Assigned To - 
Operating System - All
Severity - Low
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - taglist_squares (unfocused (not filled) ones ) are shown only, if 
fg_urgent and bg_urgent are both set to a color. Did that in my theme file.

Didn't (can't) track that further down.

(The filled one is about always correctly shown).

v3.0-rc5-12-g3e13545

not shown because uncommented: http://www.calmar.ws/tmp/138-Mon-screen.png
shown correctly: http://www.calmar.ws/tmp/139-Mon-screen.png

(Continue reading)

Julien Danjou | 1 Sep 2008 10:29
Gravatar

Re: systraq icons with kde4 apps.

At 1220223086 time_t, Joe Skinner wrote:
> Has anyone had any success with having these display. I get a blank space with 
> awesome compiled from git head last weekend.

Known. Bug somewhere between QT4 systray icons and awesome.
No clue how, where or why.

Someone should take a look.

Cheers,
--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
Julien Danjou | 1 Sep 2008 10:42
Gravatar

Re: [patch] fix to avoid crush on error while parsing markup in tasklist widget

At 1220193299 time_t, Konstantin wrote:
> Yes, it does. But the resulting string looks a little strange.
> Can't show it now, unfortunately, 'coz I upgraded Vim from 7.1
> to 7.2 with some options tuning, so it uses window name in
> UTF8_STRING and so works with Awesome normally.
>
> I'm not very familiar with COMPOUND_TEXT format, but what I say
> was something like this:
>
> <cntrl_seq1>koi8-r<cntrl_seq2>word1 <cntrl_seq1>koi8-r<cntrl_seq2>word2 ...
>
> And it was encoded from koi8-r to utf8 by awesome normally,
> as far as I can judge, b/c all words were in readable russian and
> locale was surely ru_RU.KOI8-R.

Indeed, I did some test and we cannot just get COMPOUND_TEXT as it is.
AFAIK, it can be and should be converted to UTF8_STRING by the X server.

Since we're in 2008 and everyone should use UTF-8, I won't lose my time
digging into it further. :)

Anyway, patch welcome.

Cheers,
--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
Julien Danjou | 1 Sep 2008 10:47
Gravatar

Re: [PATCH] Add two new layouts: 'fairh' and 'fairv'

At 1220167964 time_t, Gwenhael Le Moine wrote:
> Indeed ^_^ (yet I'm almost sure to have attached it... strangeness
> strikes in unexpected places sometimes...)
> 
> So, here it is (again)

This patch is not acceptable as it is.
You duplicate too much code between fairv.c and fairh.c. I think you can
use a similar system than tile.c and use only one fonction with an extra
arg.

> I also attach the icons. The diff file does contains "stuff" (GIT
> binary patch) about it but when I checked and applied the patch to test,
> the icons were not created... I must confess my ignorance in this
> matter, maybe it needs some special applied-by-git way of patching or
> something (oh, and the icons are the same for fairh and fairv, because
> right now I don't find a graphical way to differentiate the two)

Please: read PATCHES.
You need to commit and then use format-patch. That would really ease my
life.

Cheers,
--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
awesome | 1 Sep 2008 10:50
Favicon

[awesome bugs] #295 - taglist_squares (unfocused) not shown when...

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task is now closed:

FS#295 - taglist_squares  (unfocused) not shown when...
User who did this - Julien Danjou (jd)

Reason for closing: Fixed
Additional comments about closing: commit fb33e85f3178362c1bd6334ead01861200d9354f
Author: Julien Danjou <julien <at> danjou.info>
Date:   Mon Sep 1 10:49:30 2008 +0200

    awful: one of fg or bg urgent is enough

    Signed-off-by: Julien Danjou <julien <at> danjou.info>

More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=295

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

--

-- 
To unsubscribe, send mail to awesome-devel-unsubscribe <at> naquadah.org.

Julien Danjou | 1 Sep 2008 17:56
Gravatar

Re: systraq icons with kde4 apps.

At 1220257752 time_t, Julien Danjou wrote:
> Known. Bug somewhere between QT4 systray icons and awesome.
> No clue how, where or why.

In fact, pidgin and QT4 icons wants to be reparented.
I fixed that in current HEAD but that was a pretty heavy fix.

Feebacks welcome.

Cheers,
--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
Gwenhael Le Moine | 1 Sep 2008 18:37
Picon
Gravatar

[PATCH] Add two new layouts: 'fairhorizontal' and 'fairvertical'

 These layouts tries to allocate the space "fairly" between (tiled)
 clients, giving an equal surface to each. 'fairhorizontal' add new clients
 horizontally, creating new rows as necessary; 'fairvertical' add new clients
 vertically, creating new columns as necessary.
 Based on a original idea of Nathan Huesken.
 Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine <at> gmail.com>

---
 CMakeLists.txt                    |    1 +
 awesomerc.lua.in                  |    4 +-
 common/util.h                     |    9 ++-
 icons/layouts/fairhorizontal.png  |  Bin 0 -> 385 bytes
 icons/layouts/fairhorizontalw.png |  Bin 0 -> 386 bytes
 icons/layouts/fairvertical.png    |  Bin 0 -> 391 bytes
 icons/layouts/fairverticalw.png   |  Bin 0 -> 396 bytes
 layouts/fair.c                    |  128 +++++++++++++++++++++++++++++++++++++
 layouts/fair.h                    |   31 +++++++++
 tag.c                             |    1 +
 10 files changed, 172 insertions(+), 2 deletions(-)
 create mode 100644 icons/layouts/fairhorizontal.png
 create mode 100644 icons/layouts/fairhorizontalw.png
 create mode 100644 icons/layouts/fairvertical.png
 create mode 100644 icons/layouts/fairverticalw.png
 create mode 100644 layouts/fair.c
 create mode 100644 layouts/fair.h

diff --git a/CMakeLists.txt b/CMakeLists.txt
index d6c1fc8..2663f9a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
(Continue reading)

Julien Danjou | 2 Sep 2008 11:31
Gravatar

Re: [PATCH] Add two new layouts: 'fairhorizontal' and 'fairvertical'

At 1220287072 time_t, Gwenhael Le Moine wrote:
>  These layouts tries to allocate the space "fairly" between (tiled)
>  clients, giving an equal surface to each. 'fairhorizontal' add new clients
>  horizontally, creating new rows as necessary; 'fairvertical' add new clients
>  vertically, creating new columns as necessary.
>  Based on a original idea of Nathan Huesken.
>  Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine <at> gmail.com>

Ah, now we're talking seriously! That's good guy.

It's perfect for me, but I still think there's a little bug.
You don't count border size when computing new x,y coordinates, so
client's borders are overlapping.

Cheers,
--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
awesome | 2 Sep 2008 16:14
Favicon

[awesome bugs] #296 - Restarting awesome cause client to die

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

A new Flyspray task has been opened.  Details are below. 

User who did this - Kanru Chen (kanru) 

Attached to Project - awesome
Summary - Restarting awesome cause client to die
Task Type - Bug Report
Category - Core
Status - Unconfirmed
Assigned To - 
Operating System - All
Severity - High
Priority - Normal
Reported Version - git/master
Due in Version - Undecided
Due Date - Undecided
Details - commit 7b00a2baf010a45757bd96e2036bba54e100b521

this commit introduced reparent systray window. Pidgin and skype may works fine, but other clients like
xchat dies when restart awesome.

More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=296

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

(Continue reading)

awesome | 2 Sep 2008 17:12
Favicon

[awesome bugs] #296 - Restarting awesome cause client to die

THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task is now closed:

FS#296 - Restarting awesome cause client to die
User who did this - Julien Danjou (jd)

Reason for closing: Fixed
Additional comments about closing: commit 11dfa832a82dffef3487695d2accf62ff69f096f
Author: Julien Danjou <julien <at> danjou.info>
Date:   Tue Sep 2 17:12:10 2008 +0200

    factorize quit/exec elements, and reparent systray

    That fixes FS#296.

    Signed-off-by: Julien Danjou <julien <at> danjou.info>

More information can be found at the following URL:
http://awesome.naquadah.org/bugs/index.php?do=details&task_id=296

You are receiving this message because you have requested it from the Flyspray bugtracking system.  If you
did not expect this message or don't want to receive mails in future, you can change your notification
settings at the URL shown above.

--

-- 
To unsubscribe, send mail to awesome-devel-unsubscribe <at> naquadah.org.


Gmane