*** GeneralAntilles has quit IRC | 00:05 | |
*** GeneralAntilles has joined #harmattan | 00:10 | |
djszapi__ | http://networkedblogs.com/mloob -> nice reading. | 00:10 |
---|---|---|
* ajalkane has learned his lesson. Do not try to take the short-cut and try to use QList<Object *> for ListModel with Harmattan Qt Components. QAbstractItemModel based it must be, or much weeping and gnashing of teeth ensues. | 00:13 | |
rcg1 | ajalkane: or use QAbstractListModel ;) | 00:19 |
rcg1 | scnr | 00:19 |
rcg1 | btw. when implementing a model that way you might consider creating an own class (inheriting from QObject) for your model elements | 00:20 |
ajalkane | rcg1: yes, I actually meant that with being based on QAbstractItemModel, ie. anything deriving from it. I ended up implementing QAbstractListModel and only drying tears remind me of the pain I experienced. | 00:20 |
*** djszapi__ has left #harmattan | 00:20 | |
ajalkane | rcg1: I implemented my own class, but what's the benefit of inheriting from QObject? | 00:20 |
rcg1 | ajalkane: hehe.. sure.. was just me trying to make fun of it ;) | 00:20 |
ajalkane | I'm too shook up to laugh right now, but perhaps tomorrow :) | 00:21 |
rcg1 | uhm you could e.g. easily add properties that are accessible from QML of make methods callable from QML etc. | 00:21 |
ajalkane | rcg1: ok true... but I guess then I'd have to register it to QML as a type? I'm kinda trying to avoid doing that, not sure why though. | 00:22 |
rcg1 | also if you want to use a SectionScroller with your custom model you need the section property to be accessible in your entity class -> http://ruedigergad.com/2011/08/22/qml-sectionscroller-vs-qabstractlistmodel/ | 00:22 |
berndhs | yeah but among the properties and invokable methods are exactly those of AbstractItemModel | 00:22 |
rcg1 | ajalkane: sure, you would need to register it.. but thats not much of an issue imho | 00:23 |
rcg1 | berndhs: well.. having an entity class of its own (with properties n stuff) in your custom model makes handling selections etc. in the list much easier | 00:24 |
rcg1 | i.e. you can use currentItem pretty easily | 00:24 |
berndhs | rcg1: right, but wither you derive of QObject or QAbstractItemModel doesn't amek a whole lot of difference | 00:24 |
ajalkane | rcg1: interesting, thanks. SectionScroller might be useful | 00:25 |
berndhs | perhaps QAbstractItemModel has soem more baggage | 00:25 |
rcg1 | no.. am not talking about to derive your model from QObject but the items in your model (i.e. the list in that case) | 00:25 |
rcg1 | ajalkane: yw :) | 00:25 |
berndhs | ah i see | 00:26 |
*** Termana has quit IRC | 00:26 | |
rcg1 | berndhs: i.e. have your model inherit from QAbstractList Item whatever model.. and have your content of the model e.g. QList<Foo> where Foo inherits from QObject | 00:26 |
ajalkane | rcg1: question about that section... does the model object need to have those as properties, isn't the listview accessing them using the model's roles like in delegate? | 00:29 |
ajalkane | seems strange if the method of accessing them is different | 00:29 |
rcg1 | well.. afaiu the role in the model and the property of the entity class need to be named the same | 00:30 |
*** Termana has joined #harmattan | 00:31 | |
*** Termana is now known as Guest24871 | 00:31 | |
ajalkane | weird... But my experience so far with C++ backends to QML is you hit your head to the wall until you stumble on the approach that works. So isn't really surprising. | 00:31 |
ajalkane | It's not really intuitive how and why some things work and others not. | 00:32 |
ajalkane | (to me) | 00:32 |
berndhs | i don't know, the whole view/model stuff seems ad hoc and messy from the beginning | 00:32 |
rcg1 | re.. srry was shortly afk | 00:32 |
ajalkane | berndhs: yes, I couldn't bother with that view/model stuff with pure Qt, but with QML in the picture you kinda have to dig into it | 00:33 |
berndhs | right, there isn't a holw lot of choice | 00:33 |
*** smoku has left #harmattan | 00:34 | |
rcg1 | iirc the SectionScroller JavaScript code accesses the elements of the model directly at some place.. there it uses the name of the section as property to access the element property | 00:34 |
berndhs | GridView is basically ListView with Flow instead of Column if I understand the behaviour | 00:34 |
rcg1 | hence both need to be named the same | 00:34 |
rcg1 | ajalkane: well... i needed some time to get that as well.. but once you get it it really feels just natural | 00:35 |
rcg1 | :) | 00:35 |
rcg1 | actually you do not need much besides QObject, Q_INVOKABLE and Q_PROPERTY.. and now that signal foo becomes onFoo | 00:35 |
ajalkane | rcg1: I see. Annoying. I would have intuitivily thought it gets the properties injected like in delegate. | 00:36 |
* ajalkane tries to remember this little tid-bit that might save some hairpulling in the future | 00:36 | |
rcg1 | well.. actually.. that delegate thing might be actually confusing... | 00:37 |
rcg1 | http://to-do-o.svn.sourceforge.net/viewvc/to-do-o/qtodo/trunk/qml/NodeListView.qml?revision=891&view=markup | 00:38 |
rcg1 | have a look at line 151 ff | 00:38 |
rcg1 | there I use a pretty awkward way to access the properties of currentItem | 00:39 |
ajalkane | why can't you just use elementText in the rest of the delegate? Why assign it to property like that? | 00:40 |
rcg1 | this is not for use within the delegate but for use "outside of the list" | 00:41 |
ajalkane | ah | 00:41 |
rcg1 | in the delegate you can use elementText.. but the scope of this is limited to the delegate component | 00:42 |
ajalkane | you have there moving of items by dragging? | 00:42 |
rcg1 | yep | 00:43 |
rcg1 | http://ruedigergad.com/2011/08/28/reorder-items-in-a-qml-listview-via-touch-gestures/ | 00:43 |
rcg1 | http://forum.meego.com/showthread.php?t=4374 | 00:43 |
rcg1 | ;) | 00:43 |
ajalkane | Nice. I was banging my head about how I could nicely do an animation when an item moves in ListView. I couldn't. | 00:43 |
rcg1 | :) | 00:44 |
ajalkane | I better go sleeping now that my problem is solved and won't disturb dreams of little ponies and flowers. Nighty | 00:48 |
rcg1 | heh.. yeah.. same here.. gnight | 00:48 |
*** rcg1 has quit IRC | 00:49 | |
*** flux has quit IRC | 00:58 | |
*** Guest24871 has quit IRC | 01:00 | |
*** cos^ has quit IRC | 01:02 | |
*** cos^ has joined #harmattan | 01:03 | |
*** flux has joined #harmattan | 01:04 | |
*** faenil has quit IRC | 01:13 | |
*** sudanix has joined #harmattan | 01:15 | |
*** rm_work has quit IRC | 01:18 | |
*** tomma has quit IRC | 01:28 | |
*** rm_you has quit IRC | 01:44 | |
*** radiofree has quit IRC | 01:44 | |
*** aslani has quit IRC | 01:44 | |
*** chouchoune has quit IRC | 01:44 | |
*** timoph has quit IRC | 01:44 | |
*** w00t_ has quit IRC | 01:44 | |
*** villager has quit IRC | 01:44 | |
*** flux has quit IRC | 01:44 | |
*** BrettQ has quit IRC | 01:44 | |
*** deimos_ has quit IRC | 01:44 | |
*** berndhs has quit IRC | 01:44 | |
*** Sput has quit IRC | 01:44 | |
*** rZr has quit IRC | 01:44 | |
*** weggi__ has quit IRC | 01:44 | |
*** Hq` has quit IRC | 01:44 | |
*** sebas has quit IRC | 01:44 | |
*** Jaffa has quit IRC | 01:44 | |
*** veli has quit IRC | 01:44 | |
*** krau has quit IRC | 01:44 | |
*** Summeli has quit IRC | 01:44 | |
*** dominikb has quit IRC | 01:49 | |
*** flux has joined #harmattan | 01:54 | |
*** BrettQ has joined #harmattan | 01:54 | |
*** deimos_ has joined #harmattan | 01:54 | |
*** berndhs has joined #harmattan | 01:54 | |
*** rm_you has joined #harmattan | 01:54 | |
*** Sput has joined #harmattan | 01:54 | |
*** rZr has joined #harmattan | 01:54 | |
*** radiofree has joined #harmattan | 01:54 | |
*** aslani has joined #harmattan | 01:54 | |
*** chouchoune has joined #harmattan | 01:54 | |
*** weggi__ has joined #harmattan | 01:54 | |
*** krau has joined #harmattan | 01:54 | |
*** Hq` has joined #harmattan | 01:54 | |
*** villager has joined #harmattan | 01:54 | |
*** timoph has joined #harmattan | 01:54 | |
*** sebas has joined #harmattan | 01:54 | |
*** Jaffa has joined #harmattan | 01:54 | |
*** veli has joined #harmattan | 01:54 | |
*** w00t_ has joined #harmattan | 01:54 | |
*** Summeli has joined #harmattan | 01:54 | |
*** zarlino has quit IRC | 02:01 | |
*** rm_you has quit IRC | 02:03 | |
*** radiofree has quit IRC | 02:03 | |
*** aslani has quit IRC | 02:03 | |
*** chouchoune has quit IRC | 02:03 | |
*** timoph has quit IRC | 02:03 | |
*** w00t_ has quit IRC | 02:03 | |
*** villager has quit IRC | 02:03 | |
*** flux has quit IRC | 02:03 | |
*** BrettQ has quit IRC | 02:03 | |
*** deimos_ has quit IRC | 02:03 | |
*** berndhs has quit IRC | 02:03 | |
*** Sput has quit IRC | 02:03 | |
*** rZr has quit IRC | 02:03 | |
*** weggi__ has quit IRC | 02:03 | |
*** Hq` has quit IRC | 02:03 | |
*** sebas has quit IRC | 02:03 | |
*** Jaffa has quit IRC | 02:03 | |
*** veli has quit IRC | 02:03 | |
*** krau has quit IRC | 02:03 | |
*** Summeli has quit IRC | 02:03 | |
*** flux has joined #harmattan | 02:05 | |
*** BrettQ has joined #harmattan | 02:05 | |
*** deimos_ has joined #harmattan | 02:05 | |
*** berndhs has joined #harmattan | 02:05 | |
*** rm_you has joined #harmattan | 02:05 | |
*** Sput has joined #harmattan | 02:05 | |
*** rZr has joined #harmattan | 02:05 | |
*** radiofree has joined #harmattan | 02:05 | |
*** aslani has joined #harmattan | 02:05 | |
*** chouchoune has joined #harmattan | 02:05 | |
*** weggi__ has joined #harmattan | 02:05 | |
*** krau has joined #harmattan | 02:05 | |
*** Hq` has joined #harmattan | 02:05 | |
*** villager has joined #harmattan | 02:05 | |
*** timoph has joined #harmattan | 02:05 | |
*** sebas has joined #harmattan | 02:05 | |
*** Jaffa has joined #harmattan | 02:05 | |
*** veli has joined #harmattan | 02:05 | |
*** w00t_ has joined #harmattan | 02:05 | |
*** Summeli has joined #harmattan | 02:05 | |
npm | http://midi-clorianos.blogspot.com/2011/08/presenting-vmpk-for-nokia-n950.html (Pedro Lopez-Cabanillas FTW!) | 02:12 |
*** alterego has joined #harmattan | 02:22 | |
*** artemm has quit IRC | 02:38 | |
GeneralAntilles | So who's going to put together a MetaWatch application? | 02:41 |
*** deimos_ has quit IRC | 02:52 | |
*** frals has quit IRC | 03:16 | |
*** vgrade has quit IRC | 03:16 | |
*** Kaadlajk has quit IRC | 03:16 | |
*** Qantourisc has quit IRC | 03:16 | |
*** Qantourisc has joined #harmattan | 03:20 | |
*** Kaadlajk has joined #harmattan | 03:20 | |
*** frals has joined #harmattan | 03:30 | |
*** arcean has quit IRC | 03:40 | |
*** javispedro has quit IRC | 03:46 | |
*** M4rtinK has quit IRC | 03:49 | |
*** NIN101 has quit IRC | 04:06 | |
*** vgrade has joined #harmattan | 04:28 | |
*** eman has joined #harmattan | 04:39 | |
*** Evgeniy has joined #harmattan | 05:27 | |
*** berndhs has left #harmattan | 05:29 | |
*** berndhs has joined #harmattan | 05:38 | |
*** berndhs has quit IRC | 06:01 | |
*** sudanix has quit IRC | 06:05 | |
*** seif has quit IRC | 06:39 | |
*** macmaN has quit IRC | 06:40 | |
*** GeneralAntilles has quit IRC | 06:52 | |
*** GeneralAntilles has joined #harmattan | 06:53 | |
*** macmaN has joined #harmattan | 06:59 | |
*** berndhs has joined #harmattan | 07:00 | |
*** DocScrutinizer has quit IRC | 07:31 | |
*** DocScrutinizer has joined #harmattan | 07:31 | |
*** hardaker has quit IRC | 07:54 | |
*** smoku has joined #harmattan | 08:26 | |
*** xarcass has joined #harmattan | 08:47 | |
*** zarlino has joined #harmattan | 08:50 | |
*** maxw has joined #harmattan | 08:53 | |
*** zarlino has quit IRC | 09:08 | |
*** aleksander_m has joined #harmattan | 09:09 | |
*** seif has joined #harmattan | 09:12 | |
*** dasch has joined #harmattan | 09:14 | |
*** tomma has joined #harmattan | 09:15 | |
*** dasch has quit IRC | 09:25 | |
*** lamikr has joined #harmattan | 09:36 | |
*** wazd has joined #harmattan | 09:45 | |
*** zarlino has joined #harmattan | 09:48 | |
*** zarlino has quit IRC | 09:49 | |
*** zarlino has joined #harmattan | 09:52 | |
*** harbaum has joined #harmattan | 09:56 | |
*** zarlino has quit IRC | 09:57 | |
*** Venemo has joined #harmattan | 09:57 | |
*** Venemo has joined #harmattan | 09:57 | |
*** smoku has left #harmattan | 09:58 | |
*** zarlino has joined #harmattan | 10:02 | |
*** djszapiN9 has joined #harmattan | 10:02 | |
*** rcg1 has joined #harmattan | 10:06 | |
*** Arkenoi has joined #harmattan | 10:06 | |
*** artemm has joined #harmattan | 10:08 | |
*** Tronic has quit IRC | 10:09 | |
*** achipa has joined #harmattan | 10:11 | |
*** achipa has quit IRC | 10:11 | |
*** achipa has joined #harmattan | 10:11 | |
Venemo | morning | 10:19 |
DocScrutinizer | morning Venemo | 10:21 |
Venemo | ey DocScrutinizer, how're you? :) | 10:21 |
DocScrutinizer | yawning, moaning | 10:21 |
DocScrutinizer | ;-D | 10:21 |
*** Tronic has joined #harmattan | 10:21 | |
Venemo | :) | 10:22 |
djszapiN9 | Venemo there is one thing in irc chatter that could beöimproved | 10:22 |
DocScrutinizer | and in a hurry that should forbid sitting at kbd | 10:22 |
djszapiN9 | i added a room manually on the initial screen, but it does not connect | 10:23 |
DocScrutinizer | djszapiN9: hi moo, where's your blog? | 10:23 |
Venemo | djszapiN9, weird, it should. | 10:23 |
djszapiN9 | this is because of my syntax guess work | 10:23 |
djszapiN9 | so i proposed an add button for it | 10:23 |
DocScrutinizer | [2011-08-30 20:54:07] <djszapi_> ok, if anybody is interested in an easy way to turn off the aegis validator like on the R&D images, drop me a message. I might write some blog about it.. | 10:24 |
djszapiN9 | same workflow when you join the channel | 10:24 |
djszapiN9 | i would just like to type the room ne | 10:24 |
Venemo | djszapiN9, yeah, I agree with you | 10:24 |
djszapiN9 | ne* | 10:24 |
djszapiN9 | name | 10:25 |
Venemo | djszapiN9, what you currently see on the startup screen is not the final GUI for this purpose. | 10:25 |
djszapiN9 | yep | 10:25 |
Venemo | djszapiN9, it's just something I've thrown together in a couple of minutes | 10:25 |
djszapiN9 | must got off the bus | 10:25 |
Venemo | djszapiN9, as you may have heard, previously server/nickname were hard coded :P | 10:26 |
Venemo | djszapiN9, you can expect v0.N+1 versions to have a proper server config UI and a proper identity config UI, similarly to how Konversation works. | 10:28 |
Venemo | brb, gonna eat now | 10:28 |
djszapiN9 | yeah you could well replicate some already existing settings page | 10:28 |
Venemo | agreed | 10:30 |
DocScrutinizer | Venemo: please don't replicate Konversation's quite limited scripting capabilities | 10:35 |
hiemanshu | DocScrutinizer: ofc not, we will replicate Harmattans limited capabilities | 10:35 |
* hiemanshu runs | 10:35 | |
Venemo | DocScrutinizer, not talking about scripting capabilities | 10:36 |
* DocScrutinizer does, though | 10:36 | |
DocScrutinizer | :-) | 10:36 |
*** andre__ has quit IRC | 10:37 | |
DocScrutinizer | Venemo: Konv doesn'T know how to restart on top of list of alternative servers, when conection drops after successful login :-/ | 10:37 |
Venemo | DocScrutinizer, our stuff doesn't really reconnect at all. it's a planned feature to handle disconnections gracefully, but it's not there yet :( | 10:38 |
DocScrutinizer | example: I got network freenode with servers kornbluth.freenode.de and chat.freenode.com. One day I'm on kornbluth as expected, next day (after 24h forced disconnect of my DSL) I'm on chat though | 10:39 |
Venemo | mhm | 10:39 |
DocScrutinizer | o/ | 10:40 |
Venemo | meh! my N950 got its first scratch last week. | 10:40 |
DocScrutinizer | gotta run | 10:40 |
DocScrutinizer | bbiah | 10:40 |
Venemo | DocScrutinizer, have a nice day | 10:40 |
*** zarlino has quit IRC | 10:41 | |
DocScrutinizer | Venemo: tighly integrate a proper scripting interpreter (e.g. python) from beginning! | 10:42 |
DocScrutinizer | hnade stuff like reconnects with scripts | 10:42 |
DocScrutinizer | handle* | 10:42 |
DocScrutinizer | will save you a LOT of work | 10:43 |
*** zarlino has joined #harmattan | 10:44 | |
DocScrutinizer | and empower your users to augment the app in a really convenient way | 10:44 |
*** milot has joined #harmattan | 10:44 | |
*** jreznik has joined #harmattan | 10:52 | |
*** frinring has joined #harmattan | 10:59 | |
djszapi | DocScrutinizer: well, I did not have time to test it on the public software version with N950, but it works fine on N9: 1) security/aegis/validator/fs.c -> int validator_fsaccess(int op) { return 0; } 2) echo 0 > /sys/kernel/security/validator/enabled | 11:01 |
RST38h | hehe | 11:04 |
RST38h | evil maemo hackers are getting to argis' soft wet underbelly? | 11:04 |
RST38h | aegis' | 11:04 |
*** zarlino has quit IRC | 11:06 | |
*** dasch has joined #harmattan | 11:08 | |
*** GeneralAntilles1 has joined #harmattan | 11:11 | |
*** GeneralAntilles has quit IRC | 11:12 | |
dasch | Hello! I'm hoping to ask some questions about libcontentaction. | 11:15 |
*** slaine has quit IRC | 11:15 | |
*** slaine has joined #harmattan | 11:16 | |
djszapi | RST38h: not sure what you mean... | 11:17 |
djszapi | DocScrutinizer: Yes, we dropped NET_ADMIN. | 11:22 |
*** zarlino has joined #harmattan | 11:24 | |
*** cpscotti has joined #harmattan | 11:29 | |
*** dasch has quit IRC | 11:29 | |
Venemo | DocScrutinizer, I have no idea how scripting has anything to do with IRC | 11:35 |
*** andre__ has joined #harmattan | 11:35 | |
*** andre__ has joined #harmattan | 11:35 | |
*** dasch has joined #harmattan | 11:36 | |
djszapi | Venemo: as for me, ~/.irssi/scripts/, that is | 11:37 |
djszapi | http://scripts.irssi.org/ -> lot of useful scripts. | 11:37 |
Venemo | I am unfamiliar with irrsi, and also unfamiliar with this concept | 11:38 |
djszapi | it is the same concept as plugins.. | 11:38 |
djszapi | pick up what you would like to have, and does not make sense to have default since everybody should not be forced for them. | 11:39 |
Venemo | mhm | 11:39 |
djszapi | in this special case, python is probably not the best idea. I would advise QtScript. | 11:40 |
Venemo | but how does it work? | 11:41 |
Venemo | when some event occours, I run a script? | 11:42 |
djszapi | irssi plugins run during the startup. | 11:42 |
djszapi | or you can execute them manually on-the-fly. | 11:42 |
Venemo | and what do they do? | 11:43 |
djszapi | just like a normal command, explained at the top of the page aforementioned. | 11:43 |
djszapi | keep reading that page, and you can get some ideas what they are for. | 11:43 |
Venemo | I have no idea how to implement such a scripting engine. | 11:45 |
djszapi | well, it is not an arguement, you can learn it anytime, not a biggie. | 11:46 |
Venemo | if there is an option to dynamically load/execute a .js from QML, then that could solve it | 11:46 |
djszapi | http://doc.qt.nokia.com/latest/examples-script.html | 11:47 |
Venemo | well, I think I could add something like this, after I'm done with the features I want :) | 11:48 |
djszapi | sure | 11:49 |
Venemo | djszapi, out of couriousity, does your N9 also drop the connection as often as my N950? | 11:52 |
DocScrutinizer51 | Venemo: find a *very* simple example how scripting and IRC may relate on my wiki/user:joerg-rw/xchat page | 11:52 |
Venemo | DocScrutinizer51, http://wiki.maemo.org/User:Joerg-rw/xchat -> There is currently no text in this page, you can search for this page title in other pages or edit this page. | 11:54 |
DocScrutinizer51 | google is tour friend | 11:54 |
DocScrutinizer51 | your* | 11:54 |
Venemo | meh | 11:54 |
DocScrutinizer | *sigh* | 11:55 |
djszapi | Venemo: never drops | 11:55 |
DocScrutinizer | http://wiki.maemo.org/User:Joerg_rw/ | 11:55 |
Venemo | djszapi, that's good to hear | 11:55 |
DocScrutinizer | http://wiki.maemo.org/User:Joerg_rw/xchat/ | 11:55 |
DocScrutinizer | http://wiki.maemo.org/User:Joerg_rw/xchat/loginhost.xsh | 11:56 |
Venemo | I see | 11:56 |
Venemo | DocScrutinizer, your password is 'mypassword'? | 11:56 |
DocScrutinizer | sure for your convenience, hacker fool! | 11:56 |
Venemo | :P | 11:56 |
*** zarlino has quit IRC | 11:58 | |
*** rcg1 has quit IRC | 12:00 | |
djszapi | my android phone has just arrived \o/ :p | 12:03 |
Venemo | djszapi, you betray us? | 12:03 |
*** zarlino has joined #harmattan | 12:03 | |
djszapi | huh ? | 12:05 |
Venemo | djszapi, so you betray Harmattan for Android? :P | 12:07 |
djszapi | I am trying to find a long term solution (at least longer than Harmattan the days of which is counted - next year) for deploying Qt/KDE applications. | 12:09 |
djszapi | are counted* | 12:09 |
Venemo | ah. | 12:09 |
Venemo | and you don't trust that MeeGo will be of any significance next year? | 12:09 |
RST38h | Android is not it | 12:10 |
djszapi | Venemo: I always disliked MeeGo. | 12:10 |
* RST38h laughes at Venemo | 12:10 | |
Venemo | djszapi, that's sad. | 12:10 |
djszapi | I have never understood why that project is good for me (as for me, I do not prefer it). | 12:10 |
djszapi | I fail to see why it is "sad". | 12:11 |
Venemo | well, it's currently the only (somewhat) open project targeting mobiles. | 12:11 |
djszapi | s/open/open source/ | 12:11 |
RST38h | Venemo: actually, no | 12:11 |
Venemo | RST38h, educate me then, | 12:11 |
RST38h | Venemo: First of all, there are no mobiles targeted by Meego nowadays | 12:11 |
RST38h | Venemo: The Meego Handset is all but dead | 12:12 |
Venemo | yeah, unfortunately. | 12:12 |
RST38h | Venemo: Secondly, there are other Linux based projects targeting mobile devices | 12:12 |
RST38h | Such as Linaro for example | 12:12 |
djszapi | yep!! that are the points, Venemo | 12:12 |
RST38h | Ubuntu Mobile | 12:12 |
Venemo | Linaro is not an OS, it's just the cooperation between Linux kernel devs and ARM chip manufacturers | 12:13 |
Venemo | ans Ubuntu Mobile was for netbooks last time I checked. | 12:13 |
RST38h | Veemo: http://www.linaro.org/downloads/ | 12:13 |
Venemo | and? | 12:14 |
RST38h | Looks pretty much an OS to me | 12:14 |
Venemo | there are downloads for Android and Ubuntu | 12:14 |
RST38h | So? | 12:14 |
RST38h | Ignore Android, take Ubuntu downloads | 12:15 |
Venemo | Android is not open at all, I don't care. how is an Ubuntu for a panda board any good for my N9(x0) | 12:15 |
djszapi | but I was not talking about Linaro. That is a great project indeed, but here is Maemo | 12:15 |
djszapi | and Harmattan, what was the sense of sharing the work instead of polishing one up ? | 12:16 |
Venemo | Maemo is dead already, and you said that Harmattan will be also. | 12:16 |
djszapi | Venemo: MeeGo is not open at all either | 12:16 |
Venemo | but it's a lot more open than android. | 12:16 |
djszapi | Venemo: Harmattan is dead because of MeeGo, if you ask me | 12:16 |
djszapi | Venemo: no, it is not | 12:16 |
Venemo | why is that? | 12:17 |
djszapi | if there is no MeeGo, Harmattan can be polished up | 12:17 |
djszapi | and it can reach the market without running out of the time. | 12:17 |
RST38h | Harmattan is dead. So is Meego. Get used to it, look elsewhere. | 12:17 |
*** rcg1 has joined #harmattan | 12:17 | |
djszapi | MeeGo pretty much defeated the Harmattan time-to-market | 12:17 |
Venemo | which is also sad. | 12:17 |
djszapi | I have never understand why MeeGo was born to be honest, from the day first | 12:17 |
RST38h | There *are* some hopeful developments, even inside Nokia (see project Mietelmi) | 12:17 |
djszapi | at least for handsets until Harmattan is polished up | 12:18 |
djszapi | Meltemi has already been doomed | 12:18 |
Venemo | RST38h, what is project Mietelmi? | 12:18 |
djszapi | but please do not discuss NDA on this channel; | 12:18 |
djszapi | Venemo: you did not hear it | 12:18 |
RST38h | name was quoted in the open | 12:18 |
djszapi | it is not public information | 12:18 |
RST38h | the details of what it is are unknown though | 12:18 |
djszapi | Venemo: at any rate, I have been sad about the meego existence since last year | 12:19 |
djszapi | and it pretty much killed Harmattan | 12:19 |
Venemo | well, MeeGo's main fault is that it failed to deliver any products based on it. | 12:19 |
djszapi | it killed itself and also Harmattan | 12:19 |
RST38h | djszapi; Well, it allowed Symbian managers ot keep their jobs for a little while longer. Isn't it a good thing? | 12:19 |
djszapi | RST38h: Meltemi is a bullshit | 12:19 |
* RST38h does not know what Meltemi is, really, aside from the name | 12:20 | |
djszapi | I know, it has been pretty much doomed | 12:20 |
RST38h | But killing Harmattan with Meego definitely helped Symbian people keep their jobs | 12:20 |
djszapi | same silly traditions, anyway. Android is the next choice of mine | 12:20 |
Venemo | nooo, I don't want android. I want something better. | 12:20 |
RST38h | Venemo: WinPhone? | 12:20 |
Venemo | well | 12:20 |
djszapi | Qt for non-android, what ? | 12:20 |
RST38h | iPhone, Venemo. YOu want iPhone. | 12:21 |
Venemo | I hate the iPhone. | 12:21 |
RST38h | But you want it. | 12:21 |
Venemo | I don't. | 12:21 |
RST38h | Come to the papa Jobs, come... | 12:21 |
Venemo | it would be of no use to me. | 12:21 |
djszapi | Venemo: Android is an excellent platform | 12:21 |
RST38h | Android is depressing | 12:22 |
djszapi | the security is much worse than we did, but still a good project. I advise you the neccesitas project for at least reading. | 12:22 |
RST38h | Total mess to develop for. No business model for app developers. | 12:22 |
RST38h | Driven by people with a mission to reinvent everything. Never a good thing. | 12:23 |
djszapi | Venemo: I am happy to see meego might be dropped by Intel. | 12:23 |
Venemo | android's main fault is its java-based crappiness | 12:23 |
djszapi | RST38h: you are just whining. | 12:23 |
Venemo | I WILL NOT learn java for android | 12:23 |
djszapi | Venemo: no!!! | 12:23 |
djszapi | READ Neccesitas, oh come on... | 12:23 |
RST38h | djszapi: I have been developing for Android for the last few months and trying to market my apps. | 12:23 |
djszapi | Venemo: the native sdk is free as in beer | 12:24 |
djszapi | not sure what java you are talking about... | 12:24 |
RST38h | djszapi: So, whether I am whining or not, it is based on my experience developing for Android. | 12:24 |
Venemo | djszapi, well, ok, it supports Qt. | 12:24 |
xarcass | djszapi: about necessitas: can it play audio and video now? last time i've checked it couldn't | 12:24 |
djszapi | Venemo: of course | 12:24 |
RST38h | And do not get your hopes about NDK too high. You will soon find out how wrong you are. | 12:24 |
djszapi | Venemo: and that is the area where I would like to come into the picture | 12:24 |
djszapi | working on Android QtOpenGL or webkit. | 12:25 |
Venemo | but if MeeGo fails and there won't be a better open alternative, I will either 1) not buy a smartphone at all or 2) buy a wincrap phone, at least I can develop for that. | 12:25 |
djszapi | RST38h: yes, we are all wrong in the neccesitas, sure... | 12:25 |
*** M4rtinK has joined #harmattan | 12:25 | |
djszapi | winphone is good.... | 12:25 |
RST38h | djszapi: just because you have shoehorned Qt onto Android does not mean everyone will use it. | 12:26 |
RST38h | djszapi: will stay just that - an amusing project | 12:26 |
djszapi | RST38h: you lost me, I think the above sentence was more than arrogant, sorry. | 12:26 |
Venemo | winphone is dead easy to develop for... with an easy-to-use IDE, good emulator (which Maemo was always lacking), etc, etc. | 12:27 |
RST38h | Venemo: but C# only for normal devs | 12:27 |
Venemo | RST38h, I like C# a lot better than C++, yes. | 12:27 |
RST38h | Venemo: and if you are privileged developer, you basically get WinCE SDK. | 12:27 |
djszapi | WinPhone is excellent, I love it. However I would also like to deploy Qt apps somewhere. If winphone can manage it with me, it is all nifty. Say, internal company NDK access is already godo enough for starter. | 12:27 |
RST38h | Venemo: well, 1) no ability to compile existing code and 2) awful performance | 12:27 |
djszapi | C# is much more oop than C++ :) | 12:28 |
Venemo | yeah, agreed djszapi | 12:28 |
RST38h | SmallTalk is OOP. C#, Java, C++ are all fake OOP. | 12:28 |
Venemo | RST38h, 1) dead easy to write new code 2) good performance | 12:28 |
RST38h | So, if you are really bent on OOP, use Smalltalk. :) | 12:28 |
RST38h | Venemo: Not interested in writing throwaway code | 12:29 |
djszapi | RST38h: yeah, practical advice on the current mobile market... | 12:29 |
RST38h | Venemo: Not economical. Got Chinese for that. | 12:29 |
RST38h | Venemo: And no, performance will not be the same as native, sorry | 12:29 |
djszapi | RST38h: not the same != awful !!! | 12:30 |
RST38h | djszapi: For me, there is a == | 12:30 |
RST38h | for the applications I am working on anyway | 12:30 |
djszapi | ok, you completely lost me, sorry :) | 12:30 |
djszapi | Venemo: anyway, I think you got my idea and approach about it. | 12:30 |
RST38h | These 30% of performance you are losing do make a difference. | 12:30 |
djszapi | xarcass: not sure, could you please ask on the mailing list ? | 12:31 |
xarcass | djszapi: i asked just out of curiosity, we were planning to port our app to this platform some time ago, but gave up for the lack of multimedia support | 12:32 |
djszapi | xarcass: Neccesitas is not perfect yet, feel free to be involved in. | 12:33 |
djszapi | it is not driven by N, nor I. | 12:33 |
djszapi | nor G. | 12:33 |
*** sudanix has joined #harmattan | 12:36 | |
xarcass | djszapi: i'm more an application programmer. all these huge frameworks scare shit out of me, unfortunately. i've come to this world from microcontrollers, so i'm still afraid of all these gigabytes of source code. but maybe, i'll give it a try. it could require to overcome my hate for java and android though.. | 12:36 |
RST38h | So, what is it driven by? | 12:38 |
djszapi | RST38h: magic xD | 12:38 |
djszapi | xarcass: I see, I was also coming from that world.. You can use Qt btw, no need for java ;-) | 12:39 |
Venemo | RST38h, not true. it is JIT-compiled | 12:39 |
RST38h | Venemo: Rrright. And you think it makes it as fast as C++? :) | 12:39 |
djszapi | Qt is not that fast as STL, we still use Qt.... | 12:40 |
djszapi | how cares about O(1) which is negligible in your application for instance, but you are getting all the gains ? | 12:40 |
RST38h | Venemo: To avoid further discussion (which is kinda boring nowadays), consider accssing a variable in C# or Java. Every access is going to be two pointer lookups. | 12:41 |
RST38h | djszapi: You do understand that O(10000000000) is still considered "the same" as O(1) by computer science (i.e. runs in constant time) but in practice there is a lot of difference? | 12:42 |
wazd | heya all | 12:42 |
djszapi | no, I heavily disagree. I was developing a lot with mono, no real performance drawback ever. | 12:42 |
RST38h | djszapi: also see: media decoding and encoding, emulation, games logic, games rendering, etc | 12:42 |
wazd | again :P | 12:43 |
RST38h | moo wazd | 12:43 |
wazd | RST38h: o/ | 12:43 |
djszapi | RST38h: what about those ? Fail to see why those could not be achieved by having access to the NDK... | 12:44 |
djszapi | which /is/ possibly for certain companies, anyway. | 12:44 |
djszapi | possible* | 12:44 |
*** achipa has quit IRC | 12:44 | |
djszapi | but that is just so obvious. | 12:45 |
djszapi | those niches would be better done in native code. | 12:45 |
*** djszapi has left #harmattan | 12:48 | |
* Arkenoi have seen only one mono application, tomboy. Hell, it sucks! Literally, it sucks memory, can waste several Gbs per week. | 12:48 | |
*** xarcass has quit IRC | 12:50 | |
*** dasch has quit IRC | 12:51 | |
djszapiN9 | arkenoi, so memleak is the provlem a language, and not the developer ? | 12:52 |
djszapiN9 | of a* | 12:52 |
Arkenoi | never seen any other mono app, so can't tell | 12:52 |
djszapiN9 | it is not a language issue. Bad application can be written in any language | 12:53 |
Arkenoi | but seems that in some languages (like Java) application has much "better" chance to be bad | 12:55 |
*** djszapiN9 has quit IRC | 12:55 | |
*** achipa has joined #harmattan | 12:57 | |
*** achipa has joined #harmattan | 12:57 | |
Venemo | hehe | 12:59 |
*** xarcass has joined #harmattan | 13:01 | |
*** zarlino has quit IRC | 13:06 | |
*** aleksander_m has quit IRC | 13:10 | |
*** deimos has joined #harmattan | 13:11 | |
*** aleksander_m has joined #harmattan | 13:13 | |
*** lcuk2 is now known as lcuk | 13:16 | |
*** lcuk has joined #harmattan | 13:16 | |
*** zarlino has joined #harmattan | 13:19 | |
*** ajalkane_N950 has joined #harmattan | 13:43 | |
*** xarcass has quit IRC | 13:56 | |
*** ajalkane_N950 has quit IRC | 13:57 | |
*** ajalkane_N950 has joined #harmattan | 14:11 | |
*** arcean has joined #harmattan | 14:24 | |
*** artemm has quit IRC | 14:31 | |
*** fiferboy has joined #harmattan | 14:35 | |
DocScrutinizer | I only noticed mono when my desktop came to a grinding halt because some fools decided to crate processes named *.exe which were or had child called mono | 14:41 |
DocScrutinizer | and this was NOT a windoze box | 14:41 |
DocScrutinizer | plain linux | 14:41 |
DocScrutinizer | where that app that used mono and *.exe processes was just driving the 500MB RAM system into swap hell | 14:42 |
DocScrutinizer | so that's really all I need to know about mono, it's origin, and the mindset of developers cheerful about it | 14:44 |
Venemo | DocScrutinizer, you told that story a long ago, and even then you admitted that this happened long ago... | 14:46 |
DocScrutinizer | you think time can change your roots? | 14:47 |
Venemo | I think time, and the replacement of their various core components since then, can change performance. | 14:47 |
DocScrutinizer | I'm not interested about performance of a system that has a broken design goal from beginning | 14:49 |
Venemo | I see. | 14:50 |
*** Guest28254 has quit IRC | 15:01 | |
*** Evgeniy has quit IRC | 15:05 | |
*** fiferboy has quit IRC | 15:06 | |
*** Termana has joined #harmattan | 15:08 | |
*** Termana is now known as Guest8432 | 15:08 | |
*** ajalkane_N950 has quit IRC | 15:12 | |
*** berndhs has quit IRC | 15:14 | |
*** berndhs has joined #harmattan | 15:15 | |
*** zarlino has quit IRC | 15:31 | |
*** Venemo has quit IRC | 15:35 | |
*** frinring has quit IRC | 15:38 | |
*** zarlino has joined #harmattan | 15:40 | |
*** frinring has joined #harmattan | 15:45 | |
*** zarlino has quit IRC | 15:53 | |
*** zarlino has joined #harmattan | 15:56 | |
*** artemm has joined #harmattan | 16:04 | |
*** divan has joined #harmattan | 16:05 | |
*** zarlino has quit IRC | 16:06 | |
*** hardaker has joined #harmattan | 16:07 | |
*** Venemo_N950 has joined #harmattan | 16:19 | |
*** lamikr has quit IRC | 16:19 | |
Venemo_N950 | ~seen djszapi | 16:19 |
infobot | djszapi <~lpapp@kde/developer/lpapp> was last seen on IRC in channel #harmattan, 3h 34m 11s ago, saying: 'those niches would be better done in native code.'. | 16:19 |
*** eman has quit IRC | 16:24 | |
*** javispedro has joined #harmattan | 16:31 | |
*** fiferboy has joined #harmattan | 16:34 | |
*** rm_work has joined #harmattan | 16:36 | |
*** rm_work has joined #harmattan | 16:36 | |
*** Venemo_N950 has quit IRC | 16:39 | |
*** GeneralAntilles1 is now known as GeneralAntilles | 16:43 | |
*** GeneralAntilles has joined #harmattan | 16:43 | |
*** wazd has quit IRC | 16:46 | |
rm_work | GeneralAntilles: sup | 16:52 |
rm_work | i forget what you said last time i asked -- are you giving up on SnapGo or whatever it's called? | 16:52 |
*** Venemo_N950 has joined #harmattan | 16:55 | |
GeneralAntilles | rm_work, nope | 16:55 |
GeneralAntilles | Just sidetracked with work, school and some other side endeavors. | 16:55 |
*** maxw has quit IRC | 16:56 | |
*** NIN101 has joined #harmattan | 17:00 | |
rm_work | GeneralAntilles: i'm not sure how enthused i am about N9 stuff anymore... | 17:07 |
rm_work | since they're basically not releasing the phone in any major english speaking countries T_T | 17:08 |
Stskeeps | the phone is actually only in chinese | 17:08 |
Stskeeps | :P | 17:08 |
rm_work | :P | 17:09 |
rm_work | the secret is finally revealed! :P | 17:09 |
rm_work | still eagerly anticipating a firmware release for N950 to fix the major bugs that make it hard to use | 17:09 |
*** arcean_ has joined #harmattan | 17:16 | |
*** arcean has quit IRC | 17:16 | |
Jaffa | rm_work: I know what you mean. If I write an app, who's going to be able to use it? | 17:17 |
*** zarlino has joined #harmattan | 17:17 | |
Jaffa | rm_work: And I've had to stop using the N950 as my day-to-day phone (which I've been doing since I got it) due to weird incoming call bugs. | 17:17 |
Arkenoi | which bugs? | 17:18 |
RST38h | rm_you: that harmattan repo - it is not really encrypted | 17:18 |
RST38h | rm_you: here is a deb line for it (for adding to PackRat): deb http://harmattan-dev.nokia.com/ free non-free | 17:19 |
RST38h | rm_you: The stuff is in http://harmattan-dev.nokia.com/pool/harmattan-beta/ | 17:19 |
*** deimos has quit IRC | 17:21 | |
*** zarlino has quit IRC | 17:25 | |
rm_work | Jaffa: yep | 17:27 |
rm_work | Jaffa: i can barely use it for outgoing calls since 90% of the time the phone is just a black screen so i can't hang up or press buttons for automated systems (no voicemail for me!) | 17:27 |
rm_work | Jaffa: and recently i have been literally holding my phone staring at it waiting for a call and then a "missed call" and "voicemail!" alert comes up | 17:28 |
rm_work | and i'm like "WHAT" | 17:28 |
rm_work | RST38h: ok i'll add it | 17:28 |
RST38h | rm_work: thanks, should keep that complaining guy happy | 17:28 |
jreznik | rm_work: you're lucky you can call at all (even the black screen bug) as the n950 signal reception is really horrible... | 17:29 |
*** Venemo_N950 has quit IRC | 17:29 | |
rm_work | jreznik: it's true, switched from n950 to n900 while standing in line at PAX, and my signal went from almost nothing to almost full bars :( | 17:30 |
rm_work | also it got stuck in airplane mode somehow when i was flying back.... had to reboot it to get it to turn on cellmodem again | 17:30 |
jreznik | rm_work: iphone like behaviour :) you can't hold your phone to call | 17:31 |
RST38h | says "developer edition" for a reason... | 17:31 |
rm_work | yep | 17:31 |
rm_work | RST38h: and I started this convo with: | 17:31 |
jreznik | RST38h: I understand completely, unfortunatelly I can't use it for development right now - no XMPP... | 17:31 |
rm_work | <rm_work> still eagerly anticipating a firmware release for N950 to fix the major bugs that make it hard to use | 17:31 |
RST38h | rm_work; s/hard/impossible =) | 17:31 |
javispedro | jreznik: there won't be XMPP in the final device either | 17:31 |
javispedro | jreznik: just Google Talk. | 17:32 |
RST38h | and the comm plugin api is not documented? | 17:32 |
javispedro | yes, it is fixable. | 17:32 |
jreznik | javispedro: really??? why? (it's like web os...) | 17:32 |
javispedro | I'm waiting for someone to do it :) | 17:32 |
jreznik | javispedro: so maybe I can use our pre-telepathy branch with libiris... | 17:33 |
javispedro | jreznik: blablablabla designers blablabla reduce accounts screen clutter blablabla | 17:33 |
javispedro | jreznik: no, telepathy is fine, you just can't add the account. | 17:33 |
divan | javispedro, how do you know there won't be xmpp? | 17:33 |
jreznik | javispedro: but then it does not make sense - telepathy is there but no account = useless | 17:34 |
javispedro | jreznik: it is used for gtalk | 17:34 |
jreznik | javispedro: yep, but for me :) | 17:35 |
dm8tbr | jreznik: you can add it manually | 17:35 |
javispedro | or you can develop the accounts-ui plugin | 17:35 |
dm8tbr | jreznik: search for me mentioning the two-liner how to do that | 17:35 |
dm8tbr | javispedro++ | 17:35 |
jreznik | javispedro: yep, sounds like the way - to add an account within the app itself | 17:35 |
dm8tbr | I actually already checked and there is a rudimentary account plugin example somewhere | 17:35 |
javispedro | yeah, I mentioned it also on this channel | 17:36 |
javispedro | someone made some sms bridge or similar | 17:36 |
javispedro | s/someone/some developer.nokia.com guy | 17:36 |
jreznik | it's just the more work and you lost integration but... | 17:36 |
javispedro | and his code was on gitorious | 17:36 |
javispedro | jreznik: if you make the plugin you need not lose integration at all | 17:37 |
jreznik | javispedro: ok, I'll take a look, thanks... other guy did the telepathy port so I'm not so skilled in it (for me it's nice but overcomplex stuff ;-) | 17:38 |
*** arcean_ is now known as arcean | 17:42 | |
*** joejoe has joined #harmattan | 17:43 | |
*** razvanpetru has joined #harmattan | 17:47 | |
razvanpetru | another QML layout issue: anchors.leftMargin doesn't do anything for Column > Label. Anyone seen this? | 17:48 |
*** Andy1210 has joined #harmattan | 17:48 | |
artemm | didn't see exactly this thing, but usually positioners are quite hard regarding inner content positioning and try overrirding if they can | 17:49 |
razvanpetru | well, a Column's job in my view is setting the Y | 17:50 |
razvanpetru | otherwise, I don't see why it would want to screw around with my other positioning | 17:50 |
razvanpetru | qml complicates some things that were easy with layouts | 17:55 |
*** Venemo_N950 has joined #harmattan | 17:58 | |
razvanpetru | it doesn't even work if I stick it inside a Rect, so strange... | 18:01 |
* Venemo_N950 wants new software for the N950 | 18:02 | |
*** jreznik has quit IRC | 18:04 | |
evilJazz | razvanpetru, did you use anchors.fill: parent on the Label in the Rect ? | 18:05 |
*** jreznik has joined #harmattan | 18:05 | |
razvanpetru | nope, do I have to? | 18:06 |
razvanpetru | I kind of expect QML to work like HTML and CSS | 18:07 |
evilJazz | well, you have to at least set an anchor to the left side for the left margin to work I think | 18:07 |
razvanpetru | the box model I mean | 18:08 |
Venemo_N950 | razvanpetru, then you expect wrong | 18:08 |
razvanpetru | seems so | 18:08 |
Venemo_N950 | it is not html, nor css, and does not work like them | 18:08 |
evilJazz | if you compare to CSS it's more like padding there, i.e inside the box | 18:09 |
razvanpetru | yes | 18:10 |
evilJazz | there is also the spacing property in Column. Perhaps that is suitable for your purpose? | 18:10 |
Venemo_N950 | yeah, but QML elements don't by default work like html+css's 'box model' | 18:11 |
razvanpetru | evilJazz, that's for vertical spacing | 18:11 |
razvanpetru | I want to indent a silly Label compared to a TextInput | 18:11 |
Venemo_N950 | razvanpetru, what is it that you want to achieve exactly? | 18:11 |
razvanpetru | and I foolisly thought it would be as simple as anchors.leftMargin: 10 | 18:11 |
razvanpetru | Venemo: see above | 18:11 |
evilJazz | razvanpetru, okay, I see | 18:11 |
*** harbaum has quit IRC | 18:11 | |
Venemo_N950 | razvanpetru, seems that I joined later than you wrote that | 18:12 |
Venemo_N950 | but... you need to anchor the item to something, before you can set a margin in that direction | 18:12 |
Venemo_N950 | eg. anchors.left: myOtherElement.right; anchors.leftMargin: 10 | 18:13 |
Venemo_N950 | or you could put 'em inside a Row or Column item | 18:13 |
razvanpetru | this fails spectacularly: | 18:13 |
razvanpetru | Rectangle { color: "red" width: parent.width height: lblFirstName.height anchors.leftMargin: 10 Label { id: lblFirstName anchors.left: parent.left text: qsTr("First name") } } | 18:14 |
razvanpetru | the path to the rect is Sheet > Item > Flickable > Column | 18:14 |
Venemo_N950 | mhm | 18:15 |
Venemo_N950 | well, I have similar stuff, feel free to look at my code... I'm still not sure what exactly you want to achieve | 18:16 |
razvanpetru | http://pastebin.com/cSyFdhL0 | 18:16 |
evilJazz | I am currently experiencing problems with nested vertical ListViews inside a fullscreen horizontal ListView. It seems on Harmattan the mouse events get swallowed somewhere during flicking. The same thing does not happen on my workstation and N900. Anyone else experiencing this? | 18:17 |
razvanpetru | ahhh... are you trying to implement a flickable page view? | 18:18 |
razvanpetru | I was kind of wondering how that's done | 18:18 |
evilJazz | yeah | 18:18 |
Venemo_N950 | razvanpetru, ahm, ok, I see your code. what's the error? | 18:18 |
razvanpetru | no error, it's just that the Label is shown at exactly the same indentation as the item below it | 18:18 |
razvanpetru | whereas it should be 10px to the right | 18:18 |
evilJazz | it is working on all other platforms but not on Harmattan. I think it might be a bug, I plan on distilling a testcase tonight and submit a bugreport. | 18:18 |
Venemo_N950 | razvanpetru, what's the point of the rectangle item? | 18:19 |
razvanpetru | evilJazz: do your pages work like the three harmattan main screens? | 18:19 |
Venemo_N950 | evilJazz, ask in #qt-qml | 18:19 |
razvanpetru | Venemo: to try to hack the Label to move to the right | 18:19 |
evilJazz | razvanpetru, yep | 18:19 |
Venemo_N950 | razvanpetru, ok. I got an idea. | 18:20 |
*** Arkenoi has quit IRC | 18:20 | |
razvanpetru | and do the vertical lists follow the screen or is it like Symbian homscreen pre-anna? | 18:20 |
evilJazz | Venemo_N950, thanks for guidance. Will ask there | 18:20 |
Venemo_N950 | razvanpetru, 1) delete anchors.leftmargin from the rectangle | 18:20 |
razvanpetru | evilJazz: I mean - do you have to swipe to get to next page, or do you drag it and it immediately follows the finger | 18:20 |
Venemo_N950 | razvanpetru, 2) add anchors.fill: parent into the label and delete the left anchor | 18:21 |
evilJazz | razvanpetru, you drag it and it follows, not like pre-Anna, more like Anna-style | 18:21 |
Venemo_N950 | razvanpetru, 3) add anchors.leftMargin: 10 to the label | 18:21 |
razvanpetru | evilJazz - so identical to 3 homescreens, very cool | 18:21 |
Venemo_N950 | razvanpetru, that should work. | 18:21 |
Venemo_N950 | IMO | 18:21 |
razvanpetru | IMO it should work too | 18:22 |
razvanpetru | it sort of works now that I look at it | 18:23 |
Venemo_N950 | sort of? | 18:23 |
razvanpetru | the rectangle becomes transparent and there is not spacing between it and the item below | 18:23 |
razvanpetru | so the label is 10px to the right, but it touches the TextInput below it | 18:24 |
razvanpetru | I guess the red is hidden by the label filling the rect | 18:24 |
Venemo_N950 | hmm | 18:24 |
razvanpetru | and the problem is that height: can't be lbl.height any more | 18:24 |
razvanpetru | because lbl is filling the parent | 18:24 |
Venemo_N950 | agreed, so delete it. | 18:25 |
razvanpetru | I have to set height manually it seems | 18:27 |
*** deimos has joined #harmattan | 18:29 | |
*** baraujo has joined #harmattan | 18:29 | |
razvanpetru | here's what I did: removed the Rectangle and set anchors.left: parent.left and anchors.leftMargin: 10 | 18:31 |
razvanpetru | works! | 18:31 |
Venemo_N950 | ok, nice :) | 18:32 |
razvanpetru | thanks ;) | 18:33 |
*** rcg1 has quit IRC | 18:36 | |
*** jreznik has quit IRC | 18:38 | |
*** slaine has quit IRC | 18:41 | |
*** Venemo_N950 has quit IRC | 18:41 | |
*** Venemo has joined #harmattan | 18:52 | |
*** Venemo has joined #harmattan | 18:52 | |
*** milot has quit IRC | 18:58 | |
*** Andy1210 has quit IRC | 18:59 | |
*** razvanpetru has left #harmattan | 19:00 | |
*** frinring has quit IRC | 19:00 | |
*** rcg1 has joined #harmattan | 19:00 | |
*** radiofree_ has joined #harmattan | 19:04 | |
*** Venemo_N950 has joined #harmattan | 19:06 | |
*** zarlino has joined #harmattan | 19:08 | |
*** jykae_n950 has joined #harmattan | 19:20 | |
*** zarlino has quit IRC | 19:23 | |
*** zarlino has joined #harmattan | 19:27 | |
*** ajalkane_N950 has joined #harmattan | 19:36 | |
GeneralAntilles | rm_work, yeah, it's a bit of a joke at this point. | 19:36 |
rm_work | :( | 19:37 |
rm_work | so sad | 19:37 |
rm_work | and now Internet Tablets are really taking off | 19:37 |
rm_work | and Nokia could have been the pioneer | 19:37 |
GeneralAntilles | rm_work, what it's coming down to now is "Is it still fun?" | 19:37 |
GeneralAntilles | For me, the answer is still yes. | 19:37 |
rm_work | yeah | 19:37 |
GeneralAntilles | But I don't expect much for the near future. | 19:37 |
rm_work | it's still cool, and a bit fun | 19:37 |
rm_work | but starting to get depressing | 19:37 |
rm_work | because it's obvious that this phone doesn't even have a fair chance | 19:38 |
rm_work | the politics of things will ensure it dies no matter what happens | 19:38 |
javispedro | hey, at least, you'll not make any false hopes now. | 19:38 |
javispedro | it's dead before release :) | 19:39 |
javispedro | no way to make it worse with lack of updates, lack of advertisements, lack of commercial applications,... | 19:39 |
GeneralAntilles | It's surreal the amount of money they're flushing down the drain. | 19:40 |
Venemo | rm_work, Nokia were fools to let go of the internet tablet market, 100% of which they owned in 2006 | 19:40 |
rm_work | yep | 19:41 |
rm_work | and just now people are catching up to where they were back then | 19:41 |
Venemo | they basically INVENTED the term "internet tablet" | 19:41 |
rm_work | yep | 19:41 |
Venemo | well, they are fools. | 19:41 |
rm_work | and now it's a whole genre on Newegg | 19:41 |
Venemo | Newegg? what is that? | 19:41 |
rm_work | lol | 19:41 |
GeneralAntilles | No viable alternatives is the worst part. | 19:42 |
Venemo | GeneralAntilles, agreed. | 19:42 |
rm_work | are you kidding? or... is Newegg only a US thing? | 19:42 |
GeneralAntilles | The market now really is just iOS, Android and a (distant) Windows Phone. | 19:42 |
GeneralAntilles | rm_work, US and Canada | 19:42 |
rm_work | :/ | 19:42 |
rm_work | i thought newegg was global | 19:42 |
GeneralAntilles | Which is scary on a lot of levels. | 19:42 |
rm_work | Venemo: Newegg.com is *the* place to buy electronics in the US | 19:43 |
Venemo | GeneralAntilles, some people think that android is a viable alternative, but I don't think so. :( | 19:43 |
Venemo | rm_work, aaah, sorry, I don't live in the US | 19:43 |
rm_work | yeah, i didn't realize newegg was US only | 19:43 |
Venemo | there are "Electroworld", "Euronics", and such named shops here | 19:43 |
GeneralAntilles | Venemo, I'm sorry. I've used Android | 19:43 |
GeneralAntilles | I know Google | 19:43 |
rm_work | bbl, lunch | 19:43 |
GeneralAntilles | I know exactly how evil a platform it is. | 19:43 |
GeneralAntilles | rm_work, and Canada | 19:44 |
Venemo | GeneralAntilles, well, I "know" google too, that's why I don't think it's a viable alternative | 19:44 |
javispedro | and they don't have touchpads (the only reason the name Newegg rings a bell here :) ) | 19:44 |
rm_work | GeneralAntilles: like i said, US only | 19:44 |
GeneralAntilles | rm_work, don't let fiferboy hear you say that. :P | 19:45 |
Venemo | I would be happy to buy a 7" tablet with a hw keyboard and a mechanism similar to N97/N950 | 19:45 |
rm_work | :P | 19:45 |
Venemo | but there are not even hw keyboard tablets nowadays | 19:45 |
*** divan has quit IRC | 19:45 | |
Venemo | good old N810 comes into my mind, and I break into tears... If someome could squeeze some better hardware into that casing... | 19:45 |
rm_work | with tablets i just carry a BT travel keyboard | 19:45 |
rm_work | since a tablet isn't a pocket thing anyway, it'd have a case / backpack | 19:46 |
* RST38h yawns | 19:47 | |
rm_work | (well, at 7" it isn't a pocket thing... and the ones worth buying are mostly 10.1") | 19:47 |
* RST38h wants 5" | 19:48 | |
Venemo | well, I can imagine 7" to be usable on public transport, but 10" is definitely not. | 19:49 |
RST38h | if it is made of aluminium, you can hit people on the head with it and grab their purses | 19:51 |
Venemo | LoL RST38h | 19:51 |
berndhs | if it has an "i" on it, you dont have to hit them, they just give you their purses | 19:53 |
RST38h | but only if you are Steve Jobs | 19:54 |
berndhs | you can say you work for Steve | 19:54 |
Venemo | xD | 19:56 |
*** andre__ has quit IRC | 20:00 | |
*** zarlino has quit IRC | 20:03 | |
fiferboy | Just got my first "Device is malfunctioning" screen! :) | 20:04 |
Stskeeps | congrats, you're now screwed :) | 20:04 |
fiferboy | Hooray? | 20:04 |
berndhs | my device malfunctions without such marketing talk, thank you very much :) | 20:05 |
javispedro | fiferboy: bah, I collect those too. | 20:06 |
fiferboy | ERROR: Failed to flash images | 20:06 |
fiferboy | Success? | 20:07 |
fiferboy | Ah, not enough battery to flash | 20:07 |
fiferboy | And all of a sudden it is rebooting without a reflash and everything it fine o_O | 20:10 |
*** Khertan has joined #harmattan | 20:13 | |
Khertan | hi all | 20:15 |
hiemanshu | hey Khertan | 20:15 |
Khertan | i found pyqt4 coding fun ... but not the case anymore with qml. Am i the only one ? | 20:17 |
Khertan | ajalkane_ | 20:17 |
Khertan | oups | 20:17 |
Khertan | hiemanshu, hi | 20:17 |
hiemanshu | Khertan: how is the app going on? | 20:18 |
hiemanshu | well, I am having fun with QML | 20:18 |
hiemanshu | once you learn it, its a job ride :) | 20:18 |
hiemanshu | joy* | 20:18 |
Khertan | slow devel ... doing preference ui borring me | 20:19 |
*** Sicelo has quit IRC | 20:21 | |
*** Khertan has quit IRC | 20:23 | |
*** Khertan has joined #harmattan | 20:24 | |
Khertan | sorry disconnected | 20:25 |
Khertan | i m in the metro | 20:25 |
Khertan | hiemanshu, so devel of app progress slowly | 20:28 |
Khertan | qml is less boring using qtcreator completion buy | 20:28 |
hiemanshu | ah well yeah | 20:28 |
Khertan | but not available on device | 20:28 |
*** NIN101 has quit IRC | 20:28 | |
Khertan | and i don't see how to do such completion on khteditor :) | 20:29 |
Khertan | without slowing down too much the device | 20:29 |
hiemanshu | well, you could implement it | 20:30 |
hiemanshu | anyways | 20:30 |
hiemanshu | brb | 20:30 |
Khertan | also i m looking for a way to load dynamically to create qml pref panel | 20:32 |
*** Khertan has quit IRC | 20:36 | |
*** cpscotti has quit IRC | 20:37 | |
fiferboy | Ok, so I have run into my first aegis related road block | 20:40 |
fiferboy | I had to replace a system package that runs a service with my own version of it | 20:40 |
fiferboy | Now the service won't stay running | 20:41 |
fiferboy | Any way around this? | 20:41 |
*** harbaum has joined #harmattan | 20:42 | |
*** Khertan has joined #harmattan | 20:42 | |
Khertan | re | 20:46 |
Khertan | someone have already write a font selector in qml ? | 20:46 |
*** Venemo_N950 has quit IRC | 20:48 | |
*** andre__ has joined #harmattan | 20:52 | |
*** andre__ has joined #harmattan | 20:52 | |
*** fiferboy has quit IRC | 20:55 | |
*** fiferboy has joined #harmattan | 20:55 | |
*** fiferboy has quit IRC | 21:04 | |
*** harbaum has quit IRC | 21:05 | |
*** Khertan has quit IRC | 21:09 | |
*** smoku has joined #harmattan | 21:12 | |
*** Khertan has joined #harmattan | 21:14 | |
*** Venemo has quit IRC | 21:19 | |
*** fiferboy has joined #harmattan | 21:20 | |
*** javispedro has quit IRC | 21:20 | |
*** Khertan has quit IRC | 21:21 | |
ajalkane | So my wife got Samsung Galaxy SII today, and I've had some time to play with it. Wicked device. Everything's fast and fluid. | 21:29 |
ajalkane | And it's just filled with features. MeeGo Harmattan feels barren and simplistic in comparison. | 21:31 |
*** fiferboy has quit IRC | 21:31 | |
berndhs | send it to me, i'll port meego to it | 21:31 |
ajalkane | But you know what... It also still ferls boring to use compared to n950 | 21:32 |
ajalkane | I think my wife would go berzerk if I sent her new toy away. She just installed angry birds to it. | 21:33 |
*** NIN101 has joined #harmattan | 21:42 | |
*** dominikb has joined #harmattan | 21:48 | |
*** NIN101 has left #harmattan | 21:49 | |
*** deimos has quit IRC | 21:53 | |
*** fiferboy has joined #harmattan | 21:59 | |
*** aleksander_m has quit IRC | 22:03 | |
*** djszapi has joined #harmattan | 22:14 | |
M4rtinK | djszapi, rZr: looks like my submit request for the (hopefully) working GTK package to to coemmunity repo is still pending :) | 22:20 |
djszapi | M4rtinK: I am a relocation, quite busy nowadays, sorry. Could you please push it directly ? | 22:21 |
djszapi | * in a relocation | 22:21 |
*** hardaker2 has joined #harmattan | 22:25 | |
*** hardaker has quit IRC | 22:26 | |
*** berndhs has quit IRC | 22:36 | |
*** berndhs has joined #harmattan | 22:46 | |
*** wazd has joined #harmattan | 22:47 | |
M4rtinK | ok | 22:57 |
M4rtinK | djszapi: so basically delete the previous package and replace with a branch from my repo ? | 22:57 |
djszapi | M4rtinK: I am busy, rzr is on vacation. Best way to proceed is to push the shared repository without any branch. If the need raises for removal, we shall do it. | 22:58 |
djszapi | to* | 22:59 |
*** NIN101 has joined #harmattan | 23:03 | |
rZr | i am arround | 23:04 |
rZr | M4rtinK: the pb is broken obs no ? | 23:04 |
djszapi | no, it is not | 23:05 |
rZr | M4rtinK: let me add you as the new boss of that repo | 23:06 |
djszapi | rzr: he was already added iirc | 23:06 |
rZr | that's what i thought https://build.pub.meego.com/project/users?project=home%3Arzr%3Aharmattan | 23:07 |
rZr | M4rtinK: next time you can accept your requests | 23:07 |
djszapi | M4rtinK: no need to make a request until we have enough manpowers for reviews. | 23:08 |
rZZZr | http://forum.meego.com/showthread.php?t=4406 | 23:11 |
M4rtinK | might be X-Fade doing some modifications | 23:18 |
M4rtinK | anybody tried to ask him in #meego ? | 23:18 |
*** artemm has quit IRC | 23:19 | |
rZr | I saw some messages to him | 23:21 |
rZr | anyway do you know the feeds app ? mine refuse to shows up again | 23:21 |
*** jussi has quit IRC | 23:26 | |
*** jussi has joined #harmattan | 23:27 | |
*** smoku has left #harmattan | 23:29 | |
*** artemm has joined #harmattan | 23:32 | |
artemm | What does ":-1: error: Connection error: Timeout waiting for reply from server." mean? | 23:32 |
artemm | I am getting it more and more often when trying to deploy to N950 | 23:33 |
artemm | from Qt Creator | 23:33 |
artemm | and the compile log ends with the following: | 23:34 |
artemm | ---- | 23:34 |
artemm | Started uploading file '/Users/artem/WorkArea/Dropbox/discountcalc/trunk/discountcalcharmattanapp-build-harmattan/discountcalcharmattanapp_1_0_0_armel.deb'. | 23:34 |
artemm | Error while building project discountcalcharmattanapp (target: Harmattan) | 23:34 |
artemm | When executing build step 'Deploy to Harmattan device' | 23:34 |
artemm | ---- | 23:34 |
rZr | http://www.developer.nokia.com/bugs/show_bug.cgi?id=411 | 23:35 |
artemm | *checking link | 23:35 |
artemm | thanks rZr | 23:35 |
rZr | this is not related :) | 23:36 |
artemm | Oh, I think that was not for me. Seems to be unrelated\ | 23:36 |
evilJazz | weird error message, never had that while deploying to my N950 | 23:36 |
evilJazz | ssh connection and ping to the device works? | 23:37 |
artemm | Some time in the past I had it already. Was fixed by rebooting the device.. or laptop. Something was rebooted for sure | 23:37 |
artemm | now it doesn't help | 23:37 |
artemm | Test from QtCreator preferences works fine | 23:37 |
evilJazz | ok | 23:37 |
evilJazz | perhaps some dangling package installations in dpkg/apt-get ? | 23:38 |
evilJazz | but that error message looks more like the separate upload port that is being opened when deploying | 23:39 |
artemm | yeah probably | 23:39 |
djszapi | qtcreator is scary :) | 23:39 |
artemm | I just fixed it by cleaning the build directory | 23:39 |
artemm | :/ | 23:39 |
artemm | what I did before that I reorganized the package structure a little | 23:39 |
artemm | Clean doesn't seem to create intermediate artifacts and something was messed up | 23:40 |
artemm | Now I have errors again, but more "normal" ones though still strange | 23:40 |
artemm | dpkg: error processing /home/developer/discountcalcharmattanapp_1_0_0_armel.deb (--install): | 23:40 |
artemm | corrupted filesystem tarfile - corrupted package archive | 23:40 |
artemm | and package structure seems to be wrong.. | 23:41 |
artemm | ok, will continue when I get concrete question or solution | 23:41 |
evilJazz | I spend a whole weekend trying to figure out why aegis was rejecting my package with error message "blahblah is not installed by this package". Turned out the package had some very weird filenames in it (thanks to my Mac) that somehow caused aegis to be unable to read the package content correctly. | 23:42 |
*** deimos has joined #harmattan | 23:43 | |
djszapi | evilJazz: steps to reproduce ? | 23:43 |
djszapi | aegis does not really care about filenames... | 23:44 |
djszapi | in that sense... | 23:44 |
evilJazz | yeah | 23:44 |
artemm | I noticed that Creator's wizard also behaves strange with special chars on Mac at least - so maybe that's system common attitude :) | 23:44 |
artemm | I created a project with dash in its name "-" and now in a hell a lot of places sometimes things are with dash, sometimes without | 23:45 |
djszapi | please please please provide steps, otherwise we cannot proceed... | 23:46 |
djszapi | (Also, without reproducing description, I cannot even take it too seriously). | 23:47 |
evilJazz | just a second, I need to find the old version that contains the test data that were causing the issue | 23:47 |
djszapi | be careful about blaming aegis without real facts. | 23:49 |
djszapi | "weird" files names have nothing to do with "aegis" (should be precise: dpkg wrapper), that is a plain dpkg real operation. | 23:50 |
djszapi | Hence if dpkg is buggy on Mac, I recommend to file a bug against upstream. | 23:52 |
evilJazz | well, the error message came from aegis | 23:52 |
djszapi | so what ? | 23:53 |
djszapi | if application A has an error reporting system, it is not equal to that, the problem is in A, if it uses more underlying components. | 23:53 |
*** tomma has quit IRC | 23:56 | |
*** Sicelo has joined #harmattan | 23:57 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!