[SailfishDevel] Sailfish/Python Development wiki updated & MatPlotLib, etc

2014-06-10 Thread Roberto Colistete Jr.
Hi, Some news about Python on Sailfish : - the Sailfish/Python Development wiki page was updated listing Python 2.7 & 3 modules : https://wiki.merproject.org/wiki/Sailfish/Python_Development - MatPlotLib released on Sailfish, with v1.3.1 with Agg backend (default) and WebAgg backend (i

Re: [SailfishDevel] Python in Jolla Harbour and repositories ?

2014-06-10 Thread Roberto Colistete Jr.
Em 23-05-2014 05:25, Thomas Perl escreveu: The wiki Sailfish/Python Development : https://wiki.merproject.org/wiki/Sailfish/Python_Development is updated, listing 14 Python applications released for Sailfish, available at OpenRepos.net. It would be nice to also have them on Jolla Harbour.

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Joona Petrell
Hi Luca, We haven't yet started versioning Silica APIs (though we probably should soon), sorry, but you can check if quickScroll property on your flickable has been defined (myFlickable.quickScroll === undefined) to check if the quick scroll functionality is available. Cheers, Joona

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Luca Donaggio
Thanks Jonni! On Tue, Jun 10, 2014 at 4:33 PM, Jonni Nakari wrote: > On 10.06.2014 17:30, Luca Donaggio wrote: > >> This way I can avoid cluttering my app UI with elements which basically >> duplicate the same functionality: >> > CODeRUS and veskuh recently added something like this to Tweetian

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Luca Donaggio
Thanks Andrey, that's what I was looking for! On Tue, Jun 10, 2014 at 4:32 PM, Andrey Kozhevnikov wrote: > check > https://github.com/veskuh/Tweetian/commit/3d50e172455cf94f2dd8064f7078ff94fc430f9d > > > 10.06.2014 20:30, Luca Donaggio пишет: > >Hi all, > > recent update (1.0.7.16) added

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Jonni Nakari
On 10.06.2014 17:30, Luca Donaggio wrote: This way I can avoid cluttering my app UI with elements which basically duplicate the same functionality: CODeRUS and veskuh recently added something like this to Tweetian, see: https://github.com/CODeRUS/Tweetian/commit/3d50e172455cf94f2dd8064f7078ff94

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Andrey Kozhevnikov
check https://github.com/veskuh/Tweetian/commit/3d50e172455cf94f2dd8064f7078ff94fc430f9d 10.06.2014 20:30, Luca Donaggio ?: Hi all, recent update (1.0.7.16) added fast scrolling to Silica flickable QML components (like SilicaListView). Before, for long lists I added a pull up menu with an

Re: [SailfishDevel] Detecting OS version

2014-06-10 Thread Andrey Kozhevnikov
10.06.2014 20:30, Luca Donaggio ?: Hi all, recent update (1.0.7.16) added fast scrolling to Silica flickable QML components (like SilicaListView). Before, for long lists I added a pull up menu with an option to fast-scroll back to the top, others (Together app for example) used a custom

[SailfishDevel] Detecting OS version

2014-06-10 Thread Luca Donaggio
Hi all, recent update (1.0.7.16) added fast scrolling to Silica flickable QML components (like SilicaListView). Before, for long lists I added a pull up menu with an option to fast-scroll back to the top, others (Together app for example) used a custom scroll decorator with the same functionality.