[Ubuntu-sdk-bugs] [Bug 1491708] [NEW] Building a click for a QML App with C++ plugin or QtQuick App with QML UI presents invalid options

2015-09-03 Thread Didier Roche
Public bug reported: When my projects contains some C++ code (classic case is one of the 2 previous options), building a click package presents you with 2 choices: - Project with binary executables and libraries - Project without binary executables and libraries (pure qml/html projects). The

[Ubuntu-sdk-bugs] [Bug 1491323] [NEW] Ubuntu UI Toolkit Gallery example .desktop issues

2015-09-02 Thread Didier Roche
Public bug reported: 2 issues in this version of ubuntu-ui-toolkit-example binary package (since the move to multi-arch dirs): 1. The .desktop is installed at /usr/lib/x86_64-linux-gnu/qt5/examples/ubuntu-ui-toolkit/examples/ubuntu-ui-toolkit-gallery/ubuntu-ui-toolkit-gallery.desktop instead

[Ubuntu-sdk-bugs] [Bug 1491331] [NEW] DatePicker example not working in Ubuntu UI Toolkit Gallery

2015-09-02 Thread Didier Roche
Public bug reported: 1. Open the Ubuntu UI Toolkit Gallery 2. Click on the "Pickers" list element 3. Go to DatePicker section -> See Date, Month, Time. Clicking on them just console.log(), but no Picker appears. ProblemType: Bug DistroRelease: Ubuntu 15.10 Package: ubuntu-ui-toolkit-examples

[Ubuntu-sdk-bugs] [Bug 1486937] Re: Documentation is always latest available in the target

2015-08-31 Thread Didier Roche
I guess rather than closing all bug tasks for this projects, it makes more sense to open a bug in QtC indeed. As we discussed at the sprint, the recommended way is always to use the "desktop" target for developping the application (fetching the documentation, checking imports and so on) is way

[Ubuntu-sdk-bugs] [Bug 1488782] [NEW] qmldir file is ignored for any qml file in the same directory

2015-08-26 Thread Didier Roche
Public bug reported: The qmldir file isn't read for any file in the same directory. This is in general not a problem as most of the qml imports are seamless. However, you can add additional instructions in the qmldir file. For instance, singleton: qmldir contains: singleton AppSettings

[Ubuntu-sdk-bugs] [Bug 1488822] [NEW] SortFilterModel can't filter and sort at the same time

