[SailfishDevel] Account storage access

2014-10-26 Thread Matthias Barmeier
Hi, is it possible to access the account storage (the file where URLs, usernames, passwords are saved to) with tools like sqlite3 or even vi ? Ciao Matze ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr..

Re: [SailfishDevel] Cannot open projects after updating SDK

2014-06-26 Thread Matthias Barmeier
Hi, Thanks, everything fine now ! Ciao Matze Am 26.06.2014 23:00, schrieb Bob Jelica: Try this: open your project in QTC, select ”Projects” in the left sidebar, add kits you need. //bob On 26 Jun 2014, at 22:51, Matthias Barmeier wrote: Hi, deleting the folder does not help :( The

Re: [SailfishDevel] Cannot open projects after updating SDK

2014-06-26 Thread Matthias Barmeier
another hint or a pointer for a documentation for me ? Ciao Matze Am 25.06.2014 10:36, schrieb Juha Kallioinen: On 25.06.2014 00:21, Matthias Barmeier wrote: Hi, after updating my SDK I cannot open my projects any more. QtCreator shows a message saying that no kits are available. Does

[SailfishDevel] Cannot open projects after updating SDK

2014-06-24 Thread Matthias Barmeier
Hi, after updating my SDK I cannot open my projects any more. QtCreator shows a message saying that no kits are available. Does anyone know how to fix this ? Ciao Matze ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to de

Re: [SailfishDevel] FTP download with qtquick possible ?

2014-06-21 Thread Matthias Barmeier
Hi, I think I will give Python a try because my C++ knwoledge is very limited. Thanks a lot. Ciao Matze Am 21.06.2014 16:05, schrieb Alejandro Exojo: El Friday 20 June 2014, Matthias Barmeier escribió: is it possible to download a file via qml(JS) from a server and store the file on the

[SailfishDevel] FTP download with qtquick possible ?

2014-06-20 Thread Matthias Barmeier
Hi, is it possible to download a file via qml(JS) from a server and store the file on the sdcard ? Ciao Matze ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Re: [SailfishDevel] QML creates a Segfault

2014-05-13 Thread Matthias Barmeier
re, Jonni *From:* devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] on behalf of Matthias Barmeier [barme...@barmeier.com] *Sent:* Tuesday, May 13, 2014 2:57 PM *To:* Sailfish OS Developers *Subject:* Re: [SailfishDevel] QML creates a Segfault OK, its just a bit weir

Re: [SailfishDevel] QML creates a Segfault

2014-05-13 Thread Matthias Barmeier
OK, its just a bit weird that the same program works without a WorkerScript. The WorkerScript is just to make the gui more repsonsive it has no relevance to the function. Thanks. Am 13.05.2014 13:31, schrieb Juha Kallioinen: On 13.05.2014 14:00, Matthias Barmeier wrote: Hi, when trying to

Re: [SailfishDevel] QML creates a Segfault

2014-05-13 Thread Matthias Barmeier
unknown work and producing unknown error. At least for me all working as expected :D 13.05.2014 17:00, Matthias Barmeier ?: Hi, when trying to download data in a WorkerScript thread I got this: bash: line 1: 1459 Segmentation fault QT_NO_JOURNALD_LOG=1 DISPLAY=:0.0 /usr/bin/CalDav Can

[SailfishDevel] QML creates a Segfault

2014-05-13 Thread Matthias Barmeier
Hi, when trying to download data in a WorkerScript thread I got this: bash: line 1: 1459 Segmentation fault QT_NO_JOURNALD_LOG=1 DISPLAY=:0.0 /usr/bin/CalDav Can somebody explain if I can avoid this or what the reason is ? Thanks. Ciao Matze

Re: [SailfishDevel] Howto access createEvent function in org.nemomobile.calendar ?

2014-05-11 Thread Matthias Barmeier
Thanks again ! The link is very helpful ! Everything works as now :) Am 11.05.2014 22:05, schrieb Andrey Kozhevnikov: setStartTime https://github.com/nemomobile/nemo-qml-plugin-calendar/blob/master/src/calendarevent.h#L104 12.05.2014 01:58, Matthias Barmeier пишет: Hi Andrey, thanks

Re: [SailfishDevel] Howto access createEvent function in org.nemomobile.calendar ?

