jpnurmi | excuse the typos. it's getting late :) | 00:00 |
---|---|---|
*** DarkSim_ has quit IRC | 00:00 | |
*** artemma has quit IRC | 00:00 | |
*** Morpog_PC has quit IRC | 00:01 | |
raa70 | soon it'll be early | 00:01 |
mfulz | np I'll give it a try | 00:01 |
mfulz | thank you really for the help ! | 00:01 |
jpnurmi | np, it sounded like an interesting problem :) | 00:02 |
mfulz | do I need to put Q_DECL inside a class or just into the header? | 00:03 |
jpnurmi | outside the class declaration in the header | 00:03 |
mfulz | ok | 00:04 |
*** KangOl has quit IRC | 00:06 | |
mfulz | w00t | 00:10 |
mfulz | working - you're my hero ! | 00:10 |
jpnurmi | hehe, finally :) | 00:11 |
*** fk_lx has quit IRC | 00:12 | |
mfulz | qRegisterMetatype is even more convenient :) | 00:19 |
*** spider-mario has quit IRC | 00:23 | |
mfulz | but for using that I still need to derive from QOject? | 00:25 |
jpnurmi | it should work even if you remove the QObject inheritance and replace Q_OBJECT with Q_GADGET, but you must keep Q_ENUMS() | 00:26 |
mfulz | ok | 00:28 |
*** Andy80 has joined #sailfishos | 00:31 | |
Andy80 | how do I generate an .rpm from a project? At the moment I'm only able to deploy with binary copy... any other method fails :/ | 00:31 |
mfulz | strange I did the same for my last enum and it's not working there .... | 00:32 |
Andy80 | every time I get this: Project ERROR: Could not connect to MerSDK Virtual Machine. Timeout waiting for reply from server. | 00:33 |
Andy80 | but connection to Mer SDK work normally when it has to compile the binary and then copy the binary to the device | 00:33 |
*** rlh has joined #sailfishos | 00:36 | |
*** Tumeez has quit IRC | 00:36 | |
mfulz | finally :D | 00:41 |
*** b0bben has joined #sailfishos | 00:44 | |
*** Tumeez has joined #sailfishos | 00:46 | |
*** rlh has left #sailfishos | 00:48 | |
*** b0bben has quit IRC | 00:49 | |
*** Tumeez has quit IRC | 00:52 | |
*** mk2soldier has quit IRC | 00:57 | |
*** arcean has quit IRC | 01:01 | |
*** master_of_master has quit IRC | 01:03 | |
*** master_of_master has joined #sailfishos | 01:05 | |
*** Tumeez has joined #sailfishos | 01:09 | |
Andy80 | anyone knows how to set an icon for the application? | 01:10 |
sjtoik | read about the desktop file | 01:13 |
Andy80 | sjtoik: a file like this is enough https://github.com/Elleo/cutespotify/blob/sailfish/harbour-cutespotify.desktop ? | 01:14 |
sjtoik | might, but I would put full path to the icon file | 01:15 |
Elleo | I seem to remember seeing somewhere that the harbour QA scripts reject full pathnames in .desktop files | 01:17 |
Elleo | which is why I changed it for cutespotify | 01:17 |
Andy80 | Elleo: I was taking example from your :) | 01:18 |
*** hardcodes has joined #sailfishos | 01:18 | |
Andy80 | p.s: a very preliminary release of SailSoma is ready if anyone want to test it | 01:18 |
Elleo | :) | 01:18 |
Elleo | cool | 01:18 |
sjtoik | soma as in soma.fm? | 01:18 |
Andy80 | sjtoik: yes | 01:20 |
Andy80 | uff... the icon appears as blank on the device :/ | 01:21 |
Elleo | Andy80: did you install it to /usr/share/icons/hicolor/86x86/apps/ ? | 01:23 |
Andy80 | how? | 01:23 |
Elleo | if you used an earlier version of the SDK template it might have incorrectly defaulted to 90x90 | 01:23 |
Andy80 | I just modified the .desktop | 01:24 |
Elleo | Andy80: as part of your .pro file typically | 01:24 |
Andy80 | uhm.... | 01:24 |
Andy80 | no wait wait... | 01:24 |
Andy80 | I just copied a 500x500 version that I've to the root of the project and renamed it to sailsoma.png | 01:24 |
*** wickwire has quit IRC | 01:24 | |
Andy80 | then I've put this in my .desktop: Icon=sailsoma | 01:24 |
Elleo | Andy80: you need a section in your .pro handling installation of that file to /usr/share/icons/hicolor/86x86/apps/ | 01:25 |
Elleo | just like you've got a section installing the .desktop to /usr/share/applications/ | 01:25 |
Elleo | plus you might want to resize it to 86x86 (although it will probably display anyway) | 01:25 |
Andy80 | Elleo: you don't have it https://github.com/Elleo/cutespotify/blob/sailfish/CuteSpotify.pro | 01:25 |
mfulz | how can I call a nested class method in qml? c++: MyClass { MyNestedClass *bla; } | qml: MyClass.bla.method(); | 01:26 |
Elleo | Andy80: yeah, it's in a different file: https://github.com/Elleo/cutespotify/blob/sailfish/src/src.pro | 01:26 |
*** zhxt has joined #sailfishos | 01:26 | |
Andy80 | Elleo: how can you have two .pro? | 01:26 |
Elleo | Andy80: the top level one is setup with the subdirs template | 01:26 |
Elleo | you tell it what subdirectories there are and it automatically includes any .pro files inside them | 01:27 |
Andy80 | it's getting a bit complicated :/ | 01:27 |
Elleo | you don't have to do | 01:27 |
Elleo | you don't have to do that* | 01:27 |
Elleo | you just need to add a small bit to the INSTALLS section of your current .pro file | 01:28 |
Andy80 | these: | 01:28 |
Andy80 | desktop.path = $$PREFIX/share/applications/ | 01:28 |
Andy80 | desktop.files = ../harbour-cutespotify.desktop | 01:28 |
Andy80 | icon.path = $$PREFIX/share/icons/hicolor/86x86/apps/ | 01:28 |
Andy80 | icon.files = ../harbour-cutespotify.png | 01:28 |
Andy80 | ? | 01:28 |
Elleo | yeah | 01:28 |
Andy80 | let's try | 01:28 |
Elleo | although if you're using the sailfish app template I think it might do some of that automatically for you | 01:28 |
Elleo | also the INSTALLS += icon | 01:29 |
Elleo | and I've explicitly setup $$PREFIX in mine, so you might want to replace that with just "/usr/" | 01:29 |
Elleo | Andy80: are you using the sailfishapp tempalte? | 01:30 |
Elleo | template* | 01:30 |
Elleo | if so it should handle the icon for you as long as its included in the project files and has the correct name | 01:30 |
Andy80 | yes... I started from that one... then I modified | 01:30 |
Andy80 | I'm trying with these lined anyway | 01:30 |
Elleo | actually it might just do the .desktop automatically | 01:31 |
Elleo | clearly the .desktop is being installed okay if it's showing up on the launcher, so I wouldn't worry about the desktop.path/desktop.files lines | 01:31 |
Andy80 | ok | 01:32 |
Andy80 | anyway I didn't have any INSTALLS in my .pro | 01:32 |
Andy80 | do I have to add it? | 01:32 |
Elleo | yeah, "INSTALLS += icon" | 01:32 |
Elleo | if you've got CONFIG += sailfishapp then you've already got some INSTALLS setup from that | 01:33 |
Elleo | so you just want to add another item to them | 01:33 |
Andy80 | err... I don't have a CONFIG += either | 01:33 |
Andy80 | why the initial template doesn't add this stuff? | 01:34 |
Elleo | that is part of the initial sailfishapp template normally | 01:34 |
Elleo | could you pastebin your .pro so I can have a peek? | 01:34 |
Andy80 | oh wait wait | 01:34 |
Andy80 | it's in sailfisapplication.pr | 01:34 |
Andy80 | pri | 01:35 |
*** hardcodes has quit IRC | 01:35 | |
Elleo | ah right, yeah, it'll be including that then | 01:35 |
Elleo | so that should all be fine | 01:35 |
Andy80 | cool :) let's try the build | 01:35 |
Elleo | and you just need to add your icon stuff to the INSTALLS | 01:35 |
Andy80 | as I already wrote, the build rpm and deploy doesn't work on my machine... | 01:36 |
Andy80 | but at least the rpm is generated | 01:36 |
Andy80 | then I've to send it by mail to my device -.- | 01:36 |
Elleo | I'm not sure if deploying to the device directly is supported yet, only to the emulator | 01:37 |
Elleo | Andy80: you can setup ssh access if you add a password in the developer mode section of the settings page, which makes it easy to just scp stuff over and install from the command line ("pkcon install-local yourfile.rpm") | 01:38 |
*** artemma has joined #sailfishos | 01:38 | |
Andy80 | yahooo the icon is there :) | 01:38 |
Andy80 | one second and I upload my rpm somewhere | 01:39 |
Elleo | cool | 01:39 |
Andy80 | first I want to commit last bits | 01:39 |
*** ericcc has joined #sailfishos | 01:40 | |
Andy80 | Elleo: enjoy https://dl.dropboxusercontent.com/u/835341/sailsoma/SailSoma-0.1.1-1.armv7hl.rpm :) | 01:41 |
Andy80 | source code available here https://github.com/andreagrandi/sailsoma | 01:41 |
Andy80 | nothing special, not finished yet, but... consider that it's been half day work :) | 01:42 |
Andy80 | it's been easier then when I ported this to BB10 | 01:42 |
Elleo | Andy80: nice :) | 01:42 |
Elleo | Andy80: one thing, you're going to have to change package names and some paths before submitting to the store | 01:42 |
Elleo | everything has to be in the form harbour-sailsoma | 01:43 |
Elleo | https://harbour.jolla.com/faq <-- has details | 01:43 |
Andy80 | I will do... but there are still some changes before I can submit | 01:43 |
Elleo | looking good though | 01:43 |
Andy80 | oh wait.... package name? | 01:43 |
Andy80 | don't tell me I can't use "sail" ? | 01:44 |
Andy80 | -.- | 01:44 |
Elleo | "The package name cannot start with jolla or sailfish" | 01:45 |
Elleo | so just "sail" might be okay | 01:45 |
Elleo | that said it's also being prefixed with harbour- anyway | 01:45 |
*** raven24 is now known as raven24^{off} | 01:45 | |
Elleo | so I suspect you're alright with harbour-sailsoma | 01:45 |
Andy80 | let's hope :) | 01:45 |
Elleo | and user readable title of "SailSoma" | 01:45 |
Andy80 | cool | 01:47 |
Andy80 | I think it's almost bed time now :) | 01:48 |
Andy80 | p.s: we should start a "Jolla Club" in London when I come back :D | 01:48 |
Elleo | Andy80: hehe, totally | 01:49 |
Andy80 | even @anidel (on Twitter) has one (he lives in London too) | 01:50 |
Elleo | cool | 01:50 |
Andy80 | bye for now :) good night! and thank you so much for the help! | 01:51 |
Elleo | night :) and you're welcome :) | 01:51 |
*** Andy80 has quit IRC | 01:52 | |
*** triggerhappy has joined #sailfishos | 01:59 | |
*** zhost has quit IRC | 02:03 | |
*** Morpog_Mobile has quit IRC | 02:04 | |
*** tanghus_ has quit IRC | 02:05 | |
*** tanghus has joined #sailfishos | 02:12 | |
*** Morpog_Mobile has joined #sailfishos | 02:18 | |
*** vladykin has joined #sailfishos | 02:19 | |
*** softmetz1away has joined #sailfishos | 02:20 | |
*** artemma has quit IRC | 02:22 | |
mfulz | does someone know how I can set the selected item of a combobox? | 02:22 |
mfulz | combobox.currentItem = 1 is not working | 02:22 |
*** softmetz|away has quit IRC | 02:24 | |
*** phaeron has quit IRC | 02:26 | |
*** vladykin has quit IRC | 02:29 | |
*** b0bben has joined #sailfishos | 02:33 | |
*** molera has joined #sailfishos | 02:34 | |
*** b0bben has quit IRC | 02:37 | |
*** molera has quit IRC | 02:37 | |
mfulz | does someone know the behavior when passing back a enum from c++ like MyEnum get() { return m_myenum; } in qml always get a QVariant(MyEnum) and cant access the value? | 02:45 |
mfulz | ok this behavior popps up only if using a Q_PROPERTY | 02:50 |
*** nnikogda has joined #sailfishos | 03:01 | |
*** mfulz has quit IRC | 03:14 | |
*** furikku has joined #sailfishos | 04:00 | |
*** sdjayna1 has quit IRC | 04:03 | |
*** krnlyng has joined #sailfishos | 04:16 | |
*** b0bben has joined #sailfishos | 04:21 | |
*** b0bben has quit IRC | 04:25 | |
*** itbaron has joined #sailfishos | 04:44 | |
*** PeterPark has quit IRC | 05:04 | |
*** crevetor has quit IRC | 05:19 | |
*** crevetor has joined #sailfishos | 05:20 | |
*** Morpog_Mobile has quit IRC | 05:35 | |
*** nnikogda has quit IRC | 06:09 | |
*** b0bben has joined #sailfishos | 06:09 | |
*** Morpog_Mobile has joined #sailfishos | 06:13 | |
*** jpetersen has joined #sailfishos | 06:14 | |
*** b0bben has quit IRC | 06:14 | |
*** Hurrian has quit IRC | 06:17 | |
*** Sviox has joined #sailfishos | 06:31 | |
*** rm_work|away is now known as rm_work | 06:37 | |
*** simathur has joined #sailfishos | 06:43 | |
*** phaeron has joined #sailfishos | 06:44 | |
*** c0ck4m0u53 has joined #sailfishos | 06:55 | |
*** Tuilu has quit IRC | 06:57 | |
*** Tuilu has joined #sailfishos | 06:57 | |
*** Tuilu has quit IRC | 07:10 | |
*** Tuilu has joined #sailfishos | 07:10 | |
*** fk_lx has joined #sailfishos | 07:18 | |
*** Bloob has joined #sailfishos | 07:19 | |
*** Hurrian has joined #sailfishos | 07:20 | |
*** Hurrian has quit IRC | 07:45 | |
*** krnlyng has quit IRC | 07:48 | |
*** jjanvier has joined #sailfishos | 07:54 | |
*** Hurrian has joined #sailfishos | 07:57 | |
*** b0bben has joined #sailfishos | 07:57 | |
*** nsuffys has joined #sailfishos | 07:58 | |
*** simathur has quit IRC | 08:01 | |
*** softmetz1away has quit IRC | 08:02 | |
*** b0bben has quit IRC | 08:02 | |
*** jpetersen has quit IRC | 08:04 | |
*** promulo has joined #sailfishos | 08:08 | |
*** dhbiker has joined #sailfishos | 08:12 | |
*** Finleida has joined #sailfishos | 08:14 | |
*** jmlich has joined #sailfishos | 08:26 | |
*** promulo has quit IRC | 08:29 | |
Ruslan | wtf | 08:30 |
Ruslan | PullDownMenu doesn't work if SilicaListView's orientation is horizontal | 08:31 |
*** michiel_l has joined #sailfishos | 08:31 | |
*** kjokinie has quit IRC | 08:32 | |
*** freedomrun has joined #sailfishos | 08:32 | |
*** kjokinie has joined #sailfishos | 08:34 | |
*** super_hirsute has joined #sailfishos | 08:35 | |
*** matoking has joined #sailfishos | 08:37 | |
*** kaari has joined #sailfishos | 08:38 | |
tango_ | Ruslan: hm it does for me? | 08:44 |
tango_ | Ruslan: I have noticed stuff not working re. orientation if I launch the app from the command line while the phone is locked | 08:45 |
Ruslan | tango_: I mean that View's 'orientation' property is set to Qt.Horizontal | 08:50 |
*** _miqu_ has joined #sailfishos | 08:50 | |
tango_ | oh | 08:50 |
Ruslan | putting ListView inside Flickable solves the issue | 08:52 |
Ruslan | looks like QQuickPaintedItem is extremly slow ( | 08:53 |
Ruslan | what is a best way to render text with formatting, hyphentations and inlined images? | 08:54 |
tango_ | Ruslan: hyphenations I have no idea | 08:57 |
tango_ | inlined images and formatting a Text or Label would do | 08:57 |
tango_ | I was just reading this http://qt-project.org/doc/qt-5.0/qtgui/richtext-html-subset.html | 08:57 |
Ruslan | tango_: they makes no possible to calc text borders from c++ code | 08:59 |
Ruslan | i.e. to calculate total pages count in book | 08:59 |
Ruslan | may be I have to study QQuickText's code | 09:00 |
tango_ | a whole book? | 09:01 |
tango_ | you might want to look into qtwebkit | 09:01 |
*** mk2soldier has joined #sailfishos | 09:02 | |
*** gigetoo has quit IRC | 09:02 | |
*** gigetoo has joined #sailfishos | 09:03 | |
*** sdjayna has joined #sailfishos | 09:08 | |
cos- | hmm.. how do i get ^ from virtual keyboard? | 09:13 |
cos- | pro tip: don't use ^ in any username you need on mobile devices :-) | 09:14 |
Ruslan | tango_: isn't it too heavy, what's about the memory consumption? | 09:23 |
tango_ | no idea | 09:23 |
tango_ | but considering what you want to do (an ebook reader kind of thing?) it sounds more appropriate than reinventing the wheel | 09:24 |
tango_ | just that | 09:24 |
Ruslan | looks like it's possible to convert QGlyphRun to QSGGlyphNode somehow | 09:24 |
Ruslan | and it will lead to better perfomance | 09:24 |
Ruslan | tango_: currently I'm using QTextLayout for layouting of the text | 09:25 |
hoelzro | can you change the USB mode after you've answered the initial prompt? or do you have to unplug/replug the cable? | 09:27 |
*** RoKenn has joined #sailfishos | 09:28 | |
*** dhbiker has quit IRC | 09:28 | |
*** nsuffys has quit IRC | 09:29 | |
*** nsuffys has joined #sailfishos | 09:32 | |
*** b0bben has joined #sailfishos | 09:33 | |
*** ericcc has quit IRC | 09:35 | |
*** pixraider has joined #sailfishos | 09:36 | |
*** b0bben_ has joined #sailfishos | 09:41 | |
*** rm_work is now known as rm_work|away | 09:44 | |
*** triggerhappy has quit IRC | 09:48 | |
*** triggerhappy has joined #sailfishos | 09:49 | |
*** wickwire has joined #sailfishos | 09:52 | |
*** dhbiker has joined #sailfishos | 09:53 | |
*** crevetor has quit IRC | 09:55 | |
*** Sfiet_Konstantin has joined #sailfishos | 10:05 | |
*** _miqu_ has left #sailfishos | 10:08 | |
*** w00tt has joined #sailfishos | 10:15 | |
w00tt | hmm... borked my simulator somehow: | 10:16 |
w00tt | bash: /opt/sdk/bitcoined/usr/bin/test: No such file or directory | 10:16 |
w00tt | whenever I try to run it on similator. | 10:16 |
*** KangOl has joined #sailfishos | 10:17 | |
*** b0bben_ has quit IRC | 10:18 | |
*** zhxt has quit IRC | 10:19 | |
*** softmetz has joined #sailfishos | 10:20 | |
matoking | @w00tt What does that bitcoined stand for, some project you are working on? | 10:29 |
*** pixraider has quit IRC | 10:29 | |
jake9xx | w00tt: either file is not there is made with wrong arch | 10:31 |
*** ced117 has quit IRC | 10:32 | |
*** ced117 has joined #sailfishos | 10:32 | |
*** kjokinie has left #sailfishos | 10:33 | |
tango_ | where does the image://theme uri path for theme images come from and where I can find more information about these paths? | 10:33 |
*** arcean has joined #sailfishos | 10:35 | |
jake9xx | tango_: atm : source. To get precise documentation ; plase do a post in together.jolla.com and tag it with sdk | 10:36 |
w00tt | hmm.. this started happening suddenly. Removed x86 kit and created it again. No help. | 10:36 |
w00tt | my .pro file is just simple one and yaml file seems ok. | 10:37 |
jake9xx | can you ssh into the emulator and do file /opt/sdk/bitcoined/usr/bin/test ? | 10:37 |
jake9xx | propably the binary name is 'bitcoined' not 'test' ? | 10:38 |
*** onurati has joined #sailfishos | 10:38 | |
w00tt | jake9xx: yes, copy-paste error: bash: /opt/sdk/bitcoined/usr/bin/bitcoined: No such file or directory | 10:39 |
w00tt | I get this with rsync deploy method, if I use deploy by RPM then everything works. | 10:39 |
w00tt | should it be /opt/sdk/ anyway? | 10:39 |
kaltsi | if you choose 'deploy as binaries' it copies them under /opt/sdk .. if you choose deploy as rpm then it installs an rpm which copies stuff under /usr/bin | 10:41 |
w00tt | ok | 10:41 |
w00tt | problem solved... | 10:42 |
w00tt | my TARGET in pro file is all lowercase while deploy seems to create /opt/sdk/Bitcoined directory structure. | 10:42 |
*** arcean_ has joined #sailfishos | 10:43 | |
wickwire | Hi guys, is there some tweaking available for speeding up the emulator...? | 10:43 |
w00tt | bug or feature but it seems that you need to have the TARGET spelled with capital first letter. | 10:43 |
wickwire | I'm using an intel i5 with 6GB RAM | 10:44 |
wickwire | laptop | 10:44 |
*** s1gk1ll_ has joined #sailfishos | 10:44 | |
w00tt | wickwire: yes, use Linux :) I'm running on old Intel Core 2 Duo here. | 10:46 |
*** arcean has quit IRC | 10:46 | |
lbt | w00tt: no - TARGET can be all lowercase | 10:46 |
Nicd- | my laptop doesn't have enough memory to run the emulator, I have to deploy to device every time... :P | 10:46 |
tango_ | jake9xx: like this? https://together.jolla.com/question/7552/uri-schemes-and-default-paths-to-access-resources-in-qtqml-applications/ | 10:46 |
*** coolmouse has joined #sailfishos | 10:46 | |
lbt | and in fact it should be harbour-bitcoined if you want it in store | 10:46 |
w00tt | lbt: Does not seem to work. It tries to run the app from /opt/sdk/Capital/... | 10:47 |
*** onurati has quit IRC | 10:47 | |
lbt | w00tt: check the .pro file | 10:47 |
w00tt | lbt: TARGET=bitcoined | 10:47 |
lbt | QtC doesn't link everything to TARGET | 10:47 |
*** s1gk1ll has quit IRC | 10:47 | |
w00tt | but it deploys it to /usr/sdk/Bitcoined/... | 10:47 |
lbt | so some paths are hardcoded - also check the yaml | 10:47 |
*** onurati has joined #sailfishos | 10:48 | |
w00tt | lbt: Aha, yaml has Name: Bitcoined | 10:49 |
lbt | w00tt: yeah - should be modified when TARGET is modified (I think) | 10:50 |
lbt | the problem is that much of this is created when you use a template | 10:50 |
*** kaari has quit IRC | 10:51 | |
lbt | and honestly the number of times people rename their code - it's probably better use of time to just document how to do it than waste SDK dev time automating it | 10:51 |
w00tt | lbt: hmm.. although yaml is used to create spec and spec for the rpm. If I deploy using rsync then I think only pro file and Makefile are used. | 10:51 |
lbt | no | 10:51 |
lbt | it runs make install and then the rpm install using rpmbuild | 10:51 |
lbt | then it rsyncs that | 10:52 |
lbt | it ensures that the rpm install section matches and no nasty surprises | 10:52 |
*** b0bben has quit IRC | 10:52 | |
w00tt | are you saying I'm creating rpm package even with copy binaries deploy? | 10:52 |
Ruslan | lbt: I had some errors in rpmspec, and I've not noticed them until tried 'deploy by rpm package' which leaded to some critical errors | 10:52 |
lbt | no - you're running the rpmbuild install section | 10:52 |
w00tt | ah, ok | 10:52 |
*** b0bben has joined #sailfishos | 10:52 | |
lbt | but not the rpmbuild 'cpio into rpm' section | 10:52 |
lbt | Ruslan: really - what were they ? | 10:53 |
w00tt | anyway, seems that it insists on deploying to /usr/sdk/Bitcoined and if my target name is all lowercase it tries to run it from /usr/sdk/bitcoined and fails | 10:53 |
lbt | change the yaml and it should work | 10:53 |
*** b0bben has quit IRC | 10:54 | |
*** b0bben_ has joined #sailfishos | 10:54 | |
softmetz | hi. release.sailfishos.org gives me http 403 forbidden. is that intentionally? | 10:54 |
w00tt | lbt: didn't help... Name is yaml is now lowercase too. Still it deploys to /usr/sdk/Bitcoined | 10:54 |
w00tt | lbt: would this be the reason why the SDK template creates every file capitalized? Like Capital.desktop, Capital.pro etc. | 10:55 |
kaltsi | it doesn't create them capitalized unless you have named the project capitalized | 10:55 |
kaltsi | the default is 'untitled' which is lower case as are all the files | 10:56 |
w00tt | kaltsi: ok | 10:57 |
kaltsi | w00tt: on top of the template projet's projectname.pro file is a comment section that lists files that need to be changed if you change the TARGET .. can you review those in your project? | 10:57 |
lbt | kaltsi: ooh - I missed that | 10:58 |
* lbt slaps lbt | 10:58 | |
kaltsi | :) | 10:58 |
*** Andy80 has joined #sailfishos | 10:58 | |
*** faenil has joined #sailfishos | 10:59 | |
jake9xx | softmetz: releases.. | 10:59 |
w00tt | kaltsi: I have absolutely everything lowercase but when deploying to emulator it creates /opt/sdk/Bitcoined instead of /opt/sdk/bitcoined and fails to run the binary | 11:00 |
w00tt | most importantly my TARGET=bitcoined and yaml file Name: bitcoined | 11:00 |
softmetz | jake9xx: yes, mistyped the url. I get forbidden on releaseS | 11:01 |
Nicd- | w00tt: is your spec file updated? | 11:01 |
softmetz | jake9xx: clicked oon the links on the sdk pages, dead | 11:01 |
kaltsi | w00tt: ok.. strange, well I'm pretty sure there is something "Bitcoined" in your project dir.. it does not automatically capitalize things | 11:01 |
fk_lx | lbt: don't publicly hurt yourself, kids are watching | 11:01 |
jake9xx | softmetz: which link? | 11:01 |
kaltsi | w00tt: if you do 'grep -r Bitcoined your_projectdir' do you find any hits? | 11:01 |
kaltsi | w00tt: linux/mac/windows? | 11:01 |
softmetz | jake9xx: see https://sailfishos.org/develop-overview-article.html, end of page. there are "platform apis" and "open source code" that link to http://releases.sailfishos.org/sdk/ | 11:02 |
jake9xx | softmetz: http://releases.sailfishos.org/sdk/latest/ works just fine.. but the html might have old link | 11:03 |
w00tt | kaltsi: damn... I had an old spec file with Capital project name.. | 11:03 |
w00tt | rm that and new one with correct name was created. | 11:03 |
kaltsi | w00tt: ok.. strange, that should be updated when you modify and save the yaml file | 11:03 |
*** s1gk1ll_ is now known as s1gk1ll | 11:04 | |
w00tt | kaltsi: even stranger was the fact that the spec was named as Bitcoined.spec while I had renamed the yaml as bitcoined.yaml. It had obsolete information in it. | 11:04 |
kaltsi | w00tt: what's your environment? could it have a non case sensitive filesystem like OSX has by default? | 11:05 |
w00tt | maybe SDK tries to find *.spec and is happy if there is one? | 11:05 |
w00tt | kaltsi: nope, Ubuntu here. | 11:05 |
*** John24 has joined #sailfishos | 11:05 | |
softmetz | jake9xx: great. thanks. will raise an issue on together... | 11:05 |
John24 | hello everyone :) | 11:05 |
John24 | once again I got a QML question whihc I just can't find on google | 11:05 |
jake9xx | softmetz: be quick ; we might fix it before that :) | 11:05 |
John24 | I am using a textfield | 11:06 |
kaltsi | w00tt: the sdk build checks if yaml is newer than spec and if so then it recreates the spec.. but maybe this is a special case, I'll have to test that | 11:06 |
w00tt | kaltsi: the problem started when I renamed all the capitalized files to lowercase. Forgot to delete the spec file though and SDK did not manage to create me new one. | 11:06 |
kaltsi | w00tt: ok.. I'll try that too | 11:06 |
John24 | and I want to use the enter button as described on sailfish SDK documentation to focus on next textfield | 11:06 |
softmetz | jake9xx: you've got write access? want me too or should be fixed without anybody noting? ;) | 11:06 |
John24 | EnterKey.onClicked: email.focus = true | 11:06 |
w00tt | so I was left with old and Capitalized spec file. No new file was ever generated and the old one was not updated even if I did pro changes. | 11:06 |
softmetz | jake9xx: want me to (raise issue)... | 11:07 |
John24 | BUT I can't find the EnterKey element | 11:07 |
kaltsi | w00tt: yep thanks, I'll test that case next year :) | 11:07 |
w00tt | kaltsi: Of course I did close / reopen the project and also wiped the shadow build dirs. No help. Once I manually deleted the old spec all went ok. | 11:07 |
w00tt | anyway, help appreciated! | 11:08 |
*** michiel_l has quit IRC | 11:08 | |
*** michiel_l has joined #sailfishos | 11:09 | |
jake9xx | w00tt: you might wanna do a post of that in together.jolla.com and tag it with 'sdk' | 11:09 |
John24 | essentially I can't find how to get the EnterKey from this example: http://pastebin.com/ADfYU7Hm anyone got any ideas? | 11:10 |
*** mk2soldier has quit IRC | 11:10 | |
softmetz | jake9xx: https://together.jolla.com/question/7568/sdk-overview-links-to-dead-page-on-releasessailfishosorg/ | 11:11 |
Ruslan | oh, https://bugreports.qt-project.org/browse/QTBUG-31683 - QQuickTextNode is private :( | 11:11 |
*** Superpelican_ has joined #sailfishos | 11:12 | |
*** dhbiker has quit IRC | 11:20 | |
*** dhbiker has joined #sailfishos | 11:21 | |
*** Morpog_PC has joined #sailfishos | 11:27 | |
*** Superpelican_ has quit IRC | 11:28 | |
*** Zotan has quit IRC | 11:28 | |
*** Superpelican_ has joined #sailfishos | 11:28 | |
*** Konsta has joined #sailfishos | 11:29 | |
*** Venemo___ has joined #sailfishos | 11:31 | |
Morpog_PC | coderus, do you want the mitäkuuluu icon with vertical gradient? | 11:33 |
*** Superpelican_ has quit IRC | 11:35 | |
tango_ | is it just me or long presses don't trigger a click? | 11:35 |
cos- | has anyone found a working geocaching app? c:geo crashes when displaying map | 11:36 |
tango_ | is there another onThing that is triggered on long presses? or just onPressAndHold ? | 11:36 |
Morpog_PC | Sfiet_Konstantin, seen the updated PR? | 11:36 |
Sfiet_Konstantin | Morpog_PC: ah no | 11:36 |
Sfiet_Konstantin | will look at it | 11:37 |
Sfiet_Konstantin | afterwards, first release to harbour ! | 11:37 |
Morpog_PC | harbour release without icon? | 11:37 |
Sfiet_Konstantin | Morpog_PC: looks good | 11:37 |
Sfiet_Konstantin | Morpog_PC: no, will soon merge your PR :) | 11:37 |
Morpog_PC | I can see the comments in store already :D | 11:38 |
Sfiet_Konstantin | Morpog_PC: looks good, but but but, reduce "friend" just a little bit | 11:38 |
Sfiet_Konstantin | Morpog_PC: ?? | 11:38 |
kaltsi | softmetz: webpage updated.. can't answer in together.j.c because I can't log in there right now, grgrmg | 11:38 |
Morpog_PC | phew, finally, lol :D | 11:39 |
Morpog_PC | the smalelr one? | 11:42 |
*** freedomrun has quit IRC | 11:43 | |
Sfiet_Konstantin | Morpog_PC: yes :) | 11:46 |
Sfiet_Konstantin | Morpog_PC: thanks Morpog_PC | 11:46 |
Morpog_PC | Sfiet_Konstantin, like that? http://abload.de/img/harbour-friends4b7sgj.png | 11:50 |
softmetz | kaltsi: thanks. | 11:50 |
Sfiet_Konstantin | Morpog_PC: perfect <3 | 11:50 |
Sfiet_Konstantin | looks good | 11:50 |
Sfiet_Konstantin | :) | 11:50 |
Morpog_PC | ok, will update PR then | 11:56 |
Sfiet_Konstantin | Morpog_PC: I'm adding you in the list of developers :) | 12:00 |
Venemo___ | Morpog_PC ping | 12:02 |
Morpog_PC | cool, thx :D | 12:03 |
Morpog_PC | PR updated | 12:03 |
Sfiet_Konstantin | Morpog_PC: :) | 12:03 |
Morpog_PC | Venemo___, pong | 12:05 |
*** b0bben_ has quit IRC | 12:07 | |
Venemo___ | Could you please send me the IRC icon you once designed? | 12:07 |
Venemo___ | I can't find it anywhere | 12:07 |
*** b0bben has joined #sailfishos | 12:07 | |
Morpog_PC | sure I can, but how about a new one in Sailfish style? :D | 12:08 |
*** Sfiet_Konstantin has quit IRC | 12:08 | |
Morpog_PC | and SVG this time | 12:09 |
Venemo___ | Thank you :) I'd be happy for both | 12:09 |
*** b0bben has quit IRC | 12:11 | |
*** jjarven has quit IRC | 12:15 | |
tango_ | why is it that in pageStack.push() I cannot use a component name directly? | 12:18 |
tango_ | e.g. I am in a component in qml/pages and I would like to pageStack.push(someOtherComponent) where qml/pages/someOtherComponent.qml exists | 12:18 |
kaltsi | w00tt: I made a quick test by creating an Uppercase project, and used deploy as rpm (to get the Uppercase.spec file) .. then in yaml I changed the Name to lowercase and tried to build it again.. I get an error: Fatal: Too many spec files - please use -s to identify which to use | 12:22 |
kaltsi | w00tt: for me there were two specs.. Uppercase.spec and uppercase.spec | 12:23 |
w00tt | kaltsi: I didn't get that as I only had the uppercased spec file there. | 12:25 |
matoking | Okay I found out that Row seems to be the best fit for doing my file manager | 12:25 |
w00tt | well, it doesn't need to be a bug. Sometimes even Makefiles fail when renaming stuff. | 12:25 |
kaltsi | w00tt: yeah.. just wondering how it happened for you | 12:25 |
*** Sfiet_Konstantin has joined #sailfishos | 12:27 | |
Morpog_PC | Venemo___, how about this? http://abload.de/img/harbour-irc-chatterd1sr2.png | 12:27 |
Venemo___ | It's great! :) | 12:28 |
Venemo___ | Can you send it to me in email along with the other one you designed a while ago? | 12:29 |
w00tt | kaltsi: I'm facing the exact problem right now... renamed my project to harbour-bitcoined and seems to deploy still to /usr/sdk/bitcoined ... | 12:29 |
kaltsi | w00tt: how do you rename it exactly? | 12:29 |
Morpog_PC | if it's OK, I can give you the SVG too | 12:30 |
Morpog_PC | bbl, need to cook | 12:30 |
w00tt | TARGET=harbour-bitcoined yaml Name: harbour-bitcoined and spec Name: harbour-bitcoined. | 12:30 |
kaltsi | just touched those? | 12:30 |
w00tt | basically closed project and did some git mv on command line. | 12:30 |
w00tt | also changed the file contents first, opened Qt Creator and everything seems ok BUT it deploys to /usr/sdk/bitcoined still | 12:31 |
*** jjarven has joined #sailfishos | 12:31 | |
w00tt | I'll try to rm the spec file once again, rm build dir and then reopen. | 12:32 |
kaltsi | how about the desktop. and icon etc | 12:32 |
w00tt | harbour-bitcoined.desktop also renamed the icon to harbour-bitcoined.png | 12:32 |
kaltsi | if you can give me step-by-step instructions on how to reproduce this starting from a default "untitled" project, I'd be happy :) | 12:33 |
*** KangOl has quit IRC | 12:33 | |
w00tt | :) eh... | 12:34 |
w00tt | kaltsi: Argh... even removed the .pro.user and reconfigured everything from scratch. --> bash: /opt/sdk/bitcoined/usr/bin/harbour-bitcoined: No such file or directory | 12:35 |
kaltsi | it would be useful to know to see if we can do something to fix this or do something to help people rename projects | 12:35 |
w00tt | what about the actual name of the .pro file? | 12:35 |
*** KangOl has joined #sailfishos | 12:37 | |
w00tt | kaltsi: thats it! | 12:37 |
*** Sfiet_Konstantin has quit IRC | 12:37 | |
kaltsi | pro file name also has to change? | 12:38 |
w00tt | I had my pro file named as bitcoined.pro | 12:38 |
w00tt | now when I renamed it to harbour-bitcoined.pro and rebuilt it all works. | 12:38 |
w00tt | kaltsi: I'm not 100% sure but check that. Does the name of the .pro file have to match with the other name.s | 12:39 |
Venemo___ | Thank you Morpog_PC :) | 12:39 |
w00tt | kaltsi: that's the problem. SDK has dependency to project file name which it should not have. | 12:41 |
*** phdeswer has joined #sailfishos | 12:41 | |
w00tt | rsync deploy makes a directory /opt/sdk/PRO_FILE_NAME/... on emulator. | 12:41 |
kaltsi | no.. | 12:42 |
kaltsi | "created directory /opt/sdk/untitled-kala" .. my .pro file is still untitled.pro | 12:42 |
Venemo___ | w00t the name of the project file doesn't matter | 12:42 |
Venemo___ | At least I would've screamed loudly if it did | 12:43 |
w00tt | I just closed the project from Qt Creator, went command line, renamed my project file to harbour-bitcoined2 and now I get: | 12:43 |
w00t | Venemo___: wrong w00t ;) | 12:43 |
w00tt | bash: /opt/sdk/harbour-bitcoined2/usr/bin/harbour-bitcoined: No such file or directory | 12:43 |
* w00t bops w00tt for nickname thievery | 12:44 | |
Venemo___ | OMG there's two of you now? | 12:44 |
*** w00tt is now known as wellumakinen | 12:44 | |
wellumakinen | sorry about thievery ;) | 12:44 |
w00t | wellumakinen: it doesn't bother me really :P | 12:45 |
* w00t was just joking around | 12:45 | |
Venemo___ | Anyway, when I did puzzle-master I didn't have to rename the pro file | 12:45 |
kaltsi | yeah the name of the pro file is not the issue | 12:45 |
Venemo___ | I only changed the TARGET variable and INSTALLS | 12:45 |
Venemo___ | Can give you a link if you want to see | 12:46 |
jpnurmi | i have faced the deployment problem with non-matching pro/target/yaml names. not sure what the exact problem was but everything works fine when they match :) | 12:47 |
wellumakinen | guys, I can repro the problem here just fine. Close a project, rename the actual filename or the project to something else, open that project, configure target and press Run. --> FAIL | 12:48 |
kaltsi | the qt creator Run target does not get updated when you're changing the paths | 12:49 |
kaltsi | if you go to the "Projects" tab in qtcreator.. and see the 'Run' executable there.. it still shows the old '/opt/sdk/untitled' instead of /opt/sdk/untitled-kala' for me | 12:49 |
*** b0bben has joined #sailfishos | 12:49 | |
wellumakinen | kaltsi: it takes the target based on the FILENAME of the .pro | 12:51 |
kaltsi | wellumakinen: no | 12:51 |
kaltsi | wellumakinen: that was already established | 12:51 |
wellumakinen | bash: /opt/sdk/thiswentberserk/usr/bin/harbour-bitcoined: No such file or directory | 12:51 |
wellumakinen | 1. Close project | 12:51 |
wellumakinen | 2. Rename the project file to something else | 12:52 |
wellumakinen | 3. Open up the project file | 12:52 |
*** John24 has quit IRC | 12:52 | |
wellumakinen | 4. Rebuild and Run | 12:52 |
wellumakinen | 5. -> FAIL | 12:52 |
wellumakinen | I see the actual project filename on the Projects->Run settings page. | 12:52 |
kaltsi | looks like qt creator does not let me rename the pro file .. so it's probably a bad idea | 12:53 |
wellumakinen | kaltsi: No, close the project first. | 12:53 |
kaltsi | wellumakinen: I understand, but I'm trying to look at it from qtc point of view :) | 12:53 |
wellumakinen | the problem is that Qt Creator assumes the executable path on emulator has something to do with the actual project filename. | 12:53 |
*** Frye has quit IRC | 12:53 | |
*** zhost has joined #sailfishos | 12:54 | |
*** b0bben has quit IRC | 12:54 | |
wellumakinen | QtC should assume something based on TARGET or yaml/spec Filename but not take assumptions based on the filename of the .pro | 12:54 |
wellumakinen | so if the project file is named thiswentberserk.pro then QtC assumes the binary is in /usr/sdk/thiswentberserk/usr/bin/TARGET | 12:56 |
wellumakinen | so you actually have both the .pro filename + TARGET appended to make up the path. | 12:56 |
wellumakinen | it seems to be /usr/sdk/PRO_FILENAME/usr/bin/TARGET | 12:57 |
kaltsi | wellumakinen: yes you are right.. this case seems to hit only with the deploy as binaries.. it works with deploy as rpm even if the .pro filename is not changed | 12:59 |
kaltsi | ok.. something to fix next year then :) | 12:59 |
wellumakinen | kaltsi: true | 12:59 |
wellumakinen | lol | 12:59 |
wellumakinen | anyway, I think the problem was pinpointed. I've had this "renaming hell" couple of times in the past, with different projects, platforms and IDEs | 13:00 |
kaltsi | thanks for troubleshooting! | 13:00 |
wellumakinen | You're welcome! | 13:01 |
wellumakinen | this hit me when I tried to keep the harbour prefix out of my .pro file. | 13:01 |
kaltsi | I've scribbled this to my notebook, will take a look at it later | 13:01 |
wellumakinen | cool | 13:01 |
kaltsi | ok.. I'm out, happy new year everyone | 13:06 |
*** raa70 has quit IRC | 13:07 | |
*** wickwire has quit IRC | 13:08 | |
Andy80 | do you know where I can find some documentation about how to interact with the app cover? the docs included in QtCreator don't show much :/ | 13:12 |
coderus | i think example application creates good app with cover | 13:14 |
lbt | https://sailfishos.org/sailfish-silica/qml-sailfishsilica-cover.html | 13:14 |
lbt | https://sailfishos.org/sailfish-silica/sailfish-silica-all.html#application-covers | 13:14 |
*** spider-mario has joined #sailfishos | 13:15 | |
*** amonk has quit IRC | 13:18 | |
Andy80 | coderus: I'm looking at it, but I don't know how to interact with it... for example how to change the image and the text at least, etc... | 13:19 |
Andy80 | lbt: thanks! | 13:19 |
* tango_ goes nuts over OpacityRampEffect | 13:20 | |
wellumakinen | 'till 2014! | 13:20 |
*** wellumakinen has quit IRC | 13:21 | |
*** c0ck4m0u53 has quit IRC | 13:21 | |
lbt | Andy80: haha ... wait until I get my next app into the store :) | 13:22 |
Andy80 | lbt: this is what I need https://sailfishos.org/sailfish-silica/qml-sailfishsilica-coverplaceholder.html | 13:22 |
Andy80 | lbt: but once set I don't know how to change it from inside the other pages :) | 13:22 |
lbt | bind properties | 13:23 |
*** zhxt has joined #sailfishos | 13:23 | |
Andy80 | what do you mean? | 13:23 |
lbt | make a cover which has an id then you can access it via that | 13:26 |
Andy80 | ok, I try... | 13:26 |
Andy80 | (I'm not very good with QML stuff yet :P ) | 13:26 |
Morpog_PC | coderus, updated mitäkuuluu icon with vertical gradient, 86x86, 256x256, 512x512 PNG's and in SVG: https://db.tt/L4upc2zt | 13:34 |
*** Ruslan has quit IRC | 13:35 | |
tango_ | is there a way to debug item boxes in qml? | 13:35 |
tango_ | I want to see what the bounding boxes are for a series of labels | 13:36 |
tango_ | do I have to wrap them in rectagles or is there a smarter way? | 13:36 |
Morpog_PC | Venemo___, irc-chatter icon in 86x86, 256x256, 512x512 PNG's and as SVG: https://db.tt/v7qwucMb | 13:37 |
Andy80 | lbt: do you know what is the suggested dimension for the cover icon? I'm trying to guess the value but I cannot find it documented | 13:40 |
Venemo___ | Morpog, great, thank you | 13:40 |
Morpog_PC | coderus, ah just seen your reply on TMO | 13:40 |
Venemo___ | Morpog, I can't download it... Could you send to venemo at msn.com instead? | 13:42 |
*** krnlyng has joined #sailfishos | 13:44 | |
Andy80 | Morpog_PC: do you volunteer for better app icons :) ? | 13:45 |
Andy80 | lbt: btw, I've assigned an id to my coverbackground and also to my coverplaceholder, but I cannot access it from another page.. maybe I'm missing something | 13:46 |
tango_ | ids don't work that way | 13:47 |
Morpog_PC | coderus, this should look like your remastered version I guess: http://abload.de/img/harbour-mitkuuluu-vers7s2u.png | 13:50 |
*** nsuffys has quit IRC | 13:51 | |
Andy80 | and another question for everyone, I'm getting this warning: DeclarativeCoverWindow: You should be calling QQuickWindow::setDefaultAlphaBuffer(true) before creating windows. Failing to do so will result in suboptimal performance. | 13:54 |
Morpog_PC | Venemo___, sure | 13:54 |
Andy80 | what I don't understand is where I do have to set it... maybe in the main.cpp ? | 13:54 |
Venemo___ | Thank you Morpog_PC :) | 13:56 |
*** ro has joined #sailfishos | 13:57 | |
ro | hey all | 13:57 |
Morpog_PC | so feel free to use coderus, solidgreen version: https://db.tt/09bstj1O | 13:58 |
matoking | Added some SmoothedAnimation objects and the page transitions are starting to look really good :) | 13:58 |
Morpog_PC | well, I have fun doing it :) | 14:01 |
matoking | Now, if I could invoke functions based on whether the user is flicking left or right | 14:01 |
matoking | it would work like the PageStack except that it's more expendable | 14:01 |
ro | can anyone explain how to install the qtmultimediakit in the sdk... I have tried looking for it in the control center but when I search, I can't find it... what package should I be installing? | 14:01 |
Andy80 | ouch... I just noticed that the Sailfish application template that I'm using is very different from the one that the current SDK generates... | 14:02 |
*** Konsta has quit IRC | 14:03 | |
*** Sarvi has joined #sailfishos | 14:03 | |
*** fk_lx has quit IRC | 14:04 | |
cos- | is it possible to disable sounds for facebook notifications? | 14:12 |
cos- | they are a bit annoying during night | 14:12 |
*** mk2soldier has joined #sailfishos | 14:17 | |
*** fk_lx has joined #sailfishos | 14:22 | |
*** b0bben has joined #sailfishos | 14:25 | |
*** b0bben has quit IRC | 14:28 | |
*** Morpog_PC has quit IRC | 14:29 | |
*** Tumeez has quit IRC | 14:29 | |
*** phako has quit IRC | 14:29 | |
tango_ | cos-: go offline on facebook at night? | 14:32 |
Pnuu | and never go online again \o/ | 14:32 |
cos- | tango_: that is a workaround, not solution :-) | 14:33 |
tango_ | actually, just log out of facebook forever | 14:34 |
tango_ | even better | 14:34 |
Pnuu | tango_: +1 | 14:34 |
cos- | and miss all the parties? | 14:34 |
*** b0bben has joined #sailfishos | 14:34 | |
*** Morpog_PC has joined #sailfishos | 14:35 | |
*** Tumeez has joined #sailfishos | 14:35 | |
*** phako has joined #sailfishos | 14:35 | |
tango_ | parties? which parties? | 14:35 |
tango_ | let's talk about icons | 14:36 |
tango_ | png or svg? | 14:37 |
*** b0bben has quit IRC | 14:37 | |
*** b0bben has joined #sailfishos | 14:38 | |
*** coolmouse has quit IRC | 14:38 | |
narchie | is there a way to use the round clock/timer component? | 14:40 |
narchie | I'm on the go so I can't research but was.wondering | 14:40 |
narchie | it would be neat to use in an app | 14:41 |
Pnuu | https://sailfishos.org/sailfish-silica/qml-sailfishsilica-timepickerdialog.html | 14:42 |
tango_ | the rich text controls in qt5 are odd. if I have a string "<p>\nsome text\n<p>\nsome other text" I get an empty line at the beginning | 14:43 |
tango_ | does it obey newlines even in richtext mode? | 14:43 |
*** Elessar has joined #sailfishos | 14:43 | |
*** Morpog_Mobile has quit IRC | 14:47 | |
narchie | Pnuu: I meant the one used in for example timers in the clock app | 14:47 |
narchie | though thats useful too for me, thanks | 14:47 |
*** mk2soldier has quit IRC | 14:47 | |
Pnuu | narchie: ah, ok :-) | 14:47 |
*** AlmAck has joined #sailfishos | 14:51 | |
*** Elessar has quit IRC | 14:52 | |
*** Venemo___ has quit IRC | 14:52 | |
*** b0bben has quit IRC | 14:54 | |
*** b0bben has joined #sailfishos | 14:55 | |
*** arcean_ has quit IRC | 14:56 | |
*** arcean_ has joined #sailfishos | 14:58 | |
*** b0bben has quit IRC | 14:59 | |
*** veskuh has quit IRC | 15:03 | |
*** jmlich has quit IRC | 15:05 | |
*** Frye has joined #sailfishos | 15:09 | |
Andy80 | damn it | 15:09 |
Andy80 | I've changed my app name to follow harbour-* name spec | 15:09 |
Andy80 | and now my rpm is not built anymore :/ | 15:09 |
*** atiti has quit IRC | 15:11 | |
Andy80 | and I'm also getting a clock skew error | 15:12 |
coderus | Andy80: you need to change all files | 15:12 |
Andy80 | coderus: which files? | 15:13 |
*** krnlyng has quit IRC | 15:13 | |
Andy80 | coderus: which other I mean | 15:13 |
*** krnlyng has joined #sailfishos | 15:13 | |
Andy80 | coderus: I changed the .pro, .desktop, renamed the icon, changed the .yaml | 15:13 |
coderus | pro, rpm/yaml rpm/spec, remove Makefile's (if exists) rename desktop and icon files | 15:13 |
Andy80 | coderus: I did it | 15:13 |
coderus | so, what is error? | 15:13 |
Andy80 | apart removing the Makefile | 15:14 |
coderus | is there any harbour-allowed vibration method in sailfish? | 15:14 |
Andy80 | let me try again... | 15:14 |
*** arcean_ has quit IRC | 15:14 | |
Andy80 | do I have to rename also the .yaml file or the important part is the Name: section of it? | 15:15 |
*** celeron55 has joined #sailfishos | 15:15 | |
Andy80 | coderus: the warning I get is this: :-1: warning: File `Makefile' has modification time 2.1 s in the future | 15:16 |
coderus | you need to rename spec and yaml too | 15:16 |
Andy80 | coderus: and the .rpm is not generated | 15:16 |
coderus | you also renamed pro file? | 15:17 |
*** Frye has quit IRC | 15:17 | |
celeron55 | i am trying to port a rather complex application onto sailfish and now the first obscure issue i stumbled upon is that it needs zlib and the build can't find zlib (i have no idea how the SDK even figured out it should link to zlib, but i assume it's some kind of intentional magic and it indeed does require zlib) | 15:17 |
celeron55 | so, uh, how is this supposed to work | 15:17 |
*** Venemo has joined #sailfishos | 15:17 | |
Andy80 | coderus: no I didn't rename the .pro, the FAQ doesn't say to do it | 15:18 |
Andy80 | coderus: also... the .spec is autogenerated, can I just delete it? | 15:18 |
*** Dry_Lips has left #sailfishos | 15:18 | |
*** vitronic_ has joined #sailfishos | 15:21 | |
Andy80 | coderus: I've tried again... the application is compiled in the build directory: build-SailSoma-MerSDK_SailfishOS_armv7hl-Release | 15:22 |
Andy80 | coderus: but the rpms/ folder inside it is empty | 15:22 |
*** vitronic has quit IRC | 15:24 | |
*** onurati has quit IRC | 15:27 | |
celeron55 | this sdk is so obscure 8| why can't these be simple | 15:28 |
Tumeez | coderus Why new messages doesn't show under Nickname? | 15:29 |
Venemo | celeron55 +1 | 15:29 |
Venemo | ok, why just +1 | 15:29 |
Venemo | celeron55 +312342354585768765365856756283465376 | 15:29 |
Tumeez | Only status update show there | 15:29 |
*** Elessar has joined #sailfishos | 15:29 | |
celeron55 | but seriously guys, how do i continue | 15:29 |
matoking | Is there a list of system icons somewhere? | 15:29 |
matoking | The ones you see in Settings for example | 15:30 |
Andy80 | celeron55, Venemo to be honest it's more the time I waste making simple things (that should be automated) work than actually coding :/ | 15:30 |
Elessar | I'm trying to install gdb on the device and get this one: Fatal error: Authentication failed (is SSU set up correctly?) what could happen? | 15:30 |
*** KangOl has quit IRC | 15:30 | |
matoking | and in case there isn't, is there a free icon library (public domain preferably) that fits in well with Sailfish UI? | 15:30 |
celeron55 | the erro that i can copy is "/srv/mer/targets/SailfishOS-armv7hl/usr/lib/libz.so.1:-1: error: could not read symbols: Invalid", but it also says in some non-copyable text that "File not found: <that file>" | 15:30 |
Venemo | Andy80: YES, I'm glad someone sees this too | 15:31 |
celeron55 | +r | 15:31 |
Andy80 | Venemo: I discovered only today that my app should have been named harbour-* to get accepted in the harbour... now I've changed all the names as/where expected and the SDK doesn't generate rpms anymore | 15:31 |
*** jjanvier has quit IRC | 15:31 | |
matoking | @Andy80 Try clean and rebuild if you haven't already | 15:32 |
matoking | What errors are you getting? | 15:32 |
Venemo | nah, I think this falls under developer experience | 15:32 |
Andy80 | matoking: I've tried Full Clean multiple times | 15:32 |
*** khertan has joined #sailfishos | 15:32 | |
Venemo | so please go here: https://together.jolla.com/question/7029/idea-developer-experience-dev-device-programs-etc/ UPVOTE and add an answer about SDK obscurity | 15:32 |
Andy80 | matoking: I'm not getting any visible error, it just doesn't build. The build fails somewhere | 15:32 |
matoking | @Andy80 You should see something in Compile Output | 15:33 |
Andy80 | matoking: first a question: how do you generate the rpms? with Rebuild All or with Deploy All? | 15:34 |
khertan | Hello everybody ! | 15:34 |
Andy80 | matoking: with "Requild All" I get this warning: :-1: warning: Clock skew detected. Your build may be incomplete. | 15:34 |
matoking | @Andy80 I just click Run since I do my debugging on a device | 15:34 |
matoking | @Andy80 What file causes it? | 15:35 |
Andy80 | matoking: yes but what you select in the Deploy option? There are three available | 15:35 |
matoking | @Andy80 "Deploy as RPM Package" | 15:36 |
Andy80 | ok, I try again | 15:36 |
matoking | You could posting the whole Compile Output to Pastebin or similar service | 15:36 |
Elessar | oh, I've changed domain to 'jolla' somehow | 15:37 |
Elessar | changing it back to 'sales' fixes the issue | 15:37 |
matoking | @Elessar I think that happens when you try enabling the developer repositories | 15:38 |
matoking | @Elessar through the Developer Mode menu | 15:38 |
Andy80 | matoking: I just got this error: Command failed: A filename to install is required | 15:38 |
Andy80 | 16:37:38: The process "/Users/andrea/.config/SailfishAlpha3/mer-sdk-tools/MerSDK/SailfishOS-armv7hl/deploy" exited with code 3. | 15:38 |
Andy80 | Error while building/deploying project SailSoma (kit: MerSDK-SailfishOS-armv7hl) | 15:38 |
Andy80 | When executing step 'Rpm' | 15:38 |
Elessar | matoking: I've tried to check what it is, so it may be the reason | 15:38 |
matoking | @Andy80 Is that all? | 15:38 |
Andy80 | is not the complete, just the last error | 15:39 |
Andy80 | it doesn't print the coplete output | 15:39 |
matoking | @Andy80 Post the entire compile output to Pastebin and give the link | 15:39 |
Andy80 | matoking: again... if you want I can retry but it doesn't print anything else | 15:39 |
matoking | @Andy80 except for those three lines? | 15:40 |
matoking | http://pastebin.com/GrwshR8u | 15:40 |
Andy80 | matoking: wait, I did it | 15:41 |
Andy80 | matoking: there is a but in QtCReator | 15:41 |
matoking | @Andy80 What was the problem? | 15:41 |
Andy80 | it cleaned the log every time unless I don't move the mouse pointer in the log while it's writing it | 15:41 |
Andy80 | matoking: now I was able to get the complete log http://pastebin.com/VkQnRXJV | 15:42 |
Andy80 | latest lines don't make any sense at all | 15:42 |
Andy80 | it's stuff of 4-5 hours ago | 15:42 |
Andy80 | you see that is completly wrong | 15:42 |
matoking | @Andy80 Okay, try cleaning the project, closing Qt Creator and deleting the makefile | 15:42 |
matoking | @Andy80 After that, try compiling it again | 15:43 |
Andy80 | matoking: I will do it for the 4563784673th time :/ | 15:43 |
matoking | @Andy80 I think it was a known issue that Clean doesn't delete the makefile for some reason | 15:43 |
matoking | @Andy80 That, or the time Qt Creator is getting is 1.5 seconds ahead in the future | 15:43 |
matoking | @Andy80 and you've unknowingly created a time machine | 15:44 |
Andy80 | matoking: and is it my fault? | 15:44 |
khertan | do not blame people trying to invent time machine ! | 15:45 |
matoking | @Andy80 Is it your fault or is it not yet your fault? | 15:45 |
Andy80 | :P | 15:45 |
matoking | Starting to get off-topic here :P | 15:45 |
Andy80 | matoking: I've just restarted QtCreator... what do I try now? I click again on Play and see the output? | 15:45 |
matoking | @Andy80 Try building it as you've done before | 15:46 |
Andy80 | wait... now I've problem with Mer SDK VM too | 15:47 |
Andy80 | I start it bu the button remains gray | 15:47 |
Andy80 | instead of becoming red | 15:47 |
*** promulo has joined #sailfishos | 15:47 | |
Andy80 | now green again WTF | 15:47 |
Andy80 | I try to kill vbox | 15:48 |
khertan | gray ... mostly means connecting in progress | 15:48 |
Andy80 | an restart it | 15:48 |
Andy80 | yes, but if it goes back to green it means fail | 15:48 |
coderus | Qt0Feedback. Really? Why Qt0? | 15:48 |
Andy80 | ok, VM restarted | 15:48 |
Andy80 | let's try again | 15:49 |
*** Morpog_PC has quit IRC | 15:49 | |
*** racamaw has joined #sailfishos | 15:49 | |
*** Morpog_PC has joined #sailfishos | 15:49 | |
*** martyone_ has joined #sailfishos | 15:49 | |
*** b0bben has joined #sailfishos | 15:49 | |
Andy80 | fuuuuuuuuuuuck | 15:49 |
khertan | coderus, is that a lib that 's prevent feedback ? (QtNoneFeedback) | 15:50 |
Andy80 | every time it cleans the build log | 15:50 |
Andy80 | how I'm supposed to copy/paste the error?! | 15:50 |
Andy80 | :( | 15:50 |
matoking | @Andy80 Is your SDK up-to-date? | 15:50 |
khertan | Andy80, clean or just move the scroll a bit too much ? | 15:50 |
Andy80 | yes it is | 15:50 |
Andy80 | 2 days ago | 15:50 |
matoking | :/ | 15:50 |
Andy80 | found again | 15:50 |
Andy80 | let me paste it... | 15:50 |
Andy80 | http://pastebin.com/9cDKfyXu | 15:51 |
Andy80 | ok... the error now is visible at least: File not found: /home/deploy/installroot/usr/share/SailSoma | 15:51 |
matoking | Could it be that Mer VM has an incorrect system clock or vice versa? | 15:52 |
cos- | tango_: icons must be png (harbour rule).. i'd prefer svg as on harmattan | 15:52 |
cos- | ..and if you mean icons inside apps, you can't use svg (another harbour rule) | 15:53 |
Andy80 | matoking: I don't know... my PC has a correct time, how do I check on Mer SDK? | 15:53 |
*** jjanvier has joined #sailfishos | 15:54 | |
Andy80 | found... | 15:54 |
Andy80 | it's 15:54 UTC | 15:54 |
Andy80 | it looks fine | 15:54 |
khertan | Andy80, /usr/lib/rpm/meego/brp-python-hardlink ... that s a python project ? | 15:55 |
Andy80 | khertan: uh? | 15:55 |
khertan | ownNotes 1.2.4 available in OpenRepos.net | 15:55 |
matoking | @khertan It's something that's executed as a part of build | 15:55 |
Andy80 | matoking: I wonder where it reads that /home/deploy/installroot/usr/share/SailSoma | 15:56 |
matoking | @khertan I get it when I compile my application too | 15:56 |
Andy80 | matoking: my .pri looks fine | 15:56 |
Andy80 | TARGET = harbour-sailsoma | 15:56 |
khertan | matoking, oh ... strange to try to bitcompile python file :) | 15:56 |
khertan | rpm have strange tool | 15:56 |
khertan | s | 15:56 |
khertan | :) | 15:56 |
Andy80 | TARGETPATH = /usr/bin | 15:56 |
Andy80 | target.path = $$TARGETPATH | 15:56 |
Andy80 | DEPLOYMENT_PATH = /usr/share/$$TARGET | 15:56 |
Andy80 | everything looks fine :/ | 15:57 |
Andy80 | it should be /usr/share/harbour-sailsoma | 15:57 |
Andy80 | not the one it says | 15:57 |
matoking | Okay you could do that what I told you before but also delete SailSoma.pro.user in case it isn't deleted as part of clean | 15:57 |
Andy80 | matoking: what did you tell me before exactly? Because I tried to do it if you mean cleaning the project, closing QtCreator and deleting Makefile | 15:58 |
*** raven24^{off} is now known as raven24 | 15:58 | |
Andy80 | matoking: I've no Makefile anymore in the source folder... but I can try deleting .user as well | 15:59 |
*** martyone_ has quit IRC | 15:59 | |
Andy80 | done | 15:59 |
khertan | Look like lupdate isn't available in the Sailfishsdk | 15:59 |
Stskeeps | it is there | 16:00 |
Stskeeps | just .. hidden | 16:00 |
*** racamaw has quit IRC | 16:01 | |
khertan | Master Stskeeps, an advice ? | 16:02 |
Andy80 | ok, I try again to rebuild the project... | 16:02 |
Elessar | why QtCreator can tell that 'Deploy as RPM Package' doesn't support run configuration? | 16:03 |
Andy80 | matoking: again the same error File not found: /home/deploy/installroot/usr/share/SailSoma | 16:04 |
Andy80 | wth :/ | 16:04 |
Andy80 | how the hell it generates that path | 16:04 |
*** matoking has quit IRC | 16:05 | |
*** Sarvi has quit IRC | 16:05 | |
Andy80 | Stskeeps: btw Makefile is not hidden... it's just not anymore in the source folder | 16:06 |
*** KangOl has joined #sailfishos | 16:07 | |
*** ahiemstra_ has quit IRC | 16:08 | |
*** ahiemstra has joined #sailfishos | 16:09 | |
Andy80 | it doesn't make any sense... | 16:10 |
Andy80 | wait wait... | 16:11 |
Andy80 | maybe I've found the problem | 16:11 |
Andy80 | but seriously... these things should be handled by SDK, imho :P | 16:12 |
Andy80 | there was the old dir in the yaml... the new one has been added but the old name was not removed | 16:13 |
*** zhxt has quit IRC | 16:14 | |
Andy80 | finally! | 16:14 |
Andy80 | rpm generated! | 16:14 |
Andy80 | I still can't deploy it to the device, using rpms, because I still get this error: Project ERROR: Could not connect to MerSDK Virtual Machine. Timeout waiting for reply from server. | 16:14 |
Andy80 | 17:13:29: The process "/Users/andrea/.config/SailfishAlpha3/mer-sdk-tools/MerSDK/SailfishOS-armv7hl/deploy" exited with code 1. | 16:14 |
Andy80 | Error while building/deploying project SailSoma (kit: MerSDK-SailfishOS-armv7hl) | 16:14 |
Andy80 | When executing step 'Rpm' | 16:14 |
Andy80 | but at least I can generate the rpms | 16:14 |
celeron55 | is it possible to allocate multiple cores to the virtual machine to speed up compiles? | 16:16 |
celeron55 | or, i guess it is, but does there exist a person who has any idea how that is set up | 16:16 |
Andy80 | ok, SailSoma submitted to the Harbour, let's see how it goes | 16:20 |
Andy80 | have a nice end of the year guys :) | 16:20 |
*** b0bben has quit IRC | 16:23 | |
*** rm_work|away has quit IRC | 16:23 | |
*** b0bben_ has joined #sailfishos | 16:24 | |
Venemo | Andy80: you too! and congrats for your app :) | 16:26 |
Andy80 | Venemo: thanks :) you too! | 16:27 |
*** b0bben_ has quit IRC | 16:27 | |
Venemo | Andy80 :) | 16:28 |
Venemo | Andy80: btw, what's up with you nowadays? it's been a while since I last heard about you. | 16:28 |
Andy80 | Venemo: right now spending few days in Italy with my family, for holidays | 16:30 |
Andy80 | Venemo: then I go back to London where I work and live | 16:30 |
Venemo | Andy80: London? oh? | 16:30 |
Andy80 | Venemo: yes, I moved there this year in April | 16:31 |
jpnurmi | how to get something into app settings? like a plugin for the settings app or something? | 16:31 |
*** rm_work|away has joined #sailfishos | 16:32 | |
*** rm_work|away is now known as rm_work | 16:32 | |
tango_ | cos-: meh | 16:32 |
*** rm_work has quit IRC | 16:32 | |
*** rm_work has joined #sailfishos | 16:32 | |
tango_ | wonder why | 16:32 |
tango_ | (png instead of svg) | 16:32 |
Venemo | Andy80: what're you doing there? | 16:32 |
Andy80 | Venemo: Django/Python backend development (p.s: we're a bit OT here :P ) | 16:33 |
Stskeeps | khertan: qt5-qttools-linguist | 16:33 |
Andy80 | Venemo: I need to run anyway... I'm with friends for dinner later | 16:33 |
Venemo | Andy80: allrighty, have a nice evening! | 16:34 |
Andy80 | Venemo: thanks you too! | 16:37 |
Elleo | jpnurmi: https://lists.sailfishos.org/pipermail/devel/2013-December/002142.html <-- although it sounds like it may not be able to distribute apps that do this through the harbour yet | 16:39 |
jpnurmi | Elleo: thanks! | 16:39 |
Elleo | no problem :) | 16:40 |
*** thedead1440_ has quit IRC | 16:41 | |
*** super_hirsute has quit IRC | 16:41 | |
*** thedead1440 has quit IRC | 16:42 | |
khertan | Stskeeps, thanks master ... :) | 16:45 |
*** KangOl has quit IRC | 16:51 | |
*** thedead1440 has joined #sailfishos | 16:55 | |
*** rm_work has quit IRC | 16:56 | |
*** thedead1440_ has joined #sailfishos | 16:56 | |
*** thedead1440_ has quit IRC | 16:57 | |
*** thedead1440_ has joined #sailfishos | 16:57 | |
*** rm_work|away has joined #sailfishos | 16:59 | |
*** rm_work|away is now known as rm_work | 16:59 | |
*** rm_work has joined #sailfishos | 16:59 | |
*** Superpelican_ has joined #sailfishos | 17:04 | |
*** matoking has joined #sailfishos | 17:07 | |
*** thedead1440 has quit IRC | 17:08 | |
*** thedead1440__ has joined #sailfishos | 17:08 | |
*** zhost has quit IRC | 17:10 | |
*** Skorpy has quit IRC | 17:11 | |
*** amizraa has quit IRC | 17:12 | |
*** amizraa has joined #sailfishos | 17:13 | |
*** jjanvier has quit IRC | 17:14 | |
*** triggerhappy has quit IRC | 17:16 | |
*** mfulz has joined #sailfishos | 17:16 | |
mfulz | does someone know why / how I can use a Enum when declared with Q_PROPERTY? | 17:16 |
mfulz | when I'm using it inside a qproperty I'll receive an QVarian(MyENUM) inside qml and cannot use the values | 17:17 |
mfulz | when removing the q_property and just returning it by a method it's working fine | 17:17 |
*** thedead1440__ has quit IRC | 17:21 | |
*** thedead1440_ has quit IRC | 17:23 | |
*** thedead1440 has joined #sailfishos | 17:24 | |
*** thedead1440_ has joined #sailfishos | 17:25 | |
*** faenil_ has joined #sailfishos | 17:26 | |
*** faenil has quit IRC | 17:27 | |
*** faenil_ has quit IRC | 17:29 | |
*** faenil has joined #sailfishos | 17:29 | |
*** RoKenn has quit IRC | 17:31 | |
*** faenil has quit IRC | 17:36 | |
*** b0bben has joined #sailfishos | 17:41 | |
*** RoKenn has joined #sailfishos | 17:42 | |
*** mfulz has quit IRC | 17:42 | |
*** Andy80 has quit IRC | 17:45 | |
*** b0bben has quit IRC | 17:45 | |
*** John24 has joined #sailfishos | 17:46 | |
*** Andy80 has joined #sailfishos | 17:46 | |
John24 | hey guys, have any of you published an app to Jolla store? | 17:46 |
*** RoKenn has quit IRC | 17:47 | |
*** Andy80 has quit IRC | 17:48 | |
Venemo | John24: yes | 17:48 |
*** Andy80 has joined #sailfishos | 17:49 | |
John24 | would you have few minutes to asnwer few questions? | 17:49 |
*** nahkiss has quit IRC | 17:50 | |
Venemo | John24: sure | 17:50 |
Venemo | John24: just ask :) | 17:51 |
*** nahkiss has joined #sailfishos | 17:51 | |
John24 | how to properly change the icon file for the app before publishing? | 17:51 |
Venemo | just replace the file? | 17:53 |
John24 | That's the thing I am new to QtCreator I got no idea where it is | 17:53 |
Venemo | John24: okay, have you seen this: https://harbour.jolla.com/faq ? | 17:54 |
John24 | yes I read that but it makes no sense to me :( that's why I thought to ask here | 17:54 |
Venemo | look around in your app's folder | 17:55 |
Tumeez | John24 What app your coding now? | 17:55 |
*** Morpog_Mobile has joined #sailfishos | 17:55 | |
John24 | yeah i see it now there is a myapp name.png file | 17:55 |
Venemo | John24: you can have the file anywhere you like, as long as the project is configured properly. I recommend you to leave it at the default place and just replace the file :) | 17:56 |
Venemo | John24: also, don't forget to prefix your executable and package with harbour- as the faq says | 17:57 |
John24 | brilliant, didn't know that | 17:57 |
John24 | yes my project is harbour-app name | 17:57 |
John24 | and change .desptop file to only have app name withouth harbour- | 17:57 |
John24 | was just sort of lost with the icon | 17:57 |
Venemo | okay | 18:02 |
Venemo | if you have any questions, feel free to ask here any time | 18:02 |
Venemo | just know that sometimes you have to wait a bit for someone to answer | 18:03 |
John24 | thank you | 18:04 |
John24 | I really appreciate your help :) | 18:04 |
Venemo | you're welcome! | 18:05 |
John24 | there we go, just submited two app to the store :) | 18:09 |
John24 | How long does it take to get an asnwer? | 18:09 |
*** matoking has quit IRC | 18:11 | |
w00t | John24: hopefully not too long, but generally at least a working day or two | 18:12 |
jpnurmi | shouldn't the sdk app template comply with those store rules? | 18:14 |
*** promulo has quit IRC | 18:19 | |
*** John24 has quit IRC | 18:20 | |
*** Andy80 has quit IRC | 18:20 | |
w00t | jpnurmi: checks aren't just automatic | 18:20 |
jpnurmi | Venemo: did you do the adjustments by hand before submitting, or did you actually push those changes to vcs? | 18:20 |
Venemo | jpnurmi: what adjustments? | 18:21 |
Venemo | jpnurmi: aaah, yes | 18:21 |
Venemo | jpnurmi: I didn't use the SDK app template (for various reasons) so I did everything by hand | 18:22 |
jpnurmi | Venemo: the name changes etc? i'm wondering if the sdk is still able to run if you make those permanent | 18:22 |
Venemo | jpnurmi: I made the changes Sailfish-specific, see https://github.com/Venemo/puzzle-master/blob/master/puzzle-master.pro#L162 | 18:22 |
*** rlindsgaard has quit IRC | 18:23 | |
*** phaeron has quit IRC | 18:23 | |
*** fuz_ has quit IRC | 18:23 | |
*** rlindsgaard has joined #sailfishos | 18:24 | |
*** jjarven has quit IRC | 18:26 | |
Venemo | jpnurmi: of course for a sailfish-only app there is no sense in doing it that way | 18:28 |
*** thedead1440_ has quit IRC | 18:29 | |
*** thedead1440 has quit IRC | 18:29 | |
*** fuz_ has joined #sailfishos | 18:35 | |
*** zuh has quit IRC | 18:36 | |
*** zuh has joined #sailfishos | 18:36 | |
walokra | Venemo: puzzle master is nice. 1 question: couldn't you combine your custom touch controls with silica pullup/down menus? the app looks now more like android app :) | 18:43 |
Sviox | Damn, fought with Q_ARG macro for a long time. As a warning to the rest of you, don't create a list of arguments in a loop with the macro. Q_ARG takes a reference (which was easy to miss) so the value given should exist when using the thing, i.e. not come from stack... Was wondering why all the data was the same as the last added ^^ | 18:43 |
Venemo | walokra: the gestures required by the silica components collide with the flow of the app | 18:44 |
walokra | yep | 18:44 |
Venemo | walokra: so at the end I decided to just use the UI that I already had | 18:45 |
*** jjarven has joined #sailfishos | 18:45 | |
Venemo | walokra: I can assure you it has nothing to do with android (although I might create an android port too eventually) | 18:45 |
walokra | yeah, I know, it just "feels" like it :) | 18:45 |
*** mikko__ has joined #sailfishos | 18:47 | |
mikko__ | hello | 18:47 |
*** phaeron has joined #sailfishos | 18:51 | |
*** Tumex_ has quit IRC | 18:56 | |
*** mikko__ has quit IRC | 18:56 | |
*** mikko__ has joined #sailfishos | 18:56 | |
*** mikko__ is now known as Mikkosssss | 18:57 | |
*** Mikkosssss has left #sailfishos | 18:57 | |
*** Skorpy has joined #sailfishos | 19:02 | |
*** thedead1440 has joined #sailfishos | 19:05 | |
coderus | hey, go celebrating NY! go away from PC, IRC, internet! | 19:07 |
lbt | :P | 19:07 |
*** amonk has joined #sailfishos | 19:07 | |
lbt | coderus: off to Tango RSN :D | 19:07 |
Pnuu | never | 19:07 |
*** suosaaski has joined #sailfishos | 19:10 | |
celeron55 | what's up with the large chunks of empty lines in sdk's qtcreator's compiler output tab? | 19:12 |
Venemo | have fun lbt | 19:12 |
celeron55 | they're very inconvenient and there doesn't seem to be any reason for them | 19:13 |
Venemo | celeron55: I think there're bigger issues than that | 19:13 |
celeron55 | so far this has behaved well enough for that to be my largest problem 8) | 19:14 |
celeron55 | (given that i already know qmake's and qtcreator's more regular quirks) | 19:15 |
Venemo | the whole SDK is very dubious | 19:15 |
*** Morpog_PC has quit IRC | 19:16 | |
lbt | celeron55: good to know :) | 19:17 |
FireFly | coderus: happy new york? | 19:20 |
Sviox | Happy new year everyone. I'm off to senaatintori.. | 19:24 |
*** matoking has joined #sailfishos | 19:24 | |
*** inara has quit IRC | 19:26 | |
*** b0bben has joined #sailfishos | 19:26 | |
*** inara has joined #sailfishos | 19:29 | |
*** s1gk1ll_ has joined #sailfishos | 19:31 | |
*** s1gk1ll has quit IRC | 19:32 | |
*** Venemo has quit IRC | 19:36 | |
*** Hurrian has quit IRC | 19:38 | |
tango_ | why should we celebrate new york? | 19:40 |
Pnuu | tango_: 'cause theres gazzillion I <3 NY t-shirts, I'd guess | 19:41 |
*** mikkosssss has joined #sailfishos | 19:42 | |
mikkosssss | does this work? Never used IRC before too young maybe.. | 19:43 |
*** b0bben has quit IRC | 19:43 | |
kengu | mikkosssss: um. works | 19:43 |
*** b0bben has joined #sailfishos | 19:44 | |
*** Sviox has quit IRC | 19:46 | |
mikkosssss | Good. But my Sailfish SDK wont work. When I try run mediagallery or any other I get error | 19:47 |
mikkosssss | 21:42:59: The process "/home/mikko/.config/SailfishAlpha3/mer-sdk-tools/MerSDK/SailfishOS-i486-x86/qmake" exited with code 2. | 19:48 |
mikkosssss | Error while building/deploying project mediagallery (kit: MerSDK-SailfishOS-i486-x86) | 19:48 |
mikkosssss | When executing step 'qmake' | 19:48 |
*** b0bben has quit IRC | 19:48 | |
celeron55 | look what comes before it | 19:53 |
jpnurmi | mikkosssss: the actual error is there somewhere before that output | 19:53 |
celeron55 | the actual error is in there between swathes of unnecessary whitespace | 19:53 |
mikkosssss | It had these before but it still worked Cannot find file: /home/mersdk/Sailfish. | 19:53 |
mikkosssss | Cannot find file: projects/mediagallery/mediagallery.pro. | 19:53 |
celeron55 | pastebin the full log? | 19:54 |
mikkosssss | This is examples mediagallery so I dont think theres error in code | 19:55 |
mikkosssss | ? | 19:59 |
*** furikku has quit IRC | 20:00 | |
*** lbt has quit IRC | 20:08 | |
*** lbt has joined #sailfishos | 20:10 | |
mikkosssss | I found why | 20:11 |
mikkosssss | Folder that I stored projects had space in name... | 20:12 |
*** Superpelican_ has quit IRC | 20:18 | |
*** tanghus has quit IRC | 20:28 | |
*** tanghus has joined #sailfishos | 20:29 | |
*** super_hirsute has joined #sailfishos | 20:45 | |
*** n0rman has quit IRC | 20:48 | |
*** n0rman has joined #sailfishos | 21:01 | |
*** phaeron has quit IRC | 21:12 | |
*** b0bben has joined #sailfishos | 21:16 | |
*** zhost has joined #sailfishos | 21:17 | |
*** b0bben has quit IRC | 21:21 | |
*** mikkosssss has quit IRC | 21:29 | |
*** dhbiker has quit IRC | 21:48 | |
celeron55 | how can i install packages to the build environment? | 21:50 |
celeron55 | i need SDL2 | 21:50 |
celeron55 | installing them to the emulator is trivial, but how does the build environment work | 21:52 |
celeron55 | oh, figured it out | 22:01 |
celeron55 | adding sdl2 to the PkgConfigBR list did it | 22:01 |
*** meShell_ has joined #sailfishos | 22:18 | |
*** Finleida has quit IRC | 22:20 | |
meShell_ | d | 22:26 |
*** _miqu_ has joined #sailfishos | 22:35 | |
*** Elessar has quit IRC | 22:42 | |
Elleo | MSameer: I think this might be up your alley ;) I'm random getting crashes in libgstogg when changing sources if those sources are http resources; I've made this little test case: http://mikeasoft.com/~mike/oggcrash.qml (it's possible I'm doing something silly though). It'll change sources successfully a few times, before segfaulting. | 22:44 |
*** Hurrian has joined #sailfishos | 22:44 | |
*** rm_work is now known as rm_work|away | 22:48 | |
meShell_ | bad timing I think, but has someone a working sailfish sdk for armv7hl at hand :) Mine only has 486 and not able to install armv7hl toolchain somehow ... only need a newer vpnc as the one in the official repo, so from svn (or at least r517): http://svn.unix-ag.uni-kl.de/vpnc/trunk/ ... someone? | 22:48 |
*** crevetor has joined #sailfishos | 22:59 | |
*** _miqu_ has quit IRC | 23:00 | |
*** b0bben has joined #sailfishos | 23:05 | |
*** b0bben has quit IRC | 23:09 | |
*** lbt has quit IRC | 23:28 | |
*** lbt has joined #sailfishos | 23:30 | |
meShell_ | and happy new yrear, half past 0 here | 23:33 |
*** Frye has joined #sailfishos | 23:44 | |
*** Frye has quit IRC | 23:47 | |
celeron55 | hmm, i managed to compile irrlicht and create an sdl2(+ogles2) backend in it, and it seems to run in the emulator, but nothing comes up and no input events get into the application | 23:50 |
celeron55 | it runs happily in it's main loop though | 23:51 |
*** _miqu_ has joined #sailfishos | 23:51 | |
*** amonk has quit IRC | 23:52 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!