Re: [SailfishDevel] Android QA proccess

2014-01-14 Thread Maciej Jaros

Iekku Pylkka (2014-01-14 09:32):

Hi,

Thank you for valid feedback. We have had resource problems to perform Android 
apps QA during vacation and get it up and running after vacations. Hopefully we 
are soon back on full speed. Thank you for your patience. See my replies above 
:)


Thank you, for your replies. I appreciate it.


Br,
Iekku Pylkkä

[...]

I understand that there is a lot going on, but I'm waiting more then 10 days
now and just now I had to release another version. Does this restart the clock
somehow or what? Will I be moved to the end of the line?

[Iekku Pylkka] I can try to keep your position in queue at previous place, but 
can't promise anything for sure. Please send me information about your app.


My latest update was just an URL change in the code so I would be 
gratefull if this wouldn't postpone the realease even further. The app 
name is PP tracker. It has a public repo on Github so you can see code 
changes there. Repo URL is provided in the app details.


Cheers,
Nux.

___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Mjpeg support in webview

2014-01-14 Thread Coley
When I try QtMultimedia to playback the stream as suggested it fails.
I get an error - The QMediaPlayer object does not have a valid service
I'm guessing I need to install some plugin, but what one should I install?

Thanks,
-Coley.

On 13 January 2014 16:54, Coley  wrote:
> OK, will investigate the alternate suggested.
> Thanks.
> -Coley.
>
>
> On 13 January 2014 15:33, Vesa-Matti Hartikainen
>  wrote:
>>
>> Hi,
>>
>>  We have not configured Mozilla engine for 3rd party use (there are issues
>> like only one profile, etc.), and that is why using it is not a good idea,
>> and the app would not be accepted to store.
>>
>> Perhaps you could try to use QtMultimedia to playback the stream?
>> http://qt-project.org/doc/qt-5.1/qtmultimedia/qml-qtmultimedia5-video.html
>>
>> BR,
>>  Vesku
>>
>>
>>
>>
>>
>> On 01/13/2014 03:50 PM, Coley wrote:
>>
>> Hi,
>> I'm trying to display an Mjpeg stream in a little app I'm creating using
>> QML.
>> Initially I tried SilicaWebView but this fails to display the image.
>>
>> The image can be displayed fine using the native browser, so I tried to
>> use qtmozembed pkg but I don't know what to import into my project.
>> I've added
>> import Qt5Mozilla 1.0
>> but this doesn't seem to be valid.
>>
>> I've installed qtmozembed-qt5 on the SDK and it is already present on
>> device, and the appropriate -devel pkg on the SDK.
>>
>> Is there any variable I need to add to the CONFIG var in my .pro file?
>>
>> Thanks,
>> -Coley.
>>
>>
>>
>>
>>
>> ___
>> SailfishOS.org Devel mailing list
>>
>>
>>
>> --
>> Vesa-Matti Hartikainen
>> Jolla Oy
>> http://jolla.com
>> p. +358 50 487 6067
>>
>>
>> ___
>> SailfishOS.org Devel mailing list
>
>
___
SailfishOS.org Devel mailing list


[SailfishDevel] MerSDK VM - "src" folder change (under Windows) not possible

2014-01-14 Thread Simon Bolek
hi,
I have a difficulty in changing src shared folder for VM MerSDK in
QtCreator. It seems impossible right now.
Working on windows 7 with the latest SailfishOS installed.

While installing I set, stupid me, Project Folder to:
C:/path1/path1;C:/path2/path2
thinking QtCreator would understand both. After that started a project and
noticed that QtCreator  does not accept that.

Under
Tools->Options->Mer: MerSDK-"Shared Folders"-"src"
I see
"C:/path1/path1;C:/path2/path2"
Also in QtCreator in my particular App under Projects I see System
Environment variable
MER_SSH_SHARED_SRC = C:/path1/path1;C:/path2/path2.

So far so good.
Me thinking change settings -> all is well.
However the following changes did not change anything.

