IRC log for #harmattan on 20120711

00:04.15*** part/#harmattan antman8969 (~anthony@pool-72-80-187-25.nycmny.fios.verizon.net)
00:17.15*** join/#harmattan luke-jr (~luke-jr@2001:470:5:265:222:4dff:fe50:4c49)
00:24.58*** join/#harmattan heymaster (~heymaster@78.61.212.188)
00:34.49*** join/#harmattan nibbler (~nibbler@2001:4ce8::)
00:59.17*** join/#harmattan keitsi (mikko@korkalo.fi)
01:19.27*** join/#harmattan adlan (~adlan@115.85.128.54)
01:23.46*** join/#harmattan eman (~eman@202.4.232.249)
01:37.27*** join/#harmattan eman (~eman@202.4.232.249)
01:42.37*** join/#harmattan beford (~fernand0@unaffiliated/beford)
02:34.32*** join/#harmattan GAN900 (~user@72.187.33.69)
02:34.32*** join/#harmattan GAN900 (~user@Maemo/community/contributor/GeneralAntilles)
02:41.44*** join/#harmattan natunen (~nalle@213-186-240-19.bb.dnainternet.fi)
04:07.24*** join/#harmattan xarcass (~igorsazon@195.93.246.10)
04:08.53*** join/#harmattan gambitrex (badc410a@gateway/web/freenode/ip.186.220.65.10)
04:10.21gambitrexhello, I have some doubts about an account plugin (qml) named waxmppplugin
04:10.27gambitrexanyone can help?
04:10.47gambitrexactually, is this the right place?
04:11.21itsnotabigtruckgambitrex: i'm guessing the wa is whatsapp?
04:11.29itsnotabigtruckand about as good as any, really
04:11.48gambitrexyes
04:12.19gambitrexFirst: really noob in Qt here. I need to build an app, and I like very much the UI from Wazapp.
04:12.49gambitrexSo I am looking the source code, and the author says it's called waxmppplugin
04:13.21gambitrexI tought it was an "official" plugin or something
04:13.38gambitrexbut as you're saying, seems like he did all by himself
04:13.41gambitrexis that correct?
04:14.24gambitrexactually my app will show all contacts as well, so that's why I was trying to use the same plugin or something
04:15.29gambitrexI just finished the "background" part (retrieve all contacts based on a search criteria, and a lot of other stuffs), now I need to show all contacts (name and picture) in a list
04:15.31itsnotabigtruckit's certainly not official in any way
04:15.39gambitrexI see
04:15.45itsnotabigtrucki don't know much about it, i wasn't even aware the source was out
04:16.08gambitrexyes, it is: https://github.com/tgalal/wazapp
04:16.19itsnotabigtruckwhat sort of application is this
04:16.28itsnotabigtruckthe proper way to do an im app is to write a telepathy "connection manager"
04:16.34itsnotabigtrucki.e. a backend that connects to an im network
04:16.43gambitrexno, it's not an IM
04:17.03gambitrexbasically, here in Brazil (some states) there will be added a new digit in phone numbers
04:17.16gambitrexit was 8-digit, now will be 9-digit
04:17.32gambitrexso people will need to manually change their contacts
04:17.41gambitrexadd '9' before the number
04:17.45itsnotabigtruckoh lovely :p
04:17.59gambitrexand I want to help people to do that change
04:18.02itsnotabigtruckso why an accounts plugin? i think you can just make a utility that loops over all your contacts and puts in a 9
04:18.16gambitrexno, because there are some rules
04:18.19gambitrexnot all numbers
04:18.20itsnotabigtrucki think contacts are stored in tracker, which is a much-hated sql database
04:18.27gambitrexonly cellphones and only a few states
04:18.36gambitrexno problem, I am able to do that already
04:18.54gambitrexI spent some hours to do that, and that part is done
04:19.20gambitrexconsider that only phones from some area (states) will be changed
04:19.47gambitrexeg phones that start with 011-XXXX-XXXX will be 011-9XXXX-XXXX
04:19.56gambitrexthat I can do, no problem
04:19.57gambitrexBUT
04:20.23gambitrexyou can save the phone number WITHOUT the area code, so phone numbers like KKKK-KKKK could be from area 11 or not
04:20.52gambitrexso, for that number, I need to allow the user to decide if that number is from someone from *given* state or not
04:20.59gambitrex:)
04:21.26itsnotabigtruckwhere does the account plugin come in...
04:21.37gambitrexfor that, I can list all contacts. Once you tap a contact, I show the phone numbers for that contact, and you can select or not that phone number
04:21.40itsnotabigtruckthis still sounds like a one-time thing the user runs that's separate from any account stuff
04:21.43itsnotabigtruckkeep it simple!
04:22.05gambitrexbut the user must select the phone number by contact that will be changed
04:22.09itsnotabigtruckcould make it a nice gui app that prompts the user when it's time to make some hard decisions
04:22.41gambitrexnot sure if you get it.
04:22.49gambitrexfor example, someone named Jack
04:23.06gambitrexJack is from area 11, and he has 3 phone numbers in my contact
04:23.32gambitrexJack_Phone1 is 011-XXXX-XXXX <== for that I can automatically change
04:24.19gambitrexJack_Phone2 is YYYY-YYYY <== I cannot tell if I should add a new digit or not, because 1. I dont know if it's a cellphone and 2. I dont know if it's from area 11
04:24.43gambitrexso, for all people, I show them in a list (THE PLUGIN)
04:24.59itsnotabigtruckoh ok...maybe the name threw me off
04:25.07itsnotabigtrucki thought you were talking about an accounts plugin
04:25.11gambitrexand then the user selects for ALL contacts the phone number that will be changed
04:25.12itsnotabigtruckthe thing that shows up in the accounts app
04:25.20itsnotabigtruckwhat you want is a gui that lists contacts
04:25.25itsnotabigtrucka la wazapp
04:25.29gambitrexyes
04:25.31gambitrexthe plugin!
04:25.36itsnotabigtrucknot a plugin
04:25.43itsnotabigtruckwell, should be a matter of studying the wazapp code and the nokia docs
04:25.50itsnotabigtrucksounds like you're most of the way there with the tracker stuff
04:26.35gambitrexyes, but I tought that there was a plugin or something, that allows me to show a list of contacts out-of-the-box
04:26.48gambitrexpretty much like a button is out-of-the-box, for example
04:26.55gambitrexin QtCreator
04:27.03gambitrexdid I made myself clear?
04:27.23itsnotabigtruckdon't think so, but again, look through the wazapp code :p
04:27.30itsnotabigtrucki didn't write it >_> but tgalal did
04:27.32itsnotabigtruckhe isn't here much though
04:27.45itsnotabigtrucki think he only shows up to ask questions, isn't into the whole harmattan social scene :p
04:27.56gambitrex:)
04:28.41gambitrexOK, I will look the source code... it's quite complicated to me, because I started to play with Qt today, so it will take some time
04:28.51gambitrexand BTW, I really suck to build UI
04:29.05gambitrexthank you for your time and patience
04:30.04gambitrexalso, do I need to ask him permission to use any snippets from his code?
04:30.26itsnotabigtruckwhat license is it under
04:30.35gambitrexdont know, lemme check
04:30.42itsnotabigtruckif it's some variety of gpl, be advised of the implications of transferring any code
04:31.05gambitrexgpl2
04:31.10itsnotabigtruckif it's a permissive license like mit or bsd, do whatever you want with the code as long as you copy the license banner including copyright statement into each file that the code touches
04:31.28itsnotabigtruckok, so your entire program has to be gpl2 or gpl3, if you incorporate wazapp code
04:31.40itsnotabigtruckand the files that contain wazapp code need to include tgalal's copyright line plus your own
04:31.52itsnotabigtruckall files need to have the gpl comment header with copyright lines
04:32.11gambitrexok then. will do that
04:32.13gambitrexthanks again
04:32.42itsnotabigtrucklater!
04:32.59itsnotabigtruckof course if you don't actually incorporate wazapp code you can do whatever
04:33.19itsnotabigtruckwell, generally speaking
04:34.19gambitrexyes, I think I will use the *idea*, but it will be different
04:34.27gambitrexI will use the code to learn about the elements
04:34.33gambitrexand events (onClick, and so on)
04:35.02gambitrexbut I like the scrollbar, and another stuff
04:35.05gambitrexlet's see
04:35.06gambitrex:)
04:46.46*** join/#harmattan leinir (~leinir@188.182.117.102)
04:46.46*** join/#harmattan leinir (~leinir@amarok/usability/leinir)
04:52.13befordhi
04:56.35gambitrexhi
04:57.45befordsup
04:58.15gambitrexnothing new, u?
05:05.45*** join/#harmattan denism (~mdn@host-109-204-180-70.tp-fne.tampereenpuhelin.net)
05:10.45befordnot much
05:10.52befordoh GA fixed his n950?
05:10.58*** join/#harmattan GAN950 (~ryan@li180-106.members.linode.com)
05:23.41itsnotabigtruckbeford: he did?
05:23.51itsnotabigtruckearlier today he was having major trouble with it
05:24.15befordGAN950 == GeneralAntilles
05:24.23befordso I guess he did it :p
05:24.36befordyea
05:35.28*** join/#harmattan ab (~ab@pdpc/supporter/professional/ab)
05:38.14*** join/#harmattan artemma (~artem@a88-114-227-142.elisa-laajakaista.fi)
05:45.13itsnotabigtrucknight!
05:53.13*** join/#harmattan gabriel9 (~gabriel9@214-128-241-92-bl.cable.dyn.broadband.blic.net)
05:57.27*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
05:58.46niwakameanyone using QSettings here?
06:01.23niwakameSometimes it's not saving for me
06:02.00ieatlinti use it, works for me
06:02.34ieatlintnote that it's per user though... running something via qtcreator on the phone will store things into a different db vs running it as a user on the device
06:03.21niwakamereally? the config file is created in user .config dir for me while using QtCreator
06:04.03ieatlintthat's unusual, as qtcreator logs in as 'developer'
06:04.20niwakameBut sometimes the values are simply not stored, I read up yesterday to destroy the QSettings object, because it will write out when being deleted
06:04.54ieatlintjust make sure you set the parent for qsettings
06:05.05ieatlintyou don't need to destroy it yourself explicitly
06:06.23niwakameThing is here I want to separate the code a bit and created a own settings class which does other things, but primarily uses QSettings
06:06.28niwakameand I want that to be persistent
06:07.18niwakameyou're right btw about /home/developer/.config
06:07.26niwakame;)
06:07.59ieatlintyeah, just commented in the chance that could somehow be the issue
06:08.18ieatlintok, so it sounds like qsettings isn't being destroyed correctly
06:08.31niwakameI have getter and setter methods for the properties
06:08.32*** join/#harmattan rnovacek (radek@nat/redhat/x-ssbubviomfrtxlgv)
06:08.40niwakameand now I'll try something like...
06:08.53niwakameQSettings settings(a, b);
06:08.57ieatlintdoes your custom class for settings that includes a qsettings object inherit qobject?
06:09.17niwakamejup
06:09.39niwakamebut before it wasn't destroyed anyway
06:09.42niwakameonly on app exit
06:09.43ieatlintare you setting the parent when you create the instance of your custom class and when you create the qsettings class?
06:10.15ieatlintalso, qsettings should be kept to a pointer
06:10.42niwakameok it was before...hmmm I think I missed to pass the parent to QSettings directly
06:11.01ieatlintwell, without a parent set or you explictly destroying it, the qsettings deconstructor will never be called
06:11.24ieatlintit'll be treated like leaked mem, simply freed
06:11.36niwakamewill the QSettings class cache all changed values?
06:12.14ieatlintnot sure, don't know the internals of it really
06:12.28niwakameok then I'll fix up the parent and try again
06:12.52ieatlintyeah, it's a good place to start regardless.. good programming practice
06:13.30niwakameWell Qt is somewhat new for me
06:13.50ieatlintthe parent is used for garbage collection
06:14.19ieatlintgood practice says any qobject should be a pointer and have a parent set,
06:14.31niwakameI'm just used to having that being set inexplicit upon creation in other langs
06:14.38ieatlintif the parent is set, then you don't have to worry about it being destroyed on exit
06:14.41niwakamemaybe a problem, but I'll keep your advice in mind :>
06:15.02*** join/#harmattan grande_m (~grande_m@84-231-62-49.elisa-mobile.fi)
06:15.24*** join/#harmattan Siosm (~quassel@2a01:e34:ed1a:c410:226:55ff:feb3:9c79)
06:16.20ieatlinti came from c where it felt dirty to pull things from the heap and let something else delete/free them, you get used to it :P
06:17.58niwakameI only do scientific Java and C# programming for a living
06:18.05niwakameSo it's the other way around xD
06:18.40*** join/#harmattan JackaLX (~steve@bastard.steveyoungs.com)
06:18.41*** join/#harmattan JackaLX (~steve@sxemacs/project-lead/JackaLX)
06:18.49niwakameBut it's good that segfaulting isn't as easy as in C
06:19.30*** join/#harmattan GAN950 (~ryan@li180-106.members.linode.com)
06:19.35ieatlinthah, yeah
06:20.05niwakameshould I use the QApplication as topmost parent?
06:20.18ieatlintwell, another reason to keep qobjects in pointers.. put a qobject on the stack with a parent set, and you'll get a segfault :)
06:21.05ieatlintnah, qapplication isn't a qobject
06:21.39ieatlintthe top level qobject won't have a parent set
06:22.28ieatlint(the top level qobject you typically also leave on the stack [ie, no pointer])
06:22.39niwakameah ok
06:23.07niwakameusing new just seems more natural to me :>
06:23.47ieatlintthe deconstructor won't get called if you use 'new'
06:24.53niwakameyou mean at the topmost level?
06:25.19ieatlintyes
06:25.45niwakameyeah therefore my intuition was to tie it to QApplication ^^
06:26.07niwakameBut this should be okay with using stack now...
06:26.16ieatlintthe top level qobject has its deconstructor called when the program exits, and it then calls the deconstructor of all of its children, who call the deconstructor of their children, etc
06:27.27niwakameI only have to supply references now, because I have to use one QSettings object there and not multiple instances
06:28.00niwakameoh gosh, this xchat theme is giving me visual illusions
06:28.53befordhttp://www.kickstarter.com/projects/ouya/ouya-a-new-kind-of-video-game-console
06:29.52niwakamehuh
06:30.49niwakameit will definitely bring pixel memories to remember to kids playing on this
06:31.39niwakameIt's sad that nowadays youth is all about graphics realism when you grew up on Turrican or Monkey Island :>
06:44.33*** join/#harmattan nid0 (nidO@dsl-fixed-94-30-53-17.interdsl.co.uk)
06:53.51niwakameieatlint: works! thanks!
06:55.08ieatlintnie :)
06:55.10ieatlintnice
06:55.13*** join/#harmattan gabriel9|work (~quassel@79.143.160.58)
06:55.42niwakame:)
06:59.17*** join/#harmattan bef0rd (~beford@unaffiliated/beford)
07:02.01*** join/#harmattan tom_ (~tom@93.186.149.42)
07:02.47*** join/#harmattan valdur55 (~valdur55@84-50-136-224-dsl.rkv.estpak.ee)
07:03.55*** join/#harmattan vladest (~Vlad@195.238.93.36)
07:09.53*** join/#harmattan GAN950 (~ryan@li180-106.members.linode.com)
07:12.46*** join/#harmattan tbf (~mathias@p57A9EA01.dip.t-dialin.net)
07:14.56vladestieatlint: running app under qtcreator means running for different user ie different settings location
07:16.25*** join/#harmattan mikelima (~mikelima@net-2-33-166-248.cust.dsl.teletu.it)
07:16.50niwakamevladest: he told me already :)
07:17.06vladestok :)
07:17.55niwakameproblem was only that I didn't do the parent structure right and therefore it wouldn't write out changes due to not being destroyed but garbage collected
07:22.42niwakameOk let's prepare for picking up my RaspberryPi :>
07:25.08*** join/#harmattan artemma (~artem@83.145.245.61)
07:27.11*** join/#harmattan aparaatti (5bdf6b23@gateway/web/freenode/ip.91.223.107.35)
07:37.31*** join/#harmattan jaywink (~jaywink@pub-nat.haaga-helia.fi)
07:48.13*** join/#harmattan Brownout_ (~brownout@unaffiliated/brownout)
07:52.45*** join/#harmattan e-yes (~e-yes@94.25.130.1)
07:53.53*** join/#harmattan jreznik (jreznik@nat/redhat/x-pbgtpoefeqxssxne)
07:59.25*** join/#harmattan Brownout (~brownout@unaffiliated/brownout)
08:11.00*** join/#harmattan Shaan7 (~shantanu@kde/developer/shantanu)
08:13.32*** join/#harmattan aquarius (~aquarius@cpc5-dudl10-2-0-cust29.wolv.cable.virginmedia.com)
08:44.53*** join/#harmattan tbf_ (~mathias@p57BD71C9.dip.t-dialin.net)
08:46.02*** join/#harmattan rigo (~rigo@ANancy-551-1-105-18.w92-130.abo.wanadoo.fr)
09:02.39*** join/#harmattan arcean (~Arcean@aaer3.neoplus.adsl.tpnet.pl)
09:08.37*** join/#harmattan Brownout (~brownout@unaffiliated/brownout)
09:09.24unreal-hello internet!
09:11.11unreal-i've got an interesting bug since i updated to 1.3: if I open the store, select any app, and choose "Reviews", the loading icon goes around and around, and nothing ever loads
09:14.30jreznikunreal-: it was broken before pr 1.3, at least for me (if I understand it correctly)
09:15.14unreal-mmmm, well it seems it's the other way around for me
09:15.33unreal-because it used to work (pr 1.2), and now it does not (pr 1.3)
09:15.48rigounreal, have the same bug
09:16.04unreal-oh good! i'm not alone!
09:16.42unreal-no workaround?
09:20.04unreal-<joke>maybe they'll fix it in 1.4</joke>
09:21.22gabriel9|worki also have that bug :/
09:21.41gabriel9|workmaybe the issue is in store(server side)
09:22.46phakounreal-: it was already broken on 1.2, this is a apparently a server-side bug
09:27.29*** join/#harmattan clau (~clau@mordor.getodata.ro)
09:30.38*** join/#harmattan xmlich02 (~imlich@2001:67c:1220:80c:21c:c0ff:fe18:9398)
09:33.50rigosince 1.3 my N9 shows the 3G symbol on top, but isn't connected. This is weird.. rebooting
09:38.59*** join/#harmattan denism1 (~denism@host-109-204-226-3.tp-fne.tampereenpuhelin.net)
09:51.22mf2hdrigo: mine did the same today, 3g symbol switched between white and blue and internet connection was broken. Rebooting did not help, but problem went away by itself after ~30min
09:52.10*** join/#harmattan thetet (~raggam-nl@ELE-130.mur.at)
09:54.35unreal-i believe i had that bug as well
09:54.59unreal-it's nice to see nokia has added some new bugs ;)
09:56.32mf2hdaye :/
09:56.40mf2hdsomething new at least :P
09:57.15unreal-at least we get value for money ;)
09:57.51unreal-(but the be quite honest, PR1.3 is a good release, I have very few bugs left)
09:59.04unreal-if PR1.4 is ever released, i'll defintely wait for user feedback before updating, because 1.3 is working fine
10:00.05mf2hdyeah, but imho that 3g bug is quite bad
10:00.18mf2hdworst this far
10:01.38unreal-euh, for me the killer bug was PR 1.2 ;)
10:01.43unreal-worst bug ever :p
10:03.49*** join/#harmattan M4rtinK (~M4rtinK@mail.melf.eu)
10:05.35mf2hdi skipped 1.2 :P
10:06.05unreal-:)
10:06.07mf2hdtried once and updater was screwed allready just with additional repos so, ty bye cya thx... ;)
10:11.04*** join/#harmattan Necrosporus (~Necrospor@unaffiliated/necrosporus)
10:12.52*** join/#harmattan eman (~eman@202.4.232.249)
10:14.26*** join/#harmattan faenil (~faenil@131.114.171.161)
10:21.21paunreal-, i dont know what you are talking about
10:21.26pa1.2 was working fine for me
10:22.09pa1.3 sucks, phone goes slower and the battery lasts 30% less
10:22.14unreal-well for me it didn't fix one single bug i was having, and was a slow as hell
10:22.28unreal-at least 1.3 fixes some bugs
10:22.38pafor me 1.3 is way slower than 1.2
10:22.44paeven the ui is not smooth anymore
10:22.54unreal-euh
10:23.04unreal-i do not agree
10:23.12pamaybe i have to reflash, then
10:23.26pai will try, as soon as i will feel brave enough to reinstall the apps
10:24.23*** join/#harmattan aboyer (~quassel@unaffiliated/aboyer)
10:26.21clauhi, does anybody know if icd2 is opensource?
10:26.48mf2hd13:22:09 < pa> 1.3 sucks, phone goes slower and the battery lasts 30% less
10:27.24mf2hdi think too that there is some more powerdrain than before
10:27.41SpeedEvilclau: It i not
10:27.44SpeedEvils
10:27.47clau:(
10:27.55clauI am trying to automate openvpn on n9
10:28.08*** join/#harmattan deztruct0r (~deztruct0@a91-152-69-234.elisa-laajakaista.fi)
10:28.36clauand right now it connects automatically when an interface comes up, icd2 notifies the rest of the system of the new connection before openvpn establishes a connection and the mail app will give an error
10:28.47clauit recovers after a few minutes, but it's still a bit unpleasent
10:28.57mf2hdpowerdrain could be related to 3g bug?
10:29.08clau*unpleasant
10:32.20*** join/#harmattan ghjgfjghjbn (~jdfgf@c-67-173-179-137.hsd1.il.comcast.net)
10:38.33*** join/#harmattan ZogG_laptop (~ZogG@bzq-109-65-230-179.red.bezeqint.net)
10:42.26pamf2hd, i dont think so
10:42.32pai have the device in 2g mode
10:42.38paand even in flight mode, it does it
10:42.50pabut it seems to me that the ui is also slower now
10:42.56paanimations are not smooth anymore
10:43.13pabut i upgraded ota, maybe i should try to reflash before confirming
10:43.26pathe problem is reinstalling all the apps
10:45.54*** join/#harmattan rigo (~rigo@ANancy-551-1-105-18.w92-130.abo.wanadoo.fr)
10:48.00rigonow 3G connected for the first time fine in roaming
10:48.53rigobut with SFR it doesn't connect
10:48.57*** join/#harmattan Arkenoi (~ark@swsoft-msk-nat.sw.ru)
10:49.33rigoeven if I disconnect, it doesn't stop the idle
11:13.35NecrosporusIs it true all the harmattan developers are fired from Nokia?
11:14.08NecrosporusNokia N9 would be good, but it doesn't have hardware keyboard
11:14.29NecrosporusAnd N950 is not available for buyers
11:14.41NecrosporusAlso microsim and no microSD
11:15.22denism1"harmattan developers are fired from Nokia" - it is absolutely not true.
11:15.36denism1I have a lot of friend who have worked for N9 and who is still employed by Nokia
11:17.01vladestdenism1:  ask your friend when we will get pr1.3 for n950 plz
11:17.10vladestfriends
11:17.36*** join/#harmattan arcean (~Arcean@aacr158.neoplus.adsl.tpnet.pl)
11:17.36denism1vladest: I have not said that they are working for Harmattan _now_ :) They are working for Nokia :)
11:18.29vladestdenism1: learning .net and html5? :>
11:18.47denism1vladest: :)
11:19.00Lava_Croftadaptation is a good thing
11:19.24vladestits not adaptation, its rolling back
11:19.33Lava_Croftits adaptation
11:19.51Lava_Croftviews on wethers its forwards of backwards differ
11:19.53vladestin terms of new modern Nokia - yes.
11:20.05vladestin terms of personal growth - no
11:20.08Lava_Croftin terms of mainstream smartphones, its forward
11:20.28Lava_Croftbut in terms of common sense mobile computing, wellll
11:20.30vladesthates mainstrems
11:20.33Lava_Croft:<
11:20.36vladestmainstreams
11:21.40mf2hdpa, i installed via flash and i dont have any ui lag issues more than before, but batterydrain is worse than before
11:33.40unreal-BTW, i don't understand why OTA updates should be a problem for nokia
11:33.59*** join/#harmattan lildeimos (~lildeimos@95.236.25.218)
11:34.03unreal-they use apt, it's tried and tested technology... what are they doing wrong?
11:34.46pagood question
11:34.53denism1yes it is tried and tested technology - and there are hundreds of ways to mess up the device
11:34.54pabut it's the same on ubuntu or debian
11:35.13pawhen you do distribution upgrade, it can well happen that your distro gets messed up
11:35.35paeven they always suggest to do a clean installation
11:42.38jonnimost of the times it works, usually failures are end users fault as they have added custom repoes, inception/system-ui etc.
11:46.13jonniota works for people who never have enabled developer mode, and in the other hand if you have enabled developer mode, you are expected to solve the problems that you caused yourself :)
11:47.36*** join/#harmattan rigo (~rigo@ANancy-551-1-105-18.w92-130.abo.wanadoo.fr)
11:47.45pajonni, so performance should be as fast as reflashing?
11:47.56pacoz here it seems slower
11:48.33jonnipa: I havent noticed any performance or battery impacts on PR1.3. Usually after PR update tracker might take some more cpu cycles for few days.
11:49.58jonniofcourse on ota update, you have all your custom old applications as payload, so ofcourse full reflash will be faster, since it has less background processes.
11:51.16jonnibut ofcourse you can rebuild your tracker db from scratch, use fastern n9 or compcache kludges to speedup even more.
11:51.58Lava_Croftmeh
11:52.04Lava_CroftI have to mail my broken N9 to Nokia
11:52.13Lava_Croftapparently, they are closing ALL their Care Points in the Netherlands
11:52.16Lava_Croft:<
11:53.19rigopresence costs money. And with the Windows phones there is no presence needed anymore
11:55.48*** join/#harmattan trx (~ns-team@93.87.57.249)
11:56.13Lava_Crofti wonder if when i states that it rains outside
11:56.20Lava_Croftpeople on IRC will start to explain the cycle of water to me
11:56.21Lava_Croft;)
11:56.39Lava_Crofti dont think your logic is exactly true either
11:56.47Lava_Croftthe thing is, presence needs a reason
11:56.55Lava_Croftif you sell 20 phones a year, who needs a Care Point in every city
11:57.08Lava_Croftrephrase: 20 phones that you actually support
11:57.12rigoif you think it to the end, there will remain one office with hardware designers in Helsinki and that's it. Production is in China by sub-corps that produce chips on demand
11:57.25Lava_Croftnaturally
11:57.38Lava_CroftNokia is lagging so much behind that by the time Apple moved all factory work to the US
11:57.46Lava_CroftNokia just finished moving all the factory work to China and Vietnam orso
11:57.47Lava_Croft;)
11:58.03Lava_Crofti will miss the care points tho
11:58.15Lava_Croftit was nice to be able to put a face to the giant
11:58.28Lava_Crofteven tho that someone rarely knew shit about maemo devices that you brought in
11:58.41Lava_Croftnokia care guys helped me out tremendously with getting my N900 back
11:58.51Lava_Croftand i mean the local Care Point people
11:59.01*** join/#harmattan lizardo (~lizardo@201.76.96.77)
11:59.12Lava_Croftthe actual nokia care facilities are full of robots that dont like me as a customer
11:59.17unreal-and during that time apple is busy putting apple stores everywhere with people that do know how to fix the products they sell
11:59.27Lava_Croftand just want to send me symbian^3 or lumia devices in exchange for my broken Maemo devices
11:59.30unreal-nokia win
11:59.33Lava_Croftunreal-: :)
12:00.24unreal-i'm not absolutely sure, but it would seem apple's strategy is in fact paying off
12:01.01unreal-Lava_Croft: however nokia's response is logical
12:01.15unreal-if you have nothing to sell that anyone wants to buy
12:01.23unreal-you don't need customer support
12:01.43Lava_Croftunreal-: I didnt think i was mentioning the closing down in any way that made people think i didnt understand why they were closing down
12:01.47Lava_Croftbut yeah, you are right
12:01.48unreal-because that would indeed assume you're actually selling something
12:02.13unreal-nokia has fixed the "customer support" problem
12:02.19Lava_Crofti didnt even use a question mark
12:02.26Lava_Croftnokia itself always was horrible with customer support
12:02.47Lava_Croftit were the local care point folks, who werent actual Nokia employees, who were nice
12:03.01Lava_Croftthats why im a bit sad about the care points closing down
12:03.20Lava_Croftnow i have to communicate directly with the 'central' Nokia Care here in the Netherlands
12:03.27Lava_Croftand those people cost me about 6 months to get my N900 back
12:04.44clauregarding moving the production in China... I bought a Nokia N9 white not long ago, it was made in Finland
12:04.56clauand, sorry to say, it was a piece of crap
12:05.11clauI had it returned, and bought later a Nokia N9 black, made in China
12:05.21clauand it works as it is supposed to
12:05.58clauthe one made in Finland had the following problems: dust got into the back camera
12:06.02Lava_Croftapparently, it seems that the better N9's are produced in China
12:06.05Lava_Croftfrom what i read here and there
12:06.12clauthe vibrator made a sound like it was broken
12:06.14Lava_Croftmy camera broke:<
12:06.25clauyeah, it looks like it and it makes me sad
12:06.43Lava_Croftoh, i dont care where its produced at all
12:06.45clauI specifically wanted one made in Finland, to avoid helping them exploit the people on the other side of the world
12:07.04Lava_CroftWhat are those people on the other side of the world going to do without a factory making Nokia phones
12:07.05claubut you know, only if the quality is the same or better
12:07.07Lava_Croftgrow rice?
12:07.15Lava_Croftits exploitation, but its not one-sided
12:07.28clauagreed, but still we're talking about double standards and so on
12:07.42Lava_Croftdouble standards are prevalent throughout our world
12:08.01Lava_Crofti can't really be bothered by that
12:08.26clauoh well, I would care more if they'd actually produce quality good in Europe
12:08.40clau*goods
12:08.54clauafter that I couldn't even find another N9 White
12:08.56Lava_Croftthat would cost you quite a bit more
12:09.03Lava_Crofteuropeans are whiners
12:09.07Lava_Croftand they have unions
12:09.13clauI waited about 2 months to get the first one, and I couldn't find a replacement
12:09.18*** join/#harmattan blueslee (~blueslee@ip-109-84-0-88.web.vodafone.de)
12:09.29clauI am a member of the working class too, you know :)
12:09.36clauI won't complain about being socially protected
12:10.03clauthough, in Romania I'm protected only theoretically
12:10.05Lava_CroftI live in the Netherlands
12:10.14Lava_Crofti can just go outside naked and masturbate in front of someone
12:10.17Lava_Croftand my life is set
12:10.18clau=))
12:10.20Lava_Croftnever work again
12:10.31clauawesome :)
12:10.32Lava_Croftchina is a bit different:)
12:10.47clauhehehe
12:11.32clauregarding n9, and specifically meego, what's the news? any future at all? :(
12:11.56clauconsidering what I found on the web the future is not too good
12:13.01clauthe only encouraging news I found recently is this: http://linux.slashdot.org/story/12/07/07/2036239/ex-nokia-staff-to-build-meego-based-smartphones
12:13.14claudoesn't yet mean much for n9 owners though
12:13.28Lava_Croftthere is Jolla indeed
12:13.42Lava_Croftfor the N9, i dont really think anyone here knows
12:13.53Lava_Crofti dont even think most people inside nokia know:<
12:13.57clau:(
12:14.13jonnifor harmattan its save to say that N9 is the last product that it will see.
12:14.19Lava_Croftoh, totally
12:14.20jonnisafe
12:14.24Lava_Croftits the last maemo device ever
12:14.27clauyeah, no doubts about it
12:15.43Lava_Crofthttp://www.intomobile.com/2012/07/11/interview-jussi-hurmola-ceo-jollamobile-audio-and-text-available/
12:16.22clauthanks
12:31.17pafor n9, your best bet of development is nitdroid
12:31.39paand those open projects to run android and tizen apps on harmattan
12:31.57pas/development/future
12:32.25pai wonder whether it will ever support camera/gps/other sensors , tho
12:34.25clauwhat about mer project?
12:38.20Lava_Crofti rather not use N9 than use nitdroid on it
12:39.13fluxis it reasonable to write a project that target both harmattan and android? can they share any code?-)
12:39.35pawhy?
12:39.51pawhats wrong with nitdroid?
12:40.09Lava_Croftits droid
12:40.37paat least its not abandoned :)
12:41.02Lava_Croftdoesnt make it any better
12:41.55jonniflux: yes is reasonable, if you write qt/qml application to harmattan, then it should also for in android (if the device has installed Necessitas)
12:42.08fluxah, forgot about that
12:42.10jonnishould work even
12:42.32fluxit seemed pretty complete the last time I saw a video of it
12:45.04clauseems like mer supports n9 too: https://en.wikipedia.org/wiki/Mer_%28operating_system%29#Supported_hardware
12:45.36denism1clau: as I understand, mer does not have any UI
12:45.43clau:|
12:45.53Lava_Croftmer is just the OS core, anyone else can put anything else on top of it
12:45.58Lava_Croftwell, 'just'
12:46.17ArkenoiI see just no reason to stick with Nokia hardware if you run android anyway
12:47.01Elleonemo is mer + a ui
12:47.07Stskeepsplus a hw adaptation
12:47.23ElleoIt's just the old MeeGo handset ui though iirc
12:47.32Stskeepsnot 'just'
12:47.35Stskeepswe actually polished a fair bit
12:47.38claucheck this: http://wiki.merproject.com/wiki/Nemo
12:47.40Elleooh cool
12:48.34GeneralAntillesBack to an analog watch. Boo!
12:52.48clauso, nemo is a possible alternative for the future, if nokia drops support entirely
12:55.06unreal-14:31 < pa> for n9, your best bet of development is nitdroid <-- it's a long long way from being a useable OS :/
12:55.23unreal--OS +ROM
12:55.32jonnifor N9 best development env is harmattan
12:56.11unreal-i like android, but seriously, what use is a rom without GPS or phonecalls?
12:56.44unreal-pa: we've seen many many many android ROM that went nowhere
12:57.12unreal-so until nitdroid slows it's going somewhere, the best bet for the n9 is harmattan
12:57.20unreal-shows
12:57.27clauI didn't buy n9 to run android on it :|
12:57.34unreal-me neither
12:58.01unreal-but I would like to see a decent ICS/JB ROM for it...
12:58.23clauI wonder if the hw is enough for ics
12:58.28unreal-yes
12:58.29clauany clue?
12:58.32clauI see
12:58.48unreal-I have ICS running on a really old Motorola Milestone
12:59.02unreal-it's slow because 256MB of RAM
12:59.05pawell nitdroid runs well, except for what it doesnt support
12:59.25unreal-the n9 would run android without any problem
13:00.04unreal-has anyone been looking at this: http://android.doshaska.net/cm9 ?
13:00.20pabut if i were google, i would help the project. after all their plan for android 5 is to being installable almost everywhere, coz they want to enlarge their userbase
13:00.26unreal-the milestone does have some common stuff with the n9
13:00.41unreal-like the GPU, DSP and stuff
13:00.54payea, i think the hardest part will be the camera
13:01.00pabut i dont know, im not a kernel hacker
13:01.24unreal-nadlabak has got the latest TI GPU drivers working on the milestone, and almost the video dsp working
13:01.36unreal-there's months and months of work there
13:01.54clauis there any particular reason why we shouldn't put our hopes in nemomobile?
13:02.42unreal-clau: a didn't but the n9 because it was running linux, i didn't buy it because it was running meego/maemo
13:02.58unreal-i bought it because the swipe interface was so beautiful
13:03.27clauyeah, it is. and it's a shame it will be lost :(
13:03.41unreal-so unless someone manages to produce another beautiful interface, what's the point?
13:04.21claumyeah, I can understand that
13:04.57unreal-who cares what's running underneith, what matters is that the SDK allows dev to right beautiful apps, and that the UI is beautiful
13:05.03unreal-write
13:05.11unreal-(i need more sleep!)
13:05.53paunreal-, well, a big plus of harmattan is that it's a linux
13:05.54clauI can tell you one thing, n9 was the last nokia phone I will own
13:06.06payou have tons of tools and utilities that you can compile&&use
13:06.48unreal-never been a big nokia fan... but i was so amazed by the swipe interface, i needed one the instant i saw it
13:07.00pawell indeed
13:07.20pai am a bit disappointed that jolla will drop it without even trying to get the IP to keep it
13:07.21MohammadAGwooo
13:07.22MohammadAGhttp://pastebin.com/raw.php?i=RtsfPxLn
13:07.48padoes it work out of the box?
13:07.54Arkenoipa, i doubt Elop will let it go or it is even worth trying
13:07.58unreal-pa: the HW is pretty too, and since nokia is using the same design for windows phone...
13:08.01paor still need to be incepted?
13:08.03MohammadAGit?
13:08.17paled notifier
13:08.24MohammadAGonly one package needs to be incepted, an enabler
13:08.34MohammadAGthe package adds a domain of mine that allows all credentials
13:08.35paArkenoi, indeed. he will rather kill it. but hey, he's such a good CEO
13:08.39padoing so good for nokia
13:09.17MohammadAGhttp://pastebin.com/fzM3LDBk
13:09.25Arkenoimost people would rather kill Elop
13:09.36panic e:)
13:09.41unreal-a microsoft executive working for a european company... what could possibly go wrong?
13:09.45MohammadAGnot sure if that's everything
13:09.50payeah, i had this feeling myself too :)
13:09.54MohammadAGbut this should reduce user confusion
13:10.08panot sure some crazy one wont attempt, tho
13:10.08MohammadAGuser no longer has to figure out how to install something
13:10.18MohammadAGthey simply apt-get install <package>
13:11.17chem|stpa: jolla will not support NokiaMeegoUpdates does not mean MerCore-Meego won't be on N9s
13:11.44*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
13:12.10StskeepsMer core and Nemo will continue to come for N950/N9/N900 but there's no internals working on closed bits anymore
13:12.59MohammadAGin other news, this should allow a CSSU on Harmattan
13:13.12pawell the question is: can we use harmattan ui on mer/nemo?
13:13.23MohammadAGbut it'll need inception or open mode
13:13.31paor at least remake it?
13:13.34chem|stMohammadAG: cssu? no different system on n9 for good...
13:14.22MohammadAGchem|st, ?
13:14.40MohammadAGchem|st, I'm not talking about Jolla
13:15.09chem|stI am talking about mer
13:15.26MohammadAGI'm not :P
13:15.29chem|st:)
13:15.45MohammadAGI'm talking about adding a domain that's higher than Nokia's and provides all tokens
13:15.52MohammadAGI've done it for a repo I'll be releasing soon
13:16.01*** join/#harmattan rigo (~rigo@ANancy-551-1-105-18.w92-130.abo.wanadoo.fr)
13:16.12chem|stsounds like harmattan cssu ;)
13:16.50MohammadAGno, but it does sound like it :P
13:17.19MohammadAGthe repo I'm making would house led-event-notifier, unrestricted-system-ui, mt-toggles, quick-status-updater etc
13:17.48jonnifor better compatibility imho you should just add pgp key to com.nokia.maemo, that way you have same level of trust and ota updates would work
13:17.49MohammadAGSince this worked out just the way I wanted it, I might write a package manager
13:18.09MohammadAGjonni, not sure how to do that
13:18.18MohammadAGand no OTA updates imo
13:18.39jonniI mean package updates.
13:19.55MohammadAGno, I meant I don't expect any future OTA updates from Nokia :p
13:20.31jonniI was meaning like single package updates through ota, like bugfixes to some packages in PR1.3
13:20.39MohammadAGah
13:20.59jonniif you add higher trustlevel, then those will fail, so its better to keep level at same
13:21.08MohammadAG# they say this is The Right Way (tm) to check for
13:21.09MohammadAG# scratchbox environment
13:21.09MohammadAGif [ -L /targets/links/scratchbox.config ]; then
13:21.09MohammadAG# hehe
13:21.15MohammadAGWhat's Nokia's trust level?
13:21.17MohammadAGmine's -100
13:21.47jonniI've added my personal pgp key to on my device as com.nokia.maemo, its quite simple to do. that way origins dont conflict.
13:22.13jonnibut inception way was -100, which caused problems for 1.2 to 1.3 upgrade
13:22.45MohammadAGadding a .fiasco file to /var/lib/fiasco-flasher/staging/ flashes it at reboot
13:22.49MohammadAGjust a note :p
13:22.57MohammadAGjonni, how do you do it then?
13:27.32jonniyou just add key to aegis manifest and install as com.nokia.maemo. you can look for hints in source-policy packages. And hard way is to modify restok and domain files by hand and resign.
13:29.44jonnibut ofcourse if there never is going to be pr releases or bugfixes to packages, then it doesnt matter. But if you want to be futureproof for possible bugfixes or if by some miracle there is PR1.4, then you might want to consider.
13:30.44DocScrutinizer05"there'll never be any need for more than 1MB of RAM on any PC"
13:31.27DocScrutinizer05"32 bit for IP address is more than we ever will need"
13:32.54DocScrutinizer05"why use 4 bytes for char* date-year when we can get away with using just 2?"
13:33.13DocScrutinizer05hi MohammadAG
13:33.26MohammadAGhi
13:34.01MohammadAGDocScrutinizer05, there were people working on those, the MeeGo team is no more
13:34.06MohammadAGwell, Harmattan team
13:34.43MohammadAGremote: error: failed to lock refs/heads/master hmm
13:34.58DocScrutinizer05the original ITF also is no more ;-D
13:35.25*** join/#harmattan e-yes (~e-yes@94.25.130.1)
13:36.30MohammadAGheh
13:36.43DocScrutinizer05and we got fremantle-PR1.3.1
13:36.55MohammadAGthere was a team for that :p
13:37.00DocScrutinizer05when _nobody_ thought we'd see anything like that
13:37.35DocScrutinizer05actually iirc there was no more team for that
13:38.05DocScrutinizer05at last not any more a team than is for HARM now
13:38.23DocScrutinizer05but well, that's all just speculations
13:38.52DocScrutinizer05fact is you don't want to botch if you know how to do it better
13:39.57DocScrutinizer05thne otoh... HARM(!)... :-/
13:41.19MohammadAGhttps://github.com/harmattan/unrestricted-system-ui/blob/master/src/systemui/shutdownui.cpp#L105 example on disabling swipe by nokia
13:41.34DocScrutinizer05I might as well bother about future of OS/2
13:43.22MohammadAGactually that file has a lot of examples related to X11 handling on MeeGo
13:43.24MohammadAGI'm amazed, really
13:43.53MohammadAGepic Fixes: NB#230034 - Low power mode ui is static and burn display
13:44.39DocScrutinizer05welllllll
13:45.02DocScrutinizer05that's quite epic indeed
13:45.24MohammadAGit's a year ago, wonder how many internal devices they lost that way :p
13:45.41DocScrutinizer05good example why software department needs an ambassador to "negotiate" to EE/hw
13:46.31fluxyeah, I wonder when I'll break my n9 with bedside clock ;)
13:46.36DocScrutinizer05"every noob" knows about OLED burnin
13:47.24DocScrutinizer05hell, that's why screensavers got invented
13:47.46DocScrutinizer05back in the times when we used an ancient technology called CRT
13:48.34MohammadAGyeah, even I know about it
13:48.43MohammadAG<3 Galaxy SII
13:48.54DocScrutinizer05duh! was about to paste a wikipedia link
13:49.17MohammadAGI had something on and kept the display on, it got burned for a day
13:49.58*** join/#harmattan DocScrutinizer05 (~HaleBopp@openmoko/engineers/joerg)
13:50.05*** join/#harmattan DocScrutinizer (~halley@openmoko/engineers/joerg)
13:50.06DocScrutinizer05duh! was about to paste a wikipedia link
13:50.08DocScrutinizer05for the youngsters
13:51.06DocScrutinizer05curses his D-Link DR-615 and heads out to get a fritzbox NOW
13:51.24Lava_Croftyou'd be amazed how many crts are still in use
13:51.37MohammadAGI still see them, daily
13:52.38DocScrutinizer05MohammadAG: where from you harvest those supposedly internal NokiaBugs?
13:54.02phakoDocScrutinizer: commit message or debian changelog
13:54.08DocScrutinizer05ahh
13:54.54DocScrutinizer05I thought low power mode UI was closed source
13:58.02MohammadAGhttps://github.com/harmattan/unrestricted-system-ui/
13:58.05MohammadAGDocScrutinizer, ^
13:58.06jonnithats not really epic one, since it was fixed in PR0 images well before any device was in the shop :)
13:58.11MohammadAGDocScrutinizer05, ^
13:58.25MohammadAGjonni, yeah, but it's epic cause they didn't consider it in the first place
13:59.14DocScrutinizer05indeed
13:59.38DocScrutinizer05should have been part of module design spec
14:00.44DocScrutinizer05or whatever Nokia calls this paper
14:02.50jonniMohammadAG: they did considered it in the first place and was in design spec, that specific bug was just regression that they fixed. Bugs sometimes happends even if design spec says that ui should move. So nothing epic in there.
14:03.32DocScrutinizer05ok :-D
14:03.39DocScrutinizer05fair enough
14:05.55DocScrutinizer05actually it easily slips checks, as nobody usually is watching standby screen for long enough no notice the regression
14:06.30DocScrutinizer05jonni: sorry for my sarcasm then
14:07.15jonnisometimes sarcasm is good, there has been epic fails sometimes, but not just on that specific time :)
14:22.20jonniI'm just making one of my N9's to be dualboot, step one replace the openmode warning screen with custom one. I ended up in this http://linuxi.org/disclaimer.png  looks pretty decent on the boot (I just tested that my custom rle generator works). Next step is to decide if I put nemo or mer on the second partition :)
14:23.40jonnigood for anti-theft too, since not that many know how to clear rle from CAL :)
14:23.46*** join/#harmattan eman (~eman@202.4.232.249)
14:27.12*** join/#harmattan xmlich02 (~imlich@2001:67c:1220:80c:0:ae85:f4cc:15e4)
14:34.41*** join/#harmattan pinheiro (~pinheiro@bl19-18-112.dsl.telepac.pt)
14:36.01*** join/#harmattan danielcbit (daniel@nat/indt/x-gtuipztcxzbmjlbn)
14:39.37*** join/#harmattan vladest (~Vlad@35-250-92-178.pool.ukrtel.net)
14:39.56MohammadAGjonni, /usr/share/osso/rle? :P
14:47.27jonniyep default rles are in /usr/share/osso/boot/rle
14:52.53DocScrutinizer05hmmm  nuttin
14:54.58*** join/#harmattan clau (~clau@mordor.getodata.ro)
14:55.24DocScrutinizer05<PROTECTED>
14:55.57DocScrutinizer05and that's all in /usr/share/osso
14:56.42DocScrutinizer05ooh, I guess they "get eaten" on next boot?
14:59.58jonninot really only if language changes, and if you trigger openmode to lock cal, then your custom rle stays forever :)
15:02.31DocScrutinizer05I'm still puzzled by this CAL lock, how it works
15:04.01DocScrutinizer05just CBA to read those 3000++ pages of SPRUF98D omap TRM again, to check if there's such a thing like HS-lock on oneNAND pages
15:04.44DocScrutinizer05I seem to recall there are locks on NAND, but those usually are unlocked as easily as locked
15:05.37DocScrutinizer05of course HS architecture *might* intercept there
15:06.23DocScrutinizer05"trustzone2 or whatever the name of the abomination
15:07.11DocScrutinizer05but tbh I'd be surprised to find it can't get unlocked
15:07.17jonniafter reading bootloader code Im not that puzzled anymore, yes bootloader/PA can unlock it, but as kernel nor userspace have access to call unlock then its out of the reach :)
15:08.26DocScrutinizer05hmm, aiui we can execute arbitrary bootloader?
15:08.40DocScrutinizer05just that it's not in HS mode anymore
15:09.06jonnionce bootloader decides thats its locked, then its locked and we cant do anything about it. and no arbitary bootloaders, since that is protected by nokia root ca
15:09.27DocScrutinizer05:-S
15:09.59DocScrutinizer05back to hw-unlocking this brick
15:10.22DocScrutinizer05change bootmode by cutting/grounding a few pins
15:10.37jonnibut anyways CAL is not that usefull anyways, you can just rewrite the codebits that use cal in openmode.
15:10.41DocScrutinizer05or simply find a less hostile device
15:12.40jonni(you can even make custom mtd block device to emulate CAL, that way your openmode works perfectly :D)
15:20.39MohammadAGjonni
15:20.50MohammadAGGeneralAntilles's device could be revived if cal can be written to
15:21.38DocScrutinizer05"oops your self destruction unit fired by accident. We're sorry. Sincerly Nokia"
15:23.11jonniMohammadAG: if openmode has been triggered, then he is out of luck, his options is to wait PR1.3 for N950, or return device to developer relations for replacement (or get R&D cert).
15:23.26DocScrutinizer05honestly I fail to get the point why I should pay money or spend time on a device/OS that tries to kill me or itself on me touching it
15:24.08DocScrutinizer05and yeah "it's all just for your security"
15:24.43jonniwell that one was self caused by replacing repositories cross device boundary.
15:24.58DocScrutinizer05doesn't matter at all
15:25.00MohammadAGjonni, or make a fiasco with a higher version, but then he can never go back to stock roms
15:25.03MohammadAGactually he can
15:25.17MohammadAGfirst and hopefully last time I call it rom
15:27.57jabispile of crap that no downgrade can be made imo
15:28.03DocScrutinizer05sorry when I think all my valuable data and assets on a N9 are way more on peril by threat from aegis than by any thief or silly loss of device
15:28.15DocScrutinizer05or any malware
15:28.42MohammadAGDocScrutinizer05, any ideas where the file that shows what bricks when it's edited is?
15:28.59DocScrutinizer05~may-i-edit
15:28.59infobotmayIedit () { grep "`basename $1`" /var/lib/aegis/refhashlist && echo "probably not" && return; echo "edit if you feel venturous"; }
15:29.30MohammadAGprobably not
15:29.32MohammadAGmeh
15:30.07MohammadAGwonder if this system-services package can be replaced
15:30.21*** join/#harmattan lizardo (~lizardo@201.76.96.77)
15:30.40MohammadAGohai /usr/sbin/show_malf
15:31.00*** join/#harmattan M4rtinK (~M4rtinK@mail.melf.eu)
15:38.18MohammadAGcan someone review a patch? to be sure
15:39.26MohammadAGactually it's quite simple, nevermind
15:39.27MohammadAGhttps://github.com/harmattan/unrestricted-system-ui/commit/53cb8341e3ff96caa67dbd7c3e2eb4fef7f1fed8
15:45.05*** join/#harmattan NIN101 (~NIN@p5DD28D48.dip0.t-ipconnect.de)
15:53.21*** join/#harmattan mschlens (~mschlens@e180022243.adsl.alicedsl.de)
15:57.07*** join/#harmattan Namek (46b714a2@gateway/web/freenode/ip.70.183.20.162)
15:59.25*** join/#harmattan mschlens (~mschlens@e180014251.adsl.alicedsl.de)
16:09.38*** join/#harmattan mschlens (~mschlens@e180027198.adsl.alicedsl.de)
16:10.23*** join/#harmattan gambitrex (badc410a@gateway/web/freenode/ip.186.220.65.10)
16:48.28*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
16:50.18*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
16:50.27rigoSuccess!
16:50.52rigodev-mode works again
16:51.07rigonow playing back my the backup of my user-dir
16:52.36*** join/#harmattan lildeimos (~lildeimos@host59-70-dynamic.51-79-r.retail.telecomitalia.it)
16:55.23*** join/#harmattan mschlens (~mschlens@e180031145.adsl.alicedsl.de)
17:00.07*** join/#harmattan valdur55 (~valdur55@84-50-136-224-dsl.rkv.estpak.ee)
17:02.46MohammadAGanyone got an N9 and feels like testing something?
17:02.53MohammadAGinception required
17:03.21valdur55yea. sure
17:03.42valdur55give a shoot
17:05.53MohammadAGvaldur55, pm
17:09.35valdur55ok
17:11.47*** join/#harmattan lildeimos (~lildeimos@host39-135-dynamic.54-82-r.retail.telecomitalia.it)
17:13.39*** join/#harmattan e-yes (~e-yes@94.45.178.38)
17:16.17*** join/#harmattan hardaker (~hardaker@mail.hardakers.net)
17:17.42*** join/#harmattan faenil (~faenil@131.114.40.11)
17:21.41MohammadAGmeh
17:22.35rigoMohammadAG, just repaired mine. No great eagerness to experiment at the moment :-/
17:23.15MohammadAGguess one N950 test should do
17:31.46*** join/#harmattan jaywink (~jaywink@cs181163242.pp.htv.fi)
17:39.23*** join/#harmattan djszapi|windows (b2fa714a@gateway/web/freenode/ip.178.250.113.74)
17:39.43djszapi|windowsHi! Anybody using miniusb cable between the PC and the Harmattan device with Windows?
17:39.59djszapi|windowsI wonder what the simplest way is to get the pictures out of the phone I have taken on my Windows box.
17:40.20djszapi|windowsI do not have internet connection on the phone for uploading to the website.
17:40.56dm8tbra) it's MICRO USB not mini
17:41.13MohammadAGdm8tbr, you could've just answered no :P
17:41.28dm8tbrb) it speaks mass storage mode, what's the problem?
17:41.41MohammadAGor bluetooth, or ad-hoc
17:42.01ieatlintmass storage mode is the least painless by far
17:42.09e0xindeed
17:42.16ieatlintyou'll be there pressing retry for the next hour if you try to do bluetooth
17:43.47djszapi|windowshmm, yeah, the mass storage mode way is pretty simple, thanks
17:48.09*** join/#harmattan ZogG_laptop (~ZogG@109.65.230.179)
17:54.50*** join/#harmattan Shaan7 (~shantanu@kde/developer/shantanu)
17:59.55djszapi|windowsieatlint: sup
18:01.15ieatlintnot much..
18:01.20ieatlintyou?
18:03.49djszapi|windowsnot much, http://dot.kde.org/2012/07/09/kde-rely-qt-protect-qts-freedom-contribute-it
18:04.08*** join/#harmattan jreznik (~jreznik@36.173.broadband6.iol.cz)
18:05.24ieatlintheh, the whole game now is less about what nokia will do, and instead about who gets what/who
18:06.14*** join/#harmattan ga (badc410a@gateway/web/freenode/ip.186.220.65.10)
18:09.57gaHi, I have a noob question regarding QML Page component. Anyone?
18:10.11djszapi|windowshttp://liveblue.files.wordpress.com/2012/07/koncat03.png
18:10.22djszapi|windowsga: go ahead
18:11.56gaOK, I started to play with Qt stuff yesterday, and I want to make a really simple app, with a few pages. For that, I have created some .qml files for those pages. For example, I have a file AboutPage.qml which contains a Page component and its id property is pgAbout
18:12.11gaHow can I push that page to a page stack in another file?
18:12.20gasomething like this: pageStack.push(AboutPage.pgAbout)?
18:12.28djszapi|windowshave you checked the basic examples?
18:12.44gathe ones that come with QtCreator?
18:13.23gaI checked some, and as far as I have seen, they put all Pages inside the same file
18:13.40ieatlintyou want to create an instance of each page in the main.qml...
18:13.42djszapi|windowsga: http://harmattan-dev.nokia.com/docs/library/html/qt-components/qt-components-meego-pagestack.html?tab=1
18:13.49ieatlinteg AboutPage { id: pgAbout }
18:13.56ieatlintthen pageStack.push( pgAbout )
18:14.03djszapi|windowsieatlint: what is not always needed.
18:14.06djszapi|windowsthat*
18:14.20ieatlintfor a small program and someone just starting, it's simple and best
18:14.30gaieatlint: but for that, I need to declare all pages inside one file (main.qml). Right?
18:14.39ieatlintyes
18:14.44djszapi|windowsga: just read the example above.
18:15.03djszapi|windowsieatlint: well, when I was beginner, I did not instantiate those in the main.qml :p
18:15.11djszapi|windowswhen the application became heftier, I had to.
18:15.20gaieatlint: not sure if it's the best option. I know I'm just starting, but the app will (luckly) grow, and the code would be "illegible"
18:15.30gadjszapi|windows: thank, will check
18:15.31*** join/#harmattan SpeedEvil (~user@tor/regular/SpeedEvil)
18:15.33ieatlintqml is illegible :P
18:15.47gaieatlint: good point. :)
18:16.02ieatlintbut the risk there is less that you'll make it hard to read, and more that you'll declare everything at launch, increasing the memory footprint and load time
18:16.30djszapi|windowsthe qml launch is already horribly slow :p
18:16.44gais there any other option to qml?
18:16.56djszapi|windowsga: assembly ^^
18:17.06ieatlintheh, there's mtf
18:17.23ieatlinta qwidget-based set of widgets in the meego style
18:17.32gadjszapi|windows: djszapi|windows PageStack is only for harmattan? If I want to port my app to maemo5 or symbian, I would need to rewrite it all? :-(
18:17.43ieatlintsymbian has pagestack
18:18.01*** join/#harmattan mlong (~mlong@fw1.weatherdata.com)
18:18.01ieatlintthere are a few minor differences between symbian components and the harmattan components
18:18.02djszapi|windowsga: http://harmattan-dev.nokia.com/docs/platform-api-reference/showdoc.php?pkn=libmeegotouch&wb=daily-docs&url=Li94bWwvZGFpbHktZG9jcy9saWJtZWVnb3RvdWNo
18:18.18GeneralAntillesitsnotabigtruck, no. That's just my ZNC.
18:18.21djszapi|windowsga not only, but many platforms do not have that
18:18.29djszapi|windowsga like Plasma Active
18:18.40djszapi|windowsoh sorry, PageStack
18:18.44djszapi|windowswell, that is pretty standard
18:18.48djszapi|windowsPageStackWindow is not.
18:19.27djszapi|windows(btw, I am not here for helping, just asking :)
18:19.46djszapi|windowsgood luck with your issues!
18:19.47gathanks
18:19.50*** part/#harmattan djszapi|windows (b2fa714a@gateway/web/freenode/ip.178.250.113.74)
18:19.52*** join/#harmattan mlong (~mlong@fw1.weatherdata.com)
18:20.08GeneralAntillesjonni, interestingly, I don't actually think it was the PR1.3 updates that caused the problem.
18:20.33gaone last question: Beside assembly, is there any option to QML? I also think that it's quite slow to load it (runtime)
18:20.35GeneralAntillesjonni, robbiethe1st had the same symptoms with a Fennec update earlier in the year
18:20.39GeneralAntillesand it was the Fennec update that failed.
18:21.42DocScrutinizer05and fennec killed the HARM?
18:22.05GeneralAntillesThat's my working assumption
18:22.05*** join/#harmattan SpeedEvil (~user@tor/regular/SpeedEvil)
18:22.09GeneralAntillesBased on very little data.
18:23.53ieatlintga: that's what the mtf/libmeegotouch stuff was.. an alternative, but not what nokia recommends
18:24.13jonniI have fenner 12 vs 13 version conflict and ota update from pr1.2 to pr1.3 went just fine, so its not fennec, unless you installed it from nightly build web
18:24.23jonnifennec even
18:26.22gaieatlint: thanks. seems like I'll need to spend some time learning about all this QML mess. :P
18:26.52GeneralAntillesjonni, :shrug: only occurrence of these symptoms I'd previously seen reported was due to a Fennec update.
18:27.44jonniare there pastebins of the flashing attempts somewhere?
18:29.44GeneralAntillesI think it's expired
18:29.53GeneralAntillesDon't have the link handy, but this is the same: http://pastebin.com/pEwGQhUz
18:29.54jonniofcourse easy for me to say, since I can always recover firmware from any situation, but that doesnt help you unless your visiting in Tampere ;)
18:31.51*** join/#harmattan rigo (~rigo@ANancy-551-1-105-18.w92-130.abo.wanadoo.fr)
18:32.22jonniGeneralAntilles: and what happens if you extract the bins from ocf, and just flash with -F .bin --flash-only kernel,rootfs
18:33.21GeneralAntillesOne sec, let me grab the laptop to see how that failed.
18:35.21GeneralAntilleshttp://pastebin.com/RezvLUxA
18:38.21jonniGeneralAntilles: and if you do  "sudo flasher -a N9-21-3.bin -F N950pr12.bin --flash-only kernel,rootfs"  or extract kernel,rootfs from N950 image, and then "sudo flasher -F N9-21.3.bin -r rootfs -k kernel --flash-only kernel,rootfs"
18:40.04GeneralAntillesI'll have to try it tonight.
18:40.08GeneralAntilles10 minutes left for lunch
18:40.09jonnior the other way around "sudo flasher -a N950pr12.bin -F N921-3.bin -r rootfs -k kernel --flashonly kernel,rootfs"
18:40.15GeneralAntillesneed to download the N9 image.
18:42.40*** join/#harmattan vladest_ (~Vlad@159-70-133-95.pool.ukrtel.net)
18:44.11jonniGeneralAntilles: and I just re-read your log, it fails because your trying to flash beta2 image on top of beta3, so first thing to do is to download beta3 image and retry :)
18:44.34GeneralAntillesThat first link isn't mine.
18:44.34jonnithat causes the downgrade error :)
18:44.37GeneralAntillesIt's old
18:44.41GeneralAntillesMy N950 is PR1.3
18:44.51GeneralAntillesThere is no PR1.3 available for N950.
18:44.59jonniI was reading the second  pastebin
18:45.18rigoAppsForMeego is missing in Repository http://repo.apps.formeego.org/harmattan/apps/armel/
18:45.28jonniit says that your trying to flash N950 PR1.1 image over N950 PR1.2
18:45.41jonniGeneralAntilles: or wasnt that second pastebin yours either?
18:45.46GeneralAntillesIt was
18:45.48GeneralAntillesHrm
18:45.53GeneralAntillesUm, 39-5 is PR1.1?
18:46.04jonniGeneralAntilles: yep, 2-6 is pr1.2
18:46.11jonni39-5 IS PR1.1
18:46.25GeneralAntillesWhere's the FIASCO image for 2-6?
18:46.36jonniGeneralAntilles: http://harmattan-dev.nokia.com/release/N950/firmware/
18:46.38arcean"Version of 'sw-release': DFL61_HARMATTAN_3.2012.02-6_PR_RM680"
18:46.42arceanheh
18:46.45alteregoWell, PR1.2 would delete mail, but crash and close when I did it, PR1.3 will delete one email, but after that it just sticks with the refresh loop running infinitely.
18:46.58GeneralAntillesIf this works, I'm going to have to kill myself.
18:47.06GeneralAntillesOr be this channel's slave for the duration of the Summer.
18:47.06arceanGeneralAntilles: PR1.2 beta oneclickflasher should help you :)
18:47.10jonniGeneralAntilles: hopefully this is only PR1.1 vs PR1.2 error :)
18:47.40GeneralAntillesWell, download's not going to finish before I have to be back at work.
18:47.53GeneralAntillesThe suspense will kill me if the ritualize suicide doesn't.
18:50.05GeneralAntillesAs this is very clearly going to fix my "problem" (well, the immediate one with the N950)
18:50.35GeneralAntillesFirst, I'd like to thank jonni, MohammadAG, DocScrutinizer, arcean, itsnotabigtruck, and anybody else who wasted time and energy pondering on this "issue"
18:50.47GeneralAntillesand, second, I'd like to say: I'm an idiot.
18:50.53GeneralAntillesback to work.
18:56.31*** join/#harmattan faenil (~faenil@131.114.171.161)
18:57.05*** join/#harmattan Routser (~Routser@dsl-trebrasgw2-fe56f900-161.dhcp.inet.fi)
18:58.25rigorrr. AppsForMeego refuses to install "installation interrupted"
19:03.32*** join/#harmattan Routser_ (~Routser@dsl-trebrasgw2-fe56f900-161.dhcp.inet.fi)
19:04.33*** part/#harmattan Routser_ (~Routser@dsl-trebrasgw2-fe56f900-161.dhcp.inet.fi)
19:06.41*** join/#harmattan tom___ (~tom@93.186.144.160)
19:09.24*** join/#harmattan Routser (~Routser@dsl-trebrasgw2-fe56f900-161.dhcp.inet.fi)
19:12.39DocScrutinizer05GeneralAntilles: >>> I said we’re definitely going for the larger public, but we also want to enable the developers and the community and enthusiasts by giving them a “developer mode” option. We want to cater to both audiences. I think this became their two device<<<
19:12.43*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:12.54DocScrutinizer05~aegis
19:12.54infobothttp://www.developer.nokia.com/Community/Wiki/Harmattan:Developer_Library/Developing_for_Harmattan/Harmattan_security/Security_guide , or "The purpose of this framework is: ... to make sure that the platform meets the requirements set by third party software that requires a safe execution environment.", or http://en.wikipedia.org/wiki/Trusted_Computing#Criticism, or  http://en.qi-hardware.com/w/images/1/10/ME_382_LockedUpTechnology2.gif
19:13.22DocScrutinizer05sounds painfully like aegis-perpetuated
19:14.48DocScrutinizer05so much for "two words can spoil your day, hell your week even"
19:15.06*** join/#harmattan Routser (~Routser@dsl-trebrasgw2-fe56f900-161.dhcp.inet.fi)
19:17.13*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:19.27*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:21.57Lava_Croftthere goes my N9, by mail, to Nokia RepairCare
19:22.06Lava_Croftgoodbye dear N9, I hope they don't send me a Lumia back.
19:23.21rzrwhere did you get that N9
19:23.28Lava_CroftEU
19:23.34Lava_Croftfrom a Dutch company
19:23.40Lava_Crofteven tho its not officially for sale here
19:23.50Lava_CroftI'm completely safe by EU law
19:23.54Lava_Croftbut that really doesnt bother Nokia
19:23.58rzrwhere was it made ? fi or cn ?
19:24.20Lava_Croftfin
19:24.24rzrmy E7 is about to go to NRC too :(
19:24.31*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:24.33Lava_Crofti preferred a local nokia care point
19:24.40Lava_Croftpeople there werent nokia employees and actually cared
19:24.48Lava_Croftall my experience with the 'central' nokia care have been nothing but fucking awful
19:25.10Lava_Crofta bunch of people trying to explain to me that Symbian Belle is a really a reason to just accept the N8 they sent me to replace my N900
19:26.21*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:28.36*** join/#harmattan AnlaShok (okemppin@kosh.org.aalto.fi)
19:28.40AnlaShok~aegis
19:28.40infobothttp://www.developer.nokia.com/Community/Wiki/Harmattan:Developer_Library/Developing_for_Harmattan/Harmattan_security/Security_guide , or "The purpose of this framework is: ... to make sure that the platform meets the requirements set by third party software that requires a safe execution environment.", or http://en.wikipedia.org/wiki/Trusted_Computing#Criticism, or  http://en.qi-hardware.com/w/images/1/10/ME_382_LockedUpTechnology2.gif
19:30.59Lava_Croftlol
19:31.10Lava_Croftnokia online repair is just the local monopolist phone insurance company in NL
19:31.14*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:31.23*** join/#harmattan jaywink (~jaywink@cs181163242.pp.htv.fi)
19:33.04*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:34.31*** part/#harmattan AnlaShok (okemppin@kosh.org.aalto.fi)
19:36.49*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:48.34rigoGSM stack crashed on N9 PR 1.3
19:48.43rigonever happened in PR 1.2
19:49.20*** join/#harmattan blueslee (~blueslee@ip-109-90-73-55.unitymediagroup.de)
19:54.39*** join/#harmattan mlong (~mlong@fw1.weatherdata.com)
19:56.44*** join/#harmattan HtheB (52a9c51b@gateway/web/freenode/ip.82.169.197.27)
19:58.41HtheBMohammadAG: you there?
20:00.52*** join/#harmattan MohammadAG (~MohammadA@Maemo/community/contributor/MohammadAG)
20:01.56HtheBMohammadAG: you there?
20:01.57MohammadAGHtheB: Sorta
20:01.59HtheB(was just looking for you
20:02.00HtheBah
20:02.09HtheBwelcome :) how are you
20:02.46HtheBCan you compile the system-ui and change a warning? :(
20:11.06*** join/#harmattan Stskeeps (~cvm@monster.tspre.org)
20:11.08*** join/#harmattan Stskeeps (~cvm@Maemo/community/distmaster/Stskeeps)
20:15.20*** join/#harmattan arcean (~arcean@aacr158.neoplus.adsl.tpnet.pl)
20:17.31MohammadAGWhat?
20:17.33MohammadAGHtheB: What do you mean?
20:17.45HtheBcheck pm
20:17.53HtheBor: it's about this:
20:17.54HtheBhttp://talk.maemo.org/showthread.php?t=85424
20:22.24*** join/#harmattan azeem (~mbanck@ppp-188-174-110-254.dynamic.mnet-online.de)
20:22.39*** join/#harmattan gabriel9 (~gabriel9@135-70-246-188-bl.cable.dyn.broadband.blic.net)
20:32.48*** join/#harmattan Enforcer (David@203-206-166-147.perm.iinet.net.au)
20:33.32*** join/#harmattan M4rtinK (~M4rtinK@mail.melf.eu)
20:39.04*** join/#harmattan Ariadeno (~Ariadeno@5571f108.dsl.concepts.nl)
20:48.13rigorats, signature check for org.formeego.apps failed
20:48.17rigowhere is that key?
20:49.28Ariadenohas anyone been able to run man-db on harmattan with success??
20:52.43gabriel9is there a lightphp package for N9
20:53.06gabriel9or repo with php and lightphp?
20:53.19gabriel9i wish to turn my N9 into web server :)
20:53.48rigoI have seen web servers but no PHP
20:54.36gabriel9can i use this? http://repository.maemo.org/extras-devel/pool/fremantle-1.3/free/p/php5/
20:54.49gabriel9i found http://elblogdelqt.blogspot.com/2011/12/web-server-on-n950.html
20:54.59gabriel9maybe it will work :)
20:55.51gabriel9this php is too old :(
20:56.31rigodo restful instead :-P
20:58.03Ariadenoit's really killing me to not been able to run man-db anyone help??
20:58.50Ariadenoall the utils that are in conflict with busybox
20:59.09AriadenoI downloaded them in another folder and unpacked them
20:59.29HtheBlol
20:59.36Ariadenoi got it to work adding it to PATH and making a simlink to man.lib
20:59.54Ariadenohowever still not access to the manpages itself
21:00.16Ariadenoman works tough
21:00.26Ariadenoi guess the problem lies in manpath
21:04.56HtheBMohammadAG: did you check the link?
21:06.06gabriel9what do you mean restfull? :)
21:06.19gabriel9i know what is REST(service)
21:07.23Ariadenooohh linux people who can live without manpages.. only at meego I guess :P
21:08.54jonnigabriel9: there are multiple webservers that work in harmattan, but if your trying to find one that has php then your out of luck.
21:09.11gabriel9http://talk.maemo.org/showthread.php?t=67749
21:09.20gabriel9this dude says it has installed it :D
21:10.07jonnigabriel9: thats for N900, not harmattan
21:10.38gabriel9damnation
21:10.50rigojonni, I have a key in /var/lib/apt/lists for org.formeego.apps but apt-get install says origin cannot be determined  -- signature check failed
21:11.21rigoso I can't install apps for meego, which is sad
21:11.36jonnirigo: apt-get --reinstall install aegis-community-source-policy
21:11.56jonnimaybe your just missing formeego pgp key? :)
21:14.08rigojonni++ that worked...
21:14.31rigoI owe you many beers if we ever cross paths somewhere
21:17.28*** join/#harmattan HtheB (52a9c51b@gateway/web/freenode/ip.82.169.197.27)
21:20.06*** join/#harmattan ZogG_laptop (~ZogG@109.65.230.179)
21:23.51*** join/#harmattan luke-jr (~luke-jr@2001:470:5:265:222:4dff:fe50:4c49)
21:26.18*** join/#harmattan Milhouse (~irc_milho@Maemo/community/contributor/Milhouse)
21:32.16*** join/#harmattan artemma (~artem@a88-114-227-142.elisa-laajakaista.fi)
21:40.22Namekgrabiel9: you can follow the instructions on http://elblogdelqt.blogspot.com/2011/12/web-server-on-n950.html
21:40.32NamekI have tried that and it works
21:40.39Namektough I don't know about php
21:41.59*** join/#harmattan rrobert (~Robert@91-65-223-29-dynip.superkabel.de)
21:42.40rrobertI would like to flash my N9, but NaviFirm doesnt know my exact product code. :(
21:42.53rrobertcan I choose another file?
21:44.24Kozziyou can use the one with similar countr/area code
21:44.47KozziI mean those 001,002,....
21:45.30rrobertKozzi: I have 059L504
21:45.43rrobertso the 4 is important?
21:46.17ieatlintno
21:46.56ieatlintif you go to the about screen in your phone, it should give a version number for the software that ends in something like "_PR_001"
21:46.58Kozzino, http://wiki.maemo.org/Flashing_N9
21:47.00ieatlintmatch that number
21:47.44Kozzior open Dialer and call *#0000#
21:49.44rrobertit is PR_232
21:51.26ieatlintthat means you have a specific carrier variant... the risks of using navifirm increase as i understand
21:53.02rrobertieatlint: I bought it in germany as a no branded unlocked device. on the packaging switzerland is mentioned
21:54.01ieatlintrrobert: presuambly you'd want to flash the PR_001 variant, which is the generic european one, but the standard warnings apply that you may irreversably brick your phone and simultaneously void your warranty
21:54.15ieatlintand i personally have no idea how likely that is
22:01.48*** part/#harmattan Ariadeno (~Ariadeno@5571f108.dsl.concepts.nl)
22:06.22*** join/#harmattan Ariadeno (~Ariadeno@5571f108.dsl.concepts.nl)
22:23.48rzritsnotabigtruck, reclaim your prize http://cgi.ebay.fr/ws/eBayISAPI.dll?ViewItem&item=261062433504#ht_500wt_1289
22:38.08*** join/#harmattan pinheiro (~pinheiro@2.80.18.112)
23:14.29GeneralAntillesDocScrutinizer, insteresting.
23:23.35*** join/#harmattan Brownout_ (~brownout@unaffiliated/brownout)
23:41.23*** join/#harmattan decibyte (~mmm@gateway/tor-sasl/decibyte)
23:53.23*** join/#harmattan beford (~fernando@unaffiliated/beford)

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