2015-08-26 Thread Didier Roche
Public bug reported: It seems that a typical SortFilterModel would be to filter on some properties of a model and sort them at the same time. However, this seems to not be possible, like: SortFilterModel { model: mymodel sort.property: timestamp sort.order: Qt.DescendingOrder

[Ubuntu-sdk-bugs] [Bug 1488823] [NEW] SortFilterModel: No complex OR or AND sorting possible

2015-08-26 Thread Didier Roche
Public bug reported: No complex OR/AND functionality in SortFilterModel seems to be available. A typical usage would be a search query trying to search matches through different fields of a model (title, comments…). I guess this common pattern would be interesting to have it implementing.

[Ubuntu-sdk-bugs] [Bug 1488821] [NEW] SortFilterModel can't filter on subproperty like content.title

2015-08-26 Thread Didier Roche
Public bug reported: SortFilterModel doesn't enable to filter on subproperty. Here is a simple non working example: SortFilterModel { id: currentmodel model: billsResults filter.property: 'contents.title' filter.pattern: /BAR/ } Knowing that most of the u1db models are

[Ubuntu-sdk-bugs] [Bug 1488085] [NEW] Navigating in the Add Security Policies window is broken with keyboard

2015-08-24 Thread Didier Roche
Public bug reported: If I click on various policy groups in the Add Security Policies dialog, then the right pane refreshes to display current selected policy. This isn't the case when using the keyboard, like keyboard Up/Down keys, like if the bound event with onclicked and not on selection

[Ubuntu-sdk-bugs] [Bug 1488048] Re: Adding new files in subdirectory deploy them in root directory with qmake template

2015-08-24 Thread Didier Roche
** Changed in: qtcreator-plugin-ubuntu (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtcreator-plugin-ubuntu in Ubuntu. https://bugs.launchpad.net/bugs/1488048 Title: Adding new files in

[Ubuntu-sdk-bugs] [Bug 1488040] Re: No debug info when starting an app remotely failed

2015-08-24 Thread Didier Roche
** Changed in: qtcreator-plugin-ubuntu (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtcreator-plugin-ubuntu in Ubuntu. https://bugs.launchpad.net/bugs/1488040 Title: No debug info when

[Ubuntu-sdk-bugs] [Bug 1488036] [NEW] The listview when creating a Kit can easily be unsynced

2015-08-24 Thread Didier Roche
Public bug reported: If you click anywhere in the text view when creating a kit, the cursor is set there. The consequence is that even if you scroll down to the current line, the addition of new lines won't continue scrolling. I think the text view should be disabled for focus selection. That

[Ubuntu-sdk-bugs] [Bug 1488038] [NEW] No feedback when an app is building when clicking on Build and validate click package

2015-08-24 Thread Didier Roche
Public bug reported: There is no real feedback that anything is happening when you have a QML + C++ app, and clicking on Build and validate click package. You stand on the empty screen until the click is built and the reviewer tool is built? Other panes shows the app building toast. I guess that

[Ubuntu-sdk-bugs] [Bug 1488040] [NEW] No debug info when starting an app remotely failed

2015-08-24 Thread Didier Roche
Public bug reported: The only information I'm getting in the Application output from QtCreator is: Résultats : Installésplitthebill.didrocks-0.1.armhf (installed:click,removable=1,app_name=splitthebill) Sdk-Launcher Application installed successfully Sdk-Launcher AppId:

[Ubuntu-sdk-bugs] [Bug 1488039] [NEW] No debug info when starting an app remotely failed

2015-08-24 Thread Didier Roche
Public bug reported: The only information I'm getting in the Application output from QtCreator is: Résultats : Installésplitthebill.didrocks-0.1.armhf (installed:click,removable=1,app_name=splitthebill) Sdk-Launcher Application installed successfully Sdk-Launcher AppId:

[Ubuntu-sdk-bugs] [Bug 1488048] [NEW] Adding new files in subdirectory deploy them in root directory with qmake template

2015-08-24 Thread Didier Roche
Public bug reported: Using only the IDE, the deployed application from the qmake template isn't executable as all files are shipped to the app directory. 1. Create a qmake application 2. add a subdirectory to the QML module like components 3. right click on QML - Add New - select a file type

[Ubuntu-sdk-bugs] [Bug 1488047] [NEW] Adding new files in subdirectory deploy them in root directory with qmake template

2015-08-24 Thread Didier Roche
Public bug reported: Using only the IDE, the deployed application from the qmake template isn't executable as all files are shipped to the app directory. 1. Create a qmake application 2. add a subdirectory to the QML module like components 3. right click on QML - Add New - select a file type

[Ubuntu-sdk-bugs] [Bug 1488062] [NEW] appname isn't respected when scaffolding a cmake project

2015-08-24 Thread Didier Roche
Public bug reported: Now that project name == app name instead of app, the cmake project doesn't seem to support the name that we set. appname is always app and so subdirectory on disk is app as well as any info in CmakeLists.txt. (For instance: install(DIRECTORY app/graphics DESTINATION

[Ubuntu-sdk-bugs] [Bug 1486937] [NEW] Documentatinon is always latest available version, not the one matchin the current sdk or imports

2015-08-20 Thread Didier Roche
Public bug reported: 1. Create an Ubuntu SDK 15.04 targetted project 2. Only use import to Ubuntu Components 1.2 3. Select a component keyword and press F1 to open help. The documentation opened is always the latest available (currently the one for 1.3), and doesn't match the imported component

[Ubuntu-sdk-bugs] [Bug 1486941] Re: Example for UbuntuListView mix versions and doesn't work

2015-08-20 Thread Didier Roche
** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1486941 Title: Example for UbuntuListView mix

[Ubuntu-sdk-bugs] [Bug 1486938] Re: Documentatinon is always latest available version, not the one matchin the current sdk or imports

2015-08-20 Thread Didier Roche
** Changed in: qtcreator-plugin-ubuntu (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to qtcreator-plugin-ubuntu in Ubuntu. https://bugs.launchpad.net/bugs/1486938 Title: Documentatinon is

[Ubuntu-sdk-bugs] [Bug 1486938] [NEW] Documentatinon is always latest available version, not the one matchin the current sdk or imports

2015-08-20 Thread Didier Roche
Public bug reported: 1. Create an Ubuntu SDK 15.04 targetted project 2. Only use import to Ubuntu Components 1.2 3. Select a component keyword and press F1 to open help. The documentation opened is always the latest available (currently the one for 1.3), and doesn't match the imported component

[Ubuntu-sdk-bugs] [Bug 1486941] [NEW] Example for UbuntuListView mix versions and doesn't work

2015-08-20 Thread Didier Roche
Public bug reported: The UbuntuListView example on wily contains 2 examples: - the first one exercise the 1.3 Ubuntu SDK version (import Ubuntu.Components 1.3) - the second one exercise the 1.2 Ubuntu SDK version. (import Ubuntu.Components 1.2) This is confusing to the developers, only one

[Ubuntu-sdk-bugs] [Bug 1485222] Re: Using ContentStore disables silently any StateSaver capability

2015-08-20 Thread Didier Roche
** Also affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1485222 Title: Using

[Ubuntu-sdk-bugs] [Bug 1486638] [NEW] Poputils documentation example doesn't show the ListItem.SingleControl

2015-08-19 Thread Didier Roche
Public bug reported: On wily, with Ubuntu SDK 1.2, trying that Popups.Popover examples shows some empty couple of items in the end: https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.Popups.Popover/ Those are the ListItem.SingleControl which are not instantiated. I guess the

[Ubuntu-sdk-bugs] [Bug 1485556] [NEW] StateSaver.properties failing silently

2015-08-17 Thread Didier Roche
Public bug reported: It's quite easy to misused the StaverSaver.properties, as it's a string and not a list. Consequently this kind of usage is easily to mistype: StateSaver.properties = foo bar instead of: StateSaver.properties = foo, bar This will silently fails to save any state. I think a

[Ubuntu-sdk-bugs] [Bug 1483614] [NEW] Retrieving a list of strings is seen as listmodel that can't be saved back

2015-08-11 Thread Didier Roche
Public bug reported: If you push a document that contains property being a list of strings, like: { 'attachements': [/path/to/foo1.png, /path/to/foo2.png] } Retrieving it is making the attachements a ListModel through the QML type system (outside of u1db's scope thus). The ListModel contains

[Ubuntu-sdk-bugs] [Bug 1483627] [NEW] Warning for the newer theme system should give more clear info to the developers

2015-08-11 Thread Didier Roche
Public bug reported: Importing Ubuntu.Components 1.2 in wily (not sure why I didn't noticed it on vivid), triggers a lot of style related warnings, like: file:///home/didrocks/work/ubuntu- sdk/splitthebill/splitthebill/components/AddRemoveInt.qml:39:5: QML TextField: Theme.createStyleComponent()

[Ubuntu-sdk-bugs] [Bug 1482512] [NEW] setMonth() and other setXXX() javascript function doesn't work on the date QML object

2015-08-07 Thread Didier Roche
Public bug reported: From http://doc.qt.io/qt-5/qml-qtqml-date.html, The QML Date object extends the JS Date object with locale aware functions.. Some of them indeed works, like getMonth(), getDate(), returning expected value. However, when change a date property on a object with setMonth() and

[Ubuntu-sdk-bugs] [Bug 1482503] Re: Putting and then getting dates in a document are altered by u1db

2015-08-07 Thread Didier Roche
launchpad seems to continue to report bug twice when clicking on submit, invalidating. ** Changed in: u1db-qt (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to u1db-qt in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1482504] [NEW] Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
Public bug reported: When putting and getting a QML date in the u1db database, the resulting strings are stored differently, even if you don't do any type conversion. The result is that the resulting date is shifted by the current timezone, rendering an incorrect date. Small example: date is

[Ubuntu-sdk-bugs] [Bug 1482503] [NEW] Putting and then getting dates in a document are altered by u1db

2015-08-06 Thread Didier Roche
Public bug reported: When putting and getting a QML date in the u1db database, the resulting strings are stored differently, even if you don't do any type conversion. The result is that the resulting date is shifted by the current timezone, rendering an incorrect date. Small example: date is

[Ubuntu-sdk-bugs] [Bug 1481619] [NEW] Flickable doesn't position below header on start

2015-08-05 Thread Didier Roche
Public bug reported: with Ubuntu Components 1.2, instantiating a MainView should adjust on start contentY of the flickable component to header.height. In the following example, this isn't recalculated properly before an user's drag. import QtQuick 2.4 import Ubuntu.Components 1.2 MainView {

[Ubuntu-sdk-bugs] [Bug 1481629] [NEW] OptionSelector animation is very jumpy

2015-08-05 Thread Didier Roche
Public bug reported: The animation in the OptionSelector component is very jumpy, even on a beefy desktop (with Ubuntu Component 1.2). import QtQuick 2.4 import Ubuntu.Components 1.2 MainView { id: mainview objectName: mainView applicationName: foo.bar width: units.gu(40)

[Ubuntu-sdk-bugs] [Bug 1481620] Re: Flickable doesn't position below header on start

2015-08-05 Thread Didier Roche
seems my chrome submitted it twice, setting this one as invalid ** Tags removed: devexp ** Changed in: ubuntu-ui-toolkit (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to ubuntu-ui-toolkit in

[Ubuntu-sdk-bugs] [Bug 1481324] [NEW] qmake template doesn't handle pot translation

2015-08-04 Thread Didier Roche
Public bug reported: cmake template have some support in po/CMakeLists.txt, using intltool We should generate po and refresh .pot files for qml, js and desktop files as in the cmake template. The release mode should generate the .mo file so that click build can ship them ** Affects:

[Ubuntu-sdk-bugs] [Bug 1481325] [NEW] qmake template doesn't handle intltool translation

2015-08-04 Thread Didier Roche
Public bug reported: cmake template have some support in po/CMakeLists.txt, using intltool We should generate po and refresh .pot files for qml, js and desktop files as in the cmake template. The release mode should generate the .mo file so that click build can ship them ** Affects:

[Ubuntu-sdk-bugs] [Bug 1478839] [NEW] Adding iconName to Button screw its automatic sizing

2015-07-28 Thread Didier Roche
Public bug reported: If you add an iconName to a button without a set width anchored to one side only, the sizing isn't correct. Please find attached 2 screenshots demonstrating this issue: there are 2 buttons, one anchored to the left, the other anchored to the right. If you set the iconName

[Ubuntu-sdk-bugs] [Bug 1219862] Re: Deleted documents show up in Database as a model

2015-07-27 Thread Didier Roche
This also happens when you use db.listDocs() API, which is kind of confusing. ** Also affects: u1db-qt (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu SDK bug tracking, which is subscribed to u1db-qt in Ubuntu.

[Ubuntu-sdk-bugs] [Bug 1461590] [NEW] schroot and click-chroot-agent are not closed when exiting qtcreator

2015-06-03 Thread Didier Roche
Public bug reported: click-chroot-agent is still running after qtcreator is closed. As a consequence, as it's only SIGTERM (and then SIGKILL if taking too long) on session closing, it doesn't teardown the schroot on the system. This schroot is of course restored after reboot, even if the user

[Ubuntu-sdk-bugs] [Bug 1461597] [NEW] kit names should contain device name + simplified framework version

2015-06-03 Thread Didier Roche
Public bug reported: As we discussed in length during the sprint, (as linked to kit name bug #1461021), a first easy solution would be to rename our created kit names using the device name (once connected, or using the emulator) and a simplified name of the framework. For instance: krillin

[Ubuntu-sdk-bugs] [Bug 1461021] [NEW] We should revise the use of the kits term

2015-06-02 Thread Didier Roche
Public bug reported: As discussed during London sprint, the use of the term kits is a little bit confusing for newcomers Differences between SDK, frameworks, kits… We will need to come with a better and simplified terminology. This bug is just opened to track it. ** Affects:

[Ubuntu-sdk-bugs] [Bug 1461019] [NEW] Default in project creation dialog should be a qmake project

2015-06-02 Thread Didier Roche
Public bug reported: As we are encouraging developers to use the qmake base template, this one should be the default selection and the first element proposed in the new project creation wizard. ** Affects: qtcreator-plugin-ubuntu (Ubuntu) Importance: Undecided Status: New **

[Ubuntu-sdk-bugs] [Bug 1461066] [NEW] Help mode tries to open unavailable file

2015-06-02 Thread Didier Roche
Public bug reported: Help mode tries to open qthelp://org.qt- project.qtcreator.311/doc/index.html which isn't installed as part of the sdk. (Note that qtcreator-doc is installed) ** Affects: qtcreator (Ubuntu) Importance: Undecided Status: New ** Tags: devexp -- You received

[Ubuntu-sdk-bugs] [Bug 1461017] [NEW] Titles in wizard have a smaller font

2015-06-02 Thread Didier Roche
Public bug reported: Title in wizard windows have an unreadable small fonts. ** Affects: qtcreator-plugin-ubuntu (Ubuntu) Importance: Undecided Status: New ** Tags: devexp ** Attachment added: project_dialog.png