1) in the MerSDK VM under Shared Folders changed:
src1 to C:/path1/path1 or
tried with src, src2 etc.

2) in
C:\PATH_TO\SailfishOS\share\qtcreator\SailfishAlpha3\qtcreator\mersdk.xml
changed SharedSrc to C:/path1/path1 or C:\path1\path1

3) tried to override MER_SSH_SHARED_SRC in the particular project with only
C:/path1/path1 or C:\path1\path1

Nothing helps :( Every time i remove Mer SDK under Options and add it,
first QtCreator sees only the one correct folder C:\path1\path1 , but after
Apply and invoking Options again it shows me
C:/path1/path1;C:/path2/path2.

I also searched in the filesystem C:\ for all files containing string:
C:/path1/path1;C:/path2/path2
or only
C:/path2/path2
there is nothing left in any .ini, .txt, .vbox etc. files.

Any hints? What am I possibly doing wrong. I am not able to compile any
project, as it gets me the error: Project is outside of mer shared src
"C:/path1/path1;C:/path2/path2"

The only way I see, how to work around this, is to delete and install
sailfishos again :(

br
simon:-)
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] How to translate (lupdate) ?

2014-01-14 Thread Thomas Tanghus
On Monday 13 January 2014 16:28 Timur Kristóf wrote:
> Not sure what you mean by "already performs all the checks you do" - it
> doesn't check LANG, nor does it check QLocale::system().name()

It does check LANG. That's how I test the translations:

$ LANG=da_DK harbour-myapp
 
> On Mon, Jan 13, 2014 at 1:21 PM, Thomas Tanghus  wrote:
> > On Monday 13 January 2014 12:52 Timur Kristóf wrote:
> > > Here is how I do it:
> > > 
> > > 1. Check the LANG environment variable
> > > 2. Check QLocale::system().name()
> > > 
> > > Take a look at the code here:
> > > https://github.com/Venemo/puzzle-master/blob/master/helpers/util.cpp#L24
> > 
> > QTranslator::load()[1] already performs all the checks you do, so is there
> > really a need to do more than this?
> > 
> > QTranslator* translator = new QTranslator;
> > QString locale = QLocale::system().name();
> > if(!translator->load(SailfishApp::pathTo("translations").toLocalFile()
> > 
> > + "/" + locale + ".qm")) {
> > 
> > qDebug() << "Couldn't load translation";
> > 
> > }
> > 
> > [1] http://qt-project.org/doc/qt-5.0/qtcore/qtranslator.html#load

-- 
Med venlig hilsen / Best Regards

Thomas Tanghus
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] QML Timer stops running

2014-01-14 Thread Thomas Tanghus
On Tuesday 14 January 2014 13:05 Graham Cobb wrote:
> On 14/01/14 01:14, Thomas Tanghus wrote:
> > On Tuesday 14 January 2014 01:53 Ove Kåven wrote:
> >> No matter what OS or platform you're on, counting the number of times
> >> your timer callback is called is *never* a good idea, even on desktop
> >> PCs. Timer callbacks can be skipped for any number of reasons (heavy
> >> system load, laptop suspend, etc).
> 
> > Good point. That will also at least work around the issue when in
> > "pre-deep- sleep".
> 
> I agree with Ove (that is how every timer function I have ever worked on
> works, from interrupt handlers in embedded system kernels through to the
> GPE Calendar app) -- repeating timers are a convenience, but are never
> treated as accurate.
> 
> But I would also suggest that for any apps that do timing, when the app
> is not being displayed (and so the screen doesn't need to be updated),
> the code should switch to using a single-shot timer set to the time when
> the next event happens, instead of using repeating timers.  If the
> kitchen timer is set for 25 minutes and the screen is blank you don't
> want your app waking up every second.  Of course, it is a little bit
> tedious to write the code to cancel the long timer and restart short
> timers when the screen is turned back on but the user will thank you for it.

It sounds like a good idea, and should be fairly easy to implement. I just 
don't know how to detect when the screen is off (this is my first baby-steps 
in mobile coding). We have the applicationActive property, but the cover can 
still be active and visible while it is false.

