← Back to team overview

landing-team-changes+1 team mailing list archive

[stable-overlay] [xenial] ubuntu-ui-toolkit (1.3.2135+16.04.20161003.1)

 

Uploaded to the Stable Phone Overlay PPA (~ci-train-ppa-service/ubuntu/stable-phone-overlay xenial) archive

---------------
Format: 1.8
Date: Mon, 03 Oct 2016 11:39:58 +0000
Source: ubuntu-ui-toolkit
Binary: qml-module-ubuntu-components qml-module-ubuntu-components-labs qml-module-ubuntu-layouts qml-module-ubuntu-test qml-module-ubuntu-performancemetrics qml-module-ubuntu-metrics qtdeclarative5-ubuntu-ui-toolkit-plugin libubuntugestures5 libubuntugestures5-dev libubuntugestures5-private-dev libubuntumetrics5 libubuntumetrics5-dev libubuntumetrics5-private-dev libubuntutoolkit5 libubuntutoolkit5-dev libubuntutoolkit5-private-dev ubuntu-ui-toolkit-theme ubuntu-ui-toolkit-doc ubuntu-ui-toolkit-examples ubuntu-ui-toolkit-autopilot ubuntu-app-launch-profiler ubuntu-ui-toolkit-tools
Architecture: source
Version: 1.3.2135+16.04.20161003.1
Distribution: xenial
Urgency: medium
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@xxxxxxxxxxxxxxxx>
Changed-By: Zolt??n Balogh <zoltan.balogh@xxxxxxxxxxxxx>
Description:
 libubuntugestures5 - Ubuntu gestures library for Ubuntu UI Toolkit
 libubuntugestures5-dev - Ubuntu gestures library development files
 libubuntugestures5-private-dev - Ubuntu gestures library private development files
 libubuntumetrics5 - Ubuntu metrics library for Ubuntu UI Toolkit
 libubuntumetrics5-dev - Ubuntu metrics library development files
 libubuntumetrics5-private-dev - Ubuntu metrics library private development files
 libubuntutoolkit5 - Ubuntu toolkit common library for Ubuntu UI Toolkit
 libubuntutoolkit5-dev - Ubuntu toolkit common library development files
 libubuntutoolkit5-private-dev - Ubuntu toolkit common library private development files
 qml-module-ubuntu-components - Qt Components for Ubuntu - Components QML plugin
 qml-module-ubuntu-components-labs - Qt Components Labs for Ubuntu - Components QML plugin
 qml-module-ubuntu-layouts - Qt Components for Ubuntu - Layouts QML plugin
 qml-module-ubuntu-metrics - Qt Components for Ubuntu - Metrics QML plugin
 qml-module-ubuntu-performancemetrics - Qt Components for Ubuntu - PerformanceMetrics QML plugin
 qml-module-ubuntu-test - Qt Components for Ubuntu - Test QML plugin
 qtdeclarative5-ubuntu-ui-toolkit-plugin - Transitional dummy package for Ubuntu UI Toolkit QML plugin
 ubuntu-app-launch-profiler - Qt Components for Ubuntu - startup time profiling tool
 ubuntu-ui-toolkit-autopilot - Test package for Ubuntu UI Toolkit
 ubuntu-ui-toolkit-doc - Qt Components for Ubuntu - documentation
 ubuntu-ui-toolkit-examples - Qt Components for Ubuntu - demos and examples
 ubuntu-ui-toolkit-theme - Qt Components for Ubuntu - Ubuntu Theme
 ubuntu-ui-toolkit-tools - Qt Components for Ubuntu - productive tools
