Re: [SailfishDevel] SMS for m2m communication

2014-03-23 Thread Pasi Patama
If this is indeed possible, is there any other documentation available than
'Google' ? I think you should re-evaluate this possibility and not to
follow Apple's footsteps blindly, because there are tons of applications
which would benefit for this possibility.


On Sun, Mar 23, 2014 at 9:00 PM, Jonni Rainisto wrote:

>  We dont allow Harbour applications to send hidden SMS messages to avoid
> malware. Sending sms should require user interaction ie. message is opened
> in common message UI and end user needs to press send manually.
>
> For non-harbour apps, you can use google search.
>
> re, Jonni
>  --
> *From:* devel-boun...@lists.sailfishos.org [
> devel-boun...@lists.sailfishos.org] on behalf of Pasi Patama [
> ppafindevelopm...@gmail.com]
> *Sent:* Sunday, March 23, 2014 8:09 PM
> *To:* devel@lists.sailfishos.org
> *Subject:* [SailfishDevel] SMS for m2m communication
>
>I am after m2m communication (to and from Jolla phone) over SMS. Is
> there documented way to send and receive SMS's within application done with
> SDK ?
>
>  All this should happen without user interactions, when needed. Any clues ?
>
>  Pasi
>
> ___
> SailfishOS.org Devel mailing list
>
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Issue with GPS refresh interval

2014-03-23 Thread Aaron McCarthy
Hi,

On Fri, 21 Mar 2014 13:57:56 dcali...@free.fr wrote:
> It seems to me (correct me if I'm wrong) that since the last software
> update (1.0.4.20), the GPS refresh interval set with setUpdateInterval()
> (see http://qt-project.org/doc/qt-5/qgeopositioninfosource.html), is not
> honored anymore. The GPS fires its callback with a period of 1 s always,
> whatever the value set for updateInterval (I'm testing with
> setUpdateInterval(3000), but other values are not working neither). The
> value returned by .updateInterval() accessor is valid (and different than
> 1000) by the way.
>I know that this part of Qt is not officialy in SailfishOS yet, but I
> would like to report a bug, if it actually exists, for it to be corrected
> in whatever future official inclusion in Sailfish.

Thank you for this report. It was caused by a change to Qt Positioning that 
wasn't meant to go out as part of 1.0.4.20. Once the rest of the logical 
change (changes to other packages) is in this regression will disappear.

Cheers,

-- 
Aaron McCarthy
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] No QSerialPort

2014-03-23 Thread Wim de Vries

Thanks,
I thought it came in with 5.2.
So, it should be available in Sailfish.
Have to recheck the errors, but it looked like the libs and headers were 
not there (QtSerialPort/QtSerialPort no such file).


On 03/19/2014 09:39 PM, Alejandro Exojo wrote:

El Wednesday 19 March 2014, Wim de Vries escribió:

My app cannot work without Q(t)SerialPort.
Is there a plan to upgrade to Qt5.2, or a way to add the Qt5.1 (beta)
QtSerial libs and headers?

I use QtSerialPort daily, so this mail puzzles me a bit:

On your Jolla?


- Why 5.2 is involved? QtSerialPort is in 5.1 too. And why "beta"?? The 5.1
branch is on 5.1.2, and 5.2 in 5.2.1.
- Why do you want QtSerialPort? Want to plug a CP2102 or similar? Only serial
that I see on a quick check seems to be /dev/ttyHSL*, and some searching
reveals is some Qualcomm UART. Is this for the-other-half? That seems to speak
I2C according to the docs, so no serial port, isn't it?

There is more to live than Jolla sensors: external sensors!

- QtSerialPort is quite small (just two classes, IIRC). Is the classic example
where copying it to your project might be the best approach. Specially if its
license is open source.


r
wim
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] SMS for m2m communication

2014-03-23 Thread Jonni Rainisto
We dont allow Harbour applications to send hidden SMS messages to avoid 
malware. Sending sms should require user interaction ie. message is opened in 
common message UI and end user needs to press send manually.

For non-harbour apps, you can use google search.

re, Jonni

From: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] 
on behalf of Pasi Patama [ppafindevelopm...@gmail.com]
Sent: Sunday, March 23, 2014 8:09 PM
To: devel@lists.sailfishos.org
Subject: [SailfishDevel] SMS for m2m communication

I am after m2m communication (to and from Jolla phone) over SMS. Is there 
documented way to send and receive SMS's within application done with SDK ?

All this should happen without user interactions, when needed. Any clues ?

Pasi
___
SailfishOS.org Devel mailing list

[SailfishDevel] SMS for m2m communication

2014-03-23 Thread Pasi Patama
I am after m2m communication (to and from Jolla phone) over SMS. Is there
documented way to send and receive SMS's within application done with SDK ?

All this should happen without user interactions, when needed. Any clues ?

Pasi
___
SailfishOS.org Devel mailing list

[SailfishDevel] Why do I get "binding loop" error?

2014-03-23 Thread Ragnar Kurm

Hello,

I have problems with an error:
Test.qml:7: QML SilicaFlickable: Binding loop detected for property 
"contentY"


What do I miss?

Ragnar



import QtQuick 2.0
import Sailfish.Silica 1.0

Dialog {
id: dialog
SilicaFlickable {
Column {
ComboBox {
label: "Label"
width: dialog.width
menu: ContextMenu {
width: dialog.width
MenuItem { text: "Item 1" }
}
}
}
}
}
___
SailfishOS.org Devel mailing list