Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Jonni Rainisto
Hi, Domain part is not needed anymore, so its in the form of: harbour-applicationname That way for example harbour-videocam-package doesnt confilict with possible systems videocam-package. From: devel-boun...@lists.sailfishos.org

Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Artem Marchenko
What if there are two packages in app store named harbour-videocam? Or whoever grabs the name first keeps it? What about the main app binary name and it's data folder? Shall they be harbour-videocam or com.supercell.videocam? Or harbour-com.supercell.videocam? Cheers, Artem. On Sat, Nov 23,

Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Andrey Kozhevnikov
Jolla dont want to force developers manually edit project files to be able to build dotted application names. On 23.11.2013 17:26, Artem Marchenko wrote: What if there are two packages in app store named harbour-videocam? Or whoever grabs the name first keeps it? What about the main app

Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Andrey Kozhevnikov
if i already build and sent to Harbour my org.coderus.persecute application, i should rebuild it now to harbour-persecute? =( On 23.11.2013 18:34, Jonni Rainisto wrote: Hi, Whoever grabs the name first keeps it (AFAIK). So of someone before you takes harbour-videocam, you can do something

Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Jonni Rainisto
Hi, developer-care at jolla.comhttp://jolla.com should be able to answer that one. All my answers are just AFAIK as I'm not in the team that does the Harbour and it's policies. My guess would be that unfortunately one more rename is needed. I already renamed couple of my personal projects and

Re: [SailfishDevel] Update on application naming for Harbour applications

2013-11-23 Thread Artem Marchenko
Ronni, thanks a lot for your advices Sure being among the first mover I expect disadvantages of it as well :) Unfortunately for now IRC and mailing list seem to be the only way to get help. That is unless care email ignores specifically my questions. Cheers, Artem. On Sat, Nov 23, 2013 at

Re: [SailfishDevel] Folder for the icons according to the new requirements.

2013-11-23 Thread Andrey Kozhevnikov
86x86 dir. current SDK cant build 86x86 icons to apply new Harbour requirements. You need to wait for SDK update. It will have 86x86 folders. On 23.11.2013 19:21, Artem Marchenko wrote: New icons are to be 86x86, okay. Do I still deploy them to /90x90 directory or to new /86x86 dir? Anybody

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread christopher . lamb
Hi Antoine I think I had similar problems some months ago. If I remember correctly, I had to explicitly resize the menu height after adding items to it. I will see if I can find the old code, and have a dig around in it ... Chris Zitat von Tigre-Bleu de...@tigre-bleu.net: Hi, I try to

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread christopher . lamb
Hi Antoine I had a quick play around, and a peak back in my old code. Just changing the menu height does not change anything. I also tried a version of your code with just dynamic menuItems. The menu did not drop, it just flashes. The problem I was fighting with some months ago (and did my

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread Andrey Kozhevnikov
you may need to make childs of menu._contentColumn, not just menu. On 23.11.2013 19:47, Tigre-Bleu wrote: Hi, I try to dynamically populate a ContextMenu but either I ran into a bug in the Silica Component or there is something I'm doing wrong. Here is an example of simplified code showing

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread christopher . lamb
Hi Antoine One useful technique for finding out what the Silica components are doing (and how you may need to modify your code, or to prove a bug), is to create a private clone of the problem component in your project. In your case it is ContextMenu, which on my development host lives in

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread christopher . lamb
Hi Andrey Zitat von Andrey Kozhevnikov coderusin...@gmail.com: you may need to make childs of menu._contentColumn, not just menu. I thought that the underscore stuff are private internal properties / functions that we mere mortals should not be using 8-) (Not that that would

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread Andrey Kozhevnikov
You should use it if you want real dynamically created components. Or reimplement ContextMenu item. What would you prefer? On 23.11.2013 21:06, christopher.l...@thurweb.ch wrote: Hi Andrey Zitat von Andrey Kozhevnikov coderusin...@gmail.com: you may need to make childs of

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread Tigre-Bleu
Hi Andrey, I wonder why those properties are not documented in the list of all members of ContextMenu: https://sailfishos.org/sailfish-silica/qml-sailfishsilica-contextmenu-members.html Anyway, using menu._contentColumn solved my problem. Thanks for the help. Antoine - Mail original

Re: [SailfishDevel] Fwd: Massive issues while installing SailfishOS IDE

2013-11-23 Thread Gabriel Böhme
Hi, I have the same problem with the SailfishOS IDE in Windows 7 and guess special chars and/or spaces causes the issues. The main folder is C:/SailfishOS and also my projects are in C:/SailfishOS/projects, but the SailfishAlpha2 folder in AppData is just affected, cause it's in the user path, in

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread Andrey Kozhevnikov
Just dont use dynamic childs if you dont want, but let it to others ;) On 24.11.2013 00:03, christopher.l...@thurweb.ch wrote: We should not have to make that choice. using an underscore property is the pragmatic solution, but I would be interested to hear what the Jolla developers have to

[SailfishDevel] Try flashlight on a real device, please. Rebuilt to satisfy the new requirements

2013-11-23 Thread Artem Marchenko
Hi All I've rebuilt flashlight for the new requirements (86x86 icons, [hopefully] correct package/binary names, no dependencies anymore, etc). Just a bit of graphics update yet (replacing qtgraphicseffects stuff with prerendered images). Please, give it a try and tell if it works -

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread Marcin M.
Agree with Cristopher. This is a workaround, but it should be fixed so that no manual tweaking is needed. Just as in c++ - private is private. -- Marcin 2013/11/23 Andrey Kozhevnikov coderusin...@gmail.com Just dont use dynamic childs if you dont want, but let it to others ;) On 24.11.2013

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread sonyfever
Sent from my BlackBerry 10

Re: [SailfishDevel] Dynamically populate a ContextMenu

2013-11-23 Thread William Su
Sorry for the blank emails that were accidentally sent out... I guess that is why BB10 is not my main phone... On Saturday, November 23, 2013 12:15 PM, sonyfe...@ovi.com sonyfe...@ovi.com wrote: Sent from my BlackBerry 10 smartphone. From: Andrey Kozhevnikov Sent: Saturday, November 23,