> Unfortunately, I have no idea how you actually set up a single shot
> timer that will fire correctly in deep sleep from the Qt environment
> (the last time I implemented that logic was on Maemo).

Rainisto pointed to libiphb[1] which I have now implemented with a crude 
wakeup every 5-10 seconds. Not optimal, but I'm OK with it for v 0.1.1 ;)

[1] http://talk.maemo.org/showpost.php?p=1401318&postcount=2

-- 
Med venlig hilsen / Best Regards

Thomas Tanghus
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Developer mode: SSH config and devel-su

2014-01-14 Thread Bernd Wachter
Graham Cobb  writes:

> I would like to make a few changes to the login/auth setup for developer
> mode on my phone, to make it more similar to the other embedded devices
> I hack on.
>
> Does anyone see any problem with doing the following:
>
> 1) Put an authorized key in /home/nemo/.ssh and set
> "PasswordAuthentication no" in sshd_config.  Remote SSH access would
> then require using the right key.
>
> 2) Set "PermitRootLogin no" in sshd_config.  This disables direct SSH
> access to the root account (allowing me to safely do the following step).

We prepared something to enable that long time ago, but didn't have time
to take it into use. It'll be possible with an update soonish.

> I must admit I do not like the fact that the developer mode password is
> displayed in the settings.  I realise that anyone with physical access
> to the phone can get root access but I would prefer it to be a tiny bit
> harder than just looking at the password in the settings.

The developer mode password is only displayed in settings if you
generate a random password. If you set a custom password it's not shown
anymore.

Bernd

___
SailfishOS.org Devel mailing list


[SailfishDevel] CoverAction iconSource doesn't accept qrc url

2014-01-14 Thread Damien Tardy-Panis
Hi,

I think I found a bug with the CoverAction
The iconSource property doesn't seem to accept resource file with url like 
"qrc:/"

I can confirm that this is not a problem with my resource file neither with the 
icon itself since it can be displayed correctly within any image in the cover
Except in the CoverAction.

Can someone confirm this as a "missing feature"?

In the meantime, I'll have to deploy the icons and refer to them directly 
(proved working with the CoverAction)

Damien

PS: I don't know if we are better supposed to report this kind of bug on 
together.jolla.com.
Or should that platform only contains "end user" phone bugs/features/remarks?
I didn't find any tag there for such type of "SDK bug"
___
SailfishOS.org Devel mailing list


[SailfishDevel] CoverAction iconSource doesn't accept qrc url

2014-01-14 Thread Damien Tardy-Panis
Hi, 

I think I found a bug with the CoverAction
The iconSource property doesn't seem to accept resource file with url like 
"qrc:/" 

I can confirm that this is not a problem with my resource file neither with the 
icon itself since it can be displayed correctly within any image in the cover
Except in the CoverAction. 

Can someone confirm this as a "missing feature"? 

In the meantime, I'll have to deploy the icons and refer to them directly 
(proved working with the CoverAction) 

Damien 

PS: I don't know if we are better supposed to report this kind of bug on 
together.jolla.com.
Or should that platform only contains "end user" phone bugs/features/remarks?
I didn't find any tag there for such type of "SDK bug"
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Scriptlets in RPM hot allowed to Harbour

2014-01-14 Thread Basil Semuonov
>
>
> [nemo@localhost ~]$ ssu ar chum
> http://repo.merproject.org/obs/sailfishos:/chum:/1.0.2.5/1.0.2.5_armv7hl/
>
> Interesting.
On my emulator and sailfish-n9 it cannot make dbus call as nemo user(as
root it can), fallsback to libssu, which cannot do anything, 'you're not
root. run 'ssu ur' as root to recreate repository files'. root needed to
write data at /etc/zypp/repos.d.

Anyway, no real device means no real tests.
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] QML Timer stops running