Launchpad-Bugs-Fixed: 1461571 1514860 1570478 1580172 1585996 1586013 1587580 1590005 1610230 1610231 1621509 1622577 1625137 1625507 1625993 1628161
Changes:
 ubuntu-ui-toolkit (1.3.2135+16.04.20161003.1) xenial; urgency=medium
 .
   [ Christian Dywan ]
   * Fix warning about using implicit char* to QString conversion.
   * __styleInstance may be null, when doesn't handle that. Fixes LP: #1586013
   * Focus ring, arrow keys and space to expand OptionSelector.
     Fixes LP: #1514860
   * Use QStringLiteral with QString.replace. Fixes LP: #1625507
   * Use displayText to determine if the clear button should show.
     Fixes LP: #1461571
   * && escapes an ampersand used in a mnemonic label. Fixes LP: #1587580
   * Try harder to pass an item to QuickUtils.rootItem. Fixes LP: #1586013
 .
   [ Timo Jyrinki ]
   * Enable arm64 unit tests on xenial and newer. Fixes LP: #1580172.
   * Add initial snapcraft.yaml
 .
   [ Marco Trevisan ]
   * UCSlotsLayout: update the size of the element when top/bottom paddings change.
     Fixes LP: #1628161
 .
   [ Tim Peeters ]
   * Ensure that the model in TabBarStyle is a list and not null.
     Fixes LP: #1622577.
   * Initialize the 'window' context property with null and add MainView 1.3 unit
     tests. Fixes LP: #1610231, LP: #1621509, LP: #1625993.
   * Fix libpng sRGB profile warnings on Yakkety. Fixes LP: #1625137.
   * Disable layouts unit test to work around bug 1625137 on Yakkety.
 .
   [ Zsombor Egri ]
   * Fix AdaptivePageLayout behavior on Qt5.6. Fixes LP: #1585996.
   * Fix property binding restore on theme palette values. Fixes LP: #1570478.
   * Move activeFocusOnTab from style into components. Fixes LP: #1590005.
 .
   [ Lo??c Molinari ]
   * Added public headers extra robustness checks. Made use of the qmake
     headersclean feature to check the robustness of our public headers.
   * Excluded LTTng features from non-Linux builds.
   * Moved common C++ configs to ubuntu_common.prf. The common config file
     doesn't add -Werror directly to QMAKE_CXXFLAGS anymore, it sets the
     warnings_are_errors variable so that it is correctly handled by different
     compilers (not just GCC). That allows to remove the
     -Werror=deprecated-declarations flag since warnings_are_errors defines it
     for us. Removed the DEFINES += QT_USE_QSTRINGBUILDER lines since it's
     already handled by qt_module.prf. Set the -Wsuggest-override warning to
     QMAKE_CXXFLAGS_WARN_ON instead of QMAKE_CXXFLAGS directly.
   * Cleaned up qmake Ubuntu packaging variables. The qtbase packaging for Ubuntu
     exports the CFLAGS, CXXFLAGS and LFLAGS variables in the environment before
     running configure so that the qtbase shared libraries can be compiled with
     the required distribution defined compiler flags. That is fine (though I
     guess that could be handled better at the qtbase packaging level with maybe
     a dedicated prf) but it results in qt_build_config.prf defining the
     QMAKE_CFLAGS, QMAKE_CXXFLAGS and QMAKE_LFLAGS variables with these
     distribution specific flags. Since we load this prf, these variables end up
     being defined when building the toolkit for development purpose. This is
     problematic because -O2 and -g are always defined (whatever the debug or
     release config chosen by the developer), also these are GCC specific flags
     which makes our build break with other compilers. This is also ugly because
     preprocessor defines are directly set in the QMAKE_C*FLAGS. In order to
     workaround these issues, we unset these variables and set the different
     flags apart from -g and -O2 in the right qmake variables. This allows to
     keep compiling with the Debian flags but in a more flexible way. For the
     Debian packaging, we keep the former behaviour by simply passing the
     debian_build config.
   * Optimised QString code gen for ASCII strings known at compile-time. That
     allows the compiler to optimise our code better by putting all these
     QStrings known at compile time in the .rodata section of the binary as well
     as preventing a bunch of useless processing on them. That also allows us to
     remove "DEFINES -= QT_ASCII_CAST_WARNINGS" from the UbuntuToolkit pro file.
 .
   [ Zolt??n Balogh ]
   * Explicit include of cstdio.
 .
   [ Andrea Bernabei ]
   * Qt5.6: Fix expandablescolumn.11 and expandables.11 unit tests
   * Qt5.6 fixes QTBUG-41686 and requires x/y to be explicitly passed.
     Fixes LP: #1610230.
   * Qt5.6: fix Scrollbar unit tests
   * Qt5.6: fix ubuntulistview.10 unit test
Checksums-Sha1:
 146125d18777a84c4eb8d2a466a0db011a75ab61 4868 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.dsc
 ee7fd48c48ed45fc6643bae2cd6e956f554bad09 4269997 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.orig.tar.gz
 14c0ca37df6fd9e71937dcb16987355890d29b8a 81148 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.diff.gz
Checksums-Sha256:
 c17629057458230487c2f03b994f362d669da0d62ad0d19af09d4d23119f16a5 4868 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.dsc
 e7e641c25d696dac5b6d92a22d07d3b7e790325d95217d80be0e3e498ed1dfb4 4269997 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.orig.tar.gz
 090df4af5e5f830bb46735b58c1f6adffc7636d8adf83b683970bc2694556aa1 81148 ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.diff.gz
Files:
 94d22ceb14081b5010f5a578708a5c1e 4868 libs optional ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.dsc
 db831b1a23db4cae830cc4c6a2ee2d22 4269997 libs optional ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.orig.tar.gz
 f0fc683fb4fb48dbe0d18b7e5c93f142 81148 libs optional ubuntu-ui-toolkit_1.3.2135+16.04.20161003.1.diff.gz