#nemomobile log for Sunday, 2014-09-21

*** M4rtinK has quit IRC00:26
*** cristi has quit IRC01:14
*** Sage__ has quit IRC01:43
*** namtab has quit IRC01:44
*** Sage_ has joined #nemomobile01:50
*** namtab has joined #nemomobile01:50
*** Sage_ has quit IRC01:50
*** Sage_ has joined #nemomobile01:50
*** qwazix has quit IRC02:04
*** qwazix has joined #nemomobile02:10
*** hurrian has quit IRC02:11
*** DrCode has quit IRC02:35
*** bowlsicko has quit IRC02:35
*** KaIRC has quit IRC02:38
*** lbt has quit IRC02:51
*** lbt has joined #nemomobile02:52
*** ArtVandalae has quit IRC03:10
*** ArtVandalae has joined #nemomobile03:23
*** hurrian has joined #nemomobile04:21
*** hurrian has quit IRC04:21
*** hurrian has joined #nemomobile04:21
*** DrCode has joined #nemomobile05:08
*** martyone has joined #nemomobile06:07
*** jonwil has joined #nemomobile06:18
*** M4rtinK has joined #nemomobile06:18
*** martyone has quit IRC06:23
*** M4rtinK has quit IRC06:24
*** martyone has joined #nemomobile07:22
*** martyone has quit IRC07:28
*** Guhl99 has joined #nemomobile07:28
*** Guhl99 is now known as guhl07:28
*** M4rtinK has joined #nemomobile07:36
*** onurati has joined #nemomobile08:23
*** lbt has quit IRC08:23
*** lbt has joined #nemomobile08:23
*** jreznik has joined #nemomobile08:35
*** spiiroin has quit IRC08:43
*** lbt has quit IRC08:43
*** M4rtinK has quit IRC08:53
*** artemma has joined #nemomobile08:55
*** KaIRC has joined #nemomobile09:10
*** lbt has joined #nemomobile09:11
*** martyone has joined #nemomobile09:22
*** spiiroin has joined #nemomobile09:25
*** M4rtinK has joined #nemomobile09:28
*** martyone has quit IRC09:35
*** piggz has quit IRC09:35
*** cristi has joined #nemomobile09:36
*** piggz has joined #nemomobile09:45
*** guhl has quit IRC09:52
*** onurati has quit IRC09:56
*** Behold has joined #nemomobile10:15
*** filippz has joined #nemomobile10:22
*** M4rtinK has quit IRC10:27
*** thedead1440_ has quit IRC10:28
*** Guhl has joined #nemomobile10:33
*** cristi has quit IRC10:34
*** lbt_ has joined #nemomobile10:39
*** lbt_away has joined #nemomobile10:40
*** lbt has quit IRC10:43
*** lbt_ has quit IRC10:43
*** solarius has joined #nemomobile10:50
*** cristi has joined #nemomobile10:51
*** arcean has joined #nemomobile10:53
*** cristi has quit IRC10:59
*** xhaakon has quit IRC11:08
*** louisdk has joined #nemomobile11:12
*** piggz has quit IRC11:13
*** thedead1440 has joined #nemomobile11:25
*** filippz has quit IRC11:26
*** piggz has joined #nemomobile11:26
*** xhaakon has joined #nemomobile11:33
*** lbt_away is now known as lbt11:42
*** cristi has joined #nemomobile11:43
*** Venemo has joined #nemomobile11:58
*** lbt has quit IRC12:02
*** lbt has joined #nemomobile12:03
sledgeslocusf: could you check mb2 from latest sdk-utils-0.65 (in testing) is still sane in nemo?12:18
*** javispedro has joined #nemomobile12:38
locusfsledges: I don't have a nemo target ready12:48
locusfsledges: or do you want just a package?12:48
sledgesjust anything that could test new mb2 from testing, outside hadk realm12:49
*** arcean has quit IRC12:56
*** cristi has quit IRC13:08
*** jonwil has quit IRC13:29
*** onurati has joined #nemomobile14:00
locusfsledges: okay14:09
sledgesthanks14:10
locusfsledges: it works14:30
*** onurati has quit IRC14:35
*** tanty is now known as tanty_off14:41
sledgeslbt: ^15:15
sledges\o/15:15
*** Venemo has quit IRC15:33
*** woozygeek has joined #nemomobile15:38
*** phdeswer has joined #nemomobile15:38
*** arcean has joined #nemomobile15:47
*** msava has quit IRC15:49
*** msava has joined #nemomobile15:52
*** messerting has joined #nemomobile15:53
*** onurati has joined #nemomobile15:53
locusflong time since been doing glacier stuff :)16:05
locusfgot rid of a couple of outstanding annoyances with the notifications and stuff with calling screen going off16:07
locusfgonna be using glacier homescreen on the coming week too16:07
locusfand will fix things as I notice them16:07
*** faenil has joined #nemomobile16:27
*** ChanServ sets mode: +o faenil16:27
faenilaloha guys16:27
locusfhey faenil16:31
faenillocusf: yo16:35
*** arcean has quit IRC16:37
locusfqwazix: ping16:46
locusfqwazix: I have done some research on starting the app and then tapping its icon again to bring the app to front, seems impossible without a special model which keeps track of information such as pid and stuff16:47
locusfqwazix: well not impossible but hard, Jolla-home uses something called MruSortedModel to handle this16:48
*** phdeswer has quit IRC16:50
coderushello16:53
coderusif using org.nemomobile.thumbnailer plugin16:53
coderuscan i force clean thumbnail from cache after deleting image?16:54
coderusthere are  too many cases when some application showing old thumbnail if photo removed and new one is captured.16:54
faenilI think nobody of us has touched that code for months :D17:00
*** onurati has quit IRC17:01
*** phdeswer has joined #nemomobile17:06
*** ArtVandalae has quit IRC17:10
*** arcean has joined #nemomobile17:11
locusfhow can I access QAbstractListModel data from QML?17:14
locusfnormally I guess17:16
locusfjust ListModel and then .at()17:16
locusfnope17:20
*** ArtVandalae has joined #nemomobile17:22
*** intherye has joined #nemomobile17:31
*** M4rtinK has joined #nemomobile17:53
coderuslocusf: how can you access QAbstractListModel data from QML?18:33
locusfcoderus: I have no idea18:36
*** faenil has quit IRC18:36
*** lbt has quit IRC18:39
*** lbt has joined #nemomobile18:40
coderusyou need to implement get(index) method if you need18:40
coderusimplement get(index) in source model first18:41
coderusthen18:41
coderus    QModelIndex sourceIndex = mapToSource(index(itemIndex, 0, QModelIndex()));18:41
coderus    QVariantMap data = _contactsModel->get(sourceIndex.row());18:41
coderus    return data;18:41
coderusor something like this :)18:42
*** lbt_ has joined #nemomobile18:43
locusfcoderus: I have no access to the source model, its lipsticks WindowModel18:43
coderusso, what methods it have?18:46
*** lbt has quit IRC18:46
coderusyou can implement get(index, role) then using default public data method of source model18:50
*** piggz has quit IRC18:53
*** javispedro has quit IRC18:53
*** piggz has joined #nemomobile18:53
locusfdamn undefined vtables18:58
locusfI try to subclass WindowModel and use Q_OBJECT but it fails18:58
*** piggz has quit IRC19:03
*** onurati has joined #nemomobile19:03
*** piggz has joined #nemomobile19:06
* bencoh burn the vtables surrounding locusf and calls an exorcist19:06
bencoh+s19:06
locusfbencoh: lol :)19:09
locusfwas missing the call to generate the moc file19:09
locusfit wasn't done by mb2 automagically19:09
locusfbut now I finally have the feature that brings the app to the front when the app is already launched19:11
*** faenil has joined #nemomobile19:14
*** ChanServ sets mode: +o faenil19:14
*** faenil has quit IRC19:18
*** solarius has quit IRC19:27
*** javispedro has joined #nemomobile19:35
*** cristi has joined #nemomobile19:39
*** javispedro has quit IRC19:52
*** ced117 has quit IRC19:55
*** louisdk has quit IRC20:45
*** intherye has quit IRC20:48
*** javispedro has joined #nemomobile20:55
*** Behold has quit IRC20:56
*** Sage_ has quit IRC20:58
*** Sage_ has joined #nemomobile20:58
*** onurati has quit IRC21:10
*** jonwil has joined #nemomobile21:20
*** cosmo_ has joined #nemomobile21:27
*** amccarthy has joined #nemomobile21:27
*** zbenjamin_ has joined #nemomobile21:28
*** rektide_ has joined #nemomobile21:29
*** wmarone_ has joined #nemomobile21:29
*** planasb_ has joined #nemomobile21:29
*** cos- has quit IRC21:31
*** rektide has quit IRC21:31
*** jrayhawk has quit IRC21:31
*** amccarthy_ has quit IRC21:31
*** VDVsx has quit IRC21:31
*** zbenjamin has quit IRC21:31
*** wmarone has quit IRC21:31
*** phdeswer has quit IRC21:31
*** planasb has quit IRC21:31
*** hurrian has quit IRC21:31
*** VDVsx has joined #nemomobile21:32
*** jrayhawk has joined #nemomobile21:34
*** piggz has quit IRC21:37
*** phdeswer has joined #nemomobile21:37
*** messerting has quit IRC21:47
*** cristi has quit IRC21:58
*** lbt_ has quit IRC22:19
*** lbt_ has joined #nemomobile22:20
*** lbt_ has quit IRC22:20
*** lbt_ has joined #nemomobile22:20
*** Azelphur has quit IRC22:21
*** namtab has quit IRC22:22
*** namtab has joined #nemomobile22:23
*** Azelphur has joined #nemomobile22:26
*** lbt_ is now known as lbt22:29
*** Guhl has quit IRC22:30
*** Morpog_PC has quit IRC22:32
*** Morpog_PC has joined #nemomobile22:32
*** Morpog_PC has quit IRC22:39
*** mjones has quit IRC23:10
*** mjones has joined #nemomobile23:10
*** mjones has quit IRC23:15
*** javispedro has quit IRC23:19
*** cxl000 has quit IRC23:26
*** mjones has joined #nemomobile23:32

Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!