Re: [SailfishDevel] Keep an application running without keeping the window open

2018-02-19 Thread Kimmo Lindholm
Yes. That is one case. From: Marcin Mielniczuk [mailto:marmistrz...@gmail.com] Sent: 19. helmikuuta 2018 9:55 To: Sailfish OS Developers; Kimmo Lindholm Subject: Re: [SailfishDevel] Keep an application running without keeping the window open Do I understand correctly that the dbus daemons run

Re: [SailfishDevel] Keep an application running without keeping the window open

2018-02-18 Thread Kimmo Lindholm
One small daemon you can take a look is my call fhasher https://github.com/kimmoli/callflasher for complex one, take a look at tohkbd2 . it has 2 daemons, system and user, and ui app that all communicate together over dbus -kimmo Lähettäjä: Devel [mailto:devel-boun...@lists.sailfishos.org]

Re: [SailfishDevel] how to disable swipe (from left, from right) on Silica PageStack

2018-02-18 Thread Kimmo Lindholm
Set backNavigation and forwardNavigation to false when you dont want to allow navigation. (not tested, just looked from sources) ref https://github.com/dm8tbr/sailfishsilica-qt5/blob/master/usr/lib/qt5/qml/Sailfish/Silica/Page.qml#L88 -kimmo Lähettäjä: Devel

Re: [SailfishDevel] Nemo DBus typedCall

2017-06-11 Thread Kimmo Lindholm
You’re missing the property name. You need: string:Powered variant:boolean:true ref: https://together.jolla.com/question/56437/i-would-like-to-toggle-internet-connectivity-via-terminal-with-dbus/ typedCall('SetProperty', [ {'type':'s', 'value': 'Powered'}, {'type':'v', 'value': valuet}], …);

Re: [SailfishDevel] Custom in-app icons

2017-03-04 Thread Kimmo Lindholm
Hi, You need to make your own iconprovider. Explained here https://together.jolla.com/question/44325/iconbutton-how-to-use-own-icons-with-highlight/ -kimmo -Original Message- From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of decon Sent: 4. maaliskuuta 2017 18:09 To:

Re: [SailfishDevel] Troubleshooting *DAV

2017-01-05 Thread Kimmo Lindholm
openssl requires full chain bundles, it can’t do discoveries on the fly, like browsers do. From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of E.S. Rosenberg Sent: 5. tammikuuta 2017 22:03 To: Sailfish OS Developers Subject: Re: [SailfishDevel] Troubleshooting *DAV Hi Chirs et

Re: [SailfishDevel] ngfd ini files documentation

2016-12-29 Thread Kimmo Lindholm
Krzysztof On 26.12.2016 12:20, Kimmo Lindholm wrote: For testing, you can use e.g. a python script, see here https://talk.maemo.org/showthread.php?t=92303 -kimmo From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Krzysztof Lesiak Sent: 26. joulukuuta 2016 12:41

Re: [SailfishDevel] ngfd ini files documentation

2016-12-26 Thread Kimmo Lindholm
For testing, you can use e.g. a python script, see here https://talk.maemo.org/showthread.php?t=92303 -kimmo From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Krzysztof Lesiak Sent: 26. joulukuuta 2016 12:41 To: devel@lists.sailfishos.org Subject: [SailfishDevel] ngfd ini

Re: [SailfishDevel] How to make cover display the firstPage scaled

2016-12-02 Thread Kimmo Lindholm
cover: null From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of joao morgado Sent: 2. joulukuuta 2016 4:05 To: devel@lists.sailfishos.org Subject: [SailfishDevel] How to make cover display the firstPage scaled Hi sailors My app UI is very simple, basically is just a timer

Re: [SailfishDevel] Documentation for mlite5