2014-01-14 Thread Graham Cobb
On 14/01/14 01:14, Thomas Tanghus wrote:
> On Tuesday 14 January 2014 01:53 Ove Kåven wrote:
>> No matter what OS or platform you're on, counting the number of times
>> your timer callback is called is *never* a good idea, even on desktop
>> PCs. Timer callbacks can be skipped for any number of reasons (heavy
>> system load, laptop suspend, etc).
>>
...
> Good point. That will also at least work around the issue when in "pre-deep-
> sleep".

I agree with Ove (that is how every timer function I have ever worked on
works, from interrupt handlers in embedded system kernels through to the
GPE Calendar app) -- repeating timers are a convenience, but are never
treated as accurate.

But I would also suggest that for any apps that do timing, when the app
is not being displayed (and so the screen doesn't need to be updated),
the code should switch to using a single-shot timer set to the time when
the next event happens, instead of using repeating timers.  If the
kitchen timer is set for 25 minutes and the screen is blank you don't
want your app waking up every second.  Of course, it is a little bit
tedious to write the code to cancel the long timer and restart short
timers when the screen is turned back on but the user will thank you for it.

Unfortunately, I have no idea how you actually set up a single shot
timer that will fire correctly in deep sleep from the Qt environment
(the last time I implemented that logic was on Maemo).

Graham
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Harbour rules and faq

2014-01-14 Thread Bernd Wachter
Gabriel Böhme  writes:

> Ohh nice, I planed to use DBUS for few features, good that I have not
> implemented a lot so far.
>
> Why will DBUS also be restricted? There are just a small amount to nearly
> no, save to use APIs. There are nearly no offical APIs, just some Nemo
> middle ware stuff that works - maybe, but is not allowed at harbour.

This comment was about one specific DBus API (PackageKit), which will be
made unavailable to 3rd party applications soon to prevent unrequested
sideloading of RPM packages. An API designed for use by 3rd party
applications for this task will be made available.

DBus APIs generally are available to you if you have the right to acces
them from your application without raising the applications
privileges. PackageKit (hopefully) is the one big exception there at the
moment. We're trying to create additional documentation on stability of
DBus APIs to help you to avoid using an API which will still change a lot.

Additionally we're working hard on making more native APIs available.

> What about device feedback, what about notifications, what about sharing
> options, what about deamons, now also DBUS will be restricted. DBUS was an
> option to work around missing notifications. :-/

DBus for notifications will not be restricted.

Bernd

___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Jolla harbour website

2014-01-14 Thread Reto Zingg

Hi,

On 14.01.2014 12:49, Franck Routier (perso) wrote:

Hi,

I suppose this is a known bug, but the stats on harbour are always at 0
(nr of downloads, likes, comments, ...), be on the dashboard, or on a
specific app page.


I would not call a missing feature a bug :-)


This is on the todo list, is't it ?


Yes, that's why there are place holders...

br
Reto


BR,
Franck
___
SailfishOS.org Devel mailing list



___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Release versioning best practice?

2014-01-14 Thread Thomas Tanghus
On Tuesday 14 January 2014 10:28 Luciano Montanaro wrote:
> As far as I understand, the notation used is
> major.minor.patch-packageversion, with the packageversion  reserved
> for the packager (changes to spec/yaml/ files).
> 
> Since you are both the packager and the developer, you can always leave it
> to 0. Maybe, if you only fix packaging issues without touching the code,
> you could bump it instead of the patch version.
> 
> I would bump the patch version number, and reset the packaging number to 0.

Yes, that sounds reasonable. Thanks
> 
> Best regards,
> Luciano
> 
> On Mon, Jan 13, 2014 at 11:15 PM, Thomas Tanghus  wrote:
> > When packaging a bugfix release what is the best practice?
> > 
> > 1. Just bumping the release number so the package name goes from harbour-
> > appname-0.1-1.armv7hl to harbour-appname-0.1-2.armv7hl
> > 
> > 2. Bump minor version from e.g. harbour-appname-0.1-1.armv7hl to harbour-
> > appname-0.1.1-1.armv7hl
> > 
> > 3. Both version and release from harbour-appname-0.1-1.armv7hl to harbour-
> > appname-0.1.1-2.armv7hl

