Re: [SailfishDevel] Update 2.0.1.3 and ssh

2015-10-28 Thread David Greaves
Login to the device as root and: cp /etc/ssh/sshd_config /etc/ssh/sshd_config.safe cat <> /etc/ssh/sshd_config # Added this line to enable SDK to connect Ciphers +aes128-cbc EOF systemctl restart sshd.service *** Don't forget to fix it when the new

Re: [SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread jollailija
Ok, I'll have a look at it. Thanks! Alexander Ladygin kirjoitti ke lokakuuta 28 12:18:02 2015 GMT+0200: > If you add DockPanel as child to ApplicationWindow, not Page, then there > will be no overlaping without any workarounds (at least it did it for me) > > On Wed, Oct 28, 2015 at 1:02 PM, wrot

Re: [SailfishDevel] QtContacts & jolla-contacts app

2015-10-28 Thread Michał
Everything is clear to me now. Thank you for your help Andrey & Lucien! Kind regards, Michal On 2015-10-28 13:54, Lucien Xu wrote: Hi Michal, Your application is writing to the unrpivileged contacts DB. This DB is "read only", as jolla-contacts sync the (privileged) DB to this one, without sy

Re: [SailfishDevel] QtContacts & jolla-contacts app

2015-10-28 Thread Lucien Xu
Hi Michal, Your application is writing to the unrpivileged contacts DB. This DB is "read only", as jolla-contacts sync the (privileged) DB to this one, without syncing back. That's why you see your contact, but it do not appear in jolla-contacts. Running with privileged group, and access to the

Re: [SailfishDevel] Update 2.0.1.3 and ssh

2015-10-28 Thread Andrey Kozhevnikov
you can try ssu re 2.0.0.10 and reinstall old openssh packages. no idea about dependencies, but worth a try. or just deploy packages manually. -- Исходное сообщение -- От: "Adam Pigg" Кому: "Jussi Pakkanen" Отправлено: 28.10.2015 17:42:27 Тема: Re: [SailfishDevel] Update 2.0.1.3 and ss

Re: [SailfishDevel] Update 2.0.1.3 and ssh

2015-10-28 Thread Adam Pigg
Is there a workaround/time frame for update? I've got fixes to make ‎for Harbour qa rejections! :) Sent from my BlackBerry 10 smartphone.   Original Message   From: Jussi Pakkanen Sent: Wednesday, 28 October 2015 12:40 PM To: devel@lists.sailfishos.org Reply To: Sailfish OS Developers Subject: Re

Re: [SailfishDevel] Update 2.0.1.3 and ssh

2015-10-28 Thread Jussi Pakkanen
On 28.10.2015 14:33, Adam Pigg wrote: ‎After updating my tablet last night to 2.0.1.3 I could no longer connect using Qt creator / ssh. The client and server ciphers didn't match. I have not installed anything from openrepos such as a different ssh package. This is caused by the fact that th

[SailfishDevel] Update 2.0.1.3 and ssh

2015-10-28 Thread Adam Pigg
‎After updating my tablet last night to 2.0.1.3 I could no longer connect using Qt creator / ssh. The client and server ciphers didn't match.   I have not installed anything from openrepos such as a different ssh package.Any ideasCheers Sent from my BlackBerry 10 smartphone.Hopefully will get a Jo

Re: [SailfishDevel] QtContacts & jolla-contacts app

2015-10-28 Thread Andrey Kozhevnikov
your application should run in "privileged" group to do so. you can do it using suid bit and setgid call, of course such application is not allowed for harbour. -- Исходное сообщение -- От: "Michał" Кому: devel@lists.sailfishos.org Отправлено: 28.10.2015 16:48:21 Тема: [SailfishDevel]

[SailfishDevel] QtContacts & jolla-contacts app

2015-10-28 Thread Michał
Hi, I'm struggling with an issue related to QtContacts API and jolla-contacts app. Using QtContacts, I can get, update or create new contact. It works as expected, so my app is able to access phone's contacts. The issue I have is when I create new contact via QtContacts, this contact is not

Re: [SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread Alexander Ladygin
If you add DockPanel as child to ApplicationWindow, not Page, then there will be no overlaping without any workarounds (at least it did it for me) On Wed, Oct 28, 2015 at 1:02 PM, wrote: > In Nettiradio I noticed the same behavior with SilicaListView content > overlapping with DockedPanel. I wor

Re: [SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread jollailija
In Nettiradio I noticed the same behavior with SilicaListView content overlapping with DockedPanel. I worked around it by adding some margin between the two. You can still see the section headers overlapping with the panel, though. Alexander Ladygin kirjoitti ke lokakuuta 28 11:18:19 2015 GMT+0

Re: [SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread Alexander Ladygin
that was easy=) much thanks, Lucien! On Wed, Oct 28, 2015 at 12:26 PM, Lucien Xu wrote: > Hello Alexander, > > I'm not sure to understand exactly what you need, but you might want to > take a look at the "clip" property of the Item component (base of all > graphical components in QtQuick) > > ht

Re: [SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread Lucien Xu
Hello Alexander, I'm not sure to understand exactly what you need, but you might want to take a look at the "clip" property of the Item component (base of all graphical components in QtQuick) http://doc.qt.io/qt-5/qml-qtquick-item.html#clip-prop Regards, Lucien - Mail original -

[SailfishDevel] how can i "contain" text items properly?

2015-10-28 Thread Alexander Ladygin
Hello there sailors! When using SilicaListView inside some other items, content of ListView often goes over the boundaries and overlaps with items outside. You can also see that behaviour with Label when you set negative text offset (text will go to the left, and if your Label is not anchored to t