[SailfishDevel] Harbour reporting works or not?

2013-12-20 Thread Stockona
My app has been published for more than two weeks but the download count still is zero. I know there are few users but still expect a few downloads. Anyone see non-zero download in their reports? ___ SailfishOS.org Devel mailing list

[SailfishDevel] Tester needed to check app's rpm packaging

2013-12-03 Thread Stockona
Can anyone with Jolla device help me test if the rpm packaging is done right? Mainly whether the icon shows up or not. Thanks in advance, I have been rejected by QA for too many times :| https://dl.dropboxusercontent.com/u/54692247/harbour-stockona-1.0-6.armv7hl.rpm

Re: [SailfishDevel] Cannot launch app by clicking app icon in emulator

2013-11-18 Thread Stockona
On another note, when launching from terminal I got the following message: Failed to load platform plugin "xcb". Available platforms are: eglfs wayland-egl wayland Aborted ____ From: Stockona To: "devel@lists.sailfishos.org" Sent: Saturday,

[SailfishDevel] Cannot launch app by clicking app icon in emulator

2013-11-16 Thread Stockona
sktop Entry] >Type=Application >Name=Stockona >Icon=/usr/share/icons/stockona.png >Exec=invoker --type=silica-qt5 -s /usr/bin/stockona >Comment=Sailfish UI application For comparison, jolla-settings.desktop is >[Desktop Entry] >Type=Application >Name=Settings >... >Exe

Re: [SailfishDevel] QSqlDatabase cannot create db file when deployed as rpm package

2013-11-12 Thread Stockona
deployed as rpm package ah. you have no write permissions to these folders. create db in /home/nemo/.local/share/Sockona or /home/nemo/.config/Stockona On 12.11.2013 14:25, Stockona wrote: I have QT += sql in my pro. >DB path= "/usr/share/Stockona/.stockona_db" >By the way, db.

Re: [SailfishDevel] QSqlDatabase cannot create db file when deployed as rpm package

2013-11-12 Thread Stockona
I have QT += sql in my pro. DB path= "/usr/share/Stockona/.stockona_db" By the way, db.lastError().text() and type() gave me: "Error: DB failed to open,  "out of memory Error opening database"  errorType= 1" The path I got when deployed as binary was: DB path

Re: [SailfishDevel] QSqlDatabase cannot create db file when deployed as rpm package

2013-11-12 Thread Stockona
Source code: Q_DECL_EXPORTintmain(intargc,char*argv[]) { ...     FileHandler*fileHandler=newFileHandler(); view->rootContext()->setContextProperty("fileHandler",fileHandler); ... } FileHandler::FileHandler(QObject*parent):QObject(parent){     ... // /usr/share/Stockona

[SailfishDevel] QSqlDatabase cannot create db file when deployed as rpm package

2013-11-11 Thread Stockona
When I switched to "Deploy by copying binary", the database is created and connected correctly. Changing the deployment to rpm package the same code just failed with database error message "out of memory Error opening database." I checked in Emulator terminal and the database file was not create

[SailfishDevel] Connect accepted signal from a dynamically-loaded dialog to the previous page's method?

2013-10-02 Thread Stockona
I have been trying to get this working to no avail. My code is like this: Page1.qml function update() {   ... } PullDownMenu{ MenuItem{    onClicked:{ vardialog=pageStack.push(Qt.resolvedUrl("Dialog1.qml")); //Not working. Dialogcannotseeparent'spropertie