-- 
Med venlig hilsen / Best Regards

Thomas Tanghus
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Jolla harbour website

2014-01-14 Thread Jukka Eklund
Related:
https://together.jolla.com/question/10956/provide-some-basic-or-not-so-basic-app-usage-stats-for-the-developers/

Not so much votes in there yet though.


On Tue, Jan 14, 2014 at 12:49 PM, Franck Routier (perso) wrote:

> Hi,
>
> I suppose this is a known bug, but the stats on harbour are always at 0
> (nr of downloads, likes, comments, ...), be on the dashboard, or on a
> specific app page.
>
> This is on the todo list, is't it ?
>
> BR,
> Franck
> ___
> SailfishOS.org Devel mailing list
>
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] QML Timer stops running

2014-01-14 Thread Thomas Tanghus
That's an interesting approach :) I just might try that if it doesn't pass QA.

On Tuesday 14 January 2014 07:28 Jens Persson wrote:
> Ok, did some fast checking now. Yes you were right, QTimer doesn't work,
> singleShot or not. :( But ... it works for my app because it plays audio
> and it works even if the gstreamer pipeline is in paused state. My app uses
> gstreamer directly but you can try some other (easier) way, I think there's
> quite a few of them. Just load an audio file and set it to paused state and
> timers will hopefully work just fine. Hopefully you will make it to the
> harbour this way. :)
> 
> On Tue, Jan 14, 2014 at 6:10 AM, Thomas Tanghus  wrote:
> > On Tuesday 14 January 2014 05:51 Jens Persson wrote:
> > > Yes but this is from python:
> > https://github.com/xerxes2/panucci/blob/master/src/panucci/qml2ui/qml2main
> > .p> 
> > > y#L366
> > > 
> > > Now when I look at it, that code is from pre Elopocalypse, it may not
> > > really be a QTimer but may work for you anyway. Seems to be a class
> > > function or something.
> > > http://qt-project.org/doc/qt-5.1/qtcore/qtimer.html
> > 
> > Yes QTimer.singleShot() might work, but apparently not interval timers
> > 
> > > I'm actually about to implement more logic to that method so hopefully
> > 
> > you
> > 
> > > get it to work. If only singleshot work would be a bit lame.
> > 
> > Indeed. I managed to get it working using libiphb, but I doubt the harbour
> > master will allow an app linking against it even though it's installed -
> > and
> > probably used by the clock app.
> > 
> > --
> > Med venlig hilsen / Best Regards
> > 
> > Thomas Tanghus
> > ___
> > SailfishOS.org Devel mailing list

-- 
Med venlig hilsen / Best Regards

Thomas Tanghus
___
SailfishOS.org Devel mailing list


[SailfishDevel] Jolla harbour website

2014-01-14 Thread Franck Routier (perso)
Hi,

I suppose this is a known bug, but the stats on harbour are always at 0
(nr of downloads, likes, comments, ...), be on the dashboard, or on a
specific app page.

This is on the todo list, is't it ?

BR,
Franck
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Disabling navigation gestures

2014-01-14 Thread Antoine Reversat
Yeah that's what I was going to do as a last resort :(


On Tue, Jan 14, 2014 at 2:49 AM, Bob Jelica  wrote:

> Hey,
>
> I’m fighting with the same problem. Only way, at least that I’ve found
> thus far, is to use backNavigation/forwardNavigation properties and then
> ”faking” the navigation buttons in top-left corner with a switch and a
> label :)
>
> //bob
>
> On 14 Jan 2014, at 03:42, Antoine Reversat  wrote:
>
> > Hi,
> >
> > I would like to know if it is possible to disable navigation gestures .
> I'm using a Map element and navigation gestures override the panning
> gesture. I don't want to disable the navigation buttons at the top left
> corner so backNavigation and forwardNavigation properties don't work for me.
> >
> > Antoine
> > ___
> > SailfishOS.org Devel mailing list
>
> ___
> SailfishOS.org Devel mailing list
>
___
SailfishOS.org Devel mailing list

