Re: [SailfishDevel] Timeout of MerSDK and the Emulator

2016-07-20 Thread Martin Kampas
Hi Marcin, failed.log, statefs.log: both failing statefs and tmpfiles are known issues and shouldn't be related to this. sshd.log: according to the log you mistyped "sshd" as "ssh", but anyway "sshd.service" is not used, instead you should check the status of "sshd.socket". Also note that the

Re: [SailfishDevel] Resolution-independent in-app icons

2016-07-20 Thread Кожевников Андрей Андреевич
Prefer using svg images. Carrying multiple sizes png images is so 2000. 21.07.2016 02:27, Osmo Salomaa пишет: Hello, SFOS has standard sizes for application launcher icons and Silica has stock icons, whose sizes (I assume) vary by device, but how should I handle custom in-app icons, e.g. a

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread Matthew Vogt
The PageStack itself does not report the completion of transitions, but the Page objects involved in the transition see the transition events as changes to their 'status' property: https://sailfishos.org/develop/docs/silica/qml-sailfishsilica-sailfish-silica-page.html/#status-prop When a

[SailfishDevel] Resolution-independent in-app icons

2016-07-20 Thread Osmo Salomaa
Hello, SFOS has standard sizes for application launcher icons and Silica has stock icons, whose sizes (I assume) vary by device, but how should I handle custom in-app icons, e.g. a position icon in a map application, so that it would look right on different pixel-density screens? I tried

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread Dylan Van Assche
My fault it's called 'completeAnimation' Dylan Original Message Subject: Re: [SailfishDevel] pageStack navigation Local Time: 20 July 2016 9:15 PM UTC Time: 20 July 2016 19:15 From: develo...@nordan.ch To: devel@lists.sailfishos.org @Dylan According to the doc, there is no

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread Michael Neufing
Hi Fab, have you already tried to use the following? pageStack.pop(mainPage) This will remove all pages above the specified page (here: mainPage). See [1] for more information. Regards, Michael. [1]

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread occirol
@Dylan According to the doc, there is no function /completeTransition/ for a PageStack object. @Oleg I've something weird with your solution. Goal is reach but the MainPage is empty, as if the app was never started. :/ If I found a solution I'll let you know. If someone as an idea, welcome

Re: [SailfishDevel] Timeout of MerSDK and the Emulator

2016-07-20 Thread Marcin Mielniczuk
Hi, sshd is not running at all. The output of `systemctl --failed`, `systemctl status statefs`, `systemctl status sshd` On 18.07.2016 16:27, Martin Kampas wrote: Hi Marcin, Could you check SSH logs on the VM side? For that purpose please start the MerSDK VM directly from VirtualBox and

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread Oleg Linkin
Why not do the next: pageStack.clear() pageStack.push(MainPage)? 2016-07-20 19:36 GMT+03:00 Dylan Van Assche : > Hi, > > You should add this: > > if(!pageStack.busy) > { > pageStack.pop() > } > > This will prevent the issue but it will give you another bug:

Re: [SailfishDevel] pageStack navigation

2016-07-20 Thread Dylan Van Assche
Hi, You should add this: if(!pageStack.busy) { pageStack.pop() } This will prevent the issue but it will give you another bug: only one page will be popped. You can fix it like this: if(!pageStack.busy) { pageStack.pop() pageStack.completeTransition() // This will pop the page directly. }

[SailfishDevel] pageStack navigation

2016-07-20 Thread occirol
Hello everybody ! I can't figure out how to go back to the main page of an app and clear the stack of pages. Let me explain: I've a main page, by selecting a menu entry push a page (lets call it page1). On this page1, calling a certain action, push another page (call it page2, it is a