IRC log for #harmattan on 20111218

00:21.15*** join/#harmattan rantom (~rantom@herajika.net)
00:28.12*** join/#harmattan beford (~fercho@unaffiliated/beford)
00:34.01*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
00:37.16*** join/#harmattan l32606 (~l32606@125.39.34.50)
01:10.16*** join/#harmattan pawky (~pawky@c80-217-75-20.bredband.comhem.se)
01:15.18merlin1991javispedro: you said I should get rid of the harmattan sdk repo as soon as possible, why?
01:16.10javispedromerlin1991: you'll eventually dist-upgrade, install bash or some other potentially boot-breaking package
01:17.01merlin1991becuase of dependencies or sillyness on my side? :D
01:17.07*** join/#harmattan rayyen (~abc@213.180.93.213)
01:17.16javispedroone or the other =)
01:17.50merlin1991I don't trust dis-upgrade with nokia os anymore after several stories around the n900 :D
01:44.15*** join/#harmattan TSCHAKeee (~TSCHAKeee@173.9.2.181-New-England.hfc.comcastbusiness.net)
01:44.40TSCHAKeeehmm, my n950 does not have com.nokia.meego 1.1
01:44.44TSCHAKeeeit has 1.0
01:44.52TSCHAKeee:(
01:45.38TSCHAKeeethere doesn't seem to be an upgrade for me though.. *scratch-head*
01:49.10GeneralAntilles1TSCHAKeee, they're only available as full images.
01:49.31GeneralAntilles1Well, that's not true actually
01:49.34TSCHAKeeefacepalms
01:49.38GeneralAntilles1But I think the first one was flash-only.
01:50.14TSCHAKeeei'm getting very tired of Qt's inconsistent documentation...
01:50.23GeneralAntilles1Yeah, it's rather frustrating.
01:50.30*** join/#harmattan GeneralAntilles (~ryan@Maemo/community/contributor/GeneralAntilles)
01:50.36GeneralAntillesIt's too bad because it rocks when you can get past that.
01:51.28TSCHAKeeeI know
01:51.33TSCHAKeeewe've managed to do some amazing work
01:51.43TSCHAKeeebut i've been away from harmattan work for four months now
01:51.49GeneralAntillesThat's really the saddest part about Tizen.
01:51.50TSCHAKeeei had to take care of other things
01:51.52GeneralAntillesNo Qt. :(
01:51.52TSCHAKeeeand...
01:52.09TSCHAKeeeenough stuff has changed that it's making me ache.
01:53.54*** join/#harmattan berndhs_950 (~berndhs_9@2604:8800:11b:1:92cf:15ff:fe1b:c561)
01:54.00*** part/#harmattan berndhs_950 (~berndhs_9@2604:8800:11b:1:92cf:15ff:fe1b:c561)
01:56.17*** join/#harmattan BrettQ (~BrettQ@pdpc/supporter/student/brettq)
02:07.32*** join/#harmattan Venemo_ (~Timur@host-94-248-212-179.kabelnet.hu)
02:07.33*** join/#harmattan Venemo_ (~Timur@fedora/Venemo)
03:07.13*** join/#harmattan Iktwo (bdfb6d5c@gateway/web/freenode/ip.189.251.109.92)
03:09.00IktwoI just finished an app to show the password of previously connected WiFi Networks, here's the code and the binary https://github.com/Iktwo/WiFi-Pass-Recovery hope someone could test it and give some feedback, it's already on QA
03:28.18TSCHAKeeedoes anyone have a link to some QML that makes a nice harmattan header bar that follows UX?
03:28.33TSCHAKeeereally finds it silly that this wasn't made as a default component.
03:29.08Iktwoactually I have a tittle bar in WiFi-Pass-Recovery
03:29.09Iktwohttp://iktwo.wikidot.com/local--files/wpr/wpr_1.0.0_armel.deb
03:29.14Iktwosorry
03:29.16Iktwothe link of github
03:29.21Iktwohttps://github.com/Iktwo/WiFi-Pass-Recovery
03:29.49Iktwolook in the qml folder
03:29.58Iktwohttps://github.com/Iktwo/WiFi-Pass-Recovery/blob/master/qml/TittleBar.qml here it's te tittle bar
03:30.33Iktwoand to use it you can see MainPage.qml
03:30.55Iktwoit supports a logo and the author name if you want, you can change the color
03:31.54TSCHAKeeethanks, it's pretty close to mine.
04:04.44AranelHow can I call some element from another .qml? like  calling a Sheet{ from SomethingElse.qml, but not copy/pasting it of course.
04:05.39Iktwothe name of the element must beggin with a capittal letter and you call it with that name
04:05.55Iktwofor example if you a QML called Bar.qml
04:05.56Iktwoto use it
04:06.02Iktwoyou have to do Bar{}
04:06.06Iktwoand set properties
04:06.34*** join/#harmattan Natunen (nalle@213-186-240-19.bb.dnainternet.fi)
04:06.59AranelIktwo: well I have some elements on Bar.qml, I want to pick Sheet out of them to use it on another qml file, how can I? (like importing it)
04:08.04IktwoI'm not sure if I understand your problem, but I would split all elements to separte .qml files and the call it as I said Bar{}
04:08.09IktwoOtherElement{}
04:09.33AranelIktwo: think of it like you have a file named Menus.qml, and you want to use secondMenu { something } from it.
04:10.39AranelIktwo: well If I create a seperate file each time I want to share an element, I'd have to maintain an army of them :|
04:10.50IktwoI understand
04:11.04IktwoI haven't done what you need
04:12.48AranelIktwo: okay ^^ thanks anyway.
04:13.52Aranelmy question stands, how can I call an element from SomethingElse.qml to use it in Something.qml, instead of c/p of course? Suggestions, Anyone?
04:13.53Iktwoand if you try to make a general menu?
04:14.12AranelIktwo: general menu as in?
04:14.14Iktwoand set properties for each one?
04:14.54Iktwommmm you don't want to separate each menu (if the menu example it's ok) because you will have a lot of files
04:15.11Iktwowhy not just a gneral file and change the properties for each instance?
04:15.35Iktwois it possible to do that in your application?
04:16.22AranelIktwo: I have elements like this one: Menu { id: headerMenu visualParent: pageStack MenuLayout {... } , I have to use this menu on couple of other Page's, each Page has it's own .qml file, like AboutPage, DetailPage, SettingsPage etc. So I'm looking for a better option than copy/pasting the menu.
04:17.01AranelIktwo: hmm I  couldn't understand that, can you give me an example code?
04:17.03Iktwothe menu it's the same in all of the pages?
04:17.06Iktwosure
04:17.19Aranelyes, it's exactly same with same attributes and exact same MenuItems
04:18.23Aranelif I simply c/p it, a) It's a waste of resource b) It's hard to maintain, since If I make a change on that Menu, I have to grep it out and find every instance I've copied it and change it manually.
04:20.07Iktwobut if the menu it's the same you can call it from all your QML, I'm looking for an example that could be useful to you
04:21.30Iktwocould you try to create a Menu instance in your main qml file assign and ID and then test if you can set it to otther qml files with that ID?
04:21.35IktwoI think that's possible
04:23.47AranelIktwo: yup It works that way, but it doesn't work on the reverse, I can't make it call a Sheet on SettingsPage.qml for example, it works like main.qml > SettingPage.qml, not the other way, they don't share elements.
04:24.06Iktwooh :S
04:24.24AranelIktwo: for example if I place the Menu on main.qml and onClicked: someSheet.open(), It won't work.
04:24.46Aranelthen I would need something like "import" again :)
04:25.53AranelTSCHAKeee: by the way, there was a wiki page for standardized headers, if you still need a resource for it.
04:29.48TSCHAKeeeAranel: i would like to see it, yes.
04:32.09AranelTSCHAKeee: I can't remember the exact URL, but I'm also using a mostly c/p 'ed version of it with small changes, I'll pastebin it for you.
04:33.55AranelTSCHAKeee: http://pastebin.com/0GcZJRbN
04:34.45Aranelremove the MouseArea and Image (I added them to make it call a menu) , change it's color and text, and here you go.
04:35.08TSCHAKeeethanks. yes, I am doing similar.
04:36.13Araneljust dreams of a Pastebin screensaver. Wouldn't it be awesome *-*
04:56.52TSCHAKeeedamn... I remember there was a way to do a Menu component dynamically
04:57.14TSCHAKeeebut I lost all my code from months ago that did it... anyone remember what was needed for that?
05:13.36TSCHAKeeei remember now... a repeater.
05:20.17*** join/#harmattan l32606 (~l32606@125.39.134.50)
05:21.20*** join/#harmattan adlan (~adlan@210.195.13.57)
05:45.52*** join/#harmattan DocScrutinizer (~halley@openmoko/engineers/joerg)
07:08.54*** join/#harmattan trx (~ns-team@212.200.199.163)
07:19.09*** join/#harmattan chris_ (~krisztian@180.183.140.60)
07:19.47chris_hi do I launch the emergency call app programmaticaly?
07:20.20*** join/#harmattan rcg (~rc@g230053078.adsl.alicedsl.de)
07:21.12chris_also how do I launch my control panel applet programmaticaly?
07:40.31*** join/#harmattan clbr (~clbr@e178012027.adsl.alicedsl.de)
08:10.23*** join/#harmattan jpwhitin` (jwhiting@pasanda.collabora.co.uk)
08:12.25*** join/#harmattan ybot_ (quassel@nat/nokia/x-tkfqmrxibwklutut)
08:12.26*** join/#harmattan Mek_ (~quassel@marijnalexwedding.com)
08:13.10*** join/#harmattan rainisto (jonni@nat/trolltech/x-dhfjuayxtrnggxia)
08:15.27*** join/#harmattan FLaT^_ (flat@kuumankosteat.harrasteradiot.fi)
08:34.06*** join/#harmattan tomkaaa (~tom@dslb-088-073-254-012.pools.arcor-ip.net)
08:35.44*** part/#harmattan tomkaaa (~tom@dslb-088-073-254-012.pools.arcor-ip.net)
08:44.34*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-148-136.clienti.tiscali.it)
08:56.58*** join/#harmattan fuz_ (nobody@vau75-10-88-164-23-88.fbx.proxad.net)
09:14.59*** join/#harmattan neal (~user@c-24-91-125-189.hsd1.ma.comcast.net)
09:22.57*** join/#harmattan NIN101 (~NIN101@2001:530::216:3cff:fe71:5e1e)
09:23.33*** join/#harmattan chris_ (~krisztian@180.183.96.102)
09:29.54*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-148-136.clienti.tiscali.it)
09:32.44*** join/#harmattan zk8 (~tester@p54B91FC9.dip0.t-ipconnect.de)
09:36.43*** join/#harmattan leinir (~leinir@amarok/usability/leinir)
09:43.12*** join/#harmattan conny_ (~conny@g231089099.adsl.alicedsl.de)
10:04.13*** join/#harmattan arcean (~Arcean@aafw60.neoplus.adsl.tpnet.pl)
10:15.48*** join/#harmattan chris_ (~krisztian@180.183.140.60)
10:26.25*** join/#harmattan lardman|home (~simon@host-78-146-247-139.as13285.net)
10:38.11*** part/#harmattan zk8 (~tester@p54B91FC9.dip0.t-ipconnect.de)
10:50.57*** part/#harmattan clbr (~clbr@e178012027.adsl.alicedsl.de)
10:51.19*** join/#harmattan Venemo_ (~Timur@host-94-248-212-179.kabelnet.hu)
10:51.19*** join/#harmattan Venemo_ (~Timur@fedora/Venemo)
10:59.42*** join/#harmattan Jonno (~jon@c-e91ee353.028-32-6c6b7010.cust.bredbandsbolaget.se)
11:21.37*** join/#harmattan lardman|home (~simon@host-78-146-247-139.as13285.net)
12:01.59chris_?
12:26.24*** join/#harmattan zk8 (~tester@p54B91FC9.dip0.t-ipconnect.de)
12:31.29*** part/#harmattan zk8 (~tester@p54B91FC9.dip0.t-ipconnect.de)
13:03.25*** join/#harmattan Venemo (~Timur@fedora/Venemo)
13:21.55*** join/#harmattan faenil (~faenil@131.114.171.206)
13:30.46*** join/#harmattan rcg (~rc@g230053078.adsl.alicedsl.de)
13:31.24*** join/#harmattan leinir (~leinir@amarok/usability/leinir)
13:39.17rainistompr: it only gives wrong rootcontext if you use QScopedPointer (if you disable booster it will work ok), and the application skeleton for booster will be fixed in next qt creator release.
13:39.45rainistoknown bug in current sdk release(tm)
13:40.47jonnihmm, was my secondary nick in use for some reason...
13:50.44tarantismDoes anyone know how to minimise an app programmatically? I've searched and I've hunted and searched and hunted ...
13:59.28*** join/#harmattan mck182 (~quassel@brln-4d0c1854.pool.mediaWays.net)
13:59.28*** join/#harmattan mck182 (~quassel@kde/developer/mklapetek)
14:12.14grijonni: booster = invoker?
14:17.07*** join/#harmattan cityLights (~cityLight@bzq-82-81-3-141.red.bezeqint.net)
14:40.33*** join/#harmattan BluesLee (~held@ip-178-202-182-84.unitymediagroup.de)
14:42.20*** join/#harmattan IcanCU (u3094@gateway/web/irccloud.com/x-sebrfbdraaotputu)
14:50.33*** join/#harmattan javispedro (~javier@Maemo/community/contributor/javispedro)
14:52.42*** join/#harmattan adlan (~adlan@210.195.13.57)
14:58.05*** join/#harmattan mikelima (~mikelima@net-2-33-166-223.cust.dsl.teletu.it)
15:06.52*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-142-195.clienti.tiscali.it)
15:10.36*** join/#harmattan zarlino_ (~zarlino@dynamic-adsl-94-37-142-195.clienti.tiscali.it)
15:23.44*** join/#harmattan stroughtonsmith (~steven@86-44-82-9-dynamic.b-ras2.bbh.dublin.eircom.net)
15:51.52*** join/#harmattan artemma (~artemma@d85-194-229-245.cust.wlannet.com)
15:52.31*** join/#harmattan M4rtinK (~M4rtinK@mail.melf.eu)
15:59.09Aranelhow can I change acceptButton color in Sheets? It defaults to blue, but calendar uses orange buttons, so it should be possible?
16:08.03M4rtinKmaybe through some styling properties ?
16:17.37dymaxionDoes  anyone here still have problemsm with Facebook account logging out repeatedly?  I get this all the time, and eventually I get "Account Disabled" in the harmattan client... I have to delete the account and re-add and start again.
16:18.19dymaxionafter a few days the same problem eventually gets the account locked on the N9... and repeat.... it's driving me mad!
16:19.05dymaxionalso after rebooting, I have to re-enter ALL my passwords for every account all over again... eg 9 times... FB/twitter/ ( gmail & gmailchat x 3) etc.etc.   anyone seen this prob?
16:22.26*** join/#harmattan chris_ (~krisztian@180.183.96.102)
16:35.12*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-142-195.clienti.tiscali.it)
16:40.31*** join/#harmattan harbaum (~quassel@dslb-092-074-232-216.pools.arcor-ip.net)
16:42.22*** join/#harmattan pawky (~pawky@c80-217-75-20.bredband.comhem.se)
16:42.45*** join/#harmattan lardman|home (~simon@host-78-146-247-139.as13285.net)
16:58.53Araneldymaxion: I remember that I heard of that problem you last mentioned (re-entering all pw), check Harmattan Bugs, most likely it's already reported.
17:01.03Aranelwonders if "Incorrect Password" on FBChat/GTalk bug is resolved yet
17:02.45Araneldymaxion: https://harmattan-bugs.nokia.com/show_bug.cgi?id=123
17:02.50_MeeGoBot_Bug 123 maj, Highest, ---, ext-risto.lahti, RESO FIXED, accounts passwords are not remembered accross reboots
17:06.03*** join/#harmattan chris_ (~krisztian@180.183.96.102)
17:18.09pawkyI had it after flashing the firmware, someone has told me it will go away if one also flash(?) eMMC
17:19.56pawkymight also have to to with restoring from backup after doing a firmware flash..
17:28.05pawkywhat are you to do if you have a form that takes 2 Date inputs, but you only enters one of them? as the second field is saved as an empty string, Catalyst goes bonkers over it when wanting to show the update....
17:28.39pawky(bugger!... wrong channel)
17:33.45*** join/#harmattan MohammadAG (~MohammadA@ool-44c62415.dyn.optonline.net)
17:34.05*** join/#harmattan MohammadAG (~MohammadA@Maemo/community/contributor/MohammadAG)
17:35.49*** join/#harmattan xnt14 (~xnt14@ool-44c62415.dyn.optonline.net)
17:36.50jonnigri: yep, booster = invoker
17:37.29grijonni: Do you know when they will remove that fork() code? :)
17:39.40jonnigri: most likely never, but they will fix creators wizard application template so it doesnt create 2 QDeclarativeView instances for every boosted app
17:40.15grihmm that does not help me since I don't even use the template
17:40.17jonniwill be fixed in qt crator 2.4.0
17:41.00griI have the problem that when I provide tokens in my manifest.aegis, my application does not get those until I restart the phone or applauncherd
17:41.18grithis means simply installing and starting app with invoker = credentials missing
17:41.25jonnigri: that is different issue, which can be fixed in your deb packages postinst script
17:41.42grijonni: currently I restart applauncherd in postinst
17:41.48gribut this has a side effect
17:41.57griit closes all applications started by invoker
17:42.51grithis means: install my app with ovi store client and it will close the ovi store client :D
17:43.43jonniheh, a feature, maybe just issue reboot in postinst :)
17:44.10jonnior how do you restart, with initctl
17:44.13jonni?
17:44.16griyes
17:44.53grihttps://gitorious.org/web2sms/web2sms/blobs/master/qtc_packaging/debian_harmattan/postinst#line39
17:47.44jonnimight work better if you just kill the process, that way it most likely wont kill the running ones
17:48.17*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-142-195.clienti.tiscali.it)
17:49.24grithe funny part is: it does not kill the instances immediately
17:49.25jonniatleast when I did kill -9 to the process, it didnt kill the existent invoker sessions
17:49.46griit takes up to 20 seconds until it starts closing applications
17:50.23griwhich one to kill
17:50.32gribooster-d or the root one?
17:50.47jonninope
17:51.03jonni/usr/bin/applauncherd.bin
17:51.49griroot is not allowed to kill
17:51.55jonniall the invokers are still up and running and its been a few minutes already. :=), and it automaticly respawns another applaucherd.bin when I just kill -9's it
17:52.07jonnisend kill -9 as user
17:52.36gripostinst will be run be root, so is there a way to exec something as user from there?
17:53.13jonniyou can run postinst as user, just say so in the aegis file
17:53.50*** join/#harmattan manankanchu (~ircchatte@80-254-71-162.static.monzoon.net)
17:53.52grihuh? tell me how :)
17:54.05grikill did also kill the phone ui
17:54.13griso nothing different to initctl restart
17:54.26griit closed 20 seconds after the kill
17:54.42jonnihmm, didnt close for me
17:55.59jonnihttp://harmattan-dev.nokia.com/docs/library/html/guide/html/Developer_Library_Developing_for_Harmattan_Harmattan_security_Security_guide_Aegis_manifest_syntax.html   there is "request credentials for install scripts"
17:56.05grijust tried again: phone, contacts and browser visible in task manager
17:56.16grithen the kill: 20 seconds nothing, then all start closing
17:56.18jonnior you can just devel-su - user -c "echo foobar"
17:56.54jonniand you did kill -9 <pid> =
17:57.01griyes
17:59.38jonniah, then it just just a feature that if you use booster in application that you need to initctl restart or reboot the device and apps will close. But if your app doesnt need the faster startuptime and want to introduce credentials in clean way, then just dont use booster/invoker at all.
18:00.01jonniit only gains you few hundred ms in startuptimes to use booster.
18:00.18grimy application start is already as slow as hell :D
18:00.38jonniqml loaders (tm) :)
18:00.38griso I need the applauncher for the image, otherwise users think it never starts
18:02.59jonnior just make minimal qml application that shows image first and use loaders to load the rest
18:03.32grialready tried that
18:03.41gribut the loaders don't load threaded
18:03.51griand the library loading takes the time
18:07.09ZogG_laptopjonni: \o/
18:07.15jonnior make 2 binaries, one launcher kind, which is started with invoker, ie get splashscreen fast on screen (which doesnt introduce new credentials) and just systems the second one which is the main app where those new credentials are.
18:08.09jonnibut yes its a kind of tricky if you introduce new credentials to system and want to use booster
18:08.35ZogG_laptopjonni: led wouldn't work for communication no matter for pattern
18:09.13jonniZogG_laptop: yep, nothing in the backend is using it, only bme uses charger pattern
18:10.31ZogG_laptopnothing has credials for it
18:11.43ZogG_laptopjonni: btw my led while charging started to work suddenly after few reboots probably
18:11.48ZogG_laptopi just saw it now
18:11.58ZogG_laptopas at night i charged and it didn't work
18:14.01ZogG_laptopjonni btw for what is nokia account is used except sync and what it would do if the sync fails? coz it asks me for password every 20 mins now
18:24.05grijonni: Did you know that the AID changes after ovi store has signed a package?
18:28.48ZogG_laptophaha Ovi
18:28.50ZogG_laptopi can't use ovi store
18:29.06dymaxionAranel, thanks for the bug link. Looks like the account bug is fixed,. but I just have to wait for PR1.2  or full reset my phone :-(
18:29.30ZogG_laptopdymaxion: who said it' s really fixed in pr1.2
18:29.31ZogG_laptop?
18:29.50Araneldymaxion: yes, unfortunately it seems so
18:37.32jonniafaik, full reset will not fix it.
18:41.14ZogG_laptopjonni: full reset and full flash may do that, but than again, who said it would never happen again. my phone worked fine till one day i got that bug
18:41.27ZogG_laptopi'm not even sure if it's fixed =)
18:42.33ZogG_laptopjonni: that's why bugfixes for critical things should be released sooner than new update. i can't use /download/ login in ovi store app on phone. so don't ask me about piracy after that
18:44.03*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
18:44.43jonniI havent been asking :)
18:46.43*** join/#harmattan manankanchu (~ircchatte@80-254-71-162.static.monzoon.net)
18:49.13ZogG_laptopfrals: http://store.ovi.com/content/230654?clickSource=browse&categoryId=23&contentArea=applications&pos=3
18:49.29ZogG_laptopyour idea is stolen as i assume your code
18:56.46*** join/#harmattan mck182 (~quassel@brln-4d0c1854.pool.mediaWays.net)
18:56.52*** join/#harmattan mck182 (~quassel@kde/developer/mklapetek)
18:58.39*** join/#harmattan conny__ (~conny@g231099202.adsl.alicedsl.de)
18:59.29*** join/#harmattan gabriel9 (~quassel@145-130-241-92-bl.cable.dyn.broadband.blic.net)
18:59.52ZogG_laptopnoone gives me even negative reviews for app
19:00.11ZogG_laptop=(
19:01.30griZogG_laptop: what is your app?
19:13.14pawkydoes anybody know of any config file where one can trim the maximum volume output for the device? When using the graphical volume changer, the sound will be distorted after just about half the total volume at hand...
19:13.40pawkyThere must be a way to fine tune the driver a bit... or the hardware..
19:18.08ieatlintit'll be pulseaudio config in /etc, but aegis might protect it
19:23.26ZogG_laptopgri imgrup
19:23.51ZogG_laptoppawky: alsamixer?
19:24.04pawkyhmm...
19:24.11pawkyusing, config file?
19:24.39griZogG_laptop: the name does not tell me anything about it :) What does it do?
19:25.07ZogG_laptophmm upload images to imgur ? =)
19:25.29grioh ok, never heard of that service
19:26.45chris_hello, what is the best way to toggle the autostart at boot of my app from a settings-applet?
19:27.04*** join/#harmattan adlan (~adlan@210.195.13.57)
19:27.07pawkyZogG_laptop: What config file is the alsamixer using?
19:27.10ZogG_laptoppawky: u can start it fom terminal
19:27.57ZogG_laptoppawky: check the tmo people tlked about it there. i just know the app as i use it sometimes over ssh to control volume on computer
19:28.28pawkyZogG_laptop: Remember it from the Openmoko projekt, didnt know it was on the N9. Will try it :-)
19:28.32ZogG_laptopgri: http://dl.dropbox.com/u/2336306/imgrup_0.0.3_armel.deb
19:29.21ZogG_laptoppawky: it's actually builtin for alsa app and we have it on almost all computers using alsa as most computers do by default
19:29.26ZogG_laptoplinux of course
19:29.49ZogG_laptoppawky: but i bet u have lower volume than others cozz of mainboard problems =)))))))))
19:30.03pawkyZogG_laptop: Oh, no... not again....
19:30.11pawkyZogG_laptop: Is that a known issue?
19:30.49pawkyZogG_laptop: Or are you just standard mocking me... :-)
19:33.03ZogG_laptoppawky: mokcking
19:33.18ZogG_laptopvolume problem is standrt for all n9 as far as i know
19:33.26pawkyok.
19:33.33ZogG_laptoppeople complain it's too quite though it's fine for me
19:33.59pawkymine is.. ok, except for that jimmi hendrix distortion that comes with it...
19:34.12ZogG_laptopwhat?
19:34.50pawkywell.. the sound is distorted...
19:35.13pawkylike.. jimmi hendrix quitar, .. the guy ho invented the distbox..
19:35.23ZogG_laptopany call?
19:35.41pawkyits, not the call.. its the ring signal..
19:35.48pawkythe voice call is ok
19:35.49*** join/#harmattan MohammadAG (~MohammadA@ool-44c62415.dyn.optonline.net)
19:36.09ZogG_laptopand music? tried headphones? changing ringtone?
19:36.22ZogG_laptopmp3 or what format is it btw
19:37.09pawkyi believe head phones is ok.. and playing music through speaker is, fairly ok as well...
19:37.33pawkyFirst it was, the standard it came with.. now its an MP3..
19:37.58pawkyi think alsamixer might do the trick... once I remember how to ssh into this damn thing..
19:38.17pawkyis it user@ or deve-su@?
19:38.23pawky(devel-su)
19:39.30ZogG_laptopdepends on pr
19:39.44ZogG_laptopdeveloper if sdk connection is installed
19:39.48ZogG_laptopand than devel-su
19:39.49pawkyahh..
19:40.07ZogG_laptopcheck the password in it as well
19:40.13ZogG_laptoproot is disabled in pr1.1
19:40.22pawkyin what way?
19:40.38pawkywhy didnt anybody tell me thes BEFORE i upgraded the damn thing to 1.1 :-(
19:41.06pawkyoh, maybe you only meant root as login name..
19:41.26ZogG_laptoproot as ssh
19:41.29pawkynope.. developer@ doesnt woork..
19:41.31ZogG_laptopdevel-su should work
19:41.43ZogG_laptoppawky: do you have developer mode enabled?
19:42.01ZogG_laptopif you do than open sdk and set wlan or usb config as you desire
19:42.08ZogG_laptopi use wlan as i failed to make usb work
19:42.09pawkyZogG_laptop: But of course.. :-)
19:42.42pawkyZogG_laptop: I have succeeded with USB with the broken N9, so it should work.. i just dont get past login.
19:42.54pawkytried developer, user, root, and devel-su....
19:43.18ZogG_laptoptry over wlan with developer
19:44.48M4rtinKhmm, Ovi publishing interface doesn't look that bad but there are still quite a few quirks
19:45.27M4rtinKlike many fields with character count limit but without realtime character counter
19:46.28ZogG_laptopM4rtinK is only guy thanked me for imgrup
19:46.41ZogG_laptop<PROTECTED>
19:47.01ZogG_laptopM4rtinK: i have updated the app, feedback on forum is welcome
19:47.14M4rtinKhh
19:51.04pawkyhad to set a new password for developer@ to log in...
19:53.26ZogG_laptoppawky: you need to open sdk and generate one than just generate keys for passwordless ssh =)
19:55.26jonniand there is instructions in internet howto enable root ssh on pr1.1 also.
19:57.14pawkywell..I did search...
19:59.39*** join/#harmattan BluABK (~BluABK@72.79-160-59.customer.lyse.net)
20:00.51*** join/#harmattan interiorcrocodil (~bob@unaffiliated/interiorcrocodil)
20:01.33*** join/#harmattan zarlino (~zarlino@dynamic-adsl-94-37-142-195.clienti.tiscali.it)
20:02.03jonnipawky: googlesearch "n9_pr1.1_remote_root_ssh_login.txt"
20:02.30BluABKHeya, folks. Is anyone here good with flashing Nokia N9? When I try to flash it, it says that the kernel file is sent, but it still boots into the default one. Even when I flash it with an invalid kernel it says thatit's sent and it boots fine (into the defualt one). The command I use to flash is: ./flasher-3.5 -k <kernelpath> -l -b. What am I doing wrong? =/
20:03.15pawkyjonni: got my new N9.. what a DIFFERENCE.... :-D
20:04.22jonniBluABK: 1st of all you need to use 3.12.1 and not 3.5 of the flasher
20:05.02jonnias 3.5 is only for N900, and 3.12.1 is for N9
20:05.08BluABKjonni: oh, any particular reason for that? Just curious
20:05.12BluABKah
20:05.16BluABKI see
20:05.41BluABKThanks, I'll try that then ^^
20:08.56jonnipawky: yep its nice feeling when there is no random reboots :)
20:09.44pawkyjonni: yeah, it took me about two months, but finally Nokia sent me a new one, and the old is going back next week. :-)
20:10.08BluABKjonni: Oh and by the way, is there a non-debian version of the N9 flasher? I can only see .deb's =/
20:10.43pawkyBluABK: well, should run under Ubuntu as well I presume ;-)
20:10.59pawkyBluABK: but none for the RPMs as far as my investigation goes..
20:11.50BluABKWell I have archlinux and gentoo at this end... great.. So I need to set up a virtual machine for the sole purpose of N9-flashing, yay...
20:13.22jonniBluABK: pawky: yep only debs available, but you can use ar x to extract debs on rpm distros
20:14.15BluABKRight, I'll try that then. Thanks again.
20:14.27jonniso you can just extract the flasher and use it on other distros aswell
20:15.23pawkyjonni: I think I tried with various results... installed debian on another machine to solve it once and for all..
20:30.32pawkyI don't get this... How come the sound is different when a MP3 is playd as a ringtone, compared to the ordinayr player?
20:31.17pawkywhen it's played as a ringtone its a bit quieter, and distortion... but not when played manually through the App....
20:31.27*** join/#harmattan Sazpaimon (~wat@c-68-32-58-174.hsd1.nj.comcast.net)
20:33.14pawkyIs there any hardware wiring guru who knowse what volume lever goes to what part, and which is to be changed to make them similar, when using alsamixer?
20:38.38*** join/#harmattan ajalkane (~ajalkane@a88-115-212-112.elisa-laajakaista.fi)
20:44.05chris_M_LIBRARY macro isnt recognized
20:46.18BluABKOkay I tried with the correct flasher (extracted from .deb) and it's exactly the same as last time. Nothing seems to be changing on the phone... Any ideas?
20:47.33pawkyBluABK: how do you mean?
20:48.43BluABKwell it gives me "Sending kernel image (100 kB)...", but when I boot it's the default kernel and nothing's changed at all, even flash ed with an invalid kernel, and nothing happens then either..
20:49.20BluABK(the example pasta is from the invalid kernel, thus 100 kb large)
20:49.35*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
20:49.53pawkyBluABK:using OS?
20:50.50BluABKpawky: gentoo, but tried with the windows flasher as well yesterday (and that one flashed PR 1.1. FIASCO fine) with same result..
20:51.26pawkyBluABK: the result being, nothing happens?
20:51.30BluABKyes
20:51.42BluABKit boots as if I never flashed any kernel image at all
20:52.07pawkyBluABK: what's the flash log saying?
20:52.52BluABKsec
20:54.00BluABKhttps://pastee.org/gcanh
20:54.38jonni-l -b -k doesnt flash anything it only boots the kernel in memory, you need to use -f -k -a if you want to flash something
20:55.33BluABKreally? Well I only got the -l and -b from javaispedro's post about the kernel flashing on the forums
20:55.43BluABKbut I suppsoe that's for the 3.5 flasher?
20:56.04chris_anyone knows about binary settings applets here?
20:56.13chris_trying to follow this: http://harmattan-dev.nokia.com/docs/platform-api-reference/showdoc.php?pkn=libduicontrolpanel&wb=daily-docs&url=Li94bWwvZGFpbHktZG9jcy9saWJkdWljb250cm9scGFuZWw%3D
20:56.36jonniBluABK: in 4.5 -l -b only loads if also
20:56.45jonniBluABK: in 3.5 -l -b only loads if also even
20:57.03BluABKjonni: so what do I supply to the -a? The PR 1.1 FISACO .bin file?
20:57.10chris_problem is I dont know what suposed to go into #include "dcpskeleton.h"
20:57.11jonniBluABK: yep
20:57.47BluABKRight, so much for thinking I wouldn't need to re-install my apps all over again.. oh well, not like it's the first time =P
20:59.20BluABK"[x] kernel       [finished   100 %    2708 /    2708 kB    2105 kB/s]" wee!
20:59.25BluABKjonni: Thanks ^^
21:04.14*** join/#harmattan diverse_izzue (~hunzikea@2606ds5-by.0.fullrate.dk)
21:08.00*** join/#harmattan deimos (~deimos@host65-139-dynamic.0-79-r.retail.telecomitalia.it)
21:16.01BluABKWell flashing seems to work, however I keep "bricking" it... Only working flash atm is the FIASCO image using the -F and -f parameters only *sigh*
21:20.12BluABKhttps://pastee.org/qjd43 - flasher output
21:20.19*** join/#harmattan xnt14 (~xnt14@ool-44c62415.dyn.optonline.net)
21:25.48ZogG_laptopjonni: ping
21:25.59jonniZogG_laptop: pong
21:26.21*** join/#harmattan heymaster (~heymaster@78.61.212.188)
21:26.29ZogG_laptopjonni: what oauth library is used on meego?
21:26.38jonniZogG_laptop: no idea
21:26.53ZogG_laptop=\
21:29.59griZogG_laptop: https://gitorious.org/accounts-sso/signon-oauth2 ?
21:30.45ZogG_laptopgri: thanks, have you ever worked with oauth on harmattan?
21:31.11artemmaHi All
21:31.11griZogG_laptop: no, but it should be easy
21:31.23artemmaMy Daily Wallpaper became one of the Qt showcases :)
21:31.24artemmahttp://qt.nokia.com/qt-in-use/ambassadors/project?id=a0F2000000BCYpDEAX
21:31.36artemmalooks cool
21:31.53ZogG_laptopartemma: mazal tov
21:32.02artemmathx
21:32.24artemmaand it eventually works most of the time :D
21:32.53*** join/#harmattan Venemo_N950 (~venemo@fedora/Venemo)
21:34.38griartemma: how long did it take until you got a reply from ambassador application?
21:34.53artemmagri, that was super-fast actually
21:35.28artemmaeverything took less than a week and I know that person caring after it was traveling from Oslo to SF dev days on that week
21:35.29grihmm, I haven't received any reply for 3 weeks now
21:35.42artemmaor well, exactly app review, maybe a little over a week
21:36.03artemmadid you decide to submit your app yourself?
21:36.14Venemo_N950hey gri
21:36.36grihey Venemo_N950
21:36.56griartemma: I only filled out the forms on their website
21:37.27griartemma: but I linked to nokia developer projects which was down from that day until last week :D
21:37.33artemmahmm, I was invited, maybe that causes some difference in timing, though it shouldn't probably
21:37.52Venemo_N950gri, are you "theoriginalgri" on twitter?
21:37.59artemmaoh, being unable to test the project may indeed delay it from being a showcase :)
21:38.05griVenemo_N950: in most cases, yes
21:38.18Venemo_N950gri, in most cases? :P
21:38.48griVenemo_N950: If you curse theoriginalgri or do some voodoo, it's not me
21:39.10Venemo_N950gri, were you able to fetch my .deb?
21:39.46griVenemo_N950: I installed it on the n950 but had no time to actually play with it
21:40.05griI was not able to rotate a part with 2 hands, only one worked for some reason
21:40.09*** join/#harmattan TSCHAKeee (~TSCHAKeee@173.9.2.181-New-England.hfc.comcastbusiness.net)
21:40.55griI think my finger are broken
21:40.59grinow it works :D
21:41.11Venemo_N950gri, it should work. N950 accepts 6 touch points, so I can rotate 3 different pieces at once
21:42.02grithere should be a button that shows me the complete image again, otherwise I might never solve it
21:42.25Venemo_N950gri, just use the tabs and blanks and your logics :)
21:42.43Venemo_N950gri, about the touch issue: all people accidentally tap on the blanks (the cut-out areas), and those are not considered part of the piece.
21:43.20Venemo_N950gri, there's currently no option to reshow the full image, but it's a good idea :)
21:44.15gria one-finger-mode would also be great: for example show a round circle around the piece (like the one google earth has to rotate)
21:45.10grialso cool: drag a piece out of the screen, it never comes back
21:45.40Venemo_N950gri, one-finger mode is something I haven't came up a good gesture for yet.
21:46.00*** join/#harmattan adlan (~adlan@210.195.13.57)
21:46.09Venemo_N950gri, yeah, don't drag 'em out. that's a known issue with the current release
21:46.29Venemo_N950gri, also if you add a custom image, the app will forget it on next launch.
21:47.50Venemo_N950DocScrutinizer, ping
21:48.31pawkyjonni: do you know someone who could tell which different volume levers are used for ringtone compared to playing music?
21:49.52pawkyjonni: in alsamixer that is...
21:51.57pawkyis vim available for the N9
21:52.13Venemo_N950gri, also, what's your opinion about the app's startup time?
21:52.47griVenemo_N950: it starts fast but the framerate inside the application is not perfect
21:53.08MohammadAGVenemo_N950, just a little iOS-y tip
21:53.12Venemo_N950gri, during the game itself or the animations?
21:53.21MohammadAGiOS has a radius around every touch point, so you almost never miss a UI button
21:53.25Venemo_N950MohammadAG, I'm listening as always :)
21:53.45MohammadAGhave an invisible touch-sensitive radius around the puzzle pieces
21:53.46griVenemo_N950: when dragging pieces it appears as not dragging fluently
21:53.53MohammadAGnot something big though,, that would cause problems
21:53.57Venemo_N950MohammadAG, hmmmm dat's a good idea
21:54.18MohammadAGPlease, use proper english :P
21:54.24Venemo_N950gri, how many pieces are there and how many apps are running in the background?
21:54.36Venemo_N950MohammadAG, hmmmm that's a good idea
21:54.37MohammadAGit shouldn't matter
21:54.46ZogG_laptopgri do you think it's only oauth2
21:54.58MohammadAGthe N950 should be able to pilot a nuke while running puzzle-master
21:55.04MohammadAGseriously, it's your code, not the N950 :p
21:55.12griVenemo_N950: no other apps, 4*3 pices
21:55.16Venemo_N950ok
21:55.26Venemo_N950so it's just crappy :) I get it.
21:56.03Venemo_N950I'll see what I can do about it, but I don't have too many ideas about this.
21:56.10gritoo much antialiasing?
21:57.03ajalkaneWhen I have no idea about how to fix it, instead of admitting my own failure I just say "it's open source, why don't you fix it yourself instead of complaining"
21:57.07griZogG_laptop: what are you asking?
21:57.16Venemo_N950gri, no antialiasing at all
21:57.53Venemo_N950gri, I just paint a pixmap and a QPainterPath there
21:58.50ZogG_laptopgri is it only oauth 2.0 or it includes oauth 1.0
21:59.25griZogG_laptop: in the source 1.0 is also mentioned, so it should be both
22:00.22MohammadAGwhile we're talking about antialiasing
22:00.28MohammadAGWTF is it, in 1 sentence
22:00.31Venemo_N950gri, weirdly, the app performs a LOT better since I got rid of QWidgets in it, but still not perfect
22:00.45Venemo_N950MohammadAG, you want to know what antialiasing is?
22:01.07griVenemo_N950: yeah strange there's not so much to see that it should slow down
22:01.28gricalculating average color values of neighbor pixels?
22:01.35Venemo_N950nope
22:01.48Venemo_N950all heavy stuff is done before the game starts
22:02.01grino, I meant that's what I think what antialiasing is :)
22:02.21pawkyMohammadAG: well, when it comes to graphics, its all about making things look less jagged...
22:02.40Venemo_N950well, antialiasing, simply put, means the employment of some technique to make edges appear smoother.
22:03.19interiorcrocodilis there an android logcat equivalent for n9?
22:03.22pawkyMohammadAG: http://en.wikipedia.org/wiki/Anti_aliasing
22:17.24*** join/#harmattan tarantism (~admin@cpc1-cmbg4-0-0-cust285.5-4.cable.virginmedia.com)
22:23.31MohammadAGinteriorcrocodil, syslog
22:23.49MohammadAGthe standard linux syslog
22:27.05interiorcrocodilMohammadAG: what if system hasn't fully booted yet
22:27.19interiorcrocodilcan it output messages through usb?
22:28.24*** join/#harmattan zk8 (~tester@p54B91FC9.dip0.t-ipconnect.de)
22:29.23*** join/#harmattan heymaster (~heymaster@78.61.212.188)
22:30.45*** join/#harmattan heymaster (~heymaster@78.61.212.188)
22:32.00*** join/#harmattan heymaster (~heymaster@78.61.212.188)
22:33.36*** join/#harmattan heymaste_ (~heymaster@78.61.212.188)
22:35.03*** join/#harmattan heymaster (~heymaster@78.61.212.188)
22:41.18*** join/#harmattan npm (~npm@cpe-76-90-30-220.socal.res.rr.com)
22:49.21*** join/#harmattan heymaster (~heymaster@78.61.212.188)
22:51.35*** join/#harmattan javispedro (~javier@Maemo/community/contributor/javispedro)
23:02.16*** join/#harmattan CepiPerez (~matias@201.250.126.246)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.