Re: [SailfishDevel] Release versioning best practice?

2014-01-14 Thread Luciano Montanaro
As far as I understand, the notation used is
major.minor.patch-packageversion, with the packageversion  reserved
for the packager (changes to spec/yaml/ files).

Since you are both the packager and the developer, you can always leave it to 0.
Maybe, if you only fix packaging issues without touching the code, you
could bump it instead of the patch version.

I would bump the patch version number, and reset the packaging number to 0.


Best regards,
Luciano

On Mon, Jan 13, 2014 at 11:15 PM, Thomas Tanghus  wrote:
> When packaging a bugfix release what is the best practice?
>
> 1. Just bumping the release number so the package name goes from harbour-
> appname-0.1-1.armv7hl to harbour-appname-0.1-2.armv7hl
>
> 2. Bump minor version from e.g. harbour-appname-0.1-1.armv7hl to harbour-
> appname-0.1.1-1.armv7hl
>
> 3. Both version and release from harbour-appname-0.1-1.armv7hl to harbour-
> appname-0.1.1-2.armv7hl
>
> --
> Med venlig hilsen / Best Regards
>
> Thomas Tanghus
> ___
> SailfishOS.org Devel mailing list



-- 
Luciano Montanaro

Anyone who is capable of getting themselves made President should on
no account be allowed to do the job. -- Douglas Adams
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] mersdk and kernel-devel

2014-01-14 Thread Kalle Jokiniemi

Hi,

On 11.01.2014 14:30, Kimmo Lindholm wrote:

Ok, I need to build the complete kernel to get Module.symvers …

but I get error with “make modules”…. HELP


I tried building that tree with my mer SDK and it worked.. I used 
following steps (inside mersdk):


sb2 make sbj_defconfig
sb2 make -j8 zImage
sb2 make -j8 modules

I use my own Jolla sb2 target, but the kernel should pretty much build 
without dependecies. Might be just some tool missing. Check if you have 
following in your SDK target:


BuildRequires:  python
BuildRequires:  pkgconfig(ncurses)
BuildRequires:  perl
BuildRequires:  kmod >= 9
BuildRequires:  fdupes
BuildRequires:  binutils-devel
BuildRequires:  elfutils-devel
BuildRequires:  python-devel
BuildRequires:  flex
BuildRequires:  bison

- Kalle



make -f /usr/src/kernels/3.4.0.20131212.3/scripts/Makefile.build
obj=fs/lockd

   /usr/src/kernels/3.4.0.20131212.3/scripts/gcc-wrapper.py gcc
-Wp,-MD,fs/lockd/.clntlock.o.d  -nostdinc -isystem
/usr/lib/gcc/armv7hl-meego-linux-gnueabi/4.6.4/include
-I/usr/src/kernels/3.4.0.20131212.3/arch/arm/include
-Iarch/arm/include/generated -Iinclude
-I/usr/src/kernels/3.4.0.20131212.3/include -include
/usr/src/kernels/3.4.0.20131212.3/include/linux/kconfig.h
-I/usr/src/kernels/3.4.0.20131212.3/fs/lockd -Ifs/lockd -D__KERNEL__
-mlittle-endian
-I/usr/src/kernels/3.4.0.20131212.3/arch/arm/mach-msm/include -Wall
-Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
-fno-common -Werror-implicit-function-declaration -Wno-format-security
-fno-delete-null-pointer-checks -Os -marm -fno-dwarf2-cfi-asm
-fstack-protector -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables
-D__LINUX_ARM_ARCH__=7 -march=armv7-a -msoft-float -Uarm
-Wframe-larger-than=1024 -Wno-unused-but-set-variable
-fomit-frame-pointer -g -femit-struct-debug-baseonly
-Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow
-fconserve-stack -DMODULE  -D"KBUILD_STR(s)=#s"
-D"KBUILD_BASENAME=KBUILD_STR(clntlock)"
-D"KBUILD_MODNAME=KBUILD_STR(lockd)" -c -o fs/lockd/.tmp_clntlock.o
/usr/src/kernels/3.4.0.20131212.3/fs/lockd/clntlock.c

