Re: [SailfishDevel] How to debug Julla

2014-02-26 Thread simosk . salo
Kaj Not quite so. I think 1.0.3.8 Naamankajärvi is the latest! Kaj-Michael Lang kirjoitti Thu Feb 27 2014 09:20:07 GMT+0200 (EET): >On Thu, 2014-02-27 at 14:41 +0800, Tony wrote: >> My Julla ’s system version is 1.0.0.5. I tried to upgrade the system , >> but > >First of all, it is Jolla > >> s

Re: [SailfishDevel] How to debug Julla

2014-02-26 Thread Vesa-Matti Hartikainen
Hi, Here are instructions for updating: https://jolla.zendesk.com/entries/39296038-I-have-problems-with-my-Jolla-account-loading-applications-from-the-Jolla-store-and-or-getting-the-l Best Regards, Vesku On 02/27/2014 08:41 AM, Tony wrote: Hi, My Julla 's system version is 1.0.0.5. I trie

Re: [SailfishDevel] How to debug Julla

2014-02-26 Thread Kaj-Michael Lang
On Thu, 2014-02-27 at 14:41 +0800, Tony wrote: > My Julla ’s system version is 1.0.0.5. I tried to upgrade the system , > but First of all, it is Jolla > system mentioned that is the newest version. Besides , I also tried > to start using development mode. The system noticed that development > p

[SailfishDevel] How to debug Julla

2014-02-26 Thread Tony
Hi, My Julla ’s system version is 1.0.0.5. I tried to upgrade the system , but system mentioned that is the newest version. Besides , I also tried to start using development mode. The system noticed that development package install failed. Do you know how to debug it ? tony.chend...@gmail.co

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread christopher . lamb
Hi Antonio This works for me: //Start BloomfiltersDemo.cpp #ifdef QT_QML_DEBUG #include #endif #include #include "bloomfilters.h" int main(int argc, char *argv[]) { QGuiApplication *app = SailfishApp::application(argc, argv); QQuickView *view = SailfishApp::createView(); Bloom

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread Sylvain B .
Yes, add a "s"You declared "bloomfiltersdata" and you are trying to use bloomfilterdata... Date: Wed, 26 Feb 2014 04:02:22 -0800 From: antonio.cano.go...@ovi.com To: devel@lists.sailfishos.org Subject: Re: [SailfishDevel] QML C++ Integration not working in Sailfish Hi Andrey, The output is: Ref

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread Harald Schmitt
Am 26.02.2014 11:46, schrieb antonio.cano.go...@ovi.com: > Hi J-P, > > It is not working as I try to call the method generateFilterInvokable2() > > in the function: > > function createBloomFilter() { > getAppState().filterCharged = true; > Bloomfilters.generateFilterInvokable2() > co

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread antonio . cano . gomez
Hi Andrey, The output is: ReferenceError: bloomfilterdata is not defined I am calling it from a .js Some idea about how can I  make that this is also defined there. Thanks! El Miércoles 26 de febrero de 2014 12:18, Andrey Kozhevnikov escribió: start app in terminal and show output plea

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread Mikko Leppänen
Hi, Try creating Bloomfilters class instance before declaring view, and store app and view either to qscopedpointer or qsharedpointer. /Mikko 2014-02-26 13:15 GMT+02:00 : > Hi Thomas, > > I did both modification but the code does not work yet. > > Here is the new code: > > > QGuiApplic

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread Andrey Kozhevnikov
start app in terminal and show output please On 26.02.2014 17:15, antonio.cano.go...@ovi.com wrote: Hi Thomas, I did both modification but the code does not work yet. Here is the new code: QGuiApplication *app = SailfishApp::application(argc, argv); QQuickView *view = Sailfish

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread antonio . cano . gomez
Hi Thomas, I did both modification but the code does not work yet. Here is the new code:     QGuiApplication *app = SailfishApp::application(argc, argv);     QQuickView *view = SailfishApp::createView();     Bloomfilters  * bloomfilters = new Bloomfilters();     view->rootContex

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread Thomas Perl
On 2014-02-26 11:48, antonio.cano.go...@ovi.com wrote: I tried this: QGuiApplication *app = SailfishApp::application(argc, argv); QQuickView *view = SailfishApp::createView(); Bloomfilters * bloomfilters = new Bloomfilters(); view->setSource(SailfishApp::pathTo("qml/bloo

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread antonio . cano . gomez
I tried this:     QGuiApplication *app = SailfishApp::application(argc, argv);     QQuickView *view = SailfishApp::createView();     Bloomfilters  * bloomfilters = new Bloomfilters();     view->setSource(SailfishApp::pathTo("qml/bloomfilter.qml"));     view->showFullScreen();

[SailfishDevel] Hardware RNG

2014-02-26 Thread Benoît HERVIER
Hi Sailor, I notice there is a /dev/hwrng file. Which hardware parts/chipset is involved for generating the pseudo random number ? Regards, -- Benoît HERVIER - http://khertan.net/ ___ SailfishOS.org Devel mailing list

Re: [SailfishDevel] QML C++ Integration not working in Sailfish

2014-02-26 Thread antonio . cano . gomez
Hi J-P, It is not working as I try to call the method generateFilterInvokable2() in the function: function createBloomFilter() {     getAppState().filterCharged = true;     Bloomfilters.generateFilterInvokable2()     console.log("Called") } And as result "Called" is never printed. So I guess t

Re: [SailfishDevel] Gui and Kernel app

2014-02-26 Thread Andrey Kozhevnikov
If you mean just Kernel + Gui development then no need in two packages. Combine them both. And no problem in SailfishOS to communicate between processes. You can use any favorite method. Everything works. On 26.02.2014 14:50, Kaj-Michael Lang wrote: On Tue, 2014-02-25 at 21:43 +0100, Randolph

Re: [SailfishDevel] Gui and Kernel app

2014-02-26 Thread Kaj-Michael Lang
On Tue, 2014-02-25 at 21:43 +0100, Randolph wrote: > Not the same question for sailfish, is it here the same? does the RPM > for kernel and RPM for gui will be able to communicate or is this > prohibited too? For native apps you can use any standard unix/linux IPC method available to communicate.