Wednesday, 2014-05-28

*** datagutt has quit IRC00:02
*** amccarthy has quit IRC00:07
*** amccarthy has joined #sailfishos00:08
*** nodevel has quit IRC00:18
*** nodevel has joined #sailfishos00:18
*** chriadam|away is now known as chriadam00:30
*** arcean has quit IRC00:49
*** Mossepo has quit IRC01:01
*** FlashAsp_ has quit IRC01:01
*** master_of_master has quit IRC01:07
*** Sailor6666_ has quit IRC01:08
*** master_of_master has joined #sailfishos01:08
*** xnbya|2 has quit IRC01:12
*** master_of_master has quit IRC01:13
*** satmd has quit IRC01:14
*** master_of_master has joined #sailfishos01:14
*** lpotter has quit IRC01:16
*** xnbya|2 has joined #sailfishos01:18
*** lpotter has joined #sailfishos01:43
*** Morpog_PC__ has joined #sailfishos01:44
*** Morpog_PC___ has quit IRC01:48
*** gexc has joined #sailfishos01:56
*** BuTwo1 has joined #sailfishos01:59
*** gexc has quit IRC02:01
*** furikku has joined #sailfishos02:25
*** BuTwo1 has quit IRC02:27
*** zenvoid has quit IRC02:33
*** Eismann has quit IRC02:33
*** zenvoid_ has joined #sailfishos02:33
*** zenvoid_ is now known as zenvoid02:33
*** thomasgubler has quit IRC02:33
*** Eismann has joined #sailfishos02:33
*** thomasgubler has joined #sailfishos02:38
*** master_of_master has quit IRC02:58
*** master_of_master has joined #sailfishos03:00
*** martyone_ has joined #sailfishos03:55
*** Pat_o has quit IRC04:11
*** gexc has joined #sailfishos04:25
*** BasilSemuonov has joined #sailfishos04:38
*** Mikkosssss_ has quit IRC04:50
*** ikapcsandi_ has quit IRC04:57
*** satmd has joined #sailfishos05:00
*** Mikkosssss_ has joined #sailfishos05:09
*** marxistvegan has quit IRC05:09
*** olafh has joined #sailfishos05:11
*** jardous has joined #sailfishos05:15
*** Nichope has quit IRC05:20
*** Nc_ has joined #sailfishos05:22
*** lsme has joined #sailfishos05:35
*** piggz has joined #sailfishos05:38
*** ilmgb has joined #sailfishos05:41
*** Eismann has quit IRC05:43
*** gexc has joined #sailfishos06:02
*** Nichope has joined #sailfishos06:03
*** alin has joined #sailfishos06:05
*** alin has quit IRC06:05
*** alin has joined #sailfishos06:05
*** Nichope has quit IRC06:06
*** gigetoo has quit IRC06:07
*** gigetoo has joined #sailfishos06:08
Juubahmm, i changed my google password, and now I cant re-login to Google Play store on Jolla..06:11
Juubadammit :D06:12
*** Sail0r has joined #sailfishos06:15
Juubathere, now it asked for the new PW06:16
*** Sir_herrbatka has joined #sailfishos06:19
*** piggz has quit IRC06:19
*** piggz has joined #sailfishos06:20
*** Jpel has joined #sailfishos06:21
coderuskimmoli: hi! seems you can help me with canvas stuff? ;)06:25
kimmoliwut06:25
kimmolicoderus: morning06:25
coderushttps://twitter.com/LiKimmo/status/471388823356989441/photo/106:25
kimmoliwant to integrate that on mitäkuuluu?06:26
coderusno06:26
coderusi making mazelock06:26
coderushttps://twitter.com/LiKimmo/status/471388823356989441/photo/106:26
coderusoops06:26
coderushttp://paste.kde.org/pzkqpno6p06:26
kimmolii just did close that tab06:27
coderusand canvas slooowing after 4-5 node added06:27
coderusi dont understand Canvas well06:27
saidinesh5coderus: the culprit is shadowBlur06:28
saidinesh5thats really really bad on Canvas06:29
coderussaidinesh5: oh :(06:29
saidinesh5ran into the same issue myself yesterday06:29
coderusokay...06:29
coderusanother question06:29
saidinesh5mhm?06:29
kimmoliiirc i dont have shadowBlur06:29
coderuscan i draw many lines with different colors in same context?06:30
saidinesh5yep06:30
saidinesh5coderus: just a second06:30
saidinesh5getting you a link06:30
kimmolioo good, we have Canvas xpert here :)06:31
saidinesh5http://t.co/ZRHCStBSBT06:31
saidinesh5heh no expert.. just had to pick this stuff for the last couple of projects i was working on06:31
kimmolii'm also basically googling everything i need to do...06:33
saidinesh5mhm06:33
saidinesh5the nice thing about canvas is a lot of code from HTML5 canvas almost directly runs06:34
coderussaidinesh5: hm, i found you not using closePath() ?06:34
saidinesh5ctx.stroke()06:34
saidinesh5that would draw the line06:35
coderusaha thanks!06:36
saidinesh5or the path06:36
saidinesh5:)06:36
coderussaidinesh5: http://paste.kde.org/pfs9ful5406:38
coderusplease tell me what wrong06:38
* saidinesh5 looks06:38
coderusi want to draw lines between nodes with diffferent colors06:38
coderusbut it coloring all the path06:38
saidinesh5Ahh06:38
saidinesh5i think you need to beginPath()06:39
saidinesh5at line 1506:39
*** jstaniek has joined #sailfishos06:39
coderusnot ddrawinf anything06:40
saidinesh5hold ... getting you the code06:40
coderusgot it06:41
coderussaidinesh5: http://paste.kde.org/psy6wqeni06:41
coderusthanks for the idea :)06:41
saidinesh5mhm that should work :)06:41
*** alin has quit IRC06:43
coderusfinal result: http://paste.kde.org/pjodlq5jj06:43
coderusJonni: ^06:43
coderusfeel free to improve it06:43
saidinesh5you can simply start off at06:44
saidinesh5for (i = 1; i < length; i++){06:45
saidinesh5ctx.moveTo(points[i-1].x,points[i-1].y)06:45
saidinesh5well...06:46
*** kimmoli_sailing has joined #sailfishos06:46
saidinesh5for (i = 1; i < length; i++){ ctx.beginPath(); ctx.moveTo(points[i-1].x,points[i-1].y); ctx.lineTo(points[i].x, points[i].y) }06:46
saidinesh5i.e eliminate the if(i === 0)06:47
coderusx2 operations then :)06:48
*** SfietKonstantin has joined #sailfishos06:48
*** kimmoli_sailing has quit IRC06:48
coderusevery iteration you should get last and current node06:48
*** kimmoli_sailing_ has joined #sailfishos06:48
coderusi'm an assembler guy. i know one thing: less processor operations = better06:49
saidinesh5coderus: http://jsfiddle.net/EL3UA/06:49
saidinesh5is that the effect you are looking for?06:49
saidinesh5coderus: also nope, same number of operations06:50
coderusfirst of all i have no all points at the time06:50
saidinesh5the difference is you are doing it in the current iteration instead of the previous iteration06:51
coderusi have iterations by nodes, not by nodes points06:52
*** gabriel9|work has joined #sailfishos06:52
*** jardous has left #sailfishos06:52
saidinesh5hmm? you mean you are trying to get a smooth curve based on your pins?06:53
coderusno06:53
coderusi mean i have no all nodes coordinates06:54
coderusi'm getting node coordinate only before paint06:54
saidinesh5mhm so?06:54
coderusi cant do points[i-1]06:54
*** jjarven has quit IRC06:55
coderusif i'll do so it will calculate nodes coordinates twice. in current iteration and in next => more operations06:55
*** kimmoli_sailing_ has quit IRC06:56
*** kimmoli_sailing_ has joined #sailfishos06:56
saidinesh5Ah06:56
saidinesh5you can use 2 variables then06:58
saidinesh5and initialize one of them outside the loop before it begins06:58
saidinesh5that way you can eliminate the if condition :P06:58
coderuswhy you dont like conditions?06:58
saidinesh5heh nothing like that.. thats just 1 extra condition that can be eliminated06:59
saidinesh5although in this case it doesn't affect much06:59
coderusless operations is better than less code lines if less code lines affect at operations count07:00
*** zoldyck has quit IRC07:00
saidinesh5yep07:00
saidinesh5or nope07:00
saidinesh5heh really depends07:00
saidinesh5i here its one extra operation. with the 2 variables its one extra memory07:01
*** roboro has quit IRC07:01
saidinesh5heh the classic trade off07:02
*** roboro has joined #sailfishos07:02
coderussaidinesh5: http://paste.kde.org/p8jlkfne907:03
coderusyou can be sure: i know what you mean07:04
saidinesh5mhm07:04
*** Tofe|Away is now known as Tofe07:04
coderusthat probably works fine for me07:04
*** jjanvier has joined #sailfishos07:06
*** tat_ has joined #sailfishos07:06
saidinesh5Ah now i remember you... coderus lol you wrote Persecute too right?07:06
saidinesh5great app!07:06
*** tat has quit IRC07:06
saidinesh5all along i was wondering why your nick sounded so familiar07:07
coderusyup07:07
coderusand my new children is Mitakuuluu07:07
* saidinesh5 google07:07
saidinesh5s07:07
*** tat has joined #sailfishos07:07
saidinesh5Ah07:08
coderusi had no time and profit for persecute, sadly. it was developed too late for harmattan. community isnt same as before, and it remains unfinished07:08
saidinesh5looks quite neat!07:08
coderussailfish community much younger and much enthusiasm :)07:09
saidinesh5heh i know07:09
*** tat_ has quit IRC07:11
saidinesh5coderus: you used a listview for this right? https://openrepos.net/sites/default/files/packages/26/screenshot-screenshot-24-04-14-21-46-12.png07:11
*** niqt has joined #sailfishos07:11
coderussure07:11
coderushttps://github.com/CODeRUS/mitakuuluu2/blob/master/client/qml/ConversationPage.qml#L47807:12
coderusits FOSS projet07:12
saidinesh5Ahh07:12
* saidinesh5 might rip pieces of code from this for his other pet project07:13
saidinesh5https://tox.im/ seems like an interesting thinng to have a QML UI for....07:14
coderusits  already under development :)07:14
saidinesh5nah their QML UI hit a deadend07:15
coderusi mean own native07:15
coderusand whole tox for harmattan/sailfish07:15
saidinesh5Oh?07:15
saidinesh5you mean you are writing one?07:15
coderusnot me07:16
saidinesh5oh then?07:16
coderusbut i know who is :)07:16
saidinesh5heh who?07:16
saidinesh5links please?07:16
saidinesh5i wanted to experiment with a couple of neat ideas for this one...07:17
coderusyou'll see when it will be something to show07:17
saidinesh5oh....07:17
coderusits not even alpha :D07:18
saidinesh5hehe i m willing to try it out07:18
saidinesh5and hopefully contribute07:18
saidinesh5or fork }:)07:18
coderusit will be available later of course :)07:18
saidinesh5i wanted to write a client for this mainly to understand how to make proper reactive UIs07:19
saidinesh5like the same code running on desktop, android, my n9...07:19
*** SfietKonstantin has quit IRC07:20
coderususe asynchronous actions everywhere07:20
coderusmove to threads everything other :)07:20
coderusand it will be very reactive :)07:20
*** admiral1 has quit IRC07:20
saidinesh5heh no no ... i meant the other kind of reactive07:21
saidinesh5you know same qml code adapting different layouts on tablets, mobiles, desktops07:21
saidinesh5https://github.com/custodian/meetox Aaaaah this one? :P07:22
*** disharmonic has quit IRC07:24
*** admiral0 has joined #sailfishos07:25
*** Blizzz has joined #sailfishos07:26
Jonnicoderus: thanks for the paste, I'll have a look when I have time.07:28
*** remarc has joined #sailfishos07:28
*** RobJanc has joined #sailfishos07:32
coderusJonni: this one: http://paste.kde.org/pu5kgvogq :)07:33
coderussaidinesh5: aha07:33
coderussaidinesh5: i prefer custom native interfaces than blowing mind with flexible crossplatform adaptations07:34
saidinesh5coderus: that's actually why i wanted to experiment with this.... like to actually see how much of the UI code can be shared without affecting the user experience07:36
saidinesh5shared/reused07:37
*** carepack has joined #sailfishos07:38
coderusfor android/ios it will probably works, but not BB10/Sailfish07:39
*** M4rtinK has joined #sailfishos07:40
coderusunless you're making something simple like paint tools07:41
coderusthen you can make one interface for everything :D07:41
coderusas it should be connected with nativve platform features07:42
coderusshould not*07:42
*** lbt_ has joined #sailfishos07:43
*** lbt_ has quit IRC07:43
*** lbt_ has joined #sailfishos07:43
*** SK_Sailfish has joined #sailfishos07:43
*** lbt has quit IRC07:44
saidinesh5mhm.. even i m skeptical about how it would work on SailfishOS though07:46
*** Morpog_PC__ has quit IRC07:47
*** tat has quit IRC07:47
*** roboro has quit IRC07:47
*** goroboro has joined #sailfishos07:47
*** M4rtinK has quit IRC07:49
*** N-Mi has joined #sailfishos07:49
zuhWell, you can run Qt/QML apps in iOS and Android so if you stick to basic QML components... :)07:51
*** hcarrega has quit IRC07:51
*** SK_Sailfish has quit IRC07:54
*** alin has joined #sailfishos07:55
*** alin has quit IRC07:55
*** alin has joined #sailfishos07:55
*** PMG has joined #sailfishos07:56
*** xruxa_away is now known as xruxa07:56
*** SK_Sailfish has joined #sailfishos07:56
*** SK_Sailfish has quit IRC08:01
*** SK_Sailfish has joined #sailfishos08:01
*** jjanvier has quit IRC08:02
*** jjanvier has joined #sailfishos08:02
*** SK_Sailfish has quit IRC08:06
coderusMitakuuluu v0.7.4 update. Fixed offline messages. Download: https://openrepos.net/content/coderus/mitakuuluu  Changelog: https://github.com/CODeRUS/mitakuuluu2/releases/tag/v0.7.408:06
*** maxorator has quit IRC08:07
coderusgood developing mood today :)08:08
*** tesalmin1 has joined #sailfishos08:09
*** maxorator has joined #sailfishos08:10
*** tat has joined #sailfishos08:11
saidinesh5coderus: can i copy the config files from one device to another device and run Persecute/Mitakuuluu on both at the same time?08:12
coderussaidinesh5: no http://www.whatsapp.com/faq/general/2100986308:14
*** Loris_ has joined #sailfishos08:14
saidinesh5coderus: no.. the other phone doesn't even have a simcard08:15
saidinesh5i wanted to test out Mitakuuluu on the N950, which has a sailfishOS.. while my primary phone is my N908:15
saidinesh5on which i already have whats app running08:15
*** jjarven has joined #sailfishos08:18
*** ilmgb has quit IRC08:22
*** fk_lx_ has joined #sailfishos08:22
*** ilmgb has joined #sailfishos08:22
*** nodevel has quit IRC08:23
*** nodevel has joined #sailfishos08:23
*** N-Mi has quit IRC08:24
*** kunev has joined #sailfishos08:25
*** artemma has joined #sailfishos08:27
coderusyou cant use it at the same time08:28
coderusnew connection will replace old. and after 3-5 replaces your account will be blocked08:29
*** cxl000 has joined #sailfishos08:29
*** [deXter] has quit IRC08:30
*** [deXter] has joined #sailfishos08:30
Nc_Reading the log from yesterday's meeting, particularly about Bluetooth (BT) support - are there more documentation/notes available about the issues related to BT?08:31
*** krendil has joined #sailfishos08:32
*** N-Mi has joined #sailfishos08:35
*** Loris_ has quit IRC08:45
*** niqt has quit IRC08:49
*** ilmgb has quit IRC08:49
*** artemma has quit IRC08:49
coderusProximity speaker patch for patchmanager: https://openrepos.net/content/coderus/proximity-speaker-patch08:51
*** crazy_imp has quit IRC08:57
*** crazy_imp has joined #sailfishos08:59
*** crazy_imp has joined #sailfishos08:59
*** Pat_o has joined #sailfishos09:01
*** nsuffys has joined #sailfishos09:02
*** jjanvier has quit IRC09:03
*** faenil has quit IRC09:05
*** FlashAsparagus has joined #sailfishos09:06
*** Finlod has joined #sailfishos09:10
*** SK_work has joined #sailfishos09:10
coderusSK_work: ping09:11
SK_workcoderus: pong09:11
coderuscan you check my patch? and i didn't understood how it supposed to work09:11
coderusit said applied, but i dont see changes in files...09:12
coderusand also it required to restart process to work09:12
SK_workcoderus: it does requires the processus to restart, I agree09:12
SK_workplease paste your patch09:12
SK_workand you have log in /var/lib/patchmanager/ausmt/ausmt.log09:12
SK_work:)09:12
coderushttps://openrepos.net/content/coderus/proximity-speaker-patch09:12
coderuslog says success success success09:13
SK_workcoderus: do you have source ?09:13
SK_workat work, I cannot open rpm easily :d09:14
*** faenil has joined #sailfishos09:14
*** ilmgb has joined #sailfishos09:15
coderusinstall it :)09:15
Stskeepsproximity speaker?09:15
coderusyes09:15
Stskeepsi'm curious, tell me more09:15
coderusStskeeps: loudspeaker when device is far, ihf when close09:16
Stskeepsah09:16
Stskeepsclever09:16
Stskeepsremember to count for headphone09:16
SK_workcoderus: :(09:16
SK_workok09:16
SK_workwill do09:16
*** Sail0r has quit IRC09:18
coderusSK_work: https://github.com/CODeRUS/voicecall-proximity-speaker-changer09:19
coderusStskeeps: okay i'll check when patchmanager work :)09:19
SK_workcoderus: nope, doing it wrong :D09:20
SK_workthe patch name must be unified_diff.patch09:20
coderus:D09:21
coderusyou never  said me that :D09:21
SK_workIIRC I have written this on the TMO first page09:21
coderusSK_work: can you also add process_to_kill option?09:21
SK_workcoderus: but I'm sorry09:21
SK_workindeed :)09:21
SK_workcoderus: post in TMO09:21
coderusits useless without killing processs09:21
SK_workwill keep this idea :)09:21
coderussince voicecall-ui in prestart09:21
SK_workcoderus: post on TMO please (so I don't forget :))09:22
*** faenil has quit IRC09:22
*** faenil has joined #sailfishos09:22
coderusSK_work: added09:23
SK_workcoderus: thanks :)09:23
coderusokay, thanks for everybody, will continue at  evening :)09:24
coderusStskeeps: you might be interested in http://paste.kde.org/pu5kgvogq also :)09:24
coderusand probably SK_work too09:24
SK_workcoderus: what's this ?09:25
coderusmaze loc PoC09:25
coderusmaze lock*09:25
SK_workcoderus: guessed it :)09:25
SK_workcoderus: <3 you are awesome09:25
coderusi'm not sure how it should work, just implemented my mind's variant09:26
*** alin has quit IRC09:26
*** cardinal has joined #sailfishos09:27
*** PMG has quit IRC09:28
*** cardinal is now known as hcarega09:28
*** Jpel has quit IRC09:28
*** hcarega is now known as hcarrega09:29
*** gexc has quit IRC09:30
coderushttps://dl.dropboxusercontent.com/u/26659227/jolla/pinentry-0.1-1.armv7hl.rpm09:31
coderusif you're lazy to compile09:31
*** alin has joined #sailfishos09:32
*** crazy_imp has quit IRC09:35
*** crazy_imp has joined #sailfishos09:36
*** crazy_imp has joined #sailfishos09:36
*** alin has quit IRC09:37
*** alin has joined #sailfishos09:38
*** alin has quit IRC09:38
*** alin has joined #sailfishos09:38
*** simbrown has quit IRC09:41
*** Sail0r has joined #sailfishos09:42
*** FlashAsparagus has quit IRC09:50
*** situ has quit IRC09:53
*** situ has joined #sailfishos09:54
*** situ has joined #sailfishos09:58
*** chriadam is now known as chriadam|away10:01
*** datagutt has joined #sailfishos10:05
*** FlashAsparagus has joined #sailfishos10:07
*** maxorator has quit IRC10:08
*** maxorator has joined #sailfishos10:11
*** DarkSim has joined #sailfishos10:15
*** Loris_ has joined #sailfishos10:26
*** Funkeh` has quit IRC10:33
*** FlashAsparagus has quit IRC10:35
*** Nc_ has quit IRC10:35
*** Loris_ has quit IRC10:35
*** nsuffys has quit IRC10:36
*** high-rez has quit IRC10:39
*** [deXter] has quit IRC10:41
*** [deXter] has joined #sailfishos10:41
*** ilmgb has quit IRC10:42
*** high-rez has joined #sailfishos10:44
*** Nc_ has joined #sailfishos10:44
situInteresting read http://marksands.github.io/2014/05/27/how-apple-cheats.html10:46
*** kimmoli_sailing_ has joined #sailfishos10:48
kimmolihmm... some of them seems to be missing from phone ,at least on jolla-browser some are shown just grey box >> http://rsiqueira.postbit.com/upload/2/posts/unicode.html10:50
specialkimmoli: the list of installed fonts is pretty minimal10:52
kaltsialsto the airplane char isn't shown correctly.. :(10:52
kaltsialso10:52
specialif you install a font with those characters it will be used10:52
kimmolii'd like to use OHM character Ω, but seems that it makes Label text object higher that when it is not used... kinda spoils layout when toggling (A,V. Ω), have to make Label height fixed just for that10:54
kimmolior use some magic to make it smaller there10:54
*** bbb_ has joined #sailfishos10:58
kaltsiif can avoid fixed label height, it would be better.. what if the font size becomes adjustable?10:59
*** NoGy has quit IRC11:02
*** bbb_ is now known as NoGy11:02
*** ndvl has joined #sailfishos11:03
*** ndvl has quit IRC11:03
*** ndvl has joined #sailfishos11:03
*** ndvl has quit IRC11:04
*** ndvl has joined #sailfishos11:04
*** ndvl has quit IRC11:04
*** ndvl has joined #sailfishos11:05
*** ndvl has quit IRC11:05
*** ndvl has joined #sailfishos11:05
*** ndvl has quit IRC11:06
*** ndvl has joined #sailfishos11:06
*** ndvl has quit IRC11:06
*** ndvl has joined #sailfishos11:06
*** ndvl has quit IRC11:07
*** ndvl has joined #sailfishos11:07
*** nodevel has quit IRC11:07
*** ndvl has quit IRC11:07
*** ndvl has joined #sailfishos11:08
*** ndvl has quit IRC11:08
*** ndvl has joined #sailfishos11:08
*** ndvl has quit IRC11:09
cos-i finally tested the qwerty other half. pretty nice, but very prototypish.11:09
*** ndvl has joined #sailfishos11:09
*** ndvl has quit IRC11:09
*** ndvl has joined #sailfishos11:09
*** ndvl has quit IRC11:10
*** nodevel has joined #sailfishos11:10
*** nodevel has quit IRC11:10
*** nodevel has joined #sailfishos11:11
*** nodevel has quit IRC11:11
*** nodevel has joined #sailfishos11:11
*** nodevel has quit IRC11:12
*** nodevel has joined #sailfishos11:12
*** ilmgb has joined #sailfishos11:12
*** ndvl has joined #sailfishos11:13
Accecos-: did you buy one?11:15
cos-Acce: nope but a colleague has it11:16
*** nodevel has quit IRC11:16
*** nodevel has joined #sailfishos11:16
cos-looks like something i could build myself. afaik the keyboard connects directly to i2c.11:16
Acceyeah11:16
*** nodevel has quit IRC11:17
Acceit uses the TI TCA8424 chip11:17
*** nodevel has joined #sailfishos11:17
*** ndvl has quit IRC11:17
Acceand the software stack for I2C HID exists apparently11:17
*** nodevel has quit IRC11:17
*** nodevel has joined #sailfishos11:18
cos-i also have the parts for battery toh.. only the time to hack one together is missing11:18
*** nodevel has quit IRC11:18
*** nodevel has joined #sailfishos11:18
*** nodevel has quit IRC11:18
*** nodevel has joined #sailfishos11:19
AcceI have parts for a keyboard toh now, free samples from TI and BT keyboard, just yesterday tried to edit the TOH model to print for it11:19
*** nodevel has quit IRC11:19
*** ndvl has joined #sailfishos11:19
Accebut unfortunately there are some problems with the official .stl, openScad wouldn't render & export it properly, even after fixing it with Meshlab..11:20
*** ndvl has quit IRC11:20
*** ndvl has joined #sailfishos11:20
*** ndvl has quit IRC11:20
*** ilmgb has quit IRC11:20
cos-try cycling it via blender11:21
*** ndvl has joined #sailfishos11:21
*** ndvl has quit IRC11:21
cos-doesn't anyone have ops?11:21
*** ndvl has joined #sailfishos11:21
kimmoli_sailing_kaltsi: but i would need to change fontsize of part of label.. or add separate label for units...11:21
*** ArkkisM has joined #sailfishos11:22
*** ndvl has quit IRC11:22
*** nodevel has joined #sailfishos11:22
Accecos-: thanks, I'll try that11:22
*** nodevel has quit IRC11:22
cos-i did my modifications with blener, but it's not very good for cad11:22
*** ndvl has joined #sailfishos11:22
*** ndvl has quit IRC11:23
cos-have you tried my 3d printer optimized versions?11:23
*** ndvl has joined #sailfishos11:23
kimmolii just remodelled that toh from scratch, makes easier to change in future for different things from sources11:23
Acceno I haven't, where can I get them?11:23
*** ndvl has quit IRC11:23
*** ndvl has joined #sailfishos11:24
cos-http://5w.fi/5blog/2014/02/04/3d-printed-the-other-half-for-jolla/11:24
*** ndvl has quit IRC11:24
*** ndvl has joined #sailfishos11:24
*** ndvl has quit IRC11:25
cos-or directly to files http://www.modeemi.fi/~cosmo/toh/11:25
*** ndvl has joined #sailfishos11:25
*** ndvl has quit IRC11:25
*** ndvl has joined #sailfishos11:26
*** ArkkisN has quit IRC11:26
*** ndvl has quit IRC11:26
*** ndvl has joined #sailfishos11:26
*** ndvl has quit IRC11:27
*** ndvl has joined #sailfishos11:27
*** ndvl has quit IRC11:27
*** ndvl has joined #sailfishos11:27
*** ndvl has quit IRC11:28
*** ndvl has joined #sailfishos11:28
*** jjarven has quit IRC11:28
*** ndvl has quit IRC11:28
*** ecloud_ has joined #sailfishos11:28
*** ndvl has joined #sailfishos11:29
*** ndvl has quit IRC11:29
*** ndvl has joined #sailfishos11:29
*** ndvl has quit IRC11:30
*** ndvl has joined #sailfishos11:30
*** ndvl has quit IRC11:30
*** ndvl has joined #sailfishos11:30
*** ndvl has quit IRC11:31
*** ndvl has joined #sailfishos11:31
*** ndvl has quit IRC11:32
*** ndvl has joined #sailfishos11:32
*** ndvl has quit IRC11:32
*** ndvl has joined #sailfishos11:32
*** ndvl has quit IRC11:33
*** ndvl has joined #sailfishos11:33
*** ndvl has quit IRC11:33
*** ndvl has joined #sailfishos11:34
*** ndvl has quit IRC11:34
*** nodevel has joined #sailfishos11:34
*** FlashAsparagus has joined #sailfishos11:36
*** nodevel has quit IRC11:39
*** FlashAsparagus has quit IRC11:40
*** BeholdMyGlory has joined #sailfishos11:45
Acceok, thanks for the tip, I'll try to work from these11:46
*** jjarven has joined #sailfishos11:48
*** RobJanc has quit IRC11:51
*** RobJanc has joined #sailfishos11:55
*** faenil has quit IRC12:02
*** FlashAsparagus has joined #sailfishos12:06
*** FlashAsparagus has quit IRC12:08
*** FlashAsparagus has joined #sailfishos12:09
*** gexc has joined #sailfishos12:10
*** ilmgb has joined #sailfishos12:11
*** gexc has quit IRC12:12
*** remarc has quit IRC12:12
*** goroboro has quit IRC12:13
*** faenil has joined #sailfishos12:13
*** goroboro has joined #sailfishos12:14
*** goroboro has quit IRC12:14
*** goroboro has joined #sailfishos12:14
*** krendil has quit IRC12:16
*** FlashAsp_ has joined #sailfishos12:18
*** FlashAsparagus has quit IRC12:18
*** jmlich has joined #sailfishos12:18
*** krendil has joined #sailfishos12:18
*** ArtVandalae has quit IRC12:27
*** ziggy42 has joined #sailfishos12:28
*** ottulonen has quit IRC12:30
*** ilmgb has quit IRC12:30
*** martyone_ has quit IRC12:32
*** ilmgb has joined #sailfishos12:32
ziggy42In which folder can I find the SQLite database of my app?12:37
kimmoli_sailing_where did you put it? my is in .local/share/...12:37
kimmoli_sailing_using some defaultpaths12:38
*** gexc has joined #sailfishos12:39
*** ArtVandalae has joined #sailfishos12:39
ziggy42I didn't specify where to put my db12:40
ziggy42so ok thanks12:40
ziggy42I'll look in it12:40
ziggy42Found, thank you12:42
*** krendil has quit IRC12:54
*** RobJanc has quit IRC12:56
*** xnbya|2 has quit IRC12:57
*** xnbya has joined #sailfishos13:00
*** DarkSim has quit IRC13:06
*** FlashAsp_ has quit IRC13:08
*** lbt_ is now known as lbt13:09
*** javispedro has joined #sailfishos13:10
*** Sail0r has quit IRC13:16
*** ziggy42 has quit IRC13:20
*** zoldyck has joined #sailfishos13:21
*** Tofe is now known as Tofe|Away13:21
*** Mossepo has joined #sailfishos13:22
*** ziggy42 has joined #sailfishos13:22
*** hge has quit IRC13:28
*** Sequenced has quit IRC13:40
*** javispedro has quit IRC13:41
*** stephg has quit IRC13:44
*** Jpel has joined #sailfishos13:45
*** stephg has joined #sailfishos13:45
stephggood afternoon evertone13:45
Stskeepsgood afternoon13:45
*** kimmoli_sailing_ has quit IRC13:54
*** Mikkosssss has joined #sailfishos13:57
*** Mikkosssss_ has quit IRC14:00
*** Mikkosssss has quit IRC14:01
*** Mikkosssss has joined #sailfishos14:02
*** Sailor6916_ has joined #sailfishos14:02
tbrphdeswer: ok, I'm heading north on friday. if you want to usb-host hack tomorrow, I'm game14:02
*** veskuh has quit IRC14:02
*** Mikkosssss_ has joined #sailfishos14:03
phdeswertbr: cool. Would be good to do. When and where would suit you to meet?14:04
*** Jpel has quit IRC14:05
*** Mikkosssss has quit IRC14:06
tbrphdeswer: we can meet at my place or somewhere else, have no specific preferences14:08
phdeswerI'll bring the beer and come to your place. Early afternoon?14:09
phdeswertbr: of course address and stuff in private ;)14:09
*** zhxt_ has joined #sailfishos14:13
*** zhxt_ is now known as zhxt_home14:14
*** xerpi has joined #sailfishos14:15
tbrphdeswer: works for me.14:15
tbrphdeswer: I'll supply the whisky for after the coding/testing14:15
*** TheBootroo_work has quit IRC14:15
phdeswertbr: victory whiskey sounds good :)14:17
*** Sailor6916_ has quit IRC14:17
faenil:D14:18
*** goroboro has quit IRC14:21
*** goroboro has joined #sailfishos14:21
*** freedomrun has joined #sailfishos14:26
*** carepack has quit IRC14:27
*** ziggy42 has quit IRC14:27
*** tanty_off is now known as tanty14:29
*** goroboro has quit IRC14:32
*** roboro has joined #sailfishos14:32
*** Nightmare__ has joined #sailfishos14:33
*** sletta has quit IRC14:35
*** roboro has quit IRC14:39
*** roboro has joined #sailfishos14:40
*** ilmgb has quit IRC14:43
*** ilmgb has joined #sailfishos14:46
*** Venemo has joined #sailfishos14:49
*** Venemo has joined #sailfishos14:50
*** raa70 has quit IRC14:50
*** gexc has quit IRC14:59
*** gexc has joined #sailfishos15:01
*** SK_work has quit IRC15:04
*** Nightmare__ has quit IRC15:05
*** Kabouik has joined #sailfishos15:05
*** Sail0r has joined #sailfishos15:05
*** PamNor has joined #sailfishos15:15
*** fracting has joined #sailfishos15:16
*** kunev has quit IRC15:18
*** jmlich has quit IRC15:20
*** spider-mario has joined #sailfishos15:20
*** SK_work has joined #sailfishos15:21
*** tanty is now known as tanty_off15:32
*** Nichope has joined #sailfishos15:32
*** jmlich has joined #sailfishos15:37
*** gabriel9|work has quit IRC15:38
*** kimmoli_sailing_ has joined #sailfishos15:41
*** ilmgb has quit IRC15:41
*** ilmgb has joined #sailfishos15:42
*** Sequenced has joined #sailfishos15:42
*** zhxt_home has quit IRC15:43
*** Funkeh` has joined #sailfishos15:44
*** gexc has quit IRC15:44
*** Venemo has quit IRC15:46
*** Kabouik has quit IRC15:55
*** gexc has joined #sailfishos15:57
*** kimmoli_sailing_ has quit IRC15:59
*** m4g0g has joined #sailfishos15:59
*** jstaniek has quit IRC16:00
*** PamNor has quit IRC16:02
*** admiral0 has quit IRC16:05
*** gexc has quit IRC16:10
*** xerpi has quit IRC16:12
*** Kabouik has joined #sailfishos16:13
*** N-Mi has quit IRC16:18
*** fracting has quit IRC16:19
*** kimmoli_sailing_ has joined #sailfishos16:20
*** edgar2 has joined #sailfishos16:20
*** javispedro has joined #sailfishos16:21
*** fracting has joined #sailfishos16:22
*** Morpog_PC has joined #sailfishos16:22
*** kimmoli_sailing_ has quit IRC16:25
*** kimmoli_sailing_ has joined #sailfishos16:26
*** kimmoli_sailing_ has quit IRC16:28
*** kimmoli_sailing_ has joined #sailfishos16:28
*** ZeiP has quit IRC16:36
*** alin has quit IRC16:41
*** tat has quit IRC16:45
*** tanty_off is now known as tanty16:49
*** nsuffys has joined #sailfishos16:57
*** rm_work is now known as rm_work|away16:59
*** kimmoli_sailing_ has quit IRC17:00
*** Nc_ has quit IRC17:00
*** kimmoli_sailing_ has joined #sailfishos17:02
*** Hijackal has joined #sailfishos17:04
*** tanty is now known as tanty_off17:04
*** TMavica has joined #sailfishos17:04
*** rm_work|away is now known as rm_work17:06
*** Nc_ has joined #sailfishos17:07
*** Pat_o has quit IRC17:09
*** xruxa is now known as xruxa_away17:13
*** AlmAck has joined #sailfishos17:15
*** keel_ has joined #sailfishos17:16
*** piggz has quit IRC17:19
*** wickwire has joined #sailfishos17:25
*** spider-mario has quit IRC17:26
*** danielwf has joined #sailfishos17:27
*** ilmgb has quit IRC17:28
*** Blizzz has quit IRC17:31
*** VDVsx has quit IRC17:35
*** lsme has quit IRC17:37
*** faenil has quit IRC17:41
*** faenil_ has joined #sailfishos17:41
*** kimmoli_sailing_ has quit IRC17:42
*** RoKenn has joined #sailfishos17:49
*** xerpi has joined #sailfishos17:50
*** VDVsx has joined #sailfishos17:51
*** freedomrun has quit IRC17:53
*** itbaron has joined #sailfishos17:53
*** SK_work has quit IRC17:56
*** rubdos has joined #sailfishos17:58
*** plfiorini has joined #sailfishos17:59
*** tanty_off is now known as tanty18:03
*** Pat_o has joined #sailfishos18:04
*** wickwire has quit IRC18:06
*** killSwam has joined #sailfishos18:06
killSwamriding xchat ögain18:07
Stskeepswoo xchat18:07
*** faenil_ has quit IRC18:08
*** tanty is now known as tanty_off18:09
*** ZeiP has joined #sailfishos18:09
*** ZeiP has quit IRC18:10
*** Eismann has joined #sailfishos18:11
*** artemma has joined #sailfishos18:14
*** Nightmare__ has joined #sailfishos18:14
*** remarc has joined #sailfishos18:14
*** remarc has joined #sailfishos18:14
*** TMavica has quit IRC18:16
*** ZeiP has joined #sailfishos18:18
*** ZeiP has quit IRC18:18
*** faenil_ has joined #sailfishos18:21
*** ZeiP has joined #sailfishos18:21
*** ZeiP has quit IRC18:22
*** ZeiP has joined #sailfishos18:26
*** faenil_ has quit IRC18:31
*** Nc_ has quit IRC18:35
*** Nichope has quit IRC18:36
*** faenil has joined #sailfishos18:42
*** Sequenced has quit IRC18:45
*** faenil_ has joined #sailfishos18:47
*** faenil has quit IRC18:48
*** Nichope has joined #sailfishos18:51
*** xnbya|2 has joined #sailfishos18:53
*** javispedro has quit IRC18:55
*** xnbya has quit IRC18:56
*** Nichope has quit IRC18:56
*** xnbya|2 is now known as xnbya18:57
*** Morpog_PC has quit IRC18:59
*** jmlich has quit IRC19:00
*** M4rtinK has joined #sailfishos19:03
*** disharmonic has joined #sailfishos19:05
*** lsme has joined #sailfishos19:05
*** faenil_ has quit IRC19:05
*** faenil_ has joined #sailfishos19:06
*** rashm2k has joined #sailfishos19:07
*** Nichope has joined #sailfishos19:07
*** furikku has quit IRC19:07
*** faenil__ has joined #sailfishos19:09
*** faenil_ has quit IRC19:11
rubdosPutting a new microSD card in my jolla :D19:15
rubdos64 gb... They didn't have 128 :(19:15
*** itbaron has quit IRC19:22
*** faenil has joined #sailfishos19:23
*** faenil__ has quit IRC19:24
SpeedEvil'insert card B:'19:26
*** FlashAsparagus has joined #sailfishos19:29
rubdosSpeedEvil, insert disk 4 out of 324419:29
*** petrisi has quit IRC19:30
*** onurati has joined #sailfishos19:31
*** Nichope has quit IRC19:34
*** FlashAsparagus has quit IRC19:36
*** SfietKonstantin has joined #sailfishos19:38
*** Nichope has joined #sailfishos19:38
*** arcean has joined #sailfishos19:41
*** danielwf has quit IRC19:42
*** Finlod has quit IRC19:44
*** FlashAsparagus has joined #sailfishos19:46
*** Sir_herrbatka has quit IRC19:46
*** keel_ has quit IRC19:46
*** jstaniek has joined #sailfishos19:55
*** FlashAsparagus has quit IRC19:55
*** nsuffys has quit IRC20:06
*** FlashAsparagus has joined #sailfishos20:06
*** SfietKonstantin has quit IRC20:10
*** m4g0g has quit IRC20:10
*** euroelessar has joined #sailfishos20:10
*** danielwf has joined #sailfishos20:15
*** dr_ has joined #sailfishos20:16
*** Sail0r has quit IRC20:17
*** danielwf has quit IRC20:18
*** Hijackal has quit IRC20:19
*** edgar2 has quit IRC20:25
*** niqt has joined #sailfishos20:26
*** krendil has joined #sailfishos20:32
*** Khertan has joined #sailfishos20:34
*** SfietKonstantin has joined #sailfishos20:35
*** BasilSemuonov has quit IRC20:37
*** SfietKonstantin has quit IRC20:40
*** dr_ has quit IRC20:43
*** dr_ has joined #sailfishos20:43
*** cloanta has joined #sailfishos21:00
*** Nekron_ has joined #sailfishos21:02
*** rubdos has quit IRC21:02
*** DrIDK has joined #sailfishos21:04
*** Nekron_ has quit IRC21:08
*** danielwf has joined #sailfishos21:08
*** xerpi has quit IRC21:15
*** danielwf has quit IRC21:17
*** Stskeeps has left #sailfishos21:18
*** krendil has quit IRC21:18
*** niqt has quit IRC21:19
*** Sazpaimon__ is now known as Sazpaimon21:20
*** petrisi has joined #sailfishos21:28
*** tortoisedoc has joined #sailfishos21:35
*** piggz has joined #sailfishos21:35
tortoisedocahoi sailors!21:35
tortoisedoca quick question21:36
tortoisedochow to hide an application window from within qml?21:36
tortoisedocI believe there is already some signal?21:36
*** danielwf has joined #sailfishos21:36
lbthmm21:36
tortoisedocor should I roll my own?21:38
tortoisedoci tried appwindow.visible = false21:38
tortoisedocbut no go21:38
lbtI don't *think* you can do it in QML21:38
kimmolithis you mean? https://sailfishos.org/sailfish-silica/qml-sailfishsilica-applicationwindow.html#deactivate-method21:38
tortoisedockimmoli:bingo21:39
tortoisedocthanks!21:39
kimmolinop21:39
lbttortoisedoc: oh - I thought you meant 'hide' not minimise21:39
lbtie not show a cover21:39
tortoisedoclbt : yeah sorry, my misexplanation21:40
lbtnp - fwiw you can hide but yes, it's a lot more complex21:40
tortoisedochmmm21:40
tortoisedocnogo : |21:40
tortoisedoceven with deactivate21:40
*** Loris_ has joined #sailfishos21:40
kimmolihöh21:40
tortoisedocretesting21:40
tortoisedocok second test counterfeits and is GO :)21:41
tortoisedocso something is wrong in my mousearea21:41
tortoisedocgrr21:41
*** piggz has quit IRC21:46
kimmolibefore i test, does this point to /home/nemo/Pictures? QStandardPaths::PicturesLocation21:46
*** onurati has quit IRC21:50
*** RoKenn has quit IRC21:50
kimmoliit does...21:54
lbtI use  m_picDir=QStandardPaths::standardLocations(QStandardPaths::PicturesLocation).first();21:54
*** Loris_ has quit IRC21:54
*** phaeron has joined #sailfishos21:54
phaeron[PSA] Store repository going down for maintenance21:55
*** Khertan has quit IRC21:55
tortoisedocw00t21:58
tortoisedocit works! :D21:58
tortoisedocawesome21:59
* artemma is reading Qt 5.3 announcement. There is QML compiler now! Startup time on Sailfish is something that could benefit from improvement. Anybody knows if QML compiling can help significantly there?21:59
*** javispedro has joined #sailfishos21:59
tortoisedocartemma : static compilation is not necessarily optimized for device22:00
faenilartemma, Qt Enterprise only22:00
artemmaoh..22:00
artemmasad22:00
artemmabut then again it's my *thinking* that QML parsing is what's most slow for Sailfish app starts. Maybe top bottleneck is elsewhere22:01
*** tat has joined #sailfishos22:01
* artemma just came from a three year trip and is reading lots of announcements happened meanwhile22:02
artemmaHey, Jolla seems to [unofficially?] expect paid apps support to come in 2H 2014 https://lists.sailfishos.org/pipermail/devel/2014-April/004063.html Anybody knows details about it?22:03
artemmaReally coming? Just simple paid apps or also subscriptions and in-app purchases?22:04
tortoisedocoh man22:07
tortoisedocqml is great22:07
tortoisedochad forgotten how good it was in harmattan already D22:08
*** dr_ has quit IRC22:09
*** dr_ has joined #sailfishos22:10
tortoisedocok next question22:12
tortoisedocdoes silica support swipe gestures?22:12
tortoisedocI forgot to add the yet :P22:12
tortoisedocI found this22:13
tortoisedochttps://blog.qt.digia.com/blog/2010/10/05/getting-in-touch-with-qt-quick-gestures-and-qml/22:13
tortoisedocbut is it still valid?22:13
tortoisedocit's pretty old (harmattan)22:13
artemmaI think Silica supports gestures fine (e.g. pinch zoom and rotation), but I haven't tried myself22:14
*** roboro has quit IRC22:14
* artemma would also be careful with app-specific gestures as IMHO Sailfish is already quite overloaded with [not very consistent] system-wide gestures. Throwing more gestures on top could confuse user even more22:15
tortoisedocartemma : pinch / zoom / rotation are out of scope for now, I would need only swype-style :|22:15
artemmatortoisedoc: that's exactly what I would be very careful with in Sailfish :)22:16
artemmait's already very heavy on swiping22:16
tortoisedocartemma : yes unfortunately that is the case :|22:16
tortoisedocbut one more swipe, how can it hurt ;)22:17
artemmaI think (though not verified) that it is relatively easy to grab swipe gestures from system, there is even some TouchBlocker QML element for it, but UI-wise confusion could be great22:17
artemmatortoisedoc: yeah, sometimes I think it's precisely the motto Sailfish designers used :)22:17
*** Nightmare__ has quit IRC22:17
* artemma is using Jolla heavily for half a year or so and still gets confused between swipe from edge and from screen center22:18
FireFlyartemma: "2H"?22:19
artemmaFireFly: 2nd half22:19
FireFlyAha22:19
*** Blizzz has joined #sailfishos22:21
*** disharmonic has quit IRC22:22
artemmajust when I started a project on making Qt Apps for iOS look real native :)22:22
artemmathough watching now Qt on Android webinar and thinking that I should have started with Android probably22:23
tortoisedocha22:25
tortoisedochttps://gist.github.com/kovrov/174240522:25
tortoisedocsomebody has made a mouseswipe item :P22:25
*** roboro has joined #sailfishos22:26
*** killSwam has quit IRC22:26
*** cloanta has quit IRC22:27
phaeron[PSA] store repo update done22:33
*** M4rtinK has quit IRC22:34
*** Blizzz has quit IRC22:37
* artemma found a lo-o-ong thread in mailing list on Filip leaving Jolla community due to a lot of disappointment in reaction to what he cares about.. oh22:41
artemmalooks like a lot of things were happening while i was out :/22:41
tortoisedocheh22:44
tortoisedocartemma22:44
tortoisedocyou missed the whole story?22:44
tortoisedochave a nice read :)22:45
*** tortoisedoc has quit IRC22:45
*** arcean has quit IRC22:46
artemmanah, not going to read it. Somebody got disappointed about Jolla direction too much. Well, happens22:48
phaeronwas it because of lack of python support ?22:49
*** euroelessar has quit IRC22:50
*** FlashAsparagus has quit IRC22:50
*** jstaniek has quit IRC22:50
artemmaphaeron: I am not into reading whole story anyway. And I am not sure it matters22:51
artemmawhen somebody's values clash hard with somebody else's values.. well, that happens22:51
phaeronartemma:  ok no problems , was just a general question , not to you specifically :)22:51
artemmaI am not the best person to answer22:52
faenilwell, it escalates when it reaches this kind of tones22:53
faenilhttps://twitter.com/fk_lx/status/47178122411851776022:53
artemmabeing at a startup myself I know it's tough to make decisions there and when you go as public as Jolla, many people are likely to be disappointed22:53
artemmaheck, I myself am not happy about many things in Jolla, but it's not me who is paying the bills. And the guys did quite many things well as well22:53
artemmaoh, I guess I should stop discussing it at all then. Gets too personal and I don't know people involved much anyway. Except recalling that al of them seem to be full of good intentions22:55
artemmaBack to actual Sailfish-Jolla topics: does anybody has a hint on Jolla sales numbers?22:57
artemmaor users numbers or something like this22:57
* artemma is trying to guesstimate the apps market size22:58
faenilartemma, difficult to get a hint about that :)22:58
faenilmy opinion is that it's not going *that* well, but it's not going terribly bad22:58
artemmait was quite easy to see before Jolla replaced exact Android downloads counter with 10000+ :)22:59
faenil:)22:59
* artemma is looking for at least a semi-commercial reason to stay in Sailfish world, but can't quite see it :/22:59
artemmaWell, maybe I should reevaluate things and be clear it's just a hobby for fun23:00
*** dabb has quit IRC23:01
faenilartemma, trying to make money with ads atm?23:01
artemmafaenil: not really. Thinking about *any* biz model actually. And ads are least favorite of mine as that23:02
*** dabb has joined #sailfishos23:02
artemmathat's paying for reducing pain23:02
faenilartemma, yeah but if you can't *sell* anything23:02
faenilhow are you supposed to make money23:02
* artemma is in a big favor of subscriptions. Especially micro-subscriptions. IMHO it is the best incentive for devs to continue developing the same app23:03
faenilyeah but how do you do that in sailfish apps?23:04
faenildo you have a custom platform?23:04
artemmafaenil: if Jolla sales would be high enough for some general services companies to be interested in "a client for Sailfish OS too, please", there could be contractual opportunities23:04
*** AlmAck has quit IRC23:04
faenilartemma, ah I see23:04
artemmasay, if GetPocket or Instagram or Twitter or whatever could be interested in covering Jolla as well23:04
faenilyeah23:05
artemmaand then paid apps are supposed to be possible in 201423:05
faeniltime to go to bed, see you people o/23:05
faenilartemma, yeah, 2h :)23:05
artemmaso just guessing now if it will be any real even for ice cream money23:05
*** stephg_j has joined #sailfishos23:05
faenilartemma, eheh23:05
stephg_jweird tweetian won't launch23:05
*** remarc has quit IRC23:05
*** tat has quit IRC23:08
stephg_jand yet it launches from the command line23:10
stephg_joops no segfault23:10
*** Kallegro has joined #sailfishos23:10
*** rashm2k has quit IRC23:13
*** danielwf has quit IRC23:14
artemmastephg_j: by command line I guess you mean /usr/bin/harbour-tweetian I don't think it's how Lipstick launches apps - it uses booster that might be failing23:14
stephg_jyeah, on a train and it will launch by gdb via fingerterm23:14
stephg_jbut obvs now wont segfault :)23:14
stephg_jwell one more intersting thing before I go into the acary dark park23:18
stephg_jlaunching it via gdb the fonts do the aame thing as apps do (e.g. foursail) whrn launched via the sdk23:18
stephg_jwith the fonts in the pulley menu23:19
sledgesartemma: help pushing flattr (et al.) idea to jolla then23:22
sledgeswe had discussion about paid store apps in last community meeting yesterday23:22
artemmasledges: something like flattr could work, though not sure if Jolla would like to partner with exactly flattr23:23
artemmahmm, I was reading some meeting logs now, but missed yesterdays meeting maybe :/23:23
sledgesworth a try23:23
artemmaI do think though that not many people support subscriptions point of view23:23
artemmaand, well, just-any-kind-of-payment would already be better than nothing. And simple paid apps are probably simplest possible thing23:24
artemmasubscription and in=app purchases could be added later23:24
sledgesany-kind-of-pay you mean a donate button?23:24
sledgesfor instance23:24
sledgesok, i let you read logs ;)23:25
* sledges offs to sleep 2880023:25
artemmaI was thinking more of just-pay-me-$2-for-app, but if donation is easier, that could be it23:25
sledgesi guess something's in a way with that in .fi..23:26
artemmabad for finnish devs as accepting donations here is a trouble, but for rest of the world it could be ok23:26
sledgesiekku mentioned23:26
sledgesthat23:26
* artemma can't see logs in mailing list :/23:26
*** danielwf has joined #sailfishos23:26
sledgeshttp://merproject.org/meetings/mer-meeting/2014/mer-meeting.2014-05-27-15.00.log.html23:27
artemmasledges: thanks23:29
artemmaah, I was reading summary for it: was just one or two lines :)23:29
*** stephg_j has quit IRC23:33
* artemma just replied to mailing list with a wish for long time try-before-you-buy and [micro-]subscriptions later23:33
*** danielwf has quit IRC23:34
*** stephg_j has joined #sailfishos23:35
*** stephg_j has quit IRC23:35
*** olafh has quit IRC23:35
*** BeholdMyGlory has quit IRC23:37
*** tat has joined #sailfishos23:40
*** javispedro has quit IRC23:45
*** cxl000 has quit IRC23:48
*** tat_ has joined #sailfishos23:58

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