scripts/genksyms/genksyms: option requires an argument -- 'r'

Usage:

genksyms [-adDTwqhV] > /path/to/.tmp_obj.ver

   -a, --archSelect architecture

   -d, --debug   Increment the debug level (repeatable)

   -D, --dumpDump expanded symbol defs (for debugging only)

   -r, --reference file  Read reference symbols from a file

   -T, --dump-types file Dump expanded types into file

   -p, --preservePreserve reference modversions or fail

   -w, --warningsEnable warnings

   -q, --quiet   Disable warnings (default)

   -h, --helpPrint this message

   -V, --version Print the release version

close failed in file object destructor:

sys.excepthook is missing

lost sys.stderr

make[3]: *** [fs/lockd/clntlock.o] Error 1

make[2]: *** [fs/lockd] Error 2

make[1]: *** [fs] Error 2

make: *** [sub-make] Error 2

*From:*devel-boun...@lists.sailfishos.org
[mailto:devel-boun...@lists.sailfishos.org] *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 $
modinfo hello.ko

filename:   /home/mersdk/testit/62/hello.ko

depends:

vermagic:   3.4.0-perf-g8401fcf SMP preempt mod_unload modversions ARMv7

-kimmo

*From:*devel-boun...@lists.sailfishos.org
[mailto:devel-boun...@lists.sailfishos.org] *On Behalf Of *Jonni Rainisto
*Sent:* Friday, January 10, 2014 5:34 PM
*To:* Sailfish OS Developers
*Subject:* Re: [SailfishDevel] mersdk and kernel-devel

I think that someone did source code request and posted the kernel online:
http://talk.maemo.org/showpost.php?p=1395881&postcount=8

And if you don't trust random internet urls there is source code request
information in devices about screen.

re, Jonni



*From:*devel-boun...@lists.sailfishos.org
[devel-boun...@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 module.h

-kimmo



___
SailfishOS.org Devel mailing list


___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Reto Zingg

Hi,

On 14.01.2014 10:34, Reto Zingg wrote:

Hi,

On 14.01.2014 10:21, Kaj-Michael Lang wrote:

Got my first app into the Harbour, works for me and obvisouly for QA
too. But about 1/2 of the comments are people complaining that all they
get is a white screen. That most likely is some error in the qml, a
import plugin missing, but how can that be if QA passed it ? Any ideas?

Oh, and the app in question is Y-Radio.

Or better yet, anyone on list that experiences the problem ? Could you
start it from the terminal and send me any error messages that might be
printed ?



seems you use:
import QtQuick.XmlListModel 2.0

that is not by default on device. Add a dependency to:
qt5-qtdeclarative-import-xmllistmodel

that should fix it.

We need to investigate how that could get pre installed to the device of
the Harbour testers.


Testers also need finger term to be able to install the rpm. Fingerterm 
depends on qt5-qtdeclarative-import-xmllistmodel:


rpm -q --whatrequires qt5-qtdeclarative-import-xmllistmodel
fingerterm-1.1.8-1.7.1.armv7hl

That's how the qt5-qtdeclarative-import-xmllistmodel came into the image 
the testers use.


br
Reto



Sorry for the troubles.

br
Reto
___
SailfishOS.org Devel mailing list


___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Kaj-Michael Lang
On Tue, 2014-01-14 at 10:34 +0200, Reto Zingg wrote:
> that is not by default on device. Add a dependency to:
> qt5-qtdeclarative-import-xmllistmodel
> 
> that should fix it.
> 
> We need to investigate how that could get pre installed to the device
> of 
> the Harbour testers. 

Ok, thanks for the information. Something I have installed must have
pulled that one in.

-- 
Kaj-Michael Lang 

___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Reto Zingg

Hi,

On 14.01.2014 10:21, Kaj-Michael Lang wrote:

Got my first app into the Harbour, works for me and obvisouly for QA
too. But about 1/2 of the comments are people complaining that all they
get is a white screen. That most likely is some error in the qml, a
import plugin missing, but how can that be if QA passed it ? Any ideas?

Oh, and the app in question is Y-Radio.

Or better yet, anyone on list that experiences the problem ? Could you
start it from the terminal and send me any error messages that might be
printed ?



seems you use:
import QtQuick.XmlListModel 2.0

that is not by default on device. Add a dependency to:
qt5-qtdeclarative-import-xmllistmodel

that should fix it.

We need to investigate how that could get pre installed to the device of 
the Harbour testers.


Sorry for the troubles.

br
Reto
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Android QA proccess

2014-01-14 Thread Iekku Pylkka
Hi,

Thank you for valid feedback. We have had resource problems to perform Android 
apps QA during vacation and get it up and running after vacations. Hopefully we 
are soon back on full speed. Thank you for your patience. See my replies above 
:)

