Hi,
thanks for testing!
So I don't have to worry about libc anymore and I'll define my next tasks as-
correct icon path- load Views dynamically to increase startup time- think about
reducing the fields in the game area to make them larger on small devices
Thanks!Martin
> From: jonni.raini...@jo
Hi,
On 2013-11-12 20:40, Semuonov Basil wrote:
Case 1 - Titles are the same:
Dev1 submits application called "Trains Europe" about history of
europe trains with binary "trains_1.0.0_armv7hl.rpm"
Dev2 submits application called "Trains Europe" about online timetable
for train transport called "
Hi sailors,
in the very first (Qt4 version) of the SDK I ported an easy application,
that is using a list model. To connect the list model and also my main
logic stuff I used the setContextProperty() method. In the first Qt5 SDK
version I had to work a bit around that (created a view from
Sailfish
#include
#include
#include "MyClass.h"
int main(int argc, char *argv[])
{
QGuiApplication *app = SailfishApp::application(argc, argv);
QQuickView *view = SailfishApp::createView();
MyClass *myclass = new MyClass();
view->rootContext()->setContextProperty("myclass", myclass);
vie
Hi,
Yes your setContextProperty() to rootContext is the right approach. Usually I
do something like this:
QScopedPointer app(Sailfish::createApplication(argc,
argv));
QScopedPointer view(Sailfish::createView());
MyClass data;
view->rootContext()->setContextProperty("myObject", &
W dniu 13.11.2013 16:16, Jonni Rainisto pisze:
Hi,
Yes your setContextProperty() to rootContext is the right approach. Usually I
do something like this:
QScopedPointer app(Sailfish::createApplication(argc,
argv));
QScopedPointer view(Sailfish::createView());
MyClass data;
Wow, thanks to you and also Andrey!
This is nearly the way I took back in the first Jolla Qt5 SDK, is it
also the recommended way to do that?
Will it have a (bad) influence on the start up times?
Thanks so much! :)
> Hi,
>
> Yes your setContextProperty() to rootContext is the right approach. U
This is almost same what SailfishApp::main() does for you and it keeping
booster working, just lets you to use application and view instances
directly.
Have fun with Sailfish ;)
On 13.11.2013 21:23, Gabriel Boehme wrote:
Wow, thanks to you and also Andrey!
This is nearly the way I took back
Hi,
Does anybody know about a possible module and its status in Sailfish/Qt-5
that corresponds to Harmattan Qt Mobility Messaging so that it would be
possible to send and receive SMSs (which is essential in my app) through
Qt/QML on the Jolla phone?
Thanks,
Seppo
_
Afaik, if you try to send sms, it opens default messaging application where you
can enter the sms. And same for outgoing phonecalls, opens phone application
where you can make a call.
Reasoning behind it is that as those call create a phone bill to end user, then
applications are not allowed to
Hi,
I have my app ready. Until now I just did a "scp -r -P 2223
./checklistsdata nemo@localhost:/home/nemo" to copy the app data. But I
need a robust solution before submitting to the harbour...
Are there rules concerning user and app data?
The user may change/delete data from within the app,
Hi Jonni,
nemo-qml-plugin-accounts-qt5 looks like what I'm looking for, but I have a hard
time trying to figure out how it's working because I can't find a lot of
documentation/examples.
If I understand correctly and correlates to what I've read about accounts-ui
for harmattan, it is only need
submitten my app on the sailstore got this from QA:
"Reason for rejection: Cannot install this application on the phone Description
of the
problem: During installation appear error: error: Failed dependencies:
Qt5Multimedia is
needed by uradio-0.8-1.armv7hl libsailfishapp.so.1 is needed by
u
Yes, that's the way to go. In Harmattan QML, there were:
Qt.openUrlExternally("tel:012345x") for calls, and
Qt.openUrlExternally("sms:01234567444" + "?body=" + "bodytext") for SMSs.
The latter did not work for me so I had to use Harmattan c++ Qt Messaging:
QMessage sms;
sms.setType(QMess
Hi,
On Wed, Nov 13, 2013 at 11:08 PM, Seppo Tiainen wrote:
> Yes, that's the way to go. In Harmattan QML, there were:
>
> Qt.openUrlExternally("tel:012345x") for calls, and
> Qt.openUrlExternally("sms:01234567444" + "?body=" + "bodytext") for SMSs.
tel: is already supported. sms: is not ye
Hi,
On Wed, Nov 13, 2013 at 9:19 PM, Wim de Vries wrote:
> I have my app ready. Until now I just did a "scp -r -P 2223 ./checklistsdata
> nemo@localhost:/home/nemo" to copy the app data. But I need a robust
> solution before submitting to the harbour...
> Are there rules concerning user and app d
Thank you! That clarified things.
Seppo
2013/11/14 Robin Burchell
> Hi,
>
> On Wed, Nov 13, 2013 at 11:08 PM, Seppo Tiainen
> wrote:
> > Yes, that's the way to go. In Harmattan QML, there were:
> >
> > Qt.openUrlExternally("tel:012345x") for calls, and
> > Qt.openUrlExternally("sms:0123
Hi,
On Wed, Nov 13, 2013 at 9:26 PM, Tigre-Bleu wrote:
> Hi Jonni,
>
> nemo-qml-plugin-accounts-qt5 looks like what I'm looking for, but I have a
> hard time trying to figure out how it's working because I can't find a lot of
> documentation/examples.
You most likely don't want that. It was an
Ok, thanks for the info.
I will then just wait for the Sailfish accounts control implementation details
and implement everything in the app for the moment.
Antoine
- Mail original -
De: "Robin Burchell"
À: "Sailfish OS Developers"
Envoyé: Mercredi 13 Novembre 2013 23:41:48
Objet: Re:
Hi,
On Sun, Nov 10, 2013 at 12:02 AM, Mark Johnson wrote:
> For some reason when I try to open a file with QIODevice::ReadWrite access
> in the following directory it fails every time (the file should be
> instantiated as a result of the QFile::open() call):
>
> QString mainFileName =
> QStandard
Hi All
Could somebody with the real device, please, try my test app -
http://bit.ly/flatest
There's RPM with the simplest possible app for controling flashlight using
two methods: Torch and CameraFlash. To my understanding Torch can't work in
Jolla as it's shared with CameraFlash, but I still inc
Hi all
Current SailfishOS web site tells to use mailing list as a bug tracker, so
let's try :)
Silica Slider ignores initial value property if it's over one even if
minimalValue/maximalValue should allow it. Setting value later works just
fine. I guess during initialization Slider checks value va
Hi sorry to drop in on this, but on a similar track, Jonni can you also
confirm transfer-ui plugins not to be yet ready as well?
Best,
tortoisedoc
On Thu, Nov 14, 2013 at 12:50 AM, Tigre-Bleu wrote:
>
> Ok, thanks for the info.
>
> I will then just wait for the Sailfish accounts control implem
Hi,
sorry to report Flash doesn't come on either way.
-Jukka
On Thu, Nov 14, 2013 at 1:12 AM, Artem Marchenko
wrote:
> Hi All
>
> Could somebody with the real device, please, try my test app -
> http://bit.ly/flatest
>
> There's RPM with the simplest possible app for controling flashlight usin
24 matches
Mail list logo