2016-11-05 Thread Kimmo Lindholm
PKGCONFIG += sailfishapp at all in my pro, just CONFIG += sailfishapp Marcin On 05.11.2016 08:07, Kimmo Lindholm wrote: Yes. +1 for docs. PKGCONFIG is a good way doing ir. In .pro CONFIG += link_pkgconfig sailfishapp PKGCONFIG += mlite5 sailfishapp in .spec BuildRequires: pkgconfig(mlite5

Re: [SailfishDevel] Documentation for mlite5

2016-11-05 Thread Kimmo Lindholm
Yes. +1 for docs. PKGCONFIG is a good way doing ir. In .pro CONFIG += link_pkgconfig sailfishapp PKGCONFIG += mlite5 sailfishapp in .spec BuildRequires: pkgconfig(mlite5) -kimmo Lähettäjä: Devel käyttäjän Marcin

Re: [SailfishDevel] SilicaWebView, google sign-in button and app authorization

2016-10-16 Thread Kimmo Lindholm
But that should start for new ones on 20th oct, and full blockage april 2017 ? So you should be still fine. (this is not helping you problem though) From: Devel [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Oleg Linkin Sent: 16. lokakuuta 2016 17:28 To: Sailfish OS Developers Subject:

Re: [SailfishDevel] PageStack: from push pushAttached directly to initialPage

2016-09-08 Thread Kimmo Lindholm
Is this what you are looking for?? function getBottomPageId() { return pageStack.find( function(page) { return (page._depth === 0) }) } pageStack.pop(getBottomPageId(), PageStackAction.Immediate) /* Remove all except bottom page, Thansk for Acce: *

Re: [SailfishDevel] Using QtQuick.Layouts

2016-07-28 Thread Kimmo Lindholm
You need these in QtCreator https://github.com/CODeRUS/better-sailfishos-qmltypes/tree/Sdk1511/QtQuick/Layouts see https://github.com/CODeRUS/better-sailfishos-qmltypes/blob/Sdk1511/README.md You can install all or just a bit. creds to coderus -kimmo > -Original Message- > From:

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

2016-07-22 Thread Kimmo Lindholm
> In theory you could use that to scale application's SVGs on device to target > pixel ratio as post-install step, unfortunately it is ran as root and thus > cannot be allowed for Store apps. Then you wouldn't need to hardcode the > pixel ratios to build time scripts. I'll dig deeper to see

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

2016-07-21 Thread Kimmo Lindholm
> Let say I would like to create my custom set of icons for my app. Is there > any good approach to figure out (in C++), which icon set is used in the > system, which Zx.x? dconf /desktop/sailfish/silica/theme_pixel_ratio or /desktop/sailfish/silica/theme_icon_subdir access with e.g. in qml

Re: [SailfishDevel] pageStack navigation

2016-07-21 Thread Kimmo Lindholm
See here ttps://together.jolla.com/question/44103/how-to-remove-all-except-bottom-page-from-pagestack/#post-id-44117 -kimmo ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Re: [SailfishDevel] browser versus ajax

2016-06-25 Thread Kimmo Lindholm
s :77 - ReadyState: 1 and after a very long time (at least it feels that way): :77 - ReadyState: 4 :80 - Status: 0 /Kim On fredag den 24. juni 2016 13.49.42 CEST Kimmo Lindholm wrote: > And how it looks with your app? > Both captures have 200 response > > Ca

Re: [SailfishDevel] browser versus ajax

2016-06-24 Thread Kimmo Lindholm
And how it looks with your app? Both captures have 200 response Can show your code too? -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Kim Foder Sent: 23. kesäkuuta 2016 23:33 To: devel@lists.sailfishos.org

Re: [SailfishDevel] [Official Announcement] Join the Sailfish Community Device Program now!

2016-05-26 Thread Kimmo Lindholm
https://jolla.com/jollac “Pure Sailfish OS 2.0 compatible with Android™ apps” Lähettäjä: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] Puolesta Luca Donaggio Lähetetty: 26. toukokuuta 2016 13:59 Vastaanottaja: Sailfish OS Developers

Re: [SailfishDevel] Help for Syncthing App

2016-03-14 Thread Kimmo Lindholm
You can also detect device type runtime. https://github.com/kimmoli/chargemon/blob/master/src/cmon.cpp#L64 -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Michael Fuchs Sent: 14. maaliskuuta 2016 18:19 To:

Re: [SailfishDevel] overlapping ComboBoxes

2016-02-24 Thread Kimmo Lindholm
Check your { } … this comment is not true } // end of first combo box: interval -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of mariusz sapinski Sent: 24. helmikuuta 2016 11:45 To: devel@lists.sailfishos.org Subject:

Re: [SailfishDevel] Select multiple values in combobox

2016-02-22 Thread Kimmo Lindholm
Something like this? http://kimmoli.com/tauhkaa/2016035612.png Dialog https://github.com/kimmoli/maira/blob/master/qml/components/MultiItemPicker.qml is called from this https://github.com/kimmoli/maira/blob/master/qml/fields/MultiSelectField.qml ListModel items contains stuff that is

Re: [SailfishDevel] Beginning Sailfish programming?

2016-01-28 Thread Kimmo Lindholm
1. Install SDk https://sailfishos.org/develop/sdk-overview/develop-installation-article/ 2. Read some tutorials https://sailfishos.org/develop/tutorials/ 3. Check api docs, specially Silica https://sailfishos.org/develop/docs/ 4. Read Harbour FAQ https://harbour.jolla.com/faq 5. Code 6. Join us

Re: [SailfishDevel] Usage data via Github Pages?

2016-01-20 Thread Kimmo Lindholm
Ask from github support? > -Original Message- > From: devel-boun...@lists.sailfishos.org [mailto:devel- > boun...@lists.sailfishos.org] On Behalf Of jollail...@gmail.com > Sent: 20. tammikuuta 2016 16:05 > To: devel@lists.sailfishos.org > Subject: [SailfishDevel] Usage data via Github

Re: [SailfishDevel] XmlListModel can't fetch data from a local .xml file

2015-12-11 Thread Kimmo Lindholm
Try one more: source: Qt.resolvedUrl("xml/asemat.xml") And to debug, add this: Component.onCompleted: { console.log(source.toString()) } -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of

Re: [SailfishDevel] How to make noarch packages?

2015-12-05 Thread Kimmo Lindholm
So I assume you want to make a pure QML application, without executable, not just install files around? This is something I have wanted to do also ages ago, so here is another really simple example... https://github.com/kimmoli/test5-app You can deploy this as RPM with either arm or i486

Re: [SailfishDevel] How to make noarch packages?

2015-12-04 Thread Kimmo Lindholm
With SDK? Add TEMPLATE = aux to .pro add BuildArch: noarch in spec ref https://github.com/kimmoli/test5 -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of jollail...@gmail.com Sent: 4. joulukuuta 2015 18:26

Re: [SailfishDevel] Installing files in user directory

2015-11-13 Thread Kimmo Lindholm
You could copy/create it from your app to /home/nemo/.config/harbour-nettiradio folder on first application start. e.g. Fingerterm (and tohkbd2) uses this approach. -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf

Re: [SailfishDevel] Drawing ShaderEffect to Canvas

2015-10-26 Thread Kimmo Lindholm
rom: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Kimmo Lindholm Sent: 26. lokakuuta 2015 8:55 To: devel@lists.sailfishos.org Subject: [SailfishDevel] Drawing ShaderEffect to Canvas Hi, This relates to my Paint app. Doing tools to modify image, b

[SailfishDevel] Drawing ShaderEffect to Canvas

2015-10-26 Thread Kimmo Lindholm
Hi, This relates to my Paint app. Doing tools to modify image, blur, invert, colorchannel swap etc. from area under your finger, like realtime brush. Doing the bitmanipulation with javascript in canvas-onPaint works but even simple things like invert are utterly slow. Then I decided to give

Re: [SailfishDevel] Drawing ShaderEffect to Canvas

2015-10-26 Thread Kimmo Lindholm
> Yeah grabToImage() is pretty costly due to the pixel readback. What you want > is to draw your ShaderEffect into a texture and then draw that texture > directly > onto the canvas without going through the pixel readback / CPU memory code > path that grabToImage would imply. Not sure how

Re: [SailfishDevel] SailfishOS SDK 1510 and launcher icon for tablet version

2015-10-21 Thread Kimmo Lindholm
FYI: As reference design, which has passed harbour QA, providing all possible icon sizes https://github.com/kimmoli/paint/commit/8887370a0761673329ae73bd6179e65cca666c53 -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On

Re: [SailfishDevel] Detecting larger screen size of the Jolla tablet

2015-10-19 Thread Kimmo Lindholm
afaik emulator does not do all things correctly for the tablet, but https://sailfishos.org/develop/docs/silica/qml-sailfishsilica-sailfish-silica-sailfish-silica-screen.html/ -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of tisno.de

Re: [SailfishDevel] qmlRegisterSingletonType not allowed in Harbour?

2015-10-07 Thread Kimmo Lindholm
https://harbour.jolla.com/faq#1.5.0 Own imports must be harbour-app-named. -kimmo Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] käyttäjän Alexander Ladygin [fake...@gmail.com] puolesta Lähetetty: 8. lokakuuta 2015 05:16

Re: [SailfishDevel] Harbour is now open for Tablet applications

2015-09-24 Thread Kimmo Lindholm
Just noted that rpm versions needs to be identical for both, armv7hl and i486 arch binaries. e.g. harbour-heebo-0.3.2-10.1.armv7hl.rpm and harbour-heebo-0.3.2-10.2.i486.rpm will fail to upload in harbour. -kimmo > -Original Message- > From: devel-boun...@lists.sailfishos.org

Re: [SailfishDevel] Can't use QDeviceInfo

2015-09-16 Thread Kimmo Lindholm
do you have such in your .pro CONFIG += link_pkgconfig PKGCONFIG += Qt5SystemInfo ? -kimmo Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] kyttjn tw_bolek [tw_bo...@op.pl] puolesta Lähetetty: 16. syyskuuta 2015 23:41

Re: [SailfishDevel] Can't use QDeviceInfo

2015-09-16 Thread Kimmo Lindholm
add sailfishapp also to the PKGCONFIG Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] kyttjn tw_bolek [tw_bo...@op.pl] puolesta Lähetetty: 16. syyskuuta 2015 23:55 Vastaanottaja: devel@lists.sailfishos.org Aihe:

Re: [SailfishDevel] Accessing Jolla GPIO without root

2015-09-05 Thread Kimmo Lindholm
Hi, VDD you can control as nemo. For INT pin you need to export the GPIO as root, then you can read it as nemo (IIRC) https://github.com/kimmoli/i2ctool/blob/master/src/i2cif.cpp#L45 https://github.com/kimmoli/tohkbd2/blob/master/daemon/src/toh.cpp#L75 i also started writing daemon for the

Re: [SailfishDevel] Dialog doesn't register taps

2015-06-10 Thread Kimmo Lindholm
my 5 cents... SilicaFlickable had no width and no contentHeight, that’s why it propably didn’t work. top-anchors don’t work inside a column. images with img inside label text ? put DialogHeader inside flickable (AFAIU) and anchor column to its bottom.

Re: [SailfishDevel] PullDownMenu in a Dialog?

2015-06-10 Thread Kimmo Lindholm
Similar things as earlier. Don't give y to Pulldownmenu, breaks. Dialogheader not in Dialog, but in child. https://gist.github.com/kimmoli/626c838174682c1f6f20 This uses SilicaFlickable as first child of dialog. -kimmo Thomas Tanghus kirjoitti to kesäkuuta 11 05:14:07 2015 GMT+0300: Hi I

Re: [SailfishDevel] What's the correct way to do this?

2015-06-06 Thread Kimmo Lindholm
https://github.com/tonercloud/fuelpad/blob/master/harbour-fuelpad/qml/pages/FuelpadPage.qml#L88 pass carmodel.get(index) to the function? (or carListview.model.get(index) ) instead of model -kimmo Lähettäjä: devel-boun...@lists.sailfishos.org

Re: [SailfishDevel] QtFeedback 5.0 not allowed? Really?

2015-04-29 Thread Kimmo Lindholm
And it fails totally. Not fun. So no vibration then, how can this basic stuff not be accepted? // Peter Pykäläinen On 1 December 2014 at 22:57, Kimmo Lindholm kimmo.lindh...@eke.fi wrote: Run the pre-validation tool from SDK, if you get green there, it’s much closer to approval

Re: [SailfishDevel] SSH listen address

2015-04-19 Thread Kimmo Lindholm
I'm also not worried on mobile side, but more on allowing ssh in while visiting random wlan networks. If the wlan network configuration had something like home network and public network, and ssh logins allowed only on home network ? I remember also seeing an app for allowing ssh in only after

Re: [SailfishDevel] App won't start

2015-03-15 Thread Kimmo Lindholm
this works as nemo systemctl --user restart lipstick and this as root systemctl-user restart lipstick -kimmo Thanks. I had to run that as root to make it work. ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to

Re: [SailfishDevel] How to show the Connection Dialog ?

2015-02-23 Thread Kimmo Lindholm
at least over dbus with e.g. dbus-send --type=method_call --print-reply --dest=com.jolla.lipstick.ConnectionSelector / com.jolla.lipstick.ConnectionSelectorIf.openConnection string:wlan From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Luis

Re: [SailfishDevel] Possible to trigger email app with attachment

2015-02-06 Thread Kimmo Lindholm
launch email app from QML Qt.openUrlExternally(mailto: h...@hippa.com + ?subject=Bug report + body=Write here what is wrong...) Have no experience is this allowed in Harbour? -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-

Re: [SailfishDevel] Harbour and QML import

2015-01-19 Thread Kimmo Lindholm
..and use rpm pre-validation tool in SDK tools, either through QtCreator (left toolbar SailfishOs (or Ctrl-5)), or accessing them with external browser at address http://127.0.0.1:8080 -kimmo just rename your extension import to harbour.it.mupp.core and read https://harbour.jolla.com/faq

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-01-16 Thread Kimmo Lindholm
Credits belong to Stefano, https://twitter.com/zzste/status/556158724847726593 On 16.01.2015 15:03, Soumya Bijjal wrote: * prototyping excrypted filesystem meant to write encrypted ofcourse, thanks Kimmo for drawing my attention to it :) -Soumya

Re: [SailfishDevel] Sailfish IDE hangs

2015-01-15 Thread Kimmo Lindholm
Had similar non-responsive issues (on win7 x64), but without doing anything, just being patient, hangs did stop happening after a few hours. So far so good. Heard that others have had similar issues too. I didn’t found any specific reason for this. -kimmo From:

Re: [SailfishDevel] Build with sailfish latest on mer-obs fails, QVariant, double (?)

2015-01-11 Thread Kimmo Lindholm
...lesson learned :) This is why #defines are a terrible idea when there are alternatives. First, the pi number is already defined as M_PI in math.h. Second, if you have to do that, and specify constants, use a const double foo = The compile errors (if any) will be much more meaningful.

Re: [SailfishDevel] Build with sailfish latest on mer-obs fails, QVariant, double (?)

2015-01-08 Thread Kimmo Lindholm
correctly. -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Kimmo Lindholm Sent: 8. tammikuuta 2015 11:20 To: devel@lists.sailfishos.org Subject: [SailfishDevel] Build with sailfish latest on mer-obs fails, QVariant, double (?) My

Re: [SailfishDevel] No RPM built ?

2014-12-03 Thread Kimmo Lindholm
Don't know how you do it, but I use 'deploy project' from the Build menu (not from the left-bottom-corner toolbar) and it works for me. And iirc my settings are defaults; https://app.younited.com/?shareObject=3ca32a4b-94b7-1352-31d5-712020ff2c2f The rpm appears in

Re: [SailfishDevel] No RPM built ?

2014-12-02 Thread Kimmo Lindholm
Hi, https://gitorious.org/mkpokerplanning/mkpokerplanning/ ? Try to close project, delete .pro.user, delete build- dir, reopen project, Reconfigure it. then hit deploy. deployed for me (after adding / after %{_datadir} in yaml) - '%{_datadir}/harbour-mkpokerplanning' -

Re: [SailfishDevel] GPLv3 warning

2014-12-02 Thread Kimmo Lindholm
Just for that your yaml says: License: GPLv3 Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] k#228;ytt#228;j#228;n i...@heubergen.me [i...@heubergen.me] puolesta Lähetetty: 2. joulukuuta 2014 21:15 Vastaanottaja:

Re: [SailfishDevel] QtFeedback 5.0 not allowed? Really?

2014-12-01 Thread Kimmo Lindholm
Run the pre-validation tool from SDK, if you get green there, it’s much closer to approval… (I prefer accessing it through browser, http://127.0.0.1:8080/C/harbour_tools/ ) -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Peter

Re: [SailfishDevel] This is a test email

2014-11-22 Thread Kimmo Lindholm
Hmm, I can't see any mails sent by Chris Sparks to the list , only replies to those. -Original Message- El Saturday 22 November 2014, Chris Sparks escribió: My email tool only has compose, reply and reply-all. So my choices are limited. Yes, that's the point. When you compose a

Re: [SailfishDevel] Please update tzdata on Sailfish

2014-10-26 Thread Kimmo Lindholm
Isn’t that h-version already outdated ? (5 days ago) http://www.iana.org/time-zones From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Andrea Bernabei Sent: Sunday, October 26, 2014 5:13 PM To: Sailfish OS Developers Subject: Re: [SailfishDevel]

Re: [SailfishDevel] Call events

2014-10-08 Thread Kimmo Lindholm
Hi, I use following dbus approach; com.nokia.mce, /com/nokia/mce/signal, com.nokia.mce.signal, sig_call_state_ind Looking for strings ringing, active, none with small state-machine. When someone calls to the phone, ringing - answered active - not answered/hangup none Making a outgoing call

Re: [SailfishDevel] Upcoming behavioural change with how graphics resources are handled.

2014-09-29 Thread Kimmo Lindholm
that other method too. -kimmo On 29 Sep 2014, at 16:43, Mohammed Hassan mohammed.has...@jolla.com wrote: On Sat, 27 Sep 2014 16:28:42 + Kimmo Lindholm kimmo.lindh...@eke.fi wrote: Hi, Just wanted to give a follow-up on this topic; You are affected if you are drawing on Canvas

Re: [SailfishDevel] Upcoming behavioural change with how graphics resources are handled.

2014-09-27 Thread Kimmo Lindholm
Hi, Just wanted to give a follow-up on this topic; You are affected if you are drawing on Canvas (and don't want to repaint it completely when returning to application) Symptom is that canvas gets cleared when going away from application (minimizing it to cover) The simplest way to not allow

[SailfishDevel] QAudioDecoder support

2014-08-16 Thread Kimmo Lindholm
FYI, my question in Together https://together.jolla.com/question/53560/qaudiodecoder-support-missing/ -kimmo ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Re: [SailfishDevel] app crashed when using Canvas in Dialog page

2014-08-13 Thread Kimmo Lindholm
Do you have virtual keyboard visible when closing dialog? https://together.jolla.com/question/44780/closing-dialog-with-vkb-active-breaks-canvas-on-returning-page/ -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Samuli Silvius Sent:

[SailfishDevel] After building app with latest SDK, gives dconf-critical

2014-08-09 Thread Kimmo Lindholm
Hi, I just started to make some improvements to my paint app, and since last build I have updated SDK. No changes made to the source, SDK builds and deploys without problems. But when app is launched on phone, I get lots of following errors: (process:23185): dconf-CRITICAL **: unable to

Re: [SailfishDevel] After building app with latest SDK, gives dconf-critical

2014-08-09 Thread Kimmo Lindholm
-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Kimmo Lindholm Sent: Saturday, August 09, 2014 11:46 AM To: devel@lists.sailfishos.org Subject: [SailfishDevel] After building app with latest SDK, gives dconf-critical Hi, I just started to make some improvements

Re: [SailfishDevel] Access Device and User Information

2014-07-26 Thread Kimmo Lindholm
As a workaround, IMEI seems to be available from sysfs: /sys/devices/system/soc/soc0/imei Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] k#228;ytt#228;j#228;n Andreas Heil [i...@aheil.de] puolesta Lähetetty: 26.

Re: [SailfishDevel] Adding colors the ColorPickerDialog

2014-07-19 Thread Kimmo Lindholm
TJC has answer for this: https://together.jolla.com/question/18240/more-colors-in-silica-color-picker/ -kimmo From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Marcin M. Sent: 19. heinäkuuta 2014 21:43 To: devel@lists.sailfishos.org Subject:

Re: [SailfishDevel] Installing powertop failed - Failed to obtain authentification

2014-07-17 Thread Kimmo Lindholm
Fatal error: Failed to obtain authentification In 1.0.8.19 you need to use pkcon as root (devel-su) From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Steffen Förster Sent: 16. heinäkuuta 2014 21:27 To: devel@lists.sailfishos.org Subject:

[SailfishDevel] Sailfish OS SDK July update - VirtualBox 4.3.14 for Windows broken

2014-07-16 Thread Kimmo Lindholm
FYI When installing SDK, I updated also the VirtualBox to latest version, which was not so good decision... Seems that VirtualBox 4.3.14 for Windows is broken. Use 4.3.12 with SDK (or some other version) Some more here: https://forums.virtualbox.org/viewtopic.php?f=6t=62597 - at least I got

Re: [SailfishDevel] Sailfish OS SDK July update - VirtualBox 4.3.14 for Windows broken

2014-07-16 Thread Kimmo Lindholm
2014 15:31 To: devel@lists.sailfishos.org Subject: Re: [SailfishDevel] Sailfish OS SDK July update - VirtualBox 4.3.14 for Windows broken 404 by your link 16.07.2014 18:29, Kimmo Lindholm пишет: FYI When installing SDK, I updated also the VirtualBox to latest version, which was not so good

[SailfishDevel] IconButtin and highlight with own icons

2014-05-31 Thread Kimmo Lindholm
Hi, I'm using IconButton component as the highlight is just what I would like to use to show that corresponding function is active. But I can't use it with my own icons. They need to me from image://theme to work, or am I doing something wrong here? This works nicely with stock-icons, e.g.

Re: [SailfishDevel] was Acceptable Behaviour.. -- Forum

2014-05-26 Thread Kimmo Lindholm
To take TJC in use, atleast we need to agree a specific tag to be used; (atm seems that there are few in use: app-development, development, silica, qml, ...) And then subscribe that tag, you got them all in your mail. -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org

Re: [SailfishDevel] was Acceptable Behaviour.. -- Forum

2014-05-26 Thread Kimmo Lindholm
Testing TJC with development issues; https://together.jolla.com/question/43768/dialogconnect-function-loses-its-parent/ -kimmo -Original Message- From: devel-boun...@lists.sailfishos.org [mailto:devel-boun...@lists.sailfishos.org] On Behalf Of Denis Zalevskiy Sent: 26. toukokuuta

Re: [SailfishDevel] Farewell to Jolla community!

2014-05-24 Thread Kimmo Lindholm
OK, NOW YOU GET THIS PERSONAL BY MENTIONING FINNS. GET A SNICKERS FILIP REALLY ! AS A FINN, I WILL SAY THAT TODAY I HAVE MORE HOPE AND TRUST ON JOLLA THAN EVER. WE ARE ALWAYS REALLY PROUD OF WHAT WE DO, EVEN WHEN DOING SHIT - LITERALLY. AS A COMMUNITY MEMBER, I WILL SAY ONLY THIS - THANK YOU FOR

[SailfishDevel] DatePickerDialog and locale

2014-05-24 Thread Kimmo Lindholm
(No actual question here but my observations) Just noticed that depending how i start my application on the phone, DatePickerDialog returns different values. If started from ssh session, dateText returns 24 May 2014 If started from launcher icon (as normally user would do) or from fingerterm,

Re: [SailfishDevel] was Acceptable Behaviour.. -- Forum

2014-05-24 Thread Kimmo Lindholm
I give my vote for Gone Fishing QA site hmm http://stackoverflow.com/questions/tagged/sailfish-os Now since a forum is suggested, I cannot resist to propose my favourite way of finding and sharing developer experience: a QA site (think Stack Overflow). Even if there is together.jolla.com, I

[SailfishDevel] Technical question: populating ListModel from C++

2014-05-23 Thread Kimmo Lindholm
Hi All, What would be the best method to populate ListModel in QML from the C++ side? I have sqlite database, which contents I would like to put on ListView. List is changed only by user when deleting or adding entry, upon this action I would like to update sqlite and then refresh listmodel.

Re: [SailfishDevel] Technical question: populating ListModel from C++

2014-05-23 Thread Kimmo Lindholm
Hi,, Thank you Janne and Jarko, I will take a look on both of these approaches; use the QSqlQueryModel in your c++ and expose that to QML ; just like in : http://qt-project.org/wiki/How_to_use_a_QSqlQueryModel_in_QML subclassing QAbstractItemModel. See

Re: [SailfishDevel] Screenshots in silica reference

2014-05-23 Thread Kimmo Lindholm
@lists.sailfishos.org Subject: Re: [SailfishDevel] Screenshots in silica reference On 23.05.2014 08:21, Kimmo Lindholm wrote: Hi, I so would like to see screenshots in silica reference. Like there is on common pitfails -page. -kimmo I'll use this as an opportunity to mention that the Components

Re: [SailfishDevel] Technical question: populating ListModel from C++

2014-05-23 Thread Kimmo Lindholm
- these are my first baby steps in QT and Sailfish. ;) Regards, Markus 23 maj 2014 kl. 08:52 skrev Kimmo Lindholm kimmo.lindh...@eke.fimailto:kimmo.lindh...@eke.fi: Hi,, Thank you Janne and Jarko, I will take a look on both of these approaches; use the QSqlQueryModel in your c++ and expose

[SailfishDevel] Screenshots in silica reference

2014-05-22 Thread Kimmo Lindholm
Hi, I so would like to see screenshots in silica reference. Like there is on common pitfails -page. -kimmo -- Lähetetty Jollastani ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Re: [SailfishDevel] Undocumented Silica components

2014-05-21 Thread Kimmo Lindholm
Yep, it seems to work according to samples in componentgallery project. -Original Message- I am using GlassItem in Framrekkari and that is in official Jolla store. So it seems to be allowed. :) Best greetings Buschmann Am Sonntag, 18. Mai 2014, 07:33:13 schrieb Kimmo Lindholm

[SailfishDevel] uinput with maliit at sailfishapps

2014-02-24 Thread Kimmo Lindholm
Or something like that (Running this on Jolla (1.0.3.8) and it is related to the qwerty toh keyboard) I use uinput to send key events (EV_KEY) - these works ok, but when I send e.g. KEY_LEFTSHIFT or KEY_CAPSLOCK, a ? character appears as prefix to the actual character. e.g. sending KEY_A --

Re: [SailfishDevel] uinput with maliit at sailfishapps

2014-02-24 Thread Kimmo Lindholm
. Thats 9000% better than hacking :) On 25.02.2014 03:43, Kimmo Lindholm wrote: Or something like that (Running this on Jolla (1.0.3.8) and it is related to the qwerty toh keyboard) I use uinput to send key events (EV_KEY) - these works ok, but when I send e.g. KEY_LEFTSHIFT or KEY_CAPSLOCK

[SailfishDevel] dbus-sessionbus connection fails

2014-02-01 Thread Kimmo Lindholm
Hi, I'm using QtDBus in my daemon (systemd service), and I can register my own service on systemBus, and also can connect to systembus signals. When starting executable from command line it runs ok and connects also to the sessionbus signals successfully. but when it is started via systemctl

Re: [SailfishDevel] How to automatically start a daemon with systemd

2014-01-24 Thread Kimmo Lindholm
I have put my .service file under systemd/system –folder and used systemctl enable (not -user) and it starts successfully at boot. I start it without invoker (ExecStart directly calls the executable) (But I need root access for the daemon) From: devel-boun...@lists.sailfishos.org

[SailfishDevel] Help/guidance request - camera viewfinder with qml overlay

2014-01-23 Thread Kimmo Lindholm
...For TOH Thermal viewer application. Going to use a panasonic Grid-eye 8x8 infrared sensor (1), attach it to 'TOH' and get the thermal data to the application. Now i need just example how to get camera viewfinder on the screen and on top of which i can draw overlay with QML. Result could

Re: [SailfishDevel] mersdk and kernel-devel

2014-01-11 Thread Kimmo Lindholm
] On Behalf Of Kimmo Lindholm Sent: Friday, January 10, 2014 11:47 PM To: Sailfish OS Developers Subject: Re: [SailfishDevel] mersdk and kernel-devel It took couple of hours to figure everything out but finally it looks promising... [SB2 sdk-build SailfishOS-armv7hl] I have no name!@SailfishSDK 62

[SailfishDevel] mersdk and kernel-devel

2014-01-10 Thread Kimmo Lindholm
ahoy, How can i install kernel-devel to mersdk for compiling modules for SailfishOs-armv7hl ? Can't find module.h -kimmo ___ SailfishOS.org Devel mailing list

Re: [SailfishDevel] mersdk and kernel-devel

2014-01-10 Thread Kimmo Lindholm
...@lists.sailfishos.org] on behalf of Kimmo Lindholm [kimmo.lindh...@eke.fi] Sent: Friday, January 10, 2014 4:58 PM To: devel@lists.sailfishos.org Subject: [SailfishDevel] mersdk and kernel-devel ahoy, How can i install kernel-devel to mersdk for compiling modules for SailfishOs-armv7hl ? Can't find

Re: [SailfishDevel] D-Bus viewer touch

2014-01-09 Thread Kimmo Lindholm
Hi, Thanks! Just been looking for something like this. .kimmo Lähettäjä: devel-boun...@lists.sailfishos.org [devel-boun...@lists.sailfishos.org] k#228;ytt#228;j#228;n Alejandro Exojo [s...@badopi.org] puolesta Lähetetty: 9. tammikuuta 2014 22:12

Re: [SailfishDevel] Accessing Saifish theme from javascript

2014-01-04 Thread Kimmo Lindholm
) So back where started... .import Sailfish.Silica.theme var color_info = Theme.primaryColor On 04.01.2014 17:14, Kimmo Lindholm wrote: Tested, didn't work - same results .import Sailfish.Silica.Theme 1.0 as SilicaTheme var color_info = SilicaTheme.primaryColor; import Sailfish.Silica.theme 1.0

Re: [SailfishDevel] Accessing Saifish theme from javascript

2014-01-04 Thread Kimmo Lindholm
or properties directly, I'll crawl back to the hole now. Thanks for your efforts. .import Sailfish.Silica.theme 1.0 as SilicaTheme function test() { console.log(color: + SilicaTheme.Theme.primaryColor) } // color: #ff On 04.01.2014 17:47, Kimmo Lindholm wrote: Gives following from .import

[SailfishDevel] SmoothedAnimation and Segmentation Fault

2014-01-03 Thread Kimmo Lindholm
Hi, I'm having issues with SmoothedAnimation giving Segmentation Fault sometimes. Googling shows that I'm not alone, but could not find any recorded workarounds I changed it to NumberAnimation and no segv anymore... Should this be reported somewhere? or waht? -kimmo

Re: [SailfishDevel] No consistency across screens

2013-12-30 Thread Kimmo Lindholm
I have used Jolla now for over a month, and I have to say that for first days I missed the battery level etc things, but not anymore. I like where they are, I know how I can peek them. I haven't drained the battery so low that I could see does the indicator led start to blink when low battery

Re: [SailfishDevel] No consistency across screens

2013-12-30 Thread Kimmo Lindholm
, December 30, 2013 10:22 PM To: devel@lists.sailfishos.org Subject: Re: [SailfishDevel] No consistency across screens On Mon, 30 Dec 2013 18:13:23 + Kimmo Lindholm kimmo.lindh...@eke.fi wrote: I have used Jolla now for over a month, and I have to say that for first days I missed the battery level

Re: [SailfishDevel] Jolla owner - day 1

2013-12-28 Thread Kimmo Lindholm
app showing names is doing something wrong. And then, i have one contact in google and in exchange with the same name. Exchange has phone number, but i can't see it in the phone - i can see only google email. -kimmo Lähettäjä: Kimmo Lindholm Lähetetty

Re: [SailfishDevel] How to handle app settings?

2013-12-28 Thread Kimmo Lindholm
I did it like this with QSettings, it works. I don't know is it the correct way... (comments anyone?) introduce me in main() QCoreApplication::setOrganizationDomain(diibadaaba); QCoreApplication::setOrganizationName(diibadaaba ); QCoreApplication::setApplicationName(badbreath);

Re: [SailfishDevel] [Update] Changelog for SailfishOS update 2 (1.0.2.5)

2013-12-27 Thread Kimmo Lindholm
And store is completely stuck I can see 8 updates to jolla-* apps, but it gives error if trying to install. For some reason i first see app updates in store, but not yet the system update. Is this intention or a bug in update distribution system? Aren't the app's updated anyway when the

Re: [SailfishDevel] The Other Half I2C

2013-12-27 Thread Kimmo Lindholm
] käyttäjän Kimmo Lindholm [kimmo.lindh...@eke.fi] puolesta Lähetetty: 23. joulukuuta 2013 18:20 Vastaanottaja: Sailfish OS Developers Aihe: Re: [SailfishDevel] The Other Half I2C Then I have to just sit and wait. Or is there any magic that I can store to the eeprom to keep it active? -kimmo From

  1   2   >