2014-05-11 Thread Matthias Barmeier
reateEvent() 12.05.2014 00:21, Matthias Barmeier пишет: Hi, I would like to access the createEvent function from a .js file. I tried the following: --- SNIP .import org.nemomobile.calendar 1.0 as Calendar function addEvent (ocEvent) { var event = Calendar.createEvent(); --- But I only get: Object [obj

[SailfishDevel] Howto access createEvent function in org.nemomobile.calendar ?

2014-05-11 Thread Matthias Barmeier
Hi, I would like to access the createEvent function from a .js file. I tried the following: --- SNIP .import org.nemomobile.calendar 1.0 as Calendar function addEvent (ocEvent) { var event = Calendar.createEvent(); --- But I only get: Object [object Object] has no method 'createEvent' Wh

Re: [SailfishDevel] Howto activate scrolling when the keyboard shows up ?

2014-05-08 Thread Matthias Barmeier
devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] on behalf of Matthias Barmeier [barme...@barmeier.com] Sent: Thursday, May 08, 2014 3:04 PM To: Sailfish OS Developers Subject: Re: [SailfishDevel] Howto activate scrolling when the keyboard shows up ? Hi, I tried this but it doesn't help.

Re: [SailfishDevel] Howto activate scrolling when the keyboard shows up ?

2014-05-07 Thread Matthias Barmeier
Ciao Matze Am 06.05.2014 11:03, schrieb Pekka Vuorela: Tue, 2014-05-06 kello 07:23 +0200, Matthias Barmeier kirjoitti: Hi, When trying to implement a simple dialog I got the problem that the keyboard hides the lower half of my dialog. I tried several things found but nothing worked. Could so

[SailfishDevel] Howto activate scrolling when the keyboard shows up ?

2014-05-05 Thread Matthias Barmeier
Hi, When trying to implement a simple dialog I got the problem that the keyboard hides the lower half of my dialog. I tried several things found but nothing worked. Could some one leave me a hint where to look or a code snippet how to make dialog scrollable, when the keyboard is activated.

Re: [SailfishDevel] QtContacts and Calendar access doesn't work after update.

2014-02-02 Thread Matthias Barmeier
Could you please give me a link hon how to connect to the phone with permissions that will allow me to edit this file. Thanks. Am 01.02.2014 13:02, schrieb Bernd Wachter: Andrey Kozhevnikov writes: same here for QtContacts: contactsdatabase.cpp:1028 static QSqlDatabase ContactsDatabase::op

Re: [SailfishDevel] QtContacts and Calendar access doesn't work after update.

2014-02-01 Thread Matthias Barmeier
database directory: /home/nemo/.local/share/system//privileged/Contacts/qtcontacts-sqlite On 01.02.2014 17:06, Matthias Barmeier wrote: Hi, I experimented with QtContacts and Calendar access extracted from the Jolla calendar. After the update I cannot access the calendar nor the contacts databas

[SailfishDevel] QtContacts and Calendar access doesn't work after update.

2014-02-01 Thread Matthias Barmeier
Hi, I experimented with QtContacts and Calendar access extracted from the Jolla calendar. After the update I cannot access the calendar nor the contacts database anymore. I now that these APIs are not stable, but I need remote contacts and calendar sync I had implemented to prove Jolla in all

Re: [SailfishDevel] How can I setup calendar access via QML ?

2014-01-28 Thread Matthias Barmeier
55, skrev Matthias Barmeier: >>> Hi, >>> >>> do you mean that all these packages: >>> >>> qt5-qtdeclarative-pim-organizer > [...] >>> are obsolete or am I unable to use them from QML ? >> Like Andrey, I'm convinced they are not used o

[SailfishDevel] Impossible to send a PROPFIND request via XMLHttpRequest !?

2014-01-26 Thread Matthias Barmeier
Hi, if I try to send a PROPFIND request via XMLHttpRequest I got: Error: Unsupported HTTP method type This makes live for QML developers harder then necessary. Will this be fixed or is there a hidden trick to get a PROPFIND response via QML ? Ciao Matze

Re: [SailfishDevel] How can I setup calendar access via QML ?

2014-01-25 Thread Matthias Barmeier
13:55, skrev Matthias Barmeier: Hi, do you mean that all these packages: qt5-qtdeclarative-pim-organizer qt5-qtdeclarative-pim-organizer-debuginfo qt5-qtpim-organizer qt5-qtpim-organizer-debuginfo qt5-qtpim-organizer-devel qt5-qtpim-versitorganizer qt5-qtpim-versitorganizer-debuginfo qt5-

Re: [SailfishDevel] How can I setup calendar access via QML ?

2014-01-25 Thread Matthias Barmeier
be able to install it. its not on device by default. On 25.01.2014 18:55, Matthias Barmeier wrote: Hi, do you mean that all these packages: qt5-qtdeclarative-pim-organizer qt5-qtdeclarative-pim-organizer-debuginfo qt5-qtpim-organizer qt5-qtpim-organizer-debuginfo qt5-qtpim-organizer-devel

Re: [SailfishDevel] How can I setup calendar access via QML ?

2014-01-25 Thread Matthias Barmeier
org.nemomobile.calendar module On 25.01.2014 17:57, Matthias Barmeier wrote: Hi, does anybody know how how to setup calendar access from QML ? I have successfully gained access to contacts. I tried the same approach, but it does not work :(. What I have tried: .pro: CONFIG += QtOrganizer INCLUDEPATH += /usr

[SailfishDevel] How can I setup calendar access via QML ?

2014-01-25 Thread Matthias Barmeier
Hi, does anybody know how how to setup calendar access from QML ? I have successfully gained access to contacts. I tried the same approach, but it does not work :(. What I have tried: .pro: CONFIG += QtOrganizer INCLUDEPATH += /usr/include/qt5/QtOrganizer .qml: import QtQuick 2.0 import Sai

[SailfishDevel] Starting debug session failed

2014-01-12 Thread Matthias Barmeier
Hi, Is Information available on how to debug the debug process ? I am unable to run a debug session in emulator or on the phone. On the emulator I have a messages in the log window saying that debugging has started, but nothing happened. On the phone the log messages say that the session has s

Re: [SailfishDevel] Clock skew when debugging over ssh

2014-01-09 Thread Matthias Barmeier
e virtual machine clock and the host machine clock are out > of sync. Maybe a timezone issue? > > A workaround can be touching the source files and doing a make clean > && make to rebuild > > Luciano > > On Wed, Jan 8, 2014 at 10:53 PM, Matthias Barmeier > wrote: &g

[SailfishDevel] Clock skew when debugging over ssh

2014-01-08 Thread Matthias Barmeier
Hi, I try to run my app in debug mode on the phone but I always get this message: :-1: Warning: Clock skew detected. Your build may be incomplete. What does this mean ? Is this the reason why the debug session does not come up ? How can I avoid this ? Ciao Matze

Re: [SailfishDevel] Putting data with QML on first screen after power on ?

2014-01-07 Thread Matthias Barmeier
:46, Matthias Barmeier wrote: >> Hi, >> >> is it possible to add notification, calendar entries or something else >> on the first screen with QML ? >> >> Does an official name for all the screens exists ? >> >> There is the screen after the device is doub

[SailfishDevel] Putting data with QML on first screen after power on ?

2014-01-07 Thread Matthias Barmeier
Hi, is it possible to add notification, calendar entries or something else on the first screen with QML ? Does an official name for all the screens exists ? There is the screen after the device is double tapped or the power button is pressed, the screen when you scroll down and the screen that c

Re: [SailfishDevel] Cannot access phone book on phone when starting app from QtCreator

2014-01-06 Thread Matthias Barmeier
ess to the contacts DB. Thanks again. Ciao Matze Am 06.01.2014 14:16, schrieb Andrey Kozhevnikov: change your launch parameters to use invoker On 06.01.2014 19:14, Ove Kåven wrote: Den 05. jan. 2014 23:10, skrev Matthias Barmeier: Hi, I am unable to access the phone book when running m

[SailfishDevel] Cannot access phone book on phone when starting app from QtCreator

2014-01-05 Thread Matthias Barmeier
Hi, I am unable to access the phone book when running my app from QtCreator on the phone. Is this a security feature ? Is it possible to work with a fake contact DB ? Ciao Matze ___ SailfishOS.org Devel mailing list

[SailfishDevel] Is it possible to install the contacts app on the emulator ?

2014-01-01 Thread Matthias Barmeier
Hi, I would like to test my contacts sync function on the emulator. But my app interacts with Jollas Contacts app. Is it possible to install the app develivered with the phone on the emulator ? When I test my application on the phone I have no access to the Contacts app data if QtCreator is

[SailfishDevel] Possible QtContacts 5.0 Bug

2013-12-30 Thread Matthias Barmeier
Hi, when creating a contact I am unable to store the guid field. All data is stored but not the guid. Ciao Matze ___ SailfishOS.org Devel mailing list

Re: [SailfishDevel] QtContacts available

2013-12-24 Thread Matthias Barmeier
nstalling via the SDK Control Center. You can back out of SB2 with: exit Then if you repeat: zypper se qt5 | grep "i |" You should get a much shorter list of installed qt5 packages. Have fun Chris Zitat von "Matthias Barmeier" : Hi Chris, please help me with my conf

Re: [SailfishDevel] QtContacts available

2013-12-24 Thread Matthias Barmeier
Hi, jepp ScratchBox2 everything is much clearer now. The concept of chroot / fakeroot is common to me, but I missd that SB2 is scratchbox2. Thanks for the explanation. Ciao Matze Am 23.12.2013 00:29, schrieb Marko Koschak: Hi Matze On So, 2013-12-22 at 21:50 +0100, christopher.l...@thu

Re: [SailfishDevel] QtContacts available

2013-12-22 Thread Matthias Barmeier
ot;by hand" to the build-engine, either use the SDK Control Center to search and install the package or connect via SSH to the SDK as you describe, then start SB2 and use zypper within SB2. Then sync from the control center. Grüsse Chris Zitat von "Matthias Barmeier" : Hi,

Re: [SailfishDevel] QtContacts available

2013-12-22 Thread Matthias Barmeier
ing with contacts, and will have installed some of these myself. Once you have the correct modules installed to the SDK and Emulator (and synced with QtCreator), then you should be able to use QtContacts from both C++ and QML. Ciao Chris Zitat von "Matthias Barmeier" : Hi, the

Re: [SailfishDevel] QtContacts available

2013-12-21 Thread Matthias Barmeier
e { id: page ... my test.cpp: #ifdef QT_QML_DEBUG #include #endif #include #include ... What else must I do ? Ciao Matze Am 21.12.2013 14:36, schrieb Andrey Kozhevnikov: add INCLUDEPATH += /usr/include/qt5/QtContacts to pro file On 21.12.2013 18:44, Matthias Barmeier wrote: Hi

Re: [SailfishDevel] QtContacts available

2013-12-21 Thread Matthias Barmeier
/qt5/QtContacts I try to use QtContacts from qml ist this possible ? Ciao Matze Am 21.12.2013 13:04, schrieb Andrey Kozhevnikov: add it to pro file CONFIG += Qt5Contacts and then include in Qt On 21.12.2013 18:02, Matthias Barmeier wrote: Hi, I am new to SailfishOS coming from Harmattan

Re: [SailfishDevel] QtContacts available

2013-12-21 Thread Matthias Barmeier
, Matthias Barmeier wrote: Hi, is QtContacts available for SDK emulator or Device ? And if it is available where and how can I get it ? Ciao Matze ___ SailfishOS.org Devel mailing list

[SailfishDevel] QtContacts available

2013-12-21 Thread Matthias Barmeier
Hi, is QtContacts available for SDK emulator or Device ? And if it is available where and how can I get it ? Ciao Matze ___ SailfishOS.org Devel mailing list

Re: [SailfishDevel] GStreamer does not support HTTP streaming -- Workaround?

2013-07-12 Thread Matthias Barmeier
Hi, I am new to Sailfish and can only try to give some hints. Have you checked if pulse audio is running SYSTEM mode ? If so you will need to have an entry like this in /etc/pulse/system.pa: load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1;192.168.1.0/24 listen="0.0.0.0" If this ent

Re: [SailfishDevel] No Kits available in Qt Creator

2013-07-01 Thread Matthias Barmeier
ly added - you will probably get nothing here. If I choose the Applications / sailfish Qt Quick Application, then I get the Mersdk-SailfishOS-i486-x86. I guess this is what you are after. Chris Zitat von "Matthias Barmeier" : Hi Chris, under Plugins - Device Support I found Mer

Re: [SailfishDevel] No Kits available in Qt Creator

2013-06-30 Thread Matthias Barmeier
kits are listed in the Kit Selection dialog. Ciao Matthias Am 01.07.2013 07:14, schrieb christopher.l...@thurweb.ch: Matthias Have you checked under "About Plugins" if any kits are installed / selected? You should find them in the section "Device Support". Chris

[SailfishDevel] No Kits available in Qt Creator

2013-06-30 Thread Matthias Barmeier
Hi, after installing Sailfish SDK and trying to create a project I cannot select a kit in in the Kit Selection dialog because the list contains no items. What can I do ? Ciao Matthias ___ SailfishOS.org Devel mailing list