=== rickspencer3 is now known as rickspencer3-afk === jono_ is now known as jono [04:57] hyperair@ipwn:~$ ps -C notify-osd -o rsz=,command= [04:57] 194248 /usr/lib/notify-osd/notify-osd [04:57] win! [04:57] 194M of memory for a notification daemon that shows pretty notifications. [04:58] someone please tell me what about this is not right? [04:58] * hyperair kills notify-osd [04:59] hyperair: 16m here [04:59] well yeah. that's how it is when it starts [05:00] leave it a while and you get something like this [05:01] oh 194. I saw 19. [05:01] I was like "what's the big deal" [07:06] notify-osd uses 3m here ;) [08:24] DanRabbit: ping === mpt_ is now known as mpt [09:23] DBO, trying your branch now [09:24] DBO, the conditional cairo_destroy()s are embarrassing [09:25] DBO, no idea under by which drugs I was influenced there [13:35] * MacSlow -> lunch === MacSlow is now known as MacSlow|lunch [14:29] I can't find any documentation for python-indicate or information on the API changes between 0.1 and 0.2. Do they exist at all? [14:31] qense: There isn't a migration guide or anything. [14:31] ok [14:31] qense: The big thing that isn't is that there isn't an IndicateIndicatorMessage [14:31] object [14:31] ok [14:32] There are some new properties that are recognized, and they're all listed in the spec: https://wiki.ubuntu.com/MessagingMenu [14:33] That page will be a tremendous help. Thanks! === MacSlow|lunch is now known as MacSlow [14:40] MacSlow, got me emails? === chaotic_ is now known as chaotic [14:41] DBO, yes [14:41] did you check out me findings about the stack [14:41] did some tests [14:42] there's no difference between your branch and trunk yet [14:43] did two type of test [14:43] no the changes I made are correctness [14:43] you are supposed to free those windwos, and the conditional freeing was odd but not freeing a nil i snot required [14:43] 100 notifications with a pause of 12 secs [14:44] yeah? [14:45] and 50 notifications without pause... wait 600 secs to let queue empty and another 50 [14:45] yeah? [14:46] leak-footprint is nearly identical [14:46] are you using valgrind? [14:46] 3.0 MBytes with 12 secs pauses [14:46] 26 MBytes with the 50 & 50 test [14:46] not yet [14:46] under valgrind [14:47] i am not seeing any leaks when I just run the damn thing and send notifications [14:47] I ran into a nasty unrelated bug on my nvidia-box with notify-osd and dual-LCD [14:47] but seen these leaks in e.g. pango_cairo_show_layout() [14:48] i dont believe those to be the leaks... [14:48] it just doesn't seem to add up [14:48] and I know valgrind to be imperfect [14:49] I think those were listed as "still reachable" [14:49] nasty nevertheless [14:50] yeah [15:02] MacSlow, for whatever reason I still only get the memory leak when I hit the stack [15:04] MacSlow, I dont think 12 seconds is enough maybe [15:04] I am going every 30 seconds [15:05] 12 shoudlbe enough... an async. bubble is on-screen for 10 sec + 700ms (fade-in and out) [15:06] DBO, so the queue should always carry one notification max at any time [15:06] DBO, use... [15:07] index=1; while (($index<=100)); do notify-send "The Band" "Some Song ($index)" -i totem; echo Spawned bubble $index; sleep 30; index=$((index+1)); done [15:07] i am just trying to watch memory usage with some break points added in "Press enter to continue" kind of breakpoints to bisect down when the memory leak comes in [15:08] im seriously still seeing that memory leak only hits hard once we get queued up [15:08] there is a minor leak for every new icon displayed [15:08] but its like 12 bytes [15:08] there are a lot of small leaks like that in glib/gtk+ [15:09] DBO, I'm on a conf-call atm... so I'm not really fully following here [15:09] oh okay [15:13] MacSlow, when you can, walk me through how the queuing is done [15:13] its a bit dense [15:14] after the call [15:14] sure [15:54] * DBO looks at MacSlow [15:55] still on the call :( [15:55] DBO, just closed [15:55] DBO, ok... let's turn to class Stack [15:55] okay so lets talk the queue, which looks to be stack.c no [15:55] oh first let me say this [15:55] I just confirmed with another dev, the leak does not happen for them lest they let the notifications stack up [15:56] DBO, yeah... the "queue/list" lives in class Stack [15:56] so Im not nuts :P [15:56] lest? [15:56] lest == unless [15:57] DBO, that's what I also verified with my tests [15:57] sweet [15:57] so we are all on the same page [15:57] so now we gotta smack up this stack [15:57] and make it stop leaking [15:57] DBO, I once mined stack.c/display.c and bubble.c with printf()s showing me the ref-counts of all use objects [15:58] from that I'm cretain that everything is properly *_dispose()ed [15:59] I'll go also your branch so were talking about the same sources [16:00] well lets just work from the observation that someone getting multiple notifications queued up results in memory issues [16:00] DBO, did you valgrind a single notification "against" multiple yet? [16:01] nope, why? [16:01] valgrind is likely to point "closer to the culprint" than gdb can [16:01] DBO, or do you want go "line-by-line"? [16:01] just asking [16:02] I want to go functionally [16:02] ok [16:02] so when a notification is sent by notify-send [16:02] it goes through libnotify -> notify-osd -> dbus.c? [16:03] it comes via dbus and first lands in stack_notify_handler() stack.c [16:04] okay [16:04] DBO, see stack-glue.h where the handlers from stack.c get hooked up to dbus [16:04] ok see it [16:04] DBO, I don't think we need to touch that [16:04] nope [16:06] okay [16:06] so we are in stack_notify_handler [16:06] we have items in our queue [16:06] not yet [16:06] I assume a fresh start [16:07] so stack.c:584 gets skiped [16:08] stack.c:601 also gets skipped (as we assume we get a action-less notification) [16:08] DBO, or do you want to lead through stack_notify_handler() asking as question arise? [16:08] DBO, what ever you prefer [16:09] I am interested int stack_layout now [16:10] ok... [16:10] stack_layout() if called walks the queue for the next notification to show [16:11] checking if e.g. notifications should be suppressed [16:11] there is a method to my madness, if we were sitting next to each other this would be much easier [16:11] and then sees where to place a bubble [16:11] DBO, I second that [16:11] stack_layout gets called if only one bubble has been sent, correct? [16:11] yes [16:12] a timed out bubble "triggers" it or a new notification coming in [16:12] stack_next_to_display [16:12] stack_select_next_to_display [16:12] lets look there [16:13] how do I send a syncronous notification? [16:13] that grabs anything from the top of the queue [16:13] via a string-hint [16:14] e.g. notify-send "Volume" -i notification-audio-volume-medium -h int:value:75 -h string:x-canonical-private-synchronous: [16:14] ah [16:14] -h introduces a hint [16:15] how does a bubble get removed from this list? [16:15] then a "triplet" tells what type of hint, name and value [16:15] i see the ability to select the bubble, but where does it get removed from the list [16:16] DBO, ocne it times out (fade-out animation finishes) it gets unref'ed [16:16] that doesn't remove it from the list... [16:16] stack.c:251 [16:16] it's a GWeakNotify callback [16:16] oh there [16:16] that kicks it from the list [16:16] okay [16:21] MacSlow, is my cursory glance that there isn't really much code that doesn't get executed when there is only one bubble somewhat accurate? [16:22] double negation?! :) [16:23] there isn't much code that gets executed only when there are multiple items in the queue [16:23] yeah [16:24] the queue is filled up until 50 notifications are in queue [16:24] and one at a time is displayed [16:25] as one notification fades out it gets removed from the queue [16:25] * DBO wonders why getting more than depth == 1 has such hard fail [16:25] * MacSlow does too [16:25] the logic seems sound... [16:25] otherwise we'd be jumping at the bug right away :) [16:26] gee I've this bug again [16:26] F**K! [16:28] ? [16:29] icons missing... leading to "no layout"-errors... causing failing rendering [16:30] that stated with the extraction of the notify-osd icons from the themes into a separate package [16:30] brb [16:30] speaking of line 256 of stack.c [16:30] damnit! [16:30] get back here! [16:30] tedg: do you also think the indicator messages icon should have something extra? to denote new? [16:31] mac_v: Yeah, I do... [16:31] hehe ;p [16:32] hmm, i think djsiegel or DanRabbit decided not to have an icon change [16:33] but just to make it highlight [16:33] mac_v: the envelope gets bolder [16:33] but the panel icons for humanity are going to be changed abit [16:33] they are too light [16:34] djsiegel: yeah, i know but > bug #392265 , do you want an extra emblem of sot? [16:34] Launchpad bug 392265 in humanity-icon-theme "Indicator-applet icon for "new message" is too visually similar too the default icon" [Undecided,Confirmed] https://launchpad.net/bugs/392265 [16:35] mac_v: I do think they are too similar [16:35] but I don't know if an emblem is a good way to go [16:35] maybe a the envelope could fill, become solid white [16:35] err, solid gray/black [16:35] hmm , yeah something of the sort [16:35] i'm working on that atm [16:36] djsiegel: there is a problem , if we make it darker then the icons will not be visible in dark panels i.e.>UNR , so what we can do is , split *only* the panel icons into a separate theme , which will be a very small package and name it Humanity_dark or whatever , [16:37] make it inherit the rest of the humanity icons and all will be happy [16:37] humanity needs a dim bluetooth panel icon too, fwiw [16:38] njpatel: the bluetooth icon will be used in the panel :( [16:38] DBO, still messed up here [16:38] god I hate that [16:38] MacSlow, whats messed up? [16:38] oops menu* [16:38] DBO, starting notify-osd from the shell [16:38] mac_v: Oh I see [16:38] mac_v: that sucks [16:38] "(notify-osd:15598): Wnck-CRITICAL **: wnck_window_get_window_type: assertion `WNCK_IS_WINDOW (window)' failed" [16:38] at least the icon shows again [16:38] njpatel: DBO says he can hack the notification area to desaturate the icons similar to the UNR inactive window list [16:39] that will solve all the inconsistency problems [16:39] MacSlow, oh yeah, I saw that... [16:39] mac_v: that would be a most useful trick [16:39] I was wondering what causes those errors [16:39] DBO, I'm not getting them on intel [16:39] njpatel: you guys need to assign it => DBO [16:39] njpatel, common you were the guy who wrote AWN, remember all those swanky effects you did to xembed things. This is just desat :P [16:40] MacSlow, get them here [16:40] mac_v: it may be a bit late for karmic, but it's worth investigating [16:40] nevermind... just got them on intel too [16:40] DBO: those days are long gone, I'm in awe of you kids now...with your client side windows [16:40] it's from that dnd.c code [16:41] njpatel, you've them too [16:41] njpatel, notification area is all xembed still isn't it? [16:41] "xembed" *spew³* [16:41] :) [16:41] njpatel: there are complaints about the inconsistencies , this should fix it , we could do a FFE [16:41] DBO: lol, yes. was just saying :) [16:42] * MacSlow want to have FFE as his second forename [16:42] yeah, my logic to "yes this is possible" was largely "I have a slight idea how to do it and have seen AWN do much more impressive things to an xembed" [16:42] mac_v: it would be good, make a bug against gnome-panel + post to ayatana? Would give the weekend for people to consider it... [16:43] njpatel: lool already has asked the UX team , they just havent responded yet :( [16:43] mac_v, it "just" a few grey lines... how hard can it be [16:43] I pinged them again today [16:43] mac_v: hence I'm thinking ayatana-list....make a little noise if you know what I mean ;-) [16:43] * MacSlow crouches from the DUX-crowd [16:44] MacSlow, want help with them wnck errors? [16:44] DBO, I'd prefer bullet ;) [16:44] * mac_v thinks njpatel / lool making the noise would be better heard ;) [16:44] bang [16:44] mac_v, you're probably right [16:44] mac_v: I would back up your initial noise, don't have time to make noise myself at the moment :D [16:45] * mac_v ok , going to yell at the list right -> now [16:45] DBO, now... I also get the "no icon/no layout defined"-error with your branch on intel [16:46] make that two or thirty bullets [16:46] not my fault [16:46] i didn't touch the wnck codies [16:46] err, why is there a heart icon inside my nm-applet [16:46] it loves you [16:46] DBO, nothing in your patches looks like it indeed [16:47] and all worked yesterday with 0.9.22 / trunk [16:47] well the word also tells me you get this on your branch? [16:47] my ethernet connection loves me... [16:47] DBO, I need to go to the capoeira-classes... back in about 2 hours [16:47] njpatel, just make sure to keep your love secret from your switch. It's a bit of a whore [16:48] DBO, any questions you have until them... stuff 'em in an email and send it over [16:48] MacSlow, answer my question first damnit :P [16:48] do the issues happen in your branch too? [16:48] DBO, regarding the libwnk assertion... sure... go for it [16:48] * DBO murders MacSlow [16:48] DBO, yes in your branch and in trunk [16:48] okay :) [16:48] thats what I needed to know [16:48] it I will work on it [16:49] * MacSlow rejoins the fun in ~2h [16:49] * DBO has a math test in ~1h [16:49] I really shouldn't go because I have the flu === MacSlow is now known as MacSlow|capoeira [16:49] yet oddly I place my grade above the wellbeing of my classmates [16:50] hehe [16:50] http://people.canonical.com/~njpatel/network-love.png [16:52] * DBO notes there has not been a code commit to trunk since the 0.9.22 release [16:52] njpatel, thats badass [17:05] mac_v: around now [17:06] yup [17:06] mac_v: We're speaking of the ubuntuone icon is colourful bug, right? [17:06] mac_v: So we discussed in the release meeting and considered that the safest to implement is the icon theme change to use colour icons [17:06] lool: that one and all icons in general which use the notification area [17:07] mac_v: We're still blocked on UX response; I mailed ivanka [17:07] mac_v: Yes, but the icons in other packages are historically with colours [17:07] lool: why revert when a fix is available? [17:07] mac_v: What's the fix? [17:08] lool: DBO says we can tweak out the notification area similar to the window list to desaturate the icons [17:08] mac_v: It's a proposed change [17:08] mac_v: But it's not developed [17:08] mac_v: People had concerns that it was too late for code changes like these [17:09] we already do it in the window list :( why not give it a try first [17:09] mac_v: My only _personal_ concern for doing that is that it's unlikely that we can distinguish all icons very well if they are desaturated; think of red / orange / green warnings etc. [17:09] its not developed because nobody asked me to develop it :P [17:09] mac_v: Because we dont have the time, artwork deadline was yesterday [17:09] mac_v: It's not impossible to implement, it's just a) not decided we want that (design team) b) late and risky [17:09] lool: DBO has been willing to fix it , only no one has asked him to [17:10] mac_v: I know [17:10] oh... ok [17:10] mac_v: It might be that the design team says we should do it [17:10] mac_v: So what I'd like to ask you folks is to prepare a branch of humanity where we revert to colour icons [17:11] djsiegel: ^ ? [17:11] DBO: If you'd like to propose a patch to implement that feature, that's welcome; we should spend our development resources on fixing crashers at this point though [17:11] DBO: (Not my call ultimately of course) [17:11] or mine [17:12] it makes little difference to when it gets done now [17:12] we cant possible ship it with karmic [17:12] DBO: Well it's not impossible; there were reactions against following this track, but the design team wasn't there to comment [17:13] DBO: I hope the design team will agree with release team / desktop manager / others saying that it's too late to push more code changes now [17:13] * DBO wishes he could be involved with these discussions [17:13] DBO: The conclusion of the release meeting is the status quo except that we want to prepare the colour icons just in case [17:13] DBO: Anybody is welcome as long as the meeting remains productive [17:13] lool DBO mac_v, if we just pull humanity's panel icons, it will fall back on GNOME, etc. [17:14] or we can just put human panel icons back in [17:14] aaaaaaaaaanyhow [17:14] I am going to get ready for class [17:14] math test [17:14] spreading disease [17:14] its going to be a blast [17:14] mac_v: I'll keep you updated on the answer of design team [17:15] lool: ok [17:15] mac_v: Would you ming preparing that humanity branch for me in case we go that route? This is to speedup merging the change when that's decided [17:15] (and if that's decided of course) [17:16] lool: its no a big deal , once the decision is made we could just yank the icons and be done in 15mins ;) [17:19] mac_v: I thought you had a colourful version of these icons as well [17:20] mac_v: Or was this only for the categories? [17:21] lool: we dont have a color version of these *exact* icons , but had color version in a different style , that the deisgn team did not like *at all* , hence these icons... we might as well remove the panel icons and let the gnome icons be used [17:21] mac_v: Okay [17:21] mac_v: Or the human ones? [17:22] either way :) [17:56] lool: ping [17:57] being that the artwork deadline has passed.. does that mean gdm is going to stay as-is? [17:58] anyone? [18:04] DanRabbit: pong [18:05] mac_v, DanRabbit, lool [18:05] can we talk here? [18:05] I am having three separate PMs [18:05] okay okay [18:05] So [18:06] Here's the exact root of the problem we are facing [18:06] you guys have any ideas about my question? [18:06] The panel uses the same icons as the rest of the UI [18:06] djsiegel: as i said , this is a patch which dbo has already done for UNR [18:06] And no matter how we draw the icons in the panel, light or dark or purple or whatever [18:06] we can never do a monochrome icon without affecting the rest of the UI [18:07] but he had written it for the window list , all that needs to be done is assign it to him and he can come up with the patch [18:07] So, what we need is to tell the panel to use different icons than the rest of the UI [18:07] Are we speaking of the notification area or the panel? [18:07] lool yes [18:07] The only thing I am in a position to nod at is changes to art files [18:07] notification area [18:07] Q: foo or bar? A: yes [18:08] and applets [18:08] Ok thanks :) [18:08] if need be [18:08] patching applet sounds like a really bad idea [18:08] it's just too late [18:08] we're not changing any functionality [18:08] djsiegel: it is already done for the window list , and it was done by DBO [18:08] you guys aren't hearing me [18:08] it'll literally be this much change: [18:09] if gcc has to run again, I think it is too late [18:09] "I get my icon from network-stuff.svg" "Now I get my icon from network-stuff-panel.svg" [18:09] djsiegel: we had been mentioning this since sunday! the UX hasnt responded [18:09] mac_v: this is the first I have heard about it [18:09] lool: has been pinging ivanka and hasnt ot a response :( [18:09] I myself have been saying it since before we switched to monochrome icons [18:09] DanRabbit: That would break other themes [18:10] no, because of icon fallback [18:10] djsiegel: lool has been pinging ivanka and hasnt a response :( [18:10] ;) [18:10] I love the idea, but it's too late [18:10] mac_v: It's ok, we will get a reply at some point [18:10] too many changes to too many different code bases [18:10] let's do it for lucid [18:10] but, we have problems to solve in karmic [18:10] then, we must remove monochrome icons in Karmic [18:10] or it'll be broken [18:10] yeah [18:10] lool: but now you guys are saying its frozen :( [18:10] ok, lool, what do you suggest? [18:11] lool: we need to drop humanity panel icons [18:11] what is the branch you were proposing? [18:11] DanRabbit, mac_v: We're not going to do anything complex; I'm willing to consider the option of desaturaing notification area at runtime even if it's not my preferred one, but that will only get applied if design team wants it this way and desktop team is confortable with adding the patch that late [18:11] The current preferred change if any is to drop the B&W icons [18:11] mac_v, djsiegel, DanRabbit, lool: any ideas regarding if the gdm will be updated.. or if it is staying the same as now.. also i agree with going back to colored panel icons, they look better [18:11] The only other option is to keep what we have now [18:12] We don't even have to make a crazy patch like desaturating it! [18:12] djsiegel: pls read lool's response above , it can be done only if UX insists [18:12] lool: please check with desktop team if they are comfortable with the change this late [18:12] djsiegel: I'm asking to prepare the humanity changes to revert to the human or gnome icons for notification-area stuff [18:12] tell them UX is interested only if it looks like it isn't disruptive [18:12] Gnome would be best [18:12] Human icons are pretty unreadable on the UNR panel [18:12] djsiegel: Are you speaking for UX? I'd rather hear it from ivanka to whom I escalated [18:13] lool, I need a description of the problem still [18:13] who is worried about Humanity panel icons? [18:13] and why? [18:13] they icons look too light? That is what I heard [18:13] djsiegel: So you're picking this up from ivanka? [18:13] lool, yes [18:13] djsiegel: I'll forward you the emails then [18:13] ok, good [18:14] djsiegel: sent [18:15] djsiegel: the problem is : the panels use greyscale icons for the system icons , but the app icons are in color ... so lool and a few others feel that this is inconsistent behavior... IMO the system icons are greyscale and the rest are color[this is how win 7 does it too only the system icons are white , rest are color]... [18:15] djsiegel: We want to know whether the mix of black and white and coloured icons is acceptable for karmic, and what's the design team's preferred solution between all black and white, all colour, and mix of the two [18:16] djsiegel: if this is acceptable to keep using only the grey *system* icons for the panel , there is no problem *at all* ... its just that they are questioning the inconsistency [18:16] mac_v: It doens't compare [18:16] ok, I se [18:16] nothing needs to be done [18:17] mac_v: For instance rhythmox is shipped with Ubuntu desktop and UNR; should it be black and white? [18:17] mac_v: What about bluetooth? tomboy notes? [18:17] lool: as i said app icons are not allowed in the default icon theme [18:17] only generic icons [18:18] bluetooth is not a problem [18:18] no, we will never get all panel icons uniform as long as apps can put their own icons there [18:18] even if we monochrome them forcefully [18:18] djsiegel: i would say, we just draw a line and say , only system icons are greyscale .... and there is no confusion at all [18:19] no panel icon change [18:19] no code break [18:19] nothing needs to be done [18:21] my opinion on the matter.. is that eventually we will be going to gnome-shell.. ive run gnome-shell with both monochrome icons, and colored icons.. and i find that the colored ones look a whole lot better [18:22] lool: the bluetooth icon wasnt done , just because we were waiting for the decision... but either way... something needs to be decide [18:22] decided* [18:23] I'm happy I dont have to raise a lot of design or icon questions :-) [18:25] alright [18:25] djsiegel: lool: seriously... is there a problem if only the system icons are in greyscale? bluetooth will be done... and let the apps have color i dont see why this is considered inconsistent! [18:25] the thing I am concerned with is the humanity-style icons appearing in other interfaces [18:25] Ok, here is what I would like us to do. [18:27] * DanRabbit ---> bathroom [18:29] sjsiegel: if you guys decide to go with the monochrome icons.. itd be awesome if you included an alternate icon theme, either in the repos, or a tar.gz somewhere.. i really like the humanity theme, but if the monochrome icons stay, i think i'll have to switch back to gnome-colors [thumbs down] [18:30] [hate to sound like a broken record] [18:30] ok, that decides it, we are doing what natewiebe13 wants :~ [18:30] :) [18:30] djsiegel: as of now there is not much problem , of the humanity style icons appearing in the interfaces if we do only the system icons [18:30] mac_v: I just need to know of where this is happening [18:31] mac_v: if humanity panel icons are not appearing in other interfaces, I would like to keep humanity panel icons, but darken them a tad for the desktop [18:31] lool: ^ [18:31] djsiegel: they can be darkened for ubuntu [18:32] and lightened for UNR [18:32] thats not a problem [18:32] djsiegel: check the networking menu [18:32] mac_v: please give me a screenshot [18:32] mac_v: I am not on ubuntu right now [18:32] djsiegel: I dont know [18:32] sorry [18:33] * mac_v system is too tweaked out [18:33] give me a couple of mins [18:33] ok, I am downloading a karmic daily [18:35] one last question.. then i'll leave you guys to work.. if you go through with monochrome icons.. will you include an alt. colored theme? [18:35] natewiebe13: no [18:35] natewiebe13: no time for that atm [18:35] sorry [18:35] mac_v lool DanRabbit, I think we will keep everything as is, but just darken the humanity panel icons for Ubuntu [18:35] but I will inspect this problem with the nm-applet in a bit [18:35] as soon as karmic downloads [18:36] mac_v: if you can get me a screenshot that would be great [18:36] no probs.. if every panel icon was monochrome, i would keep them but.. good work on the theme though [18:37] djsiegel: What do you mean "just darken the humanity panel icons for Ubuntu" [18:37] djsiegel: It's the same package in Ubuntu Netbook Remix and in Ubuntu Desktop Edition [18:37] lool: the humanity panel icons are considered too light, because they were made to look good on UNR [18:37] I was told we could do lighter on just the desktop [18:37] Who told you that? [18:37] I don't remember, mac_v? [18:38] Unless we patch the panel to know that it's running on one or the other and to runtime change the icons, no we cant [18:38] we can't have humanity-icon-theme-unr ? [18:39] Not easily [18:39] ok [18:40] so, we cannot make humanity panel icons darker in karmic because they will be too hard to see in UNR [18:40] (We would have to change a bunch of deps in many packages, add a new package with changed filepathes, change the seeds etc.) [18:40] I think we need to pull humanity panel icons for karmic, and do fixes for lucid [18:40] djsiegel: lool > http://imagebin.ca/view/oFRenHr.html [18:40] IMO ,its not light for ubuntu [18:40] even with the fix that DBO could do, we still would have the dark/light conflict with UNR/desktop [18:40] djsiegel: So removing them will fallback on gnome-icon-theme (not human-i-t), ok with that? [18:40] but we can make it darker ;) [18:41] lool: hold on [18:41] djsiegel: Can you either send me an email Cc:ing ivanka and pitti on that decision or comment on the bug that this is the decision of the representant of the design team? [18:41] mac_v: can you give me another screenshot with those icons removed, falling back on gnome-ico-theme pleae [18:41] Cant afford back and forth changes on this issue at this time [18:41] lool: yes, please give me the bug [18:41] 430277 [18:41] right [18:41] djsiegel: argh! give me a sec ;p [18:42] bug #430277 [18:42] Launchpad bug 430277 in unr-meta "ubuntuone icon is colorful while the other panel icons are dark" [High,Invalid] https://launchpad.net/bugs/430277 [18:42] It's notification-area not panel, will update bug title to make it clear [18:42] lool: that bug is not a problem because DanRabbit did a humanity style icon for U1 [18:43] djsiegel: That bug is where we discuss the general issue [18:43] ok [18:43] updated title to drop ubuntuone part [18:44] djsiegel: Ok, it's end of day here; will act on your email or comment when I process emails/bugs next [18:44] bye all [18:45] i do have to say.. that im using dust as a theme.. the humanity icons do not work under network-manager in terms of color [18:47] natewiebe13: as always you can change the theme if you dont like ;p [18:47] just saying they should be darker [18:47] djsiegel: gnome > http://imagebin.ca/view/JKbE34Bw.html [18:47] http://imagebin.ca/view/PEsIv31.html [18:48] djsiegel: human > http://imagebin.ca/view/NYTmyv.html [18:48] natewiebe13: file a bug [18:49] im using gnome-colors.. i just thought id agree with you that they should be darker [18:49] * mac_v makes note... will have to mention to djsiegel's boss that he doesnt use Ubuntu ;0 [18:50] anyways.. see you guys later [18:50] mac_v: thank you very much for that, I think we should go back to human for those icons [18:51] * mac_v realizes djsiegel has poor taste ;p [18:51] mac_v: it's not about taste [18:51] hehe ;) [18:51] if this were about the manifestation of my taste, the result would really be great! :) [18:52] djsiegel: as i'v mentioned we can make it darker , if thats the problem [18:52] djsiegel: Human icons (particularly the volume) is impossible to read on a dark panel [18:52] it's not going to be good for UNR [18:52] lool: just do a test and swith unr to human ,you will *not* be able to see the volume level! [18:52] djsiegel: ^ [18:54] DanRabbit: what did UNR use in Jaunty? [18:55] I believe Human [18:55] was that rhetorical? [18:55] djsiegel: the used a different gtk theme , now with dust theme the icons are invocisble [18:55] no [18:55] unfortunately, in the interest in not breaking too much, I think we should keep jaunty icons in the panel [18:55] they* [18:55] even with their old flaws [18:55] mac_v, let those other themes use different icons then [18:56] I am concerned with the default theme, with 99% of ubuntu users keep [18:56] djsiegel: UNR uses dust by default [18:56] mac_v, right, so, which icons are invisible in dust? [18:56] human [18:56] so, UNR had invisible panel icons in Jaunty? [18:57] and up until a few weeks ago, we were fine with that/ [18:57] djsiegel: UNR used human theme instead of dust in jaunty [AFAIK] [18:57] ok [18:57] djsiegel: could pls remind me , what the breakage is with humanity and these panel icons? [18:57] coudl you* [18:58] (1) the messaging indicator is not differentiated enough [18:58] (2) others are claiming these icons are leaking out into other interfaces [18:58] (1) is clear, and we can fix it [18:58] 1> is fixed in latest [18:58] really? [18:58] yes , i just now fixed 1 [18:59] djsiegel: for 2, the screenshots i showed are the only 2 places where the *leak* [18:59] they* [18:59] mac_v, what is the fix for #1? [19:00] djsiegel: i have changed the icon to fill [19:00] ok [19:01] mac_v: can you please show me? [19:04] mac_v: I think I want the human status icons to be used in humanity, can you expand the session menu and give me a screenshot comparing status icons in human and humanity please? [19:04] djsiegel: http://imagebin.ca/view/7g8WEw.html [19:04] ok, how does that look on a dark panel? [19:04] I imagine the "no fill" one is louder, and would connote message available? [19:04] djsiegel: i thought we were worried about ubuntu for now [19:04] yup [19:05] mac_v: apparently, that change will trickle into UNR as well [19:05] djsiegel: UNR we can fix , by making it light ;) [19:05] we can't just make UNR light right now [19:05] mac_v: i don't think we're allowed to have separate packages ATM [19:06] djsiegel: i meant light icons for UNR [19:16] So I need to see Human panel icons on UNR [19:18] mac_v: can you please prepare a humanity branch that uses Human panel icons? [19:18] djsiegel: kenneth told we are not allowed to copy human's icons... you need to ask him... either way , the packaging can be done any way ubuntu wants ;) [19:19] mac_v: I am talking to him now, he says it's fine [19:20] djsiegel: DanRabbit is the main owner of the Humanity branch , branching it has to be done by him [19:20] yes, I am saying that kwwii says we can copy human icons [19:20] I'll do it in a bit [19:20] I have to go get some dry ice because my gf's car has a dent [19:20] brb [19:22] lool: you here? [19:47] * DBO looks for a MacSlow|capoeira === MacSlow|capoeira is now known as MacSlow [20:04] DBO, re [20:10] DBO, I need to hit the bed... I'm exhausted. [20:17] Whoever has made Humanity the default icon set in 9.10 is a very good person. [21:44] mac_v: did you say that ubuntuone had a monochrome icon? [21:45] nope [21:45] djsiegel: ^ mrooney|w's comment ;p [21:45] ah I figured he might be the one! [21:46] mac_v: ? [21:46] what did mrooney|w say? [21:46] djsiegel: [00:47] Whoever has made Humanity the default icon set in 9.10 is a very good person. [21:47] :D [21:47] That's awesome [21:47] that almost brings a tear to my eye [21:47] don't praise me, praise DanRabbit and mac_v for working so hard, and kwwii for saving us all in the end, and ivanka for pestering mark :) [21:47] omg I am going to cry [21:48] we are such a good team [21:48] even if the last couple days have been a nightmare [21:48] haha [21:48] group hug! [21:53] and more than 2 backgrounds, this is glorious [21:54] so is there going to be a new icon made for ubuntuone? [21:54] wow, and good ones [21:56] lamalex: :) [21:56] natewiebe13: yes, DanRabbit made it and I just sent it to the U1 guys [21:56] lamalex: those are from the contest [21:57] the problem with the matching notification area icons is that basically every app needs one made now for that to stay uniform [21:57] lamalex: or apps need to stay out of the panel [21:58] oh yah, or that :) [21:58] djsiegel: how about the actual ubuntu logo for the menu, and weather icons? if those get made.. i'll keep humanity [21:58] natewiebe13: we aren't doing this just for you, you know :) [21:58] so don't try to negotiate with what you want :) [21:58] i know.. im just asking [21:59] isn't the actual ubuntu logo uses? [21:59] used [22:00] Can't do the ubuntu logo because it shows up in other places [22:00] it's a leaker [22:00] oh, I see, he wants that monochrome too [22:00] DanRabbit: unless that gnome-applet was patched to use a different icon [22:01] okay.. how about the weather icons? [22:01] ubuntu-monochrome or something [22:01] djsiegel: DanRabbit: i think we need a blueprint for lucid , for the notification area [22:01] lamalex: that's what I keep saying, but not until Lucid [22:01] DanRabbit: ah [22:01] well I agree with you :) [22:02] DanRabbit: how about weather icons? [22:02] same [22:02] okay [22:03] natewiebe13: do you like the greyscale icons or you hate them... ;p ... a few mins back you said you didnt like now you want all in greyscale ;) [22:04] DanRabbit: dont get me wrong.. i really like the theme.. itd just be nice to be uniform.. [22:04] i would like them if they were all greyscale.. but if some are and some arent.. id rather have them all color [22:04] DanRabbit: back up the icons ... heavy edits on the way ;0 [22:04] oops wrong channel! [22:05] I understand how you feel, I would like them all in monochrome as well [22:05] mac_v: ^ [22:05] unfortunately, we can't make those changes until Lucid [22:05] DanRabbit: awesome.. thats what i wanted to know [22:05] natewiebe13: we too , but the code doesnt allow atm [22:05] DanRabbit: are you going to be at UDS-L? [22:06] I applied ;) [22:06] cool [22:15] yes I have to apply [22:16] it is actually pseudo-close to me this time! [22:16] at least closer than Barcelona [22:30] well when it was in CA I was in PA on the other side of the US [22:30] now that I am in CA, it is in TX, not tooo bad [23:18] * DanRabbit ---> work