Br,
Iekku Pylkkä

> -Original Message-
> From: devel-boun...@lists.sailfishos.org [mailto:devel-
> boun...@lists.sailfishos.org] On Behalf Of Maciej Jaros
> Sent: 14. tammikuuta 2014 0:44
> To: Sailfish OS Developers
> Subject: [SailfishDevel] Android QA proccess
> 
> How long does it take for Android apps to pass QA? Are they in a separate
> queue or just simply wait after all Jolla aps?
[Iekku Pylkka] Yes, there's separate queue for Android and native applications. 
And different testing teams for both.
> 
> I understand that there is a lot going on, but I'm waiting more then 10 days
> now and just now I had to release another version. Does this restart the clock
> somehow or what? Will I be moved to the end of the line?
[Iekku Pylkka] I can try to keep your position in queue at previous place, but 
can't promise anything for sure. Please send me information about your app.
> 
> I know some people don't like Android apps in the store, but I clearly stated
> that it is Android in the description. And there are different Android apps in
> Jolla store already. I just don't know what is going on.
> 
> Getting no feedback, no hints for that long is a bit frustrating...
> 
> Regards,
> Nux.
> ___
> SailfishOS.org Devel mailing list
___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Kaj-Michael Lang
On Tue, 2014-01-14 at 14:24 +0600, Andrey Kozhevnikov wrote:
> seems like you missed some of depends
> 

I realize that.. but how could it have passed QA then ?

And afaik I use nothing that isn't included on the device from the start
and I remember some mail was saying that you shouldn't include deps that
are pre-installed.

-- 
Kaj-Michael Lang 

___
SailfishOS.org Devel mailing list


Re: [SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Andrey Kozhevnikov

seems like you missed some of depends

On 14.01.2014 14:21, Kaj-Michael Lang wrote:

Got my first app into the Harbour, works for me and obvisouly for QA
too. But about 1/2 of the comments are people complaining that all they
get is a white screen. That most likely is some error in the qml, a
import plugin missing, but how can that be if QA passed it ? Any ideas?

Oh, and the app in question is Y-Radio.

Or better yet, anyone on list that experiences the problem ? Could you
start it from the terminal and send me any error messages that might be
printed ?



___
SailfishOS.org Devel mailing list


[SailfishDevel] Random white screen issue, app has passed QA

2014-01-14 Thread Kaj-Michael Lang
Got my first app into the Harbour, works for me and obvisouly for QA
too. But about 1/2 of the comments are people complaining that all they
get is a white screen. That most likely is some error in the qml, a
import plugin missing, but how can that be if QA passed it ? Any ideas?

Oh, and the app in question is Y-Radio.

Or better yet, anyone on list that experiences the problem ? Could you
start it from the terminal and send me any error messages that might be
printed ?

-- 
Kaj-Michael Lang 

___
SailfishOS.org Devel mailing list