pax_global_header00006660000000000000000000000064145551242430014517gustar00rootroot0000000000000052 comment=42be780d24d79ee07eb30cd7d6218c8c01d326dd lomiri-0.2.1/000077500000000000000000000000001455512424300130125ustar00rootroot00000000000000lomiri-0.2.1/.crossbuilder/000077500000000000000000000000001455512424300155705ustar00rootroot00000000000000lomiri-0.2.1/.crossbuilder/post_deploy000066400000000000000000000003251455512424300200540ustar00rootroot00000000000000#!/bin/sh for mode in full-greeter full-shell greeter shell; do if systemctl --user is-active -q lomiri-${mode}.service; then systemctl --user restart lomiri-${mode}.service break fi done lomiri-0.2.1/.gitignore000066400000000000000000000003231455512424300150000ustar00rootroot00000000000000# default build dir /builddir # QtCreator project files /*.user *.qmlc *.jsc # Eclipse project files /.project /.cproject /.settings /.pydevproject # KDevelop project Files /.kdev4/ /build/ /*.kdev4 .clickable/ lomiri-0.2.1/.project000066400000000000000000000005501455512424300144610ustar00rootroot00000000000000 Lomiri org.python.pydev.PyDevBuilder org.python.pydev.pythonNature lomiri-0.2.1/.pydevproject000066400000000000000000000007551455512424300155400ustar00rootroot00000000000000 /Lomiri/tests/autopilot /Lomiri/.bazaar /Lomiri/tests/whitespace python 2.7 Default lomiri-0.2.1/.settings/000077500000000000000000000000001455512424300147305ustar00rootroot00000000000000lomiri-0.2.1/.settings/Autopilot List.launch000066400000000000000000000016471455512424300210100ustar00rootroot00000000000000 lomiri-0.2.1/.settings/Autopilot Run.launch000066400000000000000000000017101455512424300206300ustar00rootroot00000000000000 lomiri-0.2.1/AUTHORS000066400000000000000000000046601455512424300140700ustar00rootroot00000000000000Adam Friedrich Schrey Adolfo Jayme Barrientos Adrià Albert Astals Albert Astals Cid Alberto Aguirre Alberto Mardegan Alejandro J Cura Alessandro Vinciguerra Alexander Richards Alexander Sack Alexandros Frantzis Alfonso Sanchez-Beato Alfred Neumayer Allan LeSage Allan Nordhøy AlTeveD2v Andrea Azzarone Andrea Cimitan Andy Doan Anne Onyme Anonymous Antti Kaijanmäki Asahi 95 Benjamin Zeller Bill Filler Bittin1ddc447d824349b2 Brian Douglass Capsia Charles Kerr Chris Gagnon Christian Christopher Lee Chris Townsend Dalton Durst Dan Daniel D'Andrada Daniel Delgado Jiménez Daniel Frańczak Daniel Frost Daniel Van Vugt Dano6 David Callé DEADBLACKCLOVER Denham McLaren Didier Roche Diego Sarmentero Dimitri John Ledkov Dmitrijs Ledkovs Eryk Michalak Federico Gimenez Federico Turbino Florian Boucault Florian Leeber Fuseteam Gallegonovato Gary Wzl Gerry Boland GizmoChicken Gnu-ewm Guido Berhoerster Günter Schwann Gustavo Pichorim Boiko Handsome_feng Heimen Stoffels Hosted Weblate Império Linux Ismaelbonato Ivan Semkin Ivo Xavier James Henstridge Jami Kettunen Jan Sprinz Jiri Grönroos J Lavoie Joan CiberSheep Josharenson Josh Arenson Josué Jozef Mlich Jussi Pakkanen Kaito419 Ken VanDine Kevin Gunn Kevin Keijzer Kugi Eusebio Larry Price Lars Uebernickel Leo Arias Leonardo Arias Fonseca Lionel Duboeuf Loïc Minier Luca Weiss Luigi311 Luka177 Lukáš Tinkl Luna Jernberg Lundrin Maciej Sopylo Marco Trevisan (Treviño) Marcus Tomlinson Marius Gripsgard Martin Pitt Mateosalta Mhall119 Michael Frey Michael Hall Michael Terry Michael Zanetti Michal Hruby Michał Karnicki Michał Sawicz Mike Mike Gabriel Milan Korecký Milo Ivir Mirco Müller Muhammad Nathan Giovannini Nfsprodriver Nic Nick Dedekind Nicolas D'Offay NotKit NPL Oliver Gravert Oliver Grawert Olivier Tilloy Omer Akram Ook37 Oren Klopfer Osama Chibani Pavel Borecki Pawel Stolowski Penyotike Pete Woods Phlostically Pierre Rahammetoela Toekiman Ratchanan Srirattanamet Renato Araujo Oliveira Filho Reza Almanda Ricardo Mendoza Richard Huddie Richard Somlói Robert Bruce Park Robert Tari Rodney Rodney Dawes Rudra Harsh V Singh Scott Sweeny Sebastien Bacher Sergii Horichenko Sergio Schvezov Serhii Horichenko Stephen M Webb Steve Langasek Sylke Vicious Taisei Washington Ted Gould Temuri Doghonadze TheKit Thomas-voss Thomi Richards Timo Jyrinki Timothy G Tim Peeters Tomás Tormo Tpeeters Vesa Rautiainen Victor R Ruiz Weblate Willem-Jan De Hoog Ying-Chun Liu Zoltán Balogh Zsombor Egri Сергій lomiri-0.2.1/CMakeLists.txt000066400000000000000000000177261455512424300155670ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.4.0) # Default install location. Must be set here, before setting the project. if (NOT DEFINED CMAKE_INSTALL_PREFIX) set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/install CACHE PATH "" FORCE) endif() project(lomiri VERSION 0.2.1 LANGUAGES C CXX) set(SHELL_APP lomiri) set(INDICATORS_CLIENT_APP indicators-client) set(GREETER_APP lomiri-greeter) set (DESKTOP_FILE_SHELL "${SHELL_APP}.desktop") set (DESKTOP_FILE_GREETER "${GREETER_APP}.desktop") set (DESKTOP_FILE_INDICATORSCLIENT "${INDICATORS_CLIENT_APP}.desktop") set(QML_DEBUG OFF CACHE BOOL "Enable Qml Debugging") if(${PROJECT_BINARY_DIR} STREQUAL ${PROJECT_SOURCE_DIR}) message(FATAL_ERROR "In-tree build attempt detected, aborting. Set your build dir outside your source dir, delete CMakeCache.txt from source root and try again.") endif() set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) # Instruct CMake to run moc and rcc automatically when needed. set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) # enable QML debugging if(QML_DEBUG) add_definitions(-DQT_QML_DEBUG) endif() include(EnableCoverageReport) ##################################################################### # Enable code coverage calculation with gcov/gcovr/lcov # Usage: # * Switch build type to coverage (use ccmake or cmake-gui) # * Invoke make, make test, make coverage (or ninja if you use that backend) # * Find html report in subdir coveragereport # * Find xml report feasible for jenkins in coverage.xml ##################################################################### if(cmake_build_type_lower MATCHES coverage) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage" ) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage" ) set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} --coverage" ) set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} --coverage" ) ENABLE_COVERAGE_REPORT(TARGETS ${SHELL_APP} FILTER /usr/include ${CMAKE_SOURCE_DIR}/tests/* ${CMAKE_BINARY_DIR}/*) endif() find_package (ECM 1.7.0 QUIET NO_MODULE) if (ECM_FOUND) # Provides us with -DECM_ENABLE_SANITIZERS='X' # Where X can be address, thread, memory, leak, undefined include("${ECM_MODULE_DIR}/ECMEnableSanitizers.cmake") endif() if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS "5.0.0") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wsuggest-override" ) endif() endif() # Make sure we have all the needed symbols set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,defs") set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-z,defs") # Static C++ checks add_custom_target(cppcheck COMMAND cppcheck --enable=all -q --error-exitcode=2 ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/tests) include(FindPkgConfig) find_package(Qt5Core 5.6 REQUIRED) find_package(Qt5Qml 5.6 REQUIRED) find_package(Qt5Quick 5.6 REQUIRED) find_package(Qt5Gui 5.6 REQUIRED) find_package(Qt5DBus 5.6 REQUIRED) find_package(Qt5Concurrent 5.6 REQUIRED) find_package(Qt5Sql 5.6 REQUIRED) find_package(Qt5Test 5.6 REQUIRED) find_package(Qt5Svg 5.6 REQUIRED) find_package(Qt5Network 5.6 REQUIRED) find_package(Qt5Xml 5.6 REQUIRED) find_package(Intl REQUIRED) pkg_check_modules(APPLICATION_API REQUIRED lomiri-shell-application=28) pkg_check_modules(QTMIRSERVER REQUIRED qtmirserver>=0.6.0) pkg_check_modules(GEONAMES REQUIRED geonames>=0.2) pkg_check_modules(GIO REQUIRED gio-2.0>=2.32) pkg_check_modules(GLIB REQUIRED glib-2.0>=2.32) pkg_check_modules(LAUNCHER_API REQUIRED lomiri-shell-launcher=13) pkg_check_modules(QMENUMODEL REQUIRED qmenumodel) pkg_check_modules(GD3 REQUIRED gnome-desktop-3.0) # 0.1.5 adds lal-application-end.target. pkg_check_modules(UAL REQUIRED lomiri-app-launch-0>=0.1.5) pkg_check_modules(LOMIRIGESTURES REQUIRED LomiriGestures) pkg_check_modules(MIRAL REQUIRED miral) pkg_check_modules(DEVICEINFO REQUIRED deviceinfo) pkg_check_modules(LOMIRISCHEMA REQUIRED lomiri-schemas>=0.1.4) if (QTMIRSERVER_VERSION VERSION_GREATER_EQUAL 0.8.0) message("Bulding with miroil") pkg_check_modules(MIROIL REQUIRED miroil) add_definitions(-DUSE_MIROIL=1) else() message("Bulding without miroil") endif() ### Check LomiriGestures private headers. No pkg-config (.pc) file is provided for them find_path(LOMIRIGESTUREPRIV NAMES LomiriGestures/private/damper_p.h LomiriGestures/private/ucswipearea_p.h LomiriGestures/private/ucswipearea_p_p.h PATHS ${LOMIRIGESTURES_INCLUDEDIR}/LomiriGestures/${LOMIRIGESTURES_VERSION} NO_DEFAULT_PATH) if (${LOMIRIGESTUREPRIV} STREQUAL LOMIRIGESTUREPRIV-NOTFOUND) message(FATAL_ERROR "LomiriGestures private headers not found.") endif() # end of LomiriGesture private headers check # Standard install paths include(GNUInstallDirs) set(SHELL_APP_DIR ${CMAKE_INSTALL_DATADIR}/lomiri) set(SHELL_PRIVATE_LIBDIR ${CMAKE_INSTALL_LIBDIR}/lomiri) set(SHELL_PRIVATE_LIBEXECDIR ${CMAKE_INSTALL_LIBEXECDIR}/lomiri) execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=plugin_private_module_dir LomiriSystemSettings OUTPUT_VARIABLE USS_PRIVATE_PLUGINDIR OUTPUT_STRIP_TRAILING_WHITESPACE) if(USS_PRIVATE_PLUGINDIR STREQUAL "") message(FATAL_ERROR "Could not determine USS private plugin installation dir.") endif() execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=plugindir_suffix lomiri-shell-api OUTPUT_VARIABLE SHELL_INSTALL_QML OUTPUT_STRIP_TRAILING_WHITESPACE) if(SHELL_INSTALL_QML STREQUAL "") message(FATAL_ERROR "Could not determine plugin installation dir.") endif() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden") execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=plugindir lomiri-shell-api OUTPUT_VARIABLE SHELL_PLUGINDIR OUTPUT_STRIP_TRAILING_WHITESPACE) if(SHELL_PLUGINDIR STREQUAL "") message(FATAL_ERROR "Could not determine plugin import dir.") endif() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-permissive -pedantic -Wall -Wextra") set (CMAKE_CXX_STANDARD 17) if ("${CMAKE_BUILD_TYPE}" STREQUAL "release" OR "${CMAKE_BUILD_TYPE}" STREQUAL "relwithdebinfo") option(Werror "Treat warnings as errors" ON) else() option(Werror "Treat warnings as errors" OFF) endif() if (Werror) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") endif() # gtk and lomiri-core (actually sigc++) do not like Qt defining macros named # "signals" and "slots" add_definitions(-DQT_NO_KEYWORDS) # Save a few container detach and conversions add_definitions(-DQT_STRICT_ITERATORS) # Use the fast string builder add_definitions(-DQT_USE_QSTRINGBUILDER) # Autopilot tests include(autopilot) declare_autopilot_test(shell lomiri.shell ${CMAKE_SOURCE_DIR}/tests/autopilot/) set(MOCK_INDICATOR_SERVICE_APP lomiri-mock-indicator-service) include_directories( ${CMAKE_SOURCE_DIR}/include ${CMAKE_BINARY_DIR}/include ${APPLICATION_API_INCLUDE_DIRS} ) # Quiet logger set(QUIET_LOGGER OFF CACHE BOOL "Disable test output on stdout.") if(NOT QUIET_LOGGER) set(STDOUT_LOGGER "-o" "-,txt") endif() execute_process(COMMAND dpkg-architecture -qDEB_HOST_ARCH OUTPUT_VARIABLE ARCH) if (NOT ARCH MATCHES "arm*") set(ENABLE_TOUCH_EMULATION true) add_definitions(-DLOMIRI_ENABLE_TOUCH_EMULATION) pkg_check_modules(MOUSETOUCHADAPTOR_LIBS REQUIRED x11 xcb xi) else() set(ENABLE_TOUCH_EMULATION false) message(STATUS "Touch emulation support disabled.") endif() # add subdirectories to build add_subdirectory(include) add_subdirectory(src) add_subdirectory(tools) add_subdirectory(qml) # Tests set(NO_TESTS OFF CACHE BOOL "Disable tests.") if (NOT NO_TESTS) pkg_check_modules(QTDBUSTEST REQUIRED libqtdbustest-1 libqtdbusmock-1 ) include(CTest) enable_testing() add_subdirectory(tests) else() message(STATUS "Tests disabled") endif() set(DISPLAYED_DISTRO_NAME "" CACHE STRING "The distro name displayed in first-run wizard and other places. If not set, will read /etc/os-release") add_subdirectory(plugins) # # Data files # add_subdirectory(data) # # Translation # add_subdirectory(po) # # Documentation # add_subdirectory(doc) lomiri-0.2.1/CODING000066400000000000000000000121351455512424300137020ustar00rootroot00000000000000Building Lomiri ================ Only Ubuntu 14.04 (trusty) is supported as a developement environment. download source --------------- - create a parent folder to not pollute your setup. so that you can have different lomiri branches there (trunk, WIP etc) $ mkdir ~/lomiri - fetch Lomiri source $ sudo apt-get install bzr $ bzr branch lp:lomiri ~/lomiri/trunk $ cd ~/lomiri/trunk install dependencies and build Lomiri -------------------- $ cd ~/lomiri/trunk $ ./build.sh If its your first time, this will install the required dependencies to build and build it. You might want to also install lomiri-scope-home and lomiri-scope-click which are technically "recommends", not strict dependencies You may also rebuild with the -c for clean, which just deletes the build directory. Running Lomiri on your desktop =============================== run the Lomiri shell --------------------- $ cd ~/lomiri/trunk $ cd builddir Each component of lomiri can be ran independently for development and testing For example: $ make tryShell $ make tryLauncher $ make tryLockscreen Check out the tests/qmltests/ directory for a list of things that can be ran. Notes ----- - to navigate, utilize the mouse left button as you would your finger - a three point drag (for side stage operations) can be performed by using the Shift+Control+Alt (all together) keyboard modifiers while using the mouse. - to get the translations work, currently you have to do make install to put the *.mo files into correct structure. We'll look for a better solution later. $ cd builddir; make install - if you wish to populate contacts $ sudo apt-get install gir1.2-ebook-1.2 $ manage-address-book.py create this will: - Create an EDS address book - Populate the address book with sample data Running Lomiri on devices ========================== Running lomiri on a device should be done using crossbuilder. Go to * https://launchpad.net/crossbuilder and * https://wiki.ubuntu.com/Touch/Crossbuilder for more details on crossbuilder. lomiri will automatically restart on the phone once deployment has finished due to post-build-steps set up in this repository. Coding guidelines ================= The work-in-progress coding guidelines are available under: https://launchpad.net/canonical-client-development-guidelines Development Environment ======================= QtCreator (available via the Software Center) is the best IDE to hack on Lomiri. If using VIM, make sure you install some syntax highlighting for QML, like https://github.com/peterhoeg/vim-qml Running tests ============= Tests are run from the build directory (which will be ./builddir if you used the ./build.sh script). To run the tests that do not require any graphical capability and therefore are pretty fast run: $ make test or, alternatively: $ ctest To run all graphical tests, which can take a couple of minutes: $ make uitests To run the tests for a single component/class: $ make testComponentName So, for the DragHandle component that would be: $ make testDragHandle To run the tests for a single component/class under gdb (so you can catch SEGFAULTS) $ make gdbtestComponentName To run a single test function of a single component/class: $ make testComponentName FUNCTION="TestCaseName::functionName" To run a test application that allow you to manually test or to simply try out a given component: $ make tryComponentName So to try out, for instance, the DragHandle component, you would do: $ make tryDragHandle NB: Manual test or interation doesn't make sense for all components or classes, particularly the non-graphical ones. In such cases no "tryFoo" make target is provided. Running autopilot tests ======================= Autopilot tests are run from the build directory (which will be ./builddir if you used the ./build.sh script). $ make autopilot If you want you can also run tests individually, for that you need to install first, otherwise the tests will run on the system-installed version $ make install To see the list of existing autopilot tests you can do $ PYTHONPATH=../tests/autopilot autopilot3 list lomiri And then run a single test with $ PYTHONPATH=../tests/autopilot autopilot3 run lomiri.some.very.long.test.name or run them all with $ PYTHONPATH=../tests/autopilot autopilot3 run lomiri Debugging techniques ==================== Lomiri heavily uses Qt and with that Qt debugging techniques mostly apply in the same fashion. There are, however, some additional lomiri-specific notes: * Enable/disable Qt scenegraph visualizer on the fly: $ qdbus com.lomiri.Shell.Debugging /com/lomiri/Shell/Debugging SetSceneGraphVisualizer This is equivalent to exporting QSG_VISUALIZE= before running lomiri, except it does it on the fly. * Toggle slow animations on the fly: $ qdbus com.lomiri.Shell.Debugging /com/lomiri/Shell/Debugging SetSlowAnimations * Change logging filter rules on the fly: $ qdbus com.lomiri.Shell.Debugging /com/lomiri/Shell/Debugging SetLoggingFilterRules This is equivalent to exporting QT_LOGGING_RULES or defining them in QT_LOGGING_CONF, except it does it on the fly. lomiri-0.2.1/COPYING000066400000000000000000001045131455512424300140510ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . lomiri-0.2.1/COPYING.LGPL000066400000000000000000000643011455512424300146060ustar00rootroot00000000000000 GNU LESSER GENERAL PUBLIC LICENSE The Qt Toolkit is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). Contact: http://www.qt-project.org/legal You may use, distribute and copy the Qt GUI Toolkit under the terms of GNU Lesser General Public License version 2.1, which is displayed below. ------------------------------------------------------------------------- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! lomiri-0.2.1/ChangeLog000066400000000000000000067351421455512424300146060ustar00rootroot000000000000002024-01-27 Mike Gabriel * Release 0.2.1 (HEAD -> main, tag: 0.2.1) * CMakeLists.txt: Regression fix of 0.2.0 release. Fix dependency on lomiri-schemas (0.2.0 -> 0.1.4). (4bfefff17) * Release 0.2.0 (b0baf2c83) (tag: 0.2.0) * CMakeLists.txt: Bump versioned requirement of lomiri-schemas to >=0.1.4. (10cc5671b) 2024-01-21 Сергій * Translated using Weblate (Ukrainian) (6408b7c35) 2024-01-17 bittin1ddc447d824349b2 * Translated using Weblate (Swedish) (13251731c) 2024-01-13 Heimen Stoffels * Translated using Weblate (Dutch) (9c8d1dd31) 2024-01-08 gallegonovato * Translated using Weblate (Spanish) (3e0d257b3) 2024-01-08 Jozef Mlich * Translated using Weblate (Czech) (00a890ca6) 2024-01-11 Ratchanan Srirattanamet * Merge branch 'personal/muhammad/fix-charging-information' into 'main' (ec65759f5) 2024-01-10 Muhammad * BatteryMonitor: let all signals be emitted together (ca355decb) 2024-01-09 Muhammad * BatteryMonitor & Greeter: finally fix charging information; Fully charged message is displayed properly; Time gets reliably updated (f5350326f) 2024-01-06 Mike Gabriel * Translated using Weblate (German) (9a986647b) 2024-01-06 Hosted Weblate * Update translation files (81f7f70b9) 2024-01-06 Ratchanan Srirattanamet * po: update the .pot file (2de49d06d) 2024-01-05 Ratchanan Srirattanamet * Merge branch 'charging-information-toggle' into 'main' (590d90fb8) 2024-01-05 Muhammad * Greeter: rename gsetting; showChargingInformation -> showChargingInformationWhileLocked (a58ad48ec) 2023-12-31 Muhammad * Greeter: add configurable charging information (80b36e7d0) 2024-01-04 Mike Gabriel * Merge branch 'ubports/focal_-_notif_privacymode' into 'main' (2f2484499) 2023-08-04 Lionel Duboeuf * Notification: Add privacy mode (a3845ce47) 2024-01-04 Ratchanan Srirattanamet * Merge branch 'main' into 'main' (16c1b0900) 2023-12-21 Muhammad * BatteryMonitor: consider fully charged as charging too; allows us to check state in qml (79ca7c46a) 2023-12-18 Muhammad * Greeter & BatteryMonitor: fix "Fully charged" message (d4a5da9d0) 2023-12-27 Weblate * Added translation using Weblate (Chinese (Simplified) (zh_LATN@pinyin)) (ecd34e058) * Added translation using Weblate (Tamil (Sri Lanka)) (26e5e1b85) * Added translation using Weblate (German (Walser)) (3cc46b731) * Added translation using Weblate (Meadow Mari) (3753186d2) * Added translation using Weblate (Crimean Tatar) (8368dfb54) * Added translation using Weblate (Chuvash) (76544d9a2) * Added translation using Weblate (Silesian) (e7c08c3ff) * Added translation using Weblate (Latin) (e88a6fd6d) * Added translation using Weblate (Venetian) (a01023012) * Added translation using Weblate (Ossetian) (ce8416a08) * Added translation using Weblate (Sami (Northern)) (66c913be4) * Added translation using Weblate (Greenlandic) (a8cf0705a) * Added translation using Weblate (Assamese) (6fc3d5f83) * Added translation using Weblate (Haitian) (35f6ed8ff) * Added translation using Weblate (Cornish) (ba4e19305) * Added translation using Weblate (Frisian) (460751386) * Added translation using Weblate (Kashubian) (987a3ba64) * Added translation using Weblate (Aragonese) (e7a303993) * Added translation using Weblate (Tibetan) (17450ece1) * Added translation using Weblate (Filipino) (85603cb87) * Added translation using Weblate (Tigrinya) (84fa2a7ce) * Added translation using Weblate (Tatar) (ff5774f09) 2023-12-26 Weblate * Added translation using Weblate (Italian (it_CARES)) (e34c67a0c) 2023-12-19 Mike Gabriel * Merge branch 'miroil' into 'main' (9c416d06e) 2023-01-11 Marius Gripsgard * Add support for both older qtmir and newer qtmir with miroil (3db2a3781) 2023-12-18 Mike Gabriel * Merge branch 'fix_warnings' into 'main' (02eb22d59) 2023-12-18 Luigi311 * Plugins: WindowManager: Fix missing enumerations (e5bab61c6) * Plugins: BatteryMonitor: Fix warnings Fixes warnings about unused variables and missing default returns (70fc191d6) 2023-12-17 Mike Gabriel * Merge branch 'personal/lduboeuf/anim_applaunch' into 'main' (8c3f6ad10) 2023-11-03 Lionel Duboeuf * Don't play lockscreen animation when using fingerprint (e8b4b19c1) * Make the splash transition fading Instead of animate opacity on the surface Item itself which render from black to the app color. (1c74ab9f9) 2023-12-17 Mike Gabriel * Merge branch 'main' into 'main' (0c9d02ce1) 2023-12-15 Adam Friedrich Schrey * Merge branch lomiri:main into main (b9e70a4d7) 2023-12-14 Marius Gripsgard * Merge branch 'main' into 'main' (162f530aa) 2023-12-13 Muhammad * Greeter: use "," in final string, and allow final string to be restructured for translation (4421b9f05) * BatteryMonitor: check if we're charging before updating TimeToFull (24c8613dc) * Greeter: fix translation hint (368ddb5fa) 2023-12-09 Muhammad * qml: fix whitespaces (4f1d4ee9b) 2023-12-08 Muhammad * BatteryMonitor: update time only if percentage updates as well (12ef7b97f) * Greeter: use enum exported from BatteryMonitor (90ef77e39) 2023-12-07 Ratchanan Srirattanamet * CoverPage: add info for translating final string (fde813f31) 2023-12-07 Muhammad * plugins: sort entries (5b1152088) 2023-12-06 Muhammad * BatteryMonitor & Greeter: clean-ups and bindings (60a01385a) 2023-12-02 Muhammad * BatteryMonitor: add "Fully charged" message (f35e20093) 2023-11-30 Muhammad * BatteryMonitor: clean up whitespaces (64952623b) * Greeter: add time to full hint; displays time remaining until battery is full; handles cases when there is no battery (0c1f51e40) 2023-12-13 Adam Friedrich Schrey * make wallpaper not invisible for staged mode, so apps with transparent backgrounds work on phones (6bf6224e1) 2023-12-13 Ratchanan Srirattanamet * Merge branch 'patches' into 'main' (d28cd6139) 2021-08-15 Luca Weiss * Use correct value for Leds.state (564b55add) 2023-11-14 Luca Weiss * Compile with C++17 (aafbc138d) 2019-01-29 Luca Weiss * Link against libintl (37bb4ad76) * Add missing includes (7bacbecc5) 2023-12-11 Ratchanan Srirattanamet * Merge branch 'ubports/focal_-_dt2w_persist' into 'main' (5cb8d2e36) 2023-12-05 Ratchanan Srirattanamet * debian/control: versioned-depends on lomiri-schemas with new key (84d02791d) 2023-12-01 Lionel Duboeuf * Manage DT2W setting change (291b8849b) 2023-11-29 bittin1ddc447d824349b2 * Translated using Weblate (Swedish) (538ab60ed) 2023-12-04 Reza Almanda * Translated using Weblate (Indonesian) (42ab76416) 2023-12-01 Daniel Delgado Jiménez * Translated using Weblate (Spanish) (5a2c4f306) 2023-11-19 gallegonovato * Translated using Weblate (Spanish) (de472d04a) 2023-10-18 Lundrin * Translated using Weblate (Hungarian) (4ea3c0ce0) 2023-10-18 Weblate * Added translation using Weblate (Kurdish) (402d8d3e8) * Added translation using Weblate (Sotho (Southern)) (817280257) * Added translation using Weblate (Afrikaans) (ca7fae515) 2023-10-11 Serhii Horichenko * Translated using Weblate (Russian) (5d5813105) 2023-10-13 Império Linux * Translated using Weblate (Portuguese (Brazil)) (369d960ed) 2023-10-15 Mike Gabriel * Release 0.1.4 (4ad034204) (tag: 0.1.4) 2023-09-29 Mike Gabriel * Merge branch 'personal/lduboeuf/fix_qtcreatorbuild' into 'main' (ed5564cbb) 2023-09-15 Lionel Duboeuf * don't enable qml debug by default on Debug build (390e99145) * clickable: rename unity8 -> lomiri update README.md (f39886a87) 2023-09-19 Hosted Weblate * Update translation files (7337620b1) 2023-09-19 Ratchanan Srirattanamet * Merge branch 'focal' into 'main' (71a6f7142) 2023-09-05 Fuseteam * fix regression (200d66386) 2023-09-05 ook37 * fix regressions from forward port (7783a0a9f) 2022-12-13 Lionel Duboeuf * tweak CI build (01b5714e7) 2022-03-22 Kugi Eusebio * Fixed #431 (5fcf3aa60) 2022-05-27 Alfred Neumayer * IndicatorItem: Workaround for stretched/squished icons (6f2c15285) 2022-01-31 Capsia * Fix #420 (42c1ff2f4) 2022-01-29 Capsia * Fix infographics (615fda0fc) 2022-01-23 Capsia * Replace blur on greeter with darkening (b87036b0b) 2022-01-15 Capsia * Greeter orientation (#402) (feb65b00f) 2023-09-06 bittin1ddc447d824349b2 * Translated using Weblate (Swedish) (cb614060a) 2023-09-01 Mike Gabriel * Merge branch 'fontfix' into 'main' (0cf45bf15) 2023-08-31 mateosalta * Update IndicatorItem.qml (0ad4affc4) * Update file IndicatorItem.qml (fcb847eb6) 2023-08-29 Mike Gabriel * Merge branch 'personal/gberh/locationbg' into 'main' (babf01dc9) 2020-12-23 Alberto Mardegan * plugins: create ProcessControl plugin (9707ba4e3) 2021-04-19 Alberto Mardegan * Stage: minor refactoring of application requestedState (fb5a22c46) 2023-08-20 AlTeveD2v * Translated using Weblate (Russian) (584dbd9e6) 2023-08-21 NPL * Translated using Weblate (Japanese) (4b0bc4cd6) 2023-08-23 Mike Gabriel * Merge branch 'personal/peat-psuwit/x-ayatana-level' into 'main' (6ac1c657a) 2023-06-30 Ratchanan Srirattanamet * IndicatorMenuItemFactory: support org.ayatana.indicator.level (4f3704c35) 2023-08-23 Mike Gabriel * Merge branch 'personal/lduboeuf/fix_bgapp' into 'main' (cfb6be68a) 2023-06-13 Lionel Duboeuf * Prevent some Type Error in logs on application close (f5e970ce5) * Make app go foreground when in spread view fixes https://gitlab.com/ubports/development/core/lomiri/-/issues/67 fixes https://gitlab.com/ubports/development/core/lomiri/-/issues/68 (70ab86a90) 2023-08-22 Mike Gabriel * Merge branch 'personal/peat-psuwit/available-desktop-area-waydroid' into 'main' (3d6763219) 2023-06-16 Ratchanan Srirattanamet * shell: ignore shell.atDesktop when calculating AvailableDesktopArea (e1f0a302d) 2023-08-20 AlTeveD2v * Translated using Weblate (Russian) (304c1dfd7) 2023-08-12 NPL * Translated using Weblate (Japanese) (764791ccc) 2023-08-18 Mike Gabriel * Translated using Weblate (German) (a51048dc0) * Merge branch 'lduboeuf-main-patch-53276' into 'main' (d8fb28624) 2023-08-04 Lionel Duboeuf * Update README.md, re-enable build and test with clickable (9c3f9cf20) 2023-08-18 Mike Gabriel * Merge branch 'personal/lduboeuf/circleprompt_contrast' into 'main' (64407ce9d) 2023-08-11 Lionel Duboeuf * Circle Prompt: give better contrast for dots (521e29286) 2023-08-08 Ivo Xavier * Translated using Weblate (Portuguese) (e17ef1822) 2023-08-05 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (c20654b4f) * Translated using Weblate (Spanish) (c300a2962) * Translated using Weblate (Danish) (784dbbd6f) 2023-07-21 Serhii Horichenko * Translated using Weblate (Ukrainian) (38d35e8fe) 2023-07-21 Ivo Xavier * Translated using Weblate (Portuguese) (4b2898487) 2023-07-28 Marius Gripsgard * Release 0.1.3 (0151c4fc7) (tag: 0.1.3) 2023-06-30 Rudra Harsh V.Singh * Translated using Weblate (Sanskrit) (f6570663d) 2023-07-09 Eryk Michalak * Translated using Weblate (Polish) (3744369b8) 2023-07-07 NPL * Translated using Weblate (Japanese) (f8b83d676) 2023-06-30 Weblate * Added translation using Weblate (Sanskrit) (ced1769bb) 2023-06-28 Sylke Vicious * Translated using Weblate (Italian) (4a6cc2b54) 2023-06-27 Rudra Harsh V.Singh * Translated using Weblate (English (Canada)) (f903260bb) 2023-06-20 Ivo Xavier * Translated using Weblate (Portuguese) (7105c2f67) 2023-06-28 J. Lavoie * Translated using Weblate (French) (e99ee02e9) * Translated using Weblate (German) (65c2db5b9) 2023-06-05 Mike Gabriel * Merge branch 'personal/peat-psuwit/cache-migration' into 'main' (8a2f908c3) 2023-05-23 Ratchanan Srirattanamet * session-migration: do migration/cleanup of old caches (8bf1d8168) * LomiriApplication: set organization to UBports instead of Canonical (07e137b37) 2023-06-05 Mike Gabriel * Merge branch 'personal/lduboeuf/erase_size' into 'main' (9cc623dae) 2023-05-24 Lionel Duboeuf * Increase erase button size (ee53e4b8b) 2023-05-08 Heimen Stoffels * Translated using Weblate (Dutch) (2afd20c06) 2023-05-13 Mike Gabriel * Translated using Weblate (German) (21ff6db72) 2023-05-09 Jozef Mlich * Translated using Weblate (Czech) (f8874cda5) 2023-05-08 Hosted Weblate * Update translation files (847e730a9) 2023-05-08 Mike Gabriel * po/lomiri.pot: Update translation template file. (e79f22d2c) 2023-05-08 Hosted Weblate * Update translation files (d03309f0a) 2023-05-08 Mike Gabriel * Merge branch 'wizard-updater-fix-os-name' into 'main' (d3579a6a9) 2023-05-08 Jami Kettunen * Wizard: Display "Ubuntu Touch system" in updater page (3a4570178) 2023-04-12 Temuri Doghonadze * Translated using Weblate (Georgian) (f7086cc3a) 2023-04-23 Marius Gripsgard * Merge branch 'personal/fredldotme/stoprandomdrawerhides' into 'main' (e34b35483) 2023-03-26 Alfred Neumayer * qml: Fix dragging windows in the spread getting stuck (c9aa95708) * qml: Prevent Drawer from hiding away from under the mouse pointer (304b88710) 2023-04-12 Marius Gripsgard * Merge branch 'personal/fredldotme/xwaylandshm' into 'main' (a1a1b1f25) 2023-03-29 Alfred Neumayer * data: Enhance Xwayland wrapper by setting shm mode optionally (b90e5eb02) 2023-04-12 Marius Gripsgard * Merge branch 'personal/fredldotme/hidesplashonlibertine' into 'main' (c0234820f) 2023-03-02 Alfred Neumayer * tests: Switch default behavior of showSplash() to true (ade2de781) 2023-02-27 Alfred Neumayer * plugins/WindowManager: Hide splash screens depending on QtMir/l-a-l preference (3aacf9914) 2023-04-12 Temuri Doghonadze * Translated using Weblate (Georgian) (5b4f4ea3e) 2023-04-11 Temuri Doghonadze * Translated using Weblate (Georgian) (c55fb1504) * Translated using Weblate (Georgian) (a4084266c) 2023-04-07 Marius Gripsgard * Merge branch 'ubports/focal_-_lomiri-readyprop' into 'main' (877c6cb98) 2023-04-07 Lionel Duboeuf * ApplicationWindow: restore live property check at component loading (4b19bc715) 2023-04-03 Lionel Duboeuf * Add opacity animation between Splash Screen and app transition (eb730484f) * ApplicationWindow.qml Make sure surface is ready before hidding splashscreen (89ba52d3c) 2023-04-04 gallegonovato * Translated using Weblate (Spanish) (94e369c18) 2023-03-30 Ivo Xavier * Translated using Weblate (Portuguese) (49d67f32d) 2023-03-31 Sylke Vicious * Translated using Weblate (Italian) (9deb504f8) 2023-03-31 Jozef Mlich * Translated using Weblate (Czech) (a6d278e13) 2023-03-30 Sylke Vicious * Translated using Weblate (Italian) (c6f7dc9dc) 2023-03-30 Jozef Mlich * Translated using Weblate (Czech) (82775d1be) 2023-03-27 Jozef Mlich * Translated using Weblate (Czech) (c0c7b6980) 2023-03-22 gnu-ewm * Translated using Weblate (Polish) (e3507b587) 2023-03-22 Heimen Stoffels * Translated using Weblate (Dutch) (06aa36ea9) 2023-03-22 phlostically * Translated using Weblate (Esperanto) (60aaba5ac) 2023-03-22 Hosted Weblate * Update translation files (de73d1cf8) 2023-03-22 Mike Gabriel * Merge branch 'personal/gberh/fix-welcome-i18n' into 'main' (2b3bfd217) 2023-03-22 Guido Berhoerster * Update German translation (edfe8f2bb) * Update .pot file (d63407348) * Make update messager clearer (8956ed3ce) * Fix welcome messages i18n (14d4e458e) 2023-03-16 Mike Gabriel * Merge branch 'personal/gberh/loglevels' into 'main' (e01a1410e) 2023-03-15 Guido Berhoerster * Adjust log levels (074f5acf0) 2023-03-05 Mike Gabriel * Merge branch 'personal/peat-psuwit/57-welcome-to-lomiri' into 'main' (75f9bb698) 2023-03-03 Ratchanan Srirattanamet * Replace every instances of "Lomiri 8" to just "Lomiri" (5474224fb) 2023-03-04 Ratchanan Srirattanamet * debian/rules: configured displayed distro name for us to Ubuntu Touch (da3e2f075) * Wizard: show "Welcome to " + distro (b4bcf6510) Fixes: https://gitlab.com/ubports/development/core/lomiri/-/issues/57 2023-03-03 Taisei Washington * Translated using Weblate (Japanese) (e56649b9c) 2023-02-26 Luna Jernberg * Translated using Weblate (Swedish) (6af57946b) 2023-02-26 Mike Gabriel * Release 0.1.2 (86b6a2174) (tag: 0.1.2) * Merge branch 'personal/peat-psuwit/lal14-lal-application-end.target' into 'main' (5232be093) 2023-02-25 Ratchanan Srirattanamet * debian/control: document LAL version requirement (eb3d36274) 2023-02-24 Ratchanan Srirattanamet * systemd-user: start lal-application-end.target on stop/restart (cdecb8e0b) 2023-02-20 Sergii Horichenko * Translated using Weblate (Ukrainian) (72b64fe5c) * Translated using Weblate (Russian) (eea9565fb) 2023-02-22 Heimen Stoffels * Translated using Weblate (Dutch) (ccffbecf5) 2023-02-21 Mike Gabriel * Merge branch 'personal/peat-psuwit/revert-crop-center' into 'main' (1746ecf38) 2023-02-22 Ratchanan Srirattanamet * Revert "qml: Clip SurfaceContainer contents" (ecf53b903) 2023-02-20 Ratchanan Srirattanamet * Merge branch 'wizard-fix-wifi' into 'main' (1c056af85) 2023-02-20 Jami Kettunen * Wizard: Fix AyatanaMenuModel attributes for Wi-Fi networks (30d490782) 2023-02-20 Mike Gabriel * Merge branch 'personal/lduboeuf/fix_pincode_nodots' into 'main' (a63a30f03) 2023-02-20 Lionel Duboeuf * Fix full dots not displayed while typing (27907f94b) 2023-02-20 Mike Gabriel * Merge branch 'personal/gberh/launcher-locale-update' into 'main' (0fa0e2b8c) 2023-02-20 Guido Berhoerster * Refresh Drawer desktop files when the locale changes (00864fbdd) * Remove leftover debug logging (775787334) 2023-02-18 Nathan Giovannini * Translated using Weblate (Italian) (7fd0ea7e0) 2023-02-18 Sergii Horichenko * Translated using Weblate (Ukrainian) (d70354975) * Translated using Weblate (Russian) (2b8260712) 2023-02-18 Mike Gabriel * Merge branch 'personal/peat-psuwit/revert-changestate' into 'main' (4a402c101) 2023-02-17 Ratchanan Srirattanamet * IndicatorMenuItemFactory: back to activate() for switch, but more clever (47064cc60) Fixes: https://gitlab.com/ubports/development/core/indicator-location/-/issues/2 2023-02-18 Mike Gabriel * Release 0.1.1 (cfd2ca38f) (tag: 0.1.1) 2023-02-17 Mike Gabriel * Merge branch 'personal/lduboeuf/focal_-_pincode_increase_length' into 'main' (5f338f3c7) 2023-02-17 Lionel Duboeuf * Readme: update clickable arguments (e231072df) * update lomiri-schemas dependency to 0.1.3 (74805901d) 2023-02-16 Lionel Duboeuf * allow to set more than 4 digits pincode (7acd3d73c) * Provide a fallback to PassPhrase prompt in case of 5 failed attempt with pincode. (636ef6b92) 2023-02-16 phlostically * Translated using Weblate (Esperanto) (cfb1c9a0c) 2023-02-15 Adolfo Jayme Barrientos * Translated using Weblate (Spanish) (c8f8c1a02) 2023-02-13 Adolfo Jayme Barrientos * Translated using Weblate (Spanish) (a8863af5c) 2023-02-14 Mike Gabriel * Merge branch 'personal/gberh/update-session-locale' into 'main' (1c4fd261f) 2023-02-10 Guido Berhoerster * Fix copyright/license notices and test (8003dc485) 2023-02-08 Guido Berhoerster * Restore restarts of session services after wizard locale change (44f24a917) 2023-02-12 Mike Gabriel * Merge branch 'personal/fredldotme/xwayland-fixup' into 'main' (05657938b) 2022-12-12 Alfred Neumayer * data & debian: Ship & enable Xwayland wrapper (8af966e5b) * plugins: TopLevelWindowModel: Explicitly cause XWayland surfaces to die gracefully (19931da7d) 2023-02-11 Sergii Horichenko * Translated using Weblate (Ukrainian) (1c5a03f04) 2023-02-09 Sergii Horichenko * Translated using Weblate (Ukrainian) (49e895bea) 2023-02-09 Mike Gabriel * Merge branch 'main_-_clockcenter' into 'main' (1da4a56bd) 2023-02-09 Kugi Eusebio * Trim time string to remove leading space (2b0c6c1c3) 2023-02-07 Ivo Xavier * Translated using Weblate (Portuguese) (9e0c80b70) 2023-02-06 Ivo Xavier * Translated using Weblate (Portuguese) (db9ff7180) 2023-02-06 Mike Gabriel * Release 0.1 (73b5f3d85) (tag: 0.1) 2023-02-05 gnu-ewm * Translated using Weblate (Polish) (3a61e073f) 2023-02-04 Mike Gabriel * Translated using Weblate (German) (ab669fcad) 2023-02-03 Sergii Horichenko * Translated using Weblate (Ukrainian) (f341d4f8b) 2023-02-03 Guido Berhoerster * Merge branch 'personal/sunweaver/fix-lomiri-desktop-file' into 'main' (945397878) 2023-02-03 Mike Gabriel * data/lomiri.desktop.in.in: Drop Icon= key. It seems xgettext chokes on empty values. (9034ee771) 2023-02-01 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (f19551752) 2023-02-01 Mike Gabriel * Translated using Weblate (German) (076dae765) 2023-02-01 Hosted Weblate * Update translation files (7f8101a82) 2023-01-31 Mike Gabriel * Translated using Weblate (German) (6faf9a798) 2023-02-01 Guido Berhoerster * Merge branch 'personal/sunweaver/modernize-i18n' into 'main' (97ca41e17) 2023-01-31 Mike Gabriel * po/: Modernize i18n. (5625cbd77) 2023-01-30 Sergii Horichenko * Translated using Weblate (Ukrainian) (8d5e41dde) * Translated using Weblate (Russian) (396b90db1) 2023-01-28 Jami Kettunen * Merge branch 'personal/fredldotme/clipsurfacecontainer' into 'main' (93ac70a52) 2023-01-28 Alfred Neumayer * qml: Clip SurfaceContainer contents (1a814ad7f) 2023-01-24 gnu-ewm * Translated using Weblate (Polish) (eb9840ade) 2023-01-22 Sergii Horichenko * Translated using Weblate (Ukrainian) (8d5c693aa) 2023-01-21 Alfred Neumayer * Update lomiri-shell-application from 27 to 28 (64428dad8) 2023-01-20 Oren Klopfer * repush for CI (89e01af40) * Update file QtMirApplicationMocks.h (0b683c651) * Update 2 files (6eaa38798) * Update file launchermodeltest.cpp (f5c0b4df2) * Update file control (4ba0b6d8e) * Update file control (abca219c1) * Update file control (c55153d10) * Update 2 files (7a746974b) 2023-01-19 Asahi 95 * Translated using Weblate (Japanese) (76ba95741) 2023-01-17 Daniel Frost * Translated using Weblate (German) (8291f2d2c) 2023-01-15 Sergii Horichenko * Translated using Weblate (Ukrainian) (a0ab2157b) * Translated using Weblate (Russian) (9101d6828) 2023-01-15 Timothy G * Translated using Weblate (French) (6fb3e2df2) 2023-01-14 Dan * Translated using Weblate (Ukrainian) (568698f52) 2023-01-13 Sergii Horichenko * Translated using Weblate (Russian) (8400360f2) 2023-01-13 Ivo Xavier * Translated using Weblate (Portuguese) (9a6c12ca9) 2023-01-13 Timothy G * Translated using Weblate (French) (34e268a99) 2023-01-13 Ratchanan Srirattanamet * Merge branch 'personal/sunweaver/use-upstream-version-to-create-version-file' into 'main' (73860469a) 2023-01-13 Mike Gabriel * data/CMakeLists.txt: Don't abuse d/changelog for obtaining Lomiri's upstream version. We should obtain it from CMake. (f328eb777) 2023-01-12 Marius Gripsgard * Merge branch 'personal/fredldotme/compositorcrash' into 'main' (a806163b8) 2023-01-11 Alfred Neumayer * qml: Complete revert to deviceconfig-based virtual touchpad enablement (097b8dd2e) * qml: Hide internal phone screen from Workspace overview, take 2 (1b438697d) * plugins: Don't processEvents during LightDM operation (ea3694b12) 2023-01-12 Mike Gabriel * Merge branch 'personal/gberh/crossbuilder' into 'main' (106ce1d04) 2021-04-19 Alberto Mardegan * build: fix building with crossbuilder (b8532b048) 2023-01-11 Dan * Translated using Weblate (Ukrainian) (ba0fc6a1f) 2023-01-10 Mike Gabriel * Translated using Weblate (German) (f66c671c1) 2023-01-09 Jami Kettunen * Merge branch 'personal/fredldotme/oskissues' into 'main' (69fa4af7f) 2023-01-08 Alfred Neumayer * qml: Show workspace overview only on desktop & convergent tablets (34e454c9a) * qml: Revert to screencount-based osk enablement (ae36d1446) 2023-01-09 Mike Gabriel * Merge branch 'personal/gberh/xenial-merge' into 'main' (7ac5de9e5) 2022-07-13 Florian Leeber * Use autoTransform property for rotated images (6f2a1c25b) * Update QtQuick imports to 2.12 (a8c723e35) 2022-07-11 Florian Leeber * Fingerprint unlock: backoff time between retries, to not exhaust max retries too early (294d3751d) 2023-01-07 Alexander Richards * Translated using Weblate (Esperanto) (c758e14ce) 2023-01-04 Muhammad * Translated using Weblate (Urdu) (3e972a353) 2023-01-06 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (cae34f7bc) 2023-01-06 Daniel Frost * Translated using Weblate (German) (a623c03f0) 2023-01-06 Mike Gabriel * Merge branch 'main_-_clockpinmanager' into 'main' (7b8aff8cf) 2023-01-06 Lionel Duboeuf * Pincode by schema (6550821a6) * prevent unnecessary Prompts loading (026f1975f) 2023-01-06 Mike Gabriel * Merge branch 'main_-_tryShellfix' into 'main' (f60b9495e) 2022-12-28 Lionel Duboeuf * tryShell: Move deprecated Listem's ItemSelector to OptionSelector Fix dropdowns not displayed (202e280bd) 2023-01-04 Anonymous * Translated using Weblate (Ido) (62565742e) * Translated using Weblate (Tetum) (51eb8a71b) * Translated using Weblate (Scots) (157fdcb26) * Translated using Weblate (Franco-Provençal) (291a69fdb) * Translated using Weblate (Sindhi) (b62a8dbcf) * Translated using Weblate (Kabyle) (024a122c6) * Translated using Weblate (Pampanga) (f9c80bb20) * Translated using Weblate (Malagasy) (bbfcb49e0) * Translated using Weblate (Luxembourgish) (77940da6d) * Translated using Weblate (Lojban) (42503e799) * Translated using Weblate (French (Switzerland)) (76ff2e187) * Translated using Weblate (Tajik) (b35825dba) * Translated using Weblate (Lingala) (83e85ec19) * Translated using Weblate (Oromo) (3c583bf2a) * Translated using Weblate (Bemba) (792eca5af) * Translated using Weblate (Nyanja) (6c5806d13) * Translated using Weblate (Turkmen) (55dedd6a7) * Translated using Weblate (Friulian) (a0982641f) * Translated using Weblate (Macedonian) (879849298) * Translated using Weblate (Maori) (2b510a9dd) * Translated using Weblate (Pashto) (1443fdd1b) * Translated using Weblate (Dhivehi) (4e56e0e0e) * Translated using Weblate (Kurdish (Southern)) (64908d0f3) * Translated using Weblate (Kurdish (Northern)) (6ac09d4c4) * Translated using Weblate (Chinese (Min Nan)) (39fe0e68f) 2023-01-04 Muhammad * Translated using Weblate (Urdu) (50e1c04dc) 2023-01-04 Anonymous * Translated using Weblate (Telugu) (bf7561057) * Translated using Weblate (Shan) (2b7abe8bd) * Translated using Weblate (Nepali) (79ef9f9d0) * Translated using Weblate (Burmese) (7217a816c) * Translated using Weblate (Marathi) (a17b19be9) * Translated using Weblate (Malayalam) (98b7fae24) * Translated using Weblate (Lao) (ac5ff64df) * Translated using Weblate (Estonian) (bd9dfc2c2) * Translated using Weblate (Kurdish (Central)) (6a6867c40) * Translated using Weblate (Bulgarian) (e84b4e263) 2023-01-04 Mike Gabriel * Revert "Deleted translation using Weblate (Chinese (Traditional, Hong Kong))" (cbb253d3a) * Revert "Added translation using Weblate (Chinese (Traditional, Hong Kong))" (4156a7307) 2023-01-04 Weblate * Added translation using Weblate (Chinese (Traditional, Hong Kong)) (24db62dbe) 2023-01-03 Muhammad * Translated using Weblate (Urdu) (08c6c0cc0) 2023-01-04 Mike Gabriel * Deleted translation using Weblate (Chinese (Traditional, Hong Kong)) (eb664a3c3) 2023-01-03 Weblate * Added translation using Weblate (Ido) (f6dfa3ab4) * Added translation using Weblate (Tetum) (29ea137f9) * Added translation using Weblate (Scots) (9529de58a) * Added translation using Weblate (Franco-Provençal) (f52ea7640) * Added translation using Weblate (Sindhi) (5642ecc82) * Added translation using Weblate (Kabyle) (18eb69a64) * Added translation using Weblate (Pampanga) (d7fc3228e) * Added translation using Weblate (Malagasy) (5debd0c69) * Added translation using Weblate (Luxembourgish) (47be0dd6d) * Added translation using Weblate (French (Switzerland)) (4ec2f2f1f) * Added translation using Weblate (Lojban) (a2daceabd) * Added translation using Weblate (Tajik) (acf7f81e0) * Added translation using Weblate (Lingala) (55fe15486) * Added translation using Weblate (Oromo) (04ab4a6ba) * Added translation using Weblate (Bemba) (53f3676b5) * Added translation using Weblate (Nyanja) (de50f44bb) 2023-01-03 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (417b57cb8) 2023-01-02 Weblate * Added translation using Weblate (Turkmen) (840decd00) * Added translation using Weblate (Friulian) (c960c4e85) * Added translation using Weblate (Macedonian) (414c3b10c) * Added translation using Weblate (English (Canada)) (68d4fa598) 2022-12-29 Weblate * Added translation using Weblate (Maori) (ce1f1c00e) * Added translation using Weblate (Pashto) (7268f39e0) * Added translation using Weblate (Dhivehi) (7afe62970) * Added translation using Weblate (Georgian) (63293f789) 2022-12-29 Hosted Weblate * Update translation files (f19b22698) 2022-12-27 Dan * Translated using Weblate (Ukrainian) (32ff20a27) 2022-12-19 J. Lavoie * Translated using Weblate (Italian) (78416b0b8) * Translated using Weblate (French) (ebc8919f1) 2022-12-20 Denham McLaren * Translated using Weblate (English (Australia)) (8602a6a48) 2022-12-19 J. Lavoie * Translated using Weblate (German) (4d8a25828) 2022-12-19 Guido Berhoerster * Merge branch 'personal/sunweaver/hosted-weblate' into 'main' (6687d10f0) 2022-12-17 Mike Gabriel * README.md: Mention sponsorship of Hosted Weblate and point people to this project's URL on hosted.weblate.org. (825eb41a2) * po/: Drop ku.po (macro language) and provide kmr.po and sdh.po instead (ckb.po already existed). (1505a6ce0) * po/lomiri.pot: Update translation template. (dcefe6e17) 2022-12-17 Weblate * Added translation using Weblate (Chinese (Min Nan)) (d6788354c) * Added translation using Weblate (Bengali (Bangladesh)) (13f5512fc) * Added translation using Weblate (French (Canada)) (600a852e9) 2022-12-17 Dan * Translated using Weblate (Ukrainian) (5836c02ae) 2022-11-17 Mike Gabriel * Translated using Weblate (German) (e99a664d8) 2022-11-16 Luna Jernberg * Translated using Weblate (Swedish) (f10b989c3) 2022-11-09 Luna Jernberg * Translated using Weblate (Swedish) (ab983bb35) 2022-11-05 Milo Ivir * Translated using Weblate (Croatian) (55eaf4453) 2022-12-14 Marius Gripsgard * Merge branch 'personal/peat-psuwit/indicator-switch-set-state' into 'main' (38d382314) 2022-12-14 Ratchanan Srirattanamet * IndicatorMenuItemFactory: use changeState() for switch (6aa465d11) Fixes: https://gitlab.com/ubports/development/core/lomiri-indicator-network/-/issues/87 2022-12-12 Marius Gripsgard * Merge branch 'personal/fredldotme/desktopmode' into 'main' (608322859) 2022-12-05 Alfred Neumayer * qml & tests: Partially revert to old test behavior (fc466b67b) * plugins: Correctness to the TLWM OOM kill scenario (86b33e588) 2022-12-04 Alfred Neumayer * tests: Fix lomiri renaming in GSettings & some crashes (98ec72f65) * WindowManager: Fix crash during tapping of dead window surface/app (bdc8787e5) 2022-12-03 Alfred Neumayer * plugins: Avoid MirAL throwing exceptions for OOM-killed apps (89a954461) 2022-11-30 Alfred Neumayer * qml: Come closer to test-expected behavior (61d1ce21a) * tests: Adapt OrientedShell to new formFactor-based approach (322c50ca9) * qml: Restore orientation after stopping desktop mode session (0dcf76cbe) * qml: Restore screen size decisions during mode calulation (fba93aad6) * qml: Re-enable usageScenario property for the Stage (cb94f6041) * tests: Register "Screen" type in QML (99fc31b05) * tests: Add missing "ready" signal to MirSurface mock (1e91a31b0) * qml: Be smarter about surface state in ApplicationWindow (f19cfee0c) * qml: Fix disabled blur in the Launcher (2b0d12417) * qml: Fix build tests on amd64 (47be5e09b) * qml: Fix jumpy Spread close/recenter animation (6675afda1) * qml: Center workspace previews with Launcher margins in mind (8afb96a55) * qml: Avoid clash between Lomiri's & QtQuick.Window's "Screen" types (712b75996) * plugins: Register "Screen" type in QML (bc109a904) 2022-11-29 Alfred Neumayer * qml: Address review comments (181970db4) * plugins: Introduce FormFactor enum for Screens (e4a2de540) * qml: Force splash screen away during desktop mode transition (d19bd1b66) * qml: Increase blur radius for desktop usecase (ea31ca0ea) * qml: Fix window positioning in the WorkspacePreview (d981e4e3d) * qml: Fix OSK settings schema id (ee23d5f78) 2022-11-27 Alfred Neumayer * qml/Stage: Fix flicker between splash & surface states (93e42fba3) 2022-11-26 Alfred Neumayer * qml: Add TODO for secondary greeter (129346691) * plugins: ScreenWindow: Fix setScreen call (8474661ae) * qml: Various changes (dc5b8bd68) 2022-11-23 Alfred Neumayer * qml & plugins: Various changes (89b50e973) 2022-11-16 Alfred Neumayer * qml: Recalculate grid units during multimonitor use (e01534cff) * qml: Fix Greeter pass/PIN entry (5ceacfc3f) 2022-11-14 Alfred Neumayer * qml: Make desktop mode codepaths pass (061641f6d) 2022-12-12 Alfred Neumayer * Merge branch 'personal/mariogrip/indicatorfixes' into 'main' (d0d6760a9) 2022-12-08 Marius Gripsgard * [tests] Adjust panel tests to work with ayatana (a06f12a62) 2022-11-28 Marius Gripsgard * [panel] Change hack session and keyboard hack to ayatana (1d1b682b8) 2022-12-05 Mike Gabriel * Merge branch 'build/fix-clickable' into 'main' (f16236daa) 2022-11-26 Maciej Sopylo * clickable: amend package names that won't exist in 22.04 (d987d7867) 2022-11-02 Maciej Sopylo * clickable: switch to yaml (8b912242f) * clickable: fix dependencies for building (26b13e4c3) 2022-12-05 Marius Gripsgard * Merge branch 'YUMI-7-fix-xdgwatcher-race-condition' into 'main' (c4fc47685) 2022-12-04 Maciej Sopylo * Fix race condition in XdgWatcher (5763a2877) 2022-11-27 Mike Gabriel * Merge branch 'personal/mariogrip/focal_-_noqtsystemneeded' into 'main' (849d43e34) 2022-11-24 Marius Gripsgard * Remove dependencies on qtsystem (097656fd0) 2022-11-27 Marius Gripsgard * Merge branch 'personal/fredldotme/drawerblur' into 'main' (02dfa9c1d) 2022-11-27 Alfred Neumayer * qml: Use new GSettings for en-/disabling BackgroundBlur (3e2cb14f6) * qml: Further visual changes to indicator Panels (40d2b1089) 2022-11-14 Alfred Neumayer * qml: Additional blur fixes (65af1106a) 2022-11-11 Alfred Neumayer * qml: Clean up after property removal (1e9217144) * qml: Blurred indicator & menu drop downs (76431e6ff) 2022-10-20 Alfred Neumayer * qml: Add copyright to BackgroundBlur (5201576f0) 2022-10-19 Alfred Neumayer * qml: Even faster blurred Drawer (4849f8be7) 2022-10-20 Alfred Neumayer * qml: Unconditionally enable the Blurred Drawer (6418d4e9c) 2022-08-17 Alfred Neumayer * qml: Further simplify BackgroundBlur (a4891a550) 2022-07-13 Alfred Neumayer * qml: Improve Interactive Blur performance (56a09c75c) 2022-01-17 Alfred Neumayer * qml: Re-introduce interactive Drawer blur on capable devices (262613bbb) 2022-11-23 Mike Gabriel * Merge branch 'personal/fredldotme/fixsuperkeydrawerdismiss' into 'main' (0420e2155) 2022-10-20 Alfred Neumayer * qml: Unfocus launcher when dismissing Drawer (c671bd59a) 2022-11-23 Mike Gabriel * Merge branch 'gberh/personal/disable-armhf-tests' into 'main' (446fc3cbf) 2022-11-23 Guido Berhoerster * Temporarily skip tests on armhf (efdf2dde4) 2022-11-22 Mike Gabriel * Merge branch 'main_-_hinttruncation' into 'main' (e933489e4) 2022-11-16 Lionel Duboeuf * Notifications: increase to max 20 the limit the number of lines when hint "x-canonical-truncation" is set to false (f9f63c87b) 2022-11-22 Mike Gabriel * Merge branch 'personal/mariogrip/focal_-_fix-compiler-warnings' into 'main' (6d2c3ddc8) 2022-03-15 Marius Gripsgard * src: tests: Remove unused vars and mark unused return value as unused (2418313ef) * plugins: avoid copy by refrencesing (compiler warning) (e078afb2f) 2022-11-20 Mike Gabriel * Merge branch 'rename-properties' into 'main' (22b28a847) 2022-11-18 Guido Berhoerster * Add type assignment for indicator-transfer (94d3d86b4) * Rename Button Section Menu item attributes (b1aaa55b2) * Rename Transfer Menu item attributes (23f74c667) * Rename Notifiation Menu item attributes (3330296b2) * Rename Switch Menu item attributes (2acc36cc5) * Rename Wifi Access Point Item attributes (257b109de) 2022-11-17 Guido Berhoerster * Rename Playback menu item attributes (876cc0230) * Rename Time Zone item attributes (6842caa84) * Rename Appointment Menu item attributes (440c57102) * Rename Message Menu item attributes (49a59b408) * Rename Slider item attributes (f2151125c) 2022-11-16 Guido Berhoerster * Rename system indicator root item action attributes (3d979e99d) 2022-11-19 Mike Gabriel * Merge branch 'fix-spelling' into 'main' (f782f0100) 2022-11-11 Guido Berhoerster * Fix spelling of the word "initial" (6c24b2a63) 2022-11-02 Guido Berhoerster * Merge branch 'personal/sunweaver/install-docs-into-html-subfolder' into 'main' (5b7787fd5) 2022-11-02 Mike Gabriel * debian/lomiri-doc.install: Adjust to new doc installation path. (0a91a15c7) * doc/Doxyfile.in: Set 'PROJECT_NAME' to 'Lomiri', not 'Lomiri 8'. (566b41c8d) * doc/: Install Lomiri documentation into subfolder 'html/' within /usr/share/doc/lomiri/. (f68eb9023) 2022-11-02 Guido Berhoerster * Merge branch 'personal/sunweaver/shell-private-libexecdir' into 'main' (3e6d74235) 2022-11-02 Mike Gabriel * debian/lomiri-tests.lintian-overrides: Adjust to new SHELL_PRIVATE_LIBEXECDIR. (fdbf6547c) * debian/lomiri-tests.install: Adjust to introduction of SHELL_PRIVATE_LIBEXECDIR installation path in CMake. (c20b42b7a) * CMake: Introduce SHELL_PRIVATE_LIBEXECDIR and install unit test executables into that (non-multi-arch) path. (c3ca49506) 2022-11-02 Guido Berhoerster * Merge branch 'personal/sunweaver/copyright-headers' into 'main' (236574a68) 2022-10-31 Mike Gabriel * copyright headers: No dash between YEAR and copyright holder. (f5aeca553) * copyright headers: Use uniform spelling of 'UBports Foundation'. (39f0887c1) * copyright headers: Use uniform spelling of 'Canonical Ltd.'. (ce684afb3) * copyright headers: Use uniform spelling of 'Canonical Ltd.'. (f6656b214) 2022-10-08 Ratchanan Srirattanamet * Merge branch 'fix-lomiri-connectivity-mock' into 'main' (596f06cbf) 2022-08-04 Guido Berhoerster * Rename Bandwith to Bandwidth in Lomiri.Connectivity mock (9c6ba3bca) 2022-10-06 Mike Gabriel * Merge branch 'personal/mariogrip/focal_-_use-std' into 'main' (a9ec717ba) 2022-03-15 Marius Gripsgard * plugins: use std::sort as qSort is deprecated (d2d1084f5) * plugins: use std::find as qFind is deprecated (e20713dec) 2022-10-05 Mike Gabriel * Merge branch 'personal/mariogrip/focal_-_newer-qt-depri' into 'main' (f0935ec2e) 2022-03-15 Marius Gripsgard * plugins: Use .loadReleaxed() on qt version 5.14 and up (286c1d147) * src: Use Qt::SkipEmptyParts for qt version 5.14 and up (fb7ed37fb) * plugins: Use Qt::endl for qt versions 5.14 and up (bd7d63850) * plugins: tests: Use qmlRegisterAnonymousType for qt versions 5.14 and up (81e79c65f) 2022-09-05 Ratchanan Srirattanamet * Merge branch 'fix-notification-hints' into 'main' (ff70ecf05) 2022-08-12 Guido Berhoerster * Rename notification hints (f1f3da5e0) 2022-07-06 Ratchanan Srirattanamet * Merge branch 'personal/sunweaver/lomiri-pulls-in-ubuntu-indicators' into 'main' (e7bc87f88) 2022-07-05 Mike Gabriel * d/control: Recommend ayatana-indicator-{keyboard,session} instead of indicator-{keyboard,session}. (bf076283d) 2022-06-14 Mike Gabriel * Merge branch 'personal/peat-psuwit/workaround-ayatana-switch' into 'main' (6e62b056b) 2022-06-14 Ratchanan Srirattanamet * Workaround Ayatana Indicators' switch action parameter (bbb4dc26a) Fixes: https://gitlab.com/ubports/development/core/lomiri/-/issues/17 2022-05-31 Ratchanan Srirattanamet * Merge branch 'personal/mariogrip/focal_-_morecruft' into 'main' (11f29d3ab) 2022-05-28 Marius Gripsgard * cruft: Remove MediaServices (440dbbf32) 2022-05-31 Ratchanan Srirattanamet * Merge branch 'personal/mariogrip/focal_-_deviceinfo' into 'main' (bc9e941cb) 2019-09-18 Marius Gripsgard * Replace own config parser with libdeviceinfo (088ce4557) 2022-04-12 Ratchanan Srirattanamet * Merge branch 'reenable-telephony-api' into 'main' (e95763233) 2022-04-05 Guido Berhoerster * Use current, non-compat name of telephony-service QML module (d4ad18b3f) 2022-03-27 Florian Leeber * Merge branch 'fix-screenshot-sound' into 'main' (0c22fb13e) 2022-03-23 Jami Kettunen * Fix playback of camera_click.ogg during screenshot (d07fb96d8) 2022-03-18 Ratchanan Srirattanamet * Merge branch 'reenable-wizard' into 'main' (676b54931) 2022-03-18 Guido Berhoerster * Depend on lomiri-system-settings again (2c0587c5d) 2022-03-15 Guido Berhoerster * Re-enable telephony functionality (ee1b87933) 2022-03-15 Ratchanan Srirattanamet * Merge branch 'personal/mariogrip/focal_-_hfd' into 'main' (4017243cd) 2020-03-21 Marius Gripsgard * Replace own lights plugin with hfd leds (db067c0e9) 2022-03-10 Marius Gripsgard * Revert "Test and use hfd if Android SDK indicates it" (740574b54) * Merge branch 'personal/peat-psuwit/merge-xenial-2022Jan' into 'main' (98d44d695) 2022-02-22 Ratchanan Srirattanamet * Merge branch 'remove-upstart' into 'main' (e407730d7) 2022-02-18 Guido Berhoerster * Fix failing copyright test (52389b331) 2022-02-17 Guido Berhoerster * Remove upstart jobs and dead code (f59d52dd6) 2022-02-16 Guido Berhoerster * Remove upstart event from lomiri (82a96ab34) * Remove upstart usage from the first run wizard (4b381c794) * Remove unused upstart jobs (7dea642b0) * Remove upstart usage from the greeter wrapper (65552470f) 2022-01-12 Dalton Durst * Merge branch 'personal/peat-psuwit/ayatana-indicators' into 'main' (decf11e1d) 2022-01-12 Ratchanan Srirattanamet * Update references of indicators to Ayatana ones where appropriate (29ad9f3b8) Fixes: https://gitlab.com/ubports/core/lomiri/-/issues/8 * REAEME.md: update to reflect the situation of this repo/branch (609ab6e97) * Rename newly-added things (381f888a1) * Merge remote-tracking branch 'github_ubports/xenial' into personal/peat-psuwit/merge-xenial-2022Jan (4ce574e13) 2022-01-07 Rahammetoela Toekiman * Match the 'emergency' bar to the new greeter design (#418) (567f83393) 2022-01-05 Dalton Durst * Merge branch 'personal/peat-psuwit/finish-qmenumodel1.0' into 'main' (b7a81f062) 2021-12-24 Ratchanan Srirattanamet * debian/control: migrate QMenuModel QML package name (8f13660d3) * tests/mocks: also rename QMenuModel's directory and QML file (df4564481) 2021-12-17 Marius Gripsgard * tests: Bump QMenuModel to 1.0 to match upstream (a7bd745a7) 2021-12-16 Marius Gripsgard * Merge branch 'mr/qmenumodel-1-0' into 'main' (405c3a6eb) 2021-12-08 Dalton Durst * binpkg lomiri provides notification-daemon (9219efe2a) 2021-11-30 Robert Tari * Bump QMenuModel to 1.0 (62aa960f1) 2021-11-29 Marius Gripsgard * Merge branch 'mr/rename-unitymenu' into 'main' (d8ca7defd) 2021-11-16 Robert Tari * Rename UnityMenuAction and UnityMenuModel source files and symbols (46b2531dd) 2021-11-29 Marius Gripsgard * Merge branch 'pr/rename-com-ubuntu-accountsservice-input' into 'main' (7ee258946) 2021-11-11 Robert Tari * Rename com.ubuntu.AccountsService.Input (40b446db6) 2021-11-27 Marius Gripsgard * Merge branch 'mr/rename-com-ubuntu-accountsservice-securityprivacy' into 'main' (21f829622) 2021-11-26 Dalton Durst * Merge branch 'personal/peat-psuwit/fix-as-migration' into 'main' (32605f4b5) 2021-11-26 Ratchanan Srirattanamet * Merge branch 'mr/replace-schema-dependencies' into 'main' (9ac7b83bc) 2021-11-05 Robert Tari * debian/control: Replace schema dependencies (4becbae2f) 2021-11-26 Robert Tari * Drop com.lomiri.Shell.gschema.xml (b22d0daaa) 2021-11-05 Robert Tari * Rename com.ubuntu.AccountsService.SecurityPrivacy (bd27ae3e3) 2021-11-25 Ratchanan Srirattanamet * debian/session-migrations/AS: use .items() to iterate over dict (3fd82c235) * debian/session-migrations/AS: fix type hint (da3b81f2a) 2021-11-24 Marius Gripsgard * Merge branch 'mr/rename-x-canonical-value-bar-tint' into 'main' (bcf2c9267) * Merge branch 'main' into 'mr/rename-x-canonical-value-bar-tint' (af8a1560a) * Merge branch 'mr/rename-com-ubuntu-touchaccountsservice-securityprivacy' into 'main' (b2becdf1f) * Merge branch 'pr/rename-com-ubuntu-touch-system' into 'main' (edf1283e8) 2021-11-03 Robert Tari * tests/qmltests/Notifications/tst_Notifications.qml: Rename x-canonical-value-bar-tint (eb16fba1d) 2021-11-23 Marius Gripsgard * Merge branch 'pr/x-canonical-to-x-ayatana' into 'main' (6df29d3b8) 2021-11-23 Capsia * Greeter redesign (#401) (4eca819e2) 2021-10-26 Robert Tari * Renaname x-canonical properties (33c7b7d6b) 2021-11-02 Robert Tari * Rename com.ubuntu.touch.AccountsService.SecurityPrivacy (e8376e649) 2021-10-29 Robert Tari * Rename com.ubuntu.touch.system to com.lomiri.touch.system (c6fd26b16) 2021-10-26 Florian Leeber * Merge pull request #414 from ubports/xenial_-_hfd-for-lights (72b1dc2d0) 2021-10-23 Florian Leeber * Review comments (9a63ce256) 2021-10-17 NotKit * Merge pull request #417 from ubports/xenial_-_ghostwindowfix (3981e796a) 2021-10-07 TheKit * Fix ghost window if application creates and destroys surface early in lifecycle (ff11a2443) 2021-10-02 Florian Leeber * Test and use hfd if Android SDK indicates it (e0e471352) 2021-10-03 Florian Leeber * Merge pull request #415 from ubports-weblate/weblate-ubports-lomiri (7b30fe351) 2021-10-03 Weblate * Translated using Weblate (Arabic) - 100.0% (185 of 185 strings) (47e1c1570) 2021-09-30 Ratchanan Srirattanamet * Merge branch 'pr/fix-ayatana-indicators-target-name' into 'main' (ec1403380) 2021-09-29 Dalton Durst * Merge branch 'pr/update-ido-names' into 'main' (97def94af) 2021-09-21 Rodney * Merge pull request #413 from ubports-weblate/weblate-ubports-lomiri (23128af13) 2021-09-21 Weblate * Translated using Weblate (Dutch) - 100.0% (185 of 185 strings) (620a196fa) 2021-09-20 Robert Tari * Update Ayatana IDO names (a0efcc4c4) 2021-08-31 Marius Gripsgard * Merge branch 'personal/usb/add-ayatana' into 'main' (0bff88ffd) 2021-08-23 Robert Tari * data/systemd-user/lomiri-MODE.service.in: Fix Ayatana indicators target name (2c57f585e) 2021-08-22 Rodney * Merge pull request #411 from ubports/xenial_-_camera-sound (51f9f282b) 2021-08-21 Rodney * Merge pull request #412 from ubports-weblate/weblate-ubports-lomiri (ba40239a8) 2021-08-21 Weblate * Translated using Weblate (Czech) - 100.0% (185 of 185 strings) (016f06dbe) 2021-08-20 Dalton Durst * Add tests for support for ayatana indicators (44fb59b36) 2021-08-19 Florian Leeber * Change path to our own sound package (4dc2b58e4) 2021-08-17 Rodney * Merge pull request #410 from ubports-weblate/weblate-ubports-lomiri (0e113043d) 2020-08-11 Marius Gripsgard * [Indicators] Add support for ayatana indicators (9c0e318eb) 2021-08-10 Weblate * Translated using Weblate (Japanese) - 53.5% (99 of 185 strings) (b49296652) 2021-06-16 Dalton Durst * Update README to reflect clickable usage and current repo situation (8c18280d1) * Add test suite to enable clickable test-libs (20620d9cd) * Add support for building with Clickable (700e2bd5b) 2021-07-30 Rodney * Merge pull request #406 from ubports-weblate/weblate-ubports-lomiri (cc0661c7d) 2021-07-28 Rodney * Merge branch 'personal/peat-psuwit/mariogriprename-plus' into 'main' (d34a00c1e) 2021-07-28 Ratchanan Srirattanamet * Update crossbuilder's post_deploy script to work with systemd user units (018fe92f2) 2021-07-26 Weblate * Translated using Weblate (Swedish) - 87.5% (162 of 185 strings) (a293c1db6) 2021-07-09 Ratchanan Srirattanamet * plugins/LightDM: put greeter DBus objects in a subpath (e7a245c14) 2021-07-07 Ratchanan Srirattanamet * d/control: remove Break/Replace not applicable for the new pkg (487a7a68d) 2021-06-21 Ratchanan Srirattanamet * systemd-user: set SyslogIdentifier (6dae64656) 2021-06-17 Ratchanan Srirattanamet * Use the renamed liblomiri-connectivity-qt1 (7a742fa05) * Rename some indicator-network-specific indicator type (393e3e133) * Load indicators from /usr/share/unity/indicators for compatibility (90b14a294) 2021-06-15 Ratchanan Srirattanamet * d/*: add session-migration scripts for things that we rename (06732e02a) * plugins/Wizard: move the wizard-has-run file to ~/.config/lomiri (08a7a6116) 2021-06-12 Ratchanan Srirattanamet * data/systemd-user: use -pre target names (f429a7229) 2021-06-02 Ratchanan Srirattanamet * plugins/Powerd: rename interface back to com.canonical.Unity (de5aefdbf) 2021-06-01 Ratchanan Srirattanamet * lomiri-systemd-wrapper: change env var for specifying 1-time binary (5f158f2eb) 2021-05-31 Ratchanan Srirattanamet * GlobalShortcut: do explicit ignore() on the event (55002cdda) 2021-05-25 Ratchanan Srirattanamet * Rename system-compositor interfaces to the new name (d0d1ce22b) 2021-05-06 Ratchanan Srirattanamet * dbuslomirisessionservice: change the way we lookup our session (de98a74fc) 2021-05-04 Ratchanan Srirattanamet * systemd-user: also set WAYLAND_DISPLAY (8e51539bd) 2021-05-03 Ratchanan Srirattanamet * Add systemd user units for Lomiri (b28f767a4) 2021-04-30 Ratchanan Srirattanamet * src: notify systemd that we're ready (1b6164636) 2021-05-22 Ratchanan Srirattanamet * tests/mocks/indicators: check for renamed battery icon (7f264255e) 2021-05-18 Ratchanan Srirattanamet * WorkspaceManager: make sure the singleton has CppOwnership (30d2e1f24) * tst_Shell: wait for visuallyMaximized's animation to finish (e370c84e2) 2021-05-14 Ratchanan Srirattanamet * QmlTest: remove obsolete LD_PRELOAD (af2965d61) 2021-07-20 Rodney * Merge pull request #400 from ubports-weblate/weblate-ubports-lomiri (7422ed2e3) 2021-07-18 Weblate * Translated using Weblate (Italian) - 100.0% (185 of 185 strings) (da8d72056) 2021-06-14 Rodney * Merge pull request #396 from ubports-weblate/weblate-ubports-lomiri (a256c927c) 2021-06-13 Weblate * Translated using Weblate (Chinese (Simplified)) - 100.0% (185 of 185 strings) (8fca0182c) 2021-06-03 Dalton Durst * Optimize Wallpaper loading to reduce shell lag (840777f92) 2021-06-02 Dalton Durst * Optimize wallpapers for load times and memory use (a81421ac1) * Fix Greeter Wallpaper being positioned differently (c3211f766) 2021-06-02 Rodney * Merge pull request #392 from ubports-weblate/weblate-ubports-lomiri (15dc6d6fe) 2021-06-01 Weblate * Translated using Weblate (Polish) - 100.0% (185 of 185 strings) (5fbf87c12) 2021-06-02 Rodney * Merge pull request #393 from ubports/xenial_-_fix-shell-mode (7d1a7e401) 2021-06-01 Rodney * Merge pull request #391 from ubports/xenial_-_drawer-input-field-changes (e71457d35) * Merge pull request #386 from ubports-weblate/weblate-ubports-lomiri (bc4a0a682) 2021-06-01 Weblate * Translated using Weblate (Portuguese) - 100.0% (185 of 185 strings) (d68d4597c) 2021-06-01 Dalton Durst * Fix opening the Drawer and apps when Lomiri runs as a shell (55d72d7a8) 2021-06-01 Ratchanan Srirattanamet * PhysicalKeysMapper: handle first power button long press correctly (bdbbb2011) 2021-05-31 Dalton Durst * Fix edge cases in Drawer searching (fcc3d498e) * Prevent Drawer focus from flapping during transitions (5f8478207) * Fix issues dismissing Drawer on large screens (c6628ec12) * Save lots of memory (#388) (5d5c433e2) 2021-05-20 Marius Gripsgard * debian: B-D Use renamed content hub package (ebba05a5f) 2021-05-12 Ratchanan Srirattanamet * Wizard: rename pkla file name to com.lomiri.wizard (6ef7a8773) 2021-05-11 Ratchanan Srirattanamet * Rename greeter DBus services to com.lomiri.LomiriGreeter (3129de7ab) * Rename our own DBus services to com.lomiri.Shell (4cb0602ce) * Rename our own AccountsService schema to com.lomiri.shell (9b2f35f00) 2021-04-14 Marius Gripsgard * gsettings: Merge old unity8 and unity7 into a new schema (6cda68e55) 2021-05-05 Ratchanan Srirattanamet * Revert incorrect default wallpaper rename (4559106bb) 2021-04-29 Ratchanan Srirattanamet * Migrate to QtMir.Application (959ae3696) 2021-04-27 Ratchanan Srirattanamet * d/control: temporary disable lomiri-system-settings (39987cb0e) * ActiveCallHint: temporary disable Lomiri.Telephony dependency (655e427ce) * LomiriApplication: print load error through qDebug() (d08ee8101) 2021-04-23 Ratchanan Srirattanamet * Rename AccountsService schema back to com.ubuntu (47dc81cb0) * Rename gsettings schema back to com.ubuntu (6fc3a423d) * Rename LomiriMenuAction back to UnityMenuAction (ec1a0bf55) 2021-04-22 Ratchanan Srirattanamet * d/control: remove breaks/replaces not applicable to the new pkg name (311339635) * d/control: remove dependencies to thumbnailer virtual package (f2859ba1e) 2021-04-23 Ratchanan Srirattanamet * d/control: adds missing QML dependencies (0bfe7fc6f) 2021-04-22 Ratchanan Srirattanamet * d/control: modernize some QML module pkg names (e24caac74) 2021-04-21 Ratchanan Srirattanamet * d/control: adapt to qtmir packaging change (5c321b012) * d/control: add missing B-D (dda80549a) 2021-05-20 Marius Gripsgard * qml: Fix type error if panelState is undefined (cb8f7b8ae) * tests: Set overflow timeout to 1ms (11d60a24e) * tests: Add regex to handle *-symbolic icons (1c1783ae7) 2021-04-17 Marius Gripsgard * WM: Make sure to clear all workspaces on destruction to avoid race condition (c4360e155) * shell: Use renamed ModemConnectivity (bed321adf) 2021-04-14 Marius Gripsgard * debian: start new release (581c40c08) * URLDispatcher: Use lomiri urldispatcher (484dba3f4) * CMake: Search for Lomiri system settings instead of old system settings (cd823bc66) * tests: check_copyright ignore common build dirs (bcf61c110) * debian: Move jenkinsfile to debian folder (0b64bec94) * debian: Remove bileto hook (5a7e89d04) * debian: Add missing dep on settings menu (112820ed7) * debian: Use lomiri renamed components (74e6b1ece) * debian: Fix bad rename of fonts (dda665703) * tests: Copyright test should ignore .git folder (049843304) * qml: Add missing copyright (01b7fd25c) * plugins: Rename Lomiri.Connectivity to Lomiri.ModemConnectivity (c401e3f59) * tests: Rename lomiri.test to lomiri.selftest to avoid conflict with LUT (93cf67fa7) * QMenuModel still uses unity namespace, so rename back to that (2a464a07e) * Merge old Ubuntu and Unity folders into Lomiri (35e9be4e3) 2021-05-14 Joan CiberSheep * Top panel from positive to activity (#324) (9d5411fd4) 2021-05-13 Rodney * Merge pull request #369 from ubports-weblate/weblate-ubports-lomiri (5b6dffbb2) 2021-05-09 Weblate * Translated using Weblate (Japanese) - 46.4% (86 of 185 strings) (09be1d53f) 2021-04-16 Kugi Eusebio * Corrected terminal app ID (01f0347e5) 2021-05-13 Kugi Eusebio * Changed design of side stage handle (#374) (e1ebb5c62) 2021-04-12 Marius Gripsgard * Initial dirty rename unity -> lomiri (30c24572c) * Initial dirty rename unity8 -> lomiri (0711b090b) * Initial dirty rename ubuntu -> lomiri (8a8ac3de7) 2021-04-08 Marius Gripsgard * tests: re-enable fixed test (e07a351c9) * Merge remote-tracking branch 'origin/xenial' into xenial_-_edge (33ceebd9f) 2021-03-21 Florian Leeber * Merge pull request #368 from ubports-weblate/weblate-ubports-lomiri (9ec9925db) 2021-03-18 Weblate * Translated using Weblate (French) - 100.0% (185 of 185 strings) (297ef95ef) 2021-02-18 Rodney * Merge pull request #367 from kugiigi/xenial_-_edgesens (71d3c150f) 2021-02-04 Kugi Eusebio * Changed type of edge-barrier-sensitivity (c39d8fe8b) 2021-01-29 Rodney * Merge pull request #366 from ubports/xenial_-_speed-up-tests (e1621b6b6) 2021-01-29 Dalton Durst * Update translation sources (1ebf4f873) 2020-12-27 Kugi Eusebio * Changed Unity 8 to Lomiri in shortcuts overlay (7772c3411) 2021-01-17 Dalton Durst * Use light indicators in ShellWithPin and Tutorial (b4b2a5ddb) * Add light indicators to tst_Shell (805b90461) * Add 'light' property to IndicatorsModel for tests (eba99afd4) 2021-01-29 Rodney * Merge pull request #363 from ubports/xenial_-_fix-lights (49c89db2b) * Merge pull request #365 from ubports/xenial_-_replace-test-loaders (d4566397d) 2021-01-28 Dalton Durst * Remove SurfaceManager creation in ::instance() (dbb33c85c) * Update tst_Tutorial to remove Loaders (977d1d77c) 2021-01-17 Dalton Durst * Update tst_Shell to remove Loaders (b3fb0fcea) * GlobalShortcut: Handle window being set at creation (df1185e2f) 2021-01-28 Dalton Durst * Fix pulsing notification LED on unread message (2011f63af) 2021-01-27 Rodney Dawes * Don't use peeking animation when drawer is open (6119aafdc) 2021-01-26 Willem-Jan de Hoog * fix for notification led (#359) (76f577d89) 2021-01-26 Marius Gripsgard * tests: Fix tests after bringing in qt 5.12 fixes (82c223b12) * tests: qmltests: shell: ExpectFail on broken compeare instead (e87603d07) * tests: qmltests: greeter: enable working test (0ddcd2978) 2021-01-19 Marius Gripsgard * Merge remote-tracking branch 'origin/xenial' into xenial_-_edge_-_qt-5-12 (aab8ce699) 2021-01-20 Dalton Durst * Use empty qstring instead of nullptr (ac69b1626) 2021-01-18 Dalton Durst * Standardize on '&varName' instead of 'TypeName&' (5bed8a125) * Remove Q_PROPERTY declarations (5feb0be03) * Make AsyncQuery members as static as possible (0e6c52cfe) * Init AsyncQuery asynchronously (41c6cd174) * Test for warnings when AsyncQuery fails to init (b096586d9) * Connect saveState as a signal instead of invoking (f20cd94f8) * Add a one-second timeout to prevent deadlocks (cac838443) * Move AsyncQuery entirely into cpp file (af15c2ac2) 2021-01-16 Dalton Durst * Rewrite WindowStateStorage for improved async power (add6528f9) 2021-01-17 Marius Gripsgard * Merge pull request #355 from ubports/xenial_-_qt-5-12 (f821fd2ee) * Merge remote-tracking branch 'origin/xenial_-_qt-5-12' into xenial_-_edge_-_qt-5-12 (d8e3e786d) * Merge remote-tracking branch 'origin/xenial' into xenial_-_edge_-_qt-5-12 (c5241da60) 2021-01-15 Rodney Dawes * Revert orientationChangesEnabled comparison in tst_OrientedShell (33d9fd1b9) 2021-01-14 Dalton Durst * Fix LauncherPanel tests with Qt 5.12 (627bd76e7) 2021-01-14 Rodney Dawes * Apply the SurfaceManager related fixes for tst_OrientedShell as well (bd0786a0f) 2021-01-13 Dalton Durst * tst_ShellWithPin: Remove useless wait() (81062a321) * tst_ShellWithPin: Replace loader with temporary object (c81a2f48a) 2020-11-02 Rodney Dawes * Make splash follow platform guide described behavior (27dc6a0bb) * Remove lingering scopes reference in shortcut overlay (0a85228a9) 2020-10-28 Rodney Dawes * Skip on arm64 again for now, to ignore the SIGBUS in CI (700ac09de) * Skip tests failing due to other skipped tests (4950b8f6c) * Improve test running. (bc88941d7) * Skip some tests failing on all archs with Qt 5.12 (5802fb181) 2020-10-26 Rodney Dawes * Actually fix the showable warnings (4be52fe06) * Fix QML alignment and type errors (0e427b008) * Add missing mock data for Wizard plugin (72d2d9893) * Fix animation property types (8b3b35d20) * Remove unused mock setting and add missing oskSwitchVisible setting. (ee1fffa0a) 2020-10-24 Rodney Dawes * Build-Depends on ubports-wallpapers to quiet some warnings in tests (3f5836472) 2020-10-23 Rodney Dawes * Adjust spacing math so columns don't get stripped off on some devices (cf60c3d62) 2020-09-22 Rodney Dawes * Use Item instead of invalid internal Object type (c5802b537) 2020-09-02 Rodney Dawes * Load splash image at original size, and preserve aspect to fit (6d2164131) 2020-09-01 Rodney Dawes * Fix the missing column issue. (f4c27c362) 2020-08-26 Rodney Dawes * Clean up and updatet deprecated qml module dependencies (3c1830f92) 2020-08-06 Rodney Dawes * Succeed even with test failures for now. (bf86773eb) * Remove useless try/catch here. (b2bee920b) * Fix test to pass (7e068e129) * Fix mock surface manager creation. (61ed5fcf4) * Fix tests to pass (851cbbab0) * Fix anchors (9e62ce861) * Fix type error (ee2a11f6f) * Fix anchors (47c608d6c) * Fix type errors (16ab292e7) * Reduce extraneous binding of variable. (4537fc960) * Remove unused ResponsiveGridView (ac396ae2b) 2020-07-28 Rodney Dawes * Fix more type errors (0a9395ee2) * Fix window state storage tests (6931e293c) * Fix Type errors (01fcb7a1d) * Fix anchors warnings in Layout usage. (704f0b220) * Use QString here to eliminate JS conversion errors. (041f34d54) 2020-07-24 Rodney Dawes * Fix verify vs tryCompare usage. (4e9f67b51) 2021-01-04 Rodney * Merge pull request #354 from ubports/update-jenkinsfile (3741ec20d) 2021-01-04 Florian Leeber * Update Jenkinsfile to template version (b84f35a07) 2020-12-16 ubports-weblate * Translations update from Weblate (#348) (66dd9555c) 2020-11-30 Dalton Durst * Merge pull request #347 from ubports-weblate/weblate-unity8-unity8 (873c24dc2) 2020-11-30 Weblate * Translations update from Weblate for Unity8/Unity8. (60a76813f) 2020-11-05 Joan CiberSheep * Make Buttons in Notification bubble follor HIG (#336) (c1cdff170) 2020-11-05 Dalton Durst * tst_NarrowView: Use Qt's DoubleClick, not tapping (#339) (8ec377743) * MenuBar test: Wait for overflow menubar to render (#338) (a4f840aec) 2020-10-14 Dalton Durst * Skip test_drag_indicator_item_down_shows_menu (d87fbf77a) 2020-10-08 ubports-weblate * Translations update from Weblate (#323) (ae18d14a4) 2020-10-08 DEADBLACKCLOVER * Update README.md (#322) (f249ded3d) 2020-09-25 Kevin Keijzer * Add screenshot button to power menu (#329) (01fed9a06) 2020-08-26 Marius Gripsgard * [tests] Temporarily skip 2 non critical tests (11d0d6338) * [qml/OrientedShell] screens is now static (9de50826e) * [tests/PhoneStage] Remove expected fail as surprise launch works now (dddb22555) * [qml/launcher] Show drawer if bfb is pressed even if no apps are open (632c6acb4) * Fix input tests and remove unused varables (5e9a35f6a) * Fix tests after bad merge (956eecf2f) 2020-08-24 Marius Gripsgard * Merge remote-tracking branch 'origin/xenial' into xenial_-_edge_-_multiscreen (00e1ec026) 2020-07-28 Marius Gripsgard * Merge pull request #319 from ubports/xenial_-_centerednoappshint (e2c28d65c) 2020-07-26 Florian Leeber * Merge pull request #321 from ubports-weblate/weblate-unity8-unity8 (98881cb29) 2020-07-26 Weblate * Translated by Adolfo Jayme Barrientos using Weblate (Catalan) - 100.0% (185 of 185 strings) (a8cac7db9) 2020-01-11 Joan CiberSheep * Enable inverted portrait for Arale (69ac8c540) 2020-07-10 Alfred Neumayer * Shell & Stage: Use margin to place the 'No running apps' hint beside the launcher (8bc07afaf) 2020-06-15 Dalton Durst * Force the suru icon theme on all Lomiri tests (d07cfbed2) 2020-06-16 Florian Leeber * Merge pull request #312 from ubports-weblate/weblate-unity8-unity8 (574420853) 2020-06-09 Jiri Grönroos * Translated using Weblate (Finnish) (6d15639ee) 2020-06-08 luka177 * Translated using Weblate (Ukrainian) (62eeb6e5d) 2020-05-20 Pierre * Translated using Weblate (Dutch) (96ba85386) 2020-05-18 Pavel Borecki * Translated using Weblate (Czech) (efbcaa7b3) 2020-05-14 Pavel Borecki * Translated using Weblate (Czech) (52d93e40d) 2020-05-08 dano6 * Translated using Weblate (Slovak) (07a0c1c00) 2020-05-06 penyotike * Translated using Weblate (Japanese) (639e42203) * Translated using Weblate (Japanese) (f9f994a35) 2020-05-06 kaito419 * Translated using Weblate (Japanese) (c4c3b9da3) * Translated using Weblate (Japanese) (bb34e0766) 2020-05-06 penyotike * Translated using Weblate (Japanese) (9ef239700) 2020-05-04 Osama Chibani * Translated using Weblate (Arabic) (9513a4864) 2020-05-28 Marius Gripsgard * Merge pull request #311 from z3ntu/xenial_-_bionic-merge (34f8f8881) 2018-10-01 Luca Weiss * Don't fail silently when qdbusxml2cpp is missing (188b58bc9) * Use QmlPlugins from cmake-extras (d163016a7) 2018-09-19 Ivan Semkin * Fix build with Qt 5.11_beta3 (dropping qt5_use_modules) (1b4e5afe1) 2020-04-27 Dalton Durst * Merge pull request #308 from ubports-weblate/weblate-unity8-unity8 (7496c8a68) 2020-04-24 Allan Nordhøy * Translated using Weblate (Norwegian Bokmål) (faf186ce8) 2020-04-18 Dalton Durst * Focus the shellView after creating secondaryWindow (706370904) 2020-04-17 Ratchanan Srirattanamet * Fix hiding drawer using Super key (7013f90cf) 2020-04-20 Florian Leeber * Merge pull request #306 from ubports-weblate/weblate-unity8-unity8 (105fb57d7) 2020-04-15 Daniel Frańczak * Translated using Weblate (Polish) (2cc89a4d3) 2020-04-16 Josué * Translated using Weblate (Spanish) (637f72d3d) 2020-04-16 Federico Turbino * Translated using Weblate (Italian) (51f56a58f) 2020-04-16 Milan Korecký * Translated using Weblate (Czech) (59a68ec18) 2020-04-15 Mike * Translated using Weblate (Italian) (a5c759241) * Translated using Weblate (Italian) (6268446d2) 2020-04-15 Florian Leeber * Merge pull request #304 from ubports-weblate/weblate-unity8-unity8 (8b5e0e52b) 2020-04-15 Adrià * Translated using Weblate (Sardinian) (bd826ef04) 2020-04-15 Anne Onyme * Translated using Weblate (French) (f70ece724) 2020-04-15 Ivo Xavier * Translated using Weblate (Portuguese) (b31d8f75f) 2020-04-15 Joan CiberSheep * Translated using Weblate (Catalan) (6b1d3852c) 2020-04-15 Weblate * Update translation files (8280a803c) 2020-04-15 Florian Leeber * Merge pull request #303 from ubports-weblate/weblate-unity8-unity8 (7a01a9196) * Translated using Weblate (German) (20ffe4890) 2020-04-15 Weblate * Update translation files (df9af9252) * Merge branch 'origin/xenial' into Weblate. (8e517080f) 2020-04-15 Florian Leeber * Merge pull request #299 from ubports/xenial_-_unity8translations (ba42b46b8) 2020-04-15 Weblate * repair merge (9c94a1f18) * Update translation files (5e41212fe) 2020-04-15 Florian Leeber * Merge pull request #300 from ubports/xenial_-_repair-localization (d52dc2c9e) 2020-04-15 Weblate * Test the po repair (917fce8e6) 2020-04-15 Dalton Durst * Remove bazaar/deployment files (f1e465ad2) * Update translation sources (0ee3b0b99) 2020-04-13 Marius Gripsgard * Merge pull request #295 from ubports/xenial_-_demo-drawer (a45f16d27) 2020-04-10 Ratchanan Srirattanamet * Add pull-to-refresh to app drawer (2a12bafe6) 2020-03-31 Willem-Jan de Hoog * Indicate charging state only if device supports multi color led (#287) (db503ee44) 2020-03-09 Dalton Durst * Show the Drawer tutorial for upgrading users (ad9f0bd68) 2020-03-30 Ratchanan Srirattanamet * [DBusGreeterList] fix EntryIsLocked property (184b9d638) 2020-02-18 Dalton Durst * Fix Launcher dismissing keyboard (8ae7d92e2) 2020-03-23 Dalton Durst * Make partial panel width exclusive to 60 gu (9d0c2b989) 2020-03-10 Dalton Durst * Fix eliding of title (338a7a403) 2020-03-04 Ratchanan Srirattanamet * Fix Panel tests freezing occasionally (d952c52f8) * Compensate for PanelItemRow's origin changing (b7f044eae) 2020-03-03 Dalton Durst * Add button to show or hide app menus to PanelTests (58d9a0381) 2020-02-25 Dalton Durst * Allow indicators to take up more space (ae0a2472f) 2020-03-24 Ratchanan Srirattanamet * [TGA] Ignore touch events when in the rejected state (c36c2dc45) 2020-03-09 Dalton Durst * Fix utils tests (7d149cf15) 2020-03-04 Rodney * Remove console.trace() and debug function (#288) (78c5a3a73) 2020-02-25 Ratchanan Srirattanamet * Display trust prompts when the app has no surface too (0fbbe183e) 2020-02-18 Ratchanan Srirattanamet * Prevent IndicatorItem removal while expanding (b0fa7228e) 2020-02-23 Dalton Durst * Only allow tutorials to run serially (#284) (b8eb7f9d9) 2020-02-20 Dalton Durst * Make Tutorial start faster; block functionality (#279) (1d2d928db) 2020-02-18 Dalton Durst * When Launcher is locked, OSK can have full width (#277) (1b356b04a) 2020-02-16 Dalton Durst * Lock Launcher on screen when no apps are running (#274) (b62a87cd6) 2020-02-12 Dalton Durst * Don't be clever about wallpapers (919293d96) 2020-01-25 Ratchanan Srirattanamet * [tests/mocks] don't focus newly created surface (ba2d37f84) 2020-01-23 Ratchanan Srirattanamet * [TLWM] always activate the newly-prepended window (d58308c7e) 2020-01-30 Ratchanan Srirattanamet * Shell: fix starting locked app (126feffcb) 2020-01-11 Joan CiberSheep * Fix theme in ShellDialog (12ba38885) 2019-12-20 Marius Gripsgard * [Stage] Make sure we send screenOffsets to mir (b489e46d4) 2019-12-16 Ratchanan Srirattanamet * [Stage] handle "Application" level focus request (be956d129) Fixes: https://github.com/ubports/ubuntu-touch/issues/1242 2020-01-11 Marius Gripsgard * Merge pull request #262 from peat-psuwit/xenial_-_fix-1337 (41fc20877) 2020-01-09 Ratchanan Srirattanamet * Stage: don't signal mainAppChanged unnecessarily (dc3a20dda) 2019-12-19 Marius Gripsgard * Add global InputMethodManager to handle inputMethod across screens (1b30ec805) 2020-01-08 Marius Gripsgard * Merge pull request #260 from ubports/xenial_-_themes-really-broke-the-tests-huh (a6aac8d67) 2020-01-08 Dalton Durst * Compare theme colors against the correct theme (f4d32b8c5) 2020-01-09 Ratchanan Srirattanamet * Showable: do nothing if requested action's animation is running (1a9b7e13b) 2020-01-02 Marius Gripsgard * Merge pull request #257 from ubports/xenial_-_tlwm-no-wraparound (fd0f7e8e0) 2019-12-30 Dalton Durst * Remove logic to wrap around from maxWindowId to 1 (12e32a56d) 2019-12-29 Dalton Durst * Use the max value of an int for max window ID (efd3bd14c) 2019-12-28 Dalton Durst * Keep refactoring tst_Shell, reduce race conditions (54de86272) 2019-12-27 Dalton Durst * Add copyright headers I missed (c41130ac4) * Basically skip animations if Showable not shown (6d933554a) 2019-12-24 Dalton Durst * Remove panel visibility check from launcher (d42c11074) 2019-12-23 Dalton Durst * Reduce warnings caused by fake indicators (88ea43ab1) 2019-12-24 Dalton Durst * Refactor and fix intermittent tests (ded5363cf) * Improve showing launcher automatically (a720096ec) * Fix name of QMLTopLevelWindowModel tests (91c7a0783) * Make it less likely to issue duplicate Window IDs (f85133bdf) * Make touchFlick flick instead of snap (7fb19799f) 2019-12-19 Ratchanan Srirattanamet * [TLWM] fix activating top most window (c2ffdb9ec) * [Stage] also set pendingActivation when going to run focus animation (694e8a4a1) Fixes: https://github.com/ubports/ubuntu-touch/issues/1323 2019-12-17 Ratchanan Srirattanamet * [Launcher] fix apps launched from panel appears in background sometimes (e0b46af72) Fixes: https://github.com/ubports/ubuntu-touch/issues/1210 2019-12-14 Marius Gripsgard * Merge pull request #239 from ubports/xenial_-_removeFocusFromApp (8762b7235) * Merge pull request #240 from ubports/xenial_-_unityTestSpeedup (31d9e497c) 2019-12-13 Dalton Durst * Remove edgeBarrierControls where they are useless (5dc559312) * TIme out findChild faster when we expect null (b0f054c18) * Search dialogs for the modeSwitchWarningDialog (7f2de6db4) 2019-12-13 Ratchanan Srirattanamet * Update Jenkinsfile as of ubports/build-tools@0af3831 (b154e592d) * Stop indicators when Unity 8 stops (c73f2768d) 2019-12-11 Dalton Durst * Refactor interactive into allowInteractivity (922e8e81a) * TopLevelWindowModel: Don't refocus closed Window (70283200e) 2019-12-11 Marius Gripsgard * Merge pull request #174 from ubports/xenial_-_edge_-_appwatcher (5e3b45cae) 2019-08-14 Marius Gripsgard * Add watchers for xdg desktop file changes (0a526739e) 2019-12-11 Willem-Jan de Hoog * Add battery state led indicators. (#226) (d900105c7) 2019-12-02 Marius Gripsgard * [TLWM] Change rootFocus to a property (edcd7106f) 2019-12-01 Marius Gripsgard * [ShellApplication] Use (new) screenRemoved event from upstream qt (2a9d04401) 2019-11-02 GizmoChicken * Create README.md (2af5f2c29) 2019-10-23 Lionel Duboeuf * Allow searchField clear button to be always active (fixes #211) (0cf54e579) * Remove nested model (#212) (3e584ebff) 2019-10-22 Lionel Duboeuf * Load icon asynchonously (#209) (c7bac8e60) 2019-10-14 Dalton Durst * Hide keyboard when Launcher or Drawer are dragged (329a38593) * Don't allow the user to snipe indicator handles (2c2664a4c) 2019-10-14 Marius Gripsgard * Merge pull request #189 from ubports/xenial_-_edge_-_wayland (4fa0ad997) 2019-09-08 Marius Gripsgard * Specify QPA platform to mirserver if we use wayland as client QPA (b37747637) 2019-10-03 Marius Gripsgard * Merge pull request #203 from ubports/xenial_-_edge_-_panel-menu-reject-drags (1d07cc12a) 2019-10-02 Dalton Durst * Reject quick drags on the panel menu (0070dd4cc) 2019-10-02 Marius Gripsgard * [Shell] Make sure we unset WM objects before destroying (3e718375c) * [WM] Move surfaceManager to local memeber with same tread destroy signal (efc760ff4) * Merge pull request #202 from ubports/xenial_-_edge_-_inhibit-slide-animation (8b854624c) 2019-10-01 Dalton Durst * Make the appDelegate know when it's being focused (bb646a264) 2019-09-30 Marius Gripsgard * Make sure to display promt animation correctly on stopped promt (fa0af3312) * [tests] Skip two compeare functions (FIXME) (77038f159) * [VirtualTouchPad] Move need for windowManager out to main root (00e5c7b3e) * [Stage] Use correct close function and Make sure to trigger propery (a47895ee9) * [tests] Add downwards swipe function as this will be needed for workspaces (4c873ecdf) * [tests] Set var that got removed but should be set on live surface (fbba3e538) * [tests] Make sure to close spread on cleanup (c549645dd) * [tests] Make sure to set surface to null if surface is not live (bf5076cae) * Disable workspace switcher and FakeSurface if workspace is disabled (f3ada84af) * Make sure to clear m_previousWindow when the window is deleted (d1b0fbf63) 2019-09-23 Marius Gripsgard * Merge remote-tracking branch 'origin/xenial_-_edge' into xenial_-_edge_-_multiscreen (60db746bc) 2019-09-19 Marius Gripsgard * Cleanup ashes left from dash and scopes (4e758cb3e) * Remove unused link/include to gio (64cc07a00) 2019-09-23 Marius Gripsgard * Check if search word contains, not just startsWith (929a9fb1a) 2019-09-23 Jan Sprinz * Manage apps on edge (ish) (#181) (3f2de385e) 2019-09-21 Marius Gripsgard * Merge pull request #195 from ubports/xenial_-_edge_-_fixreboot3 (652a3c248) 2019-09-20 Marius Gripsgard * Fix closeAllWindows trigger and capture for anonymous function (5fd3fb82e) 2019-09-15 Marius Gripsgard * Fix panel test by making verifying synchronous (8a0b6f5a6) * Make sure right tutorial gets skipped if spread has been shown (f99e28fa2) 2019-09-18 Jan Sprinz * Work around greeter anchoring mess (#190) (35dc0ed7f) 2019-09-18 Dalton Durst * Cache the blur results and tone down the radius (929e41efa) 2019-09-16 Marius Gripsgard * Merge pull request #177 from ubports/xenial_-_edge_-_refocusfixes (ab735599c) 2019-09-15 Marius Gripsgard * Fix multiscreen tests (71d53fc26) * Fix panel test by making verifying synchronous (a4b27073c) * Make sure right tutorial gets skipped if spread has been shown (e72942934) 2019-09-14 Marius Gripsgard * Make workspaces disabled by default (gsetting to enable) (dabba02b6) 2019-07-24 Marius Gripsgard * Let TopLevelWindowModel deside what app to refocus, if any (c08b89c2e) 2019-09-05 Jan Sprinz * Pass null instead of undefined if model is not ready (0b987cbac) * Make sure we evaluate a boolean to satisfy Qt typing (e44d79ce3) 2019-09-13 Marius Gripsgard * Merge remote-tracking branch 'origin/xenial_-_edge' into xenial_-_edge_-_multiscreen (c4c05ceb8) 2019-06-29 Marius Gripsgard * Let the windowmanager handle closing of all apps (35e53ef7a) 2019-08-28 Marius Gripsgard * Welcome page should not have back button (2bfacda93) 2019-09-05 Jan Sprinz * Do not try notifyAppFocusRequested the greeter. That's impossible. Instead only try to realize the truth: There is no greeter.Then you'll see that it's not the greeter that notifyAppFocusRequesteds, it is only yourself. (44f033948) * Merge pull request #186 from ubports/xenial_-_edge_-_indicatortextbindingloop (50d1dd6ab) * Fix indicator text binding loop (75645e193) 2019-08-23 Rodney * Merge pull request #179 from ubports/xenial_-_edge_-_noLauncherDisabling (93f04f844) 2019-08-22 Dalton Durst * Revert "Add a new setting to enable/disable the launcher" (7ad679805) 2019-08-16 Marius Gripsgard * Merge pull request #176 from ubports/xenial_-_edge_-_dontautofocus (de0d157fd) 2019-08-15 Marius Gripsgard * [WindowManager] Focus surface on startup only if focus is requested (4169ccd30) Fixes: https://github.com/ubports/ubuntu-touch/issues/1088 2019-08-03 Marius Gripsgard * [Stage] Make sure we only use saved states when appropriate (b76b31e68) 2019-08-03 Dalton Durst * Fix the lurching right-edge transition (1829fbfe7) 2019-07-18 Rodney * Merge pull request #168 from ubports/xenial_-_edge_-_greeter-cover (4d89751c3) 2019-07-18 Dalton Durst * Ensure the narrow greeter always covers the shell (b73953dda) 2019-07-13 Rodney * Merge pull request #166 from ubports/xenial_-_edge_-_ensureLock (7e937b90a) * Merge pull request #167 from ubports/xenial_-_edge_-_vroom-vroom-tests (22e398ac5) 2019-07-11 Dalton Durst * Remove search for dashCommunicator (5308f9c6b) * Don't close Drawer when apps close (7575e0006) * Refactor handling of mainApp changes (b4a501207) 2019-07-06 Marius Gripsgard * Test trying to find unknown child (797b062c0) * Fixup panel tests after bad merge (7f5330931) * Add missing copyright to new files (b42823e49) * Fixup TabletStage tests after merge with multi monitor changes (5b9edb173) 2019-07-03 Marius Gripsgard * Merge remote-tracking branch 'screens-workspaces-switcher' into xenial_-_edge_-_multiscreen (e961d7c72) 2019-06-30 Marius Gripsgard * Add forceClose Impl for MirSurface Mock (61e58b784) * Remove some deleted files (2931b2fb9) 2019-06-29 Marius Gripsgard * Merge pull request #158 from ubports/xenial_-_edge_-_fixpanelpos (778b27348) * Merge pull request #156 from ubports/xenial_-_edge_-_fixfocus (a37d028e4) * [panel] Let qt handle calculation of contentX to avoid race condition (4e980e19d) 2019-06-27 Marius Gripsgard * Make sure we don't focus/activate alredy focused nullWindow (3686d8ce8) * Make sure no apps have focus if stage is not active/focused (ee2155513) Fixes: https://github.com/ubports/unity8/issues/130 Fixes: https://github.com/ubports/ubuntu-touch/issues/1123 2019-06-19 Dalton Durst * Fix display of the default wallpaper in the Drawer (305605ced) 2019-06-12 Kugi Eusebio * App drawer's grid view top margin (#142) (12cb79084) 2019-05-28 Dalton Durst * ubuntu-system-settings is not needed for tests (822749b1f) * Fix up Drawer based on code review (6b1cf97ab) 2019-05-27 Dalton Durst * Launcher tests: Ensure the quickList is ready (45718b819) * Lockscreen test: Clean up test_resize, tryVerify (7ff365e62) * SwipeToAct test: Ensure slider is ready to slide (89b02bc39) * Squash race conditions everywhere (2d12d4935) * Launcher tests: Convert any async to try* (a9ffaee1b) * Better check for the Drawer's readiness (f5b4abd1d) 2019-05-25 Dalton Durst * Don't run tests in parallel :/ (08b0e83d9) * Fix up the TabletStage tests (3c2f02066) 2019-05-24 Dalton Durst * Fix handling of fullscreen on ARM (9cb310036) * Accept asynchronicity in more MenuBar tests (d9f9c66f6) 2019-05-23 Dalton Durst * Fix racing in MenuPopup tests (38bbc54fd) * Loosely compare state value with the Mir enum (af83d0aef) 2019-05-14 Dalton Durst * Fix still-flakey Shell tests (840ffe7c3) * More Shell test fixing (3654844e0) * Fix up shell tests (7755dd428) * Fix up the Launcher tests (5d4d0aabf) 2019-05-13 Dalton Durst * Update/Fix Drawer tests (3d5a91f99) * Refactor the Drawer for easier testing (c1712df8f) * Fix the tests on the Panel (bbea6bd85) 2019-05-10 Dalton Durst * Wait for the click to get registered by actionSpy (362c740f6) * Correct tryCompare syntax (3998b988f) * Wizard: Update tests, remove app updates (9a7d5c0b2) 2019-05-09 Dalton Durst * Reduce MenuItem warnings (28c9aa3be) * Fix MenuBar TestCase failures (8cb81fa01) 2019-05-07 Dalton Durst * Skip the rightShortDrag tutorial test (912629f2f) * Always hide the right tutorial when the Spread shows (9e744a9a7) * Make right edge tutorial only take 3 apps to open (89dae30ec) 2019-05-03 Dalton Durst * Skip testIconLookupLogic, it requires local config (ef230bbac) 2019-04-15 Rodney Dawes * Need Ubuntu.Layouts for qml tests too. (b426a32f8) * Remove unused Carousel component. (5018704c5) * Need system-settings for wizard tests. (5d5cc7fde) * Need the Ubuntu.Test module too. (cd93e50d1) 2019-04-13 Rodney Dawes * Run tests in parallel and sync outputs. (9950c4fb2) 2019-04-11 Dalton Durst * Remove test to check if Dash remains running (a64f1216f) * Use position rather than ID to determine touch point (c291fdf43) * Do not install scopefakes (5ba038c92) * Fix copyright tests (cda847ac8) * Appropriately auto-test (93c159a5c) * Use the xcb QPA when running xvfbtests (40df51a1b) 2018-09-15 Marius Gripsgard * Merge pull request #68 from vanyasem/bionic (19c4f2fe8) 2019-05-31 Rodney * Merge pull request #129 from ChristianPauly/patch-1 (7fd6cacb0) 2019-05-20 Rodney * Merge pull request #143 from ubports/xenial_-_edge_-_fixlauncher (9290b6862) 2019-05-20 Rodney Dawes * Don't set handleVisible as it's removed. (ab090e136) 2019-05-19 Rodney * Merge pull request #140 from ubports/xenial_-_edge_-_always-show-handle (b844ba578) 2019-05-17 Dalton Durst * Always show the Drawer's handle (dc8a26801) 2019-04-08 Dalton Durst * Replace webbrowser-app with morph-browser (3e02e0c8d) 2019-04-26 Rodney * Merge pull request #135 from ubports/xenial_-_edge_-_hide-drawer-dots (5f7ccccc8) 2019-04-26 Dalton Durst * Use visibility, not width, to hide the handle (7135871ad) 2019-04-19 Christian * Remove whitespace in Line 77 (090f409dd) 2019-04-19 Marius Gripsgard * Merge pull request #120 from ubports/xenial_-_edge_-_sorting (e53d96a12) 2019-04-19 Alfred Neumayer * Stage: 'No running apps' hint on top of Spread (1ee6c5261) 2019-04-19 Christian * Blurred user background in app drawer (3b7962cd5) 2019-04-15 Dalton Durst * Add a handle to the full-screen Drawer (a4366c2cc) 2019-04-12 Dalton Durst * Do not show a "back" icon in the bfb when the drawer is open (3ba1a71f4) * Revert "Make the drawer full-screen on phones (#95)" (c53f8c955) 2019-04-09 Dalton Durst * Add semicolons (2ff004278) * Use Icon rather than Image (b828912ed) 2019-04-08 Dalton Durst * Update translations (6ffbd695d) * Help keyboard focus work a little better (8e1c12111) * Remove unused MoreAppsHeader (5b5c36a04) * Close the drawer but not the launcher when the bfb is tapped twice (81a0d20fe) 2019-04-02 Dalton Durst * Remove the swipe to close the Drawer :( (1259b902f) 2019-04-01 Dalton Durst * Remove the ListViews from the Drawer (69b5391aa) * Add a no-group section and fix styling (acc1ca9ff) 2019-04-07 Jan Sprinz * Merge pull request #124 from fredldotme/xenial_-_edge (940649931) 2019-04-07 Alfred Neumayer * Shell: Show launcher after unlock or if all apps are closed (0b7586f46) 2019-04-05 Rodney * Merge pull request #123 from ubports/xenial_-_edge_-_rm-here (9ac1500f1) 2019-04-04 Jan Sprinz * Merge pull request #122 from ubports/xenial_-_edge_-_360noscope (412681131) 2019-04-04 Marius Gripsgard * Remove here (5ec8526cc) 2018-10-06 Rodney Dawes * Purge dash and scopes dependency. (64cd6a3f3) 2019-03-26 Dalton Durst * Bug swap (3e105e0d9) 2019-03-29 Alessandro Vinciguerra * Automatically advance setup wizard on WiFi connection (#92) (74e0f7462) 2019-03-26 Dalton Durst * Revert "Never propagate composed events" (f00cf3d5e) 2019-03-26 Rodney * Merge pull request #114 from ubports/xenial_-_edge_-_noscroll (804b83ae6) 2019-03-25 Dalton Durst * Never propagate composed events (0659a9ebb) 2019-03-23 Rodney * Merge pull request #112 from ubports/xenial_-_edge_-_drawer-search-cuts (9eb391f42) 2019-03-22 Dalton Durst * Set text to "" rather than using clear to keep working with uitk 1.3 (ac49a7796) 2019-03-19 Dalton Durst * Clear the search when the Drawer is closed (1395d6d66) 2019-03-19 Rodney * Merge pull request #109 from ubports/xenial_-_edge_-_drawer-focus (c684e4ce3) 2019-03-19 Dalton Durst * Do not give the search field focus immediately (41510f189) 2019-03-18 Dalton Durst * Forward-port Wizard fixes from older Unity (#105) (7f172ec23) 2019-02-24 Marius Gripsgard * Set openstore as appstore-uri (2c9d263f4) 2018-06-09 mateosalta * Add open store to launcher, Fix ubports/ubuntu-touch#418 (#43) (c92104574) 2018-03-09 Marius Gripsgard * [Stage/Spread] Detect mouse or touch events in newer qt versions (#33) (4664efe13) 2018-01-05 Marius Gripsgard * Check if libubuntu_application_api.so exist, if not don't use it (f5b66001c) 2019-02-21 Dalton Durst * Remove the blur effect from the Drawer :( (#98) (176fd34d3) * Make the drawer full-screen on phones (#95) (7eaa56972) 2019-02-19 Marius Gripsgard * Add android-headers to deps (800cc84f2) 2018-10-05 Dalton Durst * Replace dependency on ubuntu-wallpapers with ubports-wallpapers (e2f3f3f0c) 2018-11-16 Marius Gripsgard * FIXME: disable wizard test (504836405) * Disable new ual signals for now, since we dont have them yet (86a08eff0) 2018-04-10 Marius Gripsgard * Appdrawer improvements (ef92aa597) * Bump unity-shell-launcher version (8ae190760) 2018-05-13 Marius Gripsgard * Add unity schema from unity7 (45b4b1253) 2018-08-30 Marius Gripsgard * Bump unity8 version with new dash to 8.20 (2d2b8bb62) 2018-04-10 Marius Gripsgard * QQmlIntanceModel: use QQmlIncubator::IncubationMode instead of bool to specify incubation mode (7fe32df70) 2018-08-30 Marius Gripsgard * Dont require qml-module-ubuntu-web since oxide is not all arch includes oxide (4e52649a7) 2018-02-17 ismaelbonato * Files and Folders are showed on git status (#11) (55fc104bf) 2017-12-28 Marius Gripsgard * bump version (929d44b82) * Remove test from install file list (a0335d547) * Disable tests (4f1100c09) * Use app-launch2 (1590ce113) * Merge remote-tracking branch 'u8t/master' into xenial_-_mir26 (525969a26) * Update Jenkinsfile (840cd4ce0) 2017-10-26 Marius Gripsgard * [TMP] Support qt 5.9 (95d8efbee) 2017-10-22 Marius Gripsgard * Revert "Enable debug builds" (e9bebbc17) * Workaround for text not rendering correctly (5e2ed1e0d) * Workaround: Disable oom score from unity8-dash (2270fabcb) 2017-10-21 Marius Gripsgard * Enable debug builds (64ba1194d) * Add workaround for missing ubuntu platform api in halium (4d6b1af25) 2017-10-13 Marius Gripsgard * Rename all stash since jenkins override the old one (bbfe02322) * Add required envs for jenkinsglue (985e3b1bf) * force builds of "all" on armhf (4672f0e92) * Added Jenkinsfile (5c215baf4) * Target xenial (285b9e152) 2017-10-07 Marius Gripsgard * Use the build-binary from build-tools (01b26c244) 2017-08-02 Marius Gripsgard * Disable imports tests (for now) (fdd239fa5) 2017-07-31 Marius Gripsgard * Bring back accidentally removed import (3f4c95fcc) * [Dash] Let scopes select there preferred background color (81bfe9886) * Fix spacing (f136e647e) * [Dash] Add gsetting to disable/enable background (0537f5cfc) * [Dash] Set scopelist text colors to scopeStyple.foreground (fe5a6c391) 2017-07-31 nfsprodriver * Added custom scope background support (6588e3442) 2017-07-31 Marius Gripsgard * Imported to UBports (7821dc875) 2017-04-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4ae4ff90e) 2017-04-06 Timo Jyrinki * Releasing 8.15+17.04.20170404.7-0ubuntu2 (c91d0f693) 2017-04-06 Michael Zanetti * point the default store uri to gnome software center (2a4382e34) 2017-04-06 Bileto Bot * Resync trunk. (902c27982) 2017-04-06 Nick Dedekind * removed debug (de450aa2b) 2017-04-05 Michael Zanetti * rework workspace switcher for up/down navigation for screens (e05868512) * merge (22d678ab6) * test fixes (4cbd70fe9) * point the default store uri to gnome software center (c7176d2f3) 2017-04-05 Nick Dedekind * removed lastClickedWorkspace (842cadc3d) * Active Scree visuals in Spread (fb0297b25) * merged pre-req (b6ab28fcd) * isSameAs (06f42e7db) 2017-04-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1f8f32ca4) 2017-04-04 Bileto Bot * Releasing 8.15+17.04.20170404.7-0ubuntu1 (1d2cfb9bf) 2017-04-04 Michael Zanetti * don't autostart the dash app, but show its .desktop file instead (40486924b) * make sure the stage has focus when going to spread (LP: #1672053, #1672673, #1676995) (581f0d9a4) 2017-04-04 Lukáš Tinkl * Sanitize the logic for pointer vs. touch menus, fixes hiding the window title in staged mode, when hovering the panel with mouse and no menus available. (81e8b9311) 2017-04-04 Albert Astals Cid * Tweak app drawer a bit (756d06255) 2017-04-04 Lukáš Tinkl * Show and implement close buttons for child windows (LP: #1668053) (e0227feba) * Do not occlude windows with an ongoing unmaximize transition (LP: #1666363) (9fbcc99c7) 2017-04-04 Josh Arenson * Handle a user in the greeter having never selected a session better (ca2a20e96) * Make some small changes to the greeter's session list (43fc49dde) 2017-04-04 Michael Zanetti * fix searchfield selection in drawer (LP: #1677259) (001b318a8) * Don't hide the launcher on super press if it's locked visible (LP: #1675373) (14a6cd462) 2017-04-05 Michael Zanetti * merge ~mzanetti/unity8/fix-alt-tab as prereq (455dd39cf) * fix test (da10fdfe5) * set lp:~lukas-kde/unity8/fix-window-title-vs-menu as prereq (efdd41ff7) 2017-04-04 Michael Zanetti * fix remaining tests (7fab136d4) 2017-04-04 Nick Dedekind * merged pre-req (e9f4c43f5) 2017-04-04 Michael Zanetti * drop unity8-dash.conf from debian install files (2f267c12e) * fix testshell (292cb9797) * drop upstart file completely (dfc033c60) * enable the close button (2727ae740) * treat the dash more like a regular app (365ca1e04) 2017-04-04 Lukáš Tinkl * ugh, the spread can apparently mess up the decoration control buttons :/ (f992477e6) 2017-04-04 Michael Zanetti * don't autostart the dash but show its .dekstop instead (e368815b0) 2017-04-04 Nick Dedekind * mock screen active (2adba1625) 2017-04-04 Michael Zanetti * merge albert's test and add some more focus fixes (98e912cf5) 2017-04-04 Albert Astals Cid * also show the fulllabel if focused (73e07dd9c) 2017-04-04 Michael Zanetti * merge trunk (db3edc91d) 2017-04-04 Albert Astals Cid * Limit fullLabel width and height (6ed95f2eb) 2017-04-04 Michael Zanetti * import albert's test (8ed55ee4e) 2017-04-04 Lukáš Tinkl * fix test as requested (0be6d6181) 2017-04-03 Nick Dedekind * merged prereq (a81362c14) * display config storage (ea4913440) * merged prereq (9b92f1835) * ScreenConfig (27430d5a6) * display id (e2b39555c) 2017-04-03 Albert Astals Cid * Make longer so that tryDrawer has one elided item (d76634a63) 2017-04-03 Lukáš Tinkl * get rid of the extra boolean (7b0b760fb) * fix test_saveRestoreMaximized() (96e9a9b19) 2017-04-03 Albert Astals Cid * Tweak app drawer a bit (0d45cd357) 2017-04-03 Nick Dedekind * merged pre-req (b5135e79d) * fixed sync end (0b8de4409) * merged with pre-req (3212fb963) * Fixed wm policy init (d7a28376c) 2017-04-03 Lukáš Tinkl * don't let the unhandled clicks reach the (obscured) window control buttons in the decoration (c7d7633ef) 2017-04-03 Nick Dedekind * merged pre-req (945dd8ea9) * Dont allow proxy to be used as current workspace (805f30cc8) 2017-04-03 Lukáš Tinkl * merge trunk (c26643bf6) 2017-03-31 Michael Zanetti * don't really activate a workspace just yet when clicking on it (545b58b5b) 2017-03-31 Nick Dedekind * Added Mouse and KB controls (2fc9b0aa2) * merged with trunk (ae24227c1) * merged with trunk (8ff8a217f) 2017-03-31 Lukáš Tinkl * merge trunk, resolve conflicts (2c1dcaaee) * merge trunk, resolve conflicts (3c6aabc87) 2017-03-31 Michael Zanetti * don't show minimized apps in the workspace previews (4944c2a88) * testShell should be working again (cc5a4eccb) 2017-03-30 Michael Zanetti * some more test fixes (84880a7c3) * merge prereq (86a9c75e9) * some more tabletstage test fixes (187b3f73a) 2017-03-30 Lukáš Tinkl * default is to show the close button (325c83ce4) * merge lp:~dandrader/unity8/satelliteWindow, resolve conflicts (4ea127821) 2017-03-30 Michael Zanetti * fix testDesktopStage (f661fa46d) 2017-03-30 Lukáš Tinkl * do not occlude windows with an ongoing unmaximize transition (e0e06e86f) 2017-03-30 Nick Dedekind * fixed GlobalShortcut test (43f07931a) * Mock fixes & test fixes (8cd3b338e) 2017-03-30 Michael Zanetti * fix testApplicationWindow (28d0c9b28) 2017-03-29 Josh Arenson * Validate 'key' better (185157312) 2017-03-29 Michael Zanetti * fix search string selection in drawer (7be7b3b23) 2017-03-29 Josh Arenson * Merge trunk (69f16422d) 2017-03-29 Michael Zanetti * merge prereq (5032e8fb2) 2017-03-29 Nick Dedekind * Added requestActivate to view (3fdf3b555) * more test fixes (9eb2692e2) 2017-03-29 Michael Zanetti * add a test (db85a6928) * make sure the stage has focus when going to spread (7998c8dd2) 2017-03-29 Nick Dedekind * merged parent (27a262bad) * more test fixes (03ae81f26) 2017-03-28 Bileto Bot * Releasing 8.15+17.04.20170328.3-0ubuntu1 (40d0568da) 2017-03-28 Lukáš Tinkl * Fix the shutdown dialog after recent refactoring in DBusUnitySessionService (LP: #1676426) (eb2de353b) 2017-03-28 Albert Astals Cid * Hook up aboutToShow for overflow menus (LP: #1676016) (1936d4bcf) * Initialize m_privateMode (e84490e4d) * Don't use appInfo after checking it if is null (491624380) 2017-03-28 Michael Zanetti * drop the grey background behind icons in the drawer (LP: #1675688) (f8114aa03) 2017-03-28 Albert Astals Cid * UnityApplicationMocks: Initialize m_state and m_requestedState (48bf6e6b3) 2017-03-28 Daniel d'Andrada * Tell qtmir/miral about the available desktop area (d52069a1a) * Satellite child windows (LP: #1673415) (4141b1112) * Give active focus to child surface qml items (LP: #1671072) (31e4f4b9e) 2017-03-28 Albert Astals Cid * Make sure we destroy the popups when the item goes away (ab451353d) 2017-03-28 Lukáš Tinkl * Only take normal and dialog surface types into account for launcher items (LP: #1669047) (66efbd094) 2017-03-28 Pete Woods * Fix Unity/Platform::isPC, and add tests (LP: #1670657) (b377bdcce) 2017-03-28 Albert Astals Cid * indicators client is a tool (582e30810) 2017-03-28 Florian Boucault * WindowStateStorage: use a private QThreadPool to ensure that WindowStateStorage::saveValue always has a thread available to execute the query in. (LP: #1675424) (6250ff16c) 2017-03-28 Albert Astals Cid * Remove unclickable gaps on the menubar (LP: #1672722) (b1b726e23) 2017-03-28 Lukáš Tinkl * Implement Ctrl+Alt+T to launch the terminal app (LP: #1673500) (21080b9af) * Remove usage of the deprecated (and non-functional) system-image-dbus service. (78ebe21b2) * Protect against loading invalid window geometry (LP: #1674262) (dbab3b1df) 2017-03-28 Albert Astals Cid * Fix unminimizing going to the wrong position the second time (1c5416153) * Tune quicklist item selection (836df6a0e) * mock: Remove empty property and move invokable (b93fd56b4) 2017-03-28 Nick Dedekind * Stage fixes for panelState (b5e6fbfca) * Fixed PhoneStage & ShellWithPin tests (87d6679dd) * panelState fixes (e88688e1c) * Panel bidnings for app menus (5d5daa3f7) * Fixed shortcuts parented to non QuickItems (e1ba4b7f4) 2017-03-28 Michael Zanetti * merge (91e99ecc4) * merge prereq (7283c7975) * decrease timer timeout for hiding the workspaceswitcher (5174a1441) * fix panel tests (1897f101d) * add Windowmanager mock dir to LD_LIBRARY_PATH (b8a5dcc6f) * install libmockwindowmanagmentpolicy, needed for installed tests (abe56ae6f) 2017-03-28 Nick Dedekind * removed Unity.Debug import (be6cc6585) 2017-03-28 Michael Zanetti * merge new prereq (6623b1e8e) 2017-03-27 Nick Dedekind * fixed surfacelist in test (4236deda5) * merged with parent (fd604bee1) * fixed surfaceManager in tstShell (5d2d85ce5) * removed InputWindow (c56d828fb) 2017-03-27 Michael Zanetti * don't hide the launcher on super press if it's locked visible (297aa849e) 2017-03-27 Nick Dedekind * removed debug log (ee0e9fd10) 2017-03-27 Lukáš Tinkl * explain the candidates order with a comment (738283a52) * try with a list of candidate app names (19760ba28) * fix the EndSessionDialog (cec028d95) 2017-03-27 Nick Dedekind * merged with pre-req (c40394327) * fixed proxy syncing (d55f7836b) 2017-03-27 Michael Zanetti * fix testTabletStage (3667e72d2) * fix testPhoneStage (37d6ae4b5) * fix focus issue and activate the surface once dropped on a workspace (c9164f650) 2017-03-27 Albert Astals Cid * Hook up aboutToShow for overflow menus (f153e4a68) 2017-03-24 Lukáš Tinkl * no window controls or menu while in spread (bbf518a00) 2017-03-24 Daniel d'Andrada * Tell qtmir/miral about the available desktop area (b4dc54fda) * merge ../satelliteWindow/ (5e5d7b5d1) 2017-03-24 Nick Dedekind * merged parent (acb5d8b3d) * merged parent (bfeaf9da3) 2017-03-24 Lukáš Tinkl * merge trunk (d3b9f0bef) 2017-03-24 Michael Zanetti * drop background behind icons in drawer (6f8fb1c12) 2017-03-24 Lukáš Tinkl * merge trunk (86a7eb0f2) * merge trunk (092b5c049) * merge trunk (7d92117cf) * merge trunk, resolve conflicts (b9111c2de) 2017-03-24 Nick Dedekind * mreged trunk (916a0ea73) 2017-03-24 Albert Astals Cid * UnityApplicationMocks: Initialize m_state and m_requestedState (7f9406084) * Initialize m_privateMode (7c20b96de) * Don't use appInfo after checking it was null (12136910a) * Merge (fa661829f) * Merge (f0b2f8c12) 2017-03-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (46bca5fbb) 2017-03-23 Nick Dedekind * merged prereq (7b68b9725) * Destroy Workspaces (90d9bd953) 2017-03-23 Michael Zanetti * workspace switcher now working (02d6bc0c2) 2017-03-23 Nick Dedekind * fixed workspace crash (80fc88d0d) 2017-03-23 Lukáš Tinkl * fix review comments; try a snap pkg first (d6b38ceb3) 2017-03-23 Florian Boucault * WindowStateStorage: use a private QThreadPool to ensure that WindowStateStorage::saveValue always has a thread available to execute the query in. (3658635c8) 2017-03-23 Nick Dedekind * merged prereq (211fde5e1) * Added Workspace config (f670b0e50) * merged parent (93fa06fee) * fixed recursion (4711c5540) 2017-03-23 Michael Zanetti * merge parent (d55286b6a) * merge (7b1ff455e) * don't reach out of context (013e5b147) * make testDesktopStage work again (58e65b82e) * fix the panelState nocking in tst_DesktopStage (23173084a) 2017-03-22 Josh Arenson * Add backend test (bd1928fd1) 2017-03-22 Lukáš Tinkl * drop maxFailedLogins and showLastChance() from Greeter (ac6f7e23e) 2017-03-22 Daniel d'Andrada * Satellite child windows (682d93785) 2017-03-22 Josh Arenson * Move the fix to the model level (4d6f8622b) 2017-03-22 Lukáš Tinkl * revert unwanted cmake changes (944783e78) * drop SystemImage from QML (28d73d70f) * drop dead system-image-dbus C++ code (33c2717aa) 2017-03-22 Michael Zanetti * make it build with older Qt (d1c01630b) 2017-03-22 Nick Dedekind * fixed mock stretch sizing (d1867f51a) * merged with prereq (ae545ea6f) * WindowManagerObjects bindings in UnityTestCase (27ac232ff) * merged with parent (ce2ac7d48) * focus window gets global shortcuts (15874ddc5) 2017-03-22 Michael Zanetti * add WorkspaceSwitcher (4f8a0907c) * merge prereq (8fdf9a46a) 2017-03-22 Nick Dedekind * merged with parent (71284ff6c) * removed debug (b7ad64fee) * Fixed issues with syncing (ac9388667) 2017-03-22 Albert Astals Cid * Remove empty property and move invokable (381ee3664) 2017-03-21 Daniel d'Andrada * Give active focus to child surface qml items (8401926fd) 2017-03-21 Michael Zanetti * apply nick's patch for fixing tiny window sizes (b8150afa5) * prevent closing a workspace if it's the last one (7e6806222) * some tweaks and cleanups (07f86b206) 2017-03-21 Lukáš Tinkl * obviously, we want to clear the list too (be676de16) * only take normal and dialog surface types into account for launcher items (0243190cd) 2017-03-21 Michael Zanetti * merge (7dd87662b) * merge (59e31a61f) * bring the splash screen back, drop the screenshot image (surfaces keep on to their buffer now anyways) (e4499be88) 2017-03-21 Lukáš Tinkl * merge lp:~mzanetti/unity8/surfacetitles-in-quicklist (11cc61efc) 2017-03-21 Bileto Bot * Releasing 8.15+17.04.20170321-0ubuntu1 (6eb8d6872) 2017-03-21 Albert Astals Cid * Fix real world submenus (e.g. kate) not getting their first item selected on open (daef79065) * Improve Launcher ←→ touch menu interaction (e1dd3c767) * Support Panel top level items to be disabled (799e37ce7) * Signal aboutToShow (LP: #1664578) (c196bf9e8) 2017-03-21 Michael Zanetti * unfocus the drawer's textfield when it is moved (LP: #1669839) (bdc952ba1) * fix the focus moving correctly between launcher and drawer (LP: #1669880) (7645501a7) * properly reset the drawer state when cancelling a horizontal drag (LP: #1669536) (fe7f3cf62) 2017-03-21 Lukáš Tinkl * Disable altDrag feature outside windowed mode (89f86107c) 2017-03-21 Daniel d'Andrada * TopLevelWindowModel: don't put hidden windows in the model (72172b5d5) * Don't let clients resize their surfaces while in staged (phone/tablet) mode (LP: #1670390) (fe9f10b37) 2017-03-21 Michael Zanetti * add surface titles to launcher's quicklist (LP: #1661668) (f6387c532) * hide "private" launcher quicklist entries when the greeter is locked (LP: #1667649) (d7adde7fe) 2017-03-21 Lukáš Tinkl * Fix unsnapping a maximized window from the panel (LP: #1671721) (fa02b87fe) 2017-03-21 Daniel d'Andrada * Really disable the window decoration when in staged mode (fd8148a1d) 2017-03-21 Michael Zanetti * Add support for closing apps from the spread with "Q" (LP: #1670327) (bcc34ecd2) 2017-03-21 Lukáš Tinkl * Add a cursor name fallback mapping "grabbing" -> "closedhand" for Breeze (ea9234ccc) * Fix the restored-to position with Miral due to the state changes being async (LP: #1669819) (74ca97955) * Reset always-show-osk gsetting on startup to default value (false atm) (f539fb06c) 2017-03-21 Pete Woods * Fix up indicators-client after refactoring (LP: #1672797) (84ad8d93f) 2017-03-21 Michael Terry * Don't lock the screen for guest users or users in the nopasswdlogin group. (LP: #1644237) (d39f93f15) * Support GNOME-style logout DBus API (making the Logout, Reboot, and Shutdown launcher commands work) (LP: #1673229) (c739de118) 2017-03-21 Lukáš Tinkl * stabilize test (efb4a50c3) 2017-03-21 Albert Astals Cid * One year older (77b2d9a2b) 2017-03-20 Josh Arenson * Add a test (32458de03) * Have the greeter fallback to default session if user has never selected one (2c8cfc968) 2017-03-20 Lukáš Tinkl * capitalize Terminal (0d571f761) 2017-03-20 Nick Dedekind * update normal geo directly on load (735fd4fef) * merged parent (785f8e468) * removed old headers (fbc9a8829) 2017-03-20 Albert Astals Cid * Fix unminimizing going to the wrong position the second time (494639e84) * Merge lp:~lukas-kde/unity8/fix-restore-positio (b60611e31) 2017-03-20 Pete Woods * Install the platformtest executable and refer to its path via the TARGET_FILE macro (7ca7e3993) 2017-03-20 Lukáš Tinkl * protect against loading invalid window geometry (771bc4b6e) 2017-03-20 Albert Astals Cid * Remove highlight when going over a non clickable item (a8445f73a) 2017-03-20 Pete Woods * Add qtdbustest-runner dependenct to tests (2198ed03d) 2017-03-19 Lukáš Tinkl * implement Ctrl+Alt+T to launch the terminal app (9e458f499) 2017-03-17 Josh Arenson * Set mock mode (28da875cf) * Add test (cf4e55a2b) 2017-03-17 Albert Astals Cid * Tune quicklist selection (604cd8849) 2017-03-17 Pete Woods * Fix the CMake for platform tests (f1f02794e) 2017-03-17 Nick Dedekind * merged prereq (12ff9b479) * fixed move workspace content order (421d2a7bc) 2017-03-17 Pete Woods * Die, tabs! (e0f94ec47) * Add missing qdbus test runner dependency (b506791d2) * Handle chassis cases that are not documented (9c21cc578) 2017-03-17 Albert Astals Cid * Fix tests? (a76e6d395) 2017-03-17 Michael Zanetti * fix workspace drag reordering again (6efc4c467) * implement our own popup (942c252e6) 2017-03-17 Lukáš Tinkl * disable altDrag feature outside windowed mode (e87b437ec) 2017-03-17 Michael Zanetti * fix the mock to not be funky with screen sizes at startup (117f2d882) 2017-03-17 Nick Dedekind * merged with prereq (ca7d40dcb) 2017-03-17 Michael Zanetti * fix screen sizes in mocks (83d36b311) 2017-03-17 Nick Dedekind * TLWM as workspace property (e174ec3f3) 2017-03-16 Michael Zanetti * improve listview animations and handling (0bcac194e) 2017-03-16 Albert Astals Cid * Merge lp:~aacid/unity8/disabledMenus (9a85331c1) 2017-03-16 Josh Arenson * Fix always starting the default session (32c9925aa) 2017-03-16 Daniel d'Andrada * TopLevelWindowModel: don't put hidden windows in the model (b020446e9) * merge ../allowClientResize (2a9c5207c) 2017-03-16 Michael Terry * Drop extra whitespace (4dddd2e2f) 2017-03-16 Daniel d'Andrada * Don't let clients resize their surfaces while in staged (phone/tablet) mode (4900a5fcf) * merge lp:~mzanetti/unity8/surfacetitles-in-quicklist (fc6e1e96d) 2017-03-16 Michael Zanetti * don't apply transitions if a delegate is created while we're in spread (6e2f04881) * make mocks build (b079ca9b8) * merge prereq (dcb2e88ed) * merge parent (42e4c1a86) * use correct graphic (46da4595b) 2017-03-16 Nick Dedekind * Added ErrorApplication to debian (64a046c95) 2017-03-16 Michael Zanetti * merge prereq (fe71e2171) * make pin/unpin private too (68b8a151e) * cancel dnd operation properly (67f725b67) * add missing graphics file (be6c6a3c7) * merge prereq (f2222659c) * fix issues from review (9118c5f79) 2017-03-16 Albert Astals Cid * panelTitle changed parents (f2c72ac11) 2017-03-15 Josh Arenson * Less wonky (dc92b11cd) * Fix wide view test (85e98ef04) * Cleanup initial highlight (e0401e043) 2017-03-15 Lukáš Tinkl * fix test, remove one that doesn't make sense w/o a maximized window (1a510f77a) 2017-03-15 Michael Terry * Support org.gnome.SessionManager interface (71328b08f) 2017-03-15 Lukáš Tinkl * merge ~lukas-kde/unity8/unsnap-from-panel (479291575) * fixup window title and controls in panel (fe9d37e98) 2017-03-15 Pete Woods * Fix isPC property of Unity/Platform plugin (411188c63) * Clean out extra fluff as per review comment (7369b2a18) 2017-03-15 Albert Astals Cid * Adapt tests (ac83299a0) * Move the Panel "title" from PanelItemRow to Panel (d977cf6fa) 2017-03-15 Josh Arenson * Merge trunk (175e752d9) 2017-03-15 Nick Dedekind * merged with parent (3e9bf4072) * merged with trunk (fb3317811) 2017-03-15 Michael Zanetti * merge prereq (6180c1c8d) * add a custom proxy model for the quicklist (c5236e2c9) 2017-03-15 Albert Astals Cid * Add tests (e52e22641) * Merge (0bf8e026e) * Add tests (46d903270) 2017-03-15 Michael Zanetti * merge prereq (f4827a6e7) * add text to drop targets (ccd07fa05) 2017-03-15 Albert Astals Cid * currentMenuIndexChanged -> currentMenuIndex (ef36c8ce1) 2017-03-15 Nick Dedekind * better focus condensing (cf4f2ea59) 2017-03-15 Michael Zanetti * merge prereq (f4d602672) * add feature to drop to the left/right of a workspace (abaacf058) 2017-03-15 Albert Astals Cid * Remove unclickable gaps on the menubar (20f213e94) 2017-03-14 Michael Terry * Don't need null checks for g_free (e95f44cc1) * Make preload a little smarter and only return user names for the nopasswdlogin group (741db9934) * Drop unneeded import (cae9e0142) * Don't lock screen for guest or nopasswordlogin user (d3551524c) 2017-03-14 Nick Dedekind * focus (bcbc40d74) 2017-03-14 Pete Woods * Fix up indicators-client after refactoring (47a2527de) 2017-03-14 Michael Zanetti * highlight active workspace (888c73c11) 2017-03-14 Lukáš Tinkl * stabilize test (63107cb43) 2017-03-14 Albert Astals Cid * Add test (bdeb5cf68) 2017-03-14 Lukáš Tinkl * add a test for maximized window + menu in panel (722cba016) 2017-03-14 Michael Zanetti * fix drag and drop of applications (b50f6a984) * finalize drag and drop for apps to another workspace (61ee47989) * merge prereq (6008b1d07) 2017-03-14 Nick Dedekind * Move window to Workspace (548b0c6be) 2017-03-14 Michael Zanetti * merge prereq (6ed4d9a71) * merge trunk (59b399810) * shorten creation of QPair (7898ab7c7) * use QStringLiteral for string literals (b6f652bed) * merge prereq (022c107a9) * fix test (d04c1140a) 2017-03-14 Albert Astals Cid * Make sure we destroy the popups when the item goes away (d067964fb) 2017-03-14 Michael Zanetti * drop debug print (165db8808) 2017-03-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (593d5000f) 2017-03-14 Lukáš Tinkl * merge trunk (2b1b82859) 2017-03-13 Lukáš Tinkl * merge trunk, fix conflicts (4e917ff11) * make both the menu and window unsnapping work in panel \o/ (d1e6e8e1c) 2017-03-13 Michael Zanetti * merge prereq (d323b7b95) * merge trunk (ff6e4b509) 2017-03-13 Albert Astals Cid * Merge (ccb3d6b4c) * Merge (0769d43cc) * Merge (393278e5b) * Merge (554b9feac) * Merge (8f7dd93e6) 2017-03-13 Michael Zanetti * add a comment (3ee0244f2) * remember focus state (8300861b0) * minor tweaks (6c275e4ea) * merge prereq (d73aca020) 2017-03-13 Lukáš Tinkl * remove delay here as well (3d09aed05) * fixup typo, remove delay (8fa952080) 2017-03-10 Lukáš Tinkl * add a test for the panel menu bar vs. active call hint (2860b2a6d) 2017-03-10 Nick Dedekind * proxy syncs with source (7367193d4) 2017-03-10 Lukáš Tinkl * extend the appropriate test for both mouse and touch cases (7173d31f9) 2017-03-10 Nick Dedekind * WMScreens attached property & screen fixes (bbd0b9bd6) 2017-03-10 Lukáš Tinkl * fix unsnapping a maximized window from the panel (b3745d6b8) * merge lp:~lukas-kde/unity8/fix-window-buttons-touch (983cd3795) 2017-03-10 Michael Zanetti * merge new prereq (016093c2a) * add outputTypeName to Screen (b4c4b672f) 2017-03-09 Michael Zanetti * fix workspace preview scaling (b9739cbe3) * fix imports (fa498d0e2) * add close button on hover (9b5b6c107) * some more fixes (77b7257e1) 2017-03-09 Albert Astals Cid * waitForRenderint to stabilize test (46bafcfde) 2017-03-09 Michael Zanetti * unfocus the drawer's textfield when it starts moving (bac0763e1) 2017-03-09 Albert Astals Cid * Test for launcher/appdrawer hiding the touch menus (36d971479) 2017-03-09 Michael Zanetti * some improvements (67df0910d) 2017-03-09 Albert Astals Cid * Test for touch menu position (aff9826ae) * Review tweaks (a0a3d5c77) 2017-03-09 Michael Zanetti * merge prereq (ab4ffb88c) * add support for closing apps in spread with "Q" (7770e2671) 2017-03-08 Michael Zanetti * fix focus issue in launcher and drawer (cc805e700) 2017-03-08 Albert Astals Cid * tweaks: (6f91fa023) 2017-03-08 Nick Dedekind * Added testShellApplication (d4d6901dd) * Screen.currentWorkspace (1721c43c3) 2017-03-08 Lukáš Tinkl * do the reset in ShellApplication, so that it persists across multiple screens/views (bb30f5284) 2017-03-08 Albert Astals Cid * Improve Launcher ←→ touch menu interaction (bdc4f8074) 2017-03-08 Lukáš Tinkl * always reset always-show-osk gsetting on startup to default value (false atm) (47227cee3) * merge lp:~lukas-kde/unity8/osk-indicator-switch (bdcd7eba1) 2017-03-08 Michael Zanetti * merge prereq (75d41d4bb) 2017-03-08 Nick Dedekind * fixed crash on remove ws (20b95b04f) 2017-03-08 Lukáš Tinkl * drop dead code (ff061675c) 2017-03-08 Michael Zanetti * use a toplevelwindowmodel per workspace (325ade42b) * merge prereq (53904db5f) 2017-03-08 Nick Dedekind * added mirtest deps (79f3c074f) 2017-03-08 Michael Zanetti * bump u-a-l version requirement (78a198411) * merge prereq (1e54aa306) 2017-03-08 Bileto Bot * Releasing 8.15+17.04.20170308-0ubuntu1 (61b737fc2) 2017-03-08 Nick Dedekind * Split up Shell::test_spreadDisabled to ensure initial state for each test. (01152e381) 2017-03-08 Michael Zanetti * change the default setting for the launcher autohiding (LP: #1670655) (67973def5) 2017-03-08 Albert Astals Cid * Add tool to browse menus of a running app (6df7b8856) 2017-03-08 Lukáš Tinkl * Fix being unable to use window control buttons or menus with touch (LP: #1667604, #1668387) (6948e5fe8) 2017-03-08 Albert Astals Cid * Move menus Component {} out of the repeater (5c86f205c) * Add warning if registerService fails (17d116bf4) * Initialize m_msecsSinceReference (ba64c454b) * Remove unused member variable (3ae12a451) * Fix small warning when sensitive is undefined (907c0dbea) 2017-03-08 Lukáš Tinkl * Cancel the drag as soon as we're entering the spread (LP: #1668642) (89290b06b) 2017-03-08 Josh Arenson * Initialize sessionMode to single when mock is reset (LP: #1667463) (bb4ca3587) 2017-03-08 Michael Zanetti * use a svg instead of a png for the Launcher's BFB (LP: #1668057) (1cb18085b) * close the drawer when something is launched from the launcher (LP: #1660367) (fd624b6d4) * Cancel the home key activation if something else is pressed along with Meta (13173a800) 2017-03-08 Daniel d'Andrada * Drag child windows with Alt+LeftMouseButton (LP: #1664947) (60493b46c) 2017-03-08 Lukáš Tinkl * Shell chrome fixes (64ed07f9c) * Disable the tutorial when there's no touchscreen (LP: #1661557) (73a64d580) * Let the OSK be driven by a switch in indicator-keyboard (LP: #1521518) (fd943695a) 2017-03-08 Albert Astals Cid * Make sure cursor is back to normal when closing the window (a43da51ec) * Show a barebones error message if loading the QML doesn't work (74d637c10) 2017-03-08 Michael Terry * Simplify our startup handling of Mir environment variables and set the right socket path in snappy. (1a5324d2b) 2017-03-08 Albert Astals Cid * Enable the license check (eab39e113) 2017-03-08 Lukáš Tinkl * Make the menu string "Back" translatable (46f04aed9) 2017-03-08 Albert Astals Cid * Let's follow the keyboard order (8f1cf859f) 2017-03-08 Gerry Boland * TopLevelWindowModel: connect to the OSK surface to know when it goes away so we can clean up after it. (ef2e52fc0) 2017-03-08 Michael Terry * Set QT_IM_MODULE in the greeter so that the OSK can come up. (LP: #1670383) (1e195997f) 2017-03-08 Nick Dedekind * Split up soreadDisabled tests (6cbdd9ead) 2017-03-08 Albert Astals Cid * Support Panel top level items to be disabled (a7fc9531c) 2017-03-08 Lukáš Tinkl * add a fallback cursor name grabbing -> closedhand, for Breeze (0c17e4b48) * address review comments (54c22460e) 2017-03-07 Michael Zanetti * change default setting for launcher autohiding (8a197ce47) 2017-03-07 Michael Terry * Set QT_IM_MODULE to allow OSK to appear (855c2ed4f) 2017-03-07 Gerry Boland * TLWM: connect to the OSK surface to know when it goes away so we can clean up after it. (5d81cd757) 2017-03-07 Albert Astals Cid * Require new version because of new api (cd7f8353d) * Update the mock (c0b462432) 2017-03-07 Nick Dedekind * Fixed duplicate apps (4e8f28f97) 2017-03-07 Albert Astals Cid * readonly (0f40b3dc6) * Simpler (497d37ab5) * isCurrent only for menus menus and not for indicator menus (0b4905165) * aboutToShow for parent menubar items (d25c17523) * Add aboutToShow for the touch menus (444646a3c) 2017-03-07 Michael Zanetti * merge prereq (364028b12) 2017-03-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (16aeee918) 2017-03-06 Nick Dedekind * cpp ownership (f82035267) * Fixed WorkspaceManager.activeWorkspace=WorkspaceProxy (3a2b92138) 2017-03-06 Michael Zanetti * update to latest backend code (3a0ec6120) 2017-03-06 Daniel d'Andrada * Simplify expression (09f4c487c) 2017-03-06 Albert Astals Cid * Signal aboutToShow (392886d86) 2017-03-06 Daniel d'Andrada * Really disable the window decoration when in staged mode (bb09f8699) 2017-03-06 Lukáš Tinkl * update (c) (5f608b5f6) * show close button by default, implement closing child windows (cedb7ad89) 2017-03-06 Michael Zanetti * fix visual glitch when hiding the drawer with launcher locked visible, add a test (19bfe133f) * bump version (a37accfdc) 2017-03-04 Nick Dedekind * fixes for workspaces (2b1865398) 2017-03-03 Nick Dedekind * Fixed mocking WMPolicy (27b74cddb) 2017-03-03 Albert Astals Cid * Give you a hint that you did something wrong (fa27b1b1a) 2017-03-03 Michael Zanetti * properly reset the drawer state when cancelling a horizontal drag (a842e89a4) 2017-03-03 Lukáš Tinkl * revert even more (f4ef2e39c) 2017-03-03 Nick Dedekind * added workspace check (b3c03fa55) 2017-03-03 Lukáš Tinkl * revert now unneeded test change (ef1b67509) 2017-03-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (78e61aecc) 2017-03-03 Lukáš Tinkl * merge lp:~aacid/unity8/create_less_components (cf2fee684) 2017-03-02 Nick Dedekind * dynamic remove surface (a705d309b) 2017-03-02 Michael Zanetti * merge prereq (1d9e43b63) 2017-03-02 Lukáš Tinkl * fixup failing test (00b0fd99a) 2017-03-02 Nick Dedekind * allow qml access to move (0373f3c01) 2017-03-02 Lukáš Tinkl * add a test for dbl click to maximize and then dbl click panel to restore a window (1da4db0e4) 2017-03-02 Nick Dedekind * mock fixes (47aff7b22) * check for surfaces (7d9e47dc2) 2017-03-02 Lukáš Tinkl * fix dbl click to restore window (3039bb4eb) 2017-03-02 Nick Dedekind * Fixed crash on exit (2a2e38c41) 2017-03-02 Lukáš Tinkl * don't prevent taps to open the menu (e48d876e3) 2017-03-02 Michael Zanetti * add surface titles to launcher's quicklist (ae9bc90dc) 2017-03-02 Lukáš Tinkl * try to stabilize Shell::test_spreadDisabled() (d336bf80d) 2017-03-02 Albert Astals Cid * only submenus select first, not first level menus (e8793ef77) 2017-03-02 Michael Zanetti * merge prereq (781c37de0) 2017-03-02 Albert Astals Cid * year range c claim (3327de0b9) 2017-03-02 Nick Dedekind * more SurfaceManager singleton (43cba0c76) 2017-03-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b4e288794) 2017-03-01 Nick Dedekind * fixed crash on delete (327be6d8e) * Better window management mocks (d70f5f531) * SurfaceManager singleton (8b8a6fa1a) * mock (e3f4e0a84) 2017-03-01 Lukáš Tinkl * take a different more reliable approach at detecting whether the window is moving (b316dd19b) 2017-03-01 Albert Astals Cid * Add warning if registerService fails (49437dc7a) * Initialize m_msecsSinceReference (cd62aa779) * Remove unused member variable (314b2a6a6) * Test++ (d34d50563) * this is a bit clearer (22f339b55) 2017-03-01 Lukáš Tinkl * stabilize test (b667a4833) 2017-03-01 Albert Astals Cid * We want to select the first enabled, not necessarily 0 (b0910f7f0) 2017-03-01 Nick Dedekind * mem management (60b3653f6) 2017-03-01 Albert Astals Cid * Merge menutool branch (6fcf493e2) 2017-03-01 Lukáš Tinkl * add a test (783b781f2) * fix double click -> maximize (b9e783b0c) 2017-03-01 Nick Dedekind * Workspaces revisited (a0ca0a0d1) 2017-03-01 Lukáš Tinkl * cancel the drag as soon as we're entering the spread (2db34082a) * reduce diff ++ (fb06e15f3) * reduce diff (c39c56992) * manually propagate the mosue events, get rid of the delayed timer, works \o/ (5cb158b17) 2017-03-01 Albert Astals Cid * Fix small warning when sensitive is undefined (26bc55a05) * Add a rotating rectangle, useful to see when the menus are being "slow" rebuilding themselves (d554efd68) 2017-03-01 Lukáš Tinkl * don't take the altDragHandler into account for window decoration movement (58fa7c15e) * make the menu and title label mutually exclusive; also prefer the menu over the title when menu is present and moving the window to prevent the flicker while the mouse/touch moves out of the decoration (893c8d135) * align interval, dismiss the inverse area asap (2fcd6eda9) 2017-02-28 Josh Arenson * Fix broken tests (bc7f9f88c) 2017-02-28 Lukáš Tinkl * stop flickering the titlebar when dragging (437ae8555) * revert test change after having fixed disableHeight (ca95c92ba) 2017-02-28 Nick Dedekind * packaging fix (747a319d9) 2017-02-28 Michael Zanetti * use a svg instead of a pixmal for the launcher's BFB (a3c973e55) 2017-02-28 Nick Dedekind * TopLevelWindowModel per workspace (f1035e3f5) 2017-02-27 Albert Astals Cid * indicators client is a tool (3a12afabb) * space-- (84309ec92) * Add tool to browse menus of a running app (6b2737914) 2017-02-27 Lukáš Tinkl * fix warning (07c7668e5) * always save the size/state, fixes closing app in staged mode and then restarting in windowed mode (1fe62a068) * fixup the other failing test (0fbf977ba) * fix the overflow button (24a7fe480) * add a test (31c139290) 2017-02-26 Lukáš Tinkl * don't show the menu popup at all when dragging window (e3f079bd6) 2017-02-25 Lukáš Tinkl * fix touch interactions with the window decorations (1ac223602) 2017-02-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (71b62b78d) 2017-02-24 Lukáš Tinkl * stabilize test (56271b39b) * fix the test assumption that mock camera-app will always be fullscreen (3dec25eb2) * revert the faulty changes to disableHeight (695ece2f3) * merge lp:~dandrader/unity8/fix-shell-chrome (7731f38bf) * merge trunk (9c65c63bd) 2017-02-24 Michael Zanetti * fix clicking label in tryLauncher (eb835af72) * bump versions (db881ddba) 2017-02-24 Daniel d'Andrada * Avoid creating yet another property in Stage.qml (416b89474) 2017-02-24 Michael Zanetti * allow hiding "private" quicklist entries when the greeter is locked (1b401c376) 2017-02-24 Lukáš Tinkl * revert initialSurfaceSize condition (aff070dbc) 2017-02-24 Daniel d'Andrada * merge lp:~lukas-kde/unity8/fix-shell-chrome (861db81ea) 2017-02-24 Lukáš Tinkl * fix the staged shell chrome policy (ce04531eb) * simplify (4b9dc7506) * fix typo (0e142dee4) * cascade, then onWindowReady load and apply the state (08f58a4e5) 2017-02-24 Michael Zanetti * hide drawer when activating something from the launcher (3a240aef1) 2017-02-24 Nick Dedekind * removed tlwm from workspace (e4d98297c) * shellapp->unityapp (9a5c01f81) * more workspaces (925a0a9fe) 2017-02-24 Lukáš Tinkl * w/o timer (01bfeff0d) 2017-02-23 Bileto Bot * Resync trunk. (6f314ea06) 2017-02-23 Josh Arenson * Initialize sessionMode to single when mock is reset (6bef8064b) 2017-02-23 Michael Zanetti * properly create and destroy workspaces (44063d458) * make use of actual workspace model instead of dummy ListModels (6c68622cd) 2017-02-23 Josh Arenson * Fix height (171f85c23) * Fix spelling (2845a0666) 2017-02-23 Albert Astals Cid * Make these bindings as they were before (244905e7c) * less warnings about menuData being null (a5d67480e) 2017-02-23 Michael Zanetti * merge new prereq (17872afd7) 2017-02-23 Lukáš Tinkl * load/init the values in every case (ef236c568) 2017-02-23 Michael Zanetti * merge new prereq (01de8a1b4) 2017-02-23 Lukáš Tinkl * more test fixes (9b7aa95e7) 2017-02-23 Nick Dedekind * merged with parent (886352b66) * merged trunk (d53ef7fe8) 2017-02-22 Josh Arenson * Fix initial session highlight and cleanup (14534c004) 2017-02-22 Lukáš Tinkl * fix some tests now that camera-app is no longer fullscreen in windowed mode ;) (dd95e15e0) * shell chrome fixes (077284d65) 2017-02-22 Josh Arenson * Merge trunk (bde717cb3) 2017-02-22 Daniel d'Andrada * Drag child windows with Alt+LeftMouseButton (ab886532e) 2017-02-22 Albert Astals Cid * Fix real world submenus (e.g. kate) not getting their first item selected on open (ac33d0a29) 2017-02-22 Nick Dedekind * policy override (2710ca197) 2017-02-22 Albert Astals Cid * New code is faster and test needs to actually wait for the menubar to be in the initial state (253230c6c) * Move menus Component {} out of the repeater (dbdb5700a) 2017-02-22 Michael Zanetti * fix the test (f1d30195b) * reenable code (5599c18a1) 2017-02-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (879cd78f5) 2017-02-21 Michael Zanetti * add a test (4b2a4637a) * cancel the home key activation timer if something else is pressed along with Meta (6cb60257d) 2017-02-21 Lukáš Tinkl * merge lp:~lukas-kde/unity8/osk-indicator-switch (ecc2d912a) 2017-02-21 Albert Astals Cid * Add TODO for when we start using Qt 5.8 (7df27eeb4) 2017-02-21 Lukáš Tinkl * merge trunk (bcc32d2e2) * merge trunk (f694c4f28) 2017-02-21 Bileto Bot * Releasing 8.15+17.04.20170221-0ubuntu1 (9c05525c0) 2017-02-21 Ken VanDine * Handle ubuntu-app-launch API/ABI break (efe97d231) 2017-02-21 Lukáš Tinkl * translate "Back" on the menu page (ac5d0f06c) 2017-02-21 Albert Astals Cid * Make sure cursor is back to normal when closing the window (572221e10) 2017-02-20 Michael Zanetti * optimize it a little (563bcf4f5) 2017-02-20 Lukáš Tinkl * default to false for the OSK switch value (ed27e9e2a) 2017-02-20 Michael Zanetti * improve dragging and hover scrolling (f20331bab) * add support for dragging apps out of the spread (792e2c990) 2017-02-17 Lukáš Tinkl * the indicator-keyboard is present when there's a keyboard (60ac338cc) * add the OSK icon to the password prompt field (bb1bf728c) 2017-02-17 Nick Dedekind * removed screen mock (53626b89e) * added workspaces (14f1570da) 2017-02-17 Lukáš Tinkl * fix showing hiding the indicator icon and some failing tests (d7a2d01aa) 2017-02-17 Nick Dedekind * use qtmir-api (94c2a09da) 2017-02-16 Lukáš Tinkl * fix the indicator visibility check (bd7cff3d9) * fixup tests (bb37c7ebf) 2017-02-16 Bileto Bot * Releasing 8.15+17.04.20170216.1-0ubuntu1 (7af3e1d29) 2017-02-16 Albert Astals Cid * Remove variable that is always false (LP: #1585910) (37d85b728) * Serialize two make targets that want to cp to the same target file (78786af85) 2017-02-16 Michael Zanetti * stabilize OrientedShell test (LP: #1658994) (f78a46a33) 2017-02-16 Albert Astals Cid * Remove TODO now that we require Qt > 5.5 (ba12e1776) * Eat hover events when the launcher quicklist is open (8658c415e) 2017-02-16 Michael Zanetti * properly invalidate the whole model (370de230b) 2017-02-16 Daniel d'Andrada * Consolidate launcher API checks (298df435f) 2017-02-16 Michael Zanetti * prevent hiding the launcher when the mouse hover event is eaten by the EdgePushArea (LP: #1657045) (47b1884d6) * Update the tutorial to mention the app drawer instead of the dash on long left edge swipe (LP: #1658932) (538ae7e1a) * Show the wallpaper while the focused app is moving in staged mode (LP: #1648251) (1564e7196) * fix jumpy animation when closing an item from the spread (92c163360) * fix some glitches with spread positioning (6c6f59ae8) * fix minimizing/restoring transitions (LP: #1658936) (a37e43574) * move right edge push area up some levels so it can be used on top of the indicators (32b9b6eb5) 2017-02-16 Lukáš Tinkl * Fixes for activating minimized windows and restoring fullscreen ones (LP: #1656808, #1658937, #1658938) (81465971c) 2017-02-16 Albert Astals Cid * Make double click on the window decoration maximize (76d1e6804) 2017-02-16 Nick Dedekind * Updated menu colors (4347bb5f2) * Added overflow support to application menus. Hover timer for auto-scrolling menu popup overflow. (079549e1e) 2017-02-16 Albert Astals Cid * Make the MenuBar InverseMouseArea eat hover events when there's a popup open (LP: #1657763) (780d6c045) * Make the double click on a menu not be maximize the window below (LP: #1657079) (be357ca8a) * Auto open submenus on hover (LP: #1657085) (903afa9d4) * Make the menus and submenus do not go outside the screen when popping out (0edaf2c95) * Clicking on an open menu closes it + test (46dea6a2a) * Make menus items close the menu when clicking on them (LP: #1657082, #1657399) (a0a24fb75) 2017-02-16 Lukáš Tinkl * fix wording (edf639c26) * use "paused" instead of enabled/visible (c2ac152f5) 2017-02-15 Lukáš Tinkl * implement the OSK switch internals for u8 (951fa2c29) 2017-02-15 Albert Astals Cid * Set the color of the text too just in case (68b52639a) * Show a barebones error message if somehow loading the QML doesn't work (f2f43904b) 2017-02-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (66888de58) 2017-02-14 Michael Zanetti * fix imports (051de4259) 2017-02-13 Michael Zanetti * merge trunk (a456cefc6) * merge trunk (0278b4191) * add scrolling areas (ec5e81690) 2017-02-10 Ken VanDine * dropped debian/changelog entry (fe952197d) 2017-02-10 Nick Dedekind * merged with trunk (54c109e31) 2017-02-10 Michael Zanetti * merge prereq (f57eab2d3) * play with the size (5d0ab19d5) 2017-02-10 Nick Dedekind * api version bump (a6cff49e1) 2017-02-09 Michael Zanetti * add drag and drop wor workspaces between screens (1c773229a) 2017-02-08 Ken VanDine * Handle ubuntu-app-launch API change (1b5defffc) 2017-02-08 Michael Terry * Clean up Mir startup and environment variable logic (07712e4c0) 2017-02-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9482eec5d) 2017-02-07 Nick Dedekind * merged with parent (67cf87cb5) * merged with parent (2e8e4f583) 2017-02-07 Lukáš Tinkl * merge trunk (01beee235) * merge trunk, resolve conflict (255928108) 2017-02-07 Albert Astals Cid * Merge (f4a4d7cd4) * Merge (ed9c5e221) * Merge (e8f890dff) * Merge (4ffc7527b) * Merge (e306b6611) * Merge (418a3bd9e) 2017-02-07 Bileto Bot * Resync trunk. (5d877e0eb) 2017-02-07 Nick Dedekind * merged with parent (cba7f96f1) 2017-02-07 Michael Zanetti * some more work on the workspace preview spread (bc9e93ff4) 2017-02-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (da55ec3d7) 2017-02-06 Josh Arenson * Merge trunk: (19a9ecd75) 2017-02-06 Albert Astals Cid * Let's follow the keyboard order (eb873ba00) 2017-02-06 Bileto Bot * Releasing 8.15+17.04.20170206-0ubuntu1 (376baf0c2) 2017-02-06 Daniel d'Andrada * Initial support for child windows (menus, dialogs, tooltips) (LP: #1543467, #1591384, #1656727) (96917ee23) 2017-02-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (afa296d02) 2017-02-03 Michael Zanetti * make it a listview, update to latest api (7f5356b6e) 2017-02-03 Nick Dedekind * updated mock (a70a37206) * activate screen (4816066af) 2017-02-03 Michael Zanetti * merge prereq (beafaa2ce) * make workspaces a listview (e73e035dd) 2017-02-03 Lukáš Tinkl * disable tutorial when there's no touch screen (bb7455336) 2017-02-02 Nick Dedekind * active screen (450ce3129) 2017-02-02 Albert Astals Cid * Enable the license check (5912f456b) 2017-02-01 Albert Astals Cid * Remove wantsDrag, it's always false (900645926) 2017-02-01 Daniel d'Andrada * Consolidate launcher API checks (9a6c92ec6) 2017-01-31 Nick Dedekind * review comments (8577e474b) * readd tests (9a87f3969) 2017-01-31 Bileto Bot * Releasing 8.15+17.04.20170131.1-0ubuntu1 (0fb8d867f) 2017-01-31 Rodney Dawes * Remove dependencies on clickscope. (33c422855) 2017-01-31 Albert Astals Cid * Put the test in a different place so merges better (997eaf2e8) 2017-01-31 Rodney Dawes * Removed comment. (2305fb3e3) 2017-01-31 Albert Astals Cid * Eat hover events when the launcher quicklist is open (2896d0985) * Merge ~nick-dedekind/unity8/menu.overflow (a4e44acab) * Serialize two make targets that want to cp to the same target file (a311aa485) 2017-01-31 Nick Dedekind * include panel height in max height calc (9b8021076) * moved shouldDisplay connection (1f4442966) * removed height change (74df52651) 2017-01-30 Nick Dedekind * merged lp:~aacid/unity8/eatHoverWhenMenuIsOpen (400e2db61) * reverted rebase (2ec7b986a) * merged with closeMenusOnClick (15bf2d05a) 2017-01-30 Albert Astals Cid * More test fixes. (e4400a2d6) 2017-01-30 Michael Zanetti * fix jumpy animation when closing an app from the spread (aba2f73fc) 2017-01-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8a02dc252) 2017-01-27 Rodney Dawes * Fix the after reset test. (be0d72ee8) * Update scope load checks in init. (68b7a6c75) * Remove some tests that are no longer relevant. (ee14750c4) * Strip the remaining special casing of libertine scope as well. (b473e44a7) 2017-01-27 Nick Dedekind * merge with trunk (6848933bd) 2017-01-27 Albert Astals Cid * Make the MenuBar InverseMouseArea eat hover events when there's a popup open (903a55cb9) 2017-01-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (710454737) 2017-01-26 Lukáš Tinkl * add a test for alt-tabbing to a minimized window (807ad23fb) * raise the surface when focusing it; fixes alt-tabbing to a minimized window (11800dcba) 2017-01-26 Michael Zanetti * fix a glitch with spread positioning (3f45bce2c) * simplify (5d86cc3c5) 2017-01-26 Lukáš Tinkl * add a test for normal -> maximizedRight -> fullscreen -> maximizedRight (e618974e0) 2017-01-26 Michael Zanetti * fix type & launch (40cd8c633) 2017-01-26 Albert Astals Cid * Merge (502020df8) * refinements (3dc50aff3) 2017-01-26 Michael Zanetti * merge trunk (fab6092a5) * stabilize OrientedShell tests (f2cc54b04) 2017-01-26 Lukáš Tinkl * merge trunk (b653d6c73) 2017-01-26 Daniel d'Andrada * Initial support for child windows (menus, dialogs, tooltips) (f2ff1f03f) 2017-01-26 Albert Astals Cid * Merge (7b1311145) * Make the double click on a menu not be maximize the window below (1d2c4c0b0) 2017-01-26 Nick Dedekind * merged with trunk (20e4c2b84) 2017-01-26 Albert Astals Cid * Merge (b6b936742) * Merge clickOpenMenuClosesIt (48c3c7858) 2017-01-26 Michael Zanetti * merge trunk (463588452) 2017-01-26 Albert Astals Cid * Merge (8a4a2c640) * Merge (76f652551) * Merge (7d03beb9e) * Merge (ceacebb78) 2017-01-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c2efa54ac) 2017-01-25 Josh Arenson * Fix session getting clipped (e7bc2c609) * Make prop read-only (c0e71676c) 2017-01-25 Rodney Dawes * Fixes per review. (9966be2a6) 2017-01-25 Michael Zanetti * drop unneeded activate() call (2a7923b2d) * properly invalidate the whole model (8394f1e78) 2017-01-25 Albert Astals Cid * remerge (c2386becf) 2017-01-25 Lukáš Tinkl * add a note about the longterm TODO (44ac4cd84) * fix restoring fullscreen windows (d734438bb) 2017-01-25 Albert Astals Cid * Auto open submenus on hover (5a0e98aee) 2017-01-25 Nick Dedekind * reverted showOnClick change (97eb8f1d7) 2017-01-25 Michael Zanetti * fix minimizing/restoring transitions (f6eaa00b6) 2017-01-25 Nick Dedekind * fixe whitespace (54ee9c2e3) 2017-01-25 Albert Astals Cid * Do not use exact gu values for the compares (4aa1759aa) 2017-01-24 Josh Arenson * Merge trunk (350a0ed40) 2017-01-25 Lukáš Tinkl * minimized+focused window fixes (14c72a1d6) * fullscreen+spread fixes (da444488b) 2017-01-24 Nick Dedekind * fixes (43977c94e) 2017-01-24 Albert Astals Cid * Now with better files! (322539b30) * Make the menus and submenus not go outside the screen when popping out (2d8c8aaaf) 2017-01-24 Nick Dedekind * fixes (d88d49188) 2017-01-24 Lukáš Tinkl * merge silo 2272 (e8b0d117b) 2017-01-24 Michael Zanetti * update tutorial text to mention the app drawer instead of the dash (a3361086e) 2017-01-24 Nick Dedekind * color fixes (594701e7d) * reverted color fixes (6df31851d) * Added menu overflow (0c2d897a5) 2017-01-24 Bileto Bot * Releasing 8.15+17.04.20170124-0ubuntu1 (bd29f3df0) 2017-01-24 Daniel d'Andrada * Remove unnecessary warning message (453a39b33) 2017-01-24 Nick Dedekind * Skip Panel::test_drag_indicator_item_down_shows_menu (ef3532ad4) 2017-01-24 Michael Zanetti * allow 4 finger simulation with mousetouchadaptor (c6a3c7303) 2017-01-24 Lukáš Tinkl * Use a four finger gesture to open the drawer, much like in u7 (f71c48a76) 2017-01-24 Michael Terry * Fix grouping of autopkg output and allow optionally passing arguments to installed test scripts. (e5ef877a5) 2017-01-24 Albert Astals Cid * There's no spreadDelegate_ anymore (54e2550be) 2017-01-24 Lukáš Tinkl * Add a test for the real implementation of WindowStateStorage (c695a7ea8) 2017-01-24 Albert Astals Cid * a window -> the current window (d3e2ebfea) 2017-01-24 Michael Zanetti * Adjust home key to still focus the dash instead of messing with the drawer (44c810cf2) * Improvements for the appdrawer (13a79d1d5) 2017-01-24 Lukáš Tinkl * Start searching directly as you type, w/o having to first focus/click the search field. (e14a31e5d) 2017-01-24 Michael Zanetti * hint the launcher to indicate a successful size change to the user (LP: #1646457) (64d94a3ec) 2017-01-24 Nick Dedekind * Fixed menu layout width calculations. (LP: #1657050) (df8c9d548) 2017-01-24 Daniel d'Andrada * Simplify DecoratedWindow (d76e34aaf) 2017-01-24 Nick Dedekind * Added Alt+F10 shortcut to open app menus. (LP: #1656896) (707ea26b7) 2017-01-24 Albert Astals Cid * Add keyboard navigation for Indicators (c198715dd) * Update current session after changing the user (f11b59ca0) 2017-01-24 Michael Terry * Use a model for PAM prompts, supporting more possible interactions. (6d9907ef7) * Add support for LightDM hints for manual logins and hiding normal users. (f94aa28a2) * Add support for guest sessions in unity8-greeter. (f8690684f) 2017-01-24 Josh Arenson * Add a test for the session chooser icon in the greeter's sessions list (446b941ac) 2017-01-24 Michael Terry * Simplify the lightdm mock to make future greeter improvements easier to test. (75ef7acee) 2017-01-24 Albert Astals Cid * Restore focus to where it was when our ShellDialogs get unloaded (7b99df23b) 2017-01-24 Lukáš Tinkl * Shell dialog improvements (kbd focus, mouse eater) (3f99e4c1c) 2017-01-24 Albert Astals Cid * Limit tab-focus travelling on dialogs with a fence (ac6799e83) 2017-01-24 Lukáš Tinkl * Fix keymap not being applied on the shell itself (LP: #1626435) (906fa33c5) 2017-01-23 Michael Terry * Add some safeguards to the WideView test, to avoid the test starting before the UI is ready; hopefully fixes a flaky test (06efe1d9d) 2017-01-23 Rodney Dawes * Remove dependencies on clickscope. (1341e040e) 2017-01-23 Nick Dedekind * enabled only when item enabled (0c0933998) 2017-01-23 Michael Terry * Make sure to reset binding unconditionally during test init; in some cases when running a test in isolation, things wouldn't be set up correctly (b89a529e0) 2017-01-23 Michael Zanetti * try to catch a crash in case we're getting bad indexes (1a6216062) * add icon, adjust visuals (0144005f7) 2017-01-23 Michael Terry * Fix first session icon on startup (cec6f99ab) 2017-01-23 Michael Zanetti * add a test (c67bb6aae) 2017-01-23 Albert Astals Cid * i'm tyopeing moar than usual (2a8b079c0) 2017-01-23 Michael Zanetti * activate the other screen on timeout (8f3585058) * merge prereq (3160af0b1) 2017-01-23 Nick Dedekind * fixed whitespace again (048774575) 2017-01-23 Albert Astals Cid * comment++ (e1659ca13) 2017-01-23 Nick Dedekind * fixups (13a7e0883) * Added screens::activate (c6a9a00a6) 2017-01-23 Michael Zanetti * merge prereq (23f461e7c) * drop empty line (1062cbb23) * add hover item to screens (2f4159abe) 2017-01-23 Nick Dedekind * removed bad merge (df345d251) 2017-01-23 Michael Zanetti * adjust home key to still focus the dash instead of messing with the drawer (a00da0060) 2017-01-23 Nick Dedekind * default logging off (1a62286f3) * Added overflow button (643142f51) 2017-01-23 Albert Astals Cid * Dfiferent way of making double click work on window decoration (f063c7acf) 2017-01-23 Michael Zanetti * merge prereq (c93aefa6d) 2017-01-23 Nick Dedekind * Auto scroll. Maximum height to bottom of screen (d67b8be65) 2017-01-20 Albert Astals Cid * Clicking on an open menu closes it + test (85c112044) * Make menus items close the menu on clicking on them (d33986111) 2017-01-20 Nick Dedekind * color fixes (c1fc94e46) 2017-01-19 Michael Terry * Fix up session test a bit, which also lets it pass (979cee66f) 2017-01-19 Daniel d'Andrada * Remove unnecessary warning message (604c754d4) 2017-01-19 Michael Terry * Fix some tests that broke with new manual login pre-req (669c2afb0) 2017-01-19 Albert Astals Cid * Remove TODO now that we require Qt > 5.5 (c0dcace41) * Make double click on the window decoration still maximize (e6dcb3492) 2017-01-19 Michael Terry * Merge greeter-manual-login (9a8a24ce1) * Merge greeter-guest (27fa2c954) * Merge josh's ported-session-test (d31f30149) * Make sure that greeter prompt buttons are in focus chain too (65bfae31a) * Merge greeter-manual-login (c9a7716ac) 2017-01-19 Albert Astals Cid * Merge lp:~dandrader/unity8/simplifyWindowDecoration (cc0e636ca) 2017-01-19 Michael Terry * Switch to new Q_ENUM macro (8e933c930) 2017-01-19 Nick Dedekind * removed debug code (4c6331c7b) 2017-01-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (529061e95) 2017-01-18 Michael Terry * On second thought, push that cancel up a layer to handle real liblightdm shutdown too (ea7d230ed) * When shutting down, cancel any open PAM interaction (1bab52155) 2017-01-18 Lukáš Tinkl * stabilize+++ (49922ad8d) 2017-01-18 Michael Terry * Don't show guest or manual login in lockscreen mode (f78a3a4a9) 2017-01-18 Daniel d'Andrada * Simplify DecoratedWindow (e73b43aa0) 2017-01-18 Nick Dedekind * put back boundary pushing (d6d644236) * fixed multishell cursor (177d10411) 2017-01-18 Michael Zanetti * fix bug 1657045 (4c18a4139) 2017-01-18 Michael Terry * Fix tests (bce128649) 2017-01-18 Lukáš Tinkl * try to stabilize the test a bit (f3eb40dfe) 2017-01-18 Nick Dedekind * added tests for sizing (75ef09c0d) * fixed up some min/max issues (7fd10f281) * Menu layout fixes (6c699ede5) 2017-01-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eb6d87457) 2017-01-17 Josh Arenson * Merge mterry's prereq (2a3c8ec78) 2017-01-17 Michael Terry * Fix more tests (acc904ace) * Merge greeter-guest (c02eb6467) * fix some tests (ea99c0115) * Merge greeter-guest (e3f492e1e) * Merge simple-lightdm-mock (02225a7a8) * Merge trunk (7124cda8e) 2017-01-17 Michael Zanetti * allow 4 finger simulation with mousetouchadaptor (5927a72f2) 2017-01-17 Michael Terry * Merge trunk (96b43452e) 2017-01-17 Lukáš Tinkl * don't react on drag (41f1e203c) 2017-01-17 Nick Dedekind * console log (5c2f25c68) * Added missing install files (d054f82d6) 2017-01-17 Lukáš Tinkl * open the appdrawer on 4-finger tap, not just press (2fbf33807) 2017-01-17 Nick Dedekind * Added Alt+F10 to open menu and test (b748ceb82) 2017-01-16 Lukáš Tinkl * strip the bloody whitespace (683cd5e93) 2017-01-16 Michael Zanetti * merge prereq (3610fcc04) * improve previews (d6d0af355) 2017-01-16 Lukáš Tinkl * use a temp dir (7b27e2ab9) 2017-01-16 Nick Dedekind * fixed whitespace (7db65ce9e) 2017-01-16 Michael Zanetti * merge prereq (67912854d) * split it up (84a5759a6) 2017-01-16 Nick Dedekind * merged with trunk (c83033a8c) * skip drag test (3ec313f99) 2017-01-16 Michael Zanetti * first take on adding screens to the spread (a884ed986) 2017-01-16 Lukáš Tinkl * merge trunk, resolve conflict (26f9d1257) 2017-01-16 Michael Zanetti * merge prereq (e3a065185) 2017-01-16 Albert Astals Cid * Move test around (75798bc30) 2017-01-16 Lukáš Tinkl * merge trunk (803b594b7) * merge trunk, resolve conflict (d274816fa) 2017-01-16 Albert Astals Cid * Merge (71832106f) 2017-01-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6c5022c4e) 2017-01-15 Bileto Bot * Resync trunk. (c9fd1c3b1) 2017-01-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8e37809fc) 2017-01-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d44a3a6a7) 2017-01-13 Josh Arenson * Remove unused signal (260068d0b) * Rearchitect test (c3d68e5b8) 2017-01-13 Michael Terry * Merge greeter-guest (e043e4cd9) * Properly fade in new prompts; don't show double prompts when using mocks (7d7cfae82) 2017-01-13 Nick Dedekind * Added more screen roles (6be92885a) * added missing decl (fc161c298) 2017-01-13 Michael Terry * Run meta-meta tests serially (ed6d29d31) * Provide initializers for native types (ae5a58a43) 2017-01-13 Nick Dedekind * SurfaceManager from ShellApplication.qml (1a5e0d4d8) * add qmldir to CMakeLists (59c04a7ee) * disable input filtering (ac058707e) 2017-01-12 Michael Terry * First pass at a prompts model (74a104f10) * Cache auth user so we don't send change emission more than onc. fixes CI test (ebd7b5bba) 2017-01-12 Nick Dedekind * Added input controller window (5e6c182e2) * multiple shell instances (a706fb004) 2017-01-12 Michael Terry * Let tests pass again (e5a20912d) 2017-01-12 Nick Dedekind * per shell panel state (795acac11) * first multiwindow greeter (389a48b5d) * multiwindow cursor (5cf02ba40) 2017-01-12 Michael Zanetti * show wallpaper while focused app is transitioning in staged mode (5f94a4787) 2017-01-12 Nick Dedekind * uinput singleton (b2c4c3abd) * multi screen desktop mock (8ec082fa9) 2017-01-11 Michael Terry * Fix whitespace (123d06143) 2017-01-11 Josh Arenson * Remove unused object (58dc74f83) * Don't reset the whole model (5a2b91d7c) 2017-01-11 Michael Terry * refactor UsersModel a bit to allow further future custom rows easier (though I don't know of any planned ones); add some tests (48cf7e646) * Merge greeter-guest (ea4893efe) * Have mock notice when we suddenly gain or lose a guest account, fixing a test (57e7dc8f9) * Right, you don't need to guard delete (09dac0dfe) * Add a touch more testing (9901e754d) * Move extra items inside MangleModel, which is now a simple identity proxy, to avoid confusing the sort proxy model and thus avoid crashes (f01ede6f9) 2017-01-10 Michael Terry * Allow passing arguments and collapse stdout and stderr so they show up like we expect (8277c02b2) 2017-01-10 Lukáš Tinkl * merge prereq (44f482dde) 2017-01-10 Albert Astals Cid * a window -> the current window (3076eaca1) 2017-01-10 Bileto Bot * Releasing 8.15+17.04.20170110.4-0ubuntu1 (0a462d5ce) 2017-01-10 Michał Sawicz * Nuke leftover Platform in IndicatorsManager (3050bd56e) 2017-01-10 Lukáš Tinkl * Add Unity.Platform mock for our tests (LP: #1655336) (ba5c54f92) 2017-01-10 Daniel van Vugt * Deprecate usage of Mir's input resampling, instead opting for: Shell: Raw native input events Apps: Qt's built-in touch compression input resampling algorithm, and other toolkits are expected to provide their own. (0944c517d) 2017-01-10 Josh Arenson * Allow the scopes list to automatically scroll when a scope is being dragged past the bounds of the screen. (LP: #1575319) (825433321) 2017-01-10 Lukáš Tinkl * Fixup paths for window state storage in snappy environment (d4c9eabd9) 2017-01-10 Albert Astals Cid * Require Qt 5.6 & misc fixes (47b643a06) * tst_WindowResizeArea: Use default values for mouseFlick speed and iterations (LP: #1651580) (19b53d4e3) * Give focus to one of the buttons of the dialog (3881c9772) 2017-01-10 Lukáš Tinkl * Fix touch window controls being unreachable when the overlay is being displayed (LP: #1648167) (521240dc7) 2017-01-10 Rodney Dawes * Remove the payments widget and dependency on libpay as no longer needed. (876c4a776) 2017-01-10 Michael Zanetti * some launcher workarounds for the snapping (493e11111) * Add a D-Bus interface to control some debug facilities on the fly (2f3e8af15) * PreviewRatingInput: Use displayText instead of text to enable/disable the Send button (LP: #1595910) (0a7a1deaa) 2017-01-10 Michał Sawicz * Application menus (90770d521) 2017-01-10 Nick Dedekind * Added registry for application menus (cb0eedf10) 2017-01-10 Michael Terry * Run the qmluitests.sh autopkg test against the installed package. (f7f18b05e) 2017-01-10 Michał Sawicz * Nuke leftover Platform in IndicatorsManager (2b74b5a33) 2017-01-10 Lukáš Tinkl * add Unity.Platform mock (1cd3d6d25) 2017-01-10 Nick Dedekind * added render wait (b3162da2e) * moved test wait to front (458df7e4c) 2017-01-10 Michael Zanetti * update tests (b2444c27e) 2017-01-10 Albert Astals Cid * Don't let LoginList go beyond bounds in index (825ee377e) 2017-01-10 Timo Jyrinki * No change rebuild (a6d26bcc4) 2017-01-10 Michał Sawicz * Fix typo in PanelItemRow.qml (cc621c104) 2017-01-09 Michael Terry * Move change emission (217d68cd6) * Add some fixes (b4c3f4b8c) * Use nicer manual prompt (1069358fe) * Support the lightdm manual-login hint (3182a1deb) * Add a couple more data roles for guest (d12d603bd) 2017-01-09 Lukáš Tinkl * merge prereq (24c9f5fd8) 2017-01-09 Albert Astals Cid * Make it work the second time (f47d0f30a) 2017-01-09 Nick Dedekind * Fixed mouse navigation tests (b4f16f57b) 2017-01-09 Lukáš Tinkl * ensure the drawer is hidden after launching something (0eeb3f598) 2017-01-09 Michael Zanetti * whiiiiitespace! (a845c9bf4) * disable most used again as u-a-l is not ready yet (1376f2ffc) 2017-01-09 Nick Dedekind * Added panel title visiblity tests (a90cbc0f7) 2017-01-09 Lukáš Tinkl * merge prereq (1f8ab9cc6) 2017-01-09 Michael Zanetti * drop debug prints (5a43f5a06) * merge with prereq (d4a8cb921) * drop commented line (16fa310fa) 2017-01-09 Lukáš Tinkl * test both Tab and Down keys (1a53504ee) 2017-01-09 Michael Zanetti * whitespace -- (f18103291) * fix testShellWithPin (7a34365b0) * fix tests (40b536870) * replace custom focus ring with SDK one (d11044c0b) 2017-01-06 Josh Arenson * Fix test (74b5e63ff) * Merge mterry's prereq (58a71b0d7) 2017-01-06 Michael Terry * Fix tests (3255f0dea) 2017-01-06 Nick Dedekind * Fixed panel title not displaying (94ee99911) 2017-01-06 Michael Terry * Merge from simple-lightdm-mock (cdf24a38c) 2017-01-06 Nick Dedekind * fixed testShell (ecfff3a4d) 2017-01-06 Daniel van Vugt * Deprecate usage of Mir's input resampling, instead opting for: Shell: Raw native input events Apps: Qt's built-in touch compression input resampling algorithm, and other toolkits are expected to provide their own. (e3bace471) 2017-01-05 Michael Terry * Fix a test in CI (ce575545e) 2017-01-05 Lukáš Tinkl * add a test (67018672f) * use a 4-finger gesture to open the drawer, much like in u7 (486f4099c) * merge lp:~mzanetti/unity8/appdrawer-improvements (c69314ee4) 2017-01-05 Albert Astals Cid * Merge (af6073ab8) 2017-01-05 Michael Terry * Merge from trunk (f13fb712a) 2017-01-05 Lukáš Tinkl * use current, don't deref twice (db2571d66) * return a bool so that we can accept the event from QML (05d9ed4f8) 2017-01-05 Nick Dedekind * wat for item animation to complete (8c639f1a7) 2017-01-05 Lukáš Tinkl * allow up/down keys to manipulate focus in the fenced focus chain (43912ea0a) 2017-01-05 Albert Astals Cid * There's no spreadDelegate_ anymore (86bba405e) * Component -> Item (423a50dd5) * Restore focus to where it was when our ShellDialogs get unloaded (a87fdb371) 2017-01-05 Nick Dedekind * fixed restarting scroll (fa6c40aae) 2017-01-04 Lukáš Tinkl * fix hasActiveDialog (712a61317) * stabilize+++ (ae733b1f8) 2017-01-04 Nick Dedekind * Require some lateral movement before engaging scrolling (5a7a6f562) * potential race fix (789b9967a) 2017-01-04 Lukáš Tinkl * design: always focus the first/affirmative action (79c5d5972) 2017-01-04 Michael Zanetti * merge trunk (696c8cb18) 2017-01-04 Albert Astals Cid * Merge (fdc7c3494) 2017-01-04 Lukáš Tinkl * stabilize++ (58e30dc47) * export HOME instead (91cc9f258) 2017-01-04 Nick Dedekind * Fixed focus issues (94dd7a551) * fixed clipping (0640a93ff) 2017-01-04 Lukáš Tinkl * let's see if our CI likes this better (ab2f84961) 2017-01-04 Albert Astals Cid * Make the indicators left/right work just after opening indicators too (e9b688ac1) 2017-01-04 Lukáš Tinkl * don't enable the dialog's mouse area unconditionally (f2a8f40ff) * move the mouse eater inside the dialog (eba2a6040) * merge lp:~aacid/unity8/tab_focus_fence_dialogs (85f1bc984) 2017-01-03 Nick Dedekind * Fixed stage test (a2352780b) 2017-01-03 Josh Arenson * Merge trunk (9f0b57781) 2017-01-03 Lukáš Tinkl * set the testing flag from the test itself (debd6988c) * add the actual test ;) (dcff7e63b) * add a test for the real implementation of WindowStateStorage (a9b09855d) 2017-01-03 Nick Dedekind * Added missing test data file (315dc3c28) 2017-01-03 Michael Zanetti * merge installed-qmltests as prereq to avoid merge conflicts (3db2cc76c) 2017-01-03 Albert Astals Cid * Restore Esc to close dialog + test (cec096a7a) 2017-01-03 Lukáš Tinkl * merge lp:~lukas-kde/unity8/snappy-windowstatestorage-cleanups (82ff2e166) 2017-01-03 Albert Astals Cid * Beware of the evil double space! (503032beb) * Merge (238f24b92) * Merge (abeac4e96) 2017-01-03 Nick Dedekind * merged with pre-req (bef8ee3bd) * merged with pre-req (de4e6ef76) * merged with trunk (fa68d4d2a) * more test fixes (1ca89ff2e) * fix tests (f5cbddf94) 2017-01-03 Albert Astals Cid * oh no an empty line! (d02709f57) * {} (c526e0242) * New year (725e604f6) 2017-01-03 Nick Dedekind * merged with pre-req (b9d91915a) * merged with prereq (eb5f94f91) 2017-01-03 Michael Zanetti * merge trunk (86451b484) 2017-01-02 Lukáš Tinkl * merge trunk (52c41f1b5) * merge trunk (f2a18b117) * merge trunk, resolve conflicts (961e9df5c) 2017-01-02 Albert Astals Cid * Fix the rwrite to use iterators properly (a1269607d) 2016-12-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c73be7a43) 2016-12-27 Lukáš Tinkl * fix QString::arg() usage (a34fd9fce) * merge trunk (82d82f405) * merge trunk (32d8eada2) 2016-12-23 Albert Astals Cid * Easier way of deleting all but the last item (4a029dc3f) * Q_FLAGS -> Q_FLAG (99f24d8fa) * warning-- (8ee0d3f10) * Merge (5757819b6) * Require Qt 5.6 + misc fixes (7c5186be4) 2016-12-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7606c628c) 2016-12-22 Bileto Bot * Resync trunk. (4e282b086) 2016-12-22 Nick Dedekind * touch/pointer usage tweaks (9641560d0) * Immediate recognition of popup on Alt mnemonic (94ea5dc3a) 2016-12-22 Albert Astals Cid * Test the focus fence in the shutdown dialog (8560ba40a) * Test left/right/esc keyboard navigation in indicators (af3e0b887) 2016-12-21 Josh Arenson * Merge prereq (3237d3240) * Uncomment all the tests... (88ddfeeea) * Reimplement test (6019cf988) * back out some changes (746ea24c7) * Remove unused property (8413c2449) 2016-12-21 Albert Astals Cid * Use default values for mouseFlick speed and iterations (1d488548b) * Add mouse navigation for Indicators (641ba730f) * Let the model deal with some window management decisions (LP: #1346633) (1b6b921dc) 2016-12-21 Michael Zanetti * merge trunk (dbcd25f37) 2016-12-21 Albert Astals Cid * Limit tab-focus travelling on dialogs with a fence (ad3474c8f) 2016-12-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (94b66a38c) 2016-12-20 Michael Terry * fix some more instnces of .mock (8d7cdf4e9) * Merge 2160 (edc1008e0) * Merge 2160 (98af9fb7a) * Merge trunk (d681a3ede) * Use LightDMController plugin from Albert (c5ae041a2) 2016-12-20 Michael Zanetti * fix tests (8d1a4aa88) * merge trunk (7d681a3a8) 2016-12-20 Albert Astals Cid * Give focus to one of the buttons of the dialog (3222ff6ed) 2016-12-19 Michael Terry * Set icon search directory (9282f8d80) * Add support for lightdm guest users (2d4064cdb) 2016-12-19 Josh Arenson * Add test (34333399b) * Update the mocks (57d7fc919) * Fix coloring of sessions list (1e1803a04) 2016-12-19 Nick Dedekind * added pointer menu activation in staged mode (620290b86) 2016-12-19 Albert Astals Cid * Update current session after changing the user (b5651a819) * Remove unused property (2ded5bd92) 2016-12-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (01f53e086) 2016-12-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a24df9b2b) 2016-12-16 Michael Terry * Refactor our lightdm mock (ddb5511b4) 2016-12-16 Lukáš Tinkl * restore the same old path behavior (~/.cache/unity8) (e80cbb732) * fix build (0329a081f) 2016-12-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e98308e25) 2016-12-15 Lukáš Tinkl * merge trunk (ce9ee1692) 2016-12-15 Bileto Bot * Releasing 8.15+17.04.20161215-0ubuntu1 (e5b414ae1) 2016-12-15 Daniel d'Andrada * Let the model deal with some window management decisions (37eff65cc) 2016-12-15 Nick Dedekind * const getter (746d1fd08) * removed ApplicationMenus qmltypes (dac84f923) 2016-12-15 Michael Terry * Merge trunk (206b61779) 2016-12-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0d4b03235) 2016-12-14 Josh Arenson * Merge trunk (013b36df5) 2016-12-14 Michael Zanetti * fix it up (6d65217dd) * fix bad merge (969b98551) * merge trunk (4a4b6155a) 2016-12-14 Lukáš Tinkl * fix broken merge (53129d3c8) 2016-12-14 Nick Dedekind * merge with parent (8922f30b1) * merged with lp:~unity-team/unity8/installed-qmltests (eeb76c8ad) 2016-12-14 Michael Zanetti * merge trunk (7f844e9be) * merge trunk (f4471f602) 2016-12-14 Lukáš Tinkl * merge trunk (2e241d344) 2016-12-14 Nick Dedekind * merged with trunk (3800f689a) * merged with lp:~unity-team/unity8/installed-qmltests (9b6323cb9) 2016-12-14 Michael Terry * Merge from trunk (4afcfe215) 2016-12-14 Lukáš Tinkl * merge trunk (294ab4e6a) * merge trunk (591e27bcb) 2016-12-14 Nick Dedekind * added active check (935cc5b62) * fixed qmenumodel version req (8fe918ee2) 2016-12-14 Lukáš Tinkl * merge trunk (0537cebff) 2016-12-13 Lukáš Tinkl * add an alternative lock screen shortcut (f3e7bd012) * fix windowstatestorage in snappy (07882c03e) * stabilize++ (68493d534) 2016-12-13 Michael Zanetti * fix tab navigation (2b897d753) * merge ~lukas-kde/unity8/appdrawer-direct-search as prereq (0fc720d4b) * initial take on keyboard navigation support (687f06844) 2016-12-13 Nick Dedekind * fixed WindoDecoration test (7806964da) * Fixed menu mnemonics (330fb9665) 2016-12-12 Daniel d'Andrada * Let the model deal with some window management decisions (60ec05e8f) 2016-12-12 Nick Dedekind * fixed drag test (81ac619f9) 2016-12-12 Lukáš Tinkl * make the test more meaningful (4693eb784) 2016-12-12 Nick Dedekind * reverted failing test change (58446b2af) * merged with trunk (409541320) 2016-12-10 Michael Zanetti * move the app store uri to a gsetting (cfcde2173) * use correct return value type (cb15c2579) * silence build warning (75f675cc7) * allow cancelling of the drawer reveal gesture (8b8f804b2) 2016-12-09 Nick Dedekind * merged with trunk (4a1bd5a1e) 2016-12-08 Michael Terry * Fix up new tests (958dce329) 2016-12-08 Lukáš Tinkl * fix focus issues (bae5b7e31) * stabilize the test (334e341fa) * fix window control buttons not reachable with the 3-finger overlay (f7d59dd54) * merge appdrawer (1abb90e8a) * ... and some more (c45dee0f3) * remove cruft from a faulty merge (8a49798ef) * move the test where it belongs (c6ce62519) 2016-12-07 Lukáš Tinkl * just replace the text (ec7185186) * add a test (63c582f8e) * check for text (a506dbda5) * implement the missing mock methods, oops (7429d6c8c) * direct search (9524e20bc) * merge lp:~mzanetti/unity8/appdrawer (2f70dfc0b) 2016-12-07 Bileto Bot * Releasing 8.15+17.04.20161207.1-0ubuntu1 (497f79946) 2016-12-07 Pete Woods * MenuItemFactory: Add subtitle support to SwitchItem widget (2143b4e85) 2016-12-07 Albert Astals Cid * Do not hide panel when launching an application if the mouse is on the panel (800ba870b) 2016-12-07 Michael Zanetti * Update virtual touchpad visuals and add a tutorial. (LP: #1585220) (f3233732b) 2016-12-07 Daniel d'Andrada * Take save/restore functions out of WindowResizeArea (b5167ff52) 2016-12-07 Josh Arenson * Enable the greeter to remember which session the user last logged into (effea56b7) 2016-12-07 Albert Astals Cid * Fix compile warnings in mocks (9515b3353) 2016-12-07 Daniel d'Andrada * Fix "make tryApplicationWindow" (ae18a52a1) 2016-12-07 Albert Astals Cid * Bring back fix for 1517830 (835d50711) 2016-12-07 Michael Zanetti * improve close button visiblity when hovering with the mouse (d9ebe23e8) * tune right edge push (e828c8b2c) * Add the ApplicationDrawer (fb0d4b404) 2016-12-07 Albert Astals Cid * Use timeStep as delay time (2e631ceed) * Add support for compiler sanitizers via ECM (8cbeffddd) * Add the Wsuggest-override flag to gcc (db500d38c) 2016-12-07 Lukáš Tinkl * Fix the Super key not invoking the dash scope home (LP: #1607427) (c5594642b) 2016-12-07 Albert Astals Cid * Merge lp:~aacid/unity8/add_override_warning (08541cc8f) 2016-12-07 Michael Zanetti * fix it up (b4029f136) 2016-12-07 Daniel d'Andrada * update appman mock in launcher test (8bb95a9fb) * findApplicationWithSurface is const now (8db27980c) 2016-12-07 Michael Zanetti * use QSignalMapper instead of sender() (9fcd9bc94) 2016-12-06 Michael Terry * Initial merge from trunk; some tests don't run again yet (d69c08bf9) 2016-12-06 Michael Zanetti * next (2ca06eb09) * next try (acc5a9478) * moar debug prints (c3c8584bd) 2016-12-06 Daniel d'Andrada * Improve management of empty windows (c60cac640) * Fix Window debug messages (067bf4db1) 2016-12-06 Lukáš Tinkl * bump deps (bff44a34a) * merge trunk (b06cff3e5) 2016-12-06 Michael Zanetti * merge prereq (0a8daf6d3) * merge appdrawer as prereq (f0a6e21d8) 2016-12-05 Rodney Dawes * Remove the payments widget and dependency on libpay as no longer needed. (0671ee81e) 2016-12-05 Michael Zanetti * apply the render mode more async (2bf3c1829) 2016-12-05 Daniel d'Andrada * Stabilize tst_ShellWithPin (96aada447) * merge lp:~lukas-kde/unity8/miral (68da8ee0a) 2016-12-05 Lukáš Tinkl * fix restoring windows back to their normal x/y from semi-maximized (3da58cf71) 2016-12-05 Michael Zanetti * fix tests (5d892212d) 2016-12-05 Daniel d'Andrada * Fix tst_Tutorial (aaf581a89) * Share more code between tests (0f6fe8704) * Fix test (9f7b1ad03) * share code between tests (b92dd9144) 2016-12-05 Michael Zanetti * use inputmethodcomposing instead (5ed1771b7) 2016-12-05 Daniel d'Andrada * merge lp:~lukas-kde/unity8/miral (f1f0776c7) * Fix tst_ShellWithPin (be7a792a8) 2016-12-05 Lukáš Tinkl * fix test (117399398) 2016-12-05 Michael Zanetti * mock the virtual touchpad settings so tests run more predictable (cca04a3ee) * hint the launcher in order to signal a successful size change (64feb38ab) 2016-12-03 Lukáš Tinkl * further fixes to semi-maxed states, mainly horiz/vert (dc16f4222) * simplify minimize/restore/restoreFrom maximized (1faa85617) 2016-12-02 Daniel d'Andrada * Some fixes fot tst_Tutorial (07cfd6203) * Fix some tst_OrientedShell tests (4765af496) * Update WindowStateStorage mock (08cbe5e33) * Fix tst_ActiveCallHint.qml (513449e5b) * Fix tst_Panel (9f1dbb6e0) * Fix test_dragPanelToRestoreMaximizedWindow in tst_Shell.qml (b74d6f6ca) * Update tst_SurfaceContainer.qml (8b79bc281) 2016-12-01 Josh Arenson * Merge trunk (5af2cb910) * Fix warnings and cleanup (08a519cfe) 2016-12-01 Daniel d'Andrada * Fix state loading (7f90c3309) 2016-12-01 Michael Zanetti * fix mocking of apparguments (f553ec40d) * fix button in tryDisabledScreenNotice (7b68661c8) * merge trunk (df0b1996a) * merge trunk (ea251a458) * merge trunk (617053f48) * fix the spreadEnabled property (9eda82ef7) 2016-12-01 Daniel d'Andrada * Fix bad merge (6068ba9e4) * Merge trunk (0c3b219b8) 2016-12-01 Michael Zanetti * drop print (d8995eedc) * merge trunk (762a07f05) 2016-12-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (317fbd41b) 2016-11-30 Daniel d'Andrada * Let the model deal with some window management decisions (f1dcc66d1) * merge lp:~dandrader/unity8/fixMakeTryApplicationWindow (7a58df39f) 2016-11-30 Michael Zanetti * allow cancelling the revealing of the drawer by changing direction of the swipe (45cb1ad09) * merge trunk (813a5746b) 2016-11-30 Pete Woods * Reduce formatting noise (683d23b65) * Fix Saviq's review comments (0ed58d4c7) * Add subtitle support to SwitchItem (7b81a77ba) 2016-11-30 Michael Zanetti * bump versions after merging (fbcea9b26) * merge in 2202 as prereq (f49d7d0e3) 2016-11-29 Michael Zanetti * update some tests (3493707df) * make it exactly the same as before (angle) (c8c767921) 2016-11-29 Lukáš Tinkl * make the FakeElapsedTimer more realistic; adapt the test (7d3977100) 2016-11-29 Michael Zanetti * add dependency to Qt.labs.settings (ae8f56f21) * add app drawer shortcut to overlay (a161e620d) 2016-11-29 Bileto Bot * Releasing 8.15+17.04.20161129-0ubuntu1 (9f75d6d1a) 2016-11-29 Albert Astals Cid * Give default value to gu-px size (fb7c74308) * Also install the Screens mock (b325d7ed4) * Fix autopilot DashHelperTestCase.test_search (38f6c07c8) * Autopilot: Add more applications to the list for wider screens (17b549619) * Fix autopilot test_lock_screen tests (f8df4cac8) * Adapt to dummy notification being gone (47eebe20a) 2016-11-29 Andrea Azzarone * Implement launcher tooltips. (381271b9d) 2016-11-29 Lukáš Tinkl * Enable brightness (laptop backlight) handling on desktop/laptop PCs (LP: #1595947) (243b443c4) 2016-11-29 Olivier Tilloy * Remove dependency on transitional package. (LP: #1583079) (f801fe666) 2016-11-29 Michael Zanetti * disable spread interaction while locked (LP: #1641578) (57d1d88dc) 2016-11-29 Brian Douglass * Added a setting to enable/disable the indicator dropdown menu. (15e940b89) 2016-11-29 Daniel d'Andrada * There's no need for WindowDecoration to access the appDelegate (30ca5f351) 2016-11-29 Andrea Azzarone * Do not show a divider between each quicklist entry but just between each section, similar to how unity7 does. (LP: #1637478) (4833f303a) * Set Mir.cursorName to "grabbing" on first mouse press on a window decoration. Don't wait for press+motion. (LP: #1618078) (748ab6c3a) 2016-11-29 Albert Astals Cid * Fix PreviewProgress implicitHeight (ec3af511e) 2016-11-29 Andrea Cimitan * Look up for expandable template dash category flag (57e5448f5) * added dropshadow from panel indicators to dash page header extra panel, so there is right shadow when the extra panel is narrow (b4413c6f9) * Make the remaining UbuntuShape flat (a339ad5d3) * Make MascotLoader in CardCreator flat (0572262a3) * Fix white text (LP: #1644468) (1436d61bf) 2016-11-29 Michał Sawicz * Add missing unity8:Depends on qml-module-qtqml-statemachine (b852b1e86) 2016-11-28 Josh Arenson * Make greeter get user's session from LightDM (5ab057206) 2016-11-28 Lukáš Tinkl * don't return garbage when the timer isn't running, or never been started (a1679d2ed) 2016-11-28 Josh Arenson * Fix warning (87edbad70) 2016-11-28 Nick Dedekind * app menu tests (bc6847bca) 2016-11-28 Michael Zanetti * fix imports (43ac82a7a) * fix an issue with locked out launcher, added test (c0adebb8b) * make property readonly (229c88e4c) 2016-11-30 Michael Zanetti * tune right edge push as per design request (28416b1db) 2016-11-28 Nick Dedekind * merged with trunk (cd56007e2) * nagivation (5814a6b18) 2016-11-28 Michael Zanetti * some fixes, tests (d2db6b038) 2016-11-28 Albert Astals Cid * Fix compile warnings in tests (d242233c3) 2016-11-28 Michael Zanetti * fix the launching of the searched item by pressing enter (6824477fc) 2016-11-28 Albert Astals Cid * whitespacing (c9158b231) * Merge (f10506282) 2016-11-25 Daniel d'Andrada * Fix make tryApplicationWindow (bfd63227d) 2016-11-25 Michael Zanetti * fix transition (c7fb11219) * properly eat all events (8ca9269b7) 2016-11-25 Albert Astals Cid * Bring back fix for 1517830 (eeca46564) 2016-11-25 Michael Zanetti * merge trunk (3f3ec4bd3) * fix drawer being shown at startup (8fd37f86b) * typo-- (555409600) * some launcher workarounds for the snapping (7bd9e2fbc) 2016-11-24 Daniel d'Andrada * Update test (3ced519a6) 2016-11-24 Michael Zanetti * fix issues from review (71cf8c5b4) 2016-11-24 Andrea Azzarone * Fix broken test. (fb2180c51) 2016-11-24 Michael Zanetti * disable the launcher on the greeter (89f4fc0b4) * fix some tests (e6c1ccdd6) * don't use EdgeBarrierControls in DesktopStage, as there is no EdgeBarrier in there any more (8d637f8da) 2016-11-24 Andrea Azzarone * Merge with trunk. (100f57393) 2016-11-23 Daniel d'Andrada * Remove blank line (3c5c71c6e) * remove leftover (e6d3d129a) * Move the normalFoo properties around (cbad34d16) 2016-11-23 Michael Zanetti * move right edge push area up some levels so it can be used on top of the indicators (56c3b8257) * merge lp:~mzanetti/unity8/tune-right-edge-push as prereq (9571c848d) 2016-11-23 Daniel d'Andrada * Add copyright header (20c877173) 2016-11-23 Michael Zanetti * fix improve close button visiblity when hovering with the mouse (7ffdfb4be) 2016-11-23 Daniel d'Andrada * Move code into a separate object to reduce clutter in Stage.qml (2ad40618c) * Take save/restore functions out of WindowResizeArea (1d037c568) 2016-11-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9212688a6) 2016-11-22 Michael Zanetti * fix bad merge (4a6366f92) * merge ~bhdouglass/unity8/disable-indicator-menu as prereq (ce20ed9e1) 2016-11-22 Lukáš Tinkl * merge trunk (c8c86494c) * merge trunk (89b598caa) 2016-11-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c8c25437e) 2016-11-21 Albert Astals Cid * Need this for the tests to pass locally after new chnage (5612925b4) 2016-11-21 Michael Zanetti * fix focus issue after launching something from drawer (55c26c244) 2016-11-21 Albert Astals Cid * Use timeStep as delay time (3ad24fa89) 2016-11-18 Michael Zanetti * fix issue with the shortcutoverlay getting stuck when opening the drawer (68559d261) * some more OSK layer issue fixes (f3616b949) 2016-11-17 Josh Arenson * Fix dash tests (96f8b91c1) * Fix content tests (a1ef65a19) * Simplify autoscroller (356c4bbad) 2016-11-17 Michael Zanetti * adjust edge push valies. still to be verified by design (574a295b3) 2016-11-17 Lukáš Tinkl * merge trunk (66c8c9909) * merge trunk (0395a4f99) 2016-11-17 Michael Zanetti * add copyright header (b88028d00) * add include for QStringList for vivid compatibility (c8f5429a1) * fix mock (1976a976a) 2016-11-17 Andrea Cimitan * look up for template[expandable] in dash category (700423205) 2016-11-16 Michael Zanetti * add support for searching apps by keywords (5a150f6ad) * fix issues in ualwrapper (e842fecd6) 2016-11-16 Josh Arenson * merge trunk (623005488) 2016-11-16 Michael Zanetti * fix tutoriallongleft (457974225) * some focus improvements (99914cb53) 2016-11-16 Albert Astals Cid * Fix PreviewProgress implicitHeight (24cbca3be) 2016-11-16 Bileto Bot * Releasing 8.15+17.04.20161116.1-0ubuntu1 (a4cada2ef) 2016-11-16 Albert Astals Cid * [Hopefully] Fix infinite loop in some of the GSV tests (440f1c673) 2016-11-16 Marco Trevisan (Treviño) * testLauncher: use tryCompare to check launcher contentY (648036032) 2016-11-16 Bileto Bot * MenuItemFactory: use Menus.RadioMenu and Menus.ButtonMenu (28d1c5ce9) * MenuItemFactory: bind calendar backend properties to calendarMenu item Adds support for showing the calendar at the requested date, marking days with events properly and toggling the visibility of the week number.; Bump version as USC breaks with unity8 << 8.14 (0917e088e) 2016-11-16 Michael Zanetti * Stabilize OrientedShell tests (10a9a7a02) 2016-11-16 Andrea Cimitan * Remove old assets for navigation shadow (4f13caae0) 2016-11-16 Albert Astals Cid * [Hopefully] Fix infinite loop in some of the GSV tests (2ce785709) 2016-11-16 Brian Douglass * Merged with trunk (89d8cad83) 2016-11-15 Josh Arenson * Fix whitespace (934fce5ca) 2016-11-15 Olivier Tilloy * Remove dependency on transitional package. (42e17d841) 2016-11-15 Josh Arenson * Complete weird test (dfa22e1ea) 2016-11-15 Andrea Cimitan * add dropshadow around pageheader extra panel (971feafe6) 2016-11-15 Michael Zanetti * fix edge pushing (9305ba7d1) * catch more exceptions (2fa3cced9) 2016-11-15 Andrea Cimitan * Flat LazyImage (7aa26222d) * ScopeListCategoryItem flat (e0c84d04a) 2016-11-15 Michael Zanetti * merge trunk (68d199fd0) * revert changes in changelog (8b81d4c2d) * test updates (75777221f) 2016-11-14 Andrea Cimitan * Use fg color (98f37d6a6) * Use fg color (be5259394) * Adapt to scope colors (a3695b5cb) 2016-11-14 Michael Zanetti * also drop the leftEdge dragging in the stage (57306f8e8) * clean up the long left edge swipe code to show the dash (1816c2e9d) 2016-11-14 Andrea Cimitan * CardCreator mascot is Flat now (d88010661) 2016-11-14 Michael Zanetti * remember the last used section (0f6f1bfbd) 2016-11-14 Andrea Cimitan * Fix pull to refresh (bd61ad57b) 2016-11-14 Michael Zanetti * also exclude Super+W (cd0bf0614) * drop TODO (9d6aef412) * disable spread interaction while locked (717d499a0) 2016-11-14 Marco Trevisan (Treviño) * tests: try to be more robust on some flacky tests (40f5bdc10) 2016-11-13 Marco Trevisan (Treviño) * Merging with lp:~mzanetti/unity8/stabilize-orientedshell (9db62a497) 2016-11-12 Marco Trevisan (Treviño) * tests: try to be more robust on some flacky tests (d34180104) * Merging with trunk (2d54145f6) 2016-11-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (389365505) 2016-11-11 Michael Zanetti * hide the Most used category for now (390b5bce6) 2016-11-11 Marco Trevisan (Treviño) * fakeindicatorsmodeldata: hide week numbers in calendar by default (e79c7362f) * MenuItemFactory: prevent infinite loops on model activation causing calendar day changes (22568dd0a) * MenuItemFactory: properly compare dates not days (9ccea1d57) 2016-11-10 Michael Zanetti * bump versioning (984a3dd09) * fix input with predictive keyboard (ab5086750) * fix top margins for blur (b95cb03eb) * drop DBG from seaction header too (3c93f77ef) * cleanup (79acbfcec) * drop dbg section (3a8850c8c) * more tests (94ab11511) 2016-11-10 Daniel d'Andrada * Make it an alias (32f5d3c39) * There's no need for WindowDecoration to access the appDelegate (375fe27bd) 2016-11-10 Michael Zanetti * add a testcase for the drawer, implement reveal by edge push (ac953e927) 2016-11-09 Bileto Bot * Releasing 8.14+17.04.20161109-0ubuntu1 (32f8b34e7) 2016-11-09 Lukáš Tinkl * Fix the pixelated notification icon by setting sourceSize (LP: #1637712) (75a01c01a) * Enable loading the main Qt catalog which in turn allows for using RTL languages (e2e58a98d) 2016-11-09 Tomás Tormo * Reload Infographics userdata when the day changes (LP: #1378814) (7ed77a158) 2016-11-09 Brian Douglass * Add a new setting to enable/disable the launcher (bb50476d4) 2016-11-09 Lukáš Tinkl * Stabilize test_doubleTapToMaximizeWindow() (357bdf554) 2016-11-09 Michael Zanetti * Delay alt tab for tiny bit in order to avoid flickering on quick alt-tabs (5618dbfb3) * More fixes to the unified stages code (LP: #1637205, #1637249, #1637258) (374c0e2c1) * Fixes in the spread after design review (4903e3d68) * Added blur and darkening to wallpaper while in spread (6813eb0bf) 2016-11-09 Michael Terry * More path lookup fixes for running inside of a snap. (LP: #1629009) (b343d7eef) 2016-11-09 Andrea Cimitan * More visual tweaks (fb94194b2) 2016-11-09 Albert Astals Cid * Fix first column of the preview table to be 25% (f00f52142) 2016-11-09 Andrea Cimitan * various tweaks to fonts inside previews (f91b0837a) 2016-11-09 Albert Astals Cid * Make the PreviewButtons be of the width of the button and not half the total width (75d3855f3) * Improve LVWPH <-> GenericScopeView interaction (76ddd624e) * Rework Dash Preview column margins (3d551b3ea) * Make the > in Dash Section Header be after text (36123c19b) 2016-11-09 Andrea Cimitan * Few styling changes for cards (3ab9ac2be) 2016-11-09 Albert Astals Cid * Make more CardTool properties readonly (8ee8002f3) 2016-11-09 Andrea Cimitan * Remove background under header pagination dots, update dots assets, remove dash paper background, update bottom edge asset (af5e04488) 2016-11-09 Michael Zanetti * merge prereq (a37b91abe) * merge prereq (fded33587) * merge prereq (242a3d77d) * improve performance on BlurLayer (d0c9ba059) 2016-11-09 Marco Trevisan (Treviño) * MenuItemFactory: avoid getting data from undefined menuData.actionState in calendar (ae49e0e1b) 2016-11-08 Josh Arenson * Add a test (bbdd069b0) 2016-11-08 Lukáš Tinkl * stabilize (aa21ac413) * merge lp:~mzanetti/unity8/spread-fixes (196356b6f) 2016-11-08 Michael Zanetti * set a new prereq (096ba7945) * fix typo (607050b32) * properly disable dragging to side stage in portrait (2c4fe0206) * fix side stage state after rotation (d079aad8e) * don't close spread when closing an app from side stage (6a4452d58) * merge with spread-blur (a4e2fff4d) 2016-11-08 Andrea Cimitan * fix flaky tests (f29d912ff) 2016-11-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8e86b3c8f) 2016-11-07 Michael Zanetti * nicer code (c54debe44) * always close the spread on left edge swipe (8197a722b) * resetting the spread position should happen on tablet too (601c54cfd) * cleanup warning, add a comment on why (d35ed3ab4) * add a minimum width for the tile info to prevent it going to ... (87eed4652) * tiles should not be interactive any more when moving to spread (8da833095) * add some resistance to the drag when an app is not closeable (4db35052a) * allow rotating when there is no app focused (e20bd7b61) * add a fade in animation to the icons in the spread (ac109a86b) 2016-11-07 Lukáš Tinkl * merge trunk (e621d8d6f) * merge trunk (48d4d5758) * merge trunk (e4c574d21) * merge trunk (831acf3e7) * merge trunk (0d92b08ec) 2016-11-07 Bileto Bot * Resync trunk. (70b74db63) 2016-11-07 Michael Zanetti * fix spread looking out of place when there's only one item (b2f2f1c72) 2016-11-04 Michael Zanetti * QStringLiteral (d64982fbe) * simplify ualwrapper (5cfb7a57e) * fix dragging to left/right (588cf2de3) * more tweaks/cleanup (4e43d62d5) * more fixes (55c9ca537) 2016-11-04 Albert Astals Cid * Move the dash section header 1 gu to the rigth (e5699ca63) 2016-11-04 Michael Zanetti * some more fixes (cc1fa6a27) 2016-11-03 Michael Zanetti * fix hiding of drawer when launcher is locked to visible make sorting locale aware (09ad1caa2) * fix top margins (6d1652d1d) * fix keyboard focus handling (2b4c1c54e) * fix edge drag reveal when launcher is already visible (abc03e941) 2016-11-03 Andrea Cimitan * Remove right margin from pageheader (c2113c37d) 2016-11-03 Michael Zanetti * add missing files (9f6934ddd) * more work (ca5c2994b) 2016-11-03 Andrea Cimitan * More visual fixes (3e89f59eb) 2016-11-03 Michael Zanetti * stabilize OrientedShell tests (572daea4b) 2016-11-02 Albert Astals Cid * Design wants more spacing (42716a41d) 2016-11-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (12c377ddb) 2016-11-01 Michael Zanetti * initial take on the app drawer (b790b9f5c) 2016-11-01 Lukáš Tinkl * fix the pixelated icon by setting sourceSize (8df145098) 2016-11-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f56799042) 2016-10-31 Lukáš Tinkl * shell dialog improvements (d9a9d4c88) 2016-10-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f64475a76) 2016-10-28 Brian Douglass * Merged trunk (46055c608) 2016-10-28 Lukáš Tinkl * merge trunk (1ad96031a) 2016-10-28 Nick Dedekind * removed duplicate id (1e370d714) * Fixed decoration issues in tests (ea4b6c6ad) 2016-10-28 Marco Trevisan (Treviño) * MouseTouchEmulationCheckbox: make checkbox label to be clickable (9b372b07a) * testLauncher: make checkbox label to be clickable (30b24fbb1) * testLauncher: use tryCompare to check launcher contentY (e1b8fa8d0) 2016-10-28 Andrea Azzarone * Merge with trunk and resolve conflicts. (d13a52a20) * Use the new unity-api launchers APIs. (9e563a3d5) * Revert string change. (9dfbc5486) 2016-10-28 Nick Dedekind * Fixed tests (2fe1152d2) * merged parent (db1d9d251) 2016-10-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e7d7bbb1d) 2016-10-27 Nick Dedekind * merged with trunk (95419ae22) * Touch in windowed mode (9eb5ad21b) 2016-10-27 Lukáš Tinkl * merge trunk (328e4db61) * merge trunk (562be5df6) * merge trunk (99574a9a7) * merge trunk (eae958a2d) 2016-10-27 Andrea Azzarone * Merge with trunk. (007738865) 2016-10-27 Marco Trevisan (Treviño) * Merging with lp:~3v1n0/unity8/calendar-days (b696b80cc) * debian/changelog: add proper commit message too (c0ab86f4d) * Merging with lp:~3v1n0/unity8/calendar-day-selection (1a38e97b5) 2016-10-27 Andrea Azzarone * Add hasSeparator to a quickList entry. (171678e8f) 2016-10-27 Bileto Bot * Releasing 8.14+17.04.20161027-0ubuntu1 (c5eef495d) 2016-10-27 Marco Trevisan (Treviño) * MenuItemFactory: activate item on calendar selection change (323634e6e) * Merging with trunk (34c242ee6) * debian: bump version and increase the USC dependency (1880ebe57) * Merging with trunk (5be1285df) * debian: bump version and increase the USC dependency (f004e117d) * Merging with trunk (83cbd7005) 2016-10-27 Tomás Tormo * Remove unnecessary setDay function from the UserMetrics mock (834dfb5f8) 2016-10-27 Lukáš Tinkl * depend on the qttranslations5-l10n package (c77de0cdb) * load the Qt catalog to get the RTL value (07e3d7900) 2016-10-26 Marco Trevisan (Treviño) * MenuItemFactory: use a ButtonMenu and activate the item on button clicks (932f026bb) * MenuItemFactory: use Menus.RadioMenu to create radio elements (3dd8231e2) * fakeindicatorsmodeldata: show new features for the indicator calendar (f1045294e) * testMenuItemFactory: add tests for calendar item (2aa29c167) * MenuItemFactory: bind model calendar-day to menuItem currentDate (d089d6a3b) * MenuItemFactory: add eventDays and showWeekNumber support to calendarMenu (e2ced2d84) * Merging with parent lp:~3v1n0/unity8/calendar-day-selection (6236761b9) 2016-10-26 Michael Zanetti * merge prereq (f11ee934d) * fix tutorial tests (8db011ab2) * fix tutorial tests (165ddd564) 2016-10-31 Marco Trevisan (Treviño) * IndicatorsTree: use readonly text-area (bf68fe571) * fakeindicatorsmodeldata: add alarm example (f37914ee1) 2016-10-26 Michael Zanetti * delay alt-tab for a bit to avoid flickering on quick alt+tabs (45a7132c8) * add blur and darkening to wallpaper when in spread (3863244c9) 2016-10-25 Marco Trevisan (Treviño) * Merging with: lp:~3v1n0/unity8/calendar-days (ModelPrinter improvements) (3f18151cb) * debian/control: revert change on u-s-c version dependency (a01698c36) * MenuItemFactory: use simple activate call since it uses the proper action type now (e9672b090) 2016-10-25 Andrea Azzarone * Avoid type conversion. (5d757f9c5) * Mark hoveredItem and itemCenter as readonly (a460b340f) 2016-10-25 Albert Astals Cid * Give default value to gu-px size (8a74c4367) * Also install the Screens mock (1999d6f51) * Fix autopilot DashHelperTestCase.test_search (8ef103690) * Add more applications to the list for wider screens (fedd2f631) * Fix the autopilot greeter tests (d263f68b1) 2016-10-25 Tomás Tormo * Remove unnecessary imports (1a575227c) * Use a LiveTimer instead of the screen state to detect a new day, so the solution is valid also for the desktop version (8c6a0cfca) 2016-10-25 Albert Astals Cid * Add support for compiler sanitizers via ECM (744b78eae) 2016-10-25 Tomás Tormo * Sync to trunk (fc9f00785) 2016-10-25 Albert Astals Cid * Adapt to dummy notification being gone (c2e8ca926) 2016-10-24 Albert Astals Cid * Fix import warning (8c9102abd) * More pixel pusihng (2da4c0eb4) 2016-10-24 Bileto Bot * Releasing 8.14+17.04.20161024-0ubuntu1 (bc584a7ae) 2016-10-24 Albert Astals Cid * tst_PreviewZoomableImage: Wait for LazyImage transitions on init() (LP: #1630136) (511b7b43f) 2016-10-24 Lukáš Tinkl * Implement moving windows by Alt + left mouse button (0faecb01b) 2016-10-24 Marco Trevisan (Treviño) * MenuItemFactory: use more features from SlotsLayout based settings components (e7bed11b1) 2016-10-24 Albert Astals Cid * Make PreviewProgress be thicker again (1f0ce58f5) 2016-10-24 Lukáš Tinkl * Hide the cursor for fullscreen apps after 3 seconds of inactivity (081add870) 2016-10-24 Andrea Azzarone * Remove UbuntuShapeForItem and replace its use with the more standard Ubuntu.Components.UbuntuShape. (89ff34e55) 2016-10-24 Lukáš Tinkl * Restore the double tap decoration to maximize feature (LP: #1627281) (f8f8415d8) 2016-10-24 Michael Zanetti * Merge all Stages into one single codebase. Apply new spread visuals. (ba0226381) 2016-10-24 Michael Terry * Adjust root paths if we're running inside a snap. (LP: #1629009) (93b9091e1) * Grab launcher icon information from ubuntu-app-launch, not directly from desktop files. (680b7ae0a) 2016-10-21 Josh Arenson * Return the correct role for the user session name (10f5f1779) * Correct a null parent (a2b90d9b5) 2016-10-21 Nick Dedekind * fixed mouse eater (c5bdee81c) 2016-10-21 Albert Astals Cid * Make Cimi happy with the vertical alignment (fb8bfea22) 2016-10-21 Andrea Azzarone * Edit pin/unpin strings to conform with unity7 ones. (8bc0feb5d) 2016-10-21 Nick Dedekind * dismiss menus (e92b64f6d) * toggle fixing (54374200e) 2016-10-21 Albert Astals Cid * Give the first column some more breathing space (daa3a96f5) 2016-10-21 Andrea Azzarone * Don't register Mir as both singleton and uncreatable. (6f6e4999f) * Rename test to test_grabbingCursorOnDecorationPress. (99478a8f0) 2016-10-20 Andrea Azzarone * Resync with lp:~mzanetti/unity8/unified-stages (81711e479) 2016-10-20 Nick Dedekind * merged with unified (ea06e11e5) 2016-10-20 Andrea Azzarone * Add unit tests. (de6c9a467) 2016-10-20 Nick Dedekind * Fixed ActionContext scopes (b108ceaac) 2016-10-20 Andrea Azzarone * Resync with lp:~azzar1/unity8/remove-UbuntuShapeForItem (985326cce) * Resync with lp:~mzanetti/unity8/unified-stages. (0acba69f2) * Re-enable tooltips and tests. (adde39ed7) * Disable enableHovered to debug test failures. (3c5d3f9e4) * Disable the tests. (7255427d7) 2016-10-19 Andrea Azzarone * Revert change to revealByEdgePush (ac3f66d78) * Add deps to qml-module-qtqml-statemachine. (fbb34adf6) * waitForRendering(launcher) when using revealyByEdgePush (b06aef27b) * Use revealByPush. (40d10cc3d) 2016-10-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (29c2ac2d1) 2016-10-19 Andrea Azzarone * Refactor the way we deal with tooltip delay timer. (c2796ab3b) 2016-10-18 Albert Astals Cid * Try to make the vivid qt happy (2bd523803) 2016-10-18 Andrea Azzarone * Add a delay in mouseMove. (f3abaa96c) 2016-10-18 Nick Dedekind * Hide panel on spread (6df9d2da0) 2016-10-18 Andrea Azzarone * Remove useless code in Tooltip.qml (3de237f54) 2016-10-18 Marco Trevisan (Treviño) * ModelPrinter: use chars instead of strings to join (87b4fffb9) * ModelPrinter: use QStringList to easily merge list elements (a1e4feaa6) 2016-10-18 Michael Terry * Merge from trunk (a213859df) 2016-10-18 Andrea Azzarone * Move Tooltip in a different component. (cca10e3ef) 2016-10-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4123abf85) 2016-10-17 Albert Astals Cid * use implicitHeight for this now since we force a minimumHeight the old test was failing (01e3fdd31) 2016-10-17 Andrea Azzarone * Remove mouseEventEater as we have hoverEnabled equals to true in dndArea. (a0464758a) 2016-10-17 Tomás Tormo * Reload Infographics userdata when the screen turns on in case the day changed (3d51efb5b) 2016-10-17 Albert Astals Cid * More merging (5a8284ebd) 2016-10-17 Andrea Cimitan * Fix PreviewTextSummary tests (c3861582a) * Fix PreviewHeader test (0879bd55b) 2016-10-17 Albert Astals Cid * remerge (978269d59) 2016-10-14 Marco Trevisan (Treviño) * ModelPrinter: properly print QVariantList's and tabify mapped elements (05394560d) * debian/control: increase dependency to qmenumodel 0.2.10 (35a05c4ff) * MenuItemFactory: activateByVariantString on calendar selection change using proper type (039ffa294) 2016-10-14 Andrea Cimitan * More tweaks to Text Summary (cb7ed261c) 2016-10-14 Albert Astals Cid * make it just be some margin on the top of the contents, not a fix margin (ecba1de1a) 2016-10-14 Andrea Cimitan * Tweaked review widget (1bedd1d67) 2016-10-14 Albert Astals Cid * units.gu(2) on the left/right also for the 2 columns scenario (7cabf577a) * less min height (bbefb7dae) * No bottom margin (6fe4715f0) 2016-10-14 Andrea Cimitan * oops (f9055b715) 2016-10-14 Albert Astals Cid * Add a minimum height, design wants more breathing space in the table (5d8fe1edf) * top&bottom margin 2gu+clip (a3aadc323) 2016-10-14 Andrea Cimitan * Preview audio time label changed (e42cc2ca9) 2016-10-14 Albert Astals Cid * bring lp:~unity-team/unity8/previews_fonts-update (9b31f058e) 2016-10-14 Andrea Cimitan * add padding after title label (40f9381bd) * Some tweaks to font size, plus remove margin on PreviewHeader (a5e8f5399) 2016-10-14 Albert Astals Cid * Do not hide panel when launching an application if the mouse is on the panel (feeb59e21) 2016-10-14 Andrea Cimitan * try to fix test (e8b7e7ff5) 2016-10-13 Andrea Cimitan * Some additional visual tweaks to the pagination dots (d6db514ef) 2016-10-13 Albert Astals Cid * Make the > and text aligning a bit "better" (56d10cbe1) 2016-10-13 Michael Zanetti * merge trunk (3e906e85d) 2016-10-13 Albert Astals Cid * Change topMargin based on width (024a62e2a) 2016-10-13 Nick Dedekind * more test fixes (a46efde04) 2016-10-13 Albert Astals Cid * Use the old spacing (c9d75d106) * Increase spacing (ceedb12c5) 2016-10-13 Brian Douglass * Added better tests for indicator menu enable setting (121c4c89b) * Fixed copy-paste error (7363a9327) * Merged trunk (d05dbcaf4) * Fixed failing tests (aeabf2cf2) * Merged trunk (f336ce767) * Added better tests for enable/disable launcher (33d8e820c) 2016-10-12 Nick Dedekind * fixed tests (06214dd5e) * global shortcut release (6c3fa9679) 2016-10-12 Andrea Cimitan * Added padding on top preview (d5e0fb062) * Merged readonly properties to cardtool (c7c9a0589) 2016-10-11 Michael Zanetti * fix spread close input area (438d30691) 2016-10-11 Albert Astals Cid * workaround for bad row height on Qt 5.4 (on the phone) (ba65d4826) 2016-10-11 Michael Terry * And update mock plugin too, whoops (23959f582) 2016-10-11 Tomás Tormo * Sync po/oc.po file with trunk (db64e4f90) * Reset UserMetrics and Infographic state for each test. Check that user data is correctly updated when the day changes (0743ccc12) 2016-10-10 Lukáš Tinkl * alternative patch from Albert (4113c0dad) 2016-10-10 Tomás Tormo * Reload infographics object before each test (d76390ffc) 2016-10-08 Michael Zanetti * fix test flakiness (0db7ccba5) 2016-10-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (03243cb06) 2016-10-07 Michael Terry * Guh and fix property name (8ca16fe33) * Whoops, remove prefix (60f0f0dc7) * Add missing header (2150501da) * Another instance (7a5e8a31e) * Fix compilation (62ce63b5c) * More $SNAP fixes (cd839cf78) 2016-10-07 Nick Dedekind * fixed decorated window test (5692bb989) 2016-10-07 Marco Trevisan (Treviño) * Merging with trunk (347fc2ce8) 2016-10-07 Albert Astals Cid * Fix first column of the preview table to be 25% (12fb4356f) 2016-10-07 Nick Dedekind * fixed window decoration tests (da4045871) * more test fixes (f776d67d3) 2016-10-07 Lukáš Tinkl * add an explanation for the cursorShape trick (787a55221) 2016-10-07 Nick Dedekind * fixed menu navigation (f7a888f64) * Fixed visual issues (054e55e15) 2016-10-06 Lukáš Tinkl * move windows by ALT+LMB, take 3 ;) (94dcd61da) * merge unified-stages (61c1b2879) 2016-10-06 Andrea Cimitan * No signature line by default in dashPageHeader (a306a83cc) 2016-10-06 Andrea Azzarone * Merge with unified-stages branch. (6c6b6c6ff) * Resync with lp:~azzar1/unity8/remove-UbuntuShapeForItem (93b4ce693) 2016-10-06 Albert Astals Cid * Make the PreviewButtons be of the width of the button and not half the total width (b743e81f6) 2016-10-06 Michael Zanetti * fix OSK rect not always going away when it should (6e6c5ce7c) 2016-10-06 Andrea Azzarone * Resync with lp:~mzanetti/unity8/unified-stages (7f85ec7dc) 2016-10-06 Lukáš Tinkl * merge prereq, fix conflicts (ca1b837ac) 2016-10-06 Albert Astals Cid * item() function is still needed on other parts of GenericScopeView ^_^ (0ef5061fb) 2016-10-06 Michael Zanetti * fix ghost rect on corner maximize (76cad5aec) 2016-10-06 Albert Astals Cid * Improve LVWPH <-> GenericScopeView interaction (c8be7b65a) 2016-10-06 Lukáš Tinkl * merge prereq (2f190fe3c) * fix the fake rectangle ghost (b0ca64eb2) 2016-10-05 Nick Dedekind * fixed panel try (fc79fa9b0) 2016-10-05 Tomás Tormo * debian/control: - Drop unity-scope-mediascanner2 to a Suggests rather than a Recommends, to ease our transition to main. It's already seeded directly in Touch, so this will only affect the Desktop variant of unity8. (c3f0e15fa) 2016-10-05 Andrea Cimitan * remove test (e1821f089) 2016-10-05 Michael Zanetti * revert changes in changelog (05d03c609) * merge trunk (9e2e52a33) * hide close button when the tile is displaced (4547f04bf) * fix focusing in windowed mode (5054cbbc6) * revert the change that broke the camera app (053dbc5df) 2016-10-05 Nick Dedekind * more test fixes (90396d968) 2016-10-05 Andrea Azzarone * Merge with trunk and rebase. (082264464) * Remove trailing space. (6596bd989) * Rebase on unified-stages branch. (468ae0782) * Merge with lp:~mzanetti/unity8/unified-stages. (94cc8a329) 2016-10-05 Nick Dedekind * Fixed PanelMenuPage tests (4a079b9ec) 2016-10-05 Andrea Cimitan * Updates to card font style (aa52573ef) 2016-10-05 Albert Astals Cid * Put the combo preview at the end, tests want it there (0bcb45aca) 2016-10-04 Nick Dedekind * removed test code (f1a543e6b) * merged with unified stages (d93306eee) 2016-10-04 Albert Astals Cid * Default is false (not that it matters but anyway) (10cf46062) * Rework Preview column margins (163d36893) 2016-10-04 Michael Terry * debian/control: - Drop unity-scope-mediascanner2 to a Suggests rather than a Recommends, to ease our transition to main. It's already seeded directly in Touch, so this will only affect the Desktop variant of unity8. (1bb5972ec) 2016-10-04 Albert Astals Cid * Use new asset (261f6ce6a) 2016-10-04 Michael Terry * Guard check for cleanliness, though it shouldn't matter (d7f92d3d4) 2016-10-04 Nick Dedekind * merged with unified-stage (8a50eb432) * qmenumodel version req (52cdce9e7) * hide panels on disable (5326a86e6) * app & touch menu tweaks (3281137ef) 2016-10-04 Albert Astals Cid * Make the > in Dash Section Header be after text (a3bda98de) * Kill Components/ListItems (4d914cc85) 2016-10-03 Michael Terry * Review nits (631458128) * Fix static QString usage (d74a4653a) 2016-10-03 Andrea Cimitan * Small radius on cards (dfe21d652) * Flat cards (02204659c) 2016-10-03 Lukáš Tinkl * merge unified-stages (747bcf19f) 2016-10-03 Marco Trevisan (Treviño) * debian/control: Bumping dependency on ubuntu settings components (3b6ef13e5) 2016-10-03 Albert Astals Cid * Make PreviewProgress be thicker again (2f4757e1e) 2016-10-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c8985243f) 2016-09-30 Nick Dedekind * added ApplicationMenus to install (38c91bcb1) * fixed tests (d8a808e34) * more test fixes (7fcc1fb57) * more test fixes (cb2fb901a) * fixed left edged panel (1482f990f) 2016-09-30 Andrea Cimitan * fix test (6aba12811) 2016-09-30 Nick Dedekind * more test fixes (86d4415b8) 2016-09-30 Andrea Cimitan * merged (6860805b4) 2016-09-30 Nick Dedekind * name changes (4d6bd0b14) 2016-09-30 Lukáš Tinkl * break the possible endless loop \o/ (c5e65a010) 2016-09-30 Nick Dedekind * added missing files (720fb76dc) 2016-09-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (296976a96) 2016-09-30 Lukáš Tinkl * readd the surface binding, add extra guards, still not good :/ (82925fd0a) 2016-09-29 Michael Terry * Add some console debugging (75ed2792c) * Clean up file header (8cd67f993) * Be more explicit about setting root (7fe23f1e5) * Fix indenting a bit (7016f02aa) * Fix paths for snaps (a5b87bd74) 2016-09-29 Lukáš Tinkl * drop old binding (13d4c21bd) 2016-09-29 Michael Zanetti * see if this helps with CI (431096ee4) 2016-09-29 Andrea Azzarone * Use conditional bindings. (34be00a34) 2016-09-29 Andrea Cimitan * fixed test (f3c0ec54d) 2016-09-29 Lukáš Tinkl * drop the repeat, not needed as "running" is a binding (1ded46503) 2016-09-29 Andrea Cimitan * merged trunk (0107b9161) 2016-09-29 Andrea Azzarone * Merge with trunk. (0841cf752) * Refactor and simplify tooltip layout logic. (f193095d5) 2016-09-29 Lukáš Tinkl * add a test (5f95b407b) 2016-09-29 Andrea Azzarone * Merge with lp:~azzar1/unity8/remove-UbuntuShapeForItem (839ed84b6) 2016-09-29 Lukáš Tinkl * merge prereq (a91087e40) * merge trunk (19869faff) 2016-09-29 Nick Dedekind * better dbus interface documentation (3a3949179) * fixed typos (04bceb3fd) * menus (a40eeb73f) 2016-09-29 Michael Zanetti * fix test (4098517ce) 2016-09-29 Albert Astals Cid * whitespaaaaaaaaaaaace (da21abd19) 2016-09-29 Nick Dedekind * fixed qmltypes (d27586903) * merged with trunk (f2ce81720) 2016-09-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5ab1ddfbf) 2016-09-28 Michael Terry * Update upstart job to use MIR_SERVER_HOST_SOCKET instead of MIR_SOCKET (29c0e3f81) * Fix sessionToStart logic (add3e601a) 2016-09-28 Lukáš Tinkl * merge trunk (bcb081cbd) 2016-09-28 Michael Terry * Merge from trunk (9c542bafe) * Merge trunk (bd2a24c8d) 2016-09-28 Andrea Azzarone * Use ShaderEffectSource to correctly render the overlay rectangle. (d9fc73a1a) 2016-09-28 Albert Astals Cid * Wait for LazyImage transitions on init (195f15b29) 2016-09-28 Michael Zanetti * some side stage related fixes (7b1409aa0) * fix app in side stage on 3-finger tap (81c13facf) * fix focusing after spread in windowed mode (13675a723) * drop some debug prints (7a89abce9) * some fixes (1422dda74) 2016-09-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ec7c7ab1f) 2016-09-27 Lukáš Tinkl * restore the double tap decoration to maximize feature (e48ebfde6) 2016-09-27 Albert Astals Cid * Merge (ba8ad93af) 2016-09-27 Michael Zanetti * drop Alt+LMB mouse area, it's leftover from the prereq (aadcb3d49) * merge trunk (71de62ab1) 2016-09-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a54065cda) 2016-09-26 Lukáš Tinkl * merge trunk (770f734d1) 2016-09-26 Michael Zanetti * move test_oskDisplacesWindow into testShell as there is a dependency on Shell now (cf248d13f) 2016-09-26 Bileto Bot * Resync trunk. (09f6b1ebf) 2016-09-26 Brian Douglass * Removed random code that broke the test (0934679d0) 2016-09-26 Andrea Azzarone * Add comment. (9c6640eea) * Merge with trunk. (94cc0b9f9) * Update tests. (c40b9cf0f) 2016-09-26 Michael Zanetti * fix virtual keyboard height (3a75b0030) 2016-09-26 Andrea Azzarone * Use a s StateMachine to handle tooltip logic. (0e4d9f5b0) 2016-09-26 Michael Zanetti * fix visible property order in transition to spread (fd93f1cca) 2016-09-26 Lukáš Tinkl * use Mir device keymap (439ffe944) 2016-09-26 Michael Zanetti * fix resizing at fast speeds (19be291e7) 2016-09-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3bfa743bc) 2016-09-24 Brian Douglass * Added tests for disabling the indicator menu (fe420ed1f) 2016-09-23 Brian Douglass * Added tests for disabling the launcher (7076636f1) 2016-09-23 Michael Terry * Use more explicit version of AppID::find, since we have the registry sitting there (2b341090e) * Reduce some of the namespacing and stdString conversions (0399ec160) 2016-09-23 Michael Zanetti * drop duration definition... we use the default anyways (a41d2d53e) * don't use animationDuration in DecoratedWindow (365188a3b) * drop the debug animationDuration (bf2a440cd) * drop commented line (c0dec9319) 2016-09-23 Michael Terry * Add ual to build-depends (699db9251) 2016-09-23 Michael Zanetti * suppress warning (92d8c3127) 2016-09-23 Brian Douglass * Added a setting to disable the indicator menu (c6ae0cccb) 2016-09-23 Marco Trevisan (Treviño) * fakeindicatorsmodeldata: add fake message actions for TextMessage and SnapDecision (54ba7b833) 2016-09-22 Marco Trevisan (Treviño) * debian/control: bump the dependency on settings components (6b3e6e49d) * fakeindicatorsmodeldata: use local avatars for messages (c02a539b1) * MenuItemFactory: move more checks to utility functions (f2e7fdf49) 2016-09-22 Michael Terry * More fixer ups (3324cb003) * Small fixer ups (0d4782f0f) * Drop unused LAUNCHER_TESTING (257d37282) * Use UAL instead of manually parsing a desktop file for launcher (a69ada019) 2016-09-22 Marco Trevisan (Treviño) * MenuitemFactory: add utility functions to get proper components allow user to override (4084254ce) 2016-09-22 Michael Zanetti * drop another unused property (7bd18b68b) * add a FIXME on why the assertion is commented out (c8d52f811) * revert changes in changelog (5f4990a3d) * fix angle in right edge drag (5e2087592) 2016-09-22 Marco Trevisan (Treviño) * MenuItemFactory: remove the unused keymapMenu (848d7f647) * MenuItemFactory: protect from unset context (1de2290dd) * MenuItemFactory: make filtering of entries by action cleaner using a map (5abb376d0) 2016-09-22 Michael Terry * Make default single-user userModes just have default background, to keep old behavior and fix tests that expect that (0f0937a21) 2016-09-22 Michael Zanetti * drop SpreadDelegate test entry from CMakeLists.txt. There is no more SpreadDelegate. (7353dc379) * use inputMethodVisibleRect as suggested in review (5ca7d986d) 2016-09-22 Marco Trevisan (Treviño) * MenuItemFactory: use same rules for fake indicators (935914b69) 2016-09-22 Michael Zanetti * fallback to application.fullscreen if the surface disappears (4204e748e) 2016-09-22 Marco Trevisan (Treviño) * MenuItemFactory: use BaseLayoutMenu for creating the special messagesButtonMenu (f4455d2da) 2016-09-22 Michael Zanetti * merge prereq (e3b4b2889) * drop unneccessary function, move body to caller (a11a2c0d6) * fix typo in comment (603fa22a4) * fix typo (2d7ae4795) * drop the beingResized hack (bcac70b9f) * drop debug print (1e440dffb) * drop debug print (c082d7242) 2016-09-22 Marco Trevisan (Treviño) * MenuItemFactory: don't use a special standard menu for settings items, but a correct linkMenu (a3d0091fb) * MenuItemFactory: use a slots for adding the buttonSectionMenu (5f1806b08) * MenuItemFactory: no need set opacity on ProgressValue items as per upstream changes (395ed1d42) 2016-09-22 Bileto Bot * Releasing 8.14+16.10.20160922-0ubuntu1 (2d4b8565c) 2016-09-22 Marco Trevisan (Treviño) * IndicatorsClient: use PageHeader and ListItemLayout's (996d62804) * Indicators, mocks: add fake indicators menuitem to populate mocks with different menu types (71ff20c8d) 2016-09-22 Michael Terry * Make infographic bubbles white even on the default wallpaper. (8f7528073) * Update look of infographic a bit (c031e4b06) 2016-09-22 Lukáš Tinkl * Fix 2 failing color-related tests (c631565ef) * Respect Fitt's law wrt the window control buttons in panel (LP: #1611959) (cfbfce284) * On the PC platform (as opposed to running on $devices), use the "mute" action instead of silent mode (1951ac0f1) 2016-09-22 Albert Astals Cid * Improve findChild calls inside tryCompareFunction. (300443327) * Make test_Shell non ultra slow again (a35690027) 2016-09-22 Lukáš Tinkl * Implement edge maximizing (aka window snapping) (LP: #1602628) (af925dbad) 2016-09-22 Daniel d'Andrada * Implement cursor confinement (LP: #1590099) (6c5405739) * Set progress bar indeterminate when processing signal received. (LP: #1249349) (31f37e10a) 2016-09-22 Michael Terry * Use the default system wallpaper instead of our custom one. (81dc45046) * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. (1aafa5757) * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. (01d093f99) * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) (f04d0eda2) * Fix tryShell to actually show appropriate backgrounds for each mock user. (c8a37b675) * Support launching apps inside a unity8 session from the greeter and support emergency dialing inside the greeter. (8c1687a09) 2016-09-22 Josh Arenson * Add a frontend to the sessions model and enable a session chooser in the greeter. (3e9025fd7) 2016-09-22 Albert Astals Cid * Show "Pull to refresh" in white when overlaid in low luminance colors (LP: #1596849) (8a74a8e9c) * Make sure the spinner does not get too close to the title text (LP: #1597392) (b3b1cb74a) * Make tryGenericScopeView show the scope correctly (9648eec2d) * Adapt onShiftedContentXChanged to work when the content changes very abruptly (fb89b4a32) * Make PreviewActionsTest::test_comboButton more stable (e7977af78) * Dash::test_cardIconStyle change compare into tryCompareFunction (3b57f64b4) * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (6e86ab839) * LVWPH: Fix items cut on top in the dash (or at least some instances of it) (08de6f9fb) * LVWPH: Fix case in which header was shown incorrectly (3e9141fef) * Remove artShapeSize from non cardtool cards (8057d5378) * Add bottom gradient to the Show Less floating button (ddd5ee8cd) * No need for the touchdown in the card for the cardtool (51b87cb1d) * Put the touchdown shape inside a loader (f1fb224ab) * LVWPH: update clipItem height when list height changes (LP: #1606935) (7eca926b3) 2016-09-22 Andrea Cimitan * add a couple of waiting tricks for a flaky dash test (ba3f27e79) * use mouseFlick instead touchFlick for manage_dash_move_current (9ef205aa4) * rework GenericScopeView PullToRefresh test (ebdb08f61) * Use PreviewSingleton for PreviewRatingInput and PreviewCommentInput (LP: #1595235) (478e4d1a8) * Add a PreviewSingleton module to store some data for previews (LP: #1595235) (385fda60c) * Elide the label text inside recent searches panel (LP: #1611796) (60bee7cf2) * override some Qt Components definitions so we can have sane default values for flick speeds (d0f3cb61f) 2016-09-22 Brian Douglass * Added settings option to enable/disable the launcher (e49012e83) 2016-09-21 Michael Zanetti * fix testDecoratedWindow (6b9253e33) 2016-09-21 Andrea Azzarone * Add the first qml test. (b568bb35b) 2016-09-21 Michael Zanetti * fix last orientedShell test (4180aa228) 2016-09-21 Marco Trevisan (Treviño) * fakeindicatorsmodeldata: add fake indicator keyboard elements (cd686065b) * MenuItemFactory: remove deprecated properties (f23ff318c) 2016-09-21 Michael Zanetti * fix testOrientedShell (928545f33) 2016-09-21 Marco Trevisan (Treviño) * MenuItemFactory: ensure that the text is always full opauqe, even if disabled (df4d19057) * fakeindicatorsmodeldata: add missing power and calendar items (a88def688) * testMenuItemFactory: remove unneeded label test in ModemInfo (a30d56659) * testMenuItemFactory: fix typo causing color test in appointmentMenu to fail (4d2028277) 2016-09-21 Michael Zanetti * fix testShellWithPin (32b483dfe) 2016-09-20 Lukáš Tinkl * fix ShellWithPin test failures (faed16c58) 2016-09-20 Michael Zanetti * fix camera app rotation, *finally* (5eb6a54c0) * more fixes to the side stage animation (b0fbd770f) * add copyright headers (a59daa54c) * drop some unused code (461f9ec24) * dropped AbstractStage (193096258) * fix some side stage related issues (ee3e29d34) 2016-09-19 Andrea Azzarone * Fix tooltip design and open it on mouse hover. (23f4dbd00) 2016-09-19 Michael Zanetti * don't hide side stage drag handle prematurely (e2630ec0d) * fix snapshot image being squeezed (c6cfea74f) * less duplicated code (cd464ecee) * fix focusing something while in spread (de02c6c4c) * fix tutorial (ae181fb90) * don't eat the focus when clicking on Start all apps (cd1606462) * some more fixes (b5620044e) * some triel to fix orientedshell (84006ee7d) 2016-09-16 Lukáš Tinkl * fixup wheel boundaries (40083ee88) * fix keyboard spread navigation; add mouse wheel support (1d4dbef2f) * elide the window item title (1e10bf9f2) * provide app name as a fallback to window title (4724b6242) * eat wheel events (b1f6d36e7) 2016-09-15 Michael Zanetti * another fix in PhoneStage tests (d8213265f) * fix cancelling right edge visiblity (9561accbc) * drop broken unused code (04d610e6b) * Tablet tests passing!!! (d496e4568) * fix tutorial related info about the stage (eef4208c4) * get away with some TODOs (6df5e4460) * PhoneStage tests passing again! (0cc0513c5) * some more test fixes (81bfaa230) * reenable proper activation of the minimizeAll shortcut (28069ed7b) * cleanup (3c54c692d) * some more work on re-enabling tests (48dfea119) * fix binding loop when cascading windows (7321eb17f) * fix short right edge animation (429f5eb55) * fix parts of phonestage tests, not complete yet (0b077f254) 2016-09-14 Andrea Azzarone * Merge trunk. (6e1f434f6) * Initial work for launcher tooltips. (c666565e2) 2016-09-14 Lukáš Tinkl * revert API level change (07aa0f9cd) * enabled tst_TabletStage and fixed some tests (903c84b65) * fix tst_surfaceContainer (e8fc1d41b) * fix tst_windowResizeArea (10da2ebac) 2016-09-14 Michael Zanetti * fix bad merge in Greeter stuff (8dc12867b) * revert changes in it.po (350f00dcf) * don't try to take over control in the model. The stage is the one to say who's raised! (6b9b8371a) * revert changes in changelog (c071f5df4) * merge the silo again (d932e970a) * fix tablet stage app visiblitiy (97d369930) * fix close button sometimes showing when it shouldn't (5ec16b766) * some more fixes to windowed mode (resizing etc) (948f3aeca) 2016-09-14 Lukáš Tinkl * merge parent (44c971032) * fix resizing semimaximized windows (93bf03637) * fix resizing hor/vert maximized windows (e8a84ab45) * fix resizing of restored windows, touch controls for maximized (2d831cf30) 2016-09-14 Michael Zanetti * minor cleanup (4da610e30) * fix testDesktopStage (d0860e2b9) 2016-09-14 Lukáš Tinkl * checkpoint charlie (897d84d02) 2016-09-14 Michael Zanetti * fix testApplicationWindow (b48c90636) 2016-09-14 Bileto Bot * Releasing 8.14+16.10.20160914-0ubuntu1 (914e01214) 2016-09-14 Marco Trevisan (Treviño) * IndicatorsClient: use PageHeader and ListItemLayout's (9d8ca6f2f) * Indicators, mocks: add fake indicators menuitem to populate mocks with different menu types (a8e80a04a) 2016-09-14 Lukáš Tinkl * Implement moving windows by Alt + left mouse button (436c8fe45) * Implement edge maximizing (aka window snapping) (LP: #1602628, #1611859) (342de7eaf) 2016-09-14 Daniel d'Andrada * Implement cursor confinement (LP: #1590099) (818172016) * Set progress bar indeterminate when processing signal received. (LP: #1249349) (698e8fcae) 2016-09-14 Michael Terry * Make infographic bubbles white even on the default wallpaper. (e9579b1e2) * Update look of infographic a bit (8f7f9285f) * Use the default system wallpaper instead of our custom one. (d8311d60f) * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. (7bf0c088f) * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. (404fb9249) * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) (947d3dff3) * Fix tryShell to actually show appropriate backgrounds for each mock user. (f94a70c83) * Support launching apps inside a unity8 session from the greeter and support emergency dialing inside the greeter. (f4f54dade) 2016-09-14 Josh Arenson * Add a frontend to the sessions model and enable a session chooser in the greeter. (8b8b244ae) 2016-09-14 Lukáš Tinkl * Fix 2 failing color-related tests (387ec9a72) * Respect Fitt's law wrt the window control buttons in panel (LP: #1611959) (fc9fef92f) * On the PC platform (as opposed to running on $devices), use the "mute" action instead of silent mode (cd264a6eb) 2016-09-14 Albert Astals Cid * Improve findChild calls inside tryCompareFunction. (7a678d418) * Make test_Shell non ultra slow again (05dfdce99) * Show "Pull to refresh" in white when overlaid in low luminance colors (LP: #1596849) (9e4f07b46) * Make sure the spinner does not get too close to the title text (LP: #1597392) (6be9f176e) * Make tryGenericScopeView show the scope correctly (cde0538d1) * Adapt onShiftedContentXChanged to work when the content changes very abruptly (c9128a812) * Make PreviewActionsTest::test_comboButton more stable (7f7850f9d) * Dash::test_cardIconStyle change compare into tryCompareFunction (5763db0d8) * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (c196a3dfd) * LVWPH: Fix items cut on top in the dash (or at least some instances of it) (c7951ccb7) * LVWPH: Fix case in which header was shown incorrectly (eb69209e8) * Remove artShapeSize from non cardtool cards (8872fa0ca) * Add bottom gradient to the Show Less floating button (99d03479c) * No need for the touchdown in the card for the cardtool (bba3e9067) * Put the touchdown shape inside a loader (01433e5e9) * LVWPH: update clipItem height when list height changes (LP: #1606935) (423e7f0e9) 2016-09-14 Andrea Cimitan * add a couple of waiting tricks for a flaky dash test (17e731e5f) * use mouseFlick instead touchFlick for manage_dash_move_current (dea63d790) * rework GenericScopeView PullToRefresh test (1071198bd) * Use PreviewSingleton for PreviewRatingInput and PreviewCommentInput (LP: #1595235) (822db4a6e) * Add a PreviewSingleton module to store some data for previews (LP: #1595235) (84a7e0775) * Elide the label text inside recent searches panel (LP: #1611796) (138bdd8c8) * override some Qt Components definitions so we can have sane default values for flick speeds (97ce5314b) 2016-09-13 Josh Arenson * Fix border color (eec474450) * Fix keyboard nav issues (8aaabf69c) 2016-09-13 Lukáš Tinkl * add a bug reference (70409eba1) 2016-09-13 Josh Arenson * All orange everything (d7533e098) 2016-09-13 Michael Zanetti * testShell passing!!! (794a658c2) * fix z ordering in tablet mode after breaking it with the left edge drag progress (c90c39e63) * some minor focusing fixes (e306b8367) * move dropshadow to a generic place, given it's not only used by the stage (14580f23c) * disable shortcuts when not needed (babe387bd) * bring back the long left edge drag (15e3d4546) * fix it after removing some code (a2d71f188) * start dropping AbstractStage (275578b00) * drop tons of debug prints (3846937d4) * fix switching to sideStaged mode from windowed (aaee5f4d0) * merge the silo again (6ac6068e3) * drop a while lot of unused code (3d7a0dc31) * fix side stage when selecting from spread (35c2d2167) * fix side stage z index (d45fc1385) * minor improvements (c1cd98c75) * fix fullscreen sizes after bad merge (f5e36c8ca) * some fixes in windowed mode state transitions (3e4449f50) * less weird code (15f6813a1) 2016-09-13 Bileto Bot * Releasing 8.14+16.10.20160913-0ubuntu1 (3b241405b) 2016-09-13 Marco Trevisan (Treviño) * IndicatorsClient: use PageHeader and ListItemLayout's (3945a0ae6) * Indicators, mocks: add fake indicators menuitem to populate mocks with different menu types (2df5cad36) 2016-09-13 Lukáš Tinkl * Implement moving windows by Alt + left mouse button (649c976f3) * Implement edge maximizing (aka window snapping) (LP: #1602628, #1611859) (edaa4c296) 2016-09-13 Daniel d'Andrada * Implement cursor confinement (LP: #1590099) (6b5669f67) * Set progress bar indeterminate when processing signal received. (LP: #1249349) (f6f8bb818) 2016-09-13 Michael Terry * Make infographic bubbles white even on the default wallpaper. (8c2752311) * Update look of infographic a bit (6f377028e) * Use the default system wallpaper instead of our custom one. (4bd37d640) * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. (85949651a) * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. (14fc032ad) * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) (e7d3d6145) * Fix tryShell to actually show appropriate backgrounds for each mock user. (9716255e7) * Support launching apps inside a unity8 session from the greeter and support emergency dialing inside the greeter. (4ee911505) 2016-09-13 Josh Arenson * Add a frontend to the sessions model and enable a session chooser in the greeter. (faa4d33f5) 2016-09-13 Lukáš Tinkl * Fix 2 failing color-related tests (5ca186e77) * Respect Fitt's law wrt the window control buttons in panel (LP: #1611959) (3472f4dc9) * On the PC platform (as opposed to running on $devices), use the "mute" action instead of silent mode (f7a99a57f) 2016-09-13 Albert Astals Cid * Improve findChild calls inside tryCompareFunction. (8c0d380f5) * Make test_Shell non ultra slow again (3d4e2d5da) * Show "Pull to refresh" in white when overlaid in low luminance colors (LP: #1596849) (1a92f919b) * Make sure the spinner does not get too close to the title text (LP: #1597392) (3a01ab667) * Make tryGenericScopeView show the scope correctly (3a6fe626c) * Adapt onShiftedContentXChanged to work when the content changes very abruptly (67a46136e) * Make PreviewActionsTest::test_comboButton more stable (391dbfed0) * Dash::test_cardIconStyle change compare into tryCompareFunction (6e1f27fa4) * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (abe40c6d6) * LVWPH: Fix items cut on top in the dash (or at least some instances of it) (cd1d1501c) * LVWPH: Fix case in which header was shown incorrectly (9c327b6ca) * Remove artShapeSize from non cardtool cards (27bfea6af) * Add bottom gradient to the Show Less floating button (61ffcdf17) * No need for the touchdown in the card for the cardtool (19275c7cf) * Put the touchdown shape inside a loader (d2acd8ffd) * LVWPH: update clipItem height when list height changes (LP: #1606935) (a12163825) 2016-09-13 Andrea Cimitan * add a couple of waiting tricks for a flaky dash test (66f5b8ed2) * use mouseFlick instead touchFlick for manage_dash_move_current (80f72d08b) * rework GenericScopeView PullToRefresh test (471e64b9b) * Use PreviewSingleton for PreviewRatingInput and PreviewCommentInput (LP: #1595235) (478ebc17b) * Add a PreviewSingleton module to store some data for previews (LP: #1595235) (8789de4be) * Elide the label text inside recent searches panel (LP: #1611796) (b58db189c) * override some Qt Components definitions so we can have sane default values for flick speeds (c69385605) 2016-09-12 Josh Arenson * Fix highlight colors (99e25eb1d) * Remove back key handler as it wasnt backspace? (b23877e0d) * Fix weird padidng (7a43cb3eb) * Allow returning to the loginlist with the keyboard (b028fd5d5) * merge trunk (10cf7e241) 2016-09-12 Michael Zanetti * fix tranisiton (89a45d8bf) * merge silo 78. some things are still slightly broken (914e4c1af) 2016-09-12 Josh Arenson * Fix extra margins (79156e5fd) 2016-09-12 Michael Zanetti * fix side stage coming in/out on rotation (0cf7d15f5) * improve focusing animation, not 100% perfect, but let's see what design thinks (37ffe94e1) 2016-09-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b5a587949) 2016-09-12 Lukáš Tinkl * hook up support for controlling backlight brightness (fa3e85809) 2016-09-09 Michael Terry * Add another missing LightDM import (e6bb9817e) * Fix tryShell starting with full user list instead of single user (62feeb864) 2016-09-09 Bileto Bot * Releasing 8.14+16.10.20160909.4-0ubuntu1 (f5ec17165) 2016-09-09 Marco Trevisan (Treviño) * IndicatorsClient: use PageHeader and ListItemLayout's (91236b769) * Indicators, mocks: add fake indicators menuitem to populate mocks with different menu types (f004aa840) 2016-09-09 Lukáš Tinkl * Implement moving windows by Alt + left mouse button (452372c82) * Implement edge maximizing (aka window snapping) (LP: #1602628, #1608465, #1611859) (fc5ef5e7d) 2016-09-09 Daniel d'Andrada * Implement cursor confinement (LP: #1590099) (999ef194b) * Set progress bar indeterminate when processing signal received. (LP: #1249349) (96ec13508) 2016-09-09 Michael Terry * Make infographic bubbles white even on the default wallpaper. (0212ec6d8) * Update look of infographic a bit (a51be1f13) * Use the default system wallpaper instead of our custom one. (4fae980bb) * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. (db4dbaef5) * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. (de57d30f0) * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) (60a4dea58) * Fix tryShell to actually show appropriate backgrounds for each mock user. (4c782ceea) * Support launching apps inside a unity8 session from the greeter and support emergency dialing inside the greeter. (1a2119ea1) 2016-09-09 Josh Arenson * Add a frontend to the sessions model and enable a session chooser in the greeter. (LP: #1512470) (57aef87f0) 2016-09-09 Lukáš Tinkl * Fix 2 failing color-related tests (c777ca782) * Respect Fitt's law wrt the window control buttons in panel (LP: #1611959) (db5b4588c) * On the PC platform (as opposed to running on $devices), use the "mute" action instead of silent mode (c2efb1df8) 2016-09-09 Albert Astals Cid * Improve findChild calls inside tryCompareFunction. (470f0e0e0) * Make test_Shell non ultra slow again (3d24b0b98) * Show "Pull to refresh" in white when overlaid in low luminance colors (LP: #1596849) (43e1627b8) * Make sure the spinner does not get too close to the title text (LP: #1597392) (140d90673) * Make rryGenericScopeView show the scope correctly (cda26195f) * Adapt onShiftedContentXChanged to work when the content changes very abruptly (b4639156f) * Make PreviewActionsTest::test_comboButton more stable (34f61c89b) * Dash::test_cardIconStyle change compare into tryCompareFunction (538ff247f) * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (d131ac57a) * LVWPH: Fix items cut on top in the dash (or at least some instances of it) (d78c7a783) * LVWPH: Fix case in which header was shown incorrectly (ddbcd79c7) * Remove artShapeSize from non cardtool cards (a8d3b3f0f) * Add bottom gradient to the Show Less floating button (349e0cc2c) * No need for the touchdown in the card for the cardtool (b2e6288e2) * Put the touchdown shape inside a loader (e4bff902b) * LVWPH: update clipItem height when list height changes (LP: #1606935) (e8531ff47) 2016-09-09 Andrea Cimitan * add a couple of waiting tricks for a flaky dash test (d318b0b22) * use mouseFlick instead touchFlick for manage_dash_move_current (ad13d2f37) * rework GenericScopeView PullToRefresh test (fb178ff06) * Use PreviewSingleton for PreviewRatingInput and PreviewCommentInput (LP: #1595235) (42759c660) * Add a PreviewSingleton module to store some data for previews (LP: #1595235) (b3e05e6f5) * Elide the label text inside recent searches panel (LP: #1611796) (b66b11de0) * override some Qt Components definitions so we can have sane default values for flick speeds (a936dd178) 2016-09-09 Lukáš Tinkl * merge prereq (27a857c35) * stabilize++ (7a0df34d5) * run only when cursor visible (532ec3abe) * stabilize++ (d977f3e46) 2016-09-08 Michael Terry * Remove some no-longer-used files (5b98027d2) 2016-09-08 Michael Zanetti * fix trust prompt animation (fa88508ee) 2016-09-08 Marco Trevisan (Treviño) * Merging with lp:~3v1n0/unity8/fake-indicators-model (7b5207efb) 2016-09-08 Michael Zanetti * fix some transition glitches (e10b2625e) 2016-09-08 Marco Trevisan (Treviño) * fakeindicatorsmodeldata.js: mark indicator-files always visible (5e7492747) 2016-09-08 Michael Zanetti * cancel spread when clicking outside of tiles (0c98aa45d) * allow selecting iteoms in spread by clicking the icon (0f5a760ed) 2016-09-08 Lukáš Tinkl * raise the window, when it's in the background (4e1778058) 2016-09-08 Michael Terry * Address review comments (c488c5611) 2016-09-08 Lukáš Tinkl * revert unrelated (focus) change in tablet stage (74fdc1503) * revert this too (a62b52c36) 2016-09-08 Michael Zanetti * fix some icons looking odd (ec51a1aa7) 2016-09-08 Lukáš Tinkl * ooops (55091c595) * move the Alt-LMB handling into DecoratedWindow (390f6e336) * merge prereq (0478550eb) * turn the MoveHandler into a QtObject (5e01d4800) 2016-09-08 Michael Zanetti * disable the right edge area while in spread (f87831df3) 2016-09-08 Albert Astals Cid * Stabilize test (4409bac34) * Merge (93fd1cec3) * Merge (6be603d3f) 2016-09-08 Lukáš Tinkl * merge prereq (3eac474b8) 2016-09-08 Michael Zanetti * fix the right edge push animation as requested by design (a4a2b3207) 2016-09-08 Lukáš Tinkl * fix failing drag from panel test (cddd659d3) 2016-09-08 Michael Zanetti * fix app rotation restrictions (4432516ab) 2016-09-08 Lukáš Tinkl * fixup test, we now let presses pass thru to the decoration (39c05dfb1) 2016-09-08 Marco Trevisan (Treviño) * Merging with trunk (f7faf124b) 2016-09-08 Michael Zanetti * fix resizeArea enabling (16d9a3839) 2016-09-07 Michael Terry * Make infographic always white (6b688703a) 2016-09-07 Michael Zanetti * merge trunk (a3abeec7f) 2016-09-07 Lukáš Tinkl * remove debug (e3a5ecdeb) 2016-09-07 Michael Zanetti * add support for the right edge push barrier (481dd7146) * fix visual glitch in right edge anim (7fc0f94f4) * fix focus highlight when going to spread via touch (5e826eade) * more fixes (ab81835ad) 2016-09-07 Lukáš Tinkl * merge prereq (6d547218e) * backport the fix for focusedAppDelegate (684aa61b8) * gah, hate bzr (c2402a61f) * merge prereq (31af39220) * bad merge (2bbbd585c) * merge prereq (e73764dc6) * fix bad merge (69f24e6df) * merge prereq, fix conflicts (bcd07180f) * merge prereq, fix conflicts (cca0a44de) 2016-09-06 Michael Terry * Simplify lightdm plugin layout and use in-session lightdm support (1c3376882) 2016-09-06 Daniel d'Andrada * Implement cursor confinement (16ee79f17) 2016-09-06 Rodney Dawes * Set progress bar indeterminate when processing signal received. (d4fbda205) 2016-09-06 Daniel d'Andrada * merge lp:~mterry/unity8/default-wallpaper (c1b5e2091) 2016-09-06 Michael Terry * Merge default-wallpaper (365328528) * Merge greeter-no-lockscreen (54614d356) * Merge greeter-tiny-bugs (70600a696) * Merge greeter-active (32a8b1f86) * Merge greeter-mock-bg (aef642bd4) * Merge greeter-apps (236684009) * Merge session-chooser-gui (293be1d11) 2016-09-06 Josh Arenson * Merge trunk (c5069da89) 2016-09-05 Lukáš Tinkl * a cleaner version of the focus race workaround (1e29d2631) * move windows around with Alt + LMB (d47a39074) * merge prereq (f8a0e67df) 2016-09-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ef07a2f29) 2016-09-02 Lukáš Tinkl * merge lp:~dandrader/unity8/cursorConfinement (15dc8db9d) 2016-09-02 Bileto Bot * Resync trunk. (5475cc090) 2016-09-02 Andrea Cimitan * tweaks to dash page header, updated bottom edge asset (6521e8e74) 2016-09-02 Daniel d'Andrada * Implement cursor confinement (2daaabd84) 2016-09-02 Rodney Dawes * Set progress bar indeterminate when processing signal received. (1612875f9) 2016-09-02 Daniel d'Andrada * merge lp:~mterry/unity8/default-wallpaper (8595fe661) 2016-09-01 Michael Terry * Whoops, don't break support for color backgrounds (ecd6f1e2d) 2016-09-01 Lukáš Tinkl * merge trunk (024ffd8bb) * prevent conflicts with other branches (14bbc7500) * fix 2 failing tests (1f9c3ed6e) * drop unused include (0857fc1cd) * refactor the dragging property exposure (c09b289ed) * don't export the moveHandler from DesktopStage delegate, not needed (5e6ca453a) * remove now redundant handlePressedChanged() call (284df1a4a) * add a note mentioning the worked around bug (0e8355f36) * fix failing color tests (4bba1a51b) * fade in/out nicely (725a06121) * hide the cursor for fullscreen apps (6d789f7fc) * don't emit pushStopped() unnecessarily if not pushing (52a6b8cae) * revert unrelated (7d1ad5f8e) 2016-09-01 Daniel d'Andrada * simplify the panel dragging down (cf0928798) 2016-09-01 Lukáš Tinkl * merge trunk (0c2a48d12) 2016-09-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ca5b0ec3e) 2016-08-31 Daniel d'Andrada * Simplify code (71861ef51) 2016-08-31 Michael Terry * Merge default-wallpaper (afff23f3f) * More tweaks (b09af9b9b) 2016-08-31 Michael Zanetti * all tst_Shell tests passing again except 2 where the according features are not implemented fully yet. Need some last design calls on those (b1aeb8e07) 2016-08-31 Lukáš Tinkl * fixup a failing test (e7a87e910) 2016-08-31 Michael Terry * Fix a couple shell tests (0f8ff28cf) 2016-08-31 Daniel d'Andrada * merge lp:~lukas-kde/unity8/edgeMaximize (5953e33cd) 2016-08-31 Lukáš Tinkl * use a Qt C++ property for the panel height (cee9f5149) * also save the distanceY for restoring the window dragged back from a maximized state (f803c90cc) * minor fixes and cleanups (ba4131f4d) 2016-08-31 Bileto Bot * Releasing 8.14+16.10.20160831.3-0ubuntu1 (aad144cb0) 2016-08-31 Daniel d'Andrada * Added implementation for MirSurfaceInterface::persistentId (78baf5822) 2016-08-31 Bileto Bot * Resync trunk. (bf2cf1f49) 2016-08-31 Lukáš Tinkl * fix touch dragging \o/ (4ae834f60) 2016-08-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2ba2e5a79) 2016-08-31 Andrea Azzarone * Remove UbuntuShapeForItem and replace its use with the more standard Ubuntu.Components.UbuntuShape. (13979a79b) 2016-08-30 Michael Terry * Merge default-wallpaper (3906ddab6) * Fix test I broke in a merge (d160f72ea) * Merge default-wallpaper (6ae2cfa3e) * add missing test image; re-use QImageReaders more; fix test (997ff13e7) 2016-08-30 Michael Zanetti * improve the right edge gesture (9633901cb) * fix some more tests (9a152f1f5) 2016-08-30 Lukáš Tinkl * progress -> absolute amount for the touch overlay push (6eab3ed47) 2016-08-30 Andrea Azzarone * Use a timer to avoid showing the "grabbing" cursor on a double click. A similar solution is used in unity7 too. (a6afc09f0) 2016-08-30 Michael Terry * Update look of infographic a bit (79dd7cf9a) * Remove old backgrounds (8e9448736) * Use the default system wallpaper instead of our custom one. (20b30a4db) * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. (80ab351bd) 2016-08-30 Michael Zanetti * hide invisible apps (78417e64b) 2016-08-30 Michael Terry * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. (dd6ea60a4) * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) (9915ccd5d) * Merge greeter-apps (47521cc56) 2016-08-30 Michael Zanetti * fix another test (4963440db) * fix lifecycle for tablet too (d025bc57d) * bring the lifecycle code back (5a252fb95) 2016-08-30 Lukáš Tinkl * more accurate left/top/right hit testing (bb2f7b591) 2016-08-30 Albert Astals Cid * Improve findChild calls inside tryCompareFunction (ed1a770bd) 2016-08-30 Lukáš Tinkl * WIP: touch based edge detection and maximizing (9eaba2a42) 2016-08-29 Tomás Tormo * Add unit test for new day detection and set in infographics (c4bf68335) 2016-08-29 Michael Zanetti * fix selecting apps from launcher while in spread (ba6a18e5e) * implement close button and fix tests for it (470a81385) * merge ~aacid/unity8/makeTestShellFaster (9c7f7ba48) * fix a test (dc5895dea) * drop the z debug label (a82b08567) * make the side stage stuff working properly again. might need some animation tweaking still (90536142c) 2016-08-29 Andrea Azzarone * Set Mir.cursorName to "grabbing" on first mouse press on a window decoration. Don't wait for press+motion. (fcfe59036) 2016-08-29 Michael Terry * Merge from session-chooser-gui (35dc079a7) 2016-08-29 Albert Astals Cid * Make test_Shell non ultra slow again (f8b6ea7ed) 2016-08-29 Michael Zanetti * no highlight on touch activation in tablet mode (582ddf597) 2016-08-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4de859c48) 2016-08-28 Lukáš Tinkl * properly restore a maximized window from the panel (3adcd5eec) 2016-08-26 Lukáš Tinkl * off by one in the topleft corner too (c3791572c) * fix off by one error in the corners (5d291b2c5) * comment out the automatic maximization (4db8944d3) 2016-08-26 Bileto Bot * Releasing 8.14+16.10.20160826-0ubuntu1 (e41e4d9ff) 2016-08-26 Alfonso Sanchez-Beato * Make sure we emit sounds when taking a screenshot even after media-hub has restarted (LP: #1544477) (LP: #1544477) (a97894276) * Change verify to compare in test (5099a782a) * One more fix for PreviewAudioPlayback test (bf4b2a4c8) * Adapt unit test to DashAudioPlayer changes (195f67ddb) 2016-08-25 Lukáš Tinkl * merge trunk (8c6097329) * cancel the preview on unpush (f940ff84e) * fix the hinting phase (and cancellation thereof) on the top edge (2f711c823) * do the opacity and scale declaratively (6b5fb1a66) 2016-08-25 Michael Zanetti * implement windowed transition to spread (666ce13b2) 2016-08-25 Lukáš Tinkl * WIP: MousePointer based edge push (50158058f) 2016-08-25 Alfonso Sanchez-Beato * Make sure we can play music from the scopes after media-hub restarts. (7ba539b9c) 2016-08-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6acf45788) 2016-08-25 Lukáš Tinkl * extend MousePointer with top boundary and corners (a404f6c3a) 2016-08-25 Tomás Tormo * Reload infographic notification data when the device is unlocked (374908063) 2016-08-24 Albert Astals Cid * cimi prefers it this way (aa0525237) * Combine the ifs (5f33e7188) 2016-08-24 Michael Zanetti * add a threshold vor up/down drag in spread (4f47a9c5c) 2016-08-24 Bileto Bot * Resync trunk. (394bb0878) 2016-08-24 Josh Arenson * Readd waiting alias (3817071d1) * merge trunk (1fa02cd01) 2016-08-24 Michael Zanetti * remove the flickable left/right margins... they weren't useful (428e0065b) 2016-08-24 Albert Astals Cid * Use UbuntuColors instead of white and palette color (07d61ca31) 2016-08-24 Lukáš Tinkl * port the touch overlay to MoveHandler (644484fbf) 2016-08-24 Michael Zanetti * fix negative progress causing invisible tiles (0562e668c) * re-enable logic to detect one way flicks from right edge (96e3d944f) 2016-08-24 Alfonso Sanchez-Beato * Add reference to QtMultimedia bug (3b4b2d194) 2016-08-24 Lukáš Tinkl * fix double click behavior, move it back to decoration where it belongs (223bd318b) * use DND for restoring from panel (8bfb5eb82) 2016-08-24 Alfonso Sanchez-Beato * Make sure we emit sounds when taking a screenshot even after media-hub has restarted (LP: #1544477) (a6b8386f7) 2016-08-23 Lukáš Tinkl * refactor window moving logic into a dedicated component - MoveHandler (24430f3c0) * snap and properly restore the window when dragging it back (f6ec03f4a) 2016-08-23 Michael Zanetti * fix race when initializing surfaces while in spread (be7527f62) * use app name instead of window title for icons (403726b01) 2016-08-23 Lukáš Tinkl * clean patch 2 (f0c271d97) 2016-08-23 Michael Zanetti * update sleection highlight (af2788a18) 2016-08-23 Albert Astals Cid * Add FIXME (3ad50e3ba) * remove () (b59538dc2) * improve tryCompare addition (7196dc06e) 2016-08-23 Michael Zanetti * fix bad merge (6b7d2ea97) * merge trunk (bedf8bcd6) 2016-08-23 Lukáš Tinkl * add a test (8ac9b3685) * obey Fitt's law for the corner window control buttons in panel (5f26e9caa) 2016-08-23 Albert Astals Cid * Add landscape checkbox (8383b1d50) * Fix path (85b157d12) 2016-08-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4a6748f69) 2016-08-22 Michael Terry * Don't set mock backgrounds if none exist (400260e94) 2016-08-22 Nick Dedekind * Added implementation for MirSurfaceInterface::persistentId (f286fa6dc) 2016-08-22 Michael Terry * Just always link to mock liblightdm, especially now that our mock AS module needs it (41d3bd512) 2016-08-22 Albert Astals Cid * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (5e60e02f3) 2016-08-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (80d42a8bb) 2016-08-19 Andrea Cimitan * Fix for manage_dash_select_same_favorite flaky test (hopefully) (174b17a0a) 2016-08-19 Albert Astals Cid * Move the 45 and 70gu to properties (790fb4399) * Remove "hacks" from GenericScopeView (1f0f2c924) 2016-08-19 Bileto Bot * Releasing 8.14+16.10.20160819-0ubuntu1 (ddd70a0b3) 2016-08-19 Lukáš Tinkl * Reset topmostIsFullscreen to correctly rotate the shell when dismissing SIM PIN screen (LP: #1614070) (21d06b090) * remove stray empty line (b8143da1d) * guard another unconditional (31145d825) * correctly cleanup (73aedc067) * add a mock and test for the fullscreen notifications (15319a971) 2016-08-19 Andrea Cimitan * Fix Dash::test_manage_dash_move_current() flaky test by using mouseFlick instead touchFlick (5b5d57941) * cosmetics (9e0b58e1d) * rework flaky genericscopeview pulltorefresh test (5284f5c7e) 2016-08-19 Lukáš Tinkl * don't let all the notifications fight for topmostIsFullscreen (d3adca933) * reset when there's no more notifications around (7151eb1ab) 2016-08-19 Albert Astals Cid * Adapt onShiftedContentXChanged to work when the content changes very abruptly (d1f7c841e) 2016-08-19 Lukáš Tinkl * partially revert notification fix for lp1614070 (bfd67b6d0) 2016-08-18 Andrea Cimitan * remove empty line (85621184e) * Check type before restoring state (d28ad7c92) 2016-08-18 Albert Astals Cid * Make PreviewActionsTest::test_comboButton more stable (10b5a9eec) 2016-08-18 Andrea Cimitan * Fixed previewCommentInput and added test (15365b492) 2016-08-18 Albert Astals Cid * Dash::test_cardIconStyle Turn compare into tryCompareFunction (0ec0acd1f) 2016-08-18 Andrea Cimitan * not needed (8a8392fae) * Add test for preview rating input singleton (c9df7cbfc) * merged (f70d99714) 2016-08-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9ffec520b) 2016-08-17 Albert Astals Cid * Really only do this for make tryGenericScopeView (5f5d224a1) 2016-08-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ee7f9fe40) 2016-08-16 Albert Astals Cid * Show "Pull to refresh" in white when overlaid in low luminance colors (c40431f5f) * Make sure the spinner does get too close to the title text (29705e21f) * Don't mess with tests, this is only for try (1491449c4) * Merge (d4daa3ac8) 2016-08-16 Bileto Bot * Resync trunk. (38f19acdc) 2016-08-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3990258f1) 2016-08-15 Lukáš Tinkl * merge trunk (68ed6f033) 2016-08-15 Bileto Bot * Resync trunk. (eba0bb740) 2016-08-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a709548ff) 2016-08-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (feee8266e) 2016-08-12 Andrea Cimitan * changes to the way the rating is stored (ed4397dc2) 2016-08-12 Lukáš Tinkl * use "mute" on PC (621ae3ba8) 2016-08-12 Andrea Cimitan * more singleton state save (48520a74e) 2016-08-11 Michael Terry * Merge greeter-apps (775438f18) * Merge session-chooser-gui (f0c50366c) 2016-08-11 Josh Arenson * merge trunk (e82e9b32f) 2016-08-11 Michael Terry * Merge greeter-apps (b4d444377) * Merge from trunk (e5e8728ad) 2016-08-11 Andrea Cimitan * Add elide for recent searches labels (530ce2e1d) 2016-08-11 Josh Arenson * Remove dbg code (a7415b58d) * Small fixes (73a8ba1ad) 2016-08-11 Bileto Bot * Releasing 8.14+16.10.20160811.1-0ubuntu1 (17fed75bf) 2016-08-11 Daniel d'Andrada * Remove stage property from Application (ded105d1a) 2016-08-11 Lukáš Tinkl * Implement a page for choosing HW keyboard layout in OOBE wizard (23c80b958) * Implement an optional system update feature during OOBE wizard (LP: #1580785) (926c95150) 2016-08-11 Omer Akram * Add object names for setup wizard (1d28d6bd7) 2016-08-11 Lukáš Tinkl * Apply the correct keymap also on prompt surfaces (LP: #1610124) (ec6732f03) 2016-08-11 Albert Astals Cid * Small clazy fixes (6d3ed3442) 2016-08-11 Lukáš Tinkl * Fix incorrect SIM PIN dialog position when entering a wrong PIN (LP: #1596076) (a528859b2) * Open the quicklist (context) menu also using the Menu key (LP: #1608265) (a954bfe6e) 2016-08-11 Michael Zanetti * fixes for the automatic switching between usage modes (6aee4ef5e) 2016-08-11 Larry Price * Allow libertine-scope to show empty search result hint unmodified. Fixes bug #1606693. (LP: #1606693) (a55386d42) 2016-08-11 Albert Astals Cid * Do not calculate implicitHeight for Cards in a CardGrid (7a22ba23a) * Remove unused LimitProxyModel (93dca2190) 2016-08-11 Michael Zanetti * Add a crossbuilder_post file to make crossbuilder restart unity8 after deploying (a51294906) * Clean up some build script legacy (973612aa3) 2016-08-11 Albert Astals Cid * Take into account carousel selectedItemScaleFactor when setting card fixedArtShapeSize (LP: #1599238) (b02a6f6af) 2016-08-10 Andrea Cimitan * redid the skip import test (7f985b86b) * merged wizard keyboard page and rename some imports (a41a13dfa) 2016-08-09 Andrea Cimitan * clear singleton on preview close (e4621ef0a) 2016-08-09 Albert Astals Cid * Add bottom gradient to the Show Less floating button (86ba9802f) * LVWPH: update clipItem height when list height changes (09e7acc0d) * Make tryGenericScopeView show the scope (d8bc2922f) * it'd -> it's (7050d3f32) 2016-08-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e1500e7bb) 2016-08-08 Josh Arenson * Restore focus to pw input after switching back from sessions list (50b5e9d60) * merge trunk (ab4f167c2) * Fix badge highlight (cc623b507) 2016-08-08 Andrea Cimitan * Last test (56c732a3a) 2016-08-08 Albert Astals Cid * Merge (4b0f843e6) 2016-08-08 Lukáš Tinkl * extend the keymap test with a prompt surface (6b1efb3c9) * apply the correct keymap also for prompt surfaces (546c8e718) 2016-08-08 Andrea Cimitan * new debug message (91abc2c87) * merged trunk (46b97cc3c) * added imports for components (37fffee15) * rename variables (59f23fd41) 2016-08-08 Lukáš Tinkl * merge trunk (a2042d75e) * merge trunk (7159c6f51) * merge trunk (444b95f16) * merge trunk (eae1155ed) 2016-08-08 Andrea Cimitan * renamed debug message for check import test (c425c44a2) * fix two import tests (c05dbf523) 2016-08-08 Albert Astals Cid * Merge (b48dd3ff3) * Merge (13fbe5e4a) * Merge (b22383525) * Merge (ecf80d7f1) 2016-08-05 Andrea Cimitan * Add import test (1a33af960) 2016-08-05 Michael Zanetti * fix trust prompt surface size (458f8a471) * fix focus with selec/enter/escape in spread (e7ba9da49) * fix some warnings (2a70f1058) * fix mimizing/restore (c7f3af1c5) * fix leftMargin in spread (644d03a0f) * boooo, multiple new lines at end of file (b7d65a3e2) 2016-08-05 Michael Terry * Fix usersmodel test (e59e922d9) 2016-08-05 Michael Zanetti * fix maxmimze transitions and states (f34e98fba) * fix the unmaximize animation (989164110) * fix the panel states (1fdbe3f2b) * fix fullscreen policy (98d30511e) 2016-08-05 Lukáš Tinkl * stick to primary orientation when showing the SIM PIN notification (b826cc6cc) 2016-08-05 Michael Zanetti * fix camera orientation (d67efa606) 2016-08-04 Michael Terry * Fix deb build (99b7b3320) 2016-08-04 Josh Arenson * merge trunk (6468b8ae0) 2016-08-04 Albert Astals Cid * Spacing (748adbf7f) * Fix items cut on top in the dash (or at least some instances of it) (9fdfeaf8a) 2016-08-04 Michael Zanetti * fix test shell (5add1c48e) * add missing file (912d2b16f) 2016-08-04 Michael Terry * Connect our mock AccountsService background files with our mock liblightdm background files (de3446530) 2016-08-03 Josh Arenson * Handle tab presses (6be84fa5a) 2016-08-03 Michael Zanetti * fix the focused window title string (45ffbccbc) 2016-08-03 Michael Terry * merge from parent (f49b04beb) 2016-08-03 Lukáš Tinkl * partially revert the string change (ad6346f30) 2016-08-03 Michael Zanetti * drop applicationsdisplayloader, rename DesktopStage to Stage (280d29681) 2016-08-03 Albert Astals Cid * Fix case in which header was shown incorrectly (67c0fdb10) 2016-08-03 Bileto Bot * Releasing 8.14+16.10.20160803-0ubuntu1 (166ff937d) 2016-08-03 Daniel d'Andrada * TouchEventSequenceWrapper: item might get deleted when touch sequence is committed (LP: #1607686) (aefab3f99) 2016-08-03 Lukáš Tinkl * Don't display the mode switch warning dialog on tablets (LP: #1600290) (59464a1e9) 2016-08-03 Albert Astals Cid * Add math.h includes for compilation in yakkety (LP: #1605502) (18e9b4697) 2016-08-03 Michael Terry * Fix lockscreen appearing right after unlocking a locked session on the desktop. (LP: #1604374) (79a5f8d71) 2016-08-03 Michał Sawicz * Add arm64 support, drop unnecessary B-D on web plugin (a90fac44f) 2016-08-03 Michael Terry * Fix indicator profile bug that caused sound indicator to say Mute instead of Silent Mode. (LP: #1604205) (0d200af22) 2016-08-03 Lukáš Tinkl * Fix log timestamps (LP: #1602196) (c50c36848) 2016-08-03 Daniel d'Andrada * Cursor: make its size grid unit based (280e594bb) * tst_PreviewIconActions: Make test name match filename (92093d88b) 2016-08-03 Albert Astals Cid * VerticalJournal improvements regarding model insertions and item height changes (7e0a3cbbc) 2016-08-03 Andrea Cimitan * Replace Flickable with an Item inside DashPageHeader for headerContainer (LP: #1599235) (1e1a30f43) * Add few sourceSize for Image we forgot (LP: #1595113) (45ea11e2a) * Use binding for filter popover contentWidth (LP: #1595116) (4dc626d2a) * Unfocus the search text field in the dash page header when requested (LP: #1590820) (c698d8066) 2016-08-03 Albert Astals Cid * unity-scope-tool: Use parse instead of process (ba04cc972) * Make the delegate of DashNavigationList an async Loader (eb20050e1) * Unbox the artshapeLoader (8b0ff4a51) * Fix DisabledScreenNotice::test_rotation (e698297db) 2016-08-03 Lukáš Tinkl * Implement clearing the search and closing the panel on pressing Escape key in the dash header (b15b729c8) 2016-08-03 Daniel d'Andrada * Fix splashscreen orientation when app rotates own contents (9ca0c7906) 2016-08-03 Lukáš Tinkl * Restart the location trust prompt service when exiting the wizard (LP: #1594430) (1abf9d5ef) * Provide window/surface close shortcuts across all the stages (LP: #1578392, #1606528) (50521764a) * Implement frontend support for running keyboard indicator (e01964af0) 2016-08-03 Michael Zanetti * more work on the right edge gesture (4f0238221) * fix shadow scale sync (102b9a756) * fix some transitions again (660cc951d) 2016-08-02 Michael Zanetti * add a test for updating the usage mode if the screen size changes (0ddf010c1) * merge trunk (2ec6ba25e) * merge trunk (f3371528e) 2016-08-02 Josh Arenson * Handle enter/return (893b3b70c) 2016-08-02 Michael Zanetti * start to move to a single right edge implementation, not yet sure if it'll work out though (d1bd05374) 2016-08-02 Lukáš Tinkl * address review comments (557267c84) * save the keymaps correctly, fix includes, add a warning when keymaps empty (60ac115a3) * more fixes for fullscreen stuff (5592a0750) * fixes for topmost fullscreen notification, get rid of placeholder (c550de2c5) * fix bad merge (f7e177b3e) 2016-08-02 Michael Zanetti * move and improve tests (41608f39e) * update tests (a33874a98) 2016-08-01 Josh Arenson * Handle key scrolling (87d63c5f0) 2016-08-01 Daniel d'Andrada * Update tests (ccb18885b) 2016-08-01 Michael Zanetti * fixes (851c4624f) * update according to latest changes in crossbuilder (cc4c2873a) * merge trunk (92f244870) * more work based on the latest design feedback (79a05fbd5) * unity-lens-applications -> unity-scope-click (6bdeb4dc7) 2016-08-01 Lukáš Tinkl * merge trunk (32de7876a) * open the quicklist (context) menu also using the Menu key (53b52d16f) 2016-07-31 Lukáš Tinkl * merge trunk (c42fd3d88) * merge trunk (4da3d7a3c) 2016-07-30 Lukáš Tinkl * try with a generic icon (10875c5df) 2016-07-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d406bd80b) 2016-07-29 Lukáš Tinkl * stabilize++ (46f7f9c8a) * stabilize tests (fbcdf2e76) 2016-07-29 Daniel d'Andrada * TouchEventSequenceWrapper: item might get deleted when touch sequence is committed (ffde5e4ca) 2016-07-29 Michael Zanetti * fixes for the automatic switching between usage modes (4f31b7544) 2016-07-28 Josh Arenson * Fix typo (7df2533ae) * Remove lockHint as its no longer used (1c41bbdf7) 2016-07-28 Lukáš Tinkl * simplify the layout, as per Saviq's suggestion (1679674b7) * convert to categorized logging (5d1de82f5) * address review comments (38c96a3e3) * merge trunk (bc75a1207) 2016-07-28 Andrea Cimitan * Try new test (f495691f0) 2016-07-28 Bileto Bot * Releasing 8.14+16.10.20160728-0ubuntu1 (fdde80043) 2016-07-28 Albert Astals Cid * Pass the correct number of arguments to mapToItem (2a50fd833) 2016-07-28 Bileto Bot * Bump the version to secure UITK compatibility (8b49c636e) 2016-07-27 Josh Arenson * Use a better hint to hide the icon (c28c14129) * Made API better (0dc317952) * Remove unused proprety (893395cf4) * Remove unused signal (e36fff59f) * Remove duplicate icon directory (2a010c85f) 2016-07-27 Andrea Cimitan * Use JS library as function (2325677b7) * ok, all on board now (41a28fe96) * flickable speed tuning (d90623700) 2016-07-27 Albert Astals Cid * Fix mapFromItem call too (cf786ac21) * Pass the correct number of arguments to mapToItem (0d23f8d6b) 2016-07-27 Andrea Cimitan * add test (5a9f1ee16) 2016-07-27 Omer Akram * fix per review (a408ba2c2) 2016-07-26 Josh Arenson * Remove hack (4818e686f) 2016-07-26 Larry Price * Allow libertine-scope to show empty search result hint unmodified (df8a7dd29) * merge (0650b49c9) 2016-07-26 Josh Arenson * Fix tests (8651f065a) 2016-07-26 Omer Akram * Fix language selection test (9663a4e0c) 2016-07-26 Michael Terry * Merge from trunk (a731fb22d) 2016-07-26 Omer Akram * Merge trunk (19d21fd6e) * revert wrongly changed test (12a3beca2) 2016-07-26 Lukáš Tinkl * merge trunk (1d3c594a2) * silence some debug (9d954c85d) 2016-07-26 Michael Zanetti * make side stage behave better (c12a6df4f) 2016-07-26 Timo Jyrinki * Rebuild against Qt 5.6.; Add https://code.launchpad.net/~aacid/unity8/floor_includes/+merge/300850 (07e4e7b5c) 2016-07-25 Josh Arenson * Finish refactor (2bf597239) * Begin large refactor (88f3046f1) * Rename lockHint to lockscreen (696229ca4) 2016-07-25 Andrea Cimitan * Clear the singleton data on scope change (14dccb51b) * dont store the position if we reach the end of the video, the very last second (92dd93554) * Better widgetExtraData definition (ce8430532) 2016-07-25 Daniel d'Andrada * Remove stage property from Application (aa017a98c) 2016-07-25 Andrea Cimitan * few changes (1f85ff860) 2016-07-25 Albert Astals Cid * Remove artShapeSize from non cardtool cards (e9f3de188) * Do not calculate implicitHeight for Cards in a CardGrid (a1bb75e1c) * Merge (4962bf36b) * Adapt test to code changes (695b3be58) * Merge unity8 (3b1d91ec2) * Adapt test to code changes (01c8faae7) 2016-07-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (77a5424b3) 2016-07-22 Josh Arenson * Fix bad merges (f25231d46) * Fix silly mistake (15719342e) * Merge trunk (3e5bfc704) 2016-07-22 Andrea Cimitan * cosmetic (c3a5d1442) * oops (75586b59b) * oops (c584d8567) * use a singleton to store some temp data across preview widgets (06823d687) 2016-07-22 Michael Zanetti * merge trunk (0ce698ca3) * spreaddelegateinputarea working (e564ad10f) 2016-07-22 Albert Astals Cid * Add math.h includes for compilation in yakkety (f8f03c958) 2016-07-22 Michał Sawicz * Merge trunk (06ad62dff) 2016-07-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (be0d920f4) 2016-07-21 CI Train Bot * Resync trunk. (23e468513) 2016-07-21 Michael Zanetti * merge trunk (e6e1e9416) * some improvements on the highlight (8670a748e) 2016-07-21 Albert Astals Cid * No need for the touchdown in the card for the cardtool (180d24c65) * Put the touchdown shape inside a loader (9552e7343) 2016-07-20 Marco Trevisan (Treviño) * CMakeLists: no need to manually move .js files to build dir. (5d1dc4a54) * Merging with trunk (70e4ec759) 2016-07-20 Albert Astals Cid * Remove unused LimitProxyModel (4fb423038) 2016-07-20 Michał Sawicz * B-D on -web so we never build on arches we won't be installable on (4b6305fe2) 2016-07-20 Michael Terry * Move new tst_Shell tests, to avoid conflict (6b09e0d98) * Merge in keyboardIndicator, since we conflict (f20acebe4) 2016-07-20 Michael Zanetti * drop empty line (505bed949) * more detail (ce59cd019) * drop some legacy (0b367d221) 2016-07-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cdef52a79) 2016-07-19 Michael Terry * Fix indicator profile replacement bug (17539f749) * Fix race when unlocking (977739c58) * Fix race with upstart socket (6b5af8018) 2016-07-19 Michael Zanetti * minor fixes (0da4b6390) * bring back the closing from spread animation (0f541ae7e) * bring back the default x/y bidnings (93309ba23) * write some inline doc (34a3366c5) * add missing file (40c38ac9f) * bring back the drag to close (694604954) * bring back the keyboard/mouse navigation highlight (60784feb3) * fade the appItem properly, fix claimFocus (8101754ab) 2016-07-19 Lukáš Tinkl * fix log timestamps (3df69c33d) 2016-07-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1daef153b) 2016-07-18 Josh Arenson * Check that the selected session actually exists (8263b1754) * Show login list on session selection (261ae7c64) * Merge trunk (70297e333) 2016-07-18 Michael Terry * Save dbus-session in /run/ again, in attempt to make dialer-app launching more reliable (8df7740e9) * Address review comments (a94744def) 2016-07-18 Omer Akram * add objectNames for wizard tests (9d2e0c040) 2016-07-18 Lukáš Tinkl * update (c) (eab88d6ad) * visual review fixes (7dac15de3) * fix failing tests (a75dc4ccc) * add a test for the wizard skipping to the last page (c7e0c5bca) * mark the wizard to skip until the last page temporarily (25007329d) * minor fixes (0f359402e) 2016-07-16 Michael Zanetti * appinfo item (17ebf89ef) * short right edge gesture for staged mode (abdb078f5) 2016-07-15 Lukáš Tinkl * fix and extend the ModeSwitchWarningDialog tests (b20e9b44d) 2016-07-15 Michael Terry * And unregister the url-dispatcher well-known dbus name if we are set inactive (shouldn't happen in real practice) (e483a3cc0) 2016-07-15 Lukáš Tinkl * fixes for the spinner (9ae5a0e3c) 2016-07-15 Michael Zanetti * drop old code (feac42237) * allow better control of the scaleToPreview animation (9768945ff) * add missing file (64ab30aec) 2016-07-15 Lukáš Tinkl * add a spinner (ab4b8a609) * update page visuals (9a819d431) 2016-07-15 Michael Zanetti * fix packaging (4e9cd4b2a) 2016-07-15 Lukáš Tinkl * revert the string change in wifi page (e5182ff8a) 2016-07-15 Daniel d'Andrada * move imageSource to CursorImageInfo (f5cb9e20e) 2016-07-15 Lukáš Tinkl * fixes for the backend (a3a6e2da6) 2016-07-15 Zsombor Egri * trunk sync (28797405f) * strip known namespaces from the class names (b7debc78c) 2016-07-15 Lukáš Tinkl * prevent the mode switch warning dialog from displaying on e.g. tablets (826ea86e5) 2016-07-15 Michał Sawicz * Merge trunk (0a3dad456) 2016-07-14 Daniel d'Andrada * Cursor: make its size grid unit based (ef73617ef) 2016-07-14 Josh Arenson * Make animation slightly less jank (cb811e08c) 2016-07-14 Michael Zanetti * focusing animation tweaking (5cb13a6b6) 2016-07-14 Daniel d'Andrada * tst_PreviewIconActions: Make test name matches filename (d4b058d89) 2016-07-14 Lukáš Tinkl * merge trunk (3a65dceb0) 2016-07-14 Michael Zanetti * spread redone! lookin goooood (88ced031b) 2016-07-14 Lukáš Tinkl * more tweaks (ea0c8c649) 2016-07-14 Michael Zanetti * fix the font size on the external screen (3ee0405f5) 2016-07-14 Lukáš Tinkl * consistent Label colors (d547fcb76) * WIP: working lang selector (2c090231b) 2016-07-14 Michael Terry * Merge trunk (2337187fe) * Merge trunk (c2192a327) 2016-07-14 Lukáš Tinkl * WIP: custom item selector (93b6a8183) 2016-07-14 Michael Zanetti * use internalGu instead of units.gu() because of DGU hacks (e8f4f6c9d) 2016-07-14 Lukáš Tinkl * drop the tester (410302fac) * merge trunk (18deb7697) * merge trunk (690362da8) 2016-07-14 Bileto Bot * Releasing 8.13+16.10.20160714-0ubuntu1 (6b0c006b9) * Make use of MirSurface::inputBounds and drop UbuntuKeyboardInfo hack (9b88f0bde) 2016-07-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (65b1efbac) 2016-07-13 Lukáš Tinkl * fixup failing tests (9f83b28b0) 2016-07-13 Josh Arenson * Slightly alter list behavior (c641e7643) * Fix margins (7892dfcd9) * Handle 0 sessions better (78b9a2f3f) * Add ability for mock to change number of sessions (c09e2b988) 2016-07-13 Lukáš Tinkl * WIP: system update page (9c92e2fa4) * initiate the check + fix the mock (113dac297) * WIP: implement support for checking system updates (bd146a058) 2016-07-13 Zsombor Egri * few more tests using namespace (fa2329ba5) * no need to prepend namespace when using is set (3b0ac7003) * merge trunk (506218545) 2016-07-12 Josh Arenson * Restore full mock and make session list default selection fancier (519809887) * Fix launching alternative sessions (d0fb0c827) 2016-07-12 Albert Astals Cid * typo fix (d38d2e27a) * eof (02abffa91) * VerticalJournal improvements regarding model insertions and item height changes (d9f847e01) 2016-07-12 Lukáš Tinkl * visual tweaks (option 1) (ab2277bd9) 2016-07-12 Daniel d'Andrada * Bump version (66a746863) * This new unity8 is not compatible with current/old ubuntu-keyboard (fcfb5471d) 2016-07-12 Michael Zanetti * fix (disable) startup animation (fb7fcf985) * fix the splash screen sizing (19581a6db) * split the windowed geometry from the staged ones to have less collisions (ea69283e9) 2016-07-12 Lukáš Tinkl * merge trunk (94aff725b) * merge trunk (74c120987) * merge trunk (74eb1f969) * merge trunk (5f0f73faa) * merge trunk (baeebf5a8) 2016-07-11 Zsombor Egri * be more precise on dep versions (d0f19e653) 2016-07-11 Zoltán Balogh * Give more precise UITK version to depend on (e3c5424aa) 2016-07-11 Bileto Bot * Releasing 8.12+16.10.20160711-0ubuntu1 (791ba284e) 2016-07-11 Michael Terry * Fix tablet greeter focus to be always-on, no longer hiding the OSK or forcing a mouse click to type a password. (bfda9dba3) * Make sure indicators and launcher hide when power button is pressed on greeter. (LP: #1595569) (dc1104590) 2016-07-11 Josh Arenson * Add a SessionsModel to lightdm to support the greeter's session chooser (47ffbf267) * Add unity8-greeter package which contains a basic, but usable LightDM greeter. (LP: #1324602) (8e548f2e1) 2016-07-11 Michael Zanetti * add make tryDecoratedWindow (1bc3aa55d) * hide side stage when not in tablet mode (52e3bf9f9) 2016-07-11 Andrea Cimitan * add copyright years (c3a4c561e) 2016-07-11 Lukáš Tinkl * turn KeymapSwitcher back into a QtObject (6ea7fad15) 2016-07-11 Andrea Cimitan * use ubuntuanimation easing (c4e524c5d) 2016-07-11 Lukáš Tinkl * Recommend indicator-keyboard (13bdb25ab) * also cleanup the keymaps (367584edf) * s/tryCompare/compare (28edfb4da) * less fragile panel item finding (d6e9449df) * add a cleanup() function (745acc89d) 2016-07-11 Michael Zanetti * Add a crossbuilder_post file to make crossbuilder restart unity8 after deploying (482c57755) * merge trunk (6ae3b65ed) 2016-07-11 Lukáš Tinkl * remove unused var (22fbe1025) 2016-07-11 Michael Zanetti * more work on side stage mode (6c15ac49c) 2016-07-11 Lukáš Tinkl * add a test to check hiding of the keyboard indicator (b4a96ff28) * merge lp:~mterry/unity8/keyboardIndicator-migration (3dbd61906) * use client-side hiding of the indicator (c9fb38304) 2016-07-11 Zsombor Egri * fix changelog (0c5be0ba6) 2016-07-11 Zoltán Balogh * Bump the UITK depends version and bump the unity8 version (2a6738e1c) 2016-07-11 Albert Astals Cid * Add test (64a7a7fa6) 2016-07-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a0eac071b) 2016-07-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1883b9859) 2016-07-08 Michael Terry * Fix a test (12d52607a) * Drop migration support, that's moving to USS (08612a378) 2016-07-08 Josh Arenson * merge prereq (7d0e5ecf9) * mege prereq (b2b4075e1) * Merge lp:~mterry/unity8/slim_greeter_real_lightdm (12d13af97) 2016-07-08 Lukáš Tinkl * merge trunk (c038967b8) 2016-07-08 Zsombor Egri * fix other build issues (4f09de5ad) 2016-07-08 Michael Terry * Merge from greeter-focus (809a6d5eb) * Fix build with -DNO_TESTS=true (7acd4b78b) * Make it clear in GreeterPrompt that fakeLabel is for OSK focus (828dfa6a7) * Merge tryWideView focus refactor from dandrader (b05142cb0) * Merge focus refactor from dandrader (04507b7ec) 2016-07-08 Michael Zanetti * mark qt includes as SYSTEM to avoid warnings (09f717b60) 2016-07-08 Andrea Cimitan * as review (687dec51e) 2016-07-07 Michael Terry * Give wideview test focus to start (db11c195b) * Update copyrights (aec36f70b) * Install mock server that testSessionBackend needs (518a0e7b4) * Merge from trunk (a5d6a63b9) 2016-07-07 Josh Arenson * Fix height issue (5c06c0de9) 2016-07-07 Daniel d'Andrada * tst_Tutorial: Update test_oskDoesNotHideTutorial (8f66ea937) 2016-07-07 Bileto Bot * Releasing 8.12+16.10.20160707-0ubuntu1 (357bb9085) 2016-07-07 Michael Zanetti * emit the correct role changed signal on count visible changed (LP: #1599925) (027ca4650) * Emit the correct role changed on count visible changed (93a098ced) 2016-07-07 Lukáš Tinkl * merge trunk (3f1b650c0) * merge trunk (dde4725a4) 2016-07-07 Josh Arenson * Make sessions list height dynamic and nice (1b334c662) 2016-07-07 Andrea Cimitan * should fix tests (96e91a669) 2016-07-07 Michael Zanetti * dragging between stages working now (fd4d1c96e) 2016-07-07 Andrea Cimitan * Remove Flickable, use a simple Item (5600c9566) 2016-07-07 Michael Zanetti * merge trunk (25fffb025) 2016-07-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (91a714db0) 2016-07-06 Josh Arenson * Handle highlighting ourselves because of issues (d2431d477) * Cool equation (32ba0f6b3) * Cool equation (28d9cb4a7) * Logig is there (d365dfc38) * Highlighting works (7002f3c70) 2016-07-06 Michael Terry * Merge in greeter-hide-indicators (c2e3ff958) * Merge in lp:~josharenson/unity8/sessions-model to make it easier to stack greeter changes (039514c2f) * remove unneeded check, fixes test (4ced67e5a) 2016-07-06 Josh Arenson * [CHECKPOINT COMMIT] highlight, header, and shader look good (c6c370acc) 2016-07-06 Michael Zanetti * added info in CODING file (3fead925d) 2016-07-06 Michael Terry * Be smoother about focus in GreeterPrompt (c63198f9d) 2016-07-06 Daniel d'Andrada * Merge trunk (79b1cd56f) 2016-07-06 Albert Astals Cid * Take into account carousel selectedItemScaleFactor when setting card fixedArtShapeSize (dbd6f31cc) 2016-07-06 Zsombor Egri * get rid of the fw-headers as those are not public APIs of UbuntuGestures module - UG module doesn't provide ABI compatibility promise (bbb6472ec) 2016-07-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e8eeac19c) 2016-07-05 Josh Arenson * [CHECKPOINT COMMIT] header looks ok (f0d4352c3) 2016-07-05 Michael Zanetti * beginnings of the side stage (0aa0b2169) 2016-07-05 Josh Arenson * Make sessions list look a bit better (a85816f3b) * Correctly color the session chooser icons (62908b04a) 2016-07-05 Andrea Cimitan * add sourceSize where we forgot (03e15ead8) 2016-07-05 Josh Arenson * merge prereq (e7c8b2c03) * merge prereq (82b4dbbab) * merge trunk (ac6c18275) 2016-07-05 Andrea Cimitan * removed (ba62a66f0) * empty line (08e74c781) * add test (a3d40decb) 2016-07-05 Bileto Bot * Releasing 8.12+16.10.20160705-0ubuntu1 (d625bf99f) 2016-07-05 Michael Zanetti * don't displace windows if the OSK is on another screen (LP: #1598917) (42ff049c9) * don't displace windows if the OSK is on another screen (c9341534a) 2016-07-05 Andrea Cimitan * use binding for popover width (aec1055b4) 2016-07-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e57b7bfed) 2016-07-04 Andrea Cimitan * added test (857e13b23) * better style (3647dd33e) * Also unfocus the search field when requested (c08422c3b) 2016-07-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d4490eb4c) 2016-07-02 Michael Zanetti * more work (7c3c9c74c) 2016-07-01 Michael Zanetti * merge trunk and fix it again (aafcc2926) * build libunity8-private before the main app, we needs it now (ef98de7d3) * merge trunk (7090d1c87) * update some more things (513912d46) 2016-07-01 Lukáš Tinkl * merge trunk (4d4ddfe51) 2016-06-30 Michael Terry * Merge sessions-model (028173753) 2016-06-30 Josh Arenson * Readd test data (d26eab0f0) 2016-06-30 Michael Zanetti * added missing files (e3b425203) * add some debug facilities to DBus (555821da0) 2016-06-30 Daniel d'Andrada * Make use of MirSurface::inputBounds and drop UbuntuKeyboardInfo hack (9a78d6d4e) 2016-06-30 Michael Terry * Make sure we hide indicators/launcher when greeter is asked to be shown (bb8927201) 2016-06-30 Nick Dedekind * fixed comments (a8d02ce68) 2016-06-30 Lukáš Tinkl * merge trunk (55e383fed) * merge trunk (54153e617) * merge trunk (b12e3accd) * merge trunk (ddd1c76a6) 2016-06-30 Nick Dedekind * logging & review fixes (c1d4d9dc8) 2016-06-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7e5220e6c) 2016-06-29 Michael Terry * Merge from trunk (4016c9b96) * Merge parent (cf4c34361) * Merge from parent (53af655bb) * Don't save dbus address in xdg-runtime-dir (9b372d61c) 2016-06-29 Albert Astals Cid * unity-scope-tool: Use parse instead of process (81c4c8829) 2016-06-29 Josh Arenson * Merge prereq (e493225d4) * Merge trunk (03d5035b3) 2016-06-29 Albert Astals Cid * Merge (0cded640d) 2016-06-29 CI Train Bot * Resync trunk. (a189f760f) 2016-06-28 Michael Terry * Support launching apps in the greeter, either as locked apps or passing them on to the session via SessionBroadcast (d039c648a) 2016-06-28 Josh Arenson * Merge prereq (1982ac510) 2016-06-28 Andrea Cimitan * ooops (336644656) * spacing (dfaa73fba) * fix as review (5cb10495c) 2016-06-28 Michael Zanetti * update the vtp visuals and add a tutorial (40d65dc6c) 2016-06-28 Michael Terry * Fix minor issue when auto-responding with a passcode (f83f8e30d) 2016-06-28 Lukáš Tinkl * fix incorrect position when entering a wrong PIN (3f179ed0d) 2016-06-28 Albert Astals Cid * Make the delegate of DashNavigationList an async Loader (dbee9946f) 2016-06-28 Michael Zanetti * a little more progress (3e4be38bd) 2016-06-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fbba5c31d) 2016-06-27 Andrea Cimitan * fixed cardcreator test (69e5d5c90) 2016-06-27 Michael Terry * Whoops, reset po files that got changed somehow (ebdbc4337) * Merge from slim_greeter_real_lightdm (5d70b4efd) 2016-06-27 Bileto Bot * Releasing 8.12+16.10.20160627.5-0ubuntu1 (3a22bb7b9) 2016-06-27 Albert Astals Cid * Rework tst_PreviewRatingDisplayCreationRanges (17e93bdcd) * CardTool: Include Ubuntu Components since we're using units.gu (dfb5fab58) * CardTool: Fix the fallback value to be a size and not an integer (1b2aa9206) * Add more headers of classes we use for automoc to be run (74b264e04) * Do not rely on deleteLater not crashing on null pointers (438bbf73c) * Fix initialization order warning (c6e198da9) 2016-06-27 Josh Arenson * Correct errors in all png images to prevent libpng warnings. (66f0f969e) 2016-06-27 Albert Astals Cid * Mark system includes as such (8c790539b) * Use non deprecated package names (e3b26a323) 2016-06-27 Nick Dedekind * Default portrait only apps to the side stage. (LP: #1573153) (044b17cfa) * Save the last surface stage on stage drop. (LP: #1579003) (41e6820c4) * Force dash to always stay in the main stage. (lp:#1592404) (LP: #1592404) (0d1c87ef4) 2016-06-27 Michael Zanetti * displace application windows when the OSK would cover them (4dd864f68) 2016-06-27 Michael Terry * Stop unity8 from getting in a "switch-to-greeter" loop when locking on a desktop. (LP: #1593718) (40aec9c21) 2016-06-27 Lukáš Tinkl * Hide the maximize window button based on size restrictions (LP: #1541982) (e910467c7) * Do not let mouse and wheel events pass thru the titlebar (LP: #1588424) (d8118354f) 2016-06-27 Albert Astals Cid * Don't let the mouse go outside the parentItem (LP: #1525350) (2bf24db8b) 2016-06-27 Daniel d'Andrada * Fix missing screenshot when orientation changes while shell rotation ongoing (a53d87523) 2016-06-27 Lukáš Tinkl * Prevent mouse wheel events from going through shell elements (LP: #1536268) (fde57750f) * Fix some smaller issues with OOBE wizard password pages (LP: #1590467) (314455fba) 2016-06-27 Marco Trevisan (Treviño) * ClientIndicator: be more informative about loading failures for dynamically created objects (934acb349) * Unity8.conf: ensure MIR_SOCKET is set for future customers (such as the dash) (62094cabb) 2016-06-27 Daniel d'Andrada * Cursor: Let AnimatedSprite run only on animated cursors and while the display is on (aafa41523) 2016-06-27 Josh Arenson * Make PreviewRatingSingleDisplay visible again after editing a review. (LP: #1587097) (ae5c8ef41) 2016-06-27 Albert Astals Cid * Adapt test to new mock behaviour (49867a549) 2016-06-27 Michael Zanetti * set minimum window sizes on dash (a8aaf6b37) 2016-06-27 Albert Astals Cid * LVWPH: cull the header item when not on view to save some painting (9e913d800) * Stop watching the old header item height once it's not our header anymore (69519ed9c) * Added live video playback in dash previews (9a8c144c5) 2016-06-27 Michael Terry * Fix focus on greeter and various other bugs (be423659c) 2016-06-27 Josh Arenson * Fix merge (c38e359b9) 2016-06-27 Michael Zanetti * some more progress (95d9b5aa5) 2016-06-27 Josh Arenson * Merge trunk (000754305) 2016-06-27 Andrea Cimitan * fix issue with news scope (b65d58b1c) 2016-06-27 Michael Terry * Merge from trunk (548c733c1) 2016-06-27 Lukáš Tinkl * fix build (5f7759275) * migrate keymap settings (5ff1efc69) * merge trunk (b1a901b02) 2016-06-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e762025a0) 2016-06-24 Josh Arenson * Set the session key for integrated lightdm (51bc4e199) 2016-06-24 Lukáš Tinkl * merge trunk (d856065fc) 2016-06-24 CI Train Bot * Resync trunk. (f4062454c) 2016-06-24 Michael Zanetti * convert all usages to displayText (2fe9cedae) * PreviewRatingInput: use displayText instead of text to enable/disable send button (c7ee21b42) * move test (17ffa97cd) * fix tests (59e031a94) 2016-06-23 Lukáš Tinkl * merge trunk (8b20c167e) 2016-06-23 Michael Terry * Merge in slim_greeter_real_lightdm (fc1b69d94) 2016-06-23 Michael Zanetti * merge trunk (8055324de) 2016-06-23 Josh Arenson * Update comment (ebaf08720) 2016-06-23 Michael Zanetti * make it more explicit (3d24fa07f) * only displace when windowed and normalized (a5cacc8ea) * silence possible JS warnings (ad7d64560) * update WindowResizeArea tests (44b87ddc7) * check for the surface to be shown (08dda84d6) * only enable the binding when the OSK is actually shown (e0fe26c4a) * make the WindowControlsOverlay work on requestedX/Y too (f74606d4e) * improve it actual logic and the tests for it (2fa34a604) * displace windows when the OSK shows up (866d75425) 2016-06-23 Albert Astals Cid * Change expectFail into expectFailContinue (2775df4d2) * Don't check for an exact number but for <= 20 delegates created (9234bc583) 2016-06-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (956664c8f) 2016-06-22 Josh Arenson * Make the mock hint better reflect the initial greeter state (e8ef34205) * Make sessionList look nice (2ed43d36c) 2016-06-22 Daniel d'Andrada * Fix regression found during code review (ca86d0acc) * Write regression test (49950595a) 2016-06-22 Josh Arenson * Merge fixes (b094da6c9) 2016-06-22 Lukáš Tinkl * add a test (11ec828fb) * merge trunk (9544437b4) 2016-06-22 Albert Astals Cid * Rework tst_PreviewRatingDisplayCreationRanges (35fc66254) 2016-06-22 Nick Dedekind * remove whitespace (51179854b) 2016-06-22 Daniel d'Andrada * Fix splashscreen orientation when app rotates own contents (2111ffdc4) * Fix mock MirSurfaceItem::orientationAngle implementation (3de69ce86) 2016-06-22 Nick Dedekind * merged with sidestage-restoreOnRotation (0cfe3f7d4) 2016-06-22 Michael Terry * Fix not unlocking when logind asks us to (11cf30831) 2016-06-22 Nick Dedekind * removed debug code (fa1b4d58a) * fixed comment (eba06fc83) * updated MenuRegistrar interface (d6bef25b9) * merged trunk (a4433272b) 2016-06-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bb920448c) 2016-06-21 Lukáš Tinkl * properly show/hide the keyboard indicator when a HW (dis)appears and/or the keymap count changes (fbb4f8a13) 2016-06-21 Michael Terry * Add mocks and a quick test for our passthrough to lightdm and logind (1dbcfc3ae) 2016-06-21 Lukáš Tinkl * hide the indicator's man and chart actions (0386293ed) * drop unneeded imports (963fe17e8) * proper "radio button" check item (22ba8d607) * restart the location trust prompt service when exiting the wizard (7fb704230) 2016-06-21 Albert Astals Cid * 7 -> 8 (8e7cd74e1) * Merge (6b9710f73) 2016-06-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8d03570e3) 2016-06-20 Josh Arenson * Merge prereq (a7164d580) * Merge mterrys (310bdf27b) 2016-06-20 Michael Terry * Fix switch-to-greeter-loop when locking from indicator-session (0e72bc31d) 2016-06-20 Bileto Bot * Releasing 8.12+16.10.20160620.3-0ubuntu1 (b7cf5eaee) 2016-06-20 Michael Terry * Support unlocking via fingerprint, if one is registered. (2e23e5d3b) * Reset delay timer if we log in with fingerprint (7773b3ccc) 2016-06-20 Lukáš Tinkl * correctly switch/update keymaps (81f11b2d0) 2016-06-20 Michael Terry * Merge from trunk (89ee15b06) * Don't show duplicate passphrase prompts (35a099812) * Tweak test (1edee8964) * Use nicer log message (ca72794b9) * Disable fingerprints when dialog/fullscreen-notification/indicators are up (695a6556a) * Fix tests (3785e0496) * Add a touch of security to fingerprinting (e0cd1cc85) 2016-06-20 Josh Arenson * Merge prereq (a0bd065e1) * Merge trunk (e5bce7d31) 2016-06-20 Albert Astals Cid * CardTool: Include Ubuntu Components since we're using units.gu (a6ffc7aba) 2016-06-20 Lukáš Tinkl * merge trunk (16e767d0e) 2016-06-20 Albert Astals Cid * Fix the fallback value to be a size and not an integer (dbb0e7dde) 2016-06-20 Nick Dedekind * removed whitespace (2164953b2) * Open portrait apps in sidestage by default (aa1e355c7) 2016-06-20 Lukáš Tinkl * WIP: keyboard indicator (a4769a699) * merge trunk (73c30b57b) 2016-06-20 Nick Dedekind * merged with fix-dash-in-sidestage (4cbca1b84) * fixed test_lockPhoneAfterClosingAppInSpreadThenUnlockAndRotate (6cec3a3fa) * merged with trunk (3023135d2) * merged with trunk (e4e311e1a) 2016-06-20 Lukáš Tinkl * merge lp:~lukas-kde/unity8/eatDecorationMouseEvents (81938ca39) * merge trunk, resolve conflicts (ee3aa6e4b) * merge trunk, resolve conflict (c0df49582) * merge trunk, resolve conflicts (eba93a76d) * merge trunk (1b87f61a1) 2016-06-20 Albert Astals Cid * Add more headers for automoc (01a3a0d31) * Do not rely on deleteLater not crashing on null pointers (662e44821) * Merge (96d86ac25) * Merge unity8 (6b3c03e02) 2016-06-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e9a27e475) 2016-06-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (55742488a) 2016-06-19 Michał Sawicz * Merge trunk (1bbcd374a) 2016-06-18 CI Train Bot * Resync trunk. (ab3a77897) 2016-06-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9cec186aa) 2016-06-17 Josh Arenson * Fix import in test (6ba3d0020) 2016-06-17 Lukáš Tinkl * enable the keyboard indicator, switch it to desktop profile (1e5b2905c) * merge lp:~mzanetti/unity8/alerting-pips (d8e6e9d71) 2016-06-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4e9369f4c) 2016-06-17 Bileto Bot * Releasing 8.12+16.10.20160617-0ubuntu1 (55ebd1fc9) 2016-06-17 Albert Astals Cid * Make wait in cleanup() wait for snapTo animation to have finished (78626477e) 2016-06-17 Stephen M. Webb * added a new upstart $SESSION for unity8-desktop-session (LP: #1376715) (24f72a9a4) 2016-06-17 Albert Astals Cid * Fix warning about anchors.fill in ProportionalShape (8962f7eeb) 2016-06-17 Daniel d'Andrada * Work around AnimatedSprite infinite loop bug (f01eb1026) * Custom cursor name just have to start with "custom" (2e3cdf627) 2016-06-17 Michael Terry * Stop showing an extra lockscreen in desktop unity8 sessions. (f426a9409) * Make tutorial qmltests more robust. (63f6e13d3) 2016-06-17 Michael Zanetti * send a Alt-release event on alt+tab instead of delaying it completely and invoking it later (LP: #1565236) (a56d6597e) 2016-06-17 Daniel d'Andrada * Center cursor on screen when it's first shown (400ecad25) 2016-06-17 Lukáš Tinkl * Select correct Chinese input method for OSK in the wizard (LP: #1588633) (d8ebc0662) 2016-06-17 Andrea Cimitan * add a timer to pull to refresh to work on small windows (LP: #1589060) (86b4284aa) * Same tweaks we have for click scope now for libertine (9b01ee940) * Correctly refresh cardcreator cache on artshapestyle changes (LP: #1588335) (ff9fe9595) 2016-06-17 Daniel d'Andrada * No point in version-controlling files that are automatically generated (86f1dd545) 2016-06-17 Bileto Bot * Fix Z-ordering of prompt surfaces (45b9b9fdc) 2016-06-17 Daniel d'Andrada * Fix SpreadDelegate rotation animations (e46eb4a2f) 2016-06-17 Alexandros Frantzis * Improve the way notifications interact with power management (35025c725) 2016-06-17 Michael Terry * Redo visuals for greeter prompt box. Now it's white and a little bigger. (LP: #1435923) (2fe35fd34) 2016-06-17 Albert Astals Cid * Minor coverity fixes (476455c23) * Tests: Do not use dynamic_cast if we're not going to test it anyway (800220849) * Fix crash if a component that is not an Item is given to sectionDelegate (21a217de0) * Make notifier and notifierFd function local variables (8ff918169) * initialize udevMonitor (6caad0ae9) * Do not call |= on uninitialized sigterm.sa_flags (a9e341873) * Fix leaks in QInputDeviceManagerPrivate::addDevice (c9f0fb131) * Turn if if else into if elseif else (7f4f7b9e5) 2016-06-17 Lukáš Tinkl * Implement window controls overlay activatable with 3 fingers tap (LP: #1489020) (55a3c1bc3) 2016-06-17 Josh Arenson * Add timestamp to unity8 log (LP: #1498169) (89c06a493) * Add a timestamp to the dash log (LP: #1580074) (ca4334bf8) 2016-06-17 Albert Astals Cid * Desktop stage: Support rotatesWindowContents (LP: #1547481) (efe95729f) 2016-06-17 Bileto Bot * Do not create Label/Icon if we don't need it (a578eb3cb) 2016-06-17 Albert Astals Cid * Simplify the code since fixedArtSize code is mandatory for regular cards (c138cabed) * Split artShape code for cardTool card and regular card (c45302784) 2016-06-17 Daniel d'Andrada * Ensure mouse and window movement are pixel-aligned (d3db40598) * Clean up debug leftovers (81bd79acc) 2016-06-17 Albert Astals Cid * Workaround QTBUG-53460 (855d5483c) 2016-06-17 Michael Zanetti * Add support for the persistent alert state. (bfaa2aa86) * Add support for the launcher surface pips displaying the correct number of surfaces (f046f2625) 2016-06-17 Albert Astals Cid * Stabilize PreviewExpandableTest::test_all_widgets_height (c98881afd) 2016-06-17 Lukáš Tinkl * Implement keyboard shortcuts info panel (7931f17b3) 2016-06-17 Albert Astals Cid * Improve dash plugin mock (1d88d67de) 2016-06-17 Michael Terry * Drop bottom edge tutorials completely and small fixes for other edges. (753da9f62) 2016-06-17 Josh Arenson * Disable showDash when it is already shown. (LP: #1506708) (2240b6e0d) 2016-06-17 CI Train Bot * Resync trunk. (4dff070fb) 2016-06-16 Josh Arenson * Fix wide view test (a628251df) 2016-06-16 Michael Terry * Fix showErrorMessage test (889e0d9ec) * Fix manual test buttons to work again (b943231e6) 2016-06-16 Josh Arenson * Remove a test that is no longer valid (ec696c00e) * Refactor to use key instead of hacked display name (db1d7b73b) * Fix icons (2cbd23dc0) 2016-06-16 Nick Dedekind * added test for load stage after close (c222a6a2a) * dont save stage on destruction (56d99957b) 2016-06-16 Michael Terry * Only listen for ID when screen is on (afbee3ebc) 2016-06-16 Nick Dedekind * merged with trunk (823b73db9) 2016-06-15 Daniel d'Andrada * Cursor: Let AnimatedSprite run only on animated cursors and while the display is on (533b0fc74) 2016-06-15 Josh Arenson * Fix session badges (c92399300) * Fix button not showing up (f5848a208) 2016-06-15 Lukáš Tinkl * merge lp:~lukas-kde/unity8/preventScrollThruShellElements (71b8497d8) 2016-06-15 Marco Trevisan (Treviño) * IndicatorRepresentation: allow to click in the whole item to change check status (8e760e540) * IndicatorRepresentation: set the visual representation box bg to highlighted (86b9a9c6e) * IndicatorRepresentation: use PageHeader and ListItemLayout (35a15b9aa) * IndicatorsList: use ListItemLayout and PageHeader (b7351319e) * IndicatorsClient: move id on top (8df2bdcd9) 2016-06-15 Josh Arenson * Add iconUrl test and fix bug uncovered by test (3ae213905) 2016-06-15 Lukáš Tinkl * add a test for window (decoration) dragging using different mouse buttons (4e2fad4ce) 2016-06-15 Marco Trevisan (Treviño) * Indicators, mocks: allow to use fake indicators model in IndicatorsClient (dba8dcd62) * mocks, Indicators: add fake indicators menuitem to populate mocks with different menu types (e12341704) 2016-06-15 Lukáš Tinkl * consolidate the mouse deco test (770ce2bd5) 2016-06-15 Josh Arenson * Merge prereq (4ca0494d3) * Add session key lookup test (57caaccbb) 2016-06-15 Lukáš Tinkl * plug even more holes (e49b10e30) * also prevent non-left mouse clicks (178e5d9bd) * cleanup unneded stuff with the MouseArea (fa4ed5d9b) 2016-06-15 Nick Dedekind * patched oriented tests (2ee1df384) 2016-06-15 Lukáš Tinkl * prevent the wheel also from going thru the desktop spread (945a34fe4) * clear signal spies in cleanup() (a547b8cae) * update (c) (27c2871dc) 2016-06-14 Josh Arenson * Remove toLower opperation where not needed (f9c534e66) * Merge prereq (6ec76ab46) * Remove unused env variable in wrapper (3e1d2a3a5) * Patch tests so that they pass. Thanks to mterry for this patch. (2ec2c6aac) 2016-06-14 Michael Terry * initial merge (67689465c) 2016-06-14 Nick Dedekind * added dash drag test (6737ae15f) * added dash check (0b18dd154) 2016-06-14 Albert Astals Cid * Fixes suggested by Daniel (ce2c1b4e7) * Don't let the mouse go outside the parentItem (0497ef306) 2016-06-14 Marco Trevisan (Treviño) * IndicatorsTree: add margins to TextArea (cf4178b59) * IndicatorsTree: add margins to TextArea (4bcd016ef) * IndicatorsTree (client): use a TextArea for showing content (8d59108d3) * IndicatorsTree (client): use a TextArea for showing content (3cd0c13db) * IndicatorsClient: us full equality checks and add space after error prefix (42df76d5c) * IndicatorsClient: us full equality checks and add space after error prefix (88910dbaf) 2016-06-14 Albert Astals Cid * Make wait in cleanup() wait for snapTo animation to have finished (ddabc9c51) 2016-06-13 Josh Arenson * Change session role to id instead of display name (a58047ea2) * Fix tests (ad9831a28) * Search for icons the legacy way (40f1b5521) * Remove dependency on mock lightdm includes (a4f1af88f) * Merge prereq (e22658ff8) * Remove qmltype files (838d758a2) * backout last commit as its in the wrong branch (06f925788) * Remove qmltype files (bc638d4f9) * Merge prereq (005bdbdc5) * merge prereq (7ed41fe0c) * Merge lp:~mterry/unity8/slim_greeter_select_user (1716eeb47) 2016-06-13 Daniel d'Andrada * Fix missing screenshot when orientation changes while shell rotation ongoing (a72da1d54) 2016-06-10 Lukáš Tinkl * add tests (88941f7c2) 2016-06-10 Nick Dedekind * rename var (70209fb2d) 2016-06-10 Albert Astals Cid * Fix warning about anchors.fill in ProportionalShape (047ec7b18) 2016-06-10 Michael Terry * Merge in tutorial-fixups (8d5437fa9) 2016-06-10 Lukáš Tinkl * merge lp:~mzanetti/unity8/alerting-pips (e586ed5aa) * prevent wheel thru shell elements (17d92a741) * merge lp:~mzanetti/unity8/alerting-pips (8210ef4de) 2016-06-10 Michael Terry * Merge from trunk (aa4dd14bc) * Merge greeter-box (d4312a5f7) 2016-06-09 Michael Terry * Bump accountsservice schema dep again (825e2d3b7) * Fix test_promptless (d8de18411) * Add more tests for selectUser (a484a2664) * Do previous fix a cleaner way (ba7b25a5f) * Fix delay on lockscreen before you can log in (8f39a5611) 2016-06-09 Stephen M. Webb * fixed case of session name (a9a62765a) 2016-06-09 Michael Terry * And unlock when lightdm is acting as our lockscreen (bdb092d2c) 2016-06-09 Lukáš Tinkl * don't accept drags with button != left; fix the tests (a323c5770) 2016-06-09 Michael Terry * Robustify tutorial qmltests (04e7bbb95) 2016-06-09 Stephen M. Webb * changed $SESSION string for Unity 8 desktop (b3bfd3f82) 2016-06-09 Michael Terry * Add test; fix lock state resetting when in full-shell (6c2bac9a9) 2016-06-09 Lukáš Tinkl * provide the whole widget in a flickable (to help out with Nexus 7 small screen) (d18e8bcf9) 2016-06-09 Michael Terry * Add missing braces (e88599586) 2016-06-09 Andrea Cimitan * tweaks as review (25d309aeb) 2016-06-09 Michael Terry * Stop showing a lockscreen on startup on the desktop (7dc67cc53) 2016-06-09 Marco Trevisan (Treviño) * ClientIndicator: be more informative about loading failures for dynamically created objects (c3abcf584) * ClientIndicator: be more informative about loading failures for dynamically created objects (52308e6c1) * Unity8.conf: ensure MIR_SOCKET is set for future customers (such as the dash) (8b3444a41) 2016-06-09 Lukáš Tinkl * display a "password too short" notice as well (4de3c5a66) * merge lp:~mzanetti/unity8/launcher-surfaceCount-pips (8beb54893) 2016-06-09 Michael Terry * Use cmake install locations rather than hardcoding them (2559bce09) 2016-06-09 Daniel d'Andrada * Simplify solution (72dc7a967) 2016-06-08 Michael Terry * Add pkla and nerf indicators as much as possible until we have proper app launching (db05f4681) * Drop type=unity and ShimStage.qml (57d5998c4) 2016-06-08 Nick Dedekind * Added ApplicationMenu plugin (474d3d776) 2016-06-08 Michael Terry * early exit (54706e533) * Add test, clean up TestView (e4b3050ec) 2016-06-08 Daniel d'Andrada * Work around AnimatedSprite infinite loop bug (0ec559bb5) 2016-06-08 Albert Astals Cid * Adapt test to mock changes (877dfdf3f) 2016-06-08 Michael Terry * Support selectUserHint (e2c4923a4) 2016-06-08 Michael Zanetti * send a Alt-release event on alt+tab instead of delaying it completely and invoking it later (1cbb4306c) 2016-06-08 Lukáš Tinkl * implement clear/close the search panel on pressing Esc (081b0f235) 2016-06-08 Albert Astals Cid * Fix whitespace (7f132cd5f) 2016-06-08 Josh Arenson * Use object name instead of one-off property (225f0d275) 2016-06-07 Andrea Cimitan * tweak the values (5dc14f337) * remove timer (0e8ba218c) * new approach (498c00cac) 2016-06-07 Josh Arenson * Merge prereq (5166462d5) * Merge prereq (ef88cac7a) * Fix seat type (82a0bc008) * Merge prereq (223590303) * Merge prereq (c0bfac654) * Merge trunk (617105f40) 2016-06-07 Michael Terry * use result, not result.uid (41fcfe7ec) 2016-06-07 Andrea Cimitan * Fix pull to refresh on short windows (24e6f4295) 2016-06-07 Albert Astals Cid * Create open_manage_dash mouse (5a5344ab3) 2016-06-07 Andrea Cimitan * libertine can be unfavorited (7f65e536f) 2016-06-07 Michael Terry * Guard against greedy regex (592550cae) 2016-06-06 Andrea Cimitan * test libertine (6497f8e61) * merged lp:~cimi/unity8/cardCreatorCache_update-on-artShapeStyle (c66370c6d) * fixes for libertine scope (a66224625) 2016-06-06 Josh Arenson * Remove an ugly whitespace (23af6b88d) * Add a test (912ad2c94) 2016-06-06 Michael Terry * Fix regex to not fail when builddir includes regex characters (e9ac90398) 2016-06-06 Daniel d'Andrada * Custom cursor name just have to start with "cursor" (5668f7107) 2016-06-06 Josh Arenson * Make PreviewRatingSingleDisplay visible again after editing a review. (eda219615) 2016-06-06 Albert Astals Cid * No need for mutable anymore (4abc635e9) 2016-06-06 Michael Terry * Simplify and correctify focus for GreeterPrompt (6ecd8b8a3) 2016-06-06 Albert Astals Cid * Fix initialization order warning (f41f57858) * Fix build.sh too (6516fe867) 2016-06-06 Michael Zanetti * fix bad merge (1963ac6fd) * merge trunk (1fd85518e) 2016-06-06 Albert Astals Cid * Adapt test to new mock behaviour (ab3422b63) 2016-06-06 Lukáš Tinkl * select correct Chinese input method for OSK in the wizard (ef2cf6cd8) 2016-06-06 Albert Astals Cid * Mock: Only return categories for scopes that have been active (da166144c) 2016-06-06 Andrea Cimitan * fix media toolbar test (e521b579b) 2016-06-06 Michael Zanetti * merge prereq (35ade0a36) * fix broken mock (fea0773eb) 2016-06-05 Michael Terry * Use set -x in scripts (38e2e8fe1) * mkdir and touch the xml files (f5df20d16) 2016-06-03 Josh Arenson * Fix libpng warnings (2e79fe0e4) 2016-06-03 Michael Zanetti * merge prereq (644acba35) * merge lp:~dandrader/unity8/promptsZOrder as prereq (eeab2a95a) 2016-06-03 Lukáš Tinkl * do not let mouse and wheel events pass thru the titlebar (d311bc01e) 2016-06-03 Michael Zanetti * that wasn't necessary (6ddaad569) 2016-06-03 Michael Terry * Use parallel more extensively (4f3c33a02) 2016-06-03 Michael Zanetti * some more work. short right edge swipe seems to work mostly (5a88633db) * bump package requirement once more (a504648b3) * bump required package version of unity-api (72e9118f1) * merge prereq, bump unity-api version requirement (846e1e1c0) * merge trunk (04b3ad3f6) * bump unity-api version requirement (1eb92fe74) 2016-06-03 Michał Sawicz * Empty (3939adc31) 2016-06-02 Michael Terry * Fix parallel usage to be actually useful (95f29ac4b) * Fix gesture tests (1f4e8fd4f) * Use parallel to run tests (fbc75bcbc) * Save xml test output in ADT_ARTIFACTS (ce11ca2c4) 2016-06-02 Andrea Cimitan * different approach (4fcf8c645) 2016-06-02 Michael Terry * Fix broken merge (95b42f5fa) 2016-06-02 Andrea Cimitan * add test! (2c34dfd98) 2016-06-02 Michael Zanetti * merge trunk (17d4a5193) 2016-06-02 Andrea Cimitan * Update cardCreator cache con artShapeStyle changes (35985672b) 2016-06-02 Michael Zanetti * only rotate the surface, not the whole item (7aff6f1e6) 2016-06-02 Michael Terry * And also don't start tutorial timers until the wizard is done (1fa612bb5) 2016-06-02 Lukáš Tinkl * clarify comments, try to stabilize the test (544280f7c) 2016-06-02 Daniel d'Andrada * Write regression test and fix/update existing one (0931744aa) 2016-06-02 Michael Zanetti * update QtMir mock to behave more like the real QtMir (4547ec114) 2016-06-02 Daniel d'Andrada * Fix emission of firstChanged() on prepend (b36ea7879) * Fix Z-ordering of prompt surfaces (fb2f4b715) * No point in version-controlling files that are automatically generated (5784f98c9) 2016-06-02 Albert Astals Cid * Make system includes as such (aeb8490de) * no need this (c0f650b72) * Merge (8adf75d31) * Merge (d5857fbe4) * Merge (f1b4b15b2) * Merge (ddd4d0e99) * Merge (b26419752) * Merge (542c426db) * Merge (dc58ad8c5) * Merge (b4be48b9e) * Merge (518474499) 2016-06-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7fdbae911) 2016-06-02 Lukáš Tinkl * focus the topmost item (a514e154e) 2016-06-01 Bileto Bot * Releasing 8.12+16.10.20160601.1-0ubuntu1 (3b39fd614) 2016-06-01 Pawel Stolowski * Added apparmor profile for unity8-dash. (8a943be53) 2016-06-01 Lukáš Tinkl * merge trunk (7bad66afd) * merge trunk (cbc2daeab) * merge trunk (d6c6dbb34) * merge trunk (a1abd6c29) 2016-06-01 Michael Terry * Untested merge from trunk (936045a20) 2016-06-01 Lukáš Tinkl * fix focusing next item in the chain (ee98fbfaa) 2016-06-01 Michael Terry * Merge from trunk (7f67138a3) * Merge from trunk (6d755b2cb) 2016-06-01 Lukáš Tinkl * merge trunk (e6278740d) 2016-06-01 Michał Sawicz * Merge trunk (716a1ca51) 2016-06-01 Michael Zanetti * try to change the resizing logic to allow clipping (067f4e1b1) 2016-06-01 Andrea Cimitan * avoid playback to pause on orientation changes (b19ec4826) 2016-06-01 Michael Zanetti * basic state machine seems to work now. (26abde6d0) 2016-05-31 Lukáš Tinkl * add a test (42d92b780) 2016-05-31 Michael Terry * s/valid/available (a3d02ab99) 2016-05-31 Lukáš Tinkl * refactor the Alt+F4 functionality into AbstractStage (1acaf8381) 2016-05-31 Daniel d'Andrada * Fix SpreadDelegate rotation animations (a50375444) 2016-05-31 Michael Terry * Don't hardcode text color (8b7eff271) * Make placeholder text the right color (01653b52c) * address review comments (c0f0a570d) 2016-05-31 Andrea Cimitan * use new icon (1b01462cb) * merged trunk (515a3e175) 2016-05-31 Pawel Stolowski * No need to install icon anymore (565d69e38) 2016-05-31 Michael Zanetti * inital try on unifying the stages (ffcc69a8c) 2016-05-31 Pawel Stolowski * Added apparmor profile. Install icon so it's available for privacy settings (a289ae10d) 2016-05-30 Lukáš Tinkl * reuse PanelState component for buttonsAlwaysVisible (148ae8f9f) * remove unused import (d6e534e2a) * apply a better workaround for WindowResizeArea margins (e07718286) 2016-05-30 Daniel d'Andrada * Be more specific (e78d48244) 2016-05-30 Lukáš Tinkl * fix typo in tablet stage (aa9dcd095) 2016-05-30 Albert Astals Cid * cull the header item when not on view to save some painting (a5ac758d9) 2016-05-30 Lukáš Tinkl * refactor the isDash check here as well (0ac1f610d) * provide the close shortcut across stages (024ddd24b) 2016-05-27 Michael Terry * Don't set global theme (55f246d37) * Switch to light theme, adjust sizing (5fa7bc45e) 2016-05-27 Lukáš Tinkl * add a testcase (91c47f5f1) * hide the maximize button when the max size is smaller than the desktop (45aa60f23) 2016-05-27 CI Train Bot * Releasing 8.12+16.10.20160527-0ubuntu1 (4e8f79fa2) 2016-05-27 Daniel d'Andrada * Support animated cursors Approved by: Lukáš Tinkl (ccf52154f) 2016-05-27 Lukáš Tinkl * Lock the session when putting the laptop into sleep Fixes: #1581063 Approved by: Unity8 CI Bot, Andrea Cimitan (e5705186c) 2016-05-27 Albert Astals Cid * Make tests a bit more stable (b3acd66a5) * Listen to contentItem::widthChanged instead of Flickable::contentWidthChanged (7da665e2a) 2016-05-27 Daniel d'Andrada * plugins/Cursor: properly register to the screen's QPlatformCursor when screen changes Fixes: #1579742 Approved by: Lukáš Tinkl (4e3068cf8) 2016-05-27 Michael Zanetti * Remove the background dimming when the launcher is revealed by a drag Fixes: #1575137 Approved by: Vesa Rautiainen, Lukáš Tinkl (f87ef564b) 2016-05-27 Albert Astals Cid * Make unity8 and unity8-dash handle termination signals (1da77ea00) 2016-05-27 Lukáš Tinkl * Fullscreen notification bug fixes Fixes: #1422711, #1581498, #1583944 Approved by: Michael Zanetti (eabd11b6e) * First snap decision should always be expanded, unless user decides otherwise Fixes: #1575045, #1580090 Approved by: Michael Terry (81124b8e7) * Implement maximizing windows horizontally/vertically (760bfdfe3) 2016-05-27 Albert Astals Cid * Add override (30179a3b6) * Set the theme earlier (e32fe6a88) * Make some AP code faster (12c5e5607) 2016-05-27 Michael Terry * Change some dash button colors from orange to green. (742698d53) * Use PageHeader instead Ambiance's PageHeadStyle Approved by: Andrea Cimitan (b38e0ce51) 2016-05-27 Michael Zanetti * reenable or drop disabled tests Approved by: Albert Astals Cid (35caf886b) 2016-05-27 Michael Terry * Use new setTimeZone method to set user-friendly timezone name in the wizard. Fixes: #1566295 Approved by: Lukáš Tinkl (b6c865734) 2016-05-27 Lukáš Tinkl * With a maximized window, "dragging" the panel down should restore it (7f8d853cd) 2016-05-27 Josh Arenson * Close the PageHeaderExtraPanel when a filter option is selected Fixes: #1569498 Approved by: Albert Astals Cid (e0897cc61) * Wrap primaryFilter in a flickable to make it behave nicely. Fixes: #1569492 Approved by: Albert Astals Cid (974747c3d) 2016-05-27 Daniel d'Andrada * WindowInputMonitor - also map Qt::Key_HomePage to our home key (a1583958b) 2016-05-27 Andrea Cimitan * Hide the preview review input field when a rating is required Fixes: #1541971 Approved by: Unity8 CI Bot, Michael Terry, Albert Astals Cid (6e3c4b227) 2016-05-27 Albert Astals Cid * Activate on click for SimpleMessages Fixes: #1421696 Approved by: Nick Dedekind (c5504d610) * Don't use context properties but properties of the delegates (2d4bcd368) * Remove workaround not needed anymore Fixes: #1475643 Approved by: Andrea Cimitan (a2395bb74) * Change the art back to the cardData value if it changes from broken to valid image Fixes: #1533577 Approved by: Andrea Cimitan (6e864bcec) * Concierge mode generated code optimization (4a9e68ae8) * Resolve cardArtStyle on compile time (b68371c25) 2016-05-27 Daniel d'Andrada * Fix DragHandle so it works in all directions (bfcf8baf9) * Remove DirectionalDragArea and libs/UbuntuGestures and port to SDK equivalents Approved by: Daniel d'Andrada (eacc6becb) 2016-05-27 Michael Terry * Support Biometryd.valid (ec51140ee) 2016-05-27 Lukáš Tinkl * merge lp:~lukas-kde/unity8/horizVertWindowMaximize (5443fdbdb) 2016-05-26 Michael Terry * Add missing files (beb293ce9) * Expanded mocks and tests (5c2235510) 2016-05-26 Albert Astals Cid * == -> === (18b5d2d57) * Set the timeout to 0 in this findChild too (80b1544fc) * Merge (0a70dd0c0) * Correct order! (1839efce0) * Minor coverity fixes (47fa129d4) * Do not use dynamic_cast if we're not going to test it anyway (93ab80b7c) * Do not crash if a component that is not an Item is given to sectionDelegate (8bfe40da3) 2016-05-26 Lukáš Tinkl * fix failing test (239fdccd6) * drop unused mainAppDelegate var (63bf91fd9) * improve resizing ;) (1ff905068) 2016-05-26 Albert Astals Cid * Stop watching the old header item height once it's not our header anymore (82069b60f) * Make notifier and notifierFd function local variables (a411cfc65) * initialize udevMonitor (1ea91171b) 2016-05-26 Lukáš Tinkl * move to non-slots (53b904ccd) 2016-05-26 Albert Astals Cid * Do not call |= on uninitialized sigterm.sa_flags (58154151d) * mooo less (872506a17) * Fix leaks in QInputDeviceManagerPrivate::addDevice (2a817fc19) * Turn if if else into if elseif else (64f51e2f4) 2016-05-25 Josh Arenson * merge prereq (f3ee566c1) * merge prereq (913202dc1) * merge trunk (320d32f36) * Change unity8-greeter configuration to use mir (c58354f85) 2016-05-25 Lukáš Tinkl * set the keymap for the tester field (53d25678b) * sort by id first (a1a776204) 2016-05-25 Michael Terry * Fix new test (eb064468f) * Show error msg and success bullets on lockscreen (b9e5bc712) * fix typo (3e5243504) 2016-05-25 Alexandros Frantzis * Improve the way notifications interact with power management (da849f417) 2016-05-25 Lukáš Tinkl * merge trunk (dfb7ebcd0) * unbreak restoring the window (6d2606be8) * merge trunk (95d4e79ee) * do not multiply the opacity (a9fab9674) * fix the inverse mouse area (36ed74021) * disable the overlay for fullscreen apps (9b0060b45) 2016-05-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (64d3f3123) 2016-05-24 CI Train Bot * Resync trunk. (65f28613d) 2016-05-24 Michael Terry * Check AccountsService and current uid to confirm user should be ID'd by fingerprint (ee69752fa) * Merge from trunk (695242ff5) * Make id work, maybe? (d0e5e7a0f) 2016-05-24 Josh Arenson * Add timestamp to log (2078ec2f2) 2016-05-24 Lukáš Tinkl * remove unused var (9e7d21074) 2016-05-24 Josh Arenson * add date (fd9e852c6) 2016-05-24 Lukáš Tinkl * revert the border thickness change (58b928093) 2016-05-24 Michał Sawicz * Add web plugin to build.sh (568dd1e65) * Add arm64 support, drop unnecessary B-D on web plugin (63f99e4d1) 2016-05-24 Albert Astals Cid * Revert change infected from other branch (ca56b581c) 2016-05-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4f417fff2) 2016-05-23 Josh Arenson * Try specifying a format (2c6323111) * Try system time instead of lifetime (8fb68e38d) * Add timestamp (ebaf2a836) * Test (c01040869) * Fix mess (986375d8e) 2016-05-23 Albert Astals Cid * fix startup of non rotatesWindowContents apps (b3f04a91a) * "compile" (f7134c6eb) * Merge (a1691f1a6) 2016-05-23 Michael Zanetti * fix crashiness on exit (a53d88098) * untranslate "Scopes" (823c595d0) 2016-05-23 Albert Astals Cid * Merge (219209943) * Adapt test to code changes (6264265f6) * Merge lp:~aacid/unity8/optimize_card_attribute_creation (943a25995) * Merge lp:~aacid/unity8/recoverArtIfChanges (43c9818f9) 2016-05-20 Albert Astals Cid * Unbox the artshapeLoader (b17ae9e9a) * Since fixedArtSize code is mandatory for regular cards we can simplify the code quite a bit (c4c4e63ca) 2016-05-20 Michael Terry * Fix which enabled property the colors pay attention to (8ff89cff3) 2016-05-20 Albert Astals Cid * Split artShape code for cardTool card and regular card (bc1587966) 2016-05-20 Andrea Cimitan * this is no longer required since we disable the button (af1d2a221) * Keep the button disabled when the requirements are not met (213de400c) 2016-05-20 Albert Astals Cid * Merge (d138e3f0b) 2016-05-20 Michael Terry * Fix shell test (cdf3261c7) * Make a test more robust (1afee84ce) * Fix shell test; don't disable tutorial if we receive a call during the wizard (3ffa45a44) 2016-05-20 Lukáš Tinkl * fix the window buttons in panel + touch controls overlay (55cb6528b) 2016-05-20 Andrea Cimitan * Add sharing to inline video (a41bd80dd) 2016-05-20 Lukáš Tinkl * take the horizontal/vertical maximization into account as well when showing the resize handles (e8ed54eaa) 2016-05-20 Andrea Cimitan * use action (26850f2d6) * moved sharing widget inside components (216010810) 2016-05-20 Lukáš Tinkl * reorganize to be able to show multiple touch controls at once (e6be1241e) 2016-05-20 Andrea Cimitan * merge el trunko (26b576143) 2016-05-20 Albert Astals Cid * Do not create Label/Icon if we don't need it (a651c5688) 2016-05-20 Michael Zanetti * bump the import version (700f23655) * set minimum window sizes on dash (34b3f6035) 2016-05-20 CI Train Bot * Releasing 8.12+16.10.20160520.1-0ubuntu1 (09ed3054b) 2016-05-20 Lukáš Tinkl * Stabilize flaky wizard tests Fixes: #1582994 Approved by: Michael Terry (c7c3825a1) 2016-05-20 Michael Zanetti * fix the SIM PIN darkening after it got removed accidentally Fixes: #1577147 Approved by: Lukáš Tinkl (a3bf85fb7) 2016-05-20 Lukáš Tinkl * Don't dim screen when the indicators are open Fixes: #1564342 Approved by: Michael Zanetti (f003a85f1) * Fix upcoming alarms ETA labels Fixes: #1576741 Approved by: Albert Astals Cid (5157af35b) 2016-05-20 Michał Sawicz * Fixed saving current stage and loss of surface focus when switching stages Approved by: Michał Sawicz (9f9405bc8) 2016-05-20 Nick Dedekind * Fixed incorrect osk surface item resizing the surface. Approved by: Daniel d'Andrada (c7145658f) 2016-05-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0365d7542) 2016-05-19 Michael Terry * Fix tests (5671037a6) * fix ftbfs from bad merge (547c7fff1) 2016-05-19 Daniel d'Andrada * Ensure mouse and window movement are pixel-aligned (60472f0e7) * Support animated cursors (81b01b164) 2016-05-19 Michael Terry * Fix tutorial tests (f39312b86) * Bump copyright years (be9e27801) * Merge from trunk (ad4f51a76) 2016-05-19 Michael Zanetti * merge prereq (304ee871e) * disconnect surfaceCount signal again (8caafb4d3) * merge trunk (9b837ca3a) 2016-05-19 Michael Terry * And specify dividerColor (002e2f725) * Merge from trunk (4868659d9) 2016-05-19 Lukáš Tinkl * split out a long line... (3f949e90f) * fix the fade out animation (e945e86a1) * retrigger CI run (48933ede9) 2016-05-19 Andrea Cimitan * fixed a couple more visual issues (172c2f016) * just rotate the media (314bd37ae) 2016-05-19 Lukáš Tinkl * check whether the overlay is enabled due to size constraints (5d7e9b564) * take a different approach (13225bb22) 2016-05-19 Albert Astals Cid * Merge (eb17bc9c2) 2016-05-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ee04e2adc) 2016-05-18 Michał Sawicz * Merge trunk (d7d92a313) 2016-05-18 Daniel d'Andrada * Fix DragHandle so it works in all directions (be06a7a54) * merge lp:~aacid/unity8/nodda (8757737ea) 2016-05-18 Michael Terry * Merge from trunk (0e2758d98) 2016-05-18 Daniel d'Andrada * Clean up debug leftovers (d7ac70c29) 2016-05-18 Lukáš Tinkl * fixup tests (c7a1095fe) * implement saving the selected layout and add a test (a3eda887e) * enable/disable the tester field when we switch language (cd077d502) 2016-05-18 Michael Terry * Adjust mock user's long name to be even longer (c2e89640c) * Use theme colors; use UbuntuShape (54075252b) 2016-05-18 Lukáš Tinkl * rebase on top of lp:~lukas-kde/unity8/horizVertWindowMaximize (cf5a47d3a) * better fix for handling the fullscreen state (ee4ed431d) * ++insane timeout (cf1a89885) 2016-05-18 Michael Terry * Merge from trunk (7268a5cc2) * Remove some unneeded changes for this branch, will land them separately; minor cleanup (95e2269cd) 2016-05-18 Albert Astals Cid * Workaround QTBUG-53460 (a21fc8c48) * Merge lp:~mterry/unity8/timezone-name (e02558a6f) 2016-05-18 Michael Zanetti * test if the alert is properly cleared on focus (aa78380b8) 2016-05-18 Lukáš Tinkl * skip the page when there's no HW keyboard attached (9e024845b) 2016-05-18 Andrea Cimitan * fix some colors (7c23ec5b9) 2016-05-18 CI Train Bot * Releasing 8.12+16.04.20160518.1-0ubuntu1 (5824fd2a3) 2016-05-18 Daniel d'Andrada * Move prompt surfaces from MirSurface to Application (6f8d1a190) 2016-05-18 Lukáš Tinkl * fade out the layout listview a bit when the language selector gets expanded (f3d9288e6) * filter by language and country (when possible) (479bdd441) 2016-05-18 Michał Sawicz * Bump application API requirement (53887998a) 2016-05-18 Lukáš Tinkl * more effective filtering (5fefdf3a0) 2016-05-18 Albert Astals Cid * sort me (4036e0b24) 2016-05-17 Michael Terry * Fix splash header color (7a344cb20) 2016-05-18 Lukáš Tinkl * filtering based on language (afff8a88a) 2016-05-17 Michael Terry * Fix some uses of UbuntuColors (12dff5341) * Use PageHeader instead Ambiance's PageHeadStyle (c7bb0ec75) 2016-05-17 Daniel d'Andrada * Disable debug messages (25afe21a3) * fix issues (33a03fbed) * Simplify code (0c7e719ff) * Update unity-api versions (c37448ba4) * Move prompt surfaces from MirSurface to Application (3a30844bd) 2016-05-17 Lukáš Tinkl * add a sample page (c402237ed) * WIP keyboard layouts model (eb5ccd8f8) 2016-05-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c59babe34) 2016-05-16 Lukáš Tinkl * increase even more... (8f4fa1f37) * perform the "reject" action unconditionally (4ea89d842) * fix a race condition (2ed301a44) * raise the urgency for fullscreen notifications (8201967d4) 2016-05-13 Lukáš Tinkl * tentative fix for fullscreen snaps (571fb62b9) * merge lp:~lukas-kde/unity8/notificationExpansionLogicFixes (2538045fb) * last resort, try to increase the timeout some more :/ (713c24d6c) * stabilize++ (4876cfe49) 2016-05-13 Michael Zanetti * fix usage of color vs palette (69bef112b) * fix tests (964f5394b) * fixes (f4119516c) * fixes (b03158953) * cleanup (a2669ebee) 2016-05-13 Lukáš Tinkl * try to stabilize the test a bit (b03d0bc70) 2016-05-13 Michael Zanetti * Support for persistent alert states. (e053239cb) 2016-05-13 Albert Astals Cid * vanish you extra empty line! (64fb5e3a8) * Add the Wsuggest-override flag to gcc (ff75ece63) * Merge (7e3349625) 2016-05-12 Lukáš Tinkl * also lock when logind is going to sleep (2427514ee) 2016-05-12 Albert Astals Cid * use 0 timeout for those global findChilds that testCard has (a5b3e0dcb) * Actually pass down the timeout D: (018cd6d23) 2016-05-12 Lukáš Tinkl * signal lock before suspend/hibernate/hybridsleep (2ba4e6c46) 2016-05-12 Albert Astals Cid * reshuffle while (70c29c3cb) * Make findChild stubborn by default (2123eb85a) 2016-05-11 Albert Astals Cid * Review nitpicks (117f45f16) 2016-05-11 Lukáš Tinkl * fixup fading out animation (5778a8e86) 2016-05-11 Andrea Cimitan * remove comment (df5c24f2a) * as review (0d52b4dd0) 2016-05-11 Lukáš Tinkl * revert a noop check (20065f896) 2016-05-11 Albert Astals Cid * Add a test for waitForBehaviors (e445c770d) * lazyimage is an item, so use children (1d36d03d7) * Stabilize PreviewExpandableTest::test_all_widgets_height (dc1888cc2) 2016-05-11 Lukáš Tinkl * also take panel height into account when positioning (b3d028da0) 2016-05-11 Albert Astals Cid * account for the otherdelegate without margins in the test (aeee88bc5) 2016-05-11 Lukáš Tinkl * add a test for expansion logic (d1ea3f5d2) * add outter margin and a comment explaining the dummy container (9aff648fc) 2016-05-11 Albert Astals Cid * more deprecated names replacements (803365b84) * Add test (3b4af6291) 2016-05-11 Michael Zanetti * drop Launcher.qmltypes and a old outdated test (e9cab37cc) 2016-05-11 Albert Astals Cid * Listen to contentItem::widthChanged instead of Flickable::contentWidthChanged (fa88130c1) * qtdeclarative5-ubuntu-web-plugin -> qml-module-ubuntu-web (61835e514) 2016-05-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (acf340b96) 2016-05-10 Daniel d'Andrada * plugins/Cursor: properly register to the screen's QPlatformCursor when screen changes (92c9102f8) 2016-05-10 Lukáš Tinkl * fix expansion state for password prompts (9cdac605e) 2016-05-10 Michael Zanetti * cleanup (69799de1e) * bump application api requirement (030a6ffec) * bump minimum required unity-api version (c269263d1) * add support for launcher surface pips reflecting the proper number of surfaces (a1b1033f9) 2016-05-10 Lukáš Tinkl * remove multiple trailing newlines (3e44d9c50) 2016-05-10 Andrea Cimitan * better fix (ba1427bdc) 2016-05-10 Lukáš Tinkl * add the correct margins (265cbc214) 2016-05-10 Andrea Cimitan * fix remaining failing qml test (202a11add) 2016-05-10 Lukáš Tinkl * make the overlay visible only when it fits available space (373d21999) * add opacity animator fadein/out (394aa6a1e) * merge trunk (2367688c2) 2016-05-10 Albert Astals Cid * Improve fake dash plugin mock (525379d9a) 2016-05-09 Josh Arenson * Set the filterTag in the search box when one is selected (0f112b8d9) 2016-05-09 Daniel d'Andrada * No point in version-controlling files that are automatically generated (49072e2c8) 2016-05-09 Albert Astals Cid * review fixes (4e68c9f48) * Cleanup commented code (e355bba97) * Make test a bit more resilient (844709ca8) 2016-05-09 Michael Terry * Depend on qml module, now that the package exists (812dd1278) 2016-05-09 Nick Dedekind * Save stage on drop-onto-stage (d7e7ba69a) 2016-05-09 Albert Astals Cid * Merge (7b64b7ca5) * Critical rename bugfix (d5330f1c2) * Some more fixes (02b090582) 2016-05-09 Lukáš Tinkl * opacity should be 0.95 (3ece1c1d1) * 3 finger drag working \o/ (adca54aa4) * cleanup (a539be65a) 2016-05-09 Albert Astals Cid * Merge (f246315b9) * Merge (379fb5102) 2016-05-09 Nick Dedekind * Added FIXME for consumesInput api (d3030d37d) 2016-05-09 Albert Astals Cid * Merge (0f8dd90f1) 2016-05-09 Nick Dedekind * Added handling of active focus on consumesInput change (f909fbfec) 2016-05-09 Albert Astals Cid * Merge (65b4e9e78) 2016-05-09 Nick Dedekind * reverted interactive use for consumes Input (f0981dfd6) 2016-05-09 Albert Astals Cid * Merge (1307e235b) 2016-05-08 Lukáš Tinkl * merge trunk (3d3fb96a0) 2016-05-07 Lukáš Tinkl * only modify the window control buttons and title for the focused window (c24c26a3f) * reduce diff (e6689754a) * experimental 3-finger drag support (fc4d76fcd) 2016-05-06 Josh Arenson * Fix tab (79206b2ed) 2016-05-06 Nick Dedekind * added removed line (388806a43) * added test (3bf02b21a) * use interactive property (72d3358f9) 2016-05-06 Michael Terry * Make password box a little more to-spec and make user labels fade out rather than elipse if they are too long (6bb970453) 2016-05-06 Nick Dedekind * reworded comment (725317ce5) 2016-05-06 Lukáš Tinkl * ... and below the check for the page name (c1a539ba0) * move the animation test into waitForPage() (7006a54fc) * stabilize flaky wizard tests (0ee5c8d0a) * merge trunk, resolve conflicts (a3fc9b2ad) 2016-05-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b0fad5563) 2016-05-06 Lukáš Tinkl * merge trunk (7a1bfb237) 2016-05-05 Josh Arenson * merge prereq (aae6256ec) * Merge trunk (95053d4b7) * Rebase (8460bfc80) * Merge trunk (c576a46b1) 2016-05-05 Nick Dedekind * use enabled (0a79eb0fd) 2016-05-05 CI Train Bot * Resync trunk. (3918ecf50) 2016-05-05 Lukáš Tinkl * fixup initially visible resize grips in staged mode (5e72a007f) 2016-05-05 Nick Dedekind * fixed stage not saving (102194a01) * Fixed unfocusing active surface when creating new non-consuming surface item. (a9dba38ef) 2016-05-05 Lukáš Tinkl * fix the opacity anim (c048683c8) * some cleanup, fix focus switching (34722d821) 2016-05-05 Andrea Cimitan * fixed test (311734863) 2016-05-05 Lukáš Tinkl * merge trunk, resolve conflicts (d8a2417ca) 2016-05-05 Nick Dedekind * Fixed mutiple screen input method resize (63179f0e2) 2016-05-05 Albert Astals Cid * Merge (b74518e95) 2016-05-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3baed3cd7) 2016-05-04 Michael Terry * Merge from trunk (55bcc958a) * revert notification pausing -- it needs more thinking (517e29a57) * Merge from trunk (b831dcb9d) 2016-05-04 Josh Arenson * merge prereq (918d8ffd2) 2016-05-04 Michael Terry * Merge from trunk (f5ee18441) 2016-05-04 CI Train Bot * Releasing 8.12+16.04.20160504.2-0ubuntu1 (f502a977e) 2016-05-04 Albert Astals Cid * Expandable Filter Widget Approved by: Andrea Cimitan, Pawel Stolowski (f61e91c94) 2016-05-04 CI Train Bot * Reload Preview Zoomable Image source if it gets updated (9df9d62a2) * Update the icon also to the original one if that's what the scope wants (b1d9283ee) * Make the previewActions react to the actions model changing (233b1f137) 2016-05-04 Albert Astals Cid * Reload Preview Zoomable Image source if it gets updated (ad93deb83) * Update the icon also to the original one if that's what the scope wants (da3aeab96) * Make the previewActions react to the actions model changing (80c6df416) * Pass the category correctly (f2ffa936d) 2016-05-04 Andrea Cimitan * Add social actions to cards Approved by: Josh Arenson (656c26f9f) 2016-05-04 CI Train Bot * Resync trunk. (491724ec8) 2016-05-04 Michael Terry * Actually start an identify operation in greeter code, not tested yet (c08d1bb5a) * Support vivid and xenial versions of qml plugin for now... (fe5ae94ff) 2016-05-04 Andrea Cimitan * fixed card creator test (31ca93bb8) * merged trunk (b6df3a2ec) 2016-05-04 Michael Zanetti * fix the verification (10365a36e) * test for pressed, not clicked (7973e4285) * reorder mouse areas. dragging the launcher away was a bit iffy (30a5e6dcb) 2016-05-04 Andrea Cimitan * Changed animation (b63a48d04) 2016-05-04 Albert Astals Cid * I'm a cAmeL (138dde190) 2016-05-04 Andrea Cimitan * Added animation (1b06e546c) 2016-05-04 Albert Astals Cid * Make unity8 and unity8-dash handle termination signals (3190fb9f3) 2016-05-03 Josh Arenson * merge trunk (8637a2b7b) 2016-05-03 Daniel d'Andrada * Center cursor on screen when it's first shown (c95d02aa7) 2016-05-03 Michael Terry * Merge from trunk (3329b777d) * Really fix binding and add a test for the binding, fixing up some mock delta along the way (9007ce177) * fix binding, hopefully (f8d95b622) 2016-05-03 Andrea Cimitan * Merged makeSureVisible fix (58aac101f) 2016-05-03 Michael Zanetti * remove the darkening layer for the launcher when it's opened by drag (8b885b1d1) 2016-05-03 Michael Terry * Fix tryShell (b219e1b19) * Merge from trunk (3d0186f76) * Rename Fingerprints to Biometryd (0e9b78a55) 2016-05-03 Lukáš Tinkl * fix expanding logic, update mock, silence runtime warnings (7e1fe43e7) 2016-05-03 Albert Astals Cid * it is always the current preview now (2ce36d296) 2016-05-03 Andrea Cimitan * merged trunk (17eafeae6) 2016-05-03 Albert Astals Cid * Merge (499562acf) 2016-05-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cce863428) 2016-05-02 Josh Arenson * merge prereq (02d7bf1d7) * merge prereq (11d118952) * merge trunk (405eb2c96) 2016-05-02 Daniel d'Andrada * Add cmake check for libubuntugestures5-dev and libubuntugestures5-private-dev (c80ec9273) 2016-05-02 Michael Zanetti * fix the sim pin darkening again (252af5ad7) 2016-05-02 Lukáš Tinkl * merge trunk (8681e9fd4) * merge trunk, resolve conflicts (ed1dc5b28) 2016-05-02 Michael Zanetti * merge trunk (0e32fda8c) 2016-05-02 Albert Astals Cid * Merge (1f291a9c8) 2016-05-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7b76a5723) 2016-04-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (446872491) 2016-04-29 Michael Terry * Merge from trunk (0cfbca36e) 2016-04-29 CI Train Bot * Releasing 8.12+16.04.20160429.2-0ubuntu1 (098793150) 2016-04-29 Michael Zanetti * Call the dash sizing hack when units.gu changes Approved by: Gerry Boland (cfe5828fe) * reduce some paint layers. (c1a1961f9) 2016-04-29 Daniel d'Andrada * Ensure shell transformations use bindings as OrientedShell can get resized Approved by: Michael Zanetti (986c38384) * Make shell rotation animation work on multimonitor scenarios. (6200dd3ef) * Refactor screenshotting code and make it work in multimonitor scenarios (3c34e404c) 2016-04-29 Michael Zanetti * Temporary means to override GUs on the internal screen Approved by: Lukáš Tinkl (3bff7ebd3) 2016-04-29 Gerry Boland * Indicators: set menu height binding while fully open/closed, fixes dynamic grid unit bug. (0459278d2) 2016-04-29 CI Train Bot * Resync trunk. (e66b43a0e) 2016-04-29 Josh Arenson * fix broken test (7a370a305) * Remove wait (70b611d45) 2016-04-29 Lukáš Tinkl * fix upcoming alarm labels (c3cbf8260) 2016-04-29 Josh Arenson * Fix small issues (f20bd9639) * Remove unecessary member variable (50d661ea3) 2016-04-29 Michael Terry * Pause notifications while tutorial is up (17f7ee9d0) 2016-04-29 Josh Arenson * Per review (5201c2d7e) 2016-04-29 Michael Zanetti * add a FIXME comment explaining why the hack is needed (bd1553488) * call the resize hack when units.gu changes (ad78cd49b) 2016-04-29 Daniel d'Andrada * Ensure shell transformations use bindings as OrientedShell can get resized (52ea9a123) * Make shell rotation animation work on multimonitor scenarios (fa119b376) * s/Ctrl/Alt (aea3ad17e) 2016-04-29 Michael Terry * Fix top text to match system settings (f828e552a) * Also delay on spread being open (ae93f0e23) * Fix long left being disabled; fix timers continuing while greeter is up; fix left timer starting on startup (cefe23140) 2016-04-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1185dbc8a) 2016-04-28 Josh Arenson * merge trunk (93d14352b) * Add comment (0011237fa) * Fix broken test (7e819f230) * Remove comment (361b41b33) * Add a test (1715f7eef) 2016-04-28 Michael Terry * Fix typo (68492bb85) * Add qt5-default to tests package (dbb8563bc) * really install cardcreatortest.js in right place (1ed13b67e) * Switch long left to 5s (2a8361d85) * Do last commit a nicer way (f6f6768c7) * Don't flash back tutorial page (left long does this sometimes) (fc42f39cd) * Delay tutorials if a notification or dialog is present (4a2274e58) 2016-04-28 Albert Astals Cid * Add override (fb652d911) 2016-04-28 Daniel d'Andrada * Refactor screenshotting code and make it work in multimonitor scenarios (e407b3c83) 2016-04-28 Michael Terry * Stop long left swipe until tutorial has been done (abeab1619) * update some copy (0f42dae2c) * Move long-left tutorial after top tutorial and require an open app first (063b4ce0d) * Tweak tutorial delays and start conditions (21b3b92c7) 2016-04-28 Albert Astals Cid * Set the theme earlier (0c586df7d) 2016-04-28 Michael Terry * Drop bottom tutorials (4ab97e819) 2016-04-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d7e569400) 2016-04-27 Josh Arenson * Add a mock scope with interesting navigation filters (0f6da63f5) * Enable mock scopes to have custom primary navigation filters (9a36490a2) * Undo unecessary changes (fd77a846a) 2016-04-27 CI Train Bot * Releasing 8.12+16.04.20160427.3-0ubuntu1 (1e2cf250c) 2016-04-27 Daniel van Vugt * Reinstate the touch performance/smoothness fix (LP: #1486341, LP: #1556763). (00f6d53ca) 2016-04-27 Ted Gould * Switch to using uid/pwdent for getting username Approved by: Michael Terry (1bf8bc022) 2016-04-27 Josh Arenson * Make scope filter settings button the same color as other foreground elements Fixes: #1563357 Approved by: Albert Astals Cid (034c32c48) * Change the color of the activity pulse to blue Fixes: #1568082 Approved by: Michael Terry (bd1c2a821) 2016-04-27 Michael Terry * Ignore Home Key presses when the greeter is up. (119572a04) * Fix some unreliable test code. Approved by: Albert Astals Cid (06a278c6d) 2016-04-27 Michael Zanetti * Drop the rotation lock for the dash Fixes: #1465331, #1574165 Approved by: Lukáš Tinkl (9da82a943) * improve the pin lockscreen (a6f55213e) * install devices.conf by default Approved by: Michael Terry (4b648c1ec) 2016-04-27 Albert Astals Cid * Stabilize test_superTabToCycleLauncher (9be9815c5) * NotificationAudio: We don't need weird "ifdef" for multimedia 5.6 vs 5.0 roles anymore Approved by: Michael Zanetti (9b0e967a9) * Take into account that sectionItem height can change (0ed2df347) * CardCreator: Remove ShaderEffectSource (b7c493a0f) * Add env var to enable js debugging/profiling even if not built on debug mode (09963e8c8) * See all/less -> Show all/less Fixes: #1349471 Approved by: Andrea Cimitan (3709fdc90) * Better error message if the item does not exist (3a9749afc) * Turn verify intro tryCompareFunction Approved by: Michael Zanetti (05f6481d9) * Compile with Qt 5.6 (81c5d9443) * forceLayout before calling positionViewAtIndex (e804c19b7) * rootObject can be null for a small moment after setSource is called Fixes: #1560501 Approved by: Daniel d'Andrada (bcfc279f7) * LVWPH: Account for contentHeight not really being "all" of the content height (77c227cfd) 2016-04-27 Lukáš Tinkl * Fix upcoming event ETAs falling out of sync Fixes: #1557571 (d99694953) * Fix labels in desktop spread (1dd8a29ce) * Stabilize wizard tests Approved by: Albert Astals Cid (c59920dea) * Drop OOBE wizard autopilot tests Approved by: Michael Terry (4624cec3c) * Shell visual update Approved by: Albert Astals Cid (a8e9a4acd) * Notifications visual update, close button on mouse hover Fixes: #1564343 Approved by: Michael Zanetti (83d09186d) * Unity8 windows now cascade instead of opening all in the top left corner Fixes: #1513813 Approved by: Lukáš Tinkl (a3512b05d) * Hide the close button for dash Fixes: #1550056, #1564347 Approved by: Josh Arenson (ea8906fd6) 2016-04-27 Albert Astals Cid * Another "See less" -> "Show less" (d0050cf0a) 2016-04-27 Lukáš Tinkl * fixup failing test (ccdf96f1b) 2016-04-27 Albert Astals Cid * Make the test work better with different px per gu values (0c028e3ff) 2016-04-27 Lukáš Tinkl * fix labels in desktop spread (fa7680ed0) 2016-04-27 Michael Terry * Fix card creator installation (3d5fc02da) 2016-04-27 Lukáš Tinkl * merge trunk (0dc82111e) 2016-04-27 Albert Astals Cid * Change to windowed/not windowed before starting the app (274d8e0cf) 2016-04-27 Lukáš Tinkl * merge trunk and rebase the fix (3c7afd122) 2016-04-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e6335b58e) 2016-04-26 Michael Terry * Add some build-depends so cmake knows where they live when writing scripts (6ab47fb1e) 2016-04-26 Lukáš Tinkl * also show the buttons in the panel when the overlay is shown and the window is maximized (ebd411567) 2016-04-26 Albert Astals Cid * Merge (c398dc9e0) 2016-04-26 Lukáš Tinkl * smaller resize icons (ad927eb3c) 2016-04-26 Albert Astals Cid * Merge (8daf35fa6) * Increase version number (a956379c4) 2016-04-26 Lukáš Tinkl * hide the window title when the overlay is shown (c857c1967) * fade the window buttons smoothly (15c3bace2) * separate min/max/close buttons when the overlay is shown (4bc1d7a1b) * 2 GU resize icon size (9c5a77dfd) * merge trunk, resolve conflicts (dbf10539c) * merge trunk, resolve conflicts (6b9b0a369) 2016-04-26 Michael Zanetti * merge with trunk (d600061f0) 2016-04-26 Lukáš Tinkl * focus the surface (52c040378) * move the impl to Shell (6bb8a904b) 2016-04-26 Michael Terry * Merge from trunk (38a5ac44c) * fix script name (e0ea34c7e) 2016-04-26 Albert Astals Cid * Merge (0ab7cfa3d) * Merge (747554de7) 2016-04-26 Lukáš Tinkl * merge trunk (f1be3e66d) 2016-04-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7c4428e28) 2016-04-26 CI Train Bot * Resync trunk. (e1c0fb7de) 2016-04-26 Michael Terry * Fix build (70157ec75) 2016-04-25 Josh Arenson * Enable SearchHistoryModel to dynamicaly set search history size (deb050344) * Enable setting search query from tryDashPageHeader (9f5b7169c) 2016-04-25 Nick Dedekind * specify target for nested animation (34d63adfd) * merged with trunk (bc38d90b7) 2016-04-25 Albert Astals Cid * Add test for the expandable filter widget (4a474ac56) 2016-04-25 Michael Terry * adjust comment (51cc317e4) * Fix vivid build (d2a0f5dd2) * Generate meta test scripts and use them for autopkgtests (e5c908704) * Fix dpkg build, cardcreatortest, and some others (5d620506c) 2016-04-23 Michael Zanetti * hide dropShadows in tablet stage when not needed (3482e815e) 2016-04-22 Michael Terry * Fix greeterdbustest linkage (b5c1857c2) 2016-04-22 Josh Arenson * Fix Flickable height (all tests pass now) (c38ce6154) * Fix some small bugs (a12f40b5a) 2016-04-22 Michael Terry * More data-dir fixes (40897d6e9) * Include fixes from test-greeter-dbus-fixes (0a1da022a) * Merge in username-from-uid (83142c39f) * Merge from trunk (4d2d6a490) * More fixes, rename unity8-fake-env to unity8-tests (d4ccfbd77) * Make testGreeterDBus a little more reliable (90426b5b1) * More test fixes (c1acb7d25) 2016-04-22 Michael Zanetti * fallback to 8 gus if we can't read or understand the env var (b58c17b8e) 2016-04-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a0e21c0a9) 2016-04-21 Michael Terry * last fixups to make all tests run (with source dir still in place) (cea014f19) * More test fixes (d181cb288) 2016-04-21 Michael Zanetti * merge trunk (919186f3f) 2016-04-21 Lukáš Tinkl * fix upcoming event ETA label (418fec650) 2016-04-21 Albert Astals Cid * Do the same, just faster (081bdc10d) 2016-04-21 CI Train Bot * Releasing 8.12+16.04.20160421.1-0ubuntu1 (42be39fe4) 2016-04-21 Robert Bruce Park * Use new bileto_pre_release_hook Approved by: Robert Bruce Park (ef18fd77e) 2016-04-21 Michael Zanetti * Fixes for programmatically closing Applications (96b7b5417) 2016-04-21 Daniel d'Andrada * Surface-based window management (fdf171577) * Refactor keymap switching code (665b045bb) * Use Item.grabToImage() instead of qtmir's ApplicationScreenshot provider (04e8f854f) 2016-04-21 Michael Zanetti * fix closing surfaces in tests under high cpu load (8a4d67c6c) 2016-04-21 Michael Terry * More fixes (581f8c963) 2016-04-20 Lukáš Tinkl * oops, fix double click panel to restore window (26cde5e1e) 2016-04-20 Daniel d'Andrada * Fix typo in comment (e97d5b6f3) * Bring back raise(SIGSTOP) to our ApplicationManager mock (28fc34948) 2016-04-20 Josh Arenson * Behave as expected (51f6915e7) * Fix height issue (ff7409f0b) 2016-04-20 Lukáš Tinkl * add Ctrl+PrtScr (8ad6cd7d6) 2016-04-20 Michael Zanetti * drop the orientation lock from the dash. Everyone thinks its a bug. (ed1c78bd0) 2016-04-20 Albert Astals Cid * clazy fixes (c79490a0e) 2016-04-20 Lukáš Tinkl * fix DesktopStage test (1fafe054b) 2016-04-19 Lukáš Tinkl * fixup WindowResizeArea tests (c0eb0e456) * refactor signal names (7af4ea6d7) 2016-04-19 Ted Gould * Switch to g_get_user_name() (65c54d9d5) 2016-04-19 Lukáš Tinkl * address review comments (5d97ac9a8) 2016-04-19 Josh Arenson * Wrap the primaryFilter in a Flickable and have it respect the correct height (2e2b590bc) 2016-04-19 Ted Gould * Update to trunk (89e5cb493) 2016-04-19 Michael Zanetti * drop unused logind test (059713943) 2016-04-19 Albert Astals Cid * Use anchors instead of width as suggested in review (363eaedc8) * fix too much c&p (6edbb90cd) * override maxYExtent otherwise we start gaining space at the bottom (31cf0c6eb) * Account for contentHeight not really being "all" of the content height (d5585fdfb) * increase dep versions (fa47e0bbc) * Merge (aa4f0fb40) 2016-04-19 Lukáš Tinkl * add tests (e80ef82e1) * implement maximizing windows horizontally/vertically (2989086f3) * verify before wait (babea2462) 2016-04-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (91c104f22) 2016-04-18 Michael Zanetti * drop another skipped test and related code. This feature won't come back (c78535315) 2016-04-18 Albert Astals Cid * Bring back source property to audio mock (3caee5906) * All the devices we support right now carry qt multimedia 5.6 patches (b7d0e3859) 2016-04-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ab21d91ef) 2016-04-17 Lukáš Tinkl * stabilize wizard tests (TZ page) (49e8ff51b) 2016-04-15 Lukáš Tinkl * merge lp:~dandrader/unity8/surfaceListModel (c72196c8c) * readd the MouseArea for modal notifications (used for e.g. SIM PIN lock) (e68fbae57) 2016-04-14 Michael Terry * First passes at installing scripts to run tests (5a702fe93) 2016-04-14 CI Train Bot * Releasing 8.12+16.04.20160414.1-0ubuntu1 (b3636431d) 2016-04-14 Michael Zanetti * make the edge drag area width configurable Fixes: #1559512 Approved by: Albert Astals Cid (863244cc7) 2016-04-14 Michael Terry * Make sure that usageMode is set on startup, fixing a problem with the tutorial not noticing that it is running on a desktop. Fixes: #1564351 Approved by: Michael Zanetti (a28a11997) 2016-04-14 Lukáš Tinkl * no margin for fullscreen notifications (like SIM PIN lock) (157b0ee09) 2016-04-14 Michael Zanetti * also check for m_valid now (432358a5e) * rebase on ~mterry/unity8/usage-mode-fixes (01ec5bc3c) * drop color from ShimStage (6b3f084d8) * drop pressed property (134ef2232) 2016-04-14 Daniel d'Andrada * Fix the mess I made with the lifecycle of the mock Unity.Application singletons (814405385) 2016-04-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2304e9e86) 2016-04-13 Josh Arenson * Fix reference error (7f56982ec) 2016-04-13 Daniel d'Andrada * tst_OrientedShell: Update performEdgeSwipeToSwitchToPreviousApp() (2efb3441e) * Fix ownership of QML singletons (23ca9d69e) 2016-04-13 Lukáš Tinkl * remove the bundled asset (8d3f22ce7) * use a builtin icon for the chevron (6458cf5ac) 2016-04-13 Daniel d'Andrada * Update libunity-api-dev version dependency (21fcbe69d) 2016-04-13 Michael Zanetti * reduce diff (826eabf7d) * fix haptics being out of sync (2e2611aea) 2016-04-13 Lukáš Tinkl * don't use the internals of the AbstractButton (5377b3b48) * introduce a boolean "expanded" property as a replacement for the removed expanded/contracted states (6576f2a2f) 2016-04-13 Daniel d'Andrada * DesktopStage fix: focus maximized app when you click on the panel (88ba1d68e) 2016-04-13 Lukáš Tinkl * hide the central part with windows smaller than 12 GU (10 GU + grip.width / 2) (81cb8e89a) 2016-04-13 Albert Astals Cid * Fix borken merge (4ebbd8e96) * Merge (6cca25cdb) * Merge & make tests pass (506f3bb5a) 2016-04-12 Michael Zanetti * comment out the example (f18bea105) * add a comment (439bde890) 2016-04-12 Josh Arenson * Use system theme instead of hardcoded SDK color (a787f12c9) * Refactor "orange" to activityPulse (2c6be9d5e) 2016-04-12 Lukáš Tinkl * make sure the Placeholder is created (e82ae4e90) * clear the model before each testcase (301ff9175) 2016-04-12 Daniel d'Andrada * Fix ApplicationWindow.title (7bc394edc) 2016-04-12 Michael Zanetti * fix desktopstage (66cf1644f) 2016-04-12 Lukáš Tinkl * ++test fixes (65478eafa) 2016-04-12 Michael Terry * Fix tests (f82b9154f) 2016-04-12 Michael Zanetti * drop debug print (e41f1ad64) 2016-04-12 Michael Terry * Fix long-screen-edge check, per mzanetti (b1e36e5bf) 2016-04-12 Michael Zanetti * reduce some paint layers. (ba512d546) 2016-04-12 Lukáš Tinkl * increase resize grip (mouse area) size (a80008271) * try to stabilize the QML tests in CI (026389c58) 2016-04-12 Michael Zanetti * improve the pin lockscreen (d25b51998) 2016-04-12 Lukáš Tinkl * redo the close notification test, using the close button (f59e405ca) * rename the PanelState signal from maximize() to restore() (6c689d22b) 2016-04-11 Josh Arenson * [WIP] Change the color of the activity indicator to blue (7c10359c1) 2016-04-11 Lukáš Tinkl * all notifications closable, perform secondary action upon closing/swiping away (a9709b77f) * correct radius for buttons (147c2d32b) * make snap decisions draggable/closable only when contracted (dc024cb6b) * always display close button on hover, opacity to 1.0, Porcelain button bkg (feb862815) * update (c) and rename property inPanel -> windowIsMaximized (876406906) 2016-04-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (389290242) 2016-04-08 Daniel d'Andrada * tst_SpreadDelegate - improve clean up (b868b5848) * Fix tst_SpreadDelegate (3ab4e1201) 2016-04-08 Lukáš Tinkl * adjust chevron size (56a7712fa) * tweak linespacing, smaller confirmation icon (54eea8a7c) 2016-04-08 Albert Astals Cid * eof (d9760d3af) * Make enabling the qml debugger depend on the -qmljsdebugger command line option being there or not (3540e1020) 2016-04-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b928e3d17) 2016-04-08 Lukáš Tinkl * only enable the close button with a mouse attached (e35a785a9) * fix the topMargin + test (d5d401de3) * add the mouse emulation checkbox here too (a31b60f35) 2016-04-07 Lukáš Tinkl * fix tests (2e6e82ff3) * implement the close button (0d3ddc2f7) * fix crashes in the mock model (5b58aba08) 2016-04-07 Daniel d'Andrada * Fix bad merge in Shell.qml (8c8b4ec69) * Fix tst_DashShell (ed11a4ad1) * Fix an issue in Tutorial (a7e9646c5) * Remove dead code from TabletStage (fe3aaad9a) * Fix tst_Greeter (f9ac97fdd) * Fix tst_SurfaceContainer (ed94a0005) 2016-04-07 Michael Zanetti * reenable preview test (3f410e129) * merge prereq (a81397df5) 2016-04-07 Lukáš Tinkl * provide the same scale animation when pressed (2d2a022e3) * unify button/action font colors (3075a18e2) * new chevron + margins (0b3d3cea9) * drop wizard AP tests (411d36a85) 2016-04-07 Albert Astals Cid * Merge (3fafbea0a) * Merge unity8 (61a1a9436) 2016-04-07 Lukáš Tinkl * fix some tests warnings (c4318e8fc) 2016-04-06 Lukáš Tinkl * implement a custom (outline/tinted) button (19df37042) 2016-04-06 Daniel d'Andrada * missing link in focusRequested mock implementation (bd42e4d21) 2016-04-06 Ted Gould * Switch to using uid/pwdent for getting username (854fc6b67) 2016-04-06 Lukáš Tinkl * style the dropdown using a plain Rectangle, unify bg colors, remove grip asset (builtin icon already) (16386e053) 2016-04-06 Daniel d'Andrada * DesktopSpread: improve icon label (25a2efbe4) * DesktopStage: raise a new window that don't yet have a surface (7c2e17cd6) 2016-04-06 Andrea Cimitan * as review (f860d9e4d) 2016-04-06 Lukáš Tinkl * fix alignment of the secondary (topright) icon (a219b1ccd) 2016-04-06 Michael Terry * Add a quick sanity check to new test (1f2196570) 2016-04-06 Lukáš Tinkl * flat icons, no inset shadow (f0af59cbc) 2016-04-06 Michael Terry * Drop mock property points for cleanliness (f0d81d555) 2016-04-06 Lukáš Tinkl * fix the height for contracted snaps (da8f584a0) * fix tests (02fba253d) * add expandable chevron, simplify height handling (b8df2bfb8) * smaller right icon (cc9163235) * go with small radius (e1d2ff579) * remove the percentage display (e4a44355e) * fix tests (de4e86d7b) * make the actions combo a bit less tall (8db1c754c) * aux actions fixes (3de2c5863) * better progress bar (cdbb6c496) * fix oneOverTwoCase snap decision layout in the 2nd row (90d786a78) 2016-04-05 Lukáš Tinkl * add a shadow, use a standard ProgressBar for the value indicator (5461b3ea4) 2016-04-05 Michael Terry * Check coverPage, not greeter -- it animates closed (a4e4752d4) * Fix comment (447f6362b) * Fix test (34e4926a8) * Ignore home key when greeter is up (2007c78ee) 2016-04-05 Daniel d'Andrada * Update tst_Panel (4932508cc) * Small updates for DesktopState and its tests (09057337a) 2016-04-05 Michael Terry * Support new setTimeZone call for uss module (128e14608) 2016-04-05 Lukáš Tinkl * WIP: notifications visuals (26cc55013) 2016-04-05 Daniel d'Andrada * Update tst_ActiveCallHint.qml (79466a923) * Remove obsolete ApplicationManager methods (7a5cf5181) * Fix PhoneStage issue with new app coming while in spread (a8f73c810) * Update more tst_Shell tests (6fb9fec52) 2016-04-05 Albert Astals Cid * Add to unity8 too (762a4cec6) * Add env var to enable js debugging/profiling even if not built on debug mode (25418e74c) 2016-04-04 Lukáš Tinkl * revert cursorShape here too (c7605f192) * revert the cursorShape changes (40de98b3a) * new window control buttons assets (60cc9668c) * added consistent 0.95 opacity (b5b99cd09) * update based on the latest feedback from design (51c32fab6) * improve layout, add word wrap (25ab2d178) 2016-04-04 Daniel d'Andrada * Fix some issues in side stage (9dddd5fdf) * Application-level focus requests (62ef20c11) * Update bindings for Application.exemptFromLifecycle (b8e8b2555) * Update low-chrome code (3f9bb693d) * tst_Shell: Update some UI controls (8ce3b8fa9) * Various fixes and refactoring (8bb976860) * Review feedback + some misc fixes (86231ced7) * Surface-based window management (20b32fcd6) * Refactor keymap switching code (7a0b76573) * Use Item.grabToImage() instead of qtmir's ApplicationScreenshot provider (ad46288a6) 2016-04-04 Albert Astals Cid * Merge lp:~aacid/unity8/previewIconActionsModelChange (a21664847) * add waitForRenderin (47d1d95e2) * Reload source if it gets updated (45b6297aa) * Do not QCOMPARE a bool against 1 (8eae719cf) * Compile with Qt 5.6 (14079aaee) 2016-04-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8e46b4533) 2016-04-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1ceb680da) 2016-04-01 Michael Terry * Emit signals when gsettings is ready (0093b8987) * Make mock gsettings closer to real gsettings objects (21b7b0d35) 2016-04-01 Lukáš Tinkl * revert the notifications part (c2c283e59) 2016-04-01 Michael Terry * Don't bother checking screen size (c31ba8dd7) * Update usage mode on startup; use screen size, not u8 size to determine mode (35657ba9c) 2016-04-01 Albert Astals Cid * Update the icon also to the original one if that's what the scop wants (865634473) 2016-04-01 Josh Arenson * Fix some bad merge changes. (d0f0db1b9) 2016-04-01 Lukáš Tinkl * simplify, don't need the full side stage gesture component (9e8f0306f) 2016-04-01 Albert Astals Cid * Make the previewActions react to the actions model changing (23b9ef5ae) 2016-04-01 Lukáš Tinkl * add a test for showing/hiding the window controls overlay (3b6f5695c) 2016-04-01 Andrea Cimitan * Fix for review (6aaf8713b) 2016-04-01 CI Train Bot * Releasing 8.12+16.04.20160401-0ubuntu1 (db39c1d96) 2016-04-01 Michał Sawicz * Skip the failing test until we have a working solution for bug #1564571 (5294cc4f7) * Add missing Testsuite header Approved by: Robert Bruce Park (21814694a) * Skip the failing test until we have a working solution for bug #1564571 (994d47158) 2016-03-31 Albert Astals Cid * Better error message if the item does not exist (4a93bc77c) 2016-03-31 Lukáš Tinkl * merge trunk (bc6930d74) * remove pointless MouseArea (c1843bf6e) * also hide the close button from panel (c10dd4432) * don't dim screen when the indicators are open or a modal notification is being shown (3d22307e3) * don't show the overlay when initiating the resize with mouse (d7db780dc) 2016-03-31 Michael Zanetti * search in /system/etc/ubuntu too, in case there is a device tarball override (aa11e01d7) * drop unneded line in example (38656a0ae) * use a separate config for the default install, extend the docs one a bit (38fd06285) 2016-03-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fbb130c22) 2016-03-31 Daniel van Vugt * Merge latest trunk (a96fa777d) 2016-03-31 Michał Sawicz * Add XS- since we're building the source packages on trusty (ceee16a6d) 2016-03-30 Lukáš Tinkl * don't repeat the timer, only show it as long as we're dragging/moving (d1aa03994) * when clicked outside, propagate the event further down (ef523d05d) * fix switching focus between apps (b2a69e2d4) 2016-03-30 Michael Terry * Fix testGreeterDBus (48443e0f9) 2016-03-30 Lukáš Tinkl * remove unneeded change (61708480f) * hide the close button for dash (06b31a52d) 2016-03-30 Josh Arenson * Make scope filter settings button the same color as other foreground elements (437155bd5) 2016-03-30 Michael Terry * Support fingerprint events; add tests (01498b758) 2016-03-30 Lukáš Tinkl * properly restore the window (8476a4e20) * spice it up with fancy cursor shapes :) (1aaa7019e) * eat the hover events beneath the overlay, while it's visible (56d0b3a2e) * properly hide/show the central piece and resize grips (192470dec) 2016-03-30 Michael Terry * Add mock Fingerprints module (c4e7e9894) 2016-03-30 Lukáš Tinkl * oops, use the standard enums (78736b8fe) * drop some debug, make the buttons a bit bigger (66bea3724) * use an opacity animation to show/hide the overlay (5ee50b043) * implement resizing \o/ (dce2835a9) 2016-03-30 Michael Zanetti * install devices.conf by default (484fdd3ad) 2016-03-30 Michał Sawicz * Add missing Testuite header (ab2268edf) 2016-03-30 Lukáš Tinkl * don't hide the overlay if we're still dragging around (45fe6d586) * implement moving by dragging around (9035e45ee) 2016-03-30 Michael Zanetti * mock the new property (9b8104c15) 2016-03-30 Albert Astals Cid * Pass the category correctly (19e634455) 2016-03-30 CI Train Bot * Releasing 8.12+16.04.20160330-0ubuntu1 (58a5a1fa0) 2016-03-30 Albert Astals Cid * Use tutorialLeftLoader instead of tutorialLeft (f75364ab5) 2016-03-30 Michael Terry * Adjust text for desktop right edge tutorial to be accurate. Fixes: #1563103 Approved by: Daniel d'Andrada (e77be7774) 2016-03-30 Lukáš Tinkl * Fix the last chance popup colors/theme Approved by: Michael Terry (679180f1d) 2016-03-30 Michael Terry * Fix OOBE wizard not setting your name. Fixes: #1562872 Approved by: Albert Astals Cid (149137bb4) * Fix showing "Retry" in password prompt when turning on screen in tablet mode. Approved by: Michał Sawicz, Albert Astals Cid (6e6d35e35) 2016-03-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6e1c8f90c) 2016-03-30 Lukáš Tinkl * correct offsets + borderThickness (c8fd873bc) * unbreak clash with resize area (5b1583f35) * WIP: basic window controls overlay (be4b0d4d8) * color palette fixes (064b28f46) * trivial fixes (c477c78ad) 2016-03-29 Albert Astals Cid * Use tutorialLeftLoader instead of tutorialLeft (27acf0672) 2016-03-29 Lukáš Tinkl * feature parity: with a maximized window, "dragging" the panel down should restore it (6fe702ef5) * extract the drag-down-panel feature into a different branch (4d09f00f6) * use a hexa color value with alpha channel (b6176e83d) 2016-03-29 Michael Terry * And fix the tutorial to even notice when the spread is shown (4abe6ce44) 2016-03-29 Lukáš Tinkl * fixup quicklist positioning test (dfe6efa14) * revert rounded window corners (25b08e421) 2016-03-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1c30dff74) 2016-03-29 Daniel van Vugt * Merge latest trunk (0da682d60) 2016-03-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1992158eb) 2016-03-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (61f2992c6) 2016-03-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (50def5048) 2016-03-25 Josh Arenson * merge prereq (924ea90fb) * merge prereq (eef1b0939) * merge trunk (f75e1d0cf) 2016-03-25 Michael Terry * Fix typo (5a00d6a65) * Fix desktop right edge text (801fa9434) 2016-03-25 Lukáš Tinkl * merge trunk (898b8f360) * more readable count emblem (ac673fc6c) * use bg from palette (f36dd2ab5) 2016-03-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bce0a33b7) 2016-03-24 Lukáš Tinkl * drop unused import now (7810611bc) * reuse ShellDialog's hack (5bab0e5ec) * fix the last chance popup colors/theme (af8c4cf4c) * window/app title always white, accordiing to the spec (ae825babf) * correct margins according to alexm (9f459ac8f) * opacity 0.95 as pointed out by alexm (1a484e57e) 2016-03-24 Albert Astals Cid * fix + make test les strict (384c7f3a9) 2016-03-24 Lukáš Tinkl * dark quicklist theme (fcc8f2c33) 2016-03-24 Albert Astals Cid * Stabilize test_superTabToCycleLauncher (2c351907b) * DDA->SwipeArea (87998f006) 2016-03-24 Michael Terry * Fix integrated test (ce429bb14) 2016-03-24 Lukáš Tinkl * confirmed with alexm, quicklist should be 95% opacity (5fb3d249d) * cascade windows (f7e85f6b4) 2016-03-24 Albert Astals Cid * Merge, it builds but probably something still missing (acf602f05) * Merge sectionDelegateResizes (82a456d4f) * Merge (f2b58535a) 2016-03-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (059d05e58) 2016-03-24 Lukáš Tinkl * increase the hint US size a bit (33797f23c) * revert to ListItems.Standard to restore kbd navigation (4a13c49dc) 2016-03-23 Lukáš Tinkl * tweak the highlighted+disabled window button color (2ba7a0b02) * use the standard button colors (1822fedf4) * make the dark launcher quicklist testable (41ebd2bed) * minimize diff a bit (98a4bda07) * restore chunk of broken merge (0e8cd09b4) * merge trunk (ac310bfd9) 2016-03-23 Michael Terry * Add missing file (61367116c) * Fix setting some AS properties (00a56e5d2) 2016-03-23 Lukáš Tinkl * WIP: shell theme updates (e11e7bb0d) * fix botched merge (f8c77bec5) * implement a keyboard shortcuts overlay panel (1cb9db5b0) * merge lp:~ci-train-bot/unity8/unity8-ubuntu-xenial-landing-013 (50c8d43ab) 2016-03-23 CI Train Bot * Update translation template (c7e6c9207) * Releasing 8.12+16.04.20160323.2-0ubuntu1 (8b42f3fa3) 2016-03-23 Michael Terry * Session indicator convergence Fixes: #1538591 Approved by: Michael Terry (e72267458) 2016-03-23 Michael Zanetti * Change the behavior alond with the switch in indicator-display Fixes: #1538591 Approved by: Michael Terry (fd5249a46) 2016-03-23 Albert Astals Cid * Get the engine from the parent context (97c7af3ad) * Fix various tests (5cc4f024a) * Workaround SDK ListItem bug (5bc85fa4b) * Value slider filter Approved by: Andrea Cimitan (490b9e3c0) * Range Input filter Approved by: Andrea Cimitan (66ee68462) * Match design visuals for the new dash navigation/page header popup Approved by: Andrea Cimitan (5fda13fb9) * Filter implementation with Option Selector filter as the only filter Approved by: Andrea Cimitan (b851f5b1a) * New Dash Navigation UX Approved by: Andrea Cimitan (1669a5c99) * Implement the API changes due to filters Approved by: Andrea Cimitan, Michael Terry (8dae33557) 2016-03-23 Michael Terry * Fix setting OSK layout in OOBE wizard Approved by: Lukáš Tinkl (d388e176f) 2016-03-23 Michael Zanetti * disabling some tests that are flaky in adt but can't be made fail on our machines Approved by: Michael Terry (2a9015043) 2016-03-23 Lukáš Tinkl * Keymap switching support Fixes: #1412492, #1491340, #1524400 Approved by: Unity8 CI Bot, Michael Terry (ceced5854) 2016-03-23 Michael Terry * Stop the left edge tutorial from being shown when the bottom edge tutorial wants to be shown after receiving a call. Approved by: Albert Astals Cid (fc57df559) 2016-03-23 Michael Zanetti * Redesign the first-boot edge tutorial Approved by: Michael Zanetti (7fd52cbeb) * Add support for low shell chrome. Fixes: #1535397 Approved by: Gerry Boland (52892bc07) * Sidestage load/unload redesign Fixes: #1544479 Approved by: Michael Terry (8a1d6e78f) 2016-03-23 Michael Terry * New first-run wizard for the phone (part of the OOBE effort) Fixes: #1536617, #1536688, #1543790, #1555222 Approved by: Michael Zanetti (c64be71e0) 2016-03-22 Josh Arenson * merge prereq (7d423367d) * Fix test import:wq (2150a68cd) 2016-03-22 Michael Terry * New test (fa62a07c3) 2016-03-22 Albert Astals Cid * rootObject can be null for a small moment after setSource is called (3fe19565c) 2016-03-22 Michael Terry * Fix tests and add check for new behavior (80fa4233d) 2016-03-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2d6f528d9) 2016-03-21 Robert Bruce Park * Just drop override_dh_auto_clean. (11fb234a6) * Whitespace fix. (21059d464) * Revert update-unity-pot changes. (a24330615) 2016-03-21 Michael Terry * Make setCountry a little more correct (6d064623a) * Undo hotfixes to remove Ubuntu.Web, it's apparently not the problem (4e4caca7f) 2016-03-21 Josh Arenson * Update lockHint to always be True for integratedLightDM (bdd066053) * Update locked property to better match lightdm-qt (807f09c7b) * Fix bad merge in control file (df4208f8a) * merge prereq (ed593dc5b) * Remove antiquated directory reference. (324bce8e8) 2016-03-21 Daniel d'Andrada * Add Q_DECLARE_METATYPE(Qt::Key) to fix test build in CI (f95e5ddd7) * WindowInputMonitor - also map Qt::Key_HomePage to our home key (e7bb4ce57) 2016-03-21 Josh Arenson * merge prereq (2a29ce2e5) * merge prereq (061996535) * Fix test (a8b44f54a) * Move a lost file (59a26a369) * merge prereq (bd84c4868) * merge prereq (fa6ee0b73) * merge trunk (94b8489a4) 2016-03-21 CI Train Bot * Resync trunk. (e71b8516c) 2016-03-21 Andrea Cimitan * Merges (dbce7ebc1) 2016-03-21 Michael Zanetti * we don't want negative sizes (2ac7cdbeb) 2016-03-21 Albert Astals Cid * Activate on click for SimpleMessages (4c2612124) 2016-03-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b59978ac2) 2016-03-19 Michael Zanetti * make the edge width configurable (31f34a4db) 2016-03-18 Robert Bruce Park * Reduce redundancy. (969784270) * Clean up diff. (44caa8549) * sh (f33f4d8bb) * fix rules. (8ee204516) * Only cd once. (c8b3d2802) * Fix permissions. (c46486374) * Try not using symlink. (3676dec96) * Canonicalize. (ef1070603) * No mktemp. (b3a8d9578) * Commit results. (90c79c91b) * Use new bileto_pre_release_hook. (c1f09e21a) 2016-03-18 Michael Terry * Further hail-Mary hotfix (2ff32aebd) 2016-03-18 CI Train Bot * Update translation template (09e34795f) * Releasing 8.11+16.04.20160318.1-0ubuntu1 (db5f28780) 2016-03-18 Lukáš Tinkl * Fix notifications with the new UITK color schemes Fixes: #1554616, #1556523 Approved by: Michael Terry (be0e5045b) 2016-03-18 Michael Zanetti * more fixes for the new theme palette Fixes: #1554616, #1557534 Approved by: Michael Zanetti (7999aea98) 2016-03-18 Michael Terry * Hotfix around unloading WebView in wizard on first boot, which seems to cause a freeze due to oxide memory corruption, we think (29849b86f) 2016-03-18 Nick Dedekind * removed opacity check (5077e1563) 2016-03-18 Michael Terry * Add mock keyboard plugin (a9041aa8e) 2016-03-18 Albert Astals Cid * The workaround is not needed anymore (91386dc97) * Change the art back to the cardData value if it changes from broken to valid image (d2bdb2213) 2016-03-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b7cd4c13a) 2016-03-17 Michael Terry * Don't show bottom and left tutorial at same time (9e5ce656e) * Set current layout when setting language (a07176bdb) 2016-03-17 Josh Arenson * merge prereq (8755192cf) * Merge prereq (34436b722) * Merge trunk (93813338f) 2016-03-17 Albert Astals Cid * forgot to adapt this test (50e6ee101) * Don't use context properties but properties on the delegates (fdf9a7e89) * Turn verify intro tryCompareFunction (e81ef4fa3) 2016-03-16 Michael Terry * Reset greeter state a little harder, to avoid half-done state (0ddefa0d0) 2016-03-17 Lukáš Tinkl * stabilize++ (620e83971) 2016-03-16 Michael Zanetti * skip not working for some reason (e3b8a0876) 2016-03-16 Lukáš Tinkl * fix color of initially invisible items (like Bluetooth or Files) (c74052edf) 2016-03-16 Michael Zanetti * disable flaky tests for this release (8f8a1c853) * merge ~unity-team/unity8/side-stage-redesign as prereq (ee28f7939) 2016-03-16 Lukáš Tinkl * make indicator tests use the right (dark) theme (6906b41c2) * string fixes (4ae5aae79) * fix the workaround for shell dialogs (b4ac4656b) 2016-03-16 Michael Zanetti * fix whitespace (4851c7ced) 2016-03-16 Nick Dedekind * Added button for Show/Hide Call (4d0b12ddc) * Fix decoration/panel coloring (3e177c091) 2016-03-16 Michael Terry * Fix last failing test (890e43b93) * Some test fixes (3df724b60) 2016-03-16 Lukáš Tinkl * same window decoration color as the panel (ccf875408) 2016-03-16 Nick Dedekind * test fixes (a9caa24da) * resolved conflict (c49158af8) 2016-03-16 Lukáš Tinkl * update copyright years (6f685625c) 2016-03-16 Michael Zanetti * fix the launcher theming (210a7494b) * merge trunk (e949b0b81) 2016-03-16 Nick Dedekind * fixed testWindowResizeArea (bdf01f583) * use function for loadWindowstate (75790e206) * rebase (09f81137f) * fixed touchPress (09e52a155) * updated indicator model mock to fix warnings (13fa0870d) 2016-03-16 Albert Astals Cid * Do not watch the geometry of the floating section item (a9624f452) * Behave like the secion delegate we have in rela life (size 0 when no text) (034c42e66) 2016-03-16 Lukáš Tinkl * find the right geonames version (4fb037b48) * fix qml tests (da5f5033a) 2016-03-16 Albert Astals Cid * Another small test fix (1976e43f2) 2016-03-16 Lukáš Tinkl * make units.gu(60) the threshold between phone and tablet for the session indicator (f30d6f054) 2016-03-15 Michael Zanetti * fix whitespace (37815b8b2) 2016-03-15 Michael Terry * Merge in shell_chrome (28988b86c) 2016-03-15 Michael Zanetti * merge with prereq (61b3bcf4e) 2016-03-15 Lukáš Tinkl * fix the broken binding (reaching out of context) (16922ce5e) * remove unity8-schemas (3b2a6df2d) 2016-03-15 Nick Dedekind * comment (80ad93373) * review fixes (963cdec43) 2016-03-15 Albert Astals Cid * Fix some ticket 1105 test failures (f73ce30f9) 2016-03-15 Lukáš Tinkl * merge lp:~aacid/unity8/listitemworkaround (1ed255d0d) 2016-03-15 Michael Terry * merge from side-stage-redesign (a2d65fd97) * Patch from dednick, fixing my bad merge (58eedbeb7) 2016-03-15 Albert Astals Cid * Also update notificationList.topmostIsFullscreen when the index changes (9fdbc3141) 2016-03-15 Michael Zanetti * drop some debug prints (ad2d7ba5a) 2016-03-15 Nick Dedekind * merged with trunk (46b6ebd64) 2016-03-15 Lukáš Tinkl * gross hack for hiding the indicator-session for < 50GU screens (65f868ca1) 2016-03-15 Michael Zanetti * fix bad merge (9e906c529) 2016-03-15 Lukáš Tinkl * don§t confuse the user and show just one power/shutdown dialog (fdba5b4bc) 2016-03-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7659185f7) 2016-03-14 Lukáš Tinkl * remove debug (21777f9f4) * remove activeKeymapIndex, refine tests (6505fdfe8) 2016-03-14 Andrea Cimitan * merge (b5c64db51) 2016-03-14 Albert Astals Cid * ExpandableFilterWidget (46d3556df) 2016-03-14 Lukáš Tinkl * move the lock connection to Greeter.qml (0556d2168) 2016-03-14 Michael Terry * Fix up packaging a bit (628587ae8) 2016-03-14 Lukáš Tinkl * remove useless aliases for builtin colors (7ddb3c704) 2016-03-14 Albert Astals Cid * import is used here elsewhere (0329653e9) * Workaround SDK ListItem bug (b8203b96b) 2016-03-14 Lukáš Tinkl * merge prereq (b16849455) * create our own unity8-schemas package (91646e676) * remove the fake version number from here (7614f6a28) 2016-03-14 Albert Astals Cid * Merge (fb0485c74) * Merge (912c55722) * Merge (cad114702) * Merge (74cbf86df) * Merge (59bb04897) * Merge (5012c1652) * Merge (6f3535b4d) * Merge (38fe63dce) * Merge (389724e1e) * Merge (de9d09759) * Merge (dc422485f) * Merge (f0a35c44d) * Merge (a22847a94) * Merge (6c777e1b5) 2016-03-14 Daniel van Vugt * Typo (d83c66d58) * Reinstate the touch performance optimization (LP: #1486341, LP: #1556763). (f38b40aef) 2016-03-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f5b4a9024) 2016-03-13 Lukáš Tinkl * fix notifications colors with the new UITK themes (a32e7e18e) 2016-03-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3e32d7bda) 2016-03-12 Lukáš Tinkl * refine test for switching keymaps, move to tst_Shell (5edbc5692) 2016-03-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c9950b09a) 2016-03-11 Michał Sawicz * Merge lp:~unity-team/unity8/shell_chrome (79fde1bfe) 2016-03-11 Nick Dedekind * use hidden state (b7a86e71b) * obey chrome changes (258e140f2) 2016-03-11 Michał Sawicz * Merge lp:~unity-team/unity8/side-stage-redesign (b60fb6b72) 2016-03-11 Michael Terry * Merge side-stage-redesign (14a5635b1) 2016-03-11 Michał Sawicz * Merge lp:~unity-team/unity8/side-stage-redesign (b379bab9e) 2016-03-11 Nick Dedekind * Sidestage load/unload redesign (bc2da59d5) 2016-03-11 Michał Sawicz * Merge trunk (f10ff6dfa) 2016-03-11 Michael Zanetti * update tests (ad987e342) 2016-03-11 Michael Terry * Merge silo 64 (soon to be trunk) (62d1763ec) 2016-03-11 Lukáš Tinkl * move the keymap switching to Shell (296d98a6b) 2016-03-11 Michael Zanetti * merge trunk (5ad1ee0ef) * more hacky, but better for the user (4ba8c664a) 2016-03-11 Lukáš Tinkl * drop unneeded changes (fd99033e7) * improve password strength/match feedback (a7dcbaef8) * refactor desktopLook -> wideMode (28af86e83) * use StyledItem for theming, fix the "white" color bug for final page (13c4946a7) * address some review comments (03b057890) * Keymap switching support (4e43f112e) * move away the OSK (0e5985ed4) 2016-03-11 Albert Astals Cid * account for 180 (b7a2f03f5) 2016-03-11 Lukáš Tinkl * don't reload/reset the model all the time (bc764ba41) 2016-03-11 Albert Astals Cid * Merge makeMakeTryOrientedShellWork (42301faf0) * Get the engine from the parent context (d345593a3) 2016-03-10 CI Train Bot * Update translation template (8855d4bcd) * Releasing 8.11+16.04.20160310.4-0ubuntu1 (95eba153f) 2016-03-10 Albert Astals Cid * Add haptics to ScopesListCategoryItem buttons (c74c7888b) * Add context for Re-dock as asked by translators Fixes: #1534608 Approved by: Lukáš Tinkl (f9099ff65) 2016-03-10 Lukáš Tinkl * Provide a range of ports to QML JS Debugger Approved by: Albert Astals Cid (535af59c0) * Disallow resizing windows up, past the Panel Fixes: #1544766 Approved by: Josh Arenson (ca45d4f32) 2016-03-10 Michał Sawicz * Use dpkg-architecture, not arch, to disable touch emulation (bf3563359) 2016-03-10 Michael Zanetti * Properly parent launcher items in all cases (a397fecaf) 2016-03-10 Lukáš Tinkl * Watch for launcher item icon changes Fixes: #1543290 Approved by: Unity8 CI Bot, Michael Zanetti (885b39243) 2016-03-10 Michael Terry * Watch AccountsService for changes to the user's real name. This was preventing us from noticing when the user set their name in the welcome wizard. Approved by: Albert Astals Cid (1fee4d1e3) 2016-03-10 Lukáš Tinkl * Enable the PIN lockscreen to be used with a HW keyboard Fixes: #1550359 Approved by: Unity8 CI Bot, Albert Astals Cid (8391b0acc) 2016-03-10 Albert Astals Cid * Minor fixes for unity-scope-tool (b89fa94ac) 2016-03-10 Andrea Cimitan * PreviewSharing widget now accepts both string and array of widgetData["share-data"]["uri"] Fixes: #1549056 Approved by: Albert Astals Cid, Pawel Stolowski (1cd3a52b7) 2016-03-10 Albert Astals Cid * clazy fixes (ec9a39884) * Use the new undeprecated connectivityqt::Connectivity (7e9c5116a) 2016-03-10 CI Train Bot * click scope: Add the else branch so we reset the card size in all situations (6bae3f954) * Ensure the QML engine doesn't delete our mock MirSurfaces on its own. (38c7c024a) 2016-03-10 Michał Sawicz * Add udev rules to make sure we have access to uinput (60ad97884) 2016-03-10 Michael Zanetti * Allow loading the device configuration from an external file Approved by: Daniel d'Andrada (abf4a12bd) 2016-03-10 Nick Dedekind * some fixes for the new palette Fixes: #1554616 (ebb7691c5) 2016-03-10 Michał Sawicz * Make dash respawn indefinitely Fixes: #1550056 Approved by: Albert Astals Cid (33566728b) 2016-03-10 Josh Arenson * Allow the shell to blacklist input devices and force the OSK shown. (ace9f58e6) 2016-03-10 Andrea Cimitan * Update AP tests for new single preview Approved by: Michał Sawicz, Unity8 CI Bot (5fa818460) 2016-03-10 Vesa Rautiainen * Fixing the vertical position of desktop spread item icon. Approved by: Michael Zanetti (9ddf1868e) 2016-03-10 Michael Terry * To let the user log in if a mouse is connected, hide the greeter cover page on a mouse click (but NOT a touch click). Fixes: #1540497 Approved by: Unity8 CI Bot, Lukáš Tinkl (c35b9e31b) 2016-03-10 Michael Zanetti * stabilize swipeAwayGreeter() (8087828b0) 2016-03-10 Daniel d'Andrada * tst_Shell: Remove unused qml items (13c2ce7f2) 2016-03-10 Albert Astals Cid * Add emblem to the preview header widget Fixes: #1424720 Approved by: Andrea Cimitan (92a5ddfc1) * click scope: Add the else branch so we reset the card size in all situations (d4dc80c77) 2016-03-10 Michael Zanetti * Read inputMethod surface from the new property int QtMir (9e911d1c7) 2016-03-10 Daniel d'Andrada * Ensure the QML engine doesn't delete our mock MirSurfaces on its own. (f5d9c63f7) 2016-03-10 Michael Terry * Proxy more mouse and touchpad properties to USC (LP: #1540398) Fixes: #1540398, #1543344 Approved by: Michał Sawicz (9d64c0d81) * Refactor the AccountsService plugin and make it slightly faster. Approved by: Michał Sawicz, Unity8 CI Bot (fec610487) 2016-03-10 Albert Astals Cid * Audio Cards: Make some of the image loading async (d0b7bcc5c) * Use fixedHeaderHeight only in the non cardtool cards Approved by: Andrea Cimitan (7552279c2) * asynchronous is only false on the fake card in cardtool (07566ccc7) * Resolve title alignment on card creator time instead of on runtime (df1f23834) * Do not create fallback code for the card tool fake card (a26f1c6e4) 2016-03-10 Michael Zanetti * Allow alt+tabbing in staged mode too Fixes: #1540502 Approved by: Albert Astals Cid (016321379) * Allow invoking the staged mode spreads by mouse right edge pushes too Fixes: #1540392 Approved by: Michael Zanetti (8efd9ed0d) 2016-03-10 Lukáš Tinkl * Fix tiny windows when switching stages (d2913676e) 2016-03-10 Michael Zanetti * Visual updates for the windowed spread Fixes: #1488148 Approved by: Unity8 CI Bot, Lukáš Tinkl (5ffa1eaa6) * Make launcher scalable, allow it locking Fixes: #1511015 Approved by: Unity8 CI Bot, Lukáš Tinkl (258435536) * Implement Launcher's keyboard navigation and updated pip design Approved by: Lukáš Tinkl (82e4b970b) 2016-03-10 Andrea Cimitan * Use Text.Wrap for body notification text Fixes: #1544909 Approved by: Michał Sawicz (c259b706c) 2016-03-10 Michael Zanetti * Some visual updates and rotation lock for the virtual touchpad Fixes: #1549087 Approved by: Unity8 CI Bot, Albert Astals Cid (857f0f0bc) 2016-03-10 Albert Astals Cid * Fix resizing the dash bringing temp scopes size out of sync Fixes: #1543130 Approved by: Lukáš Tinkl (cde6a49b4) 2016-03-10 Lukáš Tinkl * Elide the window title not to let it overflow into the indicators area Fixes: #1535767 Approved by: Andrea Cimitan (201433a7a) 2016-03-10 Andrea Cimitan * Use makeSureVisible for Rating widget in PreviewRatingInput (446a821a7) 2016-03-10 Lukáš Tinkl * unify the panel and window decos colors (b1d16d303) * try harder to filter out enterprise networks (468a177e9) * fix theme when restarting u8 from scratch (620c3423c) * fix switching theme (8f44a64bd) * tweak TC margins (a12b26531) 2016-03-10 Michael Terry * Merge from trunk (91e81972e) 2016-03-10 Nick Dedekind * fixed progress item test (d3ebb748a) 2016-03-10 Albert Astals Cid * Merge cardCreatorFixedHeaderSizeOptimization (20d616f5d) 2016-03-10 Lukáš Tinkl * password page rework (67b54b968) * widen margins (0e90bf189) * fix white Label color (4aba2b9f1) 2016-03-10 Albert Astals Cid * See -> Show (887f05b6b) * also switch the min/maxwidth/height (e2de895ab) * add the other two windowed variants too (fdefead57) * These are readonly too (i think) (b210feef0) * Add SurfaceManagerControls (856d764fa) * Make it work on non fullscreen windows too (64a30d5e2) * Desktop stage: Support rotatesWindowContents (4eb4f7474) 2016-03-10 Michael Terry * Fix Tutorial qmluitest too, whoops! (5b38a050e) 2016-03-10 Nick Dedekind * enable progres value (b5d33ac37) 2016-03-10 Michael Zanetti * merge ~lukas-kde/unity8/dynamicLauncherIcons as prereq (2fe0e67c7) 2016-03-10 Lukáš Tinkl * merge trunk (e949a4992) * increase margins as requested by design (8f473efdc) 2016-03-10 Michael Zanetti * merge prereq (f0f4807b2) * merge in launcher-sizing as prereq (1d878e086) 2016-03-10 Andrea Cimitan * Fix close button in previewOverlay (05cad8386) 2016-03-10 Michael Zanetti * fix it without breaking the rest of the shell (c06cbad12) * fix the snap decisions (db4eddb60) * fix the Dialogs (d2bd69367) 2016-03-10 Andrea Cimitan * merged (f92aff69d) 2016-03-10 Michael Zanetti * merge with trunk (d79bff563) * allow navigating the staged spreads with keyboard too (ea5f0a6ec) * merge trunk (c6b1db8d7) 2016-03-10 Albert Astals Cid * Merge (68d54dde3) * Merge (deb68a9cd) 2016-03-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e73b47aa7) 2016-03-09 Michael Terry * Remove tutorial autopilot test; it's much harder to test via autopilot now that each page fires separately, and we cover it well in qmluitests; there's nothing autopilot-integraty about it (99800d562) 2016-03-09 CI Train Bot * Resync trunk. (ea993e991) 2016-03-09 Michael Terry * Fix failing test (b0a5c3000) 2016-03-09 Lukáš Tinkl * sync password strength colors (2cff5668a) 2016-03-09 Michał Sawicz * Make dash respawn indefinitely (da6042d24) 2016-03-09 Lukáš Tinkl * correct error color (bd3ebc417) 2016-03-09 Michael Terry * Merge from trunk (a5f8572d4) 2016-03-09 Lukáš Tinkl * provide feedback when entering passcodes in wideview mode (4325d49d4) * color fixes for the new UITK (95ebb9ede) 2016-03-09 Michael Zanetti * merge ~mzanetti/unity8/darker-spread-bg (dd1c97811) * adjust the panel handle's palette (6b62fae75) 2016-03-09 Albert Astals Cid * test filterwidgetfactory (b1ee23e52) * fix tag (702de38df) * check rangeinputfilter here (30c552936) * Add haptics to ScopesListCategoryItem buttons (9ed6b1e4d) 2016-03-09 Lukáš Tinkl * unbreak locking the device from the session indicator (cced04dc0) 2016-03-09 Michael Zanetti * prevent the same mistake from happening again (c77deef58) * adjust the stage background to be a tad darker (129d6c82c) 2016-03-09 Lukáš Tinkl * also hide the duplicate Reboot entry (44d21d705) 2016-03-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b2a1a5e70) 2016-03-08 Lukáš Tinkl * tweak session indicator actions (fe6c2af21) 2016-03-08 CI Train Bot * Update translation template (b9ac98c01) * Releasing 8.11+16.04.20160308-0ubuntu1 (64826224a) 2016-03-08 Albert Astals Cid * Make these tests pass with the new SDK (70e1bb98c) 2016-03-08 Michał Sawicz * Update headers for Dash and Splash to work properly with the new UI toolkit release. Approved by: Michał Sawicz (2db15d127) 2016-03-08 Nick Dedekind * Fixed colours palette value set. Moved ModemItem to USC. Approved by: Michał Sawicz (e22fb8511) 2016-03-08 Andrea Cimitan * replace selected.backgroundText with normal.backgroundText in Splash, Notifications, Wizard Approved by: Albert Astals Cid (5c11c1133) 2016-03-08 Zsombor Egri * Use SuruDark theme instead of the deprecated SuruGradient. Approved by: Michael Zanetti, Albert Astals Cid, Zoltan Balogh (c47f2b854) 2016-03-08 Lukáš Tinkl * fix layout (18c638e76) * don't try to set the password if it's empty (3dffe3993) * remove Blend (c88e79f86) 2016-03-08 Michael Terry * Merge from trunk (38d124f84) * Add test for watch code (db71975d3) 2016-03-08 Lukáš Tinkl * change label to "Preferred Name" (9fa984b3b) 2016-03-08 Albert Astals Cid * We need to clip here (161f5a42c) 2016-03-08 Lukáš Tinkl * enable the session indicator (fe788e0bb) 2016-03-08 Albert Astals Cid * Merge (5b1ee6de1) * Merge (8325d8cd4) * Merge (9d939bb75) * Merge (94f3744c0) * Merge (3e475964a) 2016-03-08 Michael Zanetti * parent all the items (6e456bb02) 2016-03-08 Lukáš Tinkl * merge lp:~mzanetti/unity8/better-windowed-logic (d8374b91c) 2016-03-08 Michael Terry * Merge from trunk (9ed586eb7) 2016-03-08 Albert Astals Cid * Add context for Re-dock as asked by translators (19b326ea5) 2016-03-07 Andrea Cimitan * Change mocks to be more generic (9cec511b5) 2016-03-07 Lukáš Tinkl * new conditions to show the map, > GU 110 (360e0ee29) 2016-03-07 Andrea Cimitan * As review (bd35217d8) 2016-03-07 Albert Astals Cid * More version pushing (a33d54664) 2016-03-07 Andrea Cimitan * Reworked one if/else (901d99def) 2016-03-07 CI Train Bot * Update translation template (21901420c) * Releasing 8.11+16.04.20160307-0ubuntu1 (50d4c3203) 2016-03-07 Rodney Dawes * Re-enable the purchaseCancelled signal. Approved by: Unity8 CI Bot, Albert Astals Cid (218ae05c3) 2016-03-07 Andrea Cimitan * Bumped deps requirements and fixed test (be39f78d9) * merged trunk (c5d0417a5) * Forgot to add test file :) (88f97538a) * Merge and fix cardCreator test (a30ca7e26) 2016-03-07 Albert Astals Cid * forceLayout before calling positionViewAtIndex (c9fdb2572) 2016-03-07 Andrea Cimitan * Fix AP tests with new single preview (4849c3326) 2016-03-07 Michael Zanetti * fix issues from review (ba481c40f) 2016-03-07 Albert Astals Cid * Merge (6d8f2cb27) * Merge (2be14640c) * Merge (180d2f630) * Merge (6f15a8544) * Merge (a8d9be7b7) * Increase deps versions (a7c48703a) * Merge (cdd7a511d) 2016-03-05 Lukáš Tinkl * merge trunk (10eba0f5f) * merge trunk (05b9c1fd1) 2016-03-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (51e24ace7) 2016-03-04 Josh Arenson * Fix translations (30ee98b68) * Fix translations (d3d16c8c8) 2016-03-04 Michał Sawicz * Merge lp:~unity-team/unity8/indicator-color-fixes (d59347807) 2016-03-04 Tim Peeters * bump the version for all UITK dependencies (90a7b7b33) * update version of uitk dependency (0fd290f25) * fix (9326f94df) * fix black header (06229c560) 2016-03-04 Michał Sawicz * fix color values (71e6e16fb) 2016-03-04 Nick Dedekind * version bump (c6bd10576) * use disabled palette over inactive (45ec19e9d) * Fixed coloring in panel (61d34b809) 2016-03-04 CI Train Bot * Resync trunk. (64c6d1316) 2016-03-04 Lukáš Tinkl * map tablet mode (55783e0b9) * revert map hack (458f42a1e) * provide a range of ports to QML JS Debugger (e64c6b4b3) 2016-03-04 Albert Astals Cid * Concierge mode generated code optimization (15626fed6) * Merge (46bc39e59) * Merge (ef7dc10ac) * Merge (11911e66e) * Merge (e9cd011a0) 2016-03-04 Andrea Cimitan * bumped unity-scopes-impl dep (21ac59338) 2016-03-04 Albert Astals Cid * Resolve cardArtStyle on compile time (71cdedb51) 2016-03-04 Lukáš Tinkl * use Ubuntu.Connectivity for online checks (e0bb8eb6e) 2016-03-04 Andrea Cimitan * merged (6b5d3d64d) * Updates to API (66e690e19) 2016-03-04 Lukáš Tinkl * disallow resizing windows up past the Panel (da773c837) 2016-03-04 Andrea Cimitan * Rename to social actions (ce3abbb40) 2016-03-03 Lukáš Tinkl * fill all the page height (d9fa7ee7b) 2016-03-03 Michał Sawicz * Use dpkg-architecture, not arch, to disable touch emulation (7268a098d) 2016-03-03 Albert Astals Cid * Merge (058d56bd0) * Merge (0d80eee8c) * Merge (9f18b59e1) * Merge (f41454c59) * Bring back the simple title code (no button needed) (ed49d9fb6) * Hide the extraPanel when showing the popup (713bcb5b8) * Fix height calculations (7ef763a52) * Adapt tests (05f351d48) * Seems we don't really need the ShaderEffectSource (7189f312c) * less warnings on rebuilding of the repeater (1da597620) * Make the cancelButton be bigger than jsut exactly the cancel text (2abd5b4e2) 2016-03-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c09b51672) 2016-03-03 Lukáš Tinkl * drop dependency on timezonemap-data (d2ff88f6a) 2016-03-03 Michael Zanetti * don't do it properly... too late for that :( (dd905cb93) 2016-03-03 Lukáš Tinkl * merge geonames support (lp:~mterry/unity8/oobe-timezone) (869caa8c7) 2016-03-02 Lukáš Tinkl * use ColumnLayout (25d76360d) 2016-03-02 Josh Arenson * merge trunk (fb8862a78) * Merge trunk (800f2e42e) 2016-03-02 Lukáš Tinkl * one real name, Skip/Next buttons (d53f23007) 2016-03-02 Josh Arenson * Fix giant merge mess. (8daa47e3e) 2016-03-02 Lukáš Tinkl * restore the always-visible map, fix aspect ration in that case (cffa6443d) 2016-03-02 Michael Terry * Go back to sorting cities (when no search pattern entered) by population; Paty liked it (6ce18f86b) 2016-03-02 Michael Zanetti * register MirSurfaceInterface as a qml datatype (425a42503) 2016-03-02 Lukáš Tinkl * close also on Esc (af04ac30d) * no cache, more fun (94190f730) 2016-03-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1ca463141) 2016-03-01 Josh Arenson * Cleanup some more lightdm stuff (d1e7f022b) * Cleanup a very large mess. (64f454920) 2016-03-01 Lukáš Tinkl * fix bottom OSK margin (eb36a03de) * increase connected delegate height (1b35816b0) * remove divider and spacing (57f28a610) * fix inner delegate margins and map-over-OSK (2eaf5b446) * return early to prevent accepting key presses past the max length (c8b6ebfb2) * Watch for launcher item icon changes (9b64cbef6) * fix focus when coming from greeter (d97e969f7) 2016-03-01 Michael Terry * Watch for user real name updates in greeter (9aee0c997) * Fix some review comments (e54d85c9a) 2016-03-01 Michael Zanetti * property parent the OSK surface in mocks (b53874473) 2016-03-01 Andrea Cimitan * Changed API call for activateAction (535c3a6c3) 2016-03-01 Albert Astals Cid * Make these tests pass with the new SDK (9ef79d3d0) 2016-03-01 CI Train Bot * Update translation template (c0643bb74) * Releasing 8.11+16.04.20160301-0ubuntu1 (a3c84ff55) 2016-03-01 Andrea Cimitan * Updated the Preview view to use a single PreviewModel instead old PreviewStack, using a Loader instead ListView Fixes: #1541967 Approved by: Albert Astals Cid (05b99f2eb) 2016-03-01 Albert Astals Cid * Hook the new scope.activationInProgress property Fixes: #1537132 Approved by: Andrea Cimitan (1189f5054) 2016-02-29 Michael Terry * Sort default cities by name, not population (8134b4b98) 2016-02-29 Josh Arenson * Merge trunk. (f77a0fe18) 2016-02-29 Michael Terry * Add default city list for the current country (9a5d0c741) * Some small fixes (6297dc31d) 2016-02-29 Lukáš Tinkl * size the LockScreen component properly (55ecae8b4) 2016-02-29 Andrea Cimitan * merged (7d3e51f02) 2016-02-29 Nick Dedekind * merged with trunk (c91a996a6) 2016-02-29 Michael Zanetti * wait for the surface (e159dbdf3) 2016-02-29 Lukáš Tinkl * similar fix to height... (8824bd186) * fix for fullscreen apps in desktop mode (8516e8767) 2016-02-29 Andrea Cimitan * Changed more colors from selected.backgroundText to normal.backgroundText (aae0efc1c) 2016-02-29 Nick Dedekind * use disabled palette over inactive (2a11a9e9d) 2016-02-29 Albert Astals Cid * check for adjusting up first (cfba97881) * Take into account that sectionItem height can change (a51563c9e) 2016-02-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (57f68ef60) 2016-02-26 Michał Sawicz * Add autopilot as DEP-8 tests (8a34f5b0f) 2016-02-26 Michael Terry * Undo extern bit, geonames now has it (4e333ea2a) * Fix header include, add missing setModel (246c47b83) * Require geonames 0.2 (6561899a0) 2016-02-26 Lukáš Tinkl * also handle Enter/Return keys (b90d9eccd) * modified the unlock() test for the HW keyboard case (f500c2f6c) * fix failing tests due to missing focus (b9c963d1a) * enable HW keyboard usage, turn everything into proper FocusScopes (743da53aa) 2016-02-26 Michał Sawicz * Allow stderr in autopilot test (0cd682edb) 2016-02-25 Michael Terry * Fix pkg check (6541fbfee) * Bring back custom implementation, so we can use lat/long and country codes (379afa264) 2016-02-25 Michał Sawicz * Add autopilot autopkgtest (90e95ae64) 2016-02-25 Michael Terry * Add activity indicator (685014a36) 2016-02-25 Michael Zanetti * merge prereq (391bd947a) * fix an issue where the highlight might not be removed after launching (4fa59aeb5) 2016-02-25 Andrea Cimitan * Set an implicit height (9a51eedef) 2016-02-25 Albert Astals Cid * Make unity-scope-tool package install things better (c7ecc2ea5) 2016-02-25 Andrea Cimitan * Fix as of albert request (a76224c0f) 2016-02-25 Albert Astals Cid * We don't need this background, DashContent already has (4655e6474) 2016-02-25 Michael Zanetti * add right edge push area to all stages (2655afe47) 2016-02-25 Lukáš Tinkl * fix tiny windows when switching stages (73f71311f) 2016-02-25 Michael Zanetti * merge launcher-sizing as prereq (d7dce84ca) 2016-02-25 Andrea Cimitan * Reduce top margin from review text area since we removed the label for adding review (8fbb77361) * Cosmetics (d8415d24f) 2016-02-25 Michael Zanetti * default to autohide (618281555) * don't shrink the complete stage (78c2f299f) * merge prereq (b51b98e01) 2016-02-25 Andrea Cimitan * Use compare (de52626b0) * Use uri (98f679ce8) * Fix as review (06290e64d) 2016-02-25 Michael Terry * Whoops, add missing files (5232a7a55) * Proxy more input settings to USC (853885228) 2016-02-25 Andrea Cimitan * cosmetic changes (efd5a5dfe) 2016-02-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cab5d9c06) 2016-02-25 Zoltán Balogh * Sync with trunk (2310cc74d) 2016-02-24 Josh Arenson * Another solution. (f78a1b0d7) 2016-02-24 Michael Terry * Use u-s-s plugin rather than our own code (b12b21372) 2016-02-24 Josh Arenson * Fix issue where a passwordless user was logged in automatically. (a5c485f9e) 2016-02-24 Andrea Cimitan * merge trunk (e5d14f9a7) * New design for rating review, should hide the box until you rate when you require a rating (1217ebe6c) * add test for string and array of uri (9d13f9f51) 2016-02-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ad600844b) 2016-02-24 Lukáš Tinkl * review fixes (ae1f4f578) 2016-02-23 Josh Arenson * Test a hack. (67eab2974) * [ Albert Astals Cid ]; Make the audio previews create a playlist (LP: #1540477) [ CI Train Bot ]; Resync trunk. added: po/aa.po; Update translation template (93fdc9890) * Change signals and cleanup. (e4820cde9) 2016-02-23 Andrea Cimitan * removed loader (dbe886179) 2016-02-23 Lukáš Tinkl * unbreak margins (2b57762a6) 2016-02-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6742c292a) 2016-02-22 Lukáš Tinkl * fix bad whitespace (f342330e1) 2016-02-22 Josh Arenson * [ Albert Astals Cid ]; Make the audio previews create a playlist (LP: #1540477) [ CI Train Bot ]; Resync trunk. added: po/aa.po; Update translation template (19ca6e910) 2016-02-22 Lukáš Tinkl * scroll the view on top when we connect to a new AP (040cd45ba) 2016-02-22 Zoltán Balogh * Sync (d18278b4f) 2016-02-22 Lukáš Tinkl * vertically center the filter field (35f448769) 2016-02-22 Andrea Cimitan * Fix GenericScopeView test (ecd93c6a4) * Fixed mock (e8c285ee5) 2016-02-22 Lukáš Tinkl * optimize the resource heavy TZ page some more (f3fd679cf) 2016-02-22 Albert Astals Cid * Merge (df5011c0a) * Merge (832604d0c) * Merge (657b35cd8) * Merge (5db15cec5) * Merge (a6eb39a34) * Merge (239f15cf4) 2016-02-22 CI Train Bot * Resync trunk. (4ec89129d) 2016-02-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8538400fc) 2016-02-19 Michael Terry * Add long-swipe-from-left-edge screen (d64d02d68) 2016-02-19 Andrea Cimitan * Fix Review widget (a1b40724a) 2016-02-19 Josh Arenson * Allow the shell to blacklist input devices and force the OSK shown. (276449839) 2016-02-19 Albert Astals Cid * Merge (02f76d2c1) * Merge (0283d3aef) * Merge (9c4a0d32d) * Merge (ad9429210) * Merge (9faf92778) * increase dep (e7469dbdd) * fix (eaa1d400e) 2016-02-19 Michael Terry * Merge from trunk (d5e207195) 2016-02-19 Lukáš Tinkl * make the TZ listview fill maxContentWidth (800b41e2e) * invalidate the filter initially to get the list for the correct country (acf7bca13) 2016-02-19 Andrea Cimitan * Some updates to files (7d564981d) * Bumping down (2e3bce469) * merged (4f737006f) 2016-02-19 Albert Astals Cid * Merge trunk (b6056febf) 2016-02-19 Andrea Cimitan * Patching in single-preview (19ea80edb) 2016-02-19 Albert Astals Cid * clazy fixes (8437a8fbd) 2016-02-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (83f86a717) 2016-02-18 Michael Zanetti * fix label height (a0c8000b9) * try overriding units.gu for the internal screen (ddc2cd3d1) * use XDG_CONFIG_HOME for the local config override instead of . (189082023) * merge trunk (c2d8f1f2a) 2016-02-18 Lukáš Tinkl * really move the OSK away... (45f183092) * offload the diagnostics too, sometimes it takes too long to load (ace333bc5) * move away (75aefd8e5) * account page tweaks (9d20333e9) 2016-02-18 Michael Zanetti * drop the switching by kbd only again (895dd86f5) 2016-02-18 Lukáš Tinkl * better tablet mode detection, use layouts on the TZ page and move the models up (0a23eb280) 2016-02-18 Michael Zanetti * add a devices.conf doc file (857bd9041) 2016-02-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7cdf4234a) 2016-02-18 Lukáš Tinkl * merge trunk (520a130e8) 2016-02-17 Albert Astals Cid * Use the new undeprecated connectivityqt::Connectivity (4b089b8b3) 2016-02-17 Michael Zanetti * merge trunk (53f85f713) 2016-02-17 Michael Terry * Add test (4449c5eed) 2016-02-17 Nick Dedekind * whitespace (bd3a9b07b) 2016-02-17 Michael Terry * Merge from trunk (0825b82bf) 2016-02-17 Albert Astals Cid * Use ternary operators as suggested by Andrea (ae2d1a197) * Add the else branch so we reset the size in all situations (1c65ebbba) 2016-02-17 Nick Dedekind * version bumps (9488fc43a) * reverted changes (28cb29815) * tweak fullscreen on no lo chrome (ea115d5f1) * reverted unnecessary fullscreen changes. better low chrome support (24b99826e) 2016-02-17 Daniel d'Andrada * Add missing #include (77eba27f6) * Ensure the QML engine doesn't delete our mock MirSurfaces on its own. (c2798badd) 2016-02-17 Nick Dedekind * update surface state (cf7a5e9d7) 2016-02-17 Gerry Boland * Indicators: set menu height binding while fully open/closed, fixes dynamic grid unit bug (1670c32fa) 2016-02-17 Albert Astals Cid * Merge (8dad1d76f) * asynchronous is only false on the fake card in cardtool (6da31d1fd) * Merge titleAlignmentOnCompileTime (04aff4572) 2016-02-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bf73bd68a) 2016-02-16 Josh Arenson * [ Albert Astals Cid ]; Do not use components in card creator generated code; Forward the makesurevisible signal from the inner preview widget; Make fallback also be fallback when the image is empty and not only on error (LP: #1531913); Make the artShapeSize assignment be updated when using dynamic grid units; Visual improvements to the dash audio play cards; We don't use the unity-scope-scopes anymore (LP: #1439172) [ Andrea Cimitan ]; only request a bigger image if zoomable widget data property is true, otherwise just leave the screen size (LP: #1536814) [ CI Train Bot ]; Update translation template [ Daniel d'Andrada ]; Set initial surface size (LP: #1532974) [ Daniel d'Andrada, Michał Sawicz . Window Size Hints [ Florian Boucault ]; Splash screen: delay showing the ActivityIndicator by 2 seconds. [ Lukáš Tinkl ]; Replace the word "phone" with a more generic term "device" in the welcome wizard (LP: #1294732, #1543527) [ Michael Terry ]; Have the tablet greeter set appropriate OSK hints if the user has a passcode instead of a passphrase. (LP: #1544173) [ Michael Zanetti . Don't eat mouse events in the edgebarrer [ Michał Sawicz ] * Bump unity-api dependencies [ Nick Dedekind ]; Added support for secondary indicator actions (LP: #1398888. Remove zombie if they're not animated. (LP: #1534541. Removed unused panel resources [ Ted Gould ]; Start the indicators after Unity8 starts instead of before [ Albert Astals Cid ]; LVWPH: Reset to initial values when list is empty (LP: #1540490); Make LazyImage qmltest less flaky on CI [ Andrea Cimitan ]; Make LazyImage qmltest less flaky on CI [ CI Train Bot ]; Resync trunk.; Update translation template [ Michael Terry ]; Display the current user's real name on the tablet lockscreen. (LP: #1536714) (c570a5948) 2016-02-16 Rodney Dawes * Re-enable the purchaseCancelled signal. (f53cbe813) 2016-02-16 Michael Terry * remove bit of cleanup that is in another branch; we conflict if I include it (fa2c50e5c) * Merge from trunk (75b8c19c5) * Don't show bottom tutorial for clock app, it shows permission screen on first launch (a28dc1d19) 2016-02-16 Lukáš Tinkl * merge trunk (5d93600a3) 2016-02-16 Michał Sawicz * Add udev rules to make sure we have access to uinput (67387d581) 2016-02-16 Nick Dedekind * fix window sizes (3ef0af1f1) * low crome (982fabee5) 2016-02-16 Michael Zanetti * unify qDebug/qWarning use (1da3fd1e3) * fix primaryOrientation (7fd5fcddc) * formatting (9c2861f2c) * add all the options in qml to make sure the tests don't load stuff from config (95ff8b6a0) * fix issues from reviews (2a1735a49) 2016-02-16 Lukáš Tinkl * update 0 TZ highlight asset, disable the map on startup (4fb03514e) 2016-02-16 Michael Zanetti * drop now obsolete waitForGreeterToStabilize() (bbbdccdb7) * stabilize swipeAwayGreeter() (3406a659c) 2016-02-16 Albert Astals Cid * Adapt test (776276cc9) * Merge (6fea34b9a) * Move title alignment to card creator time (40eeb3763) * log-- (78a22677e) * log-- (dba5275fa) * Always use fixedHeaderHeight for the non card tool cards (411816428) * Make the diff smaller for easier reviewing (149cc7973) 2016-02-16 Daniel d'Andrada * tst_Shell: Remove unused qml items (5eee4db42) 2016-02-16 Michael Terry * Some minor cleanup nits (9cc9cef4a) 2016-02-16 Albert Astals Cid * asynchronous is only false on the fake card in cardtool (2cd0d2aaa) 2016-02-16 Lukáš Tinkl * bigger pin, fixed -8 highlight asset (813440e0f) 2016-02-16 Albert Astals Cid * Run the tests also for the card creator variant of the call (e1e302388) 2016-02-16 Michael Zanetti * merge trunk (df4d3bfd0) * clear m_virtualKeyboard when it is destroyed (fee4939e5) * merge trunk (206625542) 2016-02-16 Lukáš Tinkl * rollback to non-clickable map (5ade78437) 2016-02-16 Zsombor Egri * merge with trunk (98315d816) 2016-02-16 Albert Astals Cid * Do not create fallback code for the card tool fake card (a552d24ba) 2016-02-16 Andrea Cimitan * cleanup (dc06b929a) * hook other dash renderers (d82c95696) * More signals, waiting for unity scope shell adjustments (528ccef43) 2016-02-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (96a9bcec7) 2016-02-16 Lukáš Tinkl * merge trunk, resolve conflicts (b4808776b) 2016-02-16 CI Train Bot * Update translation template (ca3af0ee3) * Releasing 8.11+16.04.20160216.1-0ubuntu1 (1d82d2c7b) 2016-02-16 Albert Astals Cid * Make the audio previews create a playlist Fixes: #1540477 Approved by: Andrea Cimitan (d1f27b5dc) 2016-02-16 Lukáš Tinkl * tweaks for the map offsets (e59955dc0) * Olsen TZ fixes (missing Greenland + a typo) (dede4d91c) 2016-02-16 CI Train Bot * Resync trunk. (273311501) 2016-02-15 Lukáš Tinkl * reset views when switching between search and click (4d151b745) 2016-02-15 Michael Zanetti * update mocks/tests (868bceed0) * update to more declarative qtmir api (8f4dbe07b) 2016-02-15 Lukáš Tinkl * WIP: clickable timezone map (150205ce3) 2016-02-15 Michael Zanetti * merge lp:~ci-train-bot/unity8/unity8-ubuntu-xenial-landing-051 (b2db07675) * add focus animation (0dff68f2f) * more tweaks (6cc0a409c) 2016-02-15 Albert Astals Cid * Playlist from 0 to last song (e1c73ff3f) 2016-02-15 Lukáš Tinkl * add splash/header assets for desktop version (2b7927d74) * add forgotten TZ hilite image (012e9cc48) 2016-02-15 Albert Astals Cid * Add emblem to the preview header widget (ceaf21cec) * Add a test for open scope (f524787f3) * Fix onOpenScope (261c6a0d7) 2016-02-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (90bbff2a5) 2016-02-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c048b28b3) 2016-02-12 Michael Zanetti * merge silo 51 as prereq (27ae58cac) * drop leftover wait (e9a2741b1) 2016-02-12 Lukáš Tinkl * integrate new timezone map assets (f3ece2934) 2016-02-12 Michael Zanetti * sync fake config after writing and before reading it (90400f9ee) * move it to /etc/ubuntu/ (30441cfbb) * add some debug print if parsing the options doesn't work out (f0993e609) 2016-02-12 Lukáš Tinkl * reworked the Account page (3370734c9) 2016-02-12 Michael Zanetti * add missing copyright header (d4f49a5ea) * use expectFail to make test more robust (f479788a3) 2016-02-12 Andrea Cimitan * Use Text.Wrap for body notification text (fbc047d32) 2016-02-12 Michael Zanetti * fix issues, add tests (c021e5f04) 2016-02-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e6740eeb9) 2016-02-12 CI Train Bot * Update translation template (d5ffef0d4) * Releasing 8.11+16.04.20160212-0ubuntu1 (742e1b1a6) 2016-02-12 Michał Sawicz * Bump unity-api dependencies Approved by: Michael Terry (c4f22b56d) 2016-02-12 Michael Terry * Have the tablet greeter set appropriate OSK hints if the user has a passcode instead of a passphrase. Fixes: #1544173 Approved by: Josh Arenson (55061aeea) 2016-02-12 Lukáš Tinkl * Replace the word "phone" with a more generic term "device" in the welcome wizard Fixes: #1294732, #1543527 Approved by: Andrea Cimitan (df5b54161) 2016-02-12 Nick Dedekind * Remove zombie if they're not animated. Fixes: #1534541 Approved by: Albert Astals Cid, Marcus Tomlinson (2c54374cd) 2016-02-12 Albert Astals Cid * Make the artShapeSize assignment be updated when using dynamic grid units (6f24d8555) * Visual improvements to the dash audio play cards (ac4d60b20) * Do not use components in card creator generated code (73b509ade) * Make fallback also be fallback when the image is empty and not only on error Fixes: #1531913 Approved by: Andrea Cimitan (76c1fc387) 2016-02-12 Michael Zanetti * Don't eat mouse events in the edgebarrer Approved by: Albert Astals Cid (1b8086ed6) 2016-02-12 Andrea Cimitan * only request a bigger image if zoomable widget data property is true, otherwise just leave the screen size Fixes: #1536814 Approved by: Albert Astals Cid (da6cbd487) 2016-02-12 Albert Astals Cid * Forward the makesurevisible signal from the inner preview widget (8b1e44c31) 2016-02-12 Florian Boucault * Splash screen: delay showing the ActivityIndicator by 2 seconds. Approved by: John Lea, Daniel d'Andrada (bdd8ad85e) 2016-02-12 Daniel d'Andrada * Set initial surface size (43f32161e) 2016-02-12 Albert Astals Cid * We don't use the unity-scope-scopes anymore Fixes: #1439172 Approved by: Unity8 CI Bot, Michał Sawicz (a3c83ad84) 2016-02-12 Nick Dedekind * Added support for secondary indicator actions Fixes: #1398888 Approved by: Lukáš Tinkl (a01a8b44a) * Removed unused panel resources Approved by: Albert Astals Cid (0130d1858) 2016-02-12 Daniel d'Andrada * Window Size Hints Approved by: Michał Sawicz (d6cef12f5) 2016-02-12 Ted Gould * Start the indicators after Unity8 starts instead of before Approved by: Michael Terry, Michał Sawicz (8c1029e48) 2016-02-11 Michael Zanetti * make it work (9803e063d) 2016-02-11 Lukáš Tinkl * prepare for Account page rework (removal of password) (05a36be8c) 2016-02-11 Michael Zanetti * add support for loading the deviceconfig from an external config file (1d243ddc8) 2016-02-11 Albert Astals Cid * Require newer sdk (4fde247d5) 2016-02-11 Andrea Cimitan * Remove fontscale (7b78ca7be) * Some adjustments (916527146) 2016-02-11 Lukáš Tinkl * feedback update (3ae411f41) * merge trunk (1ce212ece) 2016-02-11 Albert Astals Cid * Merge fallback for empty (dc0885dde) 2016-02-11 Andrea Cimitan * merged lp:~aacid/unity8/do_not_use_components_generated_code (f37e13739) 2016-02-11 Albert Astals Cid * Merge circleForAudioCards (35d5fdc50) * we show filter button all the time now if there's filters (b19201bab) * Design wants to experiment/test with a bigger top margin (5f1c239e8) 2016-02-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (53f49440d) 2016-02-10 Michael Terry * Merge from trunk (f5a7a4439) * Set input method hints when a user has a passcode (d4d1ccc32) 2016-02-10 Michał Sawicz * Merge trunk (bc8fff5c7) 2016-02-10 Albert Astals Cid * Use a better is not a number checker (cda93c68e) * Merge (2e8179900) 2016-02-09 Josh Arenson * Re-enable tests. (01f899f14) 2016-02-09 Michael Terry * Make Get/GetAll const (7e97f61d1) 2016-02-09 Albert Astals Cid * Seems we need this to force the slider to update itself with outside values (41634d8e8) 2016-02-09 Lukáš Tinkl * also the screenlock page (c2f170359) * remove mentions of "phone" in the wizard (c8c1fdd20) 2016-02-09 Albert Astals Cid * Fix resizing the dash bringing temp scopes size out of sync (c8b0b236e) 2016-02-08 Michael Terry * And actually expose Input interface in mock server, though it's unused for now (84f8b38b5) 2016-02-08 CI Train Bot * Update translation template (57c5b0da0) * Releasing 8.11+16.04.20160208-0ubuntu1 (e9b2e186b) 2016-02-08 Albert Astals Cid * LVWPH: Reset to initial values when list is empty Fixes: #1540490 Approved by: Andrea Cimitan (eed5bda67) 2016-02-08 Michael Terry * Display the current user's real name on the tablet lockscreen. Fixes: #1536714 Approved by: Michael Zanetti (29057a12c) 2016-02-08 Andrea Cimitan * Make LazyImage qmltest less flaky on CI Approved by: Albert Astals Cid (67de2ebc6) 2016-02-05 Albert Astals Cid * Reset to initial values when list is empty (45f16b579) 2016-02-04 Michael Terry * Go back to using empty string, not null string for bad but valid path (4fd0b3463) * Refactor AccountsService plugin to use less boilerplate (ac766b5c4) 2016-02-04 Albert Astals Cid * Merge (83064a15f) * Merge (ad1a04447) * Move the settings button out of the search line edit (15dd92e3c) * Merge (7363b65f5) * Merge (fec2cd2d0) * Merge (f5cffabbe) * Give some space between the popover and the OSK (655f33fa7) 2016-02-04 Michael Terry * Use utf8 encoding (f8958971f) * Use clear (b864eb9ee) 2016-02-04 Albert Astals Cid * less diff (195d3d5d5) * Use a binding instead of a direct assingment (9ec5d2307) 2016-02-03 Josh Arenson * Fix ninja complaining about qmldir files (9e7c95fc4) * [ Albert Astals Cid ]; Audio Preview Button: Don't gain focus on press (LP: #1517830); Better attempt at sanitizatio. Better looking application scopes for wide screens; Call printSettings correctly; Card test: Limit the precision we ask for doubles to be equal; Convert while into tryCompareFunction; Do not use the same filepath parameter for all the card creator createQmlObject calls (LP: #1536379); Fix some test shells being unstable in the armhf builders; Make revealByEdgePush more stabl. More reliable compares; Move the mouse over the bfb before waiting for rendering; Remove the DDAs constrains for every test; Set the background source size to the max we'll need + new background (LP: #1539011) [ Andrea Cimitan ]; Dynamically change click scope card size according to size (LP: #1536745); Should fix lazyimage test failures on fast machines [ CI Train Bot ]; Fix card tests on the phone; Update translation template [ Daniel d'Andrada ]; Desktop stage rotates only to follow screen orientation (LP: #1515977) [ Lukáš Tinkl ]; Hide/reveal the mouse pointer on touch/mouse events renamed: plugins/Utils/HomeKeyWatcher.cpp => plugins/Utils/WindowInputMonitor.cpp plugins/Utils/HomeKeyWatcher.h => plugins/Utils/WindowInputMonitor.h tests/mocks/Utils/HomeKeyWatcher.qml => tests/mocks/Utils/WindowInputMonitor.qml tests/plugins/Utils/HomeKeyWatcherTest.cpp => tests/plugins/Utils/WindowInputMonitorTest.cpp [ Michael Terry ]; Synchronize the mouse-cursor-speed and touchpad-cursor-speed properties with USC. (LP: #1536383) [ Michael Zanetti ]; Add InputMethod to secondary screen; Add a virtual Touchpad while external screen is connected; Make big tablets switch to windowed mode by plugging a kbd only (LP: #1535399); Prevent alt key presses from being dispatched to the app on alt+tab (LP: #1532862) [ Michał Sawicz ]; Make qmluitests.sh more robust and allow parallel test execution; Skip SessionBackendTest::testLogin1Capabilities until we talk to a mock instead (LP: #1532112, #1532113) (749897c35) 2016-02-03 Albert Astals Cid * Make the artShapeSize assignment be updated when using dynamic grid units (b9fc8a583) 2016-02-03 Michael Zanetti * some visual tweaks as per design and enabling the rotation lock (99a0e8e65) 2016-02-03 Nick Dedekind * added test for lp#1534541 (606508a08) 2016-02-03 Michał Sawicz * Merge trunk (df773bbdb) 2016-02-03 Nick Dedekind * fixed not releasing session if it wasn't animated (0eea7afb5) 2016-02-03 Michał Sawicz * Bump application API to 13 [ Daniel d'Andrada ] * Added ApplicationInfoInterface.initialSurfaceSize * MirSurfaceInterface: added size hints (d133ab2ba) 2016-02-02 Michael Terry * Quick fix for logging in with a mouse in NarrowView (954a72745) 2016-02-02 Daniel d'Andrada * Do not bump versions of anything (35341fe24) 2016-02-02 Michael Zanetti * merge trunk (360fdfbe6) * merge trunk (ace94d355) 2016-02-02 Albert Astals Cid * stylistic changes (ef97c1b77) * increase sdk dep (f00a5f461) * Merge (e39c16246) * Visual improvements to the dash audio play cards (11d7e001f) 2016-02-02 Michael Zanetti * change window switching logic to something that works better with a manual switch (50c0064c9) 2016-02-02 Albert Astals Cid * Actually, no, we need this, the creator is putting 1 instead of true (380ffebf7) * We can use !isConciergeMode (aa76ee9d5) 2016-02-02 Daniel d'Andrada * Merge trunk (370e9c030) 2016-02-02 Andrea Cimitan * merged el trunko (fc16a2ce0) 2016-02-02 Albert Astals Cid * Fix merge (230c5f6d5) * Merge (cdd043b36) * Merge (6ab3749e8) * Merge (10aaf2f81) 2016-02-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (861ebc504) 2016-02-01 CI Train Bot * Resync trunk. (71b8a3c5b) 2016-02-01 Michael Terry * Drop unneeded header (86d59f131) * Drop hack, not needed yet (7d02bb204) 2016-02-01 Andrea Cimitan * Yet another attempt (53e0b6aca) 2016-02-01 Michael Terry * Correct a comment (2a7104e54) * Display real name of current user in greeter (1648356ac) 2016-02-01 Albert Astals Cid * Make the audio previews also create a playlist (5ea3fe4e5) 2016-02-01 Andrea Cimitan * diff approach to diff approach :) (a87ed26f6) 2016-02-01 Albert Astals Cid * More stable lazy image test (fe08d46fc) 2016-02-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fc98c6972) 2016-01-29 CI Train Bot * Update translation template (0f3fb17e8) * Releasing 8.11+16.04.20160129-0ubuntu1 (76feda29a) 2016-01-29 Albert Astals Cid * Set the background source size to the max we'll need + new background (2c64b7b0e) * Call printSettings correctly (b820e73a8) * Better attempt at sanitization (bac7c953c) 2016-01-29 Andrea Cimitan * Dynamically change click scope card size according to size Fixes: #1536745 Approved by: Unity8 CI Bot, Albert Astals Cid (43a14903a) 2016-01-29 Albert Astals Cid * Better looking application scopes for wide screens (59205c1ee) * Audio Preview Button: Don't gain focus on press (42d84ef65) * Do not use the same filepath parameter for all the card creator createQmlObject calls (a78e41b52) 2016-01-29 Michael Terry * Synchronize the mouse-cursor-speed and touchpad-cursor-speed properties with USC. Fixes: #1536383 Approved by: Michael Zanetti (febe07aae) 2016-01-29 Michael Zanetti * Prevent alt key presses from being dispatched to the app on alt+tab Fixes: #1532862 Approved by: Lukáš Tinkl (0882beac7) 2016-01-29 Lukáš Tinkl * Hide/reveal the mouse pointer on touch/mouse events (0b10661e9) 2016-01-29 Michael Zanetti * Add InputMethod to secondary screen Approved by: Unity8 CI Bot, Lukáš Tinkl, Andrea Cimitan (0354171de) * Add a virtual Touchpad while external screen is connected Approved by: Andrea Cimitan (dc86d944f) * Make big tablets switch to windowed mode by plugging a kbd only Fixes: #1535399 (d07b43b99) 2016-01-29 Daniel d'Andrada * Desktop stage rotates only to follow screen orientation Fixes: #1515977 Approved by: Unity8 CI Bot, Michael Zanetti (78d1cfa61) 2016-01-29 Albert Astals Cid * Convert while into tryCompareFunction (b978a0b88) 2016-01-29 Andrea Cimitan * Should fix lazyimage test failures on fast machines Approved by: Michael Zanetti (e71aa8fe0) 2016-01-29 Michał Sawicz * Make qmluitests.sh more robust and allow parallel test execution Approved by: Albert Astals Cid (f8d324318) 2016-01-29 Albert Astals Cid * Fix some test shells being unstable in the armhf builders (1680f07ab) * Make revealByEdgePush more stable (293f8c1b2) * Remove the DDAs constrains for every test (d061380c2) * More reliable compares (662e2894e) 2016-01-29 CI Train Bot * Fix card tests on the phone (abd2819b1) 2016-01-29 Albert Astals Cid * Card test: Limit the precision we ask for doubles to be equal (04a414e27) * Move the mouse over the bfb before waiting for rendering (72323d73e) 2016-01-29 Michał Sawicz * Skip SessionBackendTest::testLogin1Capabilities until we talk to a mock instead Fixes: #1532112, #1532113 Approved by: Lukáš Tinkl (6d5062aaa) 2016-01-29 Albert Astals Cid * Hook the new scope.activationInProgress property (8122d43c4) * Increase deps (c0d41648f) 2016-01-28 Lukáš Tinkl * merge lp:~mzanetti/unity8/inputmethod2 (4f01f5d1a) 2016-01-28 Andrea Cimitan * Moved inside (c4fadeac0) * Solve flakyness (a21e38af8) 2016-01-28 Albert Astals Cid * No need to use components in card creator generated code (3ae55a48e) * Merge unity8 (ce7627c63) 2016-01-28 Michael Zanetti * merge prereq (de040db00) * merge with another prereq (85148c9aa) * merge prereq (93619fa8d) * merge ~dandrader/unity8/dontRotateDesktop-lp1515977 as a prereq (e7549d503) 2016-01-28 Andrea Cimitan * Moved some code in more logic place (e97c3acc2) 2016-01-28 Michael Zanetti * merge prereq (7c8f71c12) * merge trunk (5f24abc46) 2016-01-28 Albert Astals Cid * Merge lp:~unity-team/unity8/1536296 (463dd26cc) 2016-01-28 Michael Zanetti * drop debug prints (80bd828fb) 2016-01-27 Michael Zanetti * merge prereq (cad55296f) 2016-01-27 Nick Dedekind * Fixed coloring in panel (bf6e62393) * merged unity-theme (47bcfa349) 2016-01-27 Albert Astals Cid * Focus the slider on expanding (843411879) * Merge (47baa30ca) * Merge (0880a53ed) * Focus the expandable on expanding (39b4661b2) * Merge (ad304f5e9) * Merge (a45307481) * Merge (55b5e1f90) * Take into account OSK height for limiting the popover height (edf6e44af) 2016-01-26 Josh Arenson * [ Albert Astals Cid ]; Fix bug #1536296 added: tests/plugins/Dash/cardcreator/10.tst (LP: #1536296. Fix card tests on the phone [ CI Train Bot ]; Update translation template (3adb00b6a) 2016-01-26 Michael Zanetti * rebase on top of ~dandrader/unity8/dontRotateDesktop-lp1515977 (644f2a8c1) * merge prereq (02d1a22f9) * drop the locking behavior of double-tap-and-hold (ace44c04a) 2016-01-26 Albert Astals Cid * Merge (387a88286) * Merge (20ff50b86) * Merge (21c7db443) * Remove clicking on the scope title to trigger search (75c40bcb6) * Reorder params to make sure decodeURI doesn't have the problem with arg() (c8e318930) * Merge (5039f38ab) * Merge (be3b688f1) * Clicking on the (X) filters should open filters too instead of focus on search field (11d8a574f) * Fix clicking on recent searches (32f9adf18) 2016-01-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2f4f64d7e) 2016-01-25 Albert Astals Cid * Better attempt at sanitization (f40fe1e32) 2016-01-25 Michael Zanetti * add tests to make sure nothing intercepts input events around the edges (8c6ea24b7) 2016-01-25 Tim Peeters * bump the version for all UITK dependencies (cc018437a) * update version of uitk dependency (3184f16f3) * fix (5d7520f95) * fix black header (6ddf3bf6b) 2016-01-25 Albert Astals Cid * Merge (bf053a41b) 2016-01-25 Zsombor Egri * accidental change removed (bce05d708) * Use SuruDark instead of the deprecated SuruGradient (1ba4c2e72) 2016-01-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (10e4bbe4b) 2016-01-23 Michael Zanetti * don't eat events in EdgeBarrer (5457fe928) 2016-01-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (93f9cf12d) 2016-01-22 Andrea Cimitan * Add test as well (1c145751a) * Optimize ZoomableImage preview widget by not requesting bigger images when the zoomable property is false (fc755c764) 2016-01-22 Josh Arenson * Cleanup greeter && shell startup code (bf3af57bd) * Remove the workarround as running the greeter in Mir resolves this issue (17f5839d8) * merge sessions-model (40932bddc) 2016-01-22 Albert Astals Cid * Merge (1b81b532e) * Merge (40dee3dea) * Merge (dc0966477) * Hide popover when scope stops being current (cac0734f3) 2016-01-22 Daniel d'Andrada * s/SurfaceGeometry/SurfaceSize/ (eb0750b93) 2016-01-22 Albert Astals Cid * Fix slider spacing (a2c160282) 2016-01-22 Andrea Cimitan * Merged albert branch (5d59c1718) 2016-01-22 Josh Arenson * [ Albert Astals Cid ]; Clear fake item icon name as soon as it goes invisible (LP: #1531172); Fix LVWPH test failing on Xenial (Qt 5.5); Fix dragging so that test passes on Xenial; Fix focus on the dash page header text field with new SDK (LP: #1528178); Make the card creator test pass again; Quit the dash communicator thread before destroying it (LP: #1508485); Remove duplicated override_dh_auto_clean; SDK changed the name they give to the buttons, follow [ Andrea Cimitan ]; Fix a broken binding [ CI Train Bot ]; Resync trunk.; Update translation template [ Daniel d'Andrada ]; Have "make tryFoo" work with Qt 5.5; Make DragHandle tests run again. [ Lukáš Tinkl ]; Fix dismissing the launcher when clicking/tapping outside (LP: #1531339, #1530940); Fix panel drop shadow and click-to-focus of maximized apps (LP: #1531854); Fix wifi access point indicator items signal strength icon on desktop [ Michael Terry . Guard against a couple odd timing scenarios for the too-many-failed- login-attempts lockout screen.; Skip the wizard's password screens if there is already a password set by other means. (LP: #1531268); Stop the emergency dialer from accidentally exposing the mtp service. (LP: #1525981) [ Michael Zanetti ]; Make sure the triangle of the quicklist is in bounds (LP: #1531340) [ Pawel Stolowski ]; Changes 'shareData' and 'contentType' attributes to 'share-data' and 'content-type', to match existing naming schema. [ Albert Astals Cid ]; Introduce audio cards [ CI Train Bot . Update translation template [ Michael Zanetti . Introduce audio cards [ CI Train Bot ]; Resync trunk. Update translation template [ Nick Dedekind ]; Use volume-sync action to resync the volume control. (LP: #1520548) (cd7d4f413) 2016-01-22 CI Train Bot * Update translation template (22df6ab81) * Releasing 8.11+16.04.20160122-0ubuntu1 (73bdb21d0) 2016-01-22 Albert Astals Cid * Fix bug #1536296 (434b6af62) * Fix card tests on the phone (1f2ef0b82) 2016-01-22 Josh Arenson * Fix translations (ddceb6eb0) * Fix whitespace, remove some hacks (0b1f43a12) * Enable running the greeter as a Mir server. (d33fc2399) 2016-01-22 Andrea Cimitan * Added test (2892641ce) 2016-01-22 Albert Astals Cid * Specify min spacing for the apps scope on wide screens (c81c82ee7) 2016-01-21 Michael Terry * Flip tutorial arrows (67084dbb3) 2016-01-21 Albert Astals Cid * Add a test that proves we accept escaped quotes just fine (c0409a8d5) 2016-01-21 Lukáš Tinkl * wordwrap longer page titles (010bc2875) 2016-01-21 Albert Astals Cid * Merge unity8 (3a2816fb2) * Sanitize template/components contents (6f01cd63e) 2016-01-21 Andrea Cimitan * Dinamically reload card size for click scope (48fb27649) 2016-01-21 Michael Zanetti * make the info label not intercept the first press (ba3fb2810) 2016-01-21 Michael Terry * Require new AS schema (d1a47e541) * Sync AS cursor speed properties (f8ba2c15e) 2016-01-21 Albert Astals Cid * Do not use the same filepath parameter for all the card creator createQmlObject calls (65de3d7f4) 2016-01-21 Lukáš Tinkl * fix the SIM page not appearing sometimes (8512d50dc) 2016-01-21 Vesa Rautiainen * Fixing the vertical position of desktop spread item icon. (76c771ea5) 2016-01-20 Michael Zanetti * cleanup (9e9055a03) * fix OSK location (037f3161f) * make big tablets switch to windowed mode even with only a kbd attached (462d98396) * fix some review comments (454b3502b) * make the threshold readonly (fa55e6f45) * add a test, some more cleanup (04d37a5b0) 2016-01-20 Lukáš Tinkl * unbreak the clash between our timezone model and the one from system settings (2bb7773f6) 2016-01-20 Albert Astals Cid * Forward the makesurevisible signal from the inner preview widget (b929f5d98) 2016-01-20 Michael Zanetti * simplify rotation code (434e27923) 2016-01-20 Lukáš Tinkl * add a right margin as well, to make it consistent wwith the left one (809a9b351) 2016-01-20 Josh Arenson * [ Albert Astals Cid ]; Clear fake item icon name as soon as it goes invisible (LP: #1531172); Fix LVWPH test failing on Xenial (Qt 5.5); Fix dragging so that test passes on Xenial; Fix focus on the dash page header text field with new SDK (LP: #1528178); Make the card creator test pass again; Quit the dash communicator thread before destroying it (LP: #1508485); Remove duplicated override_dh_auto_clean; SDK changed the name they give to the buttons, follow [ Andrea Cimitan ]; Fix a broken binding [ CI Train Bot ]; Resync trunk.; Update translation template [ Daniel d'Andrada ]; Have "make tryFoo" work with Qt 5.5; Make DragHandle tests run again. [ Lukáš Tinkl ]; Fix dismissing the launcher when clicking/tapping outside (LP: #1531339, #1530940); Fix panel drop shadow and click-to-focus of maximized apps (LP: #1531854); Fix wifi access point indicator items signal strength icon on desktop [ Michael Terry . Guard against a couple odd timing scenarios for the too-many-failed- login-attempts lockout screen.; Skip the wizard's password screens if there is already a password set by other means. (LP: #1531268); Stop the emergency dialer from accidentally exposing the mtp service. (LP: #1525981) [ Michael Zanetti ]; Make sure the triangle of the quicklist is in bounds (LP: #1531340) [ Pawel Stolowski ]; Changes 'shareData' and 'contentType' attributes to 'share-data' and 'content-type', to match existing naming schema. [ Albert Astals Cid ]; Introduce audio cards [ CI Train Bot . Update translation template [ Michael Zanetti . Introduce audio cards [ CI Train Bot ]; Resync trunk. Update translation template [ Nick Dedekind ]; Use volume-sync action to resync the volume control. (LP: #1520548) (d6dc50a3a) 2016-01-20 Michael Zanetti * fix some review comments (88f047912) 2016-01-20 Florian Boucault * Delay showing the ActivityIndicator by 2 seconds. (9f551ce7a) 2016-01-19 Daniel d'Andrada * Set initial surface size (75771975f) 2016-01-19 Albert Astals Cid * Adapt to dismissTimer changes (8d07e0d34) 2016-01-19 Lukáš Tinkl * elide the window title not to let it overflow into the indicators area (432c0c200) 2016-01-19 Albert Astals Cid * dismissTimer change (4cabcf20a) * remove bottom: parent.bottom since we use fill: parent anyway (e8c964326) 2016-01-19 Josh Arenson * [ Albert Astals Cid ]; Clear fake item icon name as soon as it goes invisible (LP: #1531172); Fix LVWPH test failing on Xenial (Qt 5.5); Fix dragging so that test passes on Xenial; Fix focus on the dash page header text field with new SDK (LP: #1528178); Make the card creator test pass again; Quit the dash communicator thread before destroying it (LP: #1508485); Remove duplicated override_dh_auto_clean; SDK changed the name they give to the buttons, follow [ Andrea Cimitan ]; Fix a broken binding [ CI Train Bot ]; Resync trunk.; Update translation template [ Daniel d'Andrada ]; Have "make tryFoo" work with Qt 5.5; Make DragHandle tests run again. [ Lukáš Tinkl ]; Fix dismissing the launcher when clicking/tapping outside (LP: #1531339, #1530940); Fix panel drop shadow and click-to-focus of maximized apps (LP: #1531854); Fix wifi access point indicator items signal strength icon on desktop [ Michael Terry . Guard against a couple odd timing scenarios for the too-many-failed- login-attempts lockout screen.; Skip the wizard's password screens if there is already a password set by other means. (LP: #1531268); Stop the emergency dialer from accidentally exposing the mtp service. (LP: #1525981) [ Michael Zanetti ]; Make sure the triangle of the quicklist is in bounds (LP: #1531340) [ Pawel Stolowski ]; Changes 'shareData' and 'contentType' attributes to 'share-data' and 'content-type', to match existing naming schema. [ Albert Astals Cid ]; Introduce audio cards [ CI Train Bot . Update translation template [ Michael Zanetti . Introduce audio cards [ CI Train Bot ]; Resync trunk. Update translation template [ Nick Dedekind ]; Use volume-sync action to resync the volume control. (LP: #1520548) (f94a89eed) 2016-01-19 Albert Astals Cid * Make the fake timer implementation a bit less dummy (cc52f63fc) * Merge lp:~aacid/unity8/launcher_test_remove_dda_constraints (1f869760b) * Use a fake timer as suggested by Daniel instead of using a very big interval (2d3055935) * fix test (2b141f6f9) 2016-01-18 Albert Astals Cid * Audio Cards: Make some of the image loading async (445c1cd13) * Convert while into tryCompareFunction (58c539e90) 2016-01-18 Michael Zanetti * whitespace, yay (4a0f74e07) 2016-01-18 Andrea Cimitan * Moar style (436c2fe3c) * More fixes (357962906) 2016-01-18 Michael Zanetti * make the osk rotate too (8154340d8) * merge prereq (70fd892c7) * make it rotate (5f8acb008) 2016-01-18 Albert Astals Cid * Call printSettings correctly (df768a195) 2016-01-18 Michael Terry * Merge trunk (e297a5e47) 2016-01-18 Lukáš Tinkl * fix the texts according to design (6212c328b) 2016-01-18 Michael Zanetti * increase double-tap-and-hold timeout (d2e52c260) 2016-01-18 Albert Astals Cid * Audio Preview Button: Don't gain focus on press (fff4d7048) 2016-01-18 Lukáš Tinkl * merge trunk (6ecf6e4c8) 2016-01-18 Andrea Cimitan * added id (6a6e6a5bf) * merged (a8977521e) 2016-01-18 Michael Zanetti * merge prereq (68d5a6561) * merge trunk (0088896e4) 2016-01-18 Andrea Cimitan * Add test for id passed as result (a8b348810) 2016-01-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e2e7e7d63) 2016-01-15 Andrea Cimitan * Added cardcreator test (09d1a2195) * Added the file (b8e07792c) * Added test for clicked (c2f0f79c6) 2016-01-15 Lukáš Tinkl * merge trunk (22050ff38) 2016-01-15 Albert Astals Cid * Make revealByEdgePush more stable (303a347bb) 2016-01-15 Michael Zanetti * fix the desktop stage shrinking for the locked out launcher (66a68706f) 2016-01-15 Andrea Cimitan * Fix for tst_Card (a6678c015) 2016-01-15 Michael Zanetti * check for released keys, not pressed ones (76a95be59) 2016-01-14 Michael Zanetti * hode the launcher on fullscreen apps, add a test for it (4fbcdb2ae) 2016-01-14 Daniel d'Andrada * Reset usageModeSelector on clean up (093cae76b) 2016-01-14 Michael Zanetti * fix cancelling kbd navigation if the launcher is locked out (3cf7a865a) 2016-01-14 Albert Astals Cid * Not needed since we do the same inside the swipeawaygreeter function (95bd634fb) * Fix some test shells being unstable in the armhf builders (62bb97f17) 2016-01-14 Michael Zanetti * fix hiding after merging a fix from the prereq (f52f718dd) * merge prereq (ab993036e) 2016-01-14 Michał Sawicz * Make qmluitests.sh more robust and allow parallel test execution (08fa5150a) 2016-01-14 Michael Zanetti * fix cancelling the kbd navigation with a pointing device (0cb4615d9) 2016-01-14 Albert Astals Cid * Remove the DDAs constrains for every test (8068eb974) 2016-01-14 Daniel d'Andrada * Add a regression test for bug LP:1515977 (b725324e9) 2016-01-14 Michael Zanetti * merge prereq (b0ac4d507) * fix whitespace (d0937f652) 2016-01-14 Daniel d'Andrada * Desktop stage rotates only to follow screen orientation (a73b099f3) 2016-01-14 Michael Zanetti * merge prereq (7835b8c2d) 2016-01-14 Albert Astals Cid * We don't use the unity-scope-scopes anymore (c034fd3d2) 2016-01-14 Michael Zanetti * fix test (ef78449da) 2016-01-14 Albert Astals Cid * Make testDragHandle pass again (3c93564af) * Fix genericscopeview tests now that the 6 column limit has disappeared (9a5b11df1) * Merge unity8 (13a02059f) 2016-01-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (17c7c9b5e) 2016-01-13 Michael Zanetti * improve param naming (e8c058e32) * drop the unneeded and misleading receiver argument, better method name. (69344b9ab) * tweaks from reviewer's comments (b20a89447) * merge trunk (eb77eec0f) * prevent alt key presses to be dispatched to the app on alt+tab (059d671e0) 2016-01-13 Albert Astals Cid * Merge (2d3318100) * Merge (5aaeac858) * Merge (a13823522) * Merge (8ac9be449) * Merge (5d51d2989) * Merge (38541cd8a) * Merge (637b3ccd2) * Wider cards on wider views (4def55f31) * Card test: Limit the precision we ask for doubles to be equal (4b50a9606) 2016-01-13 Michael Zanetti * merge prereq (b6a3f1e08) * merge trunk (28256cec8) 2016-01-13 Albert Astals Cid * Remove maximum number of columns from ResponsiveGridView (d4080cc3b) * Merge lp:unity8 (cd6f72a58) 2016-01-12 Albert Astals Cid * More reliable compares (f3dd6fbd9) * Move the mouse over the bfb before waiting for rendering (84cae3fcb) 2016-01-11 Michał Sawicz * Skip SessionBackendTest::testLogin1Capabilities until we talk to a mock instead (cdd1f9916) 2016-01-11 CI Train Bot * Update translation template (6976414ab) * Releasing 8.11+16.04.20160111.1-0ubuntu1 (eb8796fbc) 2016-01-11 Albert Astals Cid * Make the card creator test pass again (fecdb9852) 2016-01-11 Michael Terry * Skip the wizard's password screens if there is already a password set by other means. (7eede1d8e) 2016-01-11 Lukáš Tinkl * Fix panel drop shadow and click-to-focus of maximized apps Fixes: #1531854 Approved by: Michael Zanetti (ca8fad0b6) 2016-01-11 Albert Astals Cid * Clear fake item icon name as soon as it goes invisible (c310035b1) 2016-01-11 Lukáš Tinkl * Fix dismissing the launcher when clicking/tapping outside Fixes: #1530940, #1531339 Approved by: Michael Terry (5e34b133c) 2016-01-11 Albert Astals Cid * Remove duplicated override_dh_auto_clean (69ac1fa89) * Fix focus on the dash page header text field with new SDK Fixes: #1528178 Approved by: Michał Sawicz (130f13e0e) 2016-01-11 Andrea Cimitan * Fix a broken binding Approved by: Albert Astals Cid (f225f66e5) 2016-01-11 Pawel Stolowski * Changes 'shareData' and 'contentType' attributes to 'share-data' and 'content-type', to match existing naming schema. Approved by: Michael Terry (b167ec9cb) 2016-01-11 Daniel d'Andrada * Make DragHandle tests run again. (f7a8a7634) 2016-01-11 Michael Zanetti * Make sure the triangle of the quicklist is in bounds Fixes: #1531340 Approved by: Albert Astals Cid (93ce5bb19) 2016-01-11 Albert Astals Cid * Fix LVWPH test failing on Xenial (Qt 5.5) (cf2219b71) 2016-01-11 Daniel d'Andrada * Have "make tryFoo" work with Qt 5.5 (ceb9a1f5c) 2016-01-11 Albert Astals Cid * SDK changed the name they give to the buttons, follow (1430b9d10) 2016-01-11 Michael Terry * Stop the emergency dialer from accidentally exposing the mtp service. Fixes: #1525981 Approved by: Josh Arenson (15dbf81a8) 2016-01-11 Lukáš Tinkl * Fix wifi access point indicator items signal strength icon on desktop Approved by: Nick Dedekind (7406ee208) 2016-01-11 Michael Terry * Guard against a couple odd timing scenarios for the too-many-failed-login-attempts lockout screen. Approved by: Michael Zanetti (a037f1ddc) 2016-01-11 Albert Astals Cid * Fix dragging so that test passes on Xenial (70ae746fe) * Quit the dash communicator thread before destroying it (5948a4ecc) 2016-01-11 Michael Zanetti * more tweaks as per design review (1d14bc8ee) 2016-01-11 Michael Terry * Install SecurityPrivacy mock in unity8-fake-env (206a5daba) 2016-01-11 Daniel d'Andrada * s/FloatingFlickableHelper/MouseEventGenerator (b80c4c781) 2016-01-11 Albert Astals Cid * Fix tests on the phone (610220f60) * Make the card creator test pass again (b7c6cad36) 2016-01-11 Michael Zanetti * merge trunk (245f1be0e) 2016-01-11 Albert Astals Cid * Merge (d6bcfaeae) * Merge (cb12c3888) * Merge (abffb721b) * Merge (bdbeb474d) * Merge (98c1952a6) * Merge lp:unity8 (9ffa826b6) * Increase dependencies version numbers (ed2172498) * Merge lp:unity8 (74200b37b) 2016-01-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f5d883524) 2016-01-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c57f3c579) 2016-01-09 CI Train Bot * Resync trunk. (c3d9124b6) 2016-01-08 Michael Zanetti * drop debug print (3f321c7bd) 2016-01-08 Albert Astals Cid * Make fallback also be fallback for empty preview images (87c306fee) 2016-01-08 Lukáš Tinkl * rename internal variable to foregroundMaximizedAppIndex (834d65e82) 2016-01-08 Albert Astals Cid * Remove || false; (a47644a6d) * Card: Empty mascot or art also trigger the fallback image showing (f6720022c) 2016-01-08 Michael Zanetti * fix tests (58a11ae51) * merge draghandle fix (a62fe1b8a) * merge trunk (2c7215199) 2016-01-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fd27d2344) 2016-01-07 Michael Terry * Add tests (883a380fe) * Skip password wizard screen if the user already has a password (a35249838) 2016-01-07 Michael Zanetti * take item's offset into account when calculating the quicklist position (769748598) 2016-01-07 Lukáš Tinkl * add a regression test for the drop shadow stuff (8eac14ef8) * unbreak panel drop shadow and click-to-focus of maximized windows (1925e9817) 2016-01-07 CI Train Bot * Update translation template (d99f5d5ef) * Releasing 8.11+16.04.20160107-0ubuntu1 (59a16859c) 2016-01-07 Albert Astals Cid * Introduce audio cards Approved by: Michał Sawicz, Pawel Stolowski, Andrea Cimitan (ed38dce4e) 2016-01-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dec4a8c54) 2016-01-06 Lukáš Tinkl * partially revert hiding the panel on clicking outside the quick list (33c0752d7) * add a test for dismissing the launcher (twice) (b67910aba) * fixup a failing test (dcd76e32c) * don't invoke the haptics when clicking on empty space or with RMB (5b71c3d20) 2016-01-05 Lukáš Tinkl * hide the panel also when the quick list is open and we click/tap outside (abdd5df9c) * address review comments (6959cd885) 2016-01-05 Albert Astals Cid * Clear fake item icon name as soon as it goes invisible (18936d353) 2016-01-05 Lukáš Tinkl * fix dismissing the launcher when clicking/tapping outside in the darkened area (ef9f5877a) 2016-01-05 CI Train Bot * Update translation template (88b78ffae) * Releasing 8.11+16.04.20160105.1-0ubuntu1 (90c6533c7) 2016-01-05 Nick Dedekind * Use volume-sync action to resync the volume control. Fixes: #1520548 Approved by: Albert Astals Cid (641284016) 2016-01-05 Albert Astals Cid * Merge (f2f6ca321) * Remove duplicated override_dh_auto_clean (07eccd45e) * Make sure we request the qt we need (0dd0efb3e) 2016-01-05 Andrea Cimitan * fix whitespace (f721d09cf) 2016-01-05 Albert Astals Cid * Need the extra check here too (c45aa00df) 2016-01-05 Nick Dedekind * review comments (f897b88d5) 2016-01-04 Josh Arenson * Merge sessions-model (e4f09a41b) * Merge trunk (8c9dfb5ec) 2016-01-04 Andrea Cimitan * Added test (1d4e009b2) 2016-01-04 Lukáš Tinkl * use const declarations where appropriate (060cb88e3) 2016-01-04 Nick Dedekind * removed accidental readonly (441e30a32) 2016-01-04 Albert Astals Cid * Fix test failing on Xenial (Qt 5.5) (0b55f8f07) 2016-01-04 Lukáš Tinkl * add runtime dep on libtimezonemap-data (5650062a7) 2016-01-04 Nick Dedekind * secondary indicator actions (46b3d1f77) 2016-01-04 Lukáš Tinkl * merge trunk (bbf6fa729) 2015-12-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (88c6f0026) 2015-12-30 Josh Arenson * Merge trunk (40f6ad02a) 2015-12-29 Josh Arenson * Hide the session chooser button when the greeter is being used as a lockscreen (54c2e481f) 2015-12-27 Lukáš Tinkl * simplify map anchoring (f78ea1a81) * merge trunk (9b1d5c8a4) 2015-12-24 Lukáš Tinkl * minor cleanup (3bd7ab834) 2015-12-23 Josh Arenson * [CHECKPOINT COMMIT] Add logic to determine if the greeter is being (d33d6c1c3) * [ Albert Astals Cid ]; Allow dragging launcher items with the quicklist open (LP: #1250861); Create ratings on demand instead of all at the same time (LP: #1519898, #1492214) * LVWPH: Process correctly section changes (LP: #1519893) * Make sure that unfavoriting a scope gives us the next one; Move images only used in tests to tests folder [ Andrea Cimitan ]; Add shadows to ubuntu store icon [ Daniel d'Andrada ]; MirSurfaceItem got a new property: fillMode (LP: #1497083); Session can have multiple surfaces now; plugins/Cursor: Do not force loading a specific cursor size (LP: #1517878) [ Lukáš Tinkl . Indicators convergence: use the "phone" profile everywhere (LP: #1520492) [ Michael Terry ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). [ Michael Zanetti ]; Use proper z ordering instead of app index for occlusion detection; add some debug prints to the uinput backend; drop the ignoredMice hack again (LP: #1521580) [ Michał Sawicz ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping).; Update .pot file in debian/clean when in train (de83d33a8) 2015-12-24 Lukáš Tinkl * expose the lat,lon coords from the model (c2977cb00) 2015-12-23 Lukáš Tinkl * expose the UTC offset (in hours) from the timezone model (65f91df98) 2015-12-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c5a00ec3d) 2015-12-22 Lukáš Tinkl * also restart the indicator-messages service to fix notifications being untranslated upon completing the wizard (lpbug#1463353) (0cd476bcf) * un-comment locale related bits to restart (db5f575c5) * enable re-translation also for the detected language (fd88211fb) * merge trunk (7339ef2b1) 2015-12-22 Albert Astals Cid * Increase the version in which the playlist type is supported to 5.6 (36eac505b) 2015-12-21 Albert Astals Cid * Workaround behaviour change in the SDK (db6c8d4e2) 2015-12-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f398eecb9) 2015-12-18 Albert Astals Cid * Merge unity8 (c35605cc6) 2015-12-18 Lukáš Tinkl * custom PIN entry page for desktop mode (d1c4cf6ae) 2015-12-18 Albert Astals Cid * fix broken merge (3638648f7) * fix import (eb0347bd0) * Merge fixQmlTestsNewSDK again (781600286) 2015-12-18 Lukáš Tinkl * consistent top margins (11gu) for desktop version (e8703fd73) 2015-12-18 Michael Zanetti * move settings out of the Launcher item (e17b0ef5b) * merge prereq (f4733a977) * tweak positioning of focus ring a weee bit (0ce6b978e) 2015-12-18 Albert Astals Cid * no need for the substr (797da7b92) * Use the thumbnailer to load the dash background (7dc3f3687) * Merge (33234501f) 2015-12-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ab9c4cff2) 2015-12-18 Lukáš Tinkl * warn when we skip a page taking too long (d2dcd5e5b) 2015-12-17 Lukáš Tinkl * fix failing sim page tests (51ce3e011) * desktop mode improvements, flexible margins (7b7f46f80) 2015-12-17 Andrea Cimitan * Fix visible binding broken (c8a550a37) 2015-12-17 Albert Astals Cid * Use UbuntuTest.TestExtras.removeTimeConstraintsFromSwipeArea (d96491724) * remove comment that doesn't make sense (e557538a0) 2015-12-17 Lukáš Tinkl * skip the SIM page also in case of no modems/SIM slots (1356e8b77) * rename to restore compat with Meizu customized page (4bf07da6d) 2015-12-17 Albert Astals Cid * Proper name of the pkg (111db9fc5) * Don't need this either (0b93ce2c9) * Don't need this anymore (63102e7f7) * remove useless wait (eb5a27152) * Merge fixQmlTestsNewSDK again (05366039f) 2015-12-17 Nick Dedekind * removed old images (0d8bfd9f1) 2015-12-16 Josh Arenson * [ Albert Astals Cid ]; Allow dragging launcher items with the quicklist open (LP: #1250861); Create ratings on demand instead of all at the same time (LP: #1519898, #1492214) * LVWPH: Process correctly section changes (LP: #1519893) * Make sure that unfavoriting a scope gives us the next one; Move images only used in tests to tests folder [ Andrea Cimitan ]; Add shadows to ubuntu store icon [ Daniel d'Andrada ]; MirSurfaceItem got a new property: fillMode (LP: #1497083); Session can have multiple surfaces now; plugins/Cursor: Do not force loading a specific cursor size (LP: #1517878) [ Lukáš Tinkl . Indicators convergence: use the "phone" profile everywhere (LP: #1520492) [ Michael Terry ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). [ Michael Zanetti ]; Use proper z ordering instead of app index for occlusion detection; add some debug prints to the uinput backend; drop the ignoredMice hack again (LP: #1521580) [ Michał Sawicz ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping).; Update .pot file in debian/clean when in train (e27361917) 2015-12-16 Daniel d'Andrada * Fix crash in "make xvfbtestDragHandle" (75d2e73e6) * Test now needs a graphical environment (545b96493) 2015-12-16 Lukáš Tinkl * +s (959ebdc10) * remove conflicting empty line (ff11d526b) 2015-12-16 Daniel d'Andrada * Make DragHandle tests run again. (b3ddc2d2a) * Sort (8dd847778) 2015-12-16 Albert Astals Cid * Another action_button -> button fix (8d54c07a4) * Merge (83fd5910f) 2015-12-16 Daniel d'Andrada * Don't build MouseTouchAdaptor on ARM (81a1c684f) 2015-12-16 Albert Astals Cid * Merge (6b2903cab) * Merge (836e416c1) * Fix binding loop and label misplacement on the phone (c7412e07f) 2015-12-15 Daniel d'Andrada * Update MouseTouchAdaptor to XInput2, as per Qt 5.5 (b71c30f47) 2015-12-15 Michael Terry * Drop check-clock-every-tick logic, we don't need it (fc3f23e6a) 2015-12-15 Josh Arenson * Merge fixQmlTestsNewSDK (42013df82) 2015-12-15 Michael Zanetti * merge prereq (ff7002e77) * merge prereq (faa5c78bc) * fix/add comments (776bde385) * fix tests (fake the MetaModifier as a proper broken keyboard would do) (bcd0928f6) 2015-12-15 Albert Astals Cid * Dep++ (1f6c2c41c) 2015-12-15 Pawel Stolowski * Merged trunk (4de52a713) 2015-12-15 Michael Zanetti * don't act on it if other modifiers are pressed (45a038962) 2015-12-15 Albert Astals Cid * Fix import versions (78de4ef8f) * Merge fixQmlTestsNewSDK (30720405b) * Compile++ (0b11ba079) * Merge (9d69b590c) 2015-12-15 Michael Zanetti * merge trunk (ad8981991) * drop the special casing (1fb8ffc02) * update focus ring asset (36881acc2) 2015-12-15 Albert Astals Cid * Merge (c7693710e) * Merge (e662558d2) * Merge (6675909c7) * Merge (1d95fb022) * Merge (20aec8475) * dep++ (b67891c70) 2015-12-15 Michael Zanetti * merge trunk (699135adb) 2015-12-14 Michael Terry * Add some more tests (6586532b8) * Condense code (13aa50a6b) * Don't change active state when transitioning from locked greeter app back to greeter (8553a44c5) * Merge from trunkA (947298af5) 2015-12-14 Lukáš Tinkl * merge trunk (8215f862e) * add a FIXME comment for the future (a03cf7e6c) 2015-12-14 Albert Astals Cid * 2015 (120c27151) 2015-12-14 Lukáš Tinkl * and now the actual fix :) (0f8ce51c9) * merge trunk (98f333a7c) 2015-12-14 Daniel d'Andrada * Merge trunk (fe17f68a6) 2015-12-14 Albert Astals Cid * Merge (2fe5ed760) * Merge (157e33e45) * Merge (54ab5302b) * Merge (2d259730c) * Merge (782167419) * Merge (e3c2472e6) * Merge (a59345bbb) 2015-12-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e9f921bef) 2015-12-13 Josh Arenson * [ Albert Astals Cid ]; Allow dragging launcher items with the quicklist open (LP: #1250861); Create ratings on demand instead of all at the same time (LP: #1519898, #1492214) * LVWPH: Process correctly section changes (LP: #1519893) * Make sure that unfavoriting a scope gives us the next one; Move images only used in tests to tests folder [ Andrea Cimitan ]; Add shadows to ubuntu store icon [ Daniel d'Andrada ]; MirSurfaceItem got a new property: fillMode (LP: #1497083); Session can have multiple surfaces now; plugins/Cursor: Do not force loading a specific cursor size (LP: #1517878) [ Lukáš Tinkl . Indicators convergence: use the "phone" profile everywhere (LP: #1520492) [ Michael Terry ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). [ Michael Zanetti ]; Use proper z ordering instead of app index for occlusion detection; add some debug prints to the uinput backend; drop the ignoredMice hack again (LP: #1521580) [ Michał Sawicz ]; Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping).; Update .pot file in debian/clean when in train; Rebuild against Qt 5.5.1. [ Albert Astals Cid ]; Initialize the image to be transparent (LP: #1517128); Update pot file; clazy improvements [ Andrea Cimitan ]; Shadows in launcher and dash using UbuntuShapeIcon [ CI Train Bot ]; Resync trunk. [ Daniel d'Andrada ]; Cursor plugin: add scroll wheel handling (LP: #1497091); Cursor: Add more fallback names, a blank and custom cursor support; DesktopStage: swiping from right edge shows window spread; Don't stretch application surfaces when resizing (LP: #1497083); Mouse has to push against edges to show launcher or apps spread (LP: #1510969) [ Josh Arenson ]; Don't let IntegratedLightDM muck with the username (LP: #1497081) [ Lukáš Tinkl . Implement new visuals for panel and window decorations (LP: #1493066, #1511020, #1497095); Let systemd/logind handle the lid-close action; Make saving screenshots really async [ Michael Zanetti ]; detect touchpads too, not only mice (LP: #1518395); move screenshots out of the Dash dir (06e090b4d) 2015-12-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d83692fda) 2015-12-11 CI Train Bot * Resync trunk. (bc29403ca) 2015-12-11 Albert Astals Cid * Don't package something that doesn't exist (a6f200d0d) * Depend on libubuntugestures-dev (7e3a311a8) * depend on the metaobject classname instead on of the object name (7908b9b78) * Merge testIndicatorsMenuFix (01b4aca39) * Merge fixQmlTestsNewSDK (1eb9583f6) * SDK changed the name they give to the buttons, follow (5f8c17b51) 2015-12-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c487aa566) 2015-12-11 Lukáš Tinkl * wrap the wifi header (b77f7e443) * provide the haptics by using an AbstractButton (72d13d532) * restore the splash screen, fix the intro animation (1dd0851b5) 2015-12-10 Josh Arenson * Rebuild against Qt 5.5.1. [ Albert Astals Cid ]; Initialize the image to be transparent (LP: #1517128); Update pot fil. clazy improvements [ Andrea Cimitan ]; Shadows in launcher and dash using UbuntuShapeIcon [ CI Train Bot . Resync trunk. [ Daniel d'Andrada ]; Cursor plugin: add scroll wheel handling (LP: #1497091); Cursor: Add more fallback names, a blank and custom cursor suppor. DesktopStage: swiping from right edge shows window spread * Don't stretch application surfaces when resizing (LP: #1497083); Mouse has to push against edges to show launcher or apps spread (LP: #1510969) [ Josh Arenson ] * Don't let IntegratedLightDM muck with the username (LP: #1497081) [ Lukáš Tinkl ]; Implement new visuals for panel and window decorations (LP: #1493066, #1511020, #1497095); Let systemd/logind handle the lid-close action * Make saving screenshots really async [ Michael Zanetti ] * detect touchpads too, not only mice (LP: #1518395. move screenshots out of the Dash dir (6bdffc73c) * Small test change (299c81f85) * Actually fix the underlying issue (90fc81b68) 2015-12-10 Michael Zanetti * fix a warning in launcherdelegate (5070b7af4) 2015-12-10 Michael Terry * Drop unneeded change (6d8b4c098) * Add test and guard against gsettings time being 0 (173128ddc) 2015-12-10 Michael Zanetti * fix description in dconf schema (c865095d3) * fix shell tests (8d88900d9) 2015-12-10 Josh Arenson * Fix includes further (f5a7295d4) 2015-12-10 Michael Terry * Initial pass at trying to fix reported lockout bug (09a4e7d1c) 2015-12-10 Josh Arenson * Rebuild against Qt 5.5.1. [ Albert Astals Cid ]; Initialize the image to be transparent (LP: #1517128); Update pot fil. clazy improvements [ Andrea Cimitan ]; Shadows in launcher and dash using UbuntuShapeIcon [ CI Train Bot . Resync trunk. [ Daniel d'Andrada ]; Cursor plugin: add scroll wheel handling (LP: #1497091); Cursor: Add more fallback names, a blank and custom cursor suppor. DesktopStage: swiping from right edge shows window spread * Don't stretch application surfaces when resizing (LP: #1497083); Mouse has to push against edges to show launcher or apps spread (LP: #1510969) [ Josh Arenson ] * Don't let IntegratedLightDM muck with the username (LP: #1497081) [ Lukáš Tinkl ]; Implement new visuals for panel and window decorations (LP: #1493066, #1511020, #1497095); Let systemd/logind handle the lid-close action * Make saving screenshots really async [ Michael Zanetti ] * detect touchpads too, not only mice (LP: #1518395. move screenshots out of the Dash dir (16e98e88f) * Fix include order causing lib symbol issues (23b47f9db) 2015-12-10 Michael Zanetti * add a gsettings option for the launcher's width (f6aeb817f) 2015-12-10 Albert Astals Cid * Fix dragging so that test passes on Xenial (21254d7ed) * TODO-- (ffc4735fd) * Fix closing of the indicators menu (5529608b0) * debug-- (19f13dff9) * fix comment (0a96292cf) 2015-12-10 Michael Zanetti * moar tests (4834324be) * fix tests, some smaller fixes all around (91e49031b) 2015-12-10 Albert Astals Cid * Reimplement removeTimeConstraintsFromDirectionalDragAreas (5335fb24c) * Implement the FloatingFlickable without needeing the .h of SwipeArea (21dc999a7) 2015-12-09 Lukáš Tinkl * forward port bugfix for lpbug:#1494442 (ee84b3442) * fix the link and capitalization (cc7a7e97c) * more spacing between indicator icons (a91dd2153) * replace spaces by underscores in PNG names (28d7dd1d1) * only signal available result if the name is not empty (a2c470394) * remove useless operator< (cb0e3753f) * move the ofono stuff to Pages, remove debugs (4d4e761d3) * remove debug code (13edd4b28) * remove commented out code, fix setting filter (defdbbda5) 2015-12-09 Michael Zanetti * initial take on making the launcher resizable and locked visible (673a12542) 2015-12-09 Nick Dedekind * remove unnecessary code (07b114170) * more general volume sync (06ac3b03e) 2015-12-09 Pawel Stolowski * Renamed shareData to share-data and contentType to content-type (564639e58) 2015-12-09 Lukáš Tinkl * revert to trunk translations to fix the mess (953309d7a) * revert another accidental change (3af06147b) * revert trailing comma change (d4f649622) * remove unused var, explain MCC (554c8f209) 2015-12-09 Michael Zanetti * make it readonly (6f5ed991c) * fix anchoring of the focus ring, now that the shape has changed a bit (603359299) 2015-12-09 Albert Astals Cid * Adapt to new API (066c2a2aa) * Remove DDA test (257b6f0b6) * Fix DragHandle (91c46b988) * Merge (622592a07) * Merge (115baaa55) * Merge (e67be7da4) * Merge (ad46fc064) * Merge (b4f9f34a6) * Increase deps (e11a633dd) 2015-12-08 CI Train Bot * Update translation template (8f46441e0) * Releasing 8.11+16.04.20151208.1-0ubuntu1 (cb096910b) 2015-12-08 Michael Zanetti * Use proper z ordering instead of app index for occlusion detection Approved by: Nick Dedekind (3866e2999) 2015-12-08 Albert Astals Cid * Allow dragging launcher items with the quicklist open Fixes: #1250861 Approved by: Michael Zanetti (458939ece) 2015-12-08 Michał Sawicz * Update .pot file in debian/clean when in train Approved by: Didier Roche, Robert Bruce Park (b42a3eb49) 2015-12-08 Michael Zanetti * add some debug prints to the uinput backend (78e9829fe) * drop the ignoredMice hack again (ba42b16d5) 2015-12-08 Daniel d'Andrada * plugins/Cursor: Do not force loading a specific cursor size Fixes: #1517878 Approved by: Lukáš Tinkl (b0560e0d6) 2015-12-08 Albert Astals Cid * LVWPH: Process correctly section changes Fixes: #1519893 Approved by: Michael Zanetti (1e594bb70) 2015-12-08 Lukáš Tinkl * Indicators convergence: use the "phone" profile everywhere Fixes: #1520492 Approved by: Albert Astals Cid (67aa7985e) 2015-12-08 Albert Astals Cid * Move images only used in tests to tests folder Approved by: Michael Zanetti (ef9a87ae1) 2015-12-08 Andrea Cimitan * Add shadows to ubuntu store icon Approved by: Albert Astals Cid (fc437d947) 2015-12-08 Albert Astals Cid * Create ratings on demand instead of all at the same time Fixes: #1492214, #1519898 Approved by: Michael Zanetti (c7cb6404f) * Make sure that unfavoriting a scope gives us the next one (7f0ef25a9) 2015-12-08 Michael Terry * Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). (cb4c07bc0) 2015-12-08 Daniel d'Andrada * Session can have multiple surfaces now (f1fcbbba7) * MirSurfaceItem got a new property: fillMode (ec2dad30c) 2015-12-08 Michael Terry * Fix tests (e46cb953a) 2015-12-08 Michael Zanetti * some visual tweaks for the spread (54f8e37c9) 2015-12-08 Andrea Cimitan * merged trunk (6da7c6037) 2015-12-08 Lukáš Tinkl * drop now unused stuff (063b76c83) * add a test for the account page (eada07bae) 2015-12-07 Michael Zanetti * tweak visuals of the shortcut hint (e6ae8020e) * fix Super+0 (00a969793) * stabilize, fix keyboard navigation in tryLauncher (6ff630196) * fix tapping into the void (2ce286194) * test Alt+F1 (939271ed2) * cleanup (7bf3da681) * add launcher test goodness (69c0e8075) * fix test (30bedef05) * add more tests (4103a0fad) * fix shell tests (15e5bc133) 2015-12-07 Albert Astals Cid * sceneDistance -> distance (ae563895d) * wops console.log (2ba5e1379) * touchY -> touchPosition.y (6c2effae0) * touchX -> touchPosition.x (ee642904f) * Update Gestures.qmltypes (98a1ad797) 2015-12-07 Lukáš Tinkl * merge trunk (e5d493618) * update POT (eea052ae9) * cut down on unused stuff (447d3283b) 2015-12-07 Albert Astals Cid * Make showTapped not pass the position up (05e43953c) 2015-12-07 Michał Sawicz * Merge lp:~dandrader/unity8/multiSurfaceApp (e11965017) 2015-12-07 Michael Zanetti * add sourceSize to svg (de4927835) 2015-12-07 Albert Astals Cid * TODO++ (851fac1ca) 2015-12-07 Michael Zanetti * shrink the bfb highlight to just 1dp line width (03c8a9601) 2015-12-07 Albert Astals Cid * Use touchPosition.x since it's only used for calculating the x difference (192379f85) 2015-12-07 Michael Zanetti * add a highlight for the bfb (b8d357517) 2015-12-07 Albert Astals Cid * Remove DDA use and libs/UbuntuGestures (424c462ad) 2015-12-07 Michael Zanetti * merge trunk (928f7e9c0) 2015-12-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d76d4694c) 2015-12-06 Lukáš Tinkl * stabilize the tests a bit (b7c3406d5) * add timezone page test (610af511f) 2015-12-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (196277681) 2015-12-05 Lukáš Tinkl * tests passing \o/ (1ef2fcb62) 2015-12-04 Michael Zanetti * also print info when we cannot fetch full details (8168e6c22) 2015-12-04 Lukáš Tinkl * add TimeDate and Diagnostics mocks (1f594d38d) * account page click-thru (78672847c) * add TimeDate mock, fixup location tests, correctly pass the timezone page (8b2e24702) * fix location page tests (9c73b4a00) * fix the language tests (282c933df) 2015-12-03 Lukáš Tinkl * remove some more debug (b942489b4) 2015-12-03 Michael Terry * Add more comments and sanity checking to the exempt tests (4206763bc) 2015-12-03 Lukáš Tinkl * allow overshoot (61c07e975) * silence some debugs (7b1cac20d) * add an animation when switching fields (f46abbacf) * merge trunk (880fd5204) 2015-12-03 Michael Terry * Merge from surfaceItemFillMode (830d646b0) * Pass qtmir whether an app is exempt from the lifecycle or not (c6ccdb727) 2015-12-03 Lukáš Tinkl * revert unrelated code changes (9d769b301) * improve docu (28d24b05d) * map from null (dae4c692d) 2015-12-03 Albert Astals Cid * Adapt to changes (10798a809) * Remove borderSource (39aa7e63a) 2015-12-03 Lukáš Tinkl * simplify, the item mapped from can be null (0857d674a) * unbreak tests after the class renaming and new signal additions (41b6e5c72) 2015-12-03 Michael Zanetti * stabilize test (not really related to that branch but lets keep Jenkins happy) (d5ff8bc0c) 2015-12-03 Lukáš Tinkl * map the touch coords (3ea5d0492) * simplify code (b73d337c5) 2015-12-03 Albert Astals Cid * lowercase t for the "new" theme (25f205b84) * units.gu(0) -> 0 (ca8ae4d3b) * Make the source property an alias (fa2f33174) * height -> implicitHeight (10231aec1) * Merge (2f05716ee) 2015-12-03 Michael Zanetti * mock out Unity.Screens (bea2df053) 2015-12-03 Michał Sawicz * Run dh_auto_clean, too (ea34f776e) 2015-12-03 Albert Astals Cid * Allow dragging launcher items with the quicklist open (2416f5fee) 2015-12-03 Nick Dedekind * add volume control resync action (280b62fb6) 2015-12-03 Lukáš Tinkl * move the hide/reveal functions to Cursor.qml (5d641503f) 2015-12-02 Lukáš Tinkl * rename signals, add some docu (fc18645ef) * rename HomeKeyWatcher.cpp => WindowInputMonitor.cpp (17b5515fb) 2015-12-02 Albert Astals Cid * Quit the dash commuunicator thread before destroying it (6b86c8b5b) 2015-12-02 Michael Zanetti * mock Unity.Screens (fe035f238) 2015-12-02 Lukáš Tinkl * reinstate the keyboard-indicator filtering (855329ddf) 2015-12-02 Michael Zanetti * fix it, update tests (4d27450bf) 2015-12-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6f193bd15) 2015-12-02 Michael Zanetti * add inputmethod on secondary screen (db6f235c0) 2015-12-01 Lukáš Tinkl * drop unused include (0b9371cb9) * address review issues (7807f8fdb) 2015-12-01 Michael Zanetti * merge prereq (83fec638b) 2015-12-01 Lukáš Tinkl * merge lp:~dandrader/unity8/cursorThemes (b157fc9ef) * hide the mouse pointer on touch, reveal it again on mouse move (e28150aee) 2015-12-01 Daniel d'Andrada * Merge trunk (1f6eb18b9) * Make read-only properties readonly (da27e230a) 2015-12-01 Lukáš Tinkl * merge trunk, resolve conflicts (cc819e210) 2015-12-01 Timo Jyrinki * Rebuild against Qt 5.5.1. (106f3575d) 2015-12-01 Albert Astals Cid * Adapt to api changes in the playlist implementation (6835e04e6) 2015-12-01 Michael Zanetti * drop the ignoredMice hack again (2c98ac2b7) 2015-12-01 Michał Sawicz * Add a clean target that, under CI Train, will update the .pot file and commit it (719e95ec1) 2015-12-01 Michael Zanetti * add some debug prints for input device changes (8e1dbdf5a) 2015-12-01 Daniel d'Andrada * Session can have multiple surfaces now (455f8500c) * Initialize m_fillMode in MirSurfaceItem mock (69e4829e9) 2015-12-01 Albert Astals Cid * Merge (455d32d68) * Merge (8c43bf2e2) * Merge (f2bbd2509) * More reviews fixes (564c41a3c) 2015-12-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1bc8eaff3) 2015-11-30 Josh Arenson * Another small test change (86e8e1f05) * Make tests slightly more robust (80ba84637) 2015-11-30 Daniel d'Andrada * Window Size Hints (998108cf5) 2015-11-30 Michael Zanetti * tune scrolling speed a little down (95f7d62ca) * add moar tests (7a7fcc205) 2015-11-30 Daniel d'Andrada * Merge trunk (d26558b9f) 2015-11-30 Michael Zanetti * merge trunk (104ecc786) 2015-11-30 Albert Astals Cid * Merge (eda83a490) * Merge (ceb6203e6) * Merge (ecb8fe193) * Merge (abb9e4703) * Merge (e1c1d5b32) * Merge (ab1346c94) * Better wait for it to check for growth to have stopped (f5d471a4b) * drop unneeded id (0eebe47c8) 2015-11-30 Michael Terry * Merge from trunk (9e897f843) 2015-11-30 Daniel d'Andrada * MirSurfaceItem got a new property: fillMode (dc6e02486) 2015-11-30 Lukáš Tinkl * merge trunk, resolve conflicts (b3237e65b) 2015-11-30 Albert Astals Cid * Increase deps (a05115300) 2015-11-30 Michael Zanetti * merge trunk (8535f2a01) 2015-11-30 Albert Astals Cid * Merge (26a783976) * Bring po from trunk to make the diff nicer (a28df86da) * Fix wrong merge (aa291ee37) * Merge (a7214d85e) 2015-11-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a3c573717) 2015-11-29 CI Train Bot * Resync trunk. (2616c095d) 2015-11-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (51a2fafe1) 2015-11-28 Lukáš Tinkl * try harder not to get covered by OSK (33fa90d87) 2015-11-27 Daniel d'Andrada * plugins/Cursor: Do not force loading a specific cursor size (bde729682) * Merge lp:~dandrader/unity8/fallbackCursorNames (a5fd11a05) 2015-11-27 Lukáš Tinkl * make sure the input fields get into view, not covered by OSK (d0fa5d718) * drop unused variables (416c70c64) 2015-11-27 Michael Terry * Make bottom edge arrow & text closer to bottom edge, per design (fcc0bc9a3) 2015-11-27 Albert Astals Cid * Typo-- (a3a085b84) * Make test pass again (8b40e29ed) * Use a square background provided by design (bb1164eb3) * Merge (0305e1503) * beware of scary eol (4f3900be0) 2015-11-27 Lukáš Tinkl * fix white-on-white text, delay the language page init after the animation (f990f148b) 2015-11-26 Lukáš Tinkl * make the whole group clickable, redirect mouse events so that the link can still be activated (a6e81c3dd) 2015-11-26 Albert Astals Cid * Add test for the creation ranges on rating display creation (31aa8e529) * Rename parentList to parentFlickable (03f8fb16c) * Do not use 5 max iterations hardcoded in flickToYEnd, makes no sense (b8d7afdb1) 2015-11-26 Lukáš Tinkl * use 120% linespacing (794091027) 2015-11-26 Albert Astals Cid * Merge (ac1db5aba) 2015-11-26 CI Train Bot * Releasing 8.11+16.04.20151126-0ubuntu1 (540e37a64) 2015-11-26 Andrea Cimitan * Shadows in launcher and dash using UbuntuShapeIcon Approved by: Michael Zanetti, Albert Astals Cid (7f706a0d7) 2015-11-26 Lukáš Tinkl * Let systemd/logind handle the lid-close action Approved by: Michael Zanetti (56355c820) 2015-11-26 Michael Zanetti * detect touchpads too, not only mice Fixes: #1518395 Approved by: Lukáš Tinkl, Daniel d'Andrada (ac06d5419) 2015-11-26 Albert Astals Cid * Update pot file (53e64c85c) 2015-11-26 Daniel d'Andrada * Cursor plugin: add scroll wheel handling Fixes: #1497091 Approved by: Lukáš Tinkl (fd584cc62) 2015-11-26 Albert Astals Cid * Initialize the image to be transparent (cb805622e) 2015-11-26 Lukáš Tinkl * Make saving screenshots really async Approved by: Michael Zanetti (a205b3ec4) 2015-11-26 Albert Astals Cid * clazy improvements (5df11ae58) * Process correctly section changes (e53b1addf) 2015-11-26 Daniel d'Andrada * Cursor: Add more fallback names, a blank and custom cursor support Approved by: Lukáš Tinkl (d14d532b4) * DesktopStage: swiping from right edge shows window spread Approved by: Lukáš Tinkl (fb0953078) * Mouse has to push against edges to show launcher or apps spread (4ff8a76ed) 2015-11-26 Lukáš Tinkl * Implement new visuals for panel and window decorations Fixes: #1493066, #1497095, #1511020 Approved by: Daniel d'Andrada (17434b2fb) 2015-11-26 Daniel d'Andrada * Don't stretch application surfaces when resizing Fixes: #1497083 Approved by: Michael Zanetti (853d6de7d) 2015-11-26 Michael Zanetti * move screenshots out of the Dash dir (6d6a46e37) 2015-11-26 Josh Arenson * Don't let IntegratedLightDM muck with the username Fixes: #1497081 Approved by: Lukáš Tinkl (cb2aab9b4) 2015-11-26 Lukáš Tinkl * unbreak the wifi page (e7028ac67) 2015-11-26 Daniel d'Andrada * DesktopStage: swiping from right edge shows window spread (559f32eb6) * Merge mouseEdgePush (44f36b733) * Merge lp:~lukas-kde/unity8/newWindowDecosAndPanel again (a2eb4f808) 2015-11-26 Lukáš Tinkl * top margin between pass meter and info text (3e9ea0ea0) * fixup the terms text and links (6f098feec) * add top margin (79e1b8334) * fix build (2561d64eb) 2015-11-25 Lukáš Tinkl * visual updates, new Account page (aaf0fef75) * merge trunk (3eaf28c24) 2015-11-25 Michael Zanetti * don't use index for occlusion calculation, use real z ordering instead (78c7228ad) 2015-11-25 Lukáš Tinkl * Light font weight for the root indicator labels (5795ae92e) 2015-11-25 Michael Zanetti * cleanup review comments (d04170681) 2015-11-25 Albert Astals Cid * use __internals is a bit less bad than using __styleInstance (34f820d46) 2015-11-25 Michael Zanetti * update panel color (d869e67b7) 2015-11-25 Lukáš Tinkl * get rid of the orange line in the handle (1fa3e13b5) * #333333 -> #292929 (2db6cce7c) * get rid of the dp(2) gap for the orange line (a73d16bd8) 2015-11-25 Michael Zanetti * cleanup a warning (785cf4a03) * drop debug print (0a41ae1af) * also add Super+1..9 shortcuts and the hints (9f459caa5) 2015-11-25 Albert Astals Cid * fix comment (bbccae67b) * Merge (6a259a39a) * Don't use childrenRect since it doesn't shrink when children shrink (ec792d2a3) * Merge (c20e7ed30) * First implementation of the value slider filter (c6497661c) 2015-11-25 Michael Zanetti * merge trunk, fix tests (f101d248e) 2015-11-25 Albert Astals Cid * Move divider to filterspopover instead of individual filters (49bb8b901) 2015-11-24 Lukáš Tinkl * let systemd/login1 handle the lid-close action (ab689204a) 2015-11-24 Daniel d'Andrada * Mouse has to push against edges to show launcher or apps spread (fef6a0d3c) * Merge lp:~lukas-kde/unity8/newWindowDecosAndPanel (340b08cf1) * Merge lp:~dandrader/unity8/noStretchOnResize (5a5376eec) 2015-11-24 Josh Arenson * Add copyright (6bfe05f49) 2015-11-24 Michael Zanetti * use monotonic time stamps (0daca65a2) 2015-11-24 Michael Terry * Fix qmltests (d06bab641) 2015-11-24 Lukáš Tinkl * fix build (49cb9ee3f) * merge trunk (b043f8c6a) 2015-11-24 Albert Astals Cid * Remove the expectFail since the fix for the bug has landed (ac0d1bfc7) * Merge (16e52bf9a) 2015-11-23 Josh Arenson * Fix test shell (18d41eaf3) * Re-enable function disabled for debugging (6699f44b2) * Fix oriented shell test (5370a0039) * Merge upstream (9899c7b13) * Merge upstream (a02fc3bc6) * Merge trunk (cfb83d10c) * Fix typo (0e5b72bf6) * Remove unused property (d392b6eb5) * [ Albert Astals Cid ]; Make cardWidth and cardHeight real; Reset instead of qFatal when removing things from the middle (LP: #1238979); Warn we're using only the cache when not connected to the interwebs [ Andrea Cimitan ]; Add sharing widget to zoomable image and video playback [ Daniel d'Andrada ]; Cursor: properly initialize hotspot position (LP: #1510407); Update GSettings mock in tst_OrientedShell [ Lukáš Tinkl ]; Restore windows when activating from the spread, maintain a focus stack [ Michael Terry ]; Make a few DBus calls asynchronous, for a smoother UX. [ Michael Zanetti ]; Add a warning dialog when disconnecting the external monitor.; added icon for the dash (LP: #1488146); prevent windows to be moved under the panel (LP: #1438465); update inputinfo api to the latest upstream snapshot; use UbuntuNumberAnimations instead of linear ones for window state transitions (LP: #1497097) (d677f3dca) * Small review changes (ddb457eed) * Make some paramaters constant (4b7944220) * Fix include guards (47289a292) * Add more icon tests (c96dafa7f) 2015-11-23 Michael Zanetti * drop unused var (2f03b3489) 2015-11-23 Michael Terry * Fix compile error (90c8d369a) 2015-11-23 Michael Zanetti * add new focus highlight, add some tests (1942930be) * update translation template (940eb1465) * make it build again (ddd6215ac) * merge trunk (52fcd66b7) * cleanup (3b4a836bf) 2015-11-23 Albert Astals Cid * Move images used by tests to tests (2f5f60e9e) 2015-11-23 Lukáš Tinkl * don't hide the decoration when the window is not visible (c45daa8b3) 2015-11-23 Albert Astals Cid * Merge lp:~dandrader/unity8/fallbackCursorNames (ab229d806) 2015-11-23 Lukáš Tinkl * don't set width/height directly (548393126) 2015-11-23 Albert Astals Cid * Merge unity8 (4391fa494) 2015-11-23 Lukáš Tinkl * merge prereq and fix conflicts (0b1b1c195) 2015-11-23 Albert Astals Cid * Merge (773d85772) * Merge (82a55684c) * Add "Refine your results" + "Reset" to the filter popover (5e25b74ae) * Merge (616c63a52) * Merge (2f49ed22e) * Merge (5d613b23b) * Merge (d69876288) * "implement" Scope::resetFilters in the mock (ddec1bb63) 2015-11-23 Daniel d'Andrada * Update libunity-api-dev version dependency (66753c9f5) 2015-11-23 Albert Astals Cid * Merge (b319bd736) 2015-11-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c78934cc7) 2015-11-21 Lukáš Tinkl * some test fixing (f2a51f53f) 2015-11-22 Lukáš Tinkl * merge trunk, resolve conflicts (29b60008b) * merge trunk (2eb132399) 2015-11-21 Lukáš Tinkl * merge trunk (90ef6e6bf) * cleanup, use nullptr (c98ab5727) 2015-11-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (21e9bd712) 2015-11-20 Josh Arenson * Fix icon test (0fbc6ba03) * [CHECKPOINT COMMIT] add button to enable multiple sessions (c4f95c4d4) * [ Albert Astals Cid ]; Make cardWidth and cardHeight real; Reset instead of qFatal when removing things from the middle (LP: #1238979); Warn we're using only the cache when not connected to the interwebs [ Andrea Cimitan ]; Add sharing widget to zoomable image and video playback [ Daniel d'Andrada ]; Cursor: properly initialize hotspot position (LP: #1510407); Update GSettings mock in tst_OrientedShell [ Lukáš Tinkl ]; Restore windows when activating from the spread, maintain a focus stack [ Michael Terry ]; Make a few DBus calls asynchronous, for a smoother UX. [ Michael Zanetti ]; Add a warning dialog when disconnecting the external monitor.; added icon for the dash (LP: #1488146); prevent windows to be moved under the panel (LP: #1438465); update inputinfo api to the latest upstream snapshot; use UbuntuNumberAnimations instead of linear ones for window state transitions (LP: #1497097) (f0f75ff42) * [ Albert Astals Cid ]; Make cardWidth and cardHeight real; Reset instead of qFatal when removing things from the middle (LP: #1238979); Warn we're using only the cache when not connected to the interwebs [ Andrea Cimitan ]; Add sharing widget to zoomable image and video playback [ Daniel d'Andrada ]; Cursor: properly initialize hotspot position (LP: #1510407); Update GSettings mock in tst_OrientedShell [ Lukáš Tinkl ]; Restore windows when activating from the spread, maintain a focus stack [ Michael Terry ]; Make a few DBus calls asynchronous, for a smoother UX. [ Michael Zanetti ]; Add a warning dialog when disconnecting the external monitor.; added icon for the dash (LP: #1488146); prevent windows to be moved under the panel (LP: #1438465); update inputinfo api to the latest upstream snapshot; use UbuntuNumberAnimations instead of linear ones for window state transitions (LP: #1497097) (6cf541467) * Merge (d4b73c81c) * Merge upstream (c376512fb) * Fix a url to QFile issue (694d48135) * Fixed merge (2157977d9) * broken merge (a072961f4) 2015-11-20 Michael Zanetti * Also detect touchpads, not only mice (0674c1f35) 2015-11-20 Josh Arenson * Add signal for when icon directories change so the view can update (70724ef11) * Finish merge (6c7b25908) * Add getter and setter for property in qml (ab00d40f8) * Fix tests from bad merge (cde4128ac) * Merge (8633fc752) * Bzr wonkiness (4ff894c9d) * Add setter for icon search directories (af4a0e902) 2015-11-20 Lukáš Tinkl * s/gallery/gmail (00a2ef4e0) 2015-11-20 Andrea Cimitan * Add shadow to ubuntu store icon (5c94bda02) 2015-11-20 Lukáš Tinkl * merge trunk (6a88f003a) * don't change expectations for maximized apps (that are also fullscreen) (d280aa17b) 2015-11-20 Andrea Cimitan * As albert recommends (709ca5d81) 2015-11-20 Albert Astals Cid * Fix the detach assigning to a const list (412458d2e) 2015-11-20 Lukáš Tinkl * amend the test to launch 3 apps and maximize the windows by clicking the button (8025077eb) 2015-11-20 Albert Astals Cid * clazy improvements (38640ebd5) * Update pot file (29a760bb4) 2015-11-20 Michael Terry * Merge from trunk (54de2db06) 2015-11-20 Lukáš Tinkl * fix bad merge (5259b8500) 2015-11-20 Daniel d'Andrada * Merge trunk (7ce0a0557) 2015-11-20 Lukáš Tinkl * merge trunk (82fc423d6) 2015-11-20 CI Train Bot * Resync trunk. (b03c9e34c) 2015-11-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (61445a67b) 2015-11-20 Lukáš Tinkl * fix for fullscreen apps not taking the panel height into account (a15783bc3) * merge trunk (d52c341a6) 2015-11-19 Josh Arenson * Add an overloaded iconUrl method for testing the gui (105e0962b) * Add more tests (d8139b6b3) * Fix login list test and implement basic session chooser test (481d4746d) * Add gui files (19316e129) * Cleanup (9ef0600e7) * Implement tests (e22524828) 2015-11-19 Michael Zanetti * strip qrc to make QImage understand it (6496d7976) 2015-11-19 Josh Arenson * Add basic tests to plugin tests suite (bffb8fb23) 2015-11-19 Michael Terry * Fix design notes (8e8ec8e41) * Add support for custom bottom-edge messages for the five apps we support; put each tutorial object under a loader, since they'll be around much longer now (c443ec72f) 2015-11-19 Josh Arenson * Remove new lightdm tests so they can be moved to the correct place (53563f66e) * Add basic count tests (600971b04) 2015-11-19 Andrea Cimitan * merged (a656a6eb7) 2015-11-19 Michael Terry * Add a little more spacing between tutorial lines (design request) (3e7be5553) 2015-11-19 Daniel d'Andrada * Cursor plugin: add scroll wheel handling (83cfb659e) 2015-11-19 Albert Astals Cid * Initialize the image to be transparent (f99d74a46) 2015-11-19 Michael Zanetti * merge prereq (57b594c0c) 2015-11-18 Josh Arenson * Finally get testScenario working (2755f7fa9) * Implement private class members for testing sessions model (f8b288654) * Remove invokability from unused backend function (4132cd588) * Add MockSessionsModel for future scenario support (b90caa8a0) * Revert a lot of mess (891372964) * another mess (fcec91e03) * mess (03fdd29c8) 2015-11-18 Michael Terry * Make tryTutorial more useful; add bottom edge tests (9efe8c5b4) 2015-11-18 Lukáš Tinkl * make the screenshot saving truly async (1b8fb2da6) 2015-11-18 Michael Terry * Fix up new tests to pass again (e4093993e) 2015-11-18 Lukáš Tinkl * add an option to show a fake window title in panel (863d6cadb) * handle difference between "mute" and "silent mode" actions (73ed98231) 2015-11-18 Michael Terry * Re-enable tests (557881317) 2015-11-18 Lukáš Tinkl * fix imports (d2aa4eba7) 2015-11-18 Michael Terry * Add back greeter launcher tease that I accidentally deleted (954b3c94c) 2015-11-18 Michael Zanetti * a first cut on implementing the new design requirements in the Launcher (bd9f0c16d) 2015-11-18 Lukáš Tinkl * properly destroy PanelState (a89feea3b) 2015-11-18 Albert Astals Cid * Implement the optional title for filters (24cb11137) * Adapt to api changes (8b7cb8d3c) * Merge (becc58363) * Merge (4b871f252) * Merge (c0bf7c8eb) * Merge (82c2455d7) * Minimal implementation of the filters title (ff872db73) 2015-11-18 Michael Zanetti * add UInput plugin to install files (9d2abac5a) 2015-11-17 Josh Arenson * Add testScenario to mock sessions model (5030e9554) * Add icon search paths (fabac28d0) * Implement sessionsModel (4fd9ab3ae) 2015-11-17 Michael Terry * Fix bottom tutorial spacing (ce7b520f7) * Add missing file (2065cf289) * Make tablet mode work better for tutorial (35b5baa6e) 2015-11-17 Michael Zanetti * fix it and add another test (a1e463dfb) * drop the buttons, make the pad full screen as suggested by design (03ff1bd55) 2015-11-17 Albert Astals Cid * Merge (ff38a9d4a) * Range Input filter (bf829cc90) 2015-11-17 Michael Zanetti * add copyright headers (f0e724fec) 2015-11-16 Michael Terry * Disable tests momentarily to build in silo (02f0ecbe5) * More tutorial page trigger fixups (b018d4e8d) 2015-11-16 Daniel d'Andrada * Extend fallback names (a9fd349f8) 2015-11-16 Lukáš Tinkl * remove no-op (fdd4adc4b) 2015-11-16 Daniel d'Andrada * s/QList/QStringList (f5a55d957) 2015-11-16 Lukáš Tinkl * add a quirk for the battery indicator (5540a5030) 2015-11-16 Albert Astals Cid * Merge (5efcb1d49) * Merge (dba74133d) * remove unexistent bottomItem use (9cea78e10) 2015-11-16 Michael Zanetti * refactor a little, add some tests (6e47c0573) 2015-11-16 Lukáš Tinkl * add quirks for session and keyboard indicators (f698e8038) 2015-11-14 Lukáš Tinkl * merge trunk, fix conflicts (14022c2d9) 2015-11-13 Lukáš Tinkl * clear the window controls and title when showing the desktop spread (045ea262b) 2015-11-13 Michael Terry * Only show top tutorial after 3s of inactivity (1e10d9f7b) * Wait to show bottom edge intro until after the app is ready to render (51d5a6965) * Add back support for bottom edge (0c1ddcc9e) * Add monitorOnly support to DDA (d1cc34e28) 2015-11-13 Michael Zanetti * replace MouseArea with MultiPointTouchArea (deee36b48) 2015-11-13 Lukáš Tinkl * wait for the shell rendering (99828e8df) * more shell tests fixing (f80ffa27a) * fix some failing tests (17e4c2f89) 2015-11-13 Andrea Cimitan * Fix flakyness (c0c38ddd6) 2015-11-13 Albert Astals Cid * Create ratings on demand instead of all at the same time (34bcf7123) 2015-11-12 CI Train Bot * Releasing 8.11+16.04.20151112.1-0ubuntu1 (de7d71f22) 2015-11-12 Albert Astals Cid * Reset instead of qFatal when removing things from the middle (6d79f4590) 2015-11-12 Michael Zanetti * Add a warning dialog when disconnecting the external monitor. (19014f1cf) * update inputinfo api to the latest upstream snapshot (2ba00290d) 2015-11-12 Albert Astals Cid * Make cardWidth and cardHeight real (1bdd9944d) 2015-11-12 Michael Zanetti * use UbuntuNumberAnimations instead of linear ones for window state transitions Fixes: #1497097 Approved by: Lukáš Tinkl (c987069bf) * prevent windows to be moved under the panel (a806148e4) 2015-11-12 Lukáš Tinkl * Restore windows when activating from the spread, maintain a focus stack (d3df9714f) 2015-11-12 Andrea Cimitan * Add sharing widget to zoomable image and video playback Approved by: Albert Astals Cid, Pawel Stolowski (8dde54ca6) 2015-11-12 Daniel d'Andrada * Update GSettings mock in tst_OrientedShell (5da5e7cfc) 2015-11-12 Michael Zanetti * added icon for the dash Fixes: #1488146 Approved by: Albert Astals Cid, Lukáš Tinkl (270d41209) 2015-11-12 Albert Astals Cid * Warn we're using only the cache when not connected to the interwebs (2f0acb13c) 2015-11-12 Daniel d'Andrada * Cursor: properly initialize hotspot position Fixes: #1510407 Approved by: Gerry Boland (97e722cd8) 2015-11-12 Michael Terry * Make a few DBus calls asynchronous, for a smoother UX. (941e4b775) * Merge from trunk (45fca2356) 2015-11-12 Lukáš Tinkl * add a checkbox to see window control buttons (9a662da32) 2015-11-12 Michael Zanetti * wait for animations to be finished before destroying the test (a2a8b50e6) 2015-11-12 Michael Terry * Drop top timer down to 30s (from 60s) (521f2b71c) 2015-11-12 Lukáš Tinkl * remove the left black divider for now (49236604f) * optimize the for loop (9b382e596) * readd the accidentally dropped indicators shadow (832b6c6b2) 2015-11-12 Albert Astals Cid * Merge (ef90fd171) * Fix import versions (786b09e7a) 2015-11-12 Lukáš Tinkl * fix warning when clicking the panel with no maximized window at all (e6b9a09a7) * remove acronyms (a1ed8bb90) * nuke unused component (79db694a9) 2015-11-12 Michael Zanetti * mrege prereq (6796ff9e5) 2015-11-12 Lukáš Tinkl * sanitize SVGs (cb1aa76c3) 2015-11-11 Daniel d'Andrada * Cursor: Add more fallback names, a blank and custom cursor support (a98ae4864) 2015-11-11 Michael Zanetti * add a UInput plugin to fake a touchpad (9034dd18f) 2015-11-11 Albert Astals Cid * Start from a clean scopes situation every test now that favorite changes scopes (8e1373dc8) * Make sure that unfavoriting a scope gives us the next one (2c20ff636) 2015-11-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (78bdee568) 2015-11-10 Lukáš Tinkl * visual updates (a7df3d9af) 2015-11-10 Albert Astals Cid * Make sure that unfavoriting a scope gives us the next one (c2d2c2fad) * ListItem reworks to match the visuals from design (6dc4854a3) 2015-11-09 Josh Arenson * Fix more permissions (7e12dc0db) * Chmod more messed up files (c4854fe09) * Bump qml version (d27954488) * Merge trunk (1dfda0ddb) 2015-11-09 Albert Astals Cid * Merge (c2152517d) 2015-11-09 Michael Zanetti * update after merging (8c901269e) 2015-11-09 Daniel d'Andrada * Remove dependency on MirSurfaceItem.fillMode property (0b54e5a3c) 2015-11-09 Michael Zanetti * fix bad merge (5f6605839) * merge prereq (118f25905) * fix bad merge (1a85ae94c) * merge prereq (f49273ab8) * mege trunk (d7386f1b1) * add missing copyright header (e7ed685de) * bump import versions (5f6ddafb8) * merge trunk (facb25fa4) 2015-11-09 Lukáš Tinkl * bring back the panel hiding/showing animations (98ac5372e) * restoreFromMinimized() -> restore() restore() -> restoreFromMaximized() (0885e421b) 2015-11-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (86d0a357f) 2015-11-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a66044f0e) 2015-11-07 Lukáš Tinkl * fix maximized apps behavior (panel, resize cursor, focus switching, ...) (b071a6636) * focus a maximized app (9974bf976) * fix tests for fullscreen apps (1e73abd05) 2015-11-06 Josh Arenson * Fix mistakes from previous merge (e372d94b9) 2015-11-07 Lukáš Tinkl * more test fixing (db7effd70) 2015-11-06 Lukáš Tinkl * fix some failing tests, these apps are fullscreen (4845515a0) * fix from dednick for disappearing maximized windows (11653c25c) * fix panel dropdown shadow when we minimize a previously maximized window (5e6d76296) * fix minimizing windows from panel (3f8fd1c9c) 2015-11-06 Josh Arenson * [ Albert Astals Cid ]; Add an Item that proxies for old and new audio roles (LP: #1493851. CroppedImageMinimumSourceSize: Fix 'Binding loop detected for property "imageAspectRatio"'; Make the scope settings list scroll to text visible area (LP: #1499084) * Move to importing QtQuick 2.4 & friends; Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Andrea Cimitan ]; Add sharing widget to zoomable image and video playback; Make zoomable and video playback widgets edge to edge; Updated all 1.3 UbuntuShape to use new APIs where possible; Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ CI Train Bot . Resync trunk. [ Christopher Lee ]; Quick spelling fix in process control output. [ Daniel d'Andrada ]; Enable support for overriding application orientations based on device type (LP: #1478637); Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628); Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Josh Arenson ]; Enable support for overriding application orientations based on device type (LP: #1478637) [ Michael Terry ]; Avoid showing the shutdown dialog when turning on the screen if your device is under heavy load. (LP: #1508563); Handle lifecycle policy exceptions ourselves, instead of letting qtmir do it for us and allow non-Touch apps to opt-out of the Touch lifecycle. [ Michael Zanetti ]; Fixes for the panel buttons (LP: #1510360, #1504269, #1431566, #1443319); Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Michał Sawicz ]; Add missing copyright to Cursor.qm. Enable support for overriding application orientations based on device type (LP: #1478637); Support server->client visibility change to stop rendering (lp:#1475678) (LP: #1475678) [ Nick Dedekind ]; Support server->client visibility change to stop rendering (lp:#1475678) (LP: #1475678) (ad3317613) 2015-11-06 Lukáš Tinkl * implement the fullscreen as a state (05774cd8f) * fix [Pocket PC] fullscreen video isn't full screen (cd712a4a3) 2015-11-06 Daniel d'Andrada * Fix typo (f0b3fe325) 2015-11-06 Albert Astals Cid * Proper name (4198b799e) 2015-11-06 Daniel d'Andrada * Merge trunk (1b0563133) 2015-11-06 Albert Astals Cid * Merge (229be7ce1) * Fix some tests (d14f9b143) 2015-11-06 Lukáš Tinkl * cleanup dupe states (ca489bf40) * merge prereq & fix conflicts (5a598dc72) * cleanup (c1cee6675) * cleanup (b28b7a522) * merge trunk (b68d8451c) 2015-11-06 Michael Terry * Merge from trunk (9ef54b33a) 2015-11-06 Michael Zanetti * merge prereq (de671c5c6) 2015-11-06 Albert Astals Cid * Merge (a30e17b34) * Merge (bf1555b59) * Fix imports (ec8021514) * Merge (86e815a12) * Merge (f25b29783) * increase the unity-api dependency (a19df9d95) * merge (9f7a99a4e) * Merge (bb1c1d824) * Merge (1a25f5c0f) 2015-11-06 Michael Zanetti * bump imports for ModeSwitchWarningDialog to 1.3 (d4f89941a) * merge trunk (d7ec03192) * merge trunk (0f801ff76) * fix createSession (be0ab1be0) 2015-11-05 Josh Arenson * Fix permissions. (a167c5db7) * Fix permissions? (3b540b1af) 2015-11-05 Lukáš Tinkl * account for the lost orange separator line (f4e43d332) * panel dropdown shadow for maximized unfocused windows (12ef56fbb) 2015-11-05 Michael Zanetti * move screenshots out of the Dash dir (e53c88a4e) * merge prereq (1dbbef56a) * add a screenshot for the fake libreoffice (6c2a43d25) * fix tests (b07471129) * fix disconnect when changing the source model (04889a441) 2015-11-05 Lukáš Tinkl * bye bye orange line (3bd082f5a) 2015-11-05 Michael Zanetti * update copyright year (3fe3f4ba3) * merge prereq (dfac5cd2f) 2015-11-05 Albert Astals Cid * Brackets for the number of selected filters (635b61166) * Rectangle for the navigation taRectangle for the navigation tagg (f5b45b240) * Design wants a bigger margin around Cancel (1997ab533) * Change default header background to white (6f303bb53) * Use filters icon and increase margins to 1gu (3d53e6806) 2015-11-04 Josh Arenson * Don't let IntegratedLightDM muck with the username (f0ea054ce) 2015-11-05 Lukáš Tinkl * no need to specify the default button (b5ff9993d) * fix tap test (e06d21faa) 2015-11-04 Josh Arenson * Fix qmltypes (9265bf668) * Update unity8-greeter package description (b136ace1e) * Remove unused fields from the .desktop file (d12323ad0) 2015-11-04 Michael Terry * Make arrow larger (ba6ccc681) * Remove long press dismiss (0037feb8b) * Disable bottom edge completely for now (f6f813779) * Left-align right-edge text, but still place it against the arrow (fb44787e7) 2015-11-04 Michael Zanetti * parent it properly (06e7e891e) * move the logic for opening the ModeSwitchWarningDialog to Dialogs.qml (5661b7e46) 2015-11-04 Lukáš Tinkl * adjust the drag handle color (886ad2789) 2015-11-04 Andrea Cimitan * make pot_file (a70d047ac) 2015-11-04 CI Train Bot * Releasing 8.11+16.04.20151104-0ubuntu1 (d527f6be3) 2015-11-04 Michael Terry * Avoid showing the shutdown dialog when turning on the screen if your device is under heavy load. (30e803cfb) 2015-11-04 Albert Astals Cid * CroppedImageMinimumSourceSize: Fix 'Binding loop detected for property "imageAspectRatio"' (00e227294) 2015-11-04 Christopher Lee * Quick spelling fix in process control output. Approved by: Albert Astals Cid (5eb50d2ee) 2015-11-04 Michał Sawicz * Support server->client visibility change to stop rendering (lp:#1475678) Fixes: #1475678 Approved by: Daniel d'Andrada (9794345c7) 2015-11-04 Michael Terry * Handle lifecycle policy exceptions ourselves, instead of letting qtmir do it for us and allow non-Touch apps to opt-out of the Touch lifecycle. (931c63cc8) 2015-11-04 Michał Sawicz * Enable support for overriding application orientations based on device type Fixes: #1478637 (c2d47ba49) 2015-11-04 Michael Zanetti * Fixes for the panel buttons (c61aeb560) 2015-11-04 Albert Astals Cid * Add an Item that proxies for old and new audio roles Fixes: #1493851 (1dd4de3df) * Move to importing QtQuick 2.4 & friends (a5d2ff37a) * Make the scope settings list scroll to text visible area Fixes: #1499084 Approved by: Michael Terry (abba1e3fd) 2015-11-04 Andrea Cimitan * Add sharing widget to zoomable image and video playback Approved by: Albert Astals Cid, Pawel Stolowski (95cf8bdfd) * Make zoomable and video playback widgets edge to edge Approved by: Albert Astals Cid (b90131890) * Updated all 1.3 UbuntuShape to use new APIs where possible Approved by: Albert Astals Cid (59eee29d6) 2015-11-04 Daniel d'Andrada * Use SDK 1.3 across all files Fixes: #1449628, #1503498, #1508363 Approved by: PS Jenkins bot (5280096da) 2015-11-04 Nick Dedekind * switch around (2ce304c2b) * fixed occlusion exceptions (bd79d3b90) 2015-11-04 Lukáš Tinkl * revert to using BorderImage for the window glow (80acb049c) 2015-11-04 Nick Dedekind * Fixed shell test orientation defaults (7e21c7159) 2015-11-04 Andrea Cimitan * merged 1.3_newUbuntushape (6337d1314) 2015-11-04 Michael Zanetti * fix rotation with the dialog (815b3ba47) 2015-11-04 Lukáš Tinkl * merge prereq (4b513a553) * fix the nested hover event (0ec4a5d9e) 2015-11-03 Josh Arenson * Fix permissions (071b7e06b) 2015-11-04 Lukáš Tinkl * panel improvements (8072745fb) 2015-11-03 Michael Terry * Whoops, remove testing changes (9ed0d4deb) 2015-11-03 Lukáš Tinkl * drop shadow (glow) around the window (0876c086f) * first stab at new window decorations (31be9b018) 2015-11-03 Daniel d'Andrada * Update GSettings mock in tst_OrientedShell (66c5eb486) 2015-11-03 Michael Zanetti * use UbuntuNumberAnimations instead of linear ones for window state transitions (41fd789af) * move minimized/maximized etc into a private object (1dc907655) * merge prereq (c5ab0c769) * merge prereq (9d4821269) 2015-11-03 Lukáš Tinkl * make sure to play the minimized animation before switching focus to next (24930cf60) 2015-11-02 Michael Zanetti * merge prereq (9cbab18de) * merge prereq (4ea940f86) 2015-11-02 Lukáš Tinkl * merge prereq (363c5deda) 2015-11-02 Michael Zanetti * merge prereq (363f4f4ef) * also move the window into bounds on restore (479b8b136) 2015-11-02 Lukáš Tinkl * add a test to prove smashing all the 4 cursor keys together does nothing :) (961a4e5a6) 2015-11-02 Josh Arenson * Fix translations (3dde973cc) * Remove useless preprocessor code (fcb5ccbc6) * Fix whitespace (83fef283d) * Merge trunk (993062490) * Re-enable whitespace test (ba7a1a3e9) 2015-11-02 Michael Zanetti * drop some debug prints (5a23f5243) * work around a conflict between Q_GLOBAL_STATIC and qmlRegisterSingletonType (325be3372) * merge trunk (70afd078c) * drop duplicate install (eb62e35a8) 2015-11-02 Lukáš Tinkl * take the panel height into account when semimaximizing windows (9844507b7) 2015-11-02 Michael Zanetti * add copyright headers (9577279c3) 2015-11-01 Lukáš Tinkl * fix click to focus (784dcad2c) 2015-10-31 Lukáš Tinkl * fix restoring the apps from spread to the correct state and size (eb3696c9a) 2015-10-30 Michael Terry * Bump shell application version harder (6d47a9e9e) * Bump shell application version (bce13a4f5) 2015-10-30 Michael Zanetti * added icon for the dash (e3e903459) 2015-10-30 Lukáš Tinkl * fix issues found by mzanetti (0e8981210) 2015-10-30 Michael Zanetti * prevent windows to be moved under the panel (a21de656b) 2015-10-30 Daniel d'Andrada * Fix bug in OrientedShell.orientationChangesEnabled (4224c59f4) 2015-10-30 Albert Astals Cid * Always use a playlist for playing even if it's just for one song (10632b748) 2015-10-30 Michael Zanetti * merge activateWindows as prereq (ae797aaaf) * merge trunk (e99c9454d) 2015-10-30 Nick Dedekind * fixed tablet undefined (e9e127284) * use maximise as unmaximise if already maximised (24897183d) 2015-10-30 Albert Astals Cid * readonly+comment (8b1c0b83d) 2015-10-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (26855ad0b) 2015-10-29 Michael Terry * Merge from trunk (6fa343a72) 2015-10-29 Lukáš Tinkl * make the timezone model filterable by both predefined country and user filter string (63783c6b6) 2015-10-29 Albert Astals Cid * Set the background source size to the max we'll ever need (b9a10ca2d) 2015-10-29 Lukáš Tinkl * make the pass meter thinner (400057b90) * merge trunk (359413a6f) 2015-10-29 Albert Astals Cid * Use the addSources function instead of the addSource (c18376790) 2015-10-29 Nick Dedekind * removed foregroundMaximizedAppId (5084e24d1) * seq animations (9b3b36c73) * reverted debug (c93766404) * reverted max change (3d284aff4) * review (7d9e34797) 2015-10-29 Albert Astals Cid * log-- (94d6a1897) 2015-10-29 Nick Dedekind * remove binding loop (a71b8e795) 2015-10-29 Daniel d'Andrada * Fix (eb6d72e05) 2015-10-29 Albert Astals Cid * mege (0dc94849d) * Merge (086341a92) * build (434846eb4) 2015-10-29 Lukáš Tinkl * silence warnings (5f3ec2e24) 2015-10-29 Daniel d'Andrada * Another bug from a bad merge with trunk (4f727b0b7) 2015-10-29 Albert Astals Cid * Merge use_sdk_13 (0b0f0d8b0) * Bring splash header closer to what apps use (b37b4b635) 2015-10-29 Michael Zanetti * fix initialisation of window storage state for new apps/windows (a98265cb4) 2015-10-28 Daniel d'Andrada * DeviceConfiguration.qml: Fix bogus merge with trunk (f837d4a56) 2015-10-28 Nick Dedekind * added clear (66adfe12b) 2015-10-28 Andrea Cimitan * Do not show ubuntuShape framed lazyimage when not requested (0ee4a1a2d) 2015-10-28 Albert Astals Cid * return -1 instead of undefined (5637c5def) 2015-10-28 Michael Zanetti * merge prereq (8487c8e0c) 2015-10-28 Michael Terry * Add quick clarifying comment (ff4a7c81a) * Also confirm that app no longer has focus (d08a004c1) * Break test apart (cf308bee1) 2015-10-28 Albert Astals Cid * log-- (ea2eceba3) 2015-10-28 Michael Zanetti * dropped debug print that slipped in (d185fe33a) * added some tests (852f9bd37) 2015-10-28 Albert Astals Cid * Make cardWidth and cardHeight real (d6e0280fc) 2015-10-28 Michael Zanetti * cleanup (b41095bc1) * merge prereq (23ba7e0ae) * implementation should be working now (5aa86fa3d) * merge prereq (ffde63f41) 2015-10-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a0a549e8d) 2015-10-27 Michał Sawicz * Merge lp:~mterry/unity8/no-touch-no-lifecycle (c3bcab38d) 2015-10-27 Nick Dedekind * bump libunity-api version (a67cf9639) 2015-10-27 Michael Terry * Merge new_fix_upsidedown branch (cae88d4e8) * Go back to using 1.3 (d85370e06) 2015-10-27 Josh Arenson * Restore control (be5734c17) 2015-10-27 Michał Sawicz * lp:~mzanetti/unity8/panel-button-fixes (2a22cd8ee) 2015-10-27 Josh Arenson * Change include paths (d6655f934) * Update new ShellApplication class to handle greeter mode (555cc1508) 2015-10-27 Michael Terry * Merge from trunk (59830b593) 2015-10-27 Lukáš Tinkl * elide the window title in the title bar (118292256) 2015-10-27 Michael Terry * Merge from trunk (bb1e52c51) 2015-10-27 Albert Astals Cid * Warn we're using only the cache when not connected to the interwebs (c92504e79) 2015-10-27 Lukáš Tinkl * merge prereq to fix failing tests (c36de80c5) 2015-10-27 Albert Astals Cid * Merge wide-preview-zoomable-videoplayback (160c2a1b2) 2015-10-27 Daniel d'Andrada * Merge trunk (97e27ba76) 2015-10-27 Albert Astals Cid * Merge (4b55daefc) 2015-10-27 Andrea Cimitan * Merged wide-preview (6ede99e3c) * [ Albert Astals Cid ]; Clazy fixes; Enable Efficient String Construction by default [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada ]; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support [ Daniel van Vugt ]; Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (LP: #1486341, #1488327) [ Lukáš Tinkl ]; Fix autopilot wizard test skipping the reporting page; Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (LP: #1504318) * React to window title (aka surface name) changes (LP: #1497092); Rotate the screenshots according to the actual orientation [ Michał Sawicz ]; Fix application API dependency; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support; Rotate the screenshots according to the actual orientation [ Nick Dedekind ]; Fixed leak in UnityMenuModelStackTest; Moved time translation to SDK (LP: #1372061) (7d28a9eed) 2015-10-27 Albert Astals Cid * Increase dep (bc829de83) 2015-10-27 Michael Zanetti * fix tests (clear the mock state store between tests) (9a708f409) 2015-10-27 Andrea Cimitan * [ Albert Astals Cid ]; Clazy fixes; Enable Efficient String Construction by default [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada ]; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support [ Daniel van Vugt ]; Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (LP: #1486341, #1488327) [ Lukáš Tinkl ]; Fix autopilot wizard test skipping the reporting page; Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (LP: #1504318) * React to window title (aka surface name) changes (LP: #1497092); Rotate the screenshots according to the actual orientation [ Michał Sawicz ]; Fix application API dependency; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support; Rotate the screenshots according to the actual orientation [ Nick Dedekind ]; Fixed leak in UnityMenuModelStackTest; Moved time translation to SDK (LP: #1372061) (4740a7aa6) 2015-10-27 Daniel d'Andrada * Cursor: set hotspot initial position (7d494e3c5) 2015-10-27 Lukáš Tinkl * display the maximized window's title in the panel, next to the buttons (1da1ee8b2) 2015-10-26 Michał Sawicz * Bump QtQuick import (7e7e40367) 2015-10-26 Josh Arenson * [ Albert Astals Cid ]; Clazy fixes; Enable Efficient String Construction by default [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada ]; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support [ Daniel van Vugt ]; Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (LP: #1486341, #1488327) [ Lukáš Tinkl ]; Fix autopilot wizard test skipping the reporting page; Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (LP: #1504318) * React to window title (aka surface name) changes (LP: #1497092); Rotate the screenshots according to the actual orientation [ Michał Sawicz ]; Fix application API dependency; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support; Rotate the screenshots according to the actual orientation [ Nick Dedekind ]; Fixed leak in UnityMenuModelStackTest; Moved time translation to SDK (LP: #1372061) (8402714ed) 2015-10-26 Andrea Cimitan * Fix imports (5bc44e9e1) 2015-10-26 Albert Astals Cid * Move to 2.4 (6ebf090da) 2015-10-26 Andrea Cimitan * merged (e63da7231) 2015-10-26 Michael Zanetti * merge trunk (a1abe0088) 2015-10-26 Albert Astals Cid * Merge use_quick_24 (980ae6f6a) * Merge wide-preview-zoomable-videoplayback (563258188) 2015-10-26 Andrea Cimitan * Fix for review (632018935) * [ Albert Astals Cid ]; Clazy fixes; Enable Efficient String Construction by default [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada ]; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support [ Daniel van Vugt ]; Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (LP: #1486341, #1488327) [ Lukáš Tinkl ]; Fix autopilot wizard test skipping the reporting page; Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (LP: #1504318) * React to window title (aka surface name) changes (LP: #1497092); Rotate the screenshots according to the actual orientation [ Michał Sawicz ]; Fix application API dependency; Have unity8 drawing its own cursor (LP: #1488417); Initial multi-monitor support; Rotate the screenshots according to the actual orientation [ Nick Dedekind ]; Fixed leak in UnityMenuModelStackTest; Moved time translation to SDK (LP: #1372061) (e1ce4b884) 2015-10-26 Michael Terry * Some initial async cleanup (d28fa914e) 2015-10-26 Albert Astals Cid * Merge (1e120eeb5) * Merge (84e35d06d) * Merge (539e91976) 2015-10-26 Lukáš Tinkl * merge lp:~mzanetti/unity8/panel-button-fixes (0d19772fe) 2015-10-26 Albert Astals Cid * Merge (196029b7f) * Merge (b84e01f0b) * Merge (5c43927a7) * Merge (e720053a3) 2015-10-26 Lukáš Tinkl * merge trunk (c00ac66f6) 2015-10-26 Michał Sawicz * Add missing copyright to Cursor.qml (639f765d2) 2015-10-26 CI Train Bot * Resync trunk. (0e9dee38a) 2015-10-26 Andrea Cimitan * Merged (034dca796) 2015-10-26 Michał Sawicz * Add copyright to plugins/Cursor/Cursor.qml (ae33f4189) * Merge trunk (31e9c0039) * Merge lp:~mzanetti/unity8/panel-button-fixes (6e4498b74) 2015-10-26 Michael Zanetti * merge trunk (33d7ebac9) 2015-10-26 Albert Astals Cid * Merge (7efd6e839) * Merge lp:~ci-train-bot/unity8/unity8-ubuntu-xenial-landing-022 (8b14ba61b) 2015-10-26 Michał Sawicz * Merge trunk (6309ccc2f) 2015-10-26 Albert Astals Cid * Merge (3ebd1135b) 2015-10-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7e6daf965) 2015-10-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9dbc1b161) 2015-10-23 Andrea Cimitan * Remove unused Ubuntushapecomponent (20def232b) 2015-10-23 Daniel d'Andrada * Fix resize of top/left borders for slow surfaces (dd7cd9f1e) 2015-10-23 Albert Astals Cid * Saviq doesn't like the two properties approach (ce2ec420e) * Merge (1c79d32a2) * Make Cancel follow the scope coloring (0aec3103f) * Make the else branch use 5.0 instead of 5.4 (9ce813a8a) 2015-10-23 Andrea Cimitan * [ CI Train Bot ]; New rebuild forced. [ Pawel Stolowski ]; Store unity8 package version in /var/lib/.../version file for fast retrieval from the shell plugin. [ Lukáš Tinkl . Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) [ CI Train Bot . Resync trunk. [ Lukáš Tinkl ]; Wizard: skip the reporting page if the system is configured not to report crashes (LP: #1494442) [ Alexandros Frantzis ]; Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (LP: #1291455) [ CI Train Bot ]; New rebuild forced. [ Albert Astals Cid ]; Make Launcher::test_quickListMenuOnRMB stable (LP: #1500359) [ CI Train Bot ]; New rebuild forced. [ Michael Zanetti . Stabilize Launcher DND test [ Albert Astals Cid . Improvements from running clazy over the code [ Daniel d'Andrada ]; PhoneStage: ensure you're left in a consistent state after being reset (LP: #1476757) [ Lukáš Tinkl ]; Improve the appearance and functionality of datetime and session indicators in Unity8 desktop. Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) [ Michael Zanetti ]; further development on the Desktop Spread (LP: #1488147) [ Michał Sawicz ]; Bump application API version; Skip bluetooth check under wily, use expectFailure to notice when it's back [ Richard Somlói ]; Fix translator comments in time formatter [ Albert Astals Cid ]; Adapt test to code changes; Add DEP-8 test for all our UI and unit tests; Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ]; When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ]; Add DEP-8 test for all our UI and unit tests; Fix integrated LightDM pat. Resync trunk [ Albert Astals Cid ]; Fix testNotifications * Make the wait longer to make tests pass in CI; New simplified CroppedImageMinimumSourceSize (LP: #1467740. Stop animateTimer when starting the fadeOutAnimation; Use AlreadyLaunchedUpstart so that tests passes; Workaround keyboard issues and make test pass again [ Daniel d'Andrada ]; DesktopStage: Refactor focus handlin. Stabilize tstShell.test_launchedAppHasActiveFocus [ Gary.Wzl ]; Add widgetData["expanded"] property for expandable widget. [ Michael Terry ]; Fix typo that caused the tutorial to tease the launcher on top of the greeter.; Fix typo that caused the tutorial to tease the launcher on top of the greeter. [ Michal Sawicz . Resync wily with vivid [ Albert Astals Cid ]; Accomodate header height when using a card carousel with non overlayed header (LP: #1489309); Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ]; Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl . Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ]; Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086); Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ]; Implement progressive autoscrolling in desktop spread; add an animation transition when invoking the spread by hitting the right edge [ Michael Zanetti . release for wily [ CI Train Bot ]; New rebuild forced. (bf3c0abf0) * [ CI Train Bot ]; New rebuild forced. [ Pawel Stolowski ]; Store unity8 package version in /var/lib/.../version file for fast retrieval from the shell plugin. [ Lukáš Tinkl . Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) [ CI Train Bot . Resync trunk. [ Lukáš Tinkl ]; Wizard: skip the reporting page if the system is configured not to report crashes (LP: #1494442) [ Alexandros Frantzis ]; Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (LP: #1291455) [ CI Train Bot ]; New rebuild forced. [ Albert Astals Cid ]; Make Launcher::test_quickListMenuOnRMB stable (LP: #1500359) [ CI Train Bot ]; New rebuild forced. [ Michael Zanetti . Stabilize Launcher DND test [ Albert Astals Cid . Improvements from running clazy over the code [ Daniel d'Andrada ]; PhoneStage: ensure you're left in a consistent state after being reset (LP: #1476757) [ Lukáš Tinkl ]; Improve the appearance and functionality of datetime and session indicators in Unity8 desktop. Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) [ Michael Zanetti ]; further development on the Desktop Spread (LP: #1488147) [ Michał Sawicz ]; Bump application API version; Skip bluetooth check under wily, use expectFailure to notice when it's back [ Richard Somlói ]; Fix translator comments in time formatter [ Albert Astals Cid ]; Adapt test to code changes; Add DEP-8 test for all our UI and unit tests; Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ]; When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ]; Add DEP-8 test for all our UI and unit tests; Fix integrated LightDM pat. Resync trunk [ Albert Astals Cid ]; Fix testNotifications * Make the wait longer to make tests pass in CI; New simplified CroppedImageMinimumSourceSize (LP: #1467740. Stop animateTimer when starting the fadeOutAnimation; Use AlreadyLaunchedUpstart so that tests passes; Workaround keyboard issues and make test pass again [ Daniel d'Andrada ]; DesktopStage: Refactor focus handlin. Stabilize tstShell.test_launchedAppHasActiveFocus [ Gary.Wzl ]; Add widgetData["expanded"] property for expandable widget. [ Michael Terry ]; Fix typo that caused the tutorial to tease the launcher on top of the greeter.; Fix typo that caused the tutorial to tease the launcher on top of the greeter. [ Michal Sawicz . Resync wily with vivid [ Albert Astals Cid ]; Accomodate header height when using a card carousel with non overlayed header (LP: #1489309); Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ]; Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl . Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ]; Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086); Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ]; Implement progressive autoscrolling in desktop spread; add an animation transition when invoking the spread by hitting the right edge [ Michael Zanetti . release for wily [ CI Train Bot ]; New rebuild forced. (42ca81f41) 2015-10-23 Albert Astals Cid * Rename the item to Notification too (137a88001) * NotificationRole instead of AlarmRole (028620db9) 2015-10-22 Daniel d'Andrada * Address review comments (449381c57) * Don't stretch application surfaces when resizing (b71b294a7) * Merge lp:~unity-team/unity8/externalMonitor (5c86320d7) 2015-10-22 Michael Terry * remove an obsolete code change (663ccc55b) * extra test (d23a6d225) * Pay attention to input event timestamps (c61e60398) 2015-10-22 Albert Astals Cid * Merge (e17218208) * Move the shadow to the extrapanel (82ba9a943) 2015-10-22 Michael Zanetti * fix include statemant after renaming a file (8748e066e) 2015-10-22 Albert Astals Cid * Add an item that proxies for old and new audio roles (26b5ba655) 2015-10-22 Michael Zanetti * drop debug print (00d1a1ebf) * make sure panel buttons are not visible while greeter is shown (944fcf182) * drop old unused UnityInputInfo wrapper (27dcaa74e) 2015-10-22 Albert Astals Cid * PageHeader -> DashPageHeader (e691e0e04) 2015-10-22 Michael Zanetti * update tests (2e9b24827) 2015-10-22 Albert Astals Cid * Wrap the filters in a flickable (720dde376) 2015-10-22 Nick Dedekind * Only visible if in front of maximized application (ee81e8d0d) 2015-10-22 Albert Astals Cid * add commetn (fe871d75d) 2015-10-21 Michael Terry * Count the key events rather than wall time when considering showing the shutdown dialog (cde772bfe) 2015-10-21 Michael Zanetti * merge trunk (02d63fe13) * merge with prereq (d1b0f8c79) 2015-10-21 Albert Astals Cid * Fix 'Binding loop detected for property "imageAspectRatio"' (5bf7cdae6) 2015-10-21 Lukáš Tinkl * consistent tick margins (8ecbdd8b1) * UI review round (5e3b3463f) 2015-10-21 Andrea Cimitan * As review (28b558b68) 2015-10-21 Lukáš Tinkl * remove colons (6fe973e29) * merge trunk (38e36da40) 2015-10-21 CI Train Bot * Releasing 8.11+15.10.20151021-0ubuntu1 (c2dc0bb7c) 2015-10-21 Lukáš Tinkl * Fix autopilot wizard test skipping the reporting page Approved by: Albert Astals Cid, PS Jenkins bot (1c74b30a2) 2015-10-21 Albert Astals Cid * Enable Efficient String Construction by default (53fd0c9ec) * Clazy fixes (3125133b8) 2015-10-21 Lukáš Tinkl * Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 Fixes: #1504318 Approved by: Michael Zanetti, Michał Sawicz (642d31e0e) 2015-10-21 Nick Dedekind * Fixed leak in UnityMenuModelStackTest Approved by: Albert Astals Cid (5652796b2) * Moved time translation to SDK Fixes: #1372061 Approved by: Albert Astals Cid (e3120335c) 2015-10-21 Daniel van Vugt * Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (cf16384e9) 2015-10-21 Lukáš Tinkl * Rotate the screenshots according to the actual orientation (f79facfa0) 2015-10-21 Daniel d'Andrada * Initial multi-monitor support (385d92ae3) 2015-10-21 Lukáš Tinkl * React to window title (aka surface name) changes Fixes: #1497092 (eb75df3b0) 2015-10-21 Daniel d'Andrada * Have unity8 drawing its own cursor (265e5595d) 2015-10-21 Michał Sawicz * Fix application API dependency (5fe566f36) 2015-10-21 Lukáš Tinkl * simplify code, minimize delta (9cc7cfe1f) * add tests for maximizeLeft/Right (6452c75ed) * add tests for minimizeAll and close (3c9128eb6) 2015-10-20 Michael Terry * Only open bottom tutorial when an application is opened, not just focused (218008ad2) 2015-10-21 Lukáš Tinkl * always focus the first app in the stack, based on recency (bbce29349) * add tests for maximize and minimize an app (f99bdcffd) 2015-10-20 Michael Terry * Handle incoming calls, the greeter, and the OSK (5e2b709a4) 2015-10-20 Lukáš Tinkl * don't special case for dash, clear and reset the focus stack when we minimizeAll() (f7d3606c9) 2015-10-20 Michael Terry * Expand tests (da65b6434) 2015-10-20 Lukáš Tinkl * provide shortcuts for common window operations (f338bb34d) 2015-10-20 Nick Dedekind * fixed surface visibility (6d92157f2) 2015-10-20 Daniel d'Andrada * Some more deletions (8d89183a8) * Another round of changes for fixing the hang on shutdown (400eb69ce) * ShellApplication: use manual deletion for workaround hanging on shutdown (ffd336ebd) 2015-10-20 Albert Astals Cid * Merge (bb82e44a8) * fix title color & visibility (683edaf36) 2015-10-20 Daniel d'Andrada * Merge lp:~unity-team/unity8/mousePointer again (11ee416e8) * Move background tests from tst_Shell to tst_WallpaperResolver (df28f710b) 2015-10-19 Josh Arenson * [ CI Train Bot ]; New rebuild forced. [ Pawel Stolowski ]; Store unity8 package version in /var/lib/.../version file for fast retrieval from the shell plugin. [ Lukáš Tinkl . Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) (c00faf3a4) * Remove unused code (2f1e33e04) * Refactor TheLightDM to LightDMService (9f485d57b) 2015-10-19 Lukáš Tinkl * add a test for clicking to get focus (instead of tap) (4b5cefabc) * update the focus stack when the focused app id changes (a584a2959) * rename unminimize() to restore() (567789b8b) 2015-10-19 Daniel d'Andrada * Small fix to WindowDecoration (7ccad1d81) 2015-10-19 Michael Terry * Start of testing support (f377eafef) 2015-10-19 Lukáš Tinkl * reaise the window on resize click too (eae704971) * merge lp:~unity-team/unity8/mousePointer (bfb2c27e7) * fix immediate grab cursor when just clicking (b6424a9f8) * fix warning (529fd584f) 2015-10-19 Albert Astals Cid * Update with new SDK 1.3 MainViewStyle.qml looks (d7dfbd378) 2015-10-19 Daniel d'Andrada * Fix failing test (c5746dc82) * Update autopilot tests (50340fa42) 2015-10-19 Andrea Cimitan * Updated as review (e03d2c93d) 2015-10-19 Lukáš Tinkl * merge lp:~unity-team/unity8/mousePointer, fix conflicts, move the logic (408d606bb) 2015-10-19 Andrea Cimitan * Review suggestions (3c64a9176) 2015-10-19 Albert Astals Cid * Create a generic ListViewOSKScroller (a9f41f1f4) * Make the scope settings list scroll to text visible area (289ccd8f9) 2015-10-17 Lukáš Tinkl * activate/focus/restore windows when clicking on their decoration or when activating them from the spread (d84f955a3) 2015-10-16 Josh Arenson * Fix whitespace (756405fa9) 2015-10-16 Michał Sawicz * Merge lp:~unity-team/unity8/externalMonitor (e587bd6d5) 2015-10-16 Daniel d'Andrada * Work around (very likely) Qt bug (2c54cbdb0) 2015-10-16 Albert Astals Cid * Merge (af3c188c1) * Merge (903ce64ce) * Add this for canned queries (c70df2c82) 2015-10-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cab994302) 2015-10-15 Michael Terry * Fix whitespace (ced1c2057) * Support the tutorial in desktop mode (ee85874cd) 2015-10-15 Lukáš Tinkl * merge lp:~unity-team/unity8/mousePointer (b22995505) 2015-10-15 Michael Terry * Address review comments; consolidate some shared stage code (0a7be3678) 2015-10-15 Albert Astals Cid * Increase dependency (b051ee622) 2015-10-15 Daniel d'Andrada * Merge lp:~unity-team/unity8/mousePointer again (7de3ac1f1) * Fix notifications wallpaper (8b85b4387) 2015-10-15 Albert Astals Cid * Label changed "name" in a recent SDK release (9797f689c) * Merge (3acaf4cac) 2015-10-15 Christopher Lee * Minor spelling fix in process control output. (d13f83a71) 2015-10-14 Michael Terry * Show top hint at upper right if in landscape mode (134dd5042) 2015-10-14 Lukáš Tinkl * fix showing the T&C (61c57fcd2) 2015-10-14 Albert Astals Cid * Adapt to unity-api changes (18409e472) 2015-10-14 Lukáš Tinkl * fix obsolete import (42b21ab32) * [ Lukáš Tinkl ] Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) (80d0adf15) 2015-10-14 Albert Astals Cid * increase deps for easier building in silo (58dc51a07) * Reset instead of qFatal when removing things from the middle (8da320290) * Fix whitespace (7fc074929) * Fix whitespace (82a58d307) * fix whitespace (a2772ee66) 2015-10-13 Josh Arenson * Update oriented shell test to use new Orientations object (85cbe5367) * Re-add handling for side stage rotated apps (a2e4e0821) 2015-10-13 Daniel d'Andrada * s/Qt::MouseButton/Qt::MouseButtons (55ace575c) 2015-10-13 Josh Arenson * [ Lukáš Tinkl ]; Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) [ CI Train Bot ]; Resync trunk. [ Lukáš Tinkl ]; Wizard: skip the reporting page if the system is configured not to report crashes (LP: #1494442) [ Alexandros Frantzis ]; Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (LP: #1291455) [ CI Train Bot . New rebuild forced. [ Albert Astals Cid ]; Make Launcher::test_quickListMenuOnRMB stable (LP: #1500359) [ CI Train Bot ]; New rebuild forced. [ Michael Zanetti . Stabilize Launcher DND test [ Albert Astals Cid . Improvements from running clazy over the code [ Daniel d'Andrada ]; PhoneStage: ensure you're left in a consistent state after being reset (LP: #1476757) [ Lukáš Tinkl ]; Improve the appearance and functionality of datetime and session indicators in Unity8 desktop. Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) [ Michael Zanetti ]; further development on the Desktop Spread (LP: #1488147) [ Michał Sawicz ]; Bump application API version; Skip bluetooth check under wily, use expectFailure to notice when it's back [ Richard Somlói ]; Fix translator comments in time formatter (e3ce68e77) 2015-10-13 Nick Dedekind * dekstop stage item visibility (0e7e1bf0d) 2015-10-13 Albert Astals Cid * Number with the active filters (42f822d62) * Implement Scope::activeFiltersCount in the mock plugin (036c0ff0b) * Merge dash navigation (73dbe459e) * Adapt to mimic previous behaviour (030154068) 2015-10-13 Lukáš Tinkl * fix finish_page (17b98c915) 2015-10-13 Albert Astals Cid * check that if no navigation is around the primary filter is shown (dd7410a0d) * Allow for tests to decide if they want navigation/primaryFilter (4bea1cd8d) * Check the popover filter shows up when should (b91f49a3d) * Test the filterSettings button is there when textfield is unfocused (626c7e435) 2015-10-13 Lukáš Tinkl * fix typo :/ (499023afa) * merge lp:~unity-team/unity8/externalMonitor and resolve conflicts (5017820f5) 2015-10-13 Andrea Cimitan * Renamed properties (f86104c4d) 2015-10-13 Albert Astals Cid * Test for FilterOptionSelector (bceccaa3c) * Simple test for FilterWidgetFactory (1f2536ca7) 2015-10-13 Lukáš Tinkl * OOBE visual review, 2015-10-12 (2a92b408f) 2015-10-12 Lukáš Tinkl * add a function to test screenshot rotation upon saving (1401a2759) * remove unused import (2183d59a5) * suppress debug (e6e5598e3) * use the shell's rotation angle (8254fd4b7) * rotate screenshots according to the orientation (c9777f748) 2015-10-12 Nick Dedekind * update hide comment (e194ad619) 2015-10-09 Albert Astals Cid * Merge (58eb20066) * Add code for the primary selection filter to show up if no dash navigation is there (28b0c3883) 2015-10-09 Lukáš Tinkl * fixup var names (4a8a4ed71) 2015-10-09 Michael Zanetti * fix whitespace test (295f3d71a) 2015-10-09 Lukáš Tinkl * implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (f45a0f0e3) 2015-10-09 Albert Astals Cid * Merge (6c87dff78) * Prefer anchors (8c01dd1e3) * Remove unused objectName (d972fc8a4) * Move function out of delegate (3274b91d0) 2015-10-09 Lukáš Tinkl * init the variable (5187b8295) 2015-10-09 Michael Zanetti * merge prereq (c940cfc7c) * added a filter model for apps (b83f3846d) 2015-10-09 CI Train Bot * Releasing 8.11+15.10.20151009-0ubuntu1 (738de86f5) 2015-10-09 Pawel Stolowski * Store unity8 package version in /var/lib/.../version file for fast retrieval from the shell plugin. Approved by: Albert Astals Cid (12b175177) 2015-10-09 Michael Zanetti * fix default arg handling (7bced76b7) 2015-10-08 CI Train Bot * Releasing 8.11+15.10.20151008-0ubuntu1 (08f6f8140) 2015-10-08 Lukáš Tinkl * Revert to using plaintext instead of HTML-like markup for the notifications Fixes: #1504256 (b89715523) 2015-10-08 Michael Terry * Drop down to sdk 1.2 (e1261bc30) 2015-10-08 Lukáš Tinkl * revert to using plain text for the notifications (4f3b92872) * fix skipping the reporting page (5486187ea) 2015-10-08 Nick Dedekind * use sendEvents (4e3941850) * fixed test leak (c8be0591d) 2015-10-08 Daniel d'Andrada * Remove a now unrelated test from tst_WindowResizeArea (86935c177) 2015-10-08 Michael Zanetti * fix some review notes (a8d28980c) * merge new prereq (1498123d1) 2015-10-08 Michał Sawicz * Merge lp:~unity-team/unity8/mousePointer (e6351d0df) 2015-10-08 Lukáš Tinkl * merge prereq (50e13ce4c) * merge trunk and fix conflict (d635c86fe) 2015-10-08 Albert Astals Cid * checked image (52b888a35) * uncheck non multiselect better (dfdc6dc95) * ↑ ↓ button (2cb896d47) * Merge (f37feb555) * Merge (96b439e70) * Merge (caa6afafc) 2015-10-07 Lukáš Tinkl * reuse the timezone model provided by System Settings (53b0e4f7a) 2015-10-07 Daniel d'Andrada * Remove some debug leftover (e90f7c8ad) 2015-10-07 Nick Dedekind * fixed binding (a6460bab5) 2015-10-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cf99aec9a) 2015-10-06 Nick Dedekind * occlude on screen power (bd1ec5a81) 2015-10-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aafb72329) 2015-10-05 Daniel d'Andrada * Add test (c7293af00) 2015-10-05 Michael Terry * Merge from trunk (bb6e493c7) * small tutorial fixes (60842cf7d) 2015-10-05 Daniel d'Andrada * Always go to a supported orientation (16c546c4a) 2015-10-05 Josh Arenson * Remove AP test for greeter mode as the real lightdm can't be run inside a user session (22bbd68c7) 2015-10-05 Daniel d'Andrada * Update debian/unity8.install (33ca088b2) * Don't rotate when on external monitor (782aa162f) * Fix typo (7a4057529) * s/BackgroundResolver/WallpaperResolver (33468df60) * s/SecondaryDisplay/DisabledScreenNotice (c0c620a80) 2015-10-05 Andrea Cimitan * add ubuntu content qml plugin to debian control (320765ac2) 2015-10-05 Lukáš Tinkl * merge trunk (8c6349f19) 2015-10-05 Andrea Cimitan * Fix tests (4d0c785a7) 2015-10-05 Nick Dedekind * merged with trunk (60c522298) 2015-10-05 Michał Sawicz * Merge lp:~unity-team/unity8/fix-application-dep (edf4371bb) * Revert the = → => change for application api version (b25869259) 2015-10-05 Daniel van Vugt * Merge latest trunk (4d68f4ff7) 2015-10-03 Josh Arenson * [ CI Train Bot ]; Resync trunk. [ Lukáš Tinkl ]; Wizard: skip the reporting page if the system is configured not to report crashes (LP: #1494442) [ Alexandros Frantzis ]; Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (LP: #1291455) [ CI Train Bot . New rebuild forced. (2c7c6bac9) 2015-10-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e46cde13e) 2015-10-02 Josh Arenson * AP Tests finally pass! (d4ba6ef9c) 2015-10-02 Daniel d'Andrada * Initial multi-monitor support (391f833ef) 2015-10-02 Josh Arenson * Fix lightdm qt version paths (bef09ceea) 2015-10-02 Michael Terry * Merge from trunk (6af226576) * hide screen on long press not click; minor fixes for now (4c306d9e8) 2015-10-02 Michael Zanetti * drop build dependency to qtsysteminfo (7a17cbbec) 2015-10-02 Andrea Cimitan * add small test for preview sharing (e84df8425) 2015-10-02 CI Train Bot * Releasing 8.11+15.10.20151002-0ubuntu1 (bcbf76aeb) 2015-10-02 Lukáš Tinkl * Wizard: skip the reporting page if the system is configured not to report crashes Fixes: #1494442 Approved by: Ken VanDine (95b1e3cec) 2015-10-02 Albert Astals Cid * First implementantion of FilterOptionSelector (b8dde78f7) * Implement single selection in the options when checking (816a6cf95) * Register unity::shell::scopes::OptionSelectorOptionsInterface (77f3353b7) 2015-10-02 Andrea Cimitan * Added preview Sharing (035510f88) * Attempt to fix the test in CI (18e9de047) 2015-10-02 Albert Astals Cid * docu fix (737fd5a5d) * EOF (467109a8e) * Merge (39f1a2c0c) * First implementation of the filter popover (e29819843) 2015-10-02 CI Train Bot * Resync trunk. (10540ad16) 2015-10-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cdf174c4d) 2015-10-01 Josh Arenson * Fix mock paths (788672248) * [ Albert Astals Cid ]; Make Launcher::test_quickListMenuOnRMB stable (LP: #1500359) [ CI Train Bot ]; New rebuild forced. [ Michael Zanetti ]; Stabilize Launcher DND test [ Albert Astals Cid ]; Improvements from running clazy over the code [ Daniel d'Andrada ]; PhoneStage: ensure you're left in a consistent state after being reset (LP: #1476757) [ Lukáš Tinkl ]; Improve the appearance and functionality of datetime and session indicators in Unity8 desktop.; Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) [ Michael Zanetti ]; further development on the Desktop Spread (LP: #1488147) [ Michał Sawicz ]; Bump application API version; Skip bluetooth check under wily, use expectFailure to notice when it's back [ Richard Somlói ]; Fix translator comments in time formatter (5824d79dc) * Fix testing mock path (0acc8136a) 2015-10-02 Lukáš Tinkl * fixup failing wizard tests (c9588df62) * update POT template (4310f8c21) * merge trunk (f4df7daf4) 2015-10-01 Michael Terry * Add AbstractStage item to hold shared stage code (c754c5605) * Update to drop canSuspend and simply request different states based on info we have (846cd64f5) 2015-10-01 Josh Arenson * Fix broken tests (c8c0a0192) 2015-10-01 Andrea Cimitan * empty line removed (c6a610abd) 2015-10-01 Daniel d'Andrada * Update unity8-fake-env in debian/control (3cefb72fc) 2015-10-01 Albert Astals Cid * keepPanel open means keep, not reopen if it wasn't open (149f24354) 2015-10-01 Pawel Stolowski * Generate version file with dpkg-parsechangelog (6a06fea08) 2015-10-01 CI Train Bot * Releasing 8.11+15.10.20151001-0ubuntu1 (06615283e) 2015-10-01 Alexandros Frantzis * Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (0565909f7) 2015-10-01 Andrea Cimitan * Small tweak to have images edge to edge (922548d14) * Updated zoomable image and video playback to fill the screen (7db4ef3aa) 2015-10-01 Michael Zanetti * update the InputInfo snapshot (f75178971) 2015-10-01 Andrea Cimitan * Update LazyImage to support item (e63b27600) 2015-09-30 Michael Terry * use qstringliteral like trunk will (b410d9da0) 2015-09-30 Lukáš Tinkl * visual tweaks (b21a17538) 2015-09-30 Michael Terry * Rough first pass on spacing out screens (04efc3a35) 2015-09-30 Lukáš Tinkl * se the toplevel id, oops (118c0ce06) * wait for the plugin init (6d97ccf2e) 2015-09-30 Michael Terry * Whoops, use short appId against gsettings (5db41f079) 2015-09-30 Lukáš Tinkl * skip the reporting page if the system if configured not to report crashes (fc8192ed3) * report crashes only when configured to (d798dac7d) * remove unneeded connections (acbf68c55) 2015-09-30 Albert Astals Cid * Register the filters interface (c388596b4) 2015-09-30 Lukáš Tinkl * allow setting the surface name to empty string (0517eadf3) * merge trunk (289ed2605) 2015-09-30 Albert Astals Cid * Enable Efficient String Construction by default (d21ef5973) * QLatin1Char++ (5dccba178) 2015-09-30 Alexandros Frantzis * Add power state change reason "CallDone" for enum completeness (074a8bd76) 2015-09-30 Michael Zanetti * merge prereq (66908ee0d) 2015-09-30 CI Train Bot * Releasing 8.11+15.10.20150930.1-0ubuntu1 (8081657d6) 2015-09-30 Albert Astals Cid * Make Launcher::test_quickListMenuOnRMB stable (fdf1fd53c) 2015-09-30 Michael Zanetti * Stabilize Launcher DND test Approved by: Albert Astals Cid (967a24960) 2015-09-30 Daniel van Vugt * Disable Qt's stuttering 'touch compression' to fix scrolling smoothness issues (LP: #1486341). As a bonus, this eliminates most of the lag seen in the indicator panel pull-down (LP: #1488327) and also reduces lag seen in apps. (6ca94218a) 2015-09-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cb37a014d) 2015-09-30 Lukáš Tinkl * rebase on top of lp:~dandrader/unity8/mousePointer (6b8f51115) * fixup botched PO file merge (5da87dd04) * simply name var (12afd582c) * simplify access (41a281cf9) * remove debug output (d9841534e) 2015-09-29 Daniel d'Andrada * Merge mousePointer (7d01e2f36) 2015-09-29 Michael Terry * Update unity8 to handle lifecycle policy for apps (1df29c160) 2015-09-29 Nick Dedekind * req version update (efe1317e8) * merged with trunk (f2b1aa3dc) 2015-09-29 Michael Zanetti * merge with prereq (160fa20db) 2015-09-29 Albert Astals Cid * Make it const too just to make it nicer (d34a64ca8) * Merge (68e1d2b82) * Merge (261460c73) 2015-09-29 Lukáš Tinkl * depend on the right API version (99ecf9702) 2015-09-29 Daniel d'Andrada * Have unity8 drawing its own cursor (436260b80) 2015-09-29 Albert Astals Cid * Clazy fixes (f496a5e7f) * Merge (67c0a2c6d) * Merge (81e1b7417) * Merge (d981831ba) 2015-09-29 Michael Zanetti * merge trunk (42038d584) 2015-09-29 Lukáš Tinkl * bump API depends version (e305f57e9) * merge trunk (994f722e4) 2015-09-29 Albert Astals Cid * Use allLabel instead of label for the header (if available) (51107964a) * Merge filters (ce4cd2809) * Implement the new RoleAllLabel role (454ae907d) * We need the x to be exactly 0 (5d151adc8) 2015-09-28 Josh Arenson * Resync trunk (561df9d12) * Remove old Orientations code from tablet stage (37945925f) * Resync trunk (92e6c4dd7) * Remove debug code (974998786) * Use magic to link to mock LightDM by target name (a20de48ab) * Move things around (09c5627f0) 2015-09-28 Michael Zanetti * fix tests, add another (6c5ea7ac0) * merge prereq (08c984f56) * stabilize launcher DND test (c5de2d920) 2015-09-28 Albert Astals Cid * tests for the new section jumping (d53357419) 2015-09-28 Josh Arenson * Fix plugin test import path (994396462) 2015-09-28 Albert Astals Cid * Adapt test_mainNavigation to the new ui/ux (631c1ed4c) 2015-09-28 Daniel d'Andrada * Remove unused code (c0ce33e5a) * Update test (cb668e06a) 2015-09-28 Albert Astals Cid * This test is outdated (105bcc32c) * pageHeader is not a Loader anymore (ac55d60cb) * adapt now that the departments are not part of the header (fccb3c17b) 2015-09-28 Michael Zanetti * drop some leftover from merge (eaebd92cd) * merge mousePointer branch (64a4e6879) 2015-09-28 Albert Astals Cid * Fix initial state test (4976a4b08) * Merge filters branch (9770026ff) * Merge unity8 (010b4ba56) * Make the text clickable for search too as in the mockup (210c93cf8) 2015-09-25 Lukáš Tinkl * merge trunk (2f8f6a29e) * react to window caption changes (f6314531c) 2015-09-25 Michael Terry * Some tiny fixes (df9c576b3) 2015-09-25 Daniel d'Andrada * Have unity8 drawing its own cursor (c0b01ba78) * Merge lp:~mzanetti/unity8/spread-bg (ea3052c56) 2015-09-25 Josh Arenson * Fix include paths in plugins/LightDM (6ecc30094) * Fix testShell (4f6db3954) * Privative Orientations object (4dd50c785) * Change Orientations object to QtObject so binding doesn't segv (12ab1f6f5) 2015-09-25 Michael Zanetti * fix typo (d0f39b704) * hide panel buttons when switching to staged mode (1921caf3a) * save/restore state of windows too, not just geometry (8930f96f6) * merge prereq (f5c5806f0) 2015-09-25 Josh Arenson * Fix typos (b4b4c4997) * [ Albert Astals Cid ]; Adapt test to code changes; Add DEP-8 test for all our UI and unit tests; Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ]; When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ]; Add DEP-8 test for all our UI and unit tests; Fix integrated LightDM pat. Resync trunk [ Albert Astals Cid ]; Fix testNotifications * Make the wait longer to make tests pass in CI; New simplified CroppedImageMinimumSourceSize (LP: #1467740. Stop animateTimer when starting the fadeOutAnimation; Use AlreadyLaunchedUpstart so that tests passes; Workaround keyboard issues and make test pass again [ Daniel d'Andrada ]; DesktopStage: Refactor focus handlin. Stabilize tstShell.test_launchedAppHasActiveFocus [ Gary.Wzl ]; Add widgetData["expanded"] property for expandable widget. [ Michael Terry ]; Fix typo that caused the tutorial to tease the launcher on top of the greeter.; Fix typo that caused the tutorial to tease the launcher on top of the greeter. (966002c69) * Get working (ab85a3765) 2015-09-25 Albert Astals Cid * Do not hide if we have a navigationTag (2e7c8310a) * Don't clear if we're on the root (558fc0599) * Have just one place for headers (6606d60d3) 2015-09-25 Pawel Stolowski * Add postinst/postrm action to store package versions. (58583f95f) 2015-09-25 Albert Astals Cid * Clear the dash navigation models on search clear (a1472031e) * First attempt at the "stack" of categories (544451592) 2015-09-25 Josh Arenson * Fix greeter tests (7eabc7dd9) * remove redundant dep from debian/control (6b55695ce) 2015-09-25 CI Train Bot * Releasing 8.11+15.10.20150925-0ubuntu1 (d1c74de34) 2015-09-25 Michael Zanetti * further development on the Desktop Spread (b61b5ad24) 2015-09-25 Michał Sawicz * Skip bluetooth check under wily, use expectFailure to notice when it's back Approved by: Albert Astals Cid (637b1462b) 2015-09-25 Daniel d'Andrada * PhoneStage: ensure you're left in a consistent state after being reset Fixes: #1476757 Approved by: Michael Zanetti (6b199883e) 2015-09-25 Richard Somlói * Fix translator comments in time formatter Approved by: Nick Dedekind (643e2b530) 2015-09-25 Lukáš Tinkl * Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) Approved by: Michael Zanetti (555dfca1d) * Improve the appearance and functionality of datetime and session indicators in Unity8 desktop. Approved by: Nick Dedekind (06831ba31) 2015-09-25 Albert Astals Cid * Improvements from running clazy over the code (abf56e4c3) 2015-09-25 Michał Sawicz * Bump application API version Approved by: Daniel d'Andrada (fcff4bbdf) 2015-09-25 Albert Astals Cid * No alt root and 2nd level navigation for middle4 (07d6ec273) * There's no altroot anymore (cb25058d9) 2015-09-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ea79f9f4b) 2015-09-25 Lukáš Tinkl * unbreak shell (48005cf7f) 2015-09-24 Josh Arenson * [ Albert Astals Cid ]; Adapt test to code changes; Add DEP-8 test for all our UI and unit tests; Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ]; When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ]; Add DEP-8 test for all our UI and unit tests; Fix integrated LightDM pat. Resync trunk (aa42683a3) * Some small changes that don't fix testing still (09bf600e7) 2015-09-24 Michael Terry * Add bottom edge; some cleanup (144e56893) * Use svg for arrow rather than png (4af808def) * Add right edge tutorial (adc82d2c8) 2015-09-24 Josh Arenson * merge overlay (7abb41834) 2015-09-24 Lukáš Tinkl * merge trunk (1bc452774) * [ Albert Astals Cid ]; Adapt test to code changes; Add DEP-8 test for all our UI and unit tests; Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ]; When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ]; Add DEP-8 test for all our UI and unit tests; Fix integrated LightDM pat. Resync trunk (fea392cf7) 2015-09-24 Alexandros Frantzis * Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (5e1a45dd7) 2015-09-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e75381656) 2015-09-23 Michael Terry * Add top edge tutorial, though it displays immediately currently (5cf8e0813) * Add new accountsservice property DemoEdgesCompleted (c87338bd5) 2015-09-23 Michał Sawicz * Bump application api dependency (19f4d9921) 2015-09-23 Albert Astals Cid * Merge (05deaa2a5) 2015-09-23 Michał Sawicz * Merge trunk (854e59e2e) 2015-09-23 Nick Dedekind * removed enum (627da4a7a) 2015-09-23 Michael Terry * Merge from trunk (5bae3e352) 2015-09-23 Nick Dedekind * occlusion detection in spreads delegates propogated to surface items (f292b580b) 2015-09-23 Albert Astals Cid * increase libunity-api-dev dependency (b9a0ec0da) 2015-09-23 Lukáš Tinkl * remove unneeded invokable (c575e5daa) * fix the tint color (e8e6fc587) * implement separate Ok/Cancel buttons (9699834aa) * fix top/bottom with OSK (6849f0773) * hide the Forward button in the webview mode (4e9a7ba73) 2015-09-22 Michał Sawicz * ExpectFailure for bluetooth indicator under wily (048cdaa3d) 2015-09-22 Lukáš Tinkl * make the layout more compact with click-to-close behavior (466f93a13) * fix logical issues, rename clickToAct to hasMouse (291b90dca) 2015-09-22 Albert Astals Cid * Clear or Cancel also reset the navigation tag (db7bb615f) * Initial wiring of primaryNavigationTag (726809cd7) 2015-09-22 CI Train Bot * Releasing 8.11+15.10.20150922.1-0ubuntu1 (5d8d0b521) 2015-09-22 Albert Astals Cid * Keep the PreviewStack around to avoid mem leaks Fixes: #1495467 Approved by: Michał Sawicz (787234e6e) * Add DEP-8 test for all our UI and unit tests (56ed3649c) 2015-09-22 Michał Sawicz * Fix integrated LightDM path Approved by: Albert Astals Cid (9bedfd659) 2015-09-22 Albert Astals Cid * Adapt test to code changes (b8abd0064) 2015-09-22 Michael Terry * When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. (4c3f2d7e2) 2015-09-22 Michał Sawicz * Allow stderr for now (87da2e4e4) 2015-09-22 Albert Astals Cid * Cancel button instead of < (261ed6e91) 2015-09-22 Michał Sawicz * Export UNITY_SOURCE_DIR in qmluitests.sh (4900d333e) 2015-09-22 Albert Astals Cid * Merge filters branch (ee7857bd4) * Bring navigation into the extra panel (2caf749ac) 2015-09-22 Lukáš Tinkl * fix indicatorProperties.accessibleName check (7e7182bc6) 2015-09-22 Michał Sawicz * Refactor paths to support UNITY_ env vars pointing to build/source dirs (4e5bb7ae7) 2015-09-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (76b625012) 2015-09-22 Lukáš Tinkl * regenerate POT file (62e501cf1) * merge trunk (d1c453ca5) * tweak anims (435e107c5) * splash screen (start page animation) (5add351b0) * final page animation (8c9807fff) * remove the unused bg image (184f5a1f4) * tweak the Get Started button ;) (391acffcb) 2015-09-21 Josh Arenson * [ Albert Astals Cid ]; Fix testNotifications; Make the wait longer to make tests pass in CI; New simplified CroppedImageMinimumSourceSize (LP: #1467740); Stop animateTimer when starting the fadeOutAnimation; Use AlreadyLaunchedUpstart so that tests passes; Workaround keyboard issues and make test pass again [ Daniel d'Andrada ]; DesktopStage: Refactor focus handlin. Stabilize tstShell.test_launchedAppHasActiveFocus [ Gary.Wzl ]; Add widgetData["expanded"] property for expandable widget. [ Michael Terry ]; Fix typo that caused the tutorial to tease the launcher on top of the greeter.; Fix typo that caused the tutorial to tease the launcher on top of the greeter. (c345bea49) * Remove unecessary alias (ff66a0026) 2015-09-21 Lukáš Tinkl * transitions for the secondary pages (947650885) * make the timer run only when wizard enabled (2b106a28b) * disable transitions for secondary/extra pages (213d8afc6) 2015-09-21 Daniel d'Andrada * PhoneStage: ensure you're left in a consistent state after being reset (0bb912b0a) 2015-09-21 Lukáš Tinkl * animate both margins, more fluent and fixes word-wrapped text being reflown on the fly (b5e5a8aaf) 2015-09-21 Richard Somlói * Fixed the comment for translators (bbbd6343c) 2015-09-21 Lukáš Tinkl * first stab at transitions (a64454fbb) 2015-09-21 Daniel d'Andrada * Fix an annoying warning (c53473026) 2015-09-21 Michał Sawicz * Merge test fixes again (801466fb1) * And two more... (4408a8b48) 2015-09-21 Michael Zanetti * add copyright header (7d7b2e09f) 2015-09-21 Michał Sawicz * Merge more test fixes (a2fd5e5f5) * Two more instances of LightDM paths (0b4562b14) * Merge test fixes (c6df1f053) 2015-09-21 Michael Zanetti * make the whitespace pita happy (147eeee46) 2015-09-21 Michał Sawicz * Fix integrated LightDM path (ff6952425) 2015-09-19 Lukáš Tinkl * cleanup unrelated stuff (bd00ab245) 2015-09-19 Michał Sawicz * Merge trunk (0183722b6) 2015-09-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d569580a4) * Launchpad automatic translations update. (1de5dcc6d) 2015-09-18 Josh Arenson * Hack a solution to the Q_ASSERT (f8ccd9f1e) * Fix lightdm path (162c7f937) * [NOT WORKING] Refactor LightDM's to help pass tests (06e5419af) 2015-09-18 Michael Zanetti * elide the tileinfo labels (e3d87a1fb) * eat mous events behind the spread when spread is active (9507574d1) 2015-09-18 Lukáš Tinkl * Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) (38784d889) 2015-09-18 Michael Zanetti * fix interacting with the launcher when spread is open, add test for it (56d10ee2d) * add a test for the workspace selector highlight to work (9f6da5203) * add missing license header (c667b8a88) * add a test for the hoverMouseArea being properly disabled (7bf4f8ead) * fix more tests and focus handling (770e4e700) 2015-09-18 Albert Astals Cid * Adapt test to code changes (99e3c278b) 2015-09-18 Lukáš Tinkl * merge trunk (e47f44fbf) 2015-09-18 Michael Zanetti * merge trunk (dcc7717df) * update some tests, still not completely working (29cb42e01) * merge trunk (9c8f0dd3a) 2015-09-18 Albert Astals Cid * Merge unity8 (60dc76da4) * Merge unity8 (0f274c817) * Merge unity8 (ded455ee2) * Merge use_sdk_13 (2ea38dae4) * Merge unity8 (fad61c310) 2015-09-18 Michał Sawicz * Resync trunk (98ec58adf) 2015-09-18 CI Train Bot * Resync trunk. (75e627276) 2015-09-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (54bf3ce81) 2015-09-17 Josh Arenson * Add logic to determine which LightDM to load (1d02cb3f4) * Refactor TheLightDM back to LightDM (bcae941dd) * [NOT WORKING] Singleton is working, but this is an overall bad state (d738358ea) 2015-09-17 Lukáš Tinkl * allow changing the system TZ by clicking on the location item (b1bb05275) 2015-09-17 Michael Zanetti * sync up animations. Only animate when invoked by right edge, be instant when alt+tabbed (567717d9f) * increase the timeout value a bit (6c2f95476) * enable antialiasing for the highlight (587cefe6e) 2015-09-17 Lukáš Tinkl * remove debug (87a5e9bfd) * simplify check for the running prop (a3ed1faa6) * address comments & issues (da86b26f0) 2015-09-17 Michael Zanetti * fix jumping on progressivescrolling (f90814708) 2015-09-17 Nick Dedekind * translations (b9c47b13f) 2015-09-17 Michael Zanetti * merge removeForceActiveFocus branch (b334b790e) * fix focus when invoked by right-edge push (27132877d) 2015-09-17 Lukáš Tinkl * merge trunk (594f3dbed) * tweak checkmark visuals and margins (a25653a36) 2015-09-17 Michael Zanetti * merge trunk (34674e9c2) 2015-09-17 Lukáš Tinkl * tweak final page visuals (a68447008) 2015-09-17 Michael Zanetti * fix MirSurface resizing in mock app manager (55618c346) 2015-09-17 Lukáš Tinkl * fix the placeholder text after the filter has been changed to accept city names only (3fdca111a) * improve margins and delegate (5d38b765b) 2015-09-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b1b3c55a6) 2015-09-16 Josh Arenson * Remove redundant property yet again (5d97ee56f) * Remove redundant fullightDM property (aa2536513) * Backout some changes (236ef2858) 2015-09-16 Lukáš Tinkl * fix AP connected state check (d8724d2e6) * refactor Wifi page, WIP (747f44a00) 2015-09-16 Josh Arenson * remove unused prop (cfbd296c5) * Revert (5bae91e2b) * Remove duplicate objects and clean syntax (098eea5e6) * Remove unused property (ee2f4bd79) * Update to new connect syntax (d48d17f47) * Remove redundant linker option (8a9fd9d59) * Refactor config filename (46c451c79) 2015-09-16 Lukáš Tinkl * reset the selected TZ when the filter changes (d44768901) * save the report crashes option (ab662ce65) * hide the encryption checkbox for now (892c1da25) * filter only by city name (794674ba4) 2015-09-16 Michael Terry * First pass at tutorial redesign (f9a34a775) * Still show infographic even if label is empty. Only hide it if username is empty (71e14560f) 2015-09-16 Lukáš Tinkl * put the form in a flickable (19d892842) 2015-09-16 Albert Astals Cid * Merge overlay (a7ea2a3cf) 2015-09-16 Lukáš Tinkl * fix typo (682379c02) * try harder to filter out enterprise wifis (fe8c9d34f) * no need for a local instance of TimeFormatter (7f93f50d1) 2015-09-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (316e99d07) 2015-09-15 Josh Arenson * [ Michal Sawicz ]; Resync wily with vivid [ Albert Astals Cid . Accomodate header height when using a card carousel with non overlayed header (LP: #1489309); Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ]; Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl . Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ]; Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086); Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ]; Implement progressive autoscrolling in desktop spread; add an animation transition when invoking the spread by hitting the right edge [ Michael Zanetti . release for wily [ CI Train Bot ]; New rebuild forced. [ Albert Astals Cid ]; Accept auto repeats for the power down button if timer is not yet running (LP: #1486953, #1488927); Add tests for Shell+Dash interaction; Make clicking on launcher buttons have haptic feedback; Make test_greeter_hides_on_app_open more stable; Move connect() to new syntax; make pot_file (LP: #1488484) [ Gerry Boland ]; [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (LP: #1474319) [ Josh Arenson ]; Refactor the greeter to enable dynamic loading of backend plugins.; Refactor the greeter to enable dynamic loading of backend plugins. [ Lukáš Tinkl ]; Don't show the volume notification when the sound indicator is shown (LP: #1484126) [ Michael Terry ]; Unify turn-on-screen-upon-notification logic from various daemons into unity8. (LP: #1426115, #1482317) [ Daniel d'Andrada ]; MirSurfaceItem is now a view+controller instantiated from QML (LP: #1483752) [ Michael Terry ]; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial.; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. (80a6dccef) 2015-09-16 Lukáš Tinkl * improve the System indicator title, location item live updates, session item check status (d732c855a) 2015-09-15 Lukáš Tinkl * improve datetime and session indicators (0f4c4fdaf) 2015-09-15 Nick Dedekind * use time formatter from sdk (5d642b628) 2015-09-15 CI Train Bot * Releasing 8.11+15.10.20150915-0ubuntu1 (65d6b6a4f) 2015-09-15 Daniel d'Andrada * DesktopStage: Refactor focus handling (e18d93d42) * Stabilize tstShell.test_launchedAppHasActiveFocus Approved by: Albert Astals Cid (62fc5e809) 2015-09-15 Albert Astals Cid * Use AlreadyLaunchedUpstart so that tests passes Approved by: Michael Terry (5dc0e2946) 2015-09-15 Michael Terry * Fix typo that caused the tutorial to tease the launcher on top of the greeter. Approved by: Albert Astals Cid (7ee2c219a) 2015-09-15 Albert Astals Cid * Make the wait longer to make tests pass in CI Approved by: Andrea Cimitan (3cf6eff48) * Stop animateTimer when starting the fadeOutAnimation (f143d65b4) * Fix testNotifications (3dc5b342b) 2015-09-15 Gary.Wzl * Add widgetData["expanded"] property for expandable widget. (ac57fd8b1) 2015-09-15 Albert Astals Cid * Workaround keyboard issues and make test pass again (4b3262dfc) * New simplified CroppedImageMinimumSourceSize (e788d2e8d) 2015-09-15 Michael Zanetti * [ Michal Sawicz ]; Resync wily with vivid [ Albert Astals Cid . Accomodate header height when using a card carousel with non overlayed header (LP: #1489309); Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ]; Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl . Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ]; Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086); Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ]; Implement progressive autoscrolling in desktop spread; add an animation transition when invoking the spread by hitting the right edge [ Albert Astals Cid . Accept auto repeats for the power down button if timer is not yet running (LP: #1486953, #1488927); Add tests for Shell+Dash interaction; Make clicking on launcher buttons have haptic feedback; Make test_greeter_hides_on_app_open more stable; Move connect() to new syntax; make pot_file (LP: #1488484) [ Gerry Boland ]; [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (LP: #1474319) [ Josh Arenson ]; Refactor the greeter to enable dynamic loading of backend plugins. Refactor the greeter to enable dynamic loading of backend plugins. [ Lukáš Tinkl ]; Don't show the volume notification when the sound indicator is shown (LP: #1484126) [ Michael Terry ]; Unify turn-on-screen-upon-notification logic from various daemons into unity8. (LP: #1426115, #1482317) [ Daniel d'Andrada ]; MirSurfaceItem is now a view+controller instantiated from QML (LP: #1483752) (fb6cedcd8) 2015-09-14 Lukáš Tinkl * don't go for wily (cecadcb1a) * bump it even more (f295ac353) * fix changelog (29af49159) * ascii name, heh (62822cb4e) * merge overlay (ec129b24e) 2015-09-14 Albert Astals Cid * New name for the button (cec7688a1) * New AbstractButton name (8c4dac167) 2015-09-14 Daniel d'Andrada * Merge overlay (0237ea86a) 2015-09-14 Albert Astals Cid * AbstractButton is now C++, search the proper name (e680b1258) * Compare the contents of the dialog not the dialog itself (f78914213) * This is not latin1 so can't use QLatin1String (17620ad2c) * Keep the PreviewStack around (55ebcf27c) 2015-09-14 Lukáš Tinkl * [Lukáš Tinkl] bump OOBE version to fix build (015de3b5b) 2015-09-14 Albert Astals Cid * Some other fixlets forgotten (aa886ca0e) * Forgot to commit this change (5b4dee947) * Improvements from running clazy over the code (f26ba4678) * Merge (f3a0790dd) * Merge (a2d50c1a2) 2015-09-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0097739f9) 2015-09-11 Lukáš Tinkl * merge overlay (8fe7c590d) 2015-09-11 Josh Arenson * Update LightDM import strings in tests (8769ee10e) * [ Michal Sawicz ]; Resync wily with vivid [ Albert Astals Cid . Accomodate header height when using a card carousel with non overlayed header (LP: #1489309); Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ]; Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl . Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ]; Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086); Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ]; Implement progressive autoscrolling in desktop spread; add an animation transition when invoking the spread by hitting the right edge [ Michael Zanetti . release for wily [ CI Train Bot ]; New rebuild forced. (0ebaf985f) 2015-09-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3867d43e7) 2015-09-10 Josh Arenson * Remove debug include (ecf754b30) * Add FullLightDM (33d7b6dbf) * Add IntegratedLightDM Files (f34cb8b15) * Update top level plugin files (0fbfccd7e) * Change directory name to LightDM (fad5a9ac3) * Revert to original LightDM directory revision (996fd19c4) * Re-add original LightDM (83de736aa) * remove integrated lightdm (3616f22d4) * Revert last commit (03d506c55) * Playing bzr games (f11eff728) 2015-09-10 Lukáš Tinkl * add a custom WizardTextField with special style settings and use it instead of the generic TextField (cd4bc681d) 2015-09-10 Michael Zanetti * fix focus issue when leaving the spread (11ebd0bb8) 2015-09-10 Lukáš Tinkl * simplify (82af3b4eb) 2015-09-10 Michael Zanetti * split spread from regular stage (c97ac4acf) 2015-09-10 Albert Astals Cid * Rework the search to be in a bottom item instead of popover (85ff01ff5) 2015-09-10 Lukáš Tinkl * fix wifi status icon name for strong connection signals (>75%) (4eede8f30) * simplify plugin registration (9ce048ebc) * fixup title label font (2ef0d41d2) 2015-09-09 Lukáš Tinkl * save the email and real name in AS, tweak the lock screen to offer 2 password choices (0ae25bf41) * implement saving/loading Email and RealName fields in AS (9a4ba2f0a) * fixup button font size (5dbcf6f7d) * correct colors and spacing (3165eb493) 2015-09-09 Michael Zanetti * make it work with the real ApplicationManager (ae38fdae9) 2015-09-09 Andrea Cimitan * See if this fixes the qml test failures (455858aa3) 2015-09-09 Lukáš Tinkl * add a page for report checking (09fa1a31b) * fix minimum pass length (be9fce3f7) * fix text color, don't highlight when pressed (4611bb8db) * Cancel goes back one step at a time (451eeb834) 2015-09-08 Lukáš Tinkl * show the SIM page at most once (a36b48f2d) * some final page tweakings (c7906b210) * battery/network status indicators for the wizard (558460889) 2015-09-08 Michael Zanetti * make use of mirSurfaceItem (005253381) 2015-09-08 Albert Astals Cid * New name (cc58f4356) 2015-09-08 Gary.Wzl * 1.Minor change on property binding in expandable widget 2.Resolve the issue in merging *.po files (3055bc9ca) 2015-09-07 Lukáš Tinkl * match the timezone name at the beginning only (c823f1a76) * correct button color (b3c671c1e) * fix margins, provide separate Ok/Cancel buttons for the password page (686a392fb) * fix margins (d3aa417ca) * fix the margins and buttons (b02294d65) * fix margins (c344c3651) * fix margins, edge-to-edge dividers (e36082fad) 2015-09-07 CI Train Bot * Releasing 8.11+15.10.20150907-0ubuntu1 (5173023ab) 2015-09-07 Michał Sawicz * Merge trunk in preparation for resyncing vivid+overlay and wily Approved by: Michael Zanetti (9ede9b2da) 2015-09-07 Albert Astals Cid * Accomodate header height when using a card carousel with non overlayed header Fixes: #1489309 Approved by: Michael Zanetti (2ad0a3eb8) * Fix restart unity8 from inside the phone more than two times Fixes: #1487946 Approved by: Michał Sawicz (e2e5c105e) 2015-09-07 Lukáš Tinkl * Introduce a GlobalShortcut QML component for handling global keyboard shortcuts Approved by: Michael Zanetti, Michał Sawicz (17cb6be39) 2015-09-07 Gary.Wzl * Move textarea up automatically when inputmethod popup. (b0a1c58c6) 2015-09-07 Michael Terry * Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (37f734d74) 2015-09-07 Michael Zanetti * Implement progressive autoscrolling in desktop spread Approved by: Lukáš Tinkl (ebc72d8f2) * add an animation transition when invoking the spread by hitting the right edge Approved by: Lukáš Tinkl (bd8127110) * update/fix tests (49b10b75e) 2015-09-07 Albert Astals Cid * implement Filters::data (01a333bb7) 2015-09-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0f543d1eb) 2015-09-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c571e5157) 2015-09-05 Lukáš Tinkl * remove the highlight color in listview on mouse press (aa486237a) * try to go with smaller tickmarks, looks better IMO (7924e17a0) * move the button bar on top of OSK, if visible (bb11d8d18) 2015-09-04 Lukáš Tinkl * remove the OK button from the PIN pages (300a9917a) * factor out colors, fix (missing) dividers (8a869a87a) 2015-09-04 Josh Arenson * Bump licenses (e1e9b5074) * License updates (cf301f0b1) * More review changes (mostly to types) (6d409ebbd) 2015-09-04 Michael Zanetti * fix dragging after adding the hoverArea (e0a8eeae8) 2015-09-04 Josh Arenson * Revert some small changes (744e334ac) 2015-09-04 Daniel d'Andrada * Stabilize tstShell.test_launchedAppHasActiveFocus (2d4c55cb5) * Fix Shell::test_launchedAppKeepsActiveFocusOnUsageModeChange failure (69c523c89) 2015-09-04 Albert Astals Cid * showPageHeader is always true (5023992f2) 2015-09-04 Lukáš Tinkl * use the provided green tick mark from the assets (71689f31b) 2015-09-04 Albert Astals Cid * Implement fake filters (1164199e0) * Merge lp:unity8/overlay (bf0becfa2) 2015-09-03 Josh Arenson * Add address-of opperator to string argument (3d98b6113) 2015-09-04 Lukáš Tinkl * fix titlecase (3b5f35031) * start showing errors only after a 1st character has been typed (5ff5fa761) 2015-09-03 Lukáš Tinkl * preselect the TZ iff it's the only one available (7b9f9363d) * fix listview not redrawing with progressive text input (be999ba30) * fix the SIM card page (ec99aefb9) 2015-09-03 Michael Terry * Drop data argument (757710f4f) * Add test (10213264c) 2015-09-03 Daniel d'Andrada * Fix ApplicationManager.focusedApplicationId when you click/tap on a unfocused window (e5904da8b) 2015-09-03 Michael Terry * Fix launcher peeping in over greeter on first boot (984d0e8a2) 2015-09-03 Josh Arenson * Return correct types (d6dd9d043) * Return correct type (d67923303) * Convert signal connection to new style (3dc7bb76c) * Convert signal connection to new style (821a20256) 2015-09-03 Daniel d'Andrada * Improve tst_DesktopStage.test_tappingOnWindowChangesFocusedApp (9c6d4caaa) * The fake MirSurfaceItem should consume mouse events just like the real one. (26f5b47d2) * Refactor focus handling: remove forceActiveFocus() usage (533eadadb) 2015-09-03 Albert Astals Cid * Remove the altnavigation qml code (90c5f0056) * Minimal implementation of new API (df4309c28) 2015-09-03 Michael Zanetti * merge prereq (65589b54a) * drop unused debug print (0afa036ef) * merge overlay branch (7e2e55367) 2015-09-03 Lukáš Tinkl * remove trailing WS (b9da98831) * remove conflicts (2e1b2d64c) 2015-09-03 Michał Sawicz * Add changelog entry (be9b685ad) * Merge trunk. (0f2084afb) 2015-09-03 Albert Astals Cid * Small tweaks suggested by review (1844e1f18) 2015-09-02 Josh Arenson * Remove duplicate install (22ece7435) * Install 51-unity-greeter.conf (f01505088) 2015-09-03 Lukáš Tinkl * langauge+country detection works, yay (2674d6329) 2015-09-02 Josh Arenson * Update path in plugins test (b10cc362f) 2015-09-02 Lukáš Tinkl * add more debug (c32afb1b0) 2015-09-02 Josh Arenson * Update greeter name in config file (584177f97) * Merge integrated_lightdm (536528978) * Re-enable tests (508a02a37) * Fix typo (f3063dedb) * [ Albert Astals Cid ]; Accept auto repeats for the power down button if timer is not yet running (LP: #1486953, #1488927); Add tests for Shell+Dash interaction; Make clicking on launcher buttons have haptic feedback; Make test_greeter_hides_on_app_open more stable; Move connect() to new syntax; make pot_file (LP: #1488484) [ Gerry Boland ]; [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (LP: #1474319) [ Josh Arenson ]; Refactor the greeter to enable dynamic loading of backend plugins.; Refactor the greeter to enable dynamic loading of backend plugins. [ Lukáš Tinkl ]; Don't show the volume notification when the sound indicator is shown (LP: #1484126) [ Michael Terry ]; Unify turn-on-screen-upon-notification logic from various daemons into unity8. (LP: #1426115, #1482317) [ Daniel d'Andrada ]; MirSurfaceItem is now a view+controller instantiated from QML (LP: #1483752) (85e210be3) * Fix typo (da15b5778) * Fix typo (18e20a266) * Fix install file (96fed588d) 2015-09-02 Albert Astals Cid * Random guess as to what may be making the tests not pass on CI (8d77f4342) * move the stop() down to the animation itself (c891da376) * Move all Powerd.status = calls to setStatus (70dbd1d86) * Stop animateTimer when starting the fadeOutAnimation (c7e1607a8) 2015-09-02 Michael Terry * Merge from trunk (d97d06e54) 2015-09-02 Lukáš Tinkl * merge overlay (c28c36f2e) 2015-09-02 Andrea Cimitan * merged (eba5cf65c) * Merged albert branch (ad63ecc21) 2015-09-02 Gary.Wzl * Remove whitespace (ed6dcf826) 2015-09-02 Albert Astals Cid * Fix testDashShell (d707c1cb9) 2015-09-02 Lukáš Tinkl * detect country code from SIM, fix selecting the existing locale (2e9d5819a) 2015-09-02 Albert Astals Cid * Bring back qrc use (e6620361a) * Fix testNotifications (475c3b83a) 2015-09-02 Michael Zanetti * merge prereq (4179f5ac7) * drop unused debug print (f2acb4d77) 2015-09-02 Lukáš Tinkl * merge overlay and fix conflicts (ec9e27845) 2015-09-02 Gary.Wzl * Merge from lp:unity8/overlay and resolve conflicts (975ba9646) 2015-09-02 Albert Astals Cid * Merge lp:~unity-team/unity8/autopkgtests (eb2faee2b) * Fix merge (5c9bfb91e) * Wops, fix merge (f131bc30e) * Adapt to Chris' patch (dd1bc3af3) * Merge lp:unity8/overlay (f6b019593) * Merge use_sdk_13 (bd18e16eb) * Merge lp:unity8/overlay (4091dc6b7) * Merge lp:unity8/overlay (cf2c35c76) 2015-09-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e0112a40b) 2015-09-01 Josh Arenson * Add greeter install file (d31074afa) * Add unity8-greeter configuration file (80384ecfe) * Add package to debian/control (e4b5a063d) * Remove stray files (68e67998c) * [ Albert Astals Cid ]; Accept auto repeats for the power down button if timer is not yet running (LP: #1486953, #1488927); Add tests for Shell+Dash interaction; Make clicking on launcher buttons have haptic feedback; Make test_greeter_hides_on_app_open more stable; Move connect() to new syntax; make pot_file (LP: #1488484) [ Gerry Boland ]; [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (LP: #1474319) [ Josh Arenson ]; Refactor the greeter to enable dynamic loading of backend plugins.; Refactor the greeter to enable dynamic loading of backend plugins. [ Lukáš Tinkl ]; Don't show the volume notification when the sound indicator is shown (LP: #1484126) [ Michael Terry ]; Unify turn-on-screen-upon-notification logic from various daemons into unity8. (LP: #1426115, #1482317) [ Daniel d'Andrada ]; MirSurfaceItem is now a view+controller instantiated from QML (LP: #1483752) (49c543268) 2015-09-01 Michał Sawicz * xvfballtests is enough (f9fe28120) 2015-09-01 Josh Arenson * Re-enable tests (7203a5c42) * Add all the files that were accidently unversioned (c066d2572) * Fix qmldir issue (3330d5f06) * Add types file / fix small bugs (3af450a05) 2015-09-01 Lukáš Tinkl * clip the AP listview (031c98fef) 2015-09-01 Albert Astals Cid * Workaround keyboard issues and make test pass again (49ac73657) 2015-09-01 Lukáš Tinkl * fix installing the new plugin (e2818b08b) 2015-09-01 Albert Astals Cid * Add FIXME (7a4c6b1af) * Saviq's suggestion (39d2698f8) 2015-09-01 Michael Zanetti * merge prereq (567bbb922) * set a new prereq on removeForceActiveFocus to avoid conflicts (b977a4072) 2015-09-01 Albert Astals Cid * Maintain the old behaviour a bit more so the app scope doesn't regress (e37ff49d9) * Merge lp:unity8/overlay (c6cf9285a) 2015-09-01 Michał Sawicz * Testsuite stanza not needed anymore (2f34bc1db) 2015-09-01 Lukáš Tinkl * fix listview height (cdd55595c) * filtering enterprise APs out, try 2 (023637160) 2015-08-31 Josh Arenson * Update includes and debian install files (57742caab) * Re-enable lightdm plugin tests (11de13191) * Finish LightDM plugin refactor (backend) (8aa5f2774) 2015-08-31 Lukáš Tinkl * fix saving the timezone (85f965e32) 2015-08-31 Michael Zanetti * only enable the hoverMouseArea when actually in spread (2e771aa93) 2015-08-31 Lukáš Tinkl * get rid of QtQuick.Controls, no available on the phone (3f8ef3c63) 2015-08-31 Michael Zanetti * merge prereq (0de5b1490) * disable flicking/autoscrolling when the screen is not filled (68937afa8) * merge trunk (552f6b106) 2015-08-31 Albert Astals Cid * Remove outer Item of CroppedImageMinimumSourceSize (1a09225c3) 2015-08-31 Michael Zanetti * fix comments from review (b87bba190) * merge prereq (9a4381aba) * fix coding style (9f13dd317) 2015-08-31 Albert Astals Cid * Merge overlay (630d2453e) 2015-08-31 Lukáš Tinkl * preselect the detected (or current or fallback) language, position the list view to the middle (5c6e1d8f2) * switch to a ListView; fix activating an AP (d2aeca1db) 2015-08-31 Gary.Wzl * Add more tests for expand/collapse cases when initialized (768f18a5c) * Remove whitespace (7313a998a) 2015-08-31 Lukáš Tinkl * merge overlay (150e6dbf4) 2015-08-31 CI Train Bot * Releasing 8.11+15.04.20150831.2-0ubuntu1 (c713bdab9) 2015-08-31 Albert Astals Cid * Accept auto repeats for the power down button if timer is not yet running (f7b0fa27a) 2015-08-31 Josh Arenson * Refactor the greeter to enable dynamic loading of backend plugins. Approved by: Michael Zanetti (2a1ddfe95) 2015-08-31 Albert Astals Cid * Make clicking on launcher buttons have haptic feedback (1a073a05d) 2015-08-31 Gerry Boland * [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (a5689f861) 2015-08-31 Albert Astals Cid * Move connect() to new syntax (868f568d7) 2015-08-31 Lukáš Tinkl * Don't show the volume notification when the sound indicator is shown Fixes: #1484126 Approved by: Michael Zanetti (a2ecab08e) 2015-08-31 Albert Astals Cid * Make test_greeter_hides_on_app_open more stable (f952f2ea2) 2015-08-31 Michael Terry * Unify turn-on-screen-upon-notification logic from various daemons into unity8. (f2e067ada) 2015-08-31 Albert Astals Cid * Add tests for Shell+Dash interaction Approved by: Michael Zanetti (a566a03f0) * make pot_file Fixes: #1488484 Approved by: Michael Zanetti (da2e6abd1) * Fix bug in CardTool.titleAlignment (6d7b12834) * Bind title alignment (60e02b5ca) 2015-08-28 Albert Astals Cid * Accomodate header height when using a card carousel with non overlayed header (62f2cb3fa) 2015-08-28 Michael Zanetti * cleanup (d646dc1d3) * implement progressive scrolling in desktop spread (a8eaacf33) * refactor mouse howering over spread to allow doing more stuff with a single howerArea (26142f7af) 2015-08-28 Albert Astals Cid * Fix Carousel.qml:252:19: Unable to assign [undefined] to QQmlComponent* (56925a61f) * less c&p (5329f1427) * Add test (429f3c549) * Fix restart unity8 from inside the phone more than two times (16ab9add3) 2015-08-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (33e6e715c) 2015-08-27 Josh Arenson * [CHECKPOINT COMMIT] - Broken (356076569) 2015-08-27 CI Train Bot * Resync trunk. (5f5a8a555) 2015-08-27 Lukáš Tinkl * move aside for now (7acba4c20) * fixes (258d11752) 2015-08-27 CI Train Bot * Releasing 8.11+15.04.20150827.1-0ubuntu1 (2492bafe8) 2015-08-27 Daniel d'Andrada * MirSurfaceItem is now a view+controller instantiated from QML (a35930fd6) 2015-08-27 Lukáš Tinkl * merge trunk (a7af6aa4d) 2015-08-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (217453183) 2015-08-26 Josh Arenson * Refactor IntegratedLightDM (0e5da74b1) * Refactor FullLightDM (fbecf4e32) * Format qmldir input file (74769a809) * Copy original lightdm files (d36e3f889) * Create new plugin directory structure (de29e2202) 2015-08-26 Albert Astals Cid * New simplified CroppedImageMinimumSourceSize (badcef4b6) 2015-08-26 Michael Zanetti * add an animation transition when invoking the spread by hitting the right edge (405f9e9b4) 2015-08-26 CI Train Bot * Releasing 8.11+15.10.20150826-0ubuntu1 (e70927552) 2015-08-26 Michael Zanetti * no change rebuild for wily (901c0e3c5) 2015-08-26 Gary.Wzl * Merge trunk and resolve conflict (898997588) * Test case fixed for tst_PreviewExpandable and don't bind widgetData[expanded] to expanded property (74fad7a7e) 2015-08-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4aa0eb5de) * Launchpad automatic translations update. (09ff98fe9) 2015-08-25 Josh Arenson * Re-enable tests (9c3c0bb8b) * Fix .install file (427a6e0cf) * Remove pkg_check from previously removed dependency (a594c56a5) * Remove unused package dependency (9513bd9c0) * Remove unused property from qmltest (9743a9d6f) * Remove unecessary ./ from file path (64ce016d4) * Don't provide Dialogs with a copy of lightDM, just refer to a shared copy. (018e631d8) * Refactor to remove redundant lightdm naming (312c81e21) * [ Michael Terry ]; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial.; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. (bcea04b42) * [ Michael Terry ]; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial.; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. [ Albert Astals Cid ]; Drop gcc 4.9 requirement in debian/rules; Make the test more stabl. Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid ]; Make the test pass again after rework of appmanager; fix testPhoneStage [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandable; Fix the expandable test; Replace some waitForRendering with wait(0. Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl . Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ]; Added indication for running apps. (LP: #1471577); Adjust the color to highlighting indicator. (LP: #1457098); Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ] * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ Kevin Gunn . No change, rebuild for gcc5 [ CI Train Bot ]; Resync trunk. added: po/cy.po; Resync trunk. added: po/cy.po [ Daniel d'Andrada ]; Stages now control the "requestedState" property of applications; Stages now control the "requestedState" property of applications (2332c2a41) 2015-08-25 Lukáš Tinkl * [ Michael Terry ]; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial.; Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial.; Drop gcc 4.9 requirement in debian/rule. Make the test more stable; Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid ]; Make the test pass again after rework of appmanager; fix testPhoneStage [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandable; Fix the expandable test; Replace some waitForRendering with wait(0); Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ]; Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ] * Added indication for running apps. (LP: #1471577. Adjust the color to highlighting indicator. (LP: #1457098) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ]; Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ Kevin Gunn ]; No change, rebuild for gcc5 [ CI Train Bot ]; Resync trunk. added: po/cy.p. Resync trunk. added: po/cy.po [ Daniel d'Andrada . Stages now control the "requestedState" property of applications; Stages now control the "requestedState" property of applications arrow label (LP: #1431564) [ Daniel d'Andrada ]; TouchRegistry: remove null candidates from list of candidates (LP: #1473492) [ Lukáš Tinkl . Fix power dialogs on desktop; Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc); React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149); launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ]; Implement first edition for a desktop Alt+Tab spread; drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ]; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. Implemented alert/wiggle feature for launcher-icons. Implemented alert/wiggle feature for launcher-icons. makes left swip reset the search string. (LP: #1413791. Don't expand indicators when tap to return to call. (LP: #1453217); makes left swip reset the search string. (LP: #1413791) (3337231a7) 2015-08-25 Albert Astals Cid * make pot_file (ecebef4b2) 2015-08-25 Lukáš Tinkl * change to 1.1 version of U components (8cce08e21) * address minor issues (35b8e40ce) * protect the GlobalShortcut pointer with QPointer (94be13178) 2015-08-25 Michael Zanetti * release for wily (238fbd626) 2015-08-25 Albert Astals Cid * Merge use_sdk_13 (f53f729d4) * Merge unity8 (4744a02f3) 2015-08-24 Lukáš Tinkl * introduce GlobalShortcut component (6657af0a5) 2015-08-24 Andrea Cimitan * ehm (c5e34993e) * Merge (14092118d) 2015-08-24 Daniel d'Andrada * WIP - Move a bunch of properties into a Orientations container (c69bac969) * Merge lp:~josharenson/unity8/new_fix_upsidedown (fdda1b1eb) 2015-08-24 Gary.Wzl * bottomMargin fixed for listview. (bef433d7a) 2015-08-24 Albert Astals Cid * Some more haptification (95505e644) * Merge use_sdk_13 (499a563a7) * Merge unity8 (72529cb3c) 2015-08-24 Gary.Wzl * 1.Optimize flickable' movement when virtual keyboard popups/disappear 2.Remove ';' from property declarations (25f246658) 2015-08-21 Josh Arenson * [ Albert Astals Cid ]; Drop gcc 4.9 requirement in debian/rule. Make the test more stable; Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid ]; Make the test pass again after rework of appmanager; fix testPhoneStage [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandable; Fix the expandable test; Replace some waitForRendering with wait(0); Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ]; Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ] * Added indication for running apps. (LP: #1471577. Adjust the color to highlighting indicator. (LP: #1457098) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ]; Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ Kevin Gunn ]; No change, rebuild for gcc5 [ CI Train Bot ]; Resync trunk. added: po/cy.p. Resync trunk. added: po/cy.po [ Daniel d'Andrada . Stages now control the "requestedState" property of applications; Stages now control the "requestedState" property of applications (82f8327c4) 2015-08-21 Michael Terry * Fix new tests (428d3c430) 2015-08-21 Andrea Cimitan * Removed unused properties (f7a3c2ef6) 2015-08-21 CI Train Bot * Releasing 8.11+15.04.20150821-0ubuntu1 (3d6047cc2) 2015-08-21 Michael Terry * Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. (743fe1251) 2015-08-21 Josh Arenson * Fix typo (cbf4e11df) * Return a borrowed space (9749a3b74) 2015-08-21 Andrea Cimitan * Some tweaks (e087db3cc) 2015-08-21 Josh Arenson * Remove unused import (d0ed98f68) * Remove debug code (9cb2b88f2) * Re-enable tests (ca4ad59e7) * Add comment explaining some fu (7bd1d19c4) * Add support for overriding orientations based on device type (994879fac) 2015-08-21 Albert Astals Cid * Make clicking on launcher buttons have haptic feedback (fc2a6f51c) * Accept auto repeats for the power down button if timer is not yet running (364ac1a9c) * Merge lp:unity8 (80435de06) 2015-08-21 Gerry Boland * [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (c00854dbb) 2015-08-20 Josh Arenson * I don't know why, but this works (bd74b71d6) * Drop gcc 4.9 requirement in debian/rules; Make the test more stable; Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid . Make the test pass again after rework of appmanager; fix testPhoneStage [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandabl. Fix the expandable test; Replace some waitForRendering with wait(0); Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ]; Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ]; Added indication for running apps. (LP: #1471577); Adjust the color to highlighting indicator. (LP: #1457098); Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ]; Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) (cef9b7b37) 2015-08-20 Michael Terry * Fix test (85847d13e) * Skip whole tutorial on desktop, not just part of it (ff39fe83c) 2015-08-20 Lukáš Tinkl * make it a showNotification property and a respective onFooChanged handler (a6428e104) * hide the volume notification iff the indicator bar is expanded and the current indicator is sound (ba738ae2e) * pass indicators down from Shell (d1c815252) 2015-08-20 Andrea Cimitan * Merge and fix (4603daa0b) 2015-08-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a8f7a607e) 2015-08-19 Michael Terry * Revert change signal rework, we're not using it (f95cefb17) * Don't rely on changed signals from GSettings, they don't seem reliable (f87f8180a) * Switch to x, not t (8f763f03d) 2015-08-19 Daniel d'Andrada * Clean up code and make the fake virtual keyboard work again (cc896a58c) 2015-08-19 Michael Terry * tiny fixes (a142f2165) * Rejigger stored timestamp to be start of lock-out (a7220cfc0) * Clean up when done with lockout (a21dd1b2f) * Some minor fixes (76642b6f6) 2015-08-19 Lukáš Tinkl * hide the volume notification when the indicator is shown (a0f1cb984) 2015-08-19 Michael Terry * Fix not being locked out after a reboot (b2372a501) 2015-08-19 Andrea Cimitan * [ Albert Astals Cid ]; Drop gcc 4.9 requirement in debian/rule. Make the test more stable; Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid ]; Make the test pass again after rework of appmanager; fix testPhoneStage [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandable; Fix the expandable test; Replace some waitForRendering with wait(0); Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ]; Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ] * Added indication for running apps. (LP: #1471577. Adjust the color to highlighting indicator. (LP: #1457098) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ]; Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) (db1592957) 2015-08-19 Albert Astals Cid * Some more new connections i had missed (3f43349c7) 2015-08-19 Daniel d'Andrada * Depend on libunity-api-dev >= 7.100 (615746095) 2015-08-19 Albert Astals Cid * Move connect() to new syntax (479eddc44) * Adapt to SDK API changes (6df2dc688) * Adapt to SDK changes (5c01ec951) 2015-08-19 Daniel d'Andrada * Add MirSurface::resize(QSize) to the mock impl (6960b652e) 2015-08-19 Andrea Cimitan * [ Albert Astals Cid ]; Drop gcc 4.9 requirement in debian/rule. Make the test more stable; Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ]; Set currentIndex after the model change is completed (LP: #1433442) [ Albert Astals Cid ]; Make the test pass again after rework of appmanager; fix testPhoneStage [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ]; Fix and clean up InputInfo plugin [ Rodney Dawes ]; Do not call verify in the payments button code. (LP: #1468038) [ Albert Astals Cid ]; Add a test that checks that items in an expandable are the correct size after expanding the expandable; Fix the expandable test; Replace some waitForRendering with wait(0); Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ]; Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ] * Added indication for running apps. (LP: #1471577. Adjust the color to highlighting indicator. (LP: #1457098) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ]; Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) (2d8cb0f63) 2015-08-19 Albert Astals Cid * page header style fixes (86ce025d7) 2015-08-19 Andrea Cimitan * Fix for test (78aaff194) 2015-08-19 Albert Astals Cid * Merge (a735eee81) 2015-08-18 Daniel d'Andrada * Merge trunk (9c9dd484e) * Add missing files (cb5c5c0c4) 2015-08-18 Gary.Wzl * Bug fixed when Rating/Comment input widgets are nested in expandable widget. (8af223d72) 2015-08-17 Daniel d'Andrada * Further clean up and refactor focus handling in DesktopStage (966b9e633) * Merge trunk (96eb52d22) 2015-08-17 Gary.Wzl * Refactor preview widget reposition when inputmethod popups. (8b6dd4271) 2015-08-17 Albert Astals Cid * Don't wait for the proxy so that tests passes (a23e21d4e) 2015-08-17 Gary.Wzl * Refactor textarea visible to make it more flexible. (cece9cce6) 2015-08-17 Albert Astals Cid * Make test_greeter_hides_on_app_open more stable (a5809e4a8) 2015-08-17 CI Train Bot * Releasing 8.11+15.04.20150817-0ubuntu1 (2ef5ca5f0) 2015-08-17 Albert Astals Cid * Drop gcc 4.9 requirement in debian/rules Approved by: Michael Zanetti (69d9ab516) * Make the test more stable (8498c84ce) 2015-08-17 Alberto Mardegan * Set currentIndex after the model change is completed (cb700add1) 2015-08-17 Albert Astals Cid * Optimize scope.preview() calls (6b67e0317) 2015-08-17 Alberto Mardegan * Merge previews-in-order (c7add694a) 2015-08-17 Albert Astals Cid * Use a trully temp dir on test mode (ec409dcc3) * Merge (0773ca81d) * Merge (54dcb246e) * Merge (ec46807de) 2015-08-14 Alberto Mardegan * Change index via positionViewAtIndex() (e322859d2) * Set currentIndex after the model change is completed (a5a98eddf) 2015-08-14 CI Train Bot * Releasing 8.11+15.04.20150814-0ubuntu1 (ae9d4d8d1) 2015-08-14 Albert Astals Cid * fix testPhoneStage (2ae196004) * Make the test pass again after rework of appmanager Approved by: Gerry Boland (968ea85af) 2015-08-14 Daniel d'Andrada * Fix and clean up InputInfo plugin (c465fa30e) 2015-08-14 Rodney Dawes * Do not call verify in the payments button code. Fixes: #1468038 Approved by: Charles Kerr (987f8f634) 2015-08-14 Albert Astals Cid * Don't force gcc 4.9 since it won't build in wily that doesn't install it by default anymore (32ec0b1ec) 2015-08-13 Albert Astals Cid * > U.c (6e10511ce) * no ; here (383f2b3a6) * Merge unity8 (1138afa8d) * Merge (7953e1b21) * Merge (16146ca00) * Merge lp:unity8 (e6f0eea9f) 2015-08-12 Albert Astals Cid * fix testPhoneStage (2edd33e3a) * Make the test pass again after rework of appmanager (90fff38ab) * review fixes (476e7b4b0) * console.log -- (016cde7c5) * dependency increase (544ed139a) 2015-08-12 CI Train Bot * Releasing 8.11+15.04.20150812-0ubuntu1 (dda4169a4) 2015-08-12 Albert Astals Cid * Replace some waitForRendering with wait(0) (971bc8a52) 2015-08-12 handsome_feng * Adjust the color to highlighting indicator. Fixes: #1457098 Approved by: Nick Dedekind (4f9155e67) 2015-08-12 Albert Astals Cid * Add a test that checks that items in an expandable are the correct size after expanding the expandable (24479acb9) * Fix the expandable test (4483650e7) 2015-08-12 Gary.Wzl * Fix layout issue when adding audio track widget in expandable widget (69e166c0c) 2015-08-12 handsome_feng * Added indication for running apps. Fixes: #1471577 Approved by: Albert Astals Cid (0d73d6999) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. Fixes: #1445472 Approved by: Michael Zanetti (ab7130b10) 2015-08-12 Albert Astals Cid * Workaround for bug 1473471 (b3a42ef9e) * increase deps (967c76f94) * Merge use_sdk_13 (4a5f87f53) * Merge lp:unity8 (f03aec2a2) * Merge lp:unity8 (8f78e51e4) 2015-08-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b39a794be) 2015-08-11 Albert Astals Cid * Set the playlist at the beginning (ebd6bee69) * playlist is not an url, it's an array (81a3d3b6d) 2015-08-11 CI Train Bot * Releasing 8.11+15.04.20150811-0ubuntu1 (970627b56) 2015-08-11 Albert Astals Cid * Let the scopes/scopes-plugin-shell take care of activates that are previews Fixes: #1428063 Approved by: Andrea Cimitan, Pawel Stolowski (12953f8ac) 2015-08-11 Andrea Cimitan * [ Kevin Gunn ]; No change, rebuild for gcc5 [ CI Train Bot . Resync trunk. added: po/cy.po; Resync trunk. added: po/cy.po [ Daniel d'Andrada ]; Stages now control the "requestedState" property of applications; Stages now control the "requestedState" property of applications arrow label (LP: #1431564) [ Daniel d'Andrada . TouchRegistry: remove null candidates from list of candidates (LP: #1473492) [ Lukáš Tinkl ]; Fix power dialogs on desktop; Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc); React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149); launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ]; Implement first edition for a desktop Alt+Tab spread; drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ]; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. Implemented alert/wiggle feature for launcher-icons. Implemented alert/wiggle feature for launcher-icons. makes left swip reset the search string. (LP: #1413791. Don't expand indicators when tap to return to call. (LP: #1453217); makes left swip reset the search string. (LP: #1413791) (d285966f7) * [ Kevin Gunn ]; No change, rebuild for gcc5 [ CI Train Bot . Resync trunk. added: po/cy.po; Resync trunk. added: po/cy.po [ Daniel d'Andrada ]; Stages now control the "requestedState" property of applications; Stages now control the "requestedState" property of applications arrow label (LP: #1431564) [ Daniel d'Andrada . TouchRegistry: remove null candidates from list of candidates (LP: #1473492) [ Lukáš Tinkl ]; Fix power dialogs on desktop; Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc); React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149); launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ]; Implement first edition for a desktop Alt+Tab spread; drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ]; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. Implemented alert/wiggle feature for launcher-icons. Implemented alert/wiggle feature for launcher-icons. makes left swip reset the search string. (LP: #1413791. Don't expand indicators when tap to return to call. (LP: #1453217); makes left swip reset the search string. (LP: #1413791) (f17a7522b) 2015-08-11 Albert Astals Cid * Our distro-patching only adds Playlist as part of 5.4 (839152ef5) * Fix QtQuick import version (e5e54a5f6) * Merge use_sdk_13 (c074496bb) * Merge lp:unity8 (f13715834) * Workaround for bug 1473471 (7d68d109a) 2015-08-11 CI Train Bot * Resync trunk. (89ada332b) 2015-08-10 Michael Terry * Whenever we show a notification, turn the screen on (dbe8d4611) 2015-08-07 Albert Astals Cid * Merge lp:unity8 (ffe24834f) 2015-08-07 Gary.Wzl * move textArea up automatically when inputmethod popup (6cd57b280) 2015-08-06 Josh Arenson * [ CI Train Bot ]; Resync trunk.; allow opening the manage dash area by clicking with a mouse on the arrow label (LP: #1431564); TouchRegistry: remove null candidates from list of candidates (LP: #1473492); Fix power dialogs on desktop; Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc); React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149); launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ]; Implement first edition for a desktop Alt+Tab sprea. drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ]; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Implemented alert/wiggle feature for launcher-icons.; Implemented alert/wiggle feature for launcher-icons. [ handsome_feng ]; makes left swip reset the search string. (LP: #1413791) [ handsome_feng<445865575@qq.com> ]; Don't expand indicators when tap to return to call. (LP: #1453217. makes left swip reset the search string. (LP: #1413791) (0969a221a) * [ CI Train Bot ]; Resync trunk.; allow opening the manage dash area by clicking with a mouse on the arrow label (LP: #1431564); TouchRegistry: remove null candidates from list of candidates (LP: #1473492) [ Lukáš Tinkl ]; Fix power dialogs on desktop; Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc); React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149); launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ]; Implement first edition for a desktop Alt+Tab spread; drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ]; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay.; Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. Implemented alert/wiggle feature for launcher-icons. Implemented alert/wiggle feature for launcher-icons. [ handsome_feng ]; makes left swip reset the search string. (LP: #1413791) [ handsome_feng<445865575@qq.com> ]; Don't expand indicators when tap to return to call. (LP: #1453217); makes left swip reset the search string. (LP: #1413791) (c1bec302e) 2015-08-06 Albert Astals Cid * ;; -> ; (e0549c4ad) * Make the page header test even more stable (26e1bf961) * Increase by 1 not 2 (53f4e232f) 2015-08-06 Daniel d'Andrada * Add some missing attributes to the MirSurfaceItem in InputMethod.qml (2fe81e44e) 2015-08-06 Albert Astals Cid * Move from waitForRendering to wait(0) (a32912cf3) * Review improvements (224ee8547) 2015-08-06 Gary.Wzl * Fix test case failed (f1c2ae6ea) 2015-08-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (af2af6743) 2015-08-05 Albert Astals Cid * Optimize scope.preview() calls (673ab8e05) 2015-08-05 Daniel d'Andrada * Fix and clean up InputInfo plugin (2e417ea2f) 2015-08-05 Gary.Wzl * Add test case for new property added in expandable widget. (7553de7d5) 2015-08-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e949943e1) 2015-08-04 CI Train Bot * Releasing 8.10+15.10.20150804-0ubuntu1 (d9e9cb431) * No change, rebuild for gcc5; Resync trunk. added: po/cy.po (6295d1524) 2015-08-04 Daniel d'Andrada * Stages now control the "requestedState" property of applications (a9a969a81) * Refactor focus handling: remove forceActiveFocus() usage (46ef1016e) 2015-08-04 Gerry Boland * Add missing changelog entry: No change, rebuild for gcc5 (d1a8b47bd) 2015-08-04 Albert Astals Cid * Paraphrasing from IRC: "debian packaging is very picky about all that crap" (a3f9d04f0) * Increase version because of new scopes shell communication protocol (7b1418970) * increase deps (04cdd5fd0) * even -> event (0a4202b1d) * Add a test that checks that items in an expandable are the correct size after expanding the expandable (1a1538052) 2015-08-04 Daniel d'Andrada * Update MirSurface API (35b660467) 2015-08-04 Albert Astals Cid * Fix the expandable test (8527b9c76) 2015-08-04 handsome_feng * adjust the color to highlighting indicator (2bac7f363) 2015-08-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a6c2aee92) 2015-08-03 Daniel d'Andrada * MirSurfaceItem is now a view+controller instantiated from QML (1e3ad3222) * Merge lp:~dandrader/unity8/app-state-handling (ab328db00) 2015-08-03 Gary.Wzl * Fix layout issue when adding audio track widget in expandable widget (13fa32e44) 2015-08-03 Daniel d'Andrada * Update debian/control (b8f72d135) * Remove stuff (40b792971) 2015-08-03 Albert Astals Cid * Merge lp:unity8 (55708f127) * Merge lp:unity8 (7c1197c66) 2015-08-03 Daniel d'Andrada * Merge trunk (919b0352f) 2015-08-03 Albert Astals Cid * Merge lp:unity8 (4327e3dec) * Merge lp:unity8 (101eceed0) 2015-08-03 Gary.Wzl * Add widgetData["expanded"] property for expandable widget. (bfe824eba) 2015-08-03 CI Train Bot * Resync trunk. (7c13987be) 2015-08-03 Albert Astals Cid * Merge lp:unity8 (cc649f654) * Merge lp:unity8 (9dec97101) 2015-08-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6f3298ae8) 2015-08-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d0f09bfbb) 2015-07-31 Lukáš Tinkl * save the password when quitting (a90c22789) * save the timezone into the system (945aabd9c) * merge trunk (30332f60f) 2015-07-31 Andrea Cimitan * Removed now unused assets (defd1a381) * Merge and whitespace (396e8bcca) * Merge (6222adc20) * Change import (4c444bad8) 2015-07-30 Andrea Cimitan * Indent (b3c4e37b9) * Fix cardcreator test (3c833c4b1) * Merged (a61da40d2) * [ Albert Astals Cid ]; Add context for "Please re-enter" (LP: #1377195); Fix i18n in scope tool (LP: #1317541); Fix warning when doing make try; New phone background provided by design (LP: #1364537); PreviewExpandable should be not expanded on startup; Update state of indicators bar only when the user is actively dragging himself (LP: #1457044); icon-actions preview widge. make testPageHeader more stable [ CI Train Bot ]; Resync trunk. [ Josh Arenson ]; Add handling for the location page to the autopilot settings wizard test [ Michael Zanetti ]; allow opening the manage dash area by clicking with a mouse on the arrow label [ handsome_feng . Added touch state on navigation. (LP: #1383213) [ handsome_feng<445865575@qq.com> ]; Added touch state on navigation. (LP: #1383213) (ada7a3ea7) 2015-07-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9c1c79ece) 2015-07-30 Lukáš Tinkl * add some TODOs for the future (2cce85816) 2015-07-29 Lukáš Tinkl * preselect the country based on SIM card and language preference (eb99c27e6) * add a function to convert between MCC and country code (85fefaa68) * change Country -> Region (380c1d28f) 2015-07-29 CI Train Bot * Releasing 8.10+15.10.20150729-0ubuntu1 (f185bb9d1) 2015-07-29 Michael Zanetti * Implement first edition for a desktop Alt+Tab spread Approved by: Lukáš Tinkl (65d282d7f) 2015-07-29 Lukáš Tinkl * React on PrtScr keyboard shortcut for taking screenshots on desktop Fixes: #1474149 Approved by: Mirco Müller (682a5f920) * Fix power dialogs on desktop Approved by: Michael Zanetti (7ebab8ce1) * Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc) Approved by: Michael Zanetti (145ea7281) 2015-07-29 Daniel d'Andrada * TouchRegistry: remove null candidates from list of candidates Fixes: #1473492 Approved by: Albert Astals Cid (47c389c08) 2015-07-29 handsome_feng * makes left swip reset the search string. Fixes: #1413791 Approved by: Albert Astals Cid (f92e7acae) 2015-07-29 Michael Zanetti * drop the gcc-4.9 dependency Fixes: #1452348 Approved by: Albert Astals Cid (3b697792a) 2015-07-29 CI Train Bot * allow opening the manage dash area by clicking with a mouse on the arrow label (69c9741df) 2015-07-29 Lukáš Tinkl * launcher parity: close apps from quicklist Fixes: #1457201 Approved by: Michael Zanetti (02feab5e8) 2015-07-29 Mirco Müller * Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. Approved by: Michael Zanetti (9f578c0b0) * Implemented alert/wiggle feature for launcher-icons. Approved by: Michael Zanetti (da0fcd1a2) 2015-07-29 handsome_feng * Don't expand indicators when tap to return to call. Fixes: #1453217 Approved by: Nick Dedekind (8e0aa6bd7) 2015-07-29 Lukáš Tinkl * re-merge again on top of use-set-progress-api to fix failing QML tests (708d8347f) 2015-07-29 handsome_feng * rebash on top of lp:~lukas-kde/unity8/closeAppsFromQuicklist (6ae5fda0f) 2015-07-28 Andrea Cimitan * fix (ac86960d7) * Add context for "Please re-enter" (LP: #1377195); Fix i18n in scope tool (LP: #1317541); Fix warning when doing make try; New phone background provided by design (LP: #1364537); PreviewExpandable should be not expanded on startup; Update state of indicators bar only when the user is actively dragging himself (LP: #1457044. icon-actions preview widget; make testPageHeader more stable [ CI Train Bot ]; Resync trunk.; Add handling for the location page to the autopilot settings wizard test [ Michael Zanetti ]; allow opening the manage dash area by clicking with a mouse on the arrow label [ handsome_feng ]; Added touch state on navigation. (LP: #1383213) [ handsome_feng<445865575@qq.com> ]; Added touch state on navigation. (LP: #1383213) (3e281032e) * [ Albert Astals ]; Ensure tutorial doesn't let user drag the launcher past screen edge. (LP: #1454882) [ Albert Astals Cid ]; Fix build with ninja [ Andrea Cimitan . Add PreviewSocialComment [ Daniel d'Andrada ]; Ensure tutorial doesn't let user drag the launcher past screen edge. (LP: #1454882); Update tst_ShellWithPin [ Josh Arenson ]; Add a basic autopilot test for the SettingsWizard [ Lukáš Tinkl ]; Avoid sync DBUS calls [ Marcus Tomlinson ]; Handle TERM, HUP, and INT signals in unity-scope-tool (LP: #1470464) [ Michael Zanetti ]; Add PreviewSocialComment [ Nick Dedekind ]; Fixed qml warnings in 'make tryShell' (0708ef2d1) 2015-07-28 Michael Zanetti * update all to 1.3 after merging trunk (2fabf3c16) * merge trunk (b4a79a15c) 2015-07-28 Andrea Cimitan * Add shadows (1bc5ffd31) 2015-07-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d64609571) 2015-07-27 Lukáš Tinkl * explain why the duplicated signals are needed (c28166589) * add a TODO for the future (78a921d20) * fix case mismatch in session service signals (2a3a2ac2d) 2015-07-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3a0420d68) 2015-07-25 Mirco Müller * Sorted out another issue with alertViaCountAndCountVisible qmltest. (faf26a936) * Fixed alertViaCountAndCountVisible qmltest. (6d68c426f) * Merged again with launcher-icon-wobble branch. (24d996c61) * Merged mzanetti's branch fixing issues for launcher-icons of apps not pinned or running. (0045682e0) 2015-07-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5c9c538f4) 2015-07-24 Michael Zanetti * fix the moveTo animation (402c2dd3e) * don't hint the whole launcher when an alert appears, we're peeking single items now (c9aaa2b75) * countVisible is a bool, not an int (3d6c53c8a) * fix a crash when calling things with the wrong amount of arguments (f297865ab) 2015-07-24 CI Train Bot * Resync trunk. (f4c25cf5b) 2015-07-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4df3f1c64) 2015-07-23 Michael Zanetti * merge lp:~lukas-kde/unity8/desktop-screenshotter as prereq (f2eb292bf) 2015-07-23 Lukáš Tinkl * rebase on top of lp:~macslow/unity8/use-set-progress-api (ef55e4d4e) 2015-07-23 Mirco Müller * Limit dateChanged only to property that actually changed in the mock. (69a45c953) * Merged launcher-icon-wobble branch and solved all conflicts. (a63f33729) 2015-07-23 handsome_feng * update the test_dragndrop_cancel function (f9a9c4b56) 2015-07-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7d073b626) 2015-07-23 handsome_feng * Rotating 'focused_app_arrow' icon (f7a515851) * merge trunk (c4ad0cb18) 2015-07-22 Josh Arenson * Fix tst_OrientedShell (ef5e85d65) * Fully abstract Greeter/LightDM from shell.mode (062fc51f9) 2015-07-22 Albert Astals Cid * header height changed (1c4b5254c) * Actaully let the SDK component decide the size (a5ed5fb38) * 1.3 headers are smaller (d108336aa) 2015-07-22 Michael Zanetti * drop explicit version requirement from gcc dependency (5be533c63) 2015-07-22 Mirco Müller * Made sure progress is properly exposed in DBus-introspection and fixed other suggestions from MP-comments. (0b22f5519) 2015-07-21 Josh Arenson * Revert to the old tightly-coupled way of determining which lightdm to load (7d0fe6247) * Remove shellMode dependency from Wizard.qml in a more clear way (05d3f6096) * Remove shell.mode dependency from LightDM.qml (8c3166a85) 2015-07-21 Lukáš Tinkl * drop dbusinterface changes (d5c26b51a) * present the languages in their native name (731d64942) 2015-07-21 Josh Arenson * [ Albert Astals ]; Ensure tutorial doesn't let user drag the launcher past screen edge. (LP: #1454882) [ Albert Astals Cid ]; Fix build with ninja [ Andrea Cimitan . Add PreviewSocialComment [ Daniel d'Andrada ]; Ensure tutorial doesn't let user drag the launcher past screen edge. (LP: #1454882); Update tst_ShellWithPin [ Josh Arenson ]; Add a basic autopilot test for the SettingsWizard [ Lukáš Tinkl ]; Avoid sync DBUS calls [ Marcus Tomlinson ]; Handle TERM, HUP, and INT signals in unity-scope-tool (LP: #1470464) [ Michael Zanetti ]; Add PreviewSocialComment [ Nick Dedekind ]; Fixed qml warnings in 'make tryShell' (3267735a1) 2015-07-21 Albert Astals Cid * Fix after merge (ad2e74049) * Merge use_sdk_13 (269c49059) * Fix versions after merge (5776bc095) * Merge lp:unity8 (1b15b0fb1) * no need no spies! (cf2cc54e8) * No need to change tst_Dash.qml at all (461790340) * Polish + add test (9c4d2e236) 2015-07-21 Mirco Müller * Fixed failures of xvfbtestLauncher run. (e198a7545) 2015-07-21 Lukáš Tinkl * merge and resolve conflict (39aae47d1) * merge and fix conflict (98629ae67) 2015-07-21 Mirco Müller * Merged with trunk and fixed conflicts. (fe643320f) 2015-07-21 CI Train Bot * Releasing 8.10+15.10.20150721-0ubuntu1 (00c256490) 2015-07-21 Albert Astals Cid * Add context for "Please re-enter" (df175ee59) 2015-07-21 Michael Zanetti * allow opening the manage dash area by clicking with a mouse on the arrow label (b7ef186db) 2015-07-21 Albert Astals Cid * New phone background provided by design (8ddd1dbd8) * Fix i18n in scope tool (945dfc475) * make testPageHeader more stable (e1209affa) 2015-07-21 handsome_feng * Added touch state on navigation. Fixes: #1383213 Approved by: Mirco Müller (298f75187) 2015-07-21 Albert Astals Cid * Fix warning when doing make try* Approved by: Andrea Cimitan (8f39abdb3) * icon-actions preview widget (2d0878c75) * PreviewExpandable should be not expanded on startup (3e619a41f) * Update state of indicators bar only when the user is actively dragging himself (c9074a52f) 2015-07-21 Josh Arenson * Add handling for the location page to the autopilot settings wizard test Approved by: Albert Astals Cid (4525682b7) 2015-07-21 Albert Astals Cid * Merge lp:unity8 (da50ad5fe) 2015-07-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (382101561) 2015-07-21 CI Train Bot * Resync trunk. (58ae519d6) 2015-07-20 Josh Arenson * Remove shell.mode from Wizard (4cd8d7c69) 2015-07-20 Lukáš Tinkl * reset selected TZ when switching between filter modes (17d1da969) 2015-07-20 Rodney Dawes * Do not call verify in the payments button code. (87d410db8) 2015-07-20 Lukáš Tinkl * initially, filter the list of timezones by the user-selected country (3fff389cf) * extend the timezone model with country code (a3651e851) 2015-07-20 Daniel d'Andrada * TouchRegistry: remove null candidates from list of candidates (db1d2cf7d) 2015-07-20 Lukáš Tinkl * make the test find the relevant QML plugin (c86000a8e) 2015-07-20 Albert Astals Cid * forceshow greeter on start of every test (419d8cff7) 2015-07-20 Nick Dedekind * Fixed time conversion (bbd9eee93) 2015-07-20 Albert Astals Cid * Add DashShell to test Dash+Shell stuff (64d0b88a7) * We don't need this anymore (a8c7b2419) * fix crash on some dash tests now that it has two windows (f004c04b9) 2015-07-20 Lukáš Tinkl * bring back the flat, simple Lock screen type selection (5f8fcb713) 2015-07-20 Albert Astals Cid * ; (02e5e012c) * Add test that checks that the launcher dash home signal brings us back to the first scope in the dash (36eaf968c) 2015-07-20 handsome_feng * modified the test (33f663189) * BFB and left swipe both should reset the dash (09f1be53f) * merge trunk (02e3bff47) 2015-07-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f753fd32e) 2015-07-17 Josh Arenson * Add fake shell.mode property to tests (a5f9da8e4) * Fix external property issues (ddb2092d5) 2015-07-17 Lukáš Tinkl * add a test for ScreenGrabber plugin (ec82547f0) 2015-07-17 CI Train Bot * Releasing 8.10+15.10.20150717-0ubuntu1 (16d43d4be) 2015-07-17 Marcus Tomlinson * Handle TERM, HUP, and INT signals in unity-scope-tool Fixes: #1470464 Approved by: Albert Astals Cid, Michi Henning (0c36be68e) 2015-07-17 Michael Zanetti * Add PreviewSocialComment Approved by: Albert Astals Cid, Josh Arenson (6e300bf01) 2015-07-17 Lukáš Tinkl * Avoid sync DBUS calls Approved by: Michael Zanetti (df7884981) 2015-07-17 Albert Astals * Ensure tutorial doesn't let user drag the launcher past screen edge. (62746732e) 2015-07-17 Nick Dedekind * Fixed qml warnings in 'make tryShell' Approved by: Mirco Müller (ae9d424c6) 2015-07-17 Albert Astals Cid * Fix build with ninja Approved by: Pete Woods, Michael Zanetti (79200fc05) 2015-07-17 Daniel d'Andrada * Update tst_ShellWithPin (0c949351b) 2015-07-17 Josh Arenson * Add a basic autopilot test for the SettingsWizard Approved by: Albert Astals Cid, Richard Huddie (110100ed1) 2015-07-17 Mirco Müller * Moving count-emblem to the bottom of launcher-icon to comply with latest design. (89ce90ab2) 2015-07-17 Andrea Cimitan * Merged (8125c229b) 2015-07-17 Albert Astals Cid * workaround horizontal line in the dash (9f6f9028d) 2015-07-17 Mirco Müller * There's no need for the adjusted width anymore for the new progress-bar visuals. (d60a11568) 2015-07-17 Andrea Cimitan * Merged and changed one line (b326cd397) 2015-07-17 Albert Astals Cid * Remove unexisting property (0d6bca70f) * Merge lp:unity8 (ab6bdb9e4) 2015-07-17 Andrea Cimitan * Remove deprecated call (f380aa162) 2015-07-17 Lukáš Tinkl * add a QML test to verify pressing the PrtScr keyboard shortcut (86a756f8f) 2015-07-17 Michael Zanetti * disable the MulitpointTouchArea when the Parent is disabled (a02e996b4) 2015-07-17 Andrea Cimitan * Fix test card creator (b11778f19) 2015-07-17 Mirco Müller * Merged with trunk. (e5e6f1732) * Merged with trunk. (0bc28ff25) 2015-07-17 Michael Zanetti * move the physicalKeyMapper object name (0ec716945) 2015-07-17 Albert Astals Cid * Add context for "Please re-enter" (084204fd4) 2015-07-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2cbfe4661) 2015-07-16 Josh Arenson * Merge trunk (bcd09f824) * Merge integrated_lightdm_refactor (9b47e9df6) * Fix plugin name (5a54472e4) * Bump library version; Rename LightDM to correct name (020a1e69d) * Fix invalid property in Wizard.qml (af9a86820) 2015-07-16 Michael Zanetti * allow opening the manage dash area by clicking with a mouse on the arrow label (4d8522886) 2015-07-16 Mirco Müller * Added unit-test for new DBus-API Alert() of launcher-model. (e35449387) 2015-07-16 Andrea Cimitan * Fix qml test (21f71dec5) 2015-07-16 Albert Astals Cid * New phone background provided by design (4cd503fb7) 2015-07-16 Lukáš Tinkl * consistent check image size, aligned to label vertical center (b567ff3e0) 2015-07-16 Mirco Müller * Fixed launcher-model unit-test. (5a5162c6e) 2015-07-16 Michael Zanetti * exit spread when a new app is launched (29bc0cf31) 2015-07-16 Lukáš Tinkl * use the themed tick image (d04cb0d04) 2015-07-16 Andrea Cimitan * Also cardCreator is done, missing tests (ba4321c2c) 2015-07-16 Albert Astals Cid * Fix i18n in scope tool (ac36a01c2) 2015-07-16 Mirco Müller * Added some handy shell-scripts for easier runtime-debugging of DBus-APIs on the device. (7b7e5f63c) * Changed DBus-interface for launcher-item from alert-flag to alert-method upon request in MP-comment. (4a5f0b18f) 2015-07-16 Michael Zanetti * fix tests (8666e6c54) * if it's not working it's probably too much code (a5ae2da48) 2015-07-16 Mirco Müller * Fixed suggestions from MP-comments. (c67efbba9) * Reverted deletion of progress-bar assets in r1780. (6d8430dca) * Removed newly added progress-bar assets to make room for reverting initially deleted ones in r1780. (71127b620) 2015-07-16 handsome_feng * merge trunk (779ba19c5) 2015-07-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a9889808a) 2015-07-16 Lukáš Tinkl * use ListView (c904ef82d) * tweaks (4752bd8e1) 2015-07-15 Lukáš Tinkl * fix text (2f84fbf51) 2015-07-15 Andrea Cimitan * Changed UbuntuShape APIs for files in qml/ dir (2bd22f506) 2015-07-15 Albert Astals Cid * Wops, actually layouts is 1.1 and not 1.2 ^_^ (d9473c185) * Move to importing QtQuick 2.4 & friends (ebf3a8917) 2015-07-15 Josh Arenson * Fix deps (23f9b0a19) 2015-07-15 Lukáš Tinkl * make the user name field mandatory (c68646274) 2015-07-15 Mirco Müller * Forgot to add the progressbar-trough assets, which were accidentally removed before... fixes the QIODevice::read-qmlwarning. (6258d7813) * Adapted launcher-icon alert related qmltests, fixed general qml-warnings... QIODevice-warning still to sort out. (8f1adcc8f) 2015-07-15 Nick Dedekind * re-bump sdk version (d035bae64) 2015-07-15 Lukáš Tinkl * implement taking screenshots on desktop using PrtScr key (9216c209a) 2015-07-15 Nick Dedekind * bump sdk requirement (bf063fdd6) * Removed TimeFormatter in favor of sdk LiveTimer+i18n.relativeDateTime (6d916f1f3) 2015-07-15 handsome_feng * forrow the inline comments (832a6f6f6) 2015-07-14 Lukáš Tinkl * factor out password strength meter into its own component (da86a8806) 2015-07-14 Michael Zanetti * added tests (0c54fe78d) * make the titleInfo react to mouse clicks too (69d50d211) * make the indicator's MouseEater also eat hover events (7ec4fa520) * fix the close button position (8ac45360c) 2015-07-14 Lukáš Tinkl * some shuffling (again) due to different workflow (3855f5e1b) 2015-07-14 Mirco Müller * Completed converting peeking-state to stand-alone animation. (d74eb9f6f) 2015-07-14 Daniel d'Andrada * Update tst_ShellWithPin (000e8f58c) 2015-07-14 Mirco Müller * Slowly getting rid of the peeking-state and replacing it with a simple animation instead. (3df8bbccb) * Remove commented lines. (a4a634d08) * Addressed a large chunk of suggestions from MP-comments. (04f0096e7) 2015-07-14 Daniel d'Andrada * Merge trunk (ec3d648a2) 2015-07-14 Michael Zanetti * tweak state handling a bit (8c65fd04a) * increase size of close mouse area (f0a0b96aa) * rework keyboard handling a bit (7d7d73478) 2015-07-14 Mirco Müller * Reverted visual updates to launcher-icon progress-bar, since they are part of a different branch. (4261c3695) * Make peeking-animation adapt to inverted-flag of launcher-panel... removed panelMoved-signal. (99b106318) 2015-07-14 Albert Astals Cid * make testPageHeader more stable (5086173df) 2015-07-14 Michael Zanetti * merge trunk (21a9b647e) 2015-07-14 Albert Astals Cid * Merge lp:unity8 (2aa49e80b) * Don't make it quiet, it's harder to debug failures (bbebf96ba) * Merge lp:unity8 (4f6f48cfa) * Merge (cf90f5291) 2015-07-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e0d72bc65) 2015-07-13 Josh Arenson * [ Albert Astals Cid ]; Revert Session Screenshotter (LP: #1473476) [ Daniel d'Andrada ]; Dismiss the apps spread if greeter gets shown (LP: #1471609) [ Albert Astals Cid ]; Make the card sizes a bit dependant on the total of gu of the dash (09cb68b96) * [ Albert Astals Cid ]; Revert Session Screenshotter (LP: #1473476) [ Daniel d'Andrada ]; Dismiss the apps spread if greeter gets shown (LP: #1471609) [ Albert Astals Cid ]; Make the card sizes a bit dependant on the total of gu of the dash (c4508419f) 2015-07-13 Lukáš Tinkl * simplify selecting language code (1866aa4f4) 2015-07-13 Albert Astals Cid * Merge lp:~aacid/unity8/revert_session_screenshotter (13f4fffe6) 2015-07-13 Lukáš Tinkl * use standard ubuntu orange color for hyperlinks (95b342fcc) 2015-07-13 CI Train Bot * Releasing 8.10+15.10.20150713-0ubuntu1 (23ac5acb1) 2015-07-13 Albert Astals Cid * Revert Session Screenshotter Fixes: #1473476 Approved by: Michael Zanetti (100fae865) 2015-07-13 Daniel d'Andrada * Dismiss the apps spread if greeter gets shown (993899a52) 2015-07-13 Lukáš Tinkl * improve debug (a1c9f219e) * improve lang detection vs. default language logic (48b3df763) * center the view on the pre-selected language (caf7581b2) 2015-07-13 Mirco Müller * Added a temporary debug-output for the state-change of the launcher-panel. (085089aaa) * Use root id instead of panel id. (82c37bea1) 2015-07-13 Lukáš Tinkl * wording and font size (e6f8fb4c9) 2015-07-13 Mirco Müller * PauseAnimation not needed... fixed indentation. (c869de22a) * Merged with trunk. (ca23fa250) 2015-07-13 handsome_feng * Added an indication for running app (f5c9375d0) 2015-07-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c86703151) 2015-07-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c59280738) 2015-07-11 Lukáš Tinkl * swap the buttons, Sign In first (1c84fce75) * put the buttons side by side (0191c8c95) 2015-07-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ae3de59b7) 2015-07-10 Lukáš Tinkl * implement a draft U1 account sign up page (968ea2163) * work in focus scope (cdfd0a649) * implement a draft U1 account signin page (0b2867875) 2015-07-10 Albert Astals Cid * Revert Session Screenshotter (92b550744) 2015-07-10 Lukáš Tinkl * add draft Ubuntu Account page (56484a06b) 2015-07-10 Daniel d'Andrada * Dismiss the apps spread if greeter gets shown (36b4f8f8d) 2015-07-10 Nick Dedekind * use both inline and old video widget (32a47feb8) 2015-07-10 Lukáš Tinkl * switch location and timezone pages order (bc56fb50d) * fix colors (f8864eac8) 2015-07-10 Mirco Müller * Merged refactoring work. (b62a5133f) * Further refactoring of icon-peeking code... replaced peeking()/unpeeking() with signal-based approach. (ef20997bc) 2015-07-10 Albert Astals Cid * Give the test a proper name (1e5b7cb7d) * Add test to check the sdk versions are aligned (9df1b7f34) * Make this property readonly (4e6294a93) * these item names have been renamed (46f4d68e7) * Comment++ (fdcddca0f) * theme -> fakeTheme and SuruGradient is deprecated (1a740f8e8) * make cardCreator test pass (49c31a821) * Merge lp:unity8 (04cdb334d) * Move more imports to 1.3 (b91508dd7) * Fix build with ninja (689ab37a2) 2015-07-09 Josh Arenson * [ Albert Astals Cid ]; Make the card sizes a bit dependant on the total of gu of the dash [ Albert Astals Cid ]; Save screenshots of suspended apps to disk; Set width of title label when inside the title row (LP: #1461979. qmluitests was renamed to uitests [ CI Train Bot . Resync trunk. [ Daniel d'Andrada ]; Fix tst_OrientedShell and tst_Tutorial (LP: #1469761, #1466947) [ Leo Arias . Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Leonardo Arias Fonseca ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Lukáš Tinkl ]; fix PO files extraction [ Michael Zanetti ]; Make use of QInputDeviceInfo in order to automatically switch between usage modes and hide the OSK. [ Nick Dedekind . Fixed qtmultimedia mock which was generating errors in tests [ Richard Huddie ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Albert Astals Cid ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests [ Josh Arenson . Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz . Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572); Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572); No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) (d4212506d) 2015-07-09 Lukáš Tinkl * more visuals matching (305af2fdd) 2015-07-09 Michael Zanetti * merge trunk (773865b67) 2015-07-09 Nick Dedekind * reverted file changes (19075dd04) 2015-07-09 Mirco Müller * Started to refactor the peeking-icon code. (928073d05) 2015-07-09 Lukáš Tinkl * implement the new password setup page (4af7183ec) 2015-07-09 Albert Astals Cid * Oriented shell needs lightdm (1802c3731) 2015-07-09 Albert Astals * Make test more reliable (308a9da14) 2015-07-09 Lukáš Tinkl * prepare for the passcode/password split (387fb4156) 2015-07-09 Albert Astals Cid * Merge lp:~aacid/unity8/fix_test_suspendrestartApp (a985f8062) * Merge lp:unity8 (1bfc124c8) 2015-07-08 Josh Arenson * Merge (0b2476bc5) * Remove GreeterPrivate.cpp as it isn't needed for this impl (c7d27eaf2) 2015-07-08 Lukáš Tinkl * implement the Lock Security front page according to the visuals (976db4b4e) 2015-07-08 Mirco Müller * Make sure the alerting-wiggle gets correctly triggered by changes to count and countVisible at runtime. (ccb786e70) 2015-07-08 CI Train Bot * Releasing 8.10+15.10.20150708.2-0ubuntu1 (f1e039a86) 2015-07-08 Albert Astals Cid * Make the card sizes a bit dependant on the total of gu of the dash (3a72c5fa7) 2015-07-08 Lukáš Tinkl * provide correct (and translatable) country names (52e73f45e) 2015-07-08 Mirco Müller * Merged with trunk (7e461dde9) 2015-07-08 Albert Astals Cid * Fix warning on make try* (8f05dd291) * Cimi wants more if (7a0ab975d) * Make Cimi happy (d7ef06c27) 2015-07-08 Lukáš Tinkl * prevent unchecking a location method (4d8a9d7fd) 2015-07-08 Albert Astals Cid * Fix test_suspendrestartApp (f3d3b20c1) * implicitHeight is better, thanks Cimi! (2621a4086) 2015-07-08 Mirco Müller * Fixed whitespaces in scripts... added better explanation to helper-script README. (7d9e70011) 2015-07-08 Albert Astals Cid * trigger a preview in activate unless we activate (d46dd33db) * need categoryId here too (900afba5e) 2015-07-08 Nick Dedekind * updated translations (e017f9110) * moved inline video to old files (3e0fd9953) 2015-07-08 Albert Astals Cid * adapt to new api (bb0f8064c) 2015-07-08 Nick Dedekind * merged with trunk (e9a3155bf) 2015-07-08 Albert Astals Cid * pstolowski says "just bump it" (d3e105c54) * make testGenericScopeView pass (18cb1129c) * Fix testCard (8d9c90237) * Fix testCardTool (a74f3b26b) * Merge unity8 (caa2e2e3e) * sourcesize the icon (3a09fa1d0) * use row.actoins (627b54081) * strings can't be undefined (081259a85) 2015-07-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (523f97351) 2015-07-07 Josh Arenson * Update connect statements to Qt5 syntax (5bbaf12cc) * Remove commented-out #include (7a6ba685c) * Remove return statements from void functions (5fa10f00d) * [ Albert Astals Cid ]; Save screenshots of suspended apps to disk * Set width of title label when inside the title row (LP: #1461979); qmluitests was renamed to uitests [ CI Train Bot ]; Resync trunk. [ Daniel d'Andrada ]; Fix tst_OrientedShell and tst_Tutorial (LP: #1469761, #1466947) [ Leo Arias ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Leonardo Arias Fonseca . Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Lukáš Tinkl ]; fix PO files extraction [ Michael Zanetti . Make use of QInputDeviceInfo in order to automatically switch between usage modes and hide the OSK. [ Nick Dedekind ]; Fixed qtmultimedia mock which was generating errors in tests [ Richard Huddie ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340. Implement full-shell rotation (LP: #1210199) (2559ca542) 2015-07-07 Lukáš Tinkl * sset the item to "running" in all cases when it appears (c31e1390b) 2015-07-07 Albert Astals Cid * need to pass the categoryId when calling preview() (86ca82a7b) 2015-07-07 Lukáš Tinkl * set the running status also for the already pinned apps (af9bb1512) 2015-07-07 Mirco Müller * Make sure all changes are carried with the dataChanged signal. (80bce0fd9) 2015-07-07 Lukáš Tinkl * sync items when changing running state; set the initial running state in refresh() (b4b1c7a93) 2015-07-07 Mirco Müller * Fixed a missing signal-connect and added some handy shell-scripts for easier runtime-debugging of DBus-APIs on the device. (7856ec3d2) 2015-07-07 Lukáš Tinkl * no need to emit RoleRunning twice (32a3b24dc) * emit dataChanged(Running) correctly when the app appears/disappears (f127d7e42) * emit dataChanged (12d648fa7) * fix white-on-white text in the quicklist (2b42fc560) * implement missing bits of the "running" interfaces (c276a835c) 2015-07-07 Michael Zanetti * add copyright header to spreadmaths (4e59999d4) 2015-07-07 Albert Astals Cid * Let the scopes/scopes-plugin-shell take care of activates that are previews (b03b656b4) 2015-07-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6f9d0b412) 2015-07-06 Josh Arenson * [ Albert Astals Cid ]; Save screenshots of suspended apps to disk * Set width of title label when inside the title row (LP: #1461979); qmluitests was renamed to uitests [ CI Train Bot ]; Resync trunk. [ Daniel d'Andrada ]; Fix tst_OrientedShell and tst_Tutorial (LP: #1469761, #1466947) [ Leo Arias ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Leonardo Arias Fonseca . Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Lukáš Tinkl ]; fix PO files extraction [ Michael Zanetti . Make use of QInputDeviceInfo in order to automatically switch between usage modes and hide the OSK. [ Nick Dedekind ]; Fixed qtmultimedia mock which was generating errors in tests [ Richard Huddie ]; Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340. Implement full-shell rotation (LP: #1210199) (32aabe2ba) 2015-07-06 Daniel d'Andrada * Depend on libunity-api-dev >= 7.98 (9699e8949) 2015-07-06 Andrea Cimitan * Merged (3fa50170a) 2015-07-06 Mirco Müller * Addressed more MP-comments... wider use of chached map... tightend up qmltest for launcher's progress-changes. (fc36f663b) 2015-07-06 Albert Astals Cid * Don't live in the past yo! (370a5b947) * icon-actions preview widget (3d2ae713e) 2015-07-06 Michael Zanetti * fix bad merge (9d620baec) * added a test for the close button (79b70fbae) 2015-07-06 Andrea Cimitan * As albert suggests (cd26e2688) 2015-07-06 Daniel d'Andrada * Merge trunk (43b1644b2) 2015-07-06 Michael Zanetti * drop wait in tests (cdc0a6b9e) 2015-07-06 Daniel d'Andrada * Merge trunk (cd0d8d840) * Merge trunk (6128f525b) 2015-07-06 Michael Zanetti * fix icon size and jarring stack rotation (d2e561652) * fix close button disabling instead of just hiding (7fc9a0864) * animate closing (16eabaa31) 2015-07-06 Mirco Müller * sigh (9c86a5141) 2015-07-06 Andrea Cimitan * Fixes as review (419a29bef) 2015-07-06 Michael Zanetti * merge trunk (b05bc26f7) * added some tests (d69086294) 2015-07-06 Mirco Müller * Merged with trunk. (20051ece1) * Merged with trunk and resolved conflicts. (39a2c4a25) 2015-07-06 handsome_feng * clean spurious tags (b7742ab88) 2015-07-06 Albert Astals Cid * Merge lp:unity8 (04b8d6c0c) 2015-07-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (77048da57) 2015-07-06 handsome_feng * remove the leftMargin/rightMargin of the Standard item (ccfe1047f) * merge trunk (e372caa42) 2015-07-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0bc1274e0) 2015-07-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6fb6ad9e6) 2015-07-03 Lukáš Tinkl * use updated asset (b49aebb68) * select country (9286c50ae) 2015-07-03 Albert Astals Cid * Make the card sizes a bit dependant on the total of gu of the dash (879503f4a) 2015-07-03 Lukáš Tinkl * detect languages from the SIM card(s), if present (989236bdc) * refactor the modem handling up to allow for language and country detection from other pages (0ffae8d8a) * implement restart when the SIM card gets inserted (3c627b76a) 2015-07-03 Albert Astals Cid * Merge unit8 (200d35017) 2015-07-02 Lukáš Tinkl * merge trunk (14b76c030) * revert powerd plugin to r.1800 (87c63bfd2) 2015-07-02 Daniel d'Andrada * Ensure tutorial doesn't let user drag the launcher past screen edge. (430e06519) * Merge fixOrientedShellTests (ef843be9f) 2015-07-02 CI Train Bot * Releasing 8.10+15.10.20150702.2-0ubuntu1 (63b2f334e) 2015-07-02 Albert Astals Cid * Save screenshots of suspended apps to disk Approved by: Michał Sawicz (d57a8c518) * Set width of title label when inside the title row Fixes: #1461979 Approved by: Andrea Cimitan (85ad905fa) 2015-07-02 Nick Dedekind * Fixed qtmultimedia mock which was generating errors in tests Approved by: Lukáš Tinkl, PS Jenkins bot, Daniel d'Andrada (352202478) 2015-07-02 Leo Arias * Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. Fixes: #1306340 Approved by: PS Jenkins bot, Michael Zanetti, Brendan Donegan, Sergio Cazzolato (5201c80ac) 2015-07-02 Albert Astals Cid * qmluitests was renamed to uitests Approved by: Michael Zanetti (8eccae45c) 2015-07-02 Lukáš Tinkl * fix PO files extraction Approved by: Albert Astals Cid (5dfa6e8ab) 2015-07-02 Michael Zanetti * Make use of QInputDeviceInfo in order to automatically switch between usage modes and hide the OSK. Approved by: Lukáš Tinkl (625c5d077) * Added a snapshot of the WIP Qt InputInfo API (23ba646f7) 2015-07-02 Daniel d'Andrada * Fix tst_OrientedShell and tst_Tutorial (4b10ec391) 2015-07-02 Mirco Müller * Added suggested optimization from MP-comment caching a map and string to avoid superfluous dereferencing. (bca90c108) * Extended qmltest for Launcher to verify the implicit alerting when count and countVisible of an item change. (8d68a0ee3) 2015-07-02 Lukáš Tinkl * calculate the arrow's offset correctly (32ba487a8) 2015-07-02 Mirco Müller * Ensure a runtime-change to an item's countVisible and count (with countVisible true) implicitly triggers also an alert. (eb1bd3b4e) 2015-07-02 Lukáš Tinkl * restore light menu color, arrow pointing always towards the launcher (b23bf6916) 2015-07-02 Mirco Müller * Reverted accidentally removed objectName for the progress-overlay. (c4c065711) 2015-07-02 Andrea Cimitan * Use different method for checking if source is set (50b2950a3) 2015-07-02 Mirco Müller * No longer do we need the bump in libunity-api-dev dependency. (7043dc1ca) 2015-07-01 Lukáš Tinkl * display list of prefered countries on top, then the rest (883936687) * try to detect and preselect the language (1b9953960) 2015-07-01 Josh Arenson * Change greeter install directory (c743c6a52) 2015-07-01 Lukáš Tinkl * correct font weight on the Back/Next buttons (f6e7e4f2f) 2015-07-01 Michael Zanetti * ignore the one mouse we detect on arale for some reason (1cf027f3d) 2015-07-01 Josh Arenson * [ Albert Astals Cid ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests [ Josh Arenson ]; Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572. Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572) (c95311662) 2015-07-01 Andrea Cimitan * More changes for review (f80142a94) * Renames (fa42def9e) * Subtitle is optional (11d074bac) 2015-07-01 Lukáš Tinkl * update to the newest assets (326f818a0) * line up the visuals, no checkboxes (a8442cce0) 2015-07-01 Mirco Müller * Fixed testLauncherModelAS. (e7083980f) 2015-07-01 Nick Dedekind * fixed Notification undefined model warning (e1060d2ed) * Fixed LauncherPanel warnings (a5c2be5fd) * merged fix media player warning (eacc38849) 2015-07-01 Mirco Müller * Merged with trunk. (c41f0ba23) 2015-07-01 Nick Dedekind * fixed 'volume of undefined' warning (fd04f35d9) * fixed indicatorVisible binding loop warning (6ce3e9c19) 2015-07-01 Lukáš Tinkl * register the screensaver wrappers too (b21134797) 2015-07-01 Marcus Tomlinson * Handle TERM, HUP, and INT signals in unity-scope-tool (01c2a4222) 2015-07-01 Mirco Müller * Fixed launcher-model unit-test. (53b19b999) 2015-07-01 Albert Astals Cid * check the expanded property of the item (f43f9537f) 2015-06-30 Josh Arenson * Fix whitespace (6e7ffdf01) * Disable tutorial in greeter mode (fe29c483f) * Disable wizard in greeter mode (aa5b39925) * Refactor shellMode to shell.mode (af1c38c91) 2015-06-30 Lukáš Tinkl * line up with the visuals (5f66d6c81) * line up with the spec (7020045c3) * don't display the button bar on the last page (c3517231b) 2015-06-30 Josh Arenson * Merge fixOrientedShellTests (e38dc8d6f) * :[ Albert Astals Cid ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests [ Josh Arenson ]; Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572. Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572) (9be7a153f) * Work arround an issue that prevents greeter from being fullscreen (9c2062646) 2015-06-30 Lukáš Tinkl * no arrow on the buttons (232094c56) * no back button on the Sim page (373b4a79c) * enable richtext (85623e271) * line up with the visuals, provide a custom title-less page (b8f6fb197) 2015-06-30 Albert Astals Cid * eol (91f3cdc74) * Initial playlist support (596942868) 2015-06-30 Josh Arenson * Fix whitespace mess (7f8c0cf1b) * Add lightdm-gobject as a build dep (15a78bf2b) 2015-06-30 Lukáš Tinkl * remove commented out debug (3488ebbff) 2015-06-30 Andrea Cimitan * Add social comment (395b27e46) 2015-06-30 Michael Zanetti * added a TODO (fef6bb149) * better array initialisation (53feaea3c) 2015-06-30 Albert Astals Cid * Build++ (83e26f8ad) * Merge unity8 (f89409c62) * Merge unity8 (68ddbaf33) 2015-06-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f8d5c563f) 2015-06-30 Lukáš Tinkl * fix CI (6387d7b01) 2015-06-29 Lukáš Tinkl * fix failing username and real name tests (d235a8758) 2015-06-29 Mirco Müller * Reverted the need for a newer Unity-API, since we don't want to expose setProgress() that way. (71d7660bb) * Fixed issues raised in MP-comments. (6a3b8864a) 2015-06-29 Lukáš Tinkl * address minor issues in MP 262575 (5d2644380) * [ Albert Astals Cid ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests [ Josh Arenson ]; Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572. Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572) (4b0ca660b) * readonly prop (30deba0a2) 2015-06-29 handsome_feng * remove the qml test (5a2d900a7) * remove the useless objectName (5c1365698) * update (2c3887e3c) * modify the test (d6985623f) * merge trunk (f3817923a) 2015-06-26 Lukáš Tinkl * sync the copyright dates and QtQuick versions (ac9a64ed9) * port the reporting page (29f1d6c3f) 2015-06-25 Lukáš Tinkl * don't display the section labels, looks weird (12ff885e8) * some timezone delegate tweaks (3dedc6843) * tweak the Location/Terms visuals and text (18d2cfdf2) * reorder the pages to the current workflow (9de76cadd) 2015-06-25 Daniel d'Andrada * Also fix tst_SurfaceContainer (3636430ba) 2015-06-25 Lukáš Tinkl * implement the in-place Restart dialog when SIM gets inserted (25811f3af) * implement Country page (e478b3ad9) 2015-06-25 Andrea Cimitan * Using TextArea instead (7688045c5) 2015-06-25 Mirco Müller * Extended LauncherModel unit-test, ensured that dataChanged signal is triggered. (33c14b374) 2015-06-25 handsome_feng * add a qml test (2adb51cd7) 2015-06-25 Nick Dedekind * reverted to sdk 1.2 (2f6465ce8) 2015-06-25 handsome_feng * can't click on the dash while dragging a launcher icon (497c2929b) 2015-06-24 Lukáš Tinkl * implement logic for the Language page (8131d9cf3) * [ Albert Astals Cid ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests [ Josh Arenson ]; Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572. Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572. No-change rebuild against Qt 5.4.2. [ Michał Sawicz . Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. (aae8d2d8f) * address MP issues (c0dba63ad) 2015-06-24 Michael Zanetti * fix tests after merging trunk (e4b1d1e49) * merge trunk (42d4f768b) 2015-06-24 Mirco Müller * Make sure to require the correct launcher API-version. (edc2583fa) * Make sure to require the correct launcher API-version. (43224506c) 2015-06-24 Richard Huddie * Fix flake8 errors, remove imports using emulator and rename emulator tests to helper tests. (f4e4fcc78) 2015-06-24 Mirco Müller * Fixed stupid sign-typo. (aacbe6ed1) * Making a change to count and countEmblemVisible via LauncherModel implicitly sets the alert-state on the affected item... extended LauncherModel's unit-test accordingly. (2ab85743c) 2015-06-24 Richard Huddie * Fix unlock unity in fake sensors test and remove duplicated test. (6dea74ccc) 2015-06-23 Michael Zanetti * drop old install (015ca6e35) * add copyright header (3f6025bac) * fix up mocks and add tests (d4f11db35) * make UnityInputInfo a singleton (a54da5054) 2015-06-23 Mirco Müller * Had to bump the required API-version of the launcher-interface. (2a727c40e) * Reverted accidental change to progress-bar calculation. (024d83c24) 2015-06-23 Albert Astals Cid * PreviewExpandable should be not expanded on startup (9c81d8be3) 2015-06-23 Michael Zanetti * add a mock InputInfo plugin - not loading yet (7b3f46eb1) * merge trunk (95d4294b4) 2015-06-23 Daniel d'Andrada * Fix tst_Tutorial.qml (15d3b84b6) 2015-06-23 Mirco Müller * Make sure to require the updated API of the launcher-interface. (344655737) 2015-06-23 Michael Zanetti * move inputInfo to components (219921243) * merge trunk (3f5b2a33e) 2015-06-23 Mirco Müller * Addressed all issues from MP-comments... merged reveal- and hiding-animation into one and limited wiggle to one loop only based upon feedback from Design... this also eliminated the need of a special peeking-qmltest. (fdc265fdb) 2015-06-23 Nick Dedekind * merged with trunk (c4f030a43) 2015-06-23 Daniel d'Andrada * Merge trunk (b37a35cee) * Merge trunk (a6c7a6f6f) * Fix tst_OrientedShell (bc9308613) 2015-06-23 Richard Huddie * Update rotation tests to use new helpers. (f46a3c43a) * Merged with trunk. (291383912) 2015-06-23 Albert Astals Cid * qmluitests changed name (171037301) * Merge lp:unity8 (28836cbab) 2015-06-23 handsome_feng * update (9739b578d) * Adjust some clear() statements position (de96dcb7a) * Adjust some clear() statements position (202debe57) 2015-06-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (beb716853) 2015-06-23 Lukáš Tinkl * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests.; Support fallback images for dash card and preview widgets (LP: #1324142); Resync trunk. [ Daniel d'Andrada ]; Fix Shell tests; Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ]; respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ] * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ]; Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ]; Forbid closing apps during the edge gesture. (LP: #1445572); Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ]; Forbid closing apps during the edge gesture. (LP: #1445572) (5c2db7cd6) * remove unused var (f6e153fb3) 2015-06-23 handsome_feng * update (20c93fa03) 2015-06-23 Lukáš Tinkl * display a busy indicator when the tz list is being loaded (ece88254d) 2015-06-22 Lukáš Tinkl * sort by City by default (fe7495ce7) * make the list selectable (060b5edf6) 2015-06-22 CI Train Bot * Resync trunk. (b03a9da9e) 2015-06-22 Lukáš Tinkl * respect 12/24 time formats (347a08655) * fix QML warnings (a93adb050) * add timezone selection page (3d7025ad2) 2015-06-22 Michael Zanetti * merge prereq inputinfo-plugin (94c8b2576) 2015-06-22 Richard Huddie * Merged with trunk. (d1b74f7e0) 2015-06-22 Lukáš Tinkl * add a sample timezonemodel (1332e4cf4) 2015-06-22 Michael Zanetti * this shouldn't have been there (362d8319b) * merge trunk (5a8c0e8a1) * merge trunk (3d09fe242) * drop debug print (28cd643b8) 2015-06-22 Mirco Müller * Some visual tweaks for the tryLauncher make-target. (7ee46ed91) * Got rid of some debugging-leftover. (7e38c6961) 2015-06-22 Albert Astals Cid * Merge lp:~unity-team/unity8/refactor-qmltests (4379f2a86) 2015-06-22 Lukáš Tinkl * don't lose the HERE.com context (b3cb6c14b) 2015-06-22 Albert Astals Cid * Merge unity8 (a0df9f689) * Merge unity8 (400c1598f) * fix comment (2fff51bb6) * Set width of title label when inside the title row (6a3391712) 2015-06-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c4c7e43d3) 2015-06-19 Daniel d'Andrada * Stages now control the "requestedState" property of applications (2dcd141eb) 2015-06-19 Nick Dedekind * better lazy image scaling (4be5ae164) 2015-06-19 Mirco Müller * Require newer launcher-api and update use of newer api. (a9952b760) 2015-06-19 Nick Dedekind * better handling of sizing (83db16eca) 2015-06-19 Mirco Müller * Added utilization of new LauncherModel::setProgress() API, corresponding tests and visual tweaks to a launcher-item's progress-overlay. (f3ce9db9a) 2015-06-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fa4989726) 2015-06-19 handsome_feng * Added touch state on navigation (24d41f3aa) 2015-06-18 CI Train Bot * Releasing 8.10+15.10.20150618-0ubuntu1 (b2248ed15) 2015-06-18 Daniel d'Andrada * Fix Shell tests Approved by: Michael Zanetti (2573d23d1) 2015-06-18 Michael Zanetti * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. (78173f00e) 2015-06-18 Lukáš Tinkl * respect target window's devicePixelRatio in MouseTouchAdaptor Approved by: Michael Zanetti, PS Jenkins bot (7f5f269b4) 2015-06-18 handsome_feng * Removed the horizonal rule on pin unlock screen. Fixes: #1368798 Approved by: Michael Zanetti (7ff186fcd) * Forbid closing apps during the edge gesture. Fixes: #1445572 Approved by: Michael Zanetti (a8b6658a6) 2015-06-18 Josh Arenson * Refactor greeter emulator to unlock the greeter via dbus Approved by: Leo Arias (afa51cbf7) 2015-06-18 Albert Astals Cid * Support fallback images for dash card and preview widgets Fixes: #1324142 Approved by: Michi Henning, Andrea Cimitan (2c033d47c) 2015-06-18 Michael Zanetti * merge with trunk (d8a24e9fd) 2015-06-18 Lukáš Tinkl * fixup last commit (67f2e0000) * register the screensaver iface also on the compat /ScreenSaver path (1b4804e9e) 2015-06-18 Daniel d'Andrada * Fix Shell tests (847c2c618) 2015-06-18 CI Train Bot * Resync trunk. (bba32437f) 2015-06-18 Daniel d'Andrada * Merge lp:~josharenson/unity8/qa_helpers (8a3b034c1) 2015-06-18 Lukáš Tinkl * implement SimulateUserActivity() (11c5dd386) * implement GetSessionIdleTime() (a0f149100) 2015-06-18 Mirco Müller * Needed to update the greeter-related plugin to reflect the tweak to LauncherModel::alert() (b3b0c24bc) * No override identifier for LauncherModel::alert(). (c292f4bc4) 2015-06-18 Lukáš Tinkl * make a quick dumb test for session inactivity time (34f3f3513) 2015-06-18 Mirco Müller * Merged with trunk and solved conflicts. (1378e092d) 2015-06-18 Lukáš Tinkl * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. (6b399134a) 2015-06-18 Mirco Müller * Better test starting and stopping of alert/wiggle animation. (e46dc1dc5) * Forgot to commit the qmltests for hiding and implicit-hiding of a peeking app-icon. (edf3c4bdf) * Added updated qmltests for the new alert-state/wiggle feature. (f38cc38c8) 2015-06-18 Lukáš Tinkl * don't use deprecated Theme (d72bbee08) * fix typo (ba1ef5b91) 2015-06-18 Mirco Müller * Make sure the clip-property of launcherListViewItem is correctly reset after the peeking icon moved back into the launcher's boundaries. (48533362f) 2015-06-18 Daniel d'Andrada * Fix other usages of the deprecated Theme context var (c42e54eb9) * Move everything to Ubuntu.Components 1.3 (88f44d4b3) 2015-06-18 Mirco Müller * Fix some peeking edge-cases where more than one wiggling icon peeks out, when the launcher is moved. (7cc6e34ea) 2015-06-18 Daniel d'Andrada * s/Theme.palette/theme.palette (586c3485f) 2015-06-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2bd3a83d0) 2015-06-18 Lukáš Tinkl * wrap org.freedesktop.ScreenSaver service (5db553ac9) 2015-06-17 Josh Arenson * Resolve bzr mess (088ce24ab) * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) (92814e1cd) * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) (33319d585) * Add desktop files and ability to dymanicaly load lightdm (356dba810) 2015-06-17 Mirco Müller * Always trigger the implicit unfolding of the launcher to move the icon in view icon which had its alert-state set. (bab7fe722) * Make the wiggle-rotation happen center-aligned with the icon... even if in folded state. (c2934658a) 2015-06-17 Daniel d'Andrada * Update tst_Tutorial.qml due to shellRotation changes (ff623b9b3) 2015-06-17 Michael Zanetti * fix bad merge (e610a593f) * merge trunk (70eaac03b) * merge trunk (c38f4fee4) 2015-06-17 Lukáš Tinkl * wrap org.gnome.ScreenSaver (7560621d0) * add apidox (8e701e473) 2015-06-16 Josh Arenson * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) (2aa2abc27) 2015-06-16 Daniel d'Andrada * Disable binding when it's no longer needed (f086fd805) * Merge lp:~mterry/unity8/tutorial-launcher-gap (ed9400286) 2015-06-16 Josh Arenson * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) [ Albert Astals Cid ]; Add overrides to override functions; Implement "rating-edit" preview widget (LP: #1318144); Make the DashContent::test_mainNavigation test more stable (LP: #1450809); Use art height as implicitHeight when the header is overlayed and there's no summary [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Introducing FloatingFlickable; Make Ubuntu.Gestures components install TouchRegistry by themselves [ Michael Terry ]; Fix a possible crash in our PAM threading code. (LP: #1425362) (LP: #1425362); Fix the lockscreen becoming unresponsive after testing an app on the device from QtCreator. (LP: #1435364) [ Nick Dedekind ]; Fixed desktop stage app focus.; Fixed issue in laggy indicator autpilot tests (LP: #1446846) [ Albert Astals Cid ]; Workarounds for concierge mode. [ CI Train Bot ]; New rebuild forced.; Resync trunk. (57b579066) 2015-06-16 Lukáš Tinkl * implement Lock/Unlock and the respective signals (ba9d27847) 2015-06-16 CI Train Bot * Releasing 8.10+15.10.20150616.1-0ubuntu1 (88ed47ebe) 2015-06-16 Florian Boucault * Notifications: shaped icon was stretching the icon instead of respecting its aspect ratio and filling the whole shape. Fixes: #1450229 Approved by: Mirco Müller, Michael Zanetti (00fb357d4) 2015-06-16 Josh Arenson * Implement bare-bones shellMode=greeter and shellMode=shell (0eb7df9e7) 2015-06-16 Albert Astals Cid * Take into account the extra margin on top when calculating the display margin Approved by: Michael Zanetti (2da8a8ff4) * Fix regression introduced by the concierge change (086eb86fc) * Do not use template in generated card creator code (3af8283d6) 2015-06-16 Michael Zanetti * add info on how to run a single function in make test Approved by: Albert Astals Cid, Daniel d'Andrada (43fb615cf) 2015-06-16 Leonardo Arias Fonseca * On the autopilot helpers, swipe if the item to open from the dash is not visible. unity8-autopilot dependencies now require ubuntu-ui-toolkit-autopilot (>= 1.2.1485+15.04.20150417.1-0ubuntu1) Approved by: Michał Sawicz, PS Jenkins bot (e552fdc53) 2015-06-16 Richard Huddie * Slow down the speed of autopilot helpers used to swipe to a different scope to improve the reliability. Fixes: #1457047, #1461059 Approved by: Albert Astals Cid, Leo Arias (b0503a52b) 2015-06-16 Albert Astals Cid * Bind running to the proper object.visible (5a7d79477) * workaround oxide 1.7 issue (19b061579) 2015-06-16 Lukáš Tinkl * add apidox (649291d34) 2015-06-16 Mirco Müller * As per design-request an alert-state change should animate contentY-change triggered by positionViewAtIndex() method. (c93a6f716) 2015-06-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (52bbdce93) 2015-06-16 Mirco Müller * Don't trigger the reveal-animation of a peeking icon, if the launcher is visible. (530b16946) 2015-06-15 Josh Arenson * Merge greeter_mode (f1b16fde0) 2015-06-16 Lukáš Tinkl * don't lock for real in the test, oops (d8fd12945) 2015-06-15 Josh Arenson * No-change rebuild against Qt 5.4.2. [ Michał Sawicz ]; Implement full-shell rotation (LP: #1210199) [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada . Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ]; Implemented autopilot-test and fake-sensors for shell-rotation. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Renato Araujo Oliveira Filho ]; Set the device led color to green. (LP: #1450894) [ Albert Astals Cid ]; Add overrides to override functions; Implement "rating-edit" preview widget (LP: #1318144); Make the DashContent::test_mainNavigation test more stable (LP: #1450809); Use art height as implicitHeight when the header is overlayed and there's no summary [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Introducing FloatingFlickable; Make Ubuntu.Gestures components install TouchRegistry by themselves [ Michael Terry ]; Fix a possible crash in our PAM threading code. (LP: #1425362) (LP: #1425362); Fix the lockscreen becoming unresponsive after testing an app on the device from QtCreator. (LP: #1435364) [ Nick Dedekind ]; Fixed desktop stage app focus.; Fixed issue in laggy indicator autpilot tests (LP: #1446846) [ Albert Astals Cid ]; Workarounds for concierge mode. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Albert Astals Cid ]; Make runtests fake a test error if make fails; Make the test more stable; Use dbus-test-runner instead of dbus-launch [ Daniel d'Andrada . DirectionalDragArea: improvements & API grooming (LP: #1417920); Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) [ Josh Arenson . Remove panelHeight property as it is unused. [ Leo Arias ] * Initial clean up of the autopilot tests set up. Removed the touch device from the test case. Moved the restart of unity to a fixture. Removed the unused DragMixin. Updated the setUpClass to use process_helpers. Removed the workaround for bug #1238417, already fixed. Use the toolkit helper to set the testability environment variable. Fixed the indicators base class that was restarting unity twice. (LP: #1238417, #1447206); Use the base class from the toolkit in autopilot tests. [ Michael Zanetti ]; emit application-stop when we're going down (LP: #1326513) [ Michał Sawicz ]; UNITY_SCOPES_LIST is no more [ handsome_feng<445865575@qq.com> ]; When click the favorite scope in Dash Manager , it just return to the corresponding scope page. (LP: #1447056) [ Albert Astals Cid ]; Compile with Qt 5.5 (LP: #1437238. Different way of top aligning labels when the other one in the row is multiline (LP: #1442085); make pot_file [ Andrea Cimitan ]; Set sourceSize for DashBackground.qml Image [ CI Train Bot ]; New rebuild forced.; Resync trunk. added: po/sk.po [ Daniel d'Andrada ]; Move handling of command line options to a separate clas. Refactor tst_PhysicalKeysMapper.qml [ Leo Arias ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Leonardo Arias Fonseca ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Michael Zanetti ]; Make sure dnd mode is ended properly when drag gesture is cancelled (LP: #1444949) [ Michał Sawicz ]; Fix flake8 warnings (LP: #1444170. Move mock indicator service to unity8-fake-env, as it's a binary- dependent package. [ Nick Dedekind ]; Use asynchronous dbus requests for property updates. (LP: #1436982) (d2bbca6fd) 2015-06-16 Lukáš Tinkl * add login1 session props, user/real/hostname, prompt/lock (bbaa2debb) 2015-06-15 Timo Jyrinki * No-change rebuild against Qt 5.4.2. (b17bd02cf) 2015-06-15 Nick Dedekind * merged trunk (aa52a65a1) 2015-06-15 Mirco Müller * Got rid of the fakeAlerting-item... refactored reveal-animation accordingly... hide-animation still needs to be addressed. (3e51c5183) 2015-06-15 CI Train Bot * Resync trunk. (73102bfd4) 2015-06-15 Lukáš Tinkl * get the datetime format string from the correct domain (913ea8c16) 2015-06-15 Michael Zanetti * temporary hide some workspace elements (9744ffac3) * span background across whole screen (c7ade0d46) 2015-06-13 Lukáš Tinkl * fix PO files extraction (5135145b8) 2015-06-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (164df47c1) 2015-06-12 CI Train Bot * Releasing 8.10+15.10.20150612-0ubuntu1 (cb01ed688) 2015-06-12 Mirco Müller * Implemented autopilot-test and fake-sensors for shell-rotation. Approved by: Leo Arias, Michael Zanetti (8412a2183) 2015-06-12 Michael Zanetti * Shell rotation (8390d51f3) 2015-06-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3ea448a62) 2015-06-12 Lukáš Tinkl * switch to async DBUS calls (f5365cc34) 2015-06-11 Michael Zanetti * delay showing of the workspaces bar too (8c679e8db) * drop unneeded old code (b1adcdbe3) * improve dropshadow in the stack (e13e7870e) * increase font size for current selected (22b5fadda) 2015-06-10 Mirco Müller * Don't change/set alert-state, if the app is focused. (64ab5e294) * Don't change/set alert-state, if the app is focused. (d087e854f) 2015-06-10 Lukáš Tinkl * add a test for RMB menu over launcher items (fe2e279a5) 2015-06-10 Mirco Müller * Remove debugging output... make count-emblem part of fakeAlertItem... emit dataChanged-signal upon change of alert-state. (9e6c268a6) 2015-06-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (63a4dd3e1) 2015-06-10 handsome_feng * Modified the name of testing function (75534e198) 2015-06-09 Lukáš Tinkl * revert to the old design of popup menus (00c431048) * open the context menu on right click (fba0334dd) * launcher parity: close apps from quicklist (384807552) * simplify tests for "undefined" (23baf1c13) * prepare to test the running case (23320f1fb) * add dtor (5774a86ec) * add dtor (15547d556) * pass QList by const reference (af9b898ce) * some const fixes (c2140b7c6) 2015-06-09 Mirco Müller * More debugging of the missing LauncherItem's state-change being recognized by the QML-side. (af18ef9e5) 2015-06-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c684ef0a5) 2015-06-09 handsome_feng * Don't expand indicators when tap to return to call (48ce236be) 2015-06-08 Josh Arenson * Fix whitespace (60a7b41cb) 2015-06-08 Nick Dedekind * more headers (4bb3f01a7) * fixed QtMultimedia compatibility errors in notifications (32f5a8ad2) * added copywrite. removed unused code. error handling (5ed1c3601) 2015-06-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ccfe2166d) 2015-06-07 Lukáš Tinkl * respect target window's devicePixelRatio (a2958f04b) 2015-06-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d667b2d57) 2015-06-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d08612b45) 2015-06-05 Josh Arenson * Merge from upstream (4a4dc81fe) * Small style changes (b8c4f2733) * Add barebones FullLightDM plugin (3c9cce60b) * Fix qmltypes filename mess (147cffa82) * Reenable tests (d188ccd4d) * Refactor to be much cleaner / lightweight (70b23fb9d) 2015-06-05 Mirco Müller * Trying to make the launcher's qmltest trigger the alerting/wobble-animation... (9b59ecbb2) 2015-06-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d983bb7e5) 2015-06-04 Josh Arenson * [CHECKPOINT COMMIT] Removed most code in favor of direct access via properties (335cb5fe6) * undo trickery (5068e75e5) * bzr trickery (a25c524d7) 2015-06-04 CI Train Bot * Resync trunk. (5a263e284) 2015-06-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ce2bdaa89) 2015-06-03 CI Train Bot * Releasing 8.02+15.10.20150603.1-0ubuntu1 (a5c489903) 2015-06-03 Renato Araujo Oliveira Filho * Set the device led color to green. Fixes: #1450894 Approved by: Michael Zanetti (28fde03ed) 2015-06-03 Josh Arenson * Refactor qmlui tests (454d3e382) * Fix qmltypes file (c117e2634) 2015-06-03 Renato Araujo Oliveira Filho * Used "darkgreen" color insted of "UbuntuColors.green". Looks better on the led. (257195a09) * Set the device led color to green. (96cbd2a14) 2015-06-03 Michael Zanetti * make longpress open on the audio button open the preview (23913a072) * hide audio progress bar when it's not the currently playing one (453f19e34) * make highlight follow mouse hover (ed07c5a00) * drop debug print (28f86557e) * more fixes to the close button (3b7d18557) * fix close button and focusing for real (d5a493ff2) * hide items when they're not needed (4872f9a47) * fix icon fade out animation (9a97fdc83) * fix binding loop when starting applications (789313f12) * fix close button offset in middle section (dc4429922) * fix spread initial positioning (105dda6de) * revert change for progress bar margins again. seems I missed some other change when testing/fixing that (f2f445249) * quickPreviewType -> quick-preview-type (2b56da294) 2015-06-03 Mirco Müller * Tsts... no absolute values please. (78e952dc2) * Make sure the fakeAlertingItem does not move too far to the left, when the user pulls out the launcher from the side. (d1f43ab19) 2015-06-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1bddb0405) 2015-06-02 Josh Arenson * Find home dirctory regardless of platform (b214ba0bf) * Reenable tests (3738b3c4c) * [CHECKPOINT COMMIT] Refactor works but needs cleanup (420e6873f) 2015-06-02 Nick Dedekind * update components version (126cb5514) 2015-06-02 Mirco Müller * Make sure the fakeAlertingItem is made invisible once the hide-animation is completed. (0c84e8155) * Updated mocked launchermodel/item with new alerting-API... made peeking-wobble almost seamlessly merge with dragging the launcher out... some visual quirks still remain. (9b49c7f76) 2015-06-02 Michael Zanetti * hook it up to tst_PreviewWidgetFactory (d971f38b8) 2015-06-01 Josh Arenson * Refactor getUser to getUsername for return value clarification (9eef0f3af) 2015-06-01 Michael Zanetti * simplify further (2a31fe7a8) * simplify anchoring (c5eda1ff5) * fix issues from review (e8c88480e) * rename the widget property from "comment" to "comment-input" (b4b85e72a) * update doc (b6110c285) * added PreviewCommentInput, a single line input item for comments/replies (5303d17a8) 2015-05-29 Josh Arenson * Fix typo in include guard (b8d9d68bd) 2015-05-29 Michael Zanetti * fix margins around progress bar (f8c788c13) * bump version dependencies (268461e67) 2015-05-28 Josh Arenson * Add return statement to function that was returning undefined (e31eb6f69) 2015-05-28 handsome_feng * Adjust the spacing to units.gu(4) (07788b09e) 2015-05-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (60639b5cc) 2015-05-28 handsome_feng * Restore the default behavior of left swipe (8cfb197ac) 2015-05-27 Leo Arias * Merged with trunk. (3db2afe13) * Removed the file resulting from a wrong merge. (232cec337) 2015-05-27 Albert Astals Cid * Merge oxide_regression_workaround (b53e3def1) * Merge oxide_regression_workaround (a34ff2cb8) * Merge oxide_regression_workaround (25df5ebc7) * Anchor running to the proper object.visible (c1fa7f457) 2015-05-27 Michael Zanetti * remove surface string for demo purposes (0222651cc) * drop obsolete file from merge (a38e61faf) * fix focusing issues (2d75060c2) * drop spreadflickable. It has been replaced by FloatingFlickable (3cea423c0) 2015-05-27 Nick Dedekind * re-remove qtmultimedia req! (cc17f86a1) 2015-05-27 Albert Astals Cid * workaround oxide 1.7 issue (46a237dc5) 2015-05-27 Michael Zanetti * merge trunk, fix reverting of connectivity-qt workaround (fb19b3635) * revert workaround for broken connectivity-qt package again (df65b2e63) 2015-05-27 Nick Dedekind * reverted req removal (63f3b6967) * removed QtMultimedia req (22fee14c0) * fixed testing (02fa86a6c) 2015-05-27 handsome_feng * use a more descriptive object name (e6d68675a) 2015-05-26 Nick Dedekind * more preview fixes (0c6a895e5) 2015-05-26 Albert Astals Cid * Fix test (b61cb5136) 2015-05-26 handsome_feng * Use a MouseArea to eat touch events while edge gesture, because the second touch point will cause the value of contentX of the spreadView unpredictable (56f8af74f) * Use a MouseArea to eat touch events while edge gesture, because the second touch point will cause the valuse of contendX of the spreadView unpredictable (459eec45a) 2015-05-26 Albert Astals Cid * Make sure the flickable is interactive before trying to move it (1d2c86d6a) * update state only when the user is actively dragging himself (87d5c6f24) 2015-05-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d54866547) 2015-05-22 Michael Zanetti * fix close button getting stuck (0c0f9d8c5) 2015-05-22 Josh Arenson * Refactor plugin test (7c93f2a75) 2015-05-22 Michael Zanetti * fix warning (f14ce2843) * don't allow autorepeat to wrap around the spread (89ee18d83) * adjust sizings as per design spec, add a label for the current highlighted window (9636bc021) 2015-05-22 Leonardo Arias Fonseca * Merged with trunk. (902a14155) 2015-05-22 Josh Arenson * Refactor mocks to use IntegratedLightDM name (bbd96235f) * Fix whitespace (9bec3c095) * Add license (553bad35d) * Style guideline changes (04deeb9c2) 2015-05-22 Michael Zanetti * disable the flickable when not in spread (912d04d5f) 2015-05-22 Josh Arenson * Hide internal functionality of lightdmapi (1b8367a2d) * Actually return user from getUser (7f6f75ee8) * Add more checks for loader validity (9dd3aae9d) * Add new files (d11e2c744) * [BROKEN]; Refactor LightDM plugin to IntegratedLightDM (8ddaa799d) 2015-05-22 Albert Astals Cid * use installed path and not builddir (aac7bac05) 2015-05-22 Michael Zanetti * fix rotation animation of the rightmost item in the stack (3561ee487) 2015-05-22 Mirco Müller * First go at slide-out animation for alerting/wobble of a launcher-icon. (68bf3b58f) 2015-05-22 Leonardo Arias Fonseca * Merged with trunk. (69a87ec74) 2015-05-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a7f051fd5) 2015-05-22 handsome_feng * long swipe goes to apps scope only when the focused app is not unity8-dash (2fb6eeef3) 2015-05-21 Nick Dedekind * Media Player in dash (148f507a6) 2015-05-21 Albert Astals Cid * Make sure ${CMAKE_CURRENT_BINARY_DIR} exists (afcfe7a60) * Fix test (94cb4abb8) 2015-05-21 Daniel d'Andrada * Fix build regarding unity-api and add screenshot provider to the mock Utils plugin (cbab3c22e) 2015-05-21 Josh Arenson * Weird fu (0b3dca022) * Remove unused methods (9ec128426) * Restore location file (6e1891e91) * Refactor and rebase (35651d5eb) 2015-05-21 Daniel d'Andrada * Merge trunk (79c9074c1) 2015-05-21 Josh Arenson * Move emulator code into module (b3b7b00ea) 2015-05-21 Albert Astals Cid * Make test pass under chroot+adt-run (6e12f1b18) 2015-05-21 Josh Arenson * Make settings wizard test smarter when clicking through the wifi page (da14b6456) 2015-05-21 Albert Astals Cid * Merge refactor-qmltests (b15004a76) * Merge unity8 (7696f5453) * Merge unity8 (fe282885c) 2015-05-21 Josh Arenson * [ Albert Astals Cid ]; Add overrides to override function. Implement "rating-edit" preview widget (LP: #1318144. Make the DashContent::test_mainNavigation test more stable (LP: #1450809); Use art height as implicitHeight when the header is overlayed and there's no summary [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Daniel d'Andrada ]; Introducing FloatingFlickable; Make Ubuntu.Gestures components install TouchRegistry by themselves [ Michael Terry ]; Fix a possible crash in our PAM threading code. (LP: #1425362) (LP: #1425362); Fix the lockscreen becoming unresponsive after testing an app on the device from QtCreator. (LP: #1435364) [ Nick Dedekind ]; Fixed desktop stage app focus.; Fixed issue in laggy indicator autpilot tests (LP: #1446846) (db56c3fef) 2015-05-21 CI Train Bot * Resync trunk. (f702be0e4) 2015-05-20 Mirco Müller * Added code for wiggle-animation of launcher-icons... not yet hooked up to any backend so a notify-message would be trigger it. (b5cf1003b) 2015-05-20 Josh Arenson * Refactor helper method (23c918518) * Small syntax change (38cc181e8) * Fix python syntax error (04b81c717) * Handle Location page if it is present in the Setup Wizard (78dd65f9d) 2015-05-20 Mirco Müller * Update count-emblem position to bottom right, update progress-bar visual to latest design. (029bac766) 2015-05-20 Josh Arenson * Add LocationPage to settings_wizard emulator (e4d57343b) 2015-05-20 Albert Astals Cid * Style fixes (2543e0801) 2015-05-20 Josh Arenson * Merge upstream (499c87552) 2015-05-20 Leonardo Arias Fonseca * Merged with trunk. (f41fadf7c) 2015-05-20 Josh Arenson * Add license (0f70992f8) 2015-05-20 handsome_feng * Changed the behavior while turn to the first scope and added a test (91b67613a) 2015-05-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e96d05acb) 2015-05-19 Richard Huddie * Slow down speed of swipe used to change scopes, to improve reliability. (fdc2d94f6) 2015-05-19 Albert Astals Cid * This should not be changed (a456d80ac) * Merge refactor-qmltests (c8b50e3ec) 2015-05-19 Michael Zanetti * drop :native to be able to build in ppa (3dcaf5e90) 2015-05-19 Albert Astals Cid * We never need to ld library path the qmenumodel (27a967e80) * Merge lp:unity8 (a7041b5dd) 2015-05-19 Josh Arenson * Add license (928c61537) * Remove debug code (7d214a94c) * Re-enable tests (8a93021f7) 2015-05-19 Michael Zanetti * add a tiny bit of scaling in the center (a67d07bc3) 2015-05-19 Josh Arenson * Allow setings wizard test to finish regardless of phone state (1277960cb) * [JANK STATE] Add ofono_helper.py (5bfbcf6ed) 2015-05-19 Michael Zanetti * [ Albert Astals Cid ]; Workarounds for concierge mode. [ CI Train Bot ]; New rebuild forced.; Resync trunk. (1d0f32ab8) 2015-05-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0ea6e8479) 2015-05-19 handsome_feng * Use a item replace the ThinDivider (5d043de97) 2015-05-18 CI Train Bot * Releasing 8.02+15.10.20150518.1-0ubuntu1 (bce56cbff) 2015-05-18 Albert Astals Cid * Make the DashContent::test_mainNavigation test more stable Fixes: #1450809 Approved by: Michael Zanetti (0da2368e2) * Use art height as implicitHeight when the header is overlayed and there's no summary Approved by: Michael Zanetti (3e0c31f6e) * Implement "rating-edit" preview widget Fixes: #1318144 Approved by: Andrea Cimitan, Pawel Stolowski (af49443a8) 2015-05-18 Daniel d'Andrada * Make Ubuntu.Gestures components install TouchRegistry by themselves (12fdb5fc3) 2015-05-18 Nick Dedekind * Fixed issue in laggy indicator autpilot tests Fixes: #1446846 Approved by: Albert Astals Cid (ffbe66d90) 2015-05-18 Albert Astals Cid * Add overrides to override functions (242ea27c2) 2015-05-18 Michael Terry * Fix the lockscreen becoming unresponsive after testing an app on the device from QtCreator. (d9b4c0f15) * Fix a possible crash in our PAM threading code. (LP: #1425362) (7b95d892b) 2015-05-18 Daniel d'Andrada * Introducing FloatingFlickable Approved by: Michael Zanetti (c52616d2c) 2015-05-18 Nick Dedekind * Fixed desktop stage app focus. Approved by: Daniel d'Andrada (dce2b426d) 2015-05-18 Michael Zanetti * merge with shellRotation (e01fa7841) 2015-05-19 Albert Astals Cid * Add a card creator test for the audio card (02bf6c579) 2015-05-18 Michael Zanetti * rebase on shellRotation (e835b8f90) 2015-05-18 Albert Astals Cid * clean oauth query items from url comparisons (6800105bc) 2015-05-18 Michael Zanetti * move it a bit (7e0e3ce62) * [ Albert Astals Cid ]; Workarounds for concierge mode. [ CI Train Bot ]; New rebuild forced.; Resync trunk. [ Albert Astals Cid ]; Make runtests fake a test error if make fails; Make the test more stable; Use dbus-test-runner instead of dbus-launch [ Daniel d'Andrada . DirectionalDragArea: improvements & API grooming (LP: #1417920); Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) [ Josh Arenson . Remove panelHeight property as it is unused. [ Leo Arias ] * Initial clean up of the autopilot tests set up. Removed the touch device from the test case. Moved the restart of unity to a fixture. Removed the unused DragMixin. Updated the setUpClass to use process_helpers. Removed the workaround for bug #1238417, already fixed. Use the toolkit helper to set the testability environment variable. Fixed the indicators base class that was restarting unity twice. (LP: #1238417, #1447206); Use the base class from the toolkit in autopilot tests. [ Michael Zanetti ]; emit application-stop when we're going down (LP: #1326513) [ Michał Sawicz ]; UNITY_SCOPES_LIST is no more [ handsome_feng<445865575@qq.com> ]; When click the favorite scope in Dash Manager , it just return to the corresponding scope page. (LP: #1447056) (b2f13a4a6) * [ Albert Astals Cid ]; Workarounds for concierge mode.; Resync trunk. [ Albert Astals Cid ]; Make runtests fake a test error if make fails; Make the test more stable; Use dbus-test-runner instead of dbus-launc. DirectionalDragArea: improvements & API grooming (LP: #1417920); Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) [ Josh Arenson . Remove panelHeight property as it is unused. [ Leo Arias ] * Initial clean up of the autopilot tests set up. Removed the touch device from the test case. Moved the restart of unity to a fixture. Removed the unused DragMixin. Updated the setUpClass to use process_helpers. Removed the workaround for bug #1238417, already fixed. Use the toolkit helper to set the testability environment variable. Fixed the indicators base class that was restarting unity twice. (LP: #1238417, #1447206); Use the base class from the toolkit in autopilot tests. [ Michael Zanetti ]; emit application-stop when we're going down (LP: #1326513) [ Michał Sawicz ]; UNITY_SCOPES_LIST is no more [ handsome_feng<445865575@qq.com> ]; When click the favorite scope in Dash Manager , it just return to the corresponding scope page. (LP: #1447056) (9f59192e9) 2015-05-18 Albert Astals Cid * Build with overlay ppa connectivity (3e6d1fc62) * Merge lp:unity8 (ae15dd35b) * install in the proper size (f607e9dbb) 2015-05-18 Michael Zanetti * add info on how to run a single function in make test (45f788a0b) 2015-05-18 Josh Arenson * [BROKEN] commit to merge upstream (b14aeb008) 2015-05-18 Albert Astals Cid * eol (cf1d7af02) * Forgot to add this file (146f83fbe) 2015-05-18 handsome_feng * removed the horizonal rule on pin unlock screen (e1daac185) 2015-05-15 Albert Astals Cid * oh my god two lines at the end of a file it's the end of the wooooooooorld as we know it (c173ee084) * Introduce the Audio card type (225878585) 2015-05-15 Leo Arias * Merged with trunk. (a1a4b89dd) * Merged with the greeter branch from josh. (982d4c1f4) 2015-05-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3f7c49dae) 2015-05-15 handsome_feng * add a test for it (1a612cd03) 2015-05-14 Michael Terry * Update copyrights (f058d72f1) 2015-05-14 Josh Arenson * Add ofono-phonesim-autostart to debian/control (ab8f277ca) 2015-05-14 Nick Dedekind * inline preview video (a9b5255c7) 2015-05-14 Michael Terry * Fix typo (fb4688583) * And add test (08736db67) * Don't let tutorial grow launcher past its own width (e059c2f88) 2015-05-13 Josh Arenson * Complete absolute bare bones settings wizard test (71a515e63) * Begin breaking out settings wizard AP test (02052dc2d) 2015-05-13 Nick Dedekind * fixed whitespace (1e50a77bc) 2015-05-13 Mirco Müller * Revert changes from r1618 since the qml-cache-related issue can't be reproduced on other setups. (7f29f8ac8) 2015-05-13 Albert Astals Cid * Fix test: The items don't have template anymore (c416cfee6) * Typo (a92cf829e) * Do not use template in generated card creator code (87e93a666) 2015-05-13 handsome_feng * forbid closing apps during the edge gesture (d2be534a0) 2015-05-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2fa460bbf) 2015-05-12 Daniel d'Andrada * Make -windowgeometry work again (015ddf909) 2015-05-12 Albert Astals Cid * Add test for next time refactor doesn't break it (1c3d9db9b) * Fix regression introduced by the concierge change (78c378cd2) 2015-05-12 Mirco Müller * Make sure to unset QV4_ENABLE_JIT_CACHE environment-variable for autopilot-test runs, due to LP: #1444937. (447765441) 2015-05-12 Albert Astals Cid * Take into account the extra margin on top when calculating the display margin (1939d1897) * Take into account the extra margin on the top when calculating the display margin (2d342ba18) 2015-05-12 handsome_feng * re-marge with lp:unity8 (85537e488) 2015-05-12 CI Train Bot * Resync trunk. (948f3234a) 2015-05-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (964042de8) 2015-05-11 Josh Arenson * Resolved merge conflicts (322c52431) 2015-05-11 Michael Zanetti * [ Albert Astals Cid ]; Make runtests fake a test error if make fails; Make the test more stable; Use dbus-test-runner instead of dbus-launch; DirectionalDragArea: improvements & API grooming (LP: #1417920); Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) [ Josh Arenson ]; Remove panelHeight property as it is unused. [ Leo Arias ]; Initial clean up of the autopilot tests set up. Removed the touch device from the test case. Moved the restart of unity to a fixture. Removed the unused DragMixin. Updated the setUpClass to use process_helpers. Removed the workaround for bug #1238417, already fixed. Use the toolkit helper to set the testability environment variable. Fixed the indicators base class that was restarting unity twice. (LP: #1238417, #1447206); Use the base class from the toolkit in autopilot tests. [ Michael Zanetti ]; emit application-stop when we're going down (LP: #1326513) [ Michał Sawicz ]; UNITY_SCOPES_LIST is no more [ handsome_feng<445865575@qq.com> ]; When click the favorite scope in Dash Manager , it just return to the corresponding scope page. (LP: #1447056) (bf8ab8b75) 2015-05-11 Mirco Müller * Merged with parent branch again and fixed conflicts. (78d490bd6) 2015-05-11 Daniel d'Andrada * Improve test code (bf5e0ed17) 2015-05-11 Albert Astals Cid * Create the DashAudioPlayer (9d12c181a) * Use art height as implicitHeight when the header is overlayed (1a48b1883) 2015-05-11 Daniel d'Andrada * Merge trunk (e0ed2cadb) * Merge trunk (056126644) 2015-05-11 CI Train Bot * Releasing 8.02+15.04.20150511-0ubuntu1 (1e3a0dc21) 2015-05-11 Albert Astals Cid * Workarounds for concierge mode. Approved by: Pawel Stolowski, Michael Zanetti (05549316c) * Merge unity8 (bf38b1571) * whitespaaaaaaaaaaaace (b0ea73397) 2015-05-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (82841c4b1) 2015-05-11 handsome_feng * Remove the redundant clear() in tst_Shell.qml (c7958263c) 2015-05-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b91bd694a) 2015-05-09 CI Train Bot * Resync trunk. (d4309204e) 2015-05-08 Mirco Müller * To make the faked 'right-up'-orientation be recognized more consistently by qtubuntu-sensors, more granularity steps were needed. (773adbd94) 2015-05-08 Florian Boucault * When not shaped, do not fill and crop. (d9c5ef41e) 2015-05-08 Albert Astals Cid * Implement "rating-edit" preview widget (7bf22c220) 2015-05-08 Josh Arenson * Remove stray unused variable (75d7c0dd4) * Remove unity_proxy arg from all calls to unlock_unity as it is now not needed (1e63c7cea) 2015-05-08 Nick Dedekind * Fixed ApplicationLifecycleTests.test_greeter_hides_on_app_open (66869868a) 2015-05-07 Josh Arenson * Remove unused function params (b96908241) * Fix style errors (863cfbf3b) * Fix bug (26fe5ff0e) * Refactor new helpers to be module scoped (97d644cf2) 2015-05-07 Michał Sawicz * Merge qmltest-refactor (c050730fb) * Use CMAKE_LIBRARY_ARCHITECTURE instead of asking gcc (7ba8f77c7) 2015-05-07 Michael Zanetti * merge prereqs (7e4b5ed5e) 2015-05-07 Nick Dedekind * fixed whitespace (f7ef33d50) 2015-05-07 Michael Zanetti * [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada . Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp [ Michał Sawicz ]; Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp [ Albert Astals Cid ]; Compile with Qt 5.5 (LP: #1437238); Different way of top aligning labels when the other one in the row is multiline (LP: #1442085); make pot_file [ Andrea Cimitan ]; Set sourceSize for DashBackground.qml Image [ CI Train Bot ]; New rebuild forced.; Resync trunk. added: po/sk.po [ Daniel d'Andrada ]; Move handling of command line options to a separate class; Refactor tst_PhysicalKeysMapper.qml [ Leo Arias ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Leonardo Arias Fonseca ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Michael Zanetti ]; Make sure dnd mode is ended properly when drag gesture is cancelled (LP: #1444949) [ Michał Sawicz ]; Fix flake8 warnings (LP: #1444170); Move mock indicator service to unity8-fake-env, as it's a binary- dependent package. [ Nick Dedekind ]; Use asynchronous dbus requests for property updates. (LP: #1436982) (f2a23935d) 2015-05-07 Albert Astals Cid * mzanetti needs a higher number here to trigger the horizontal movement (97e24acb2) 2015-05-06 Josh Arenson * Update process_helpers to use refactored greeter emulator (268630bac) * Enable greeter emulator to unlock the greeter via dbus (56d857697) 2015-05-06 Nick Dedekind * Fixed test. Added more logging (c37022d5c) 2015-05-06 Albert Astals Cid * Support fallback images for dash cards and preview widgets (14ad12264) 2015-05-06 Nick Dedekind * Use sent value to update slider value. Added change interval (bfaac7783) * merged with ~dandrader/unity8/desktop-app-focus (0dd13b045) 2015-05-06 Daniel d'Andrada * Add a mock HomeKeyWatcher to the mock Utils plugin (27540111a) * Merge trunk (8af02e9f9) 2015-05-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4b2834c5c) 2015-05-05 Daniel d'Andrada * Untie usage mode from form factor and properly test stage switch (7014b7882) 2015-05-05 Mirco Müller * This should solve the too early skipping of the rotation ap-test. (8b77d4363) 2015-05-05 CI Train Bot * Releasing 8.02+15.04.20150505-0ubuntu1 (5e7cc045b) 2015-05-05 Albert Astals Cid * Make the test more stable (5214e1638) * Use dbus-test-runner instead of dbus-launch (425e5175a) * Make runtests fake a test error if make fails (2fae90d17) 2015-05-05 Michael Zanetti * emit application-stop when we're going down Fixes: #1326513 Approved by: Albert Astals Cid (c2f84e290) 2015-05-05 Leo Arias * Use the base class from the toolkit in autopilot tests. Approved by: Albert Astals Cid, Christopher Lee (268e05191) 2015-05-05 handsome_feng * When click the favorite scope in Dash Manager , it just return to the corresponding scope page. Fixes: #1447056 Approved by: Pawel Stolowski, Albert Astals Cid (079da03ed) 2015-05-05 Leo Arias * Initial clean up of the autopilot tests set up. - Removed the touch device from the test case. - Moved the restart of unity to a fixture. - Removed the unused DragMixin. - Updated the setUpClass to use process_helpers. - Removed the workaround for bug #1238417, already fixed. - Use the toolkit helper to set the testability environment variable. - Fixed the indicators base class that was restarting unity twice. Fixes: #1447206 Approved by: Albert Astals Cid (259612517) 2015-05-05 Michał Sawicz * UNITY_SCOPES_LIST is no more Approved by: Pawel Stolowski, Albert Astals Cid (c932430b5) 2015-05-05 Josh Arenson * Remove panelHeight property as it is unused. Approved by: Albert Astals Cid (c954ec2f1) 2015-05-05 Daniel d'Andrada * Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) Approved by: Albert Astals Cid (782dbf6c6) * DirectionalDragArea: improvements & API grooming (87f3104ce) 2015-05-05 Michael Zanetti * add a snapshot of Qt's WIP InputDeviceInfo API as a local plugin (51200877e) 2015-05-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b9cb65e36) 2015-05-04 Albert Astals Cid * Make test more stable (bfc16a8ab) * Merge use_dbus_test_runner (d8148c1b4) * Merge fixruntests (d7e97b028) * Instead of failing the .sh create a fake "fail" .xml (aa5bdbb3b) 2015-05-04 handsome_feng * modifed qmltest (b0e2817c9) * resume the behaviour in 'swipe over dash' (32aee17e8) 2015-05-03 Michał Sawicz * No ctest here after all (ed36cf4e5) 2015-05-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fac11eb14) 2015-05-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6fd3457b5) 2015-05-01 Michał Sawicz * Only run specially declared tests (266d24548) 2015-05-01 Florian Boucault * No change (79e5b2527) * Notifications: shaped icon was stretching the icon instead of respecting its aspect ratio and filling the whole shape. (976b9aa55) 2015-05-01 Michał Sawicz * Output on failure (f5ab0ddeb) * Don't redirect stderr after all (50d2a7493) * Add copyright (276c9100a) 2015-05-01 Nick Dedekind * cleanup focus (ff23a1c59) * review comments (6d13c4d03) * fixed more focus issues (b170d09b0) 2015-05-01 Michał Sawicz * Merge qmltest-refactor (7b70f4373) * Singleton bug is fixed. (145d33b99) * Add UnityTest name (4eeaf75b1) * Only monitor wizard file if exists (45ad1987c) * Don't run plain tests under xvfb, add FIXME for --parallel (baf65d46b) * Merge qmltest-refactor (95d8c631a) * Drop unneeded qmltestrunner import (6b0153872) * Fix add_qml_unittest. (808efd729) * Add LIGHTDM where needed (3118dfc92) * Use IMPORT_PATH argument instead of defines, and UNITY_PLUGINPATH instead of custom path (4b228ddc3) * Merge qmltest-refactor (7269676d8) * Add testcase name in tst_WindowMoveResizeArea.qml (4106559fe) * Refactor library and import path handling (fb42f0063) 2015-05-01 Michael Zanetti * emit applications-end when we're going down (1560d62bb) 2015-04-30 Michał Sawicz * Move resources required by the Unity.Application mock inside it (37141981e) * Do not hardcode Dash plugin path in tests (560941b52) * Add basic Ubuntu.Web mock (d0e93b32c) * Add autopkgtest definition and adapt unity8_ test macros (9c24f6da7) * Drop quotes (9c00c39e5) 2015-04-30 Mirco Müller * Made get_unity_pid() available across ap-tests. (3bdb8c577) 2015-04-30 Albert Astals Cid * Use QStandardPaths::writableLocation(QStandardPaths::CacheLocation) (ac6bd3f37) 2015-04-30 Michał Sawicz * GreeterDBus test needs dbus. (c73a30149) 2015-04-30 Albert Astals Cid * shuffle screenshot and splash "z" order (334567bee) 2015-04-30 Michał Sawicz * PageList only wants testing env in the unit test. (0d1e07154) 2015-04-30 Albert Astals Cid * Add override to override functions (e6583ac40) * nullptr my friend (b3740d411) * Saviq prefers a raw pointer (2b69d5575) 2015-04-30 Michał Sawicz * Transition gesture tests to new macros (daff270b8) 2015-04-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (30d917484) 2015-04-30 Michał Sawicz * Make gdb and xvfb-run optional (fea30d078) * Transition runtests.sh to new target (eb567a456) * Transition to unity8 test functions and unify test naming to CamelCase (afa7145c7) * Converge on UNITY_TESTING=1 envvar (88119ddab) 2015-04-29 Michał Sawicz * Add a description for the NO_TESTS variable (891855f39) * Use $ generator instead of querying IMPORTED_LOCATION (2fd87638b) * Refactor QmlTest.cmake to make it much more flexible (37ca99cde) 2015-04-29 Leo Arias * Readded the file deleted by mistake. (53c1875b3) * Link to the bug. (e6aa66646) * Deprecated the unity8.shell.emulators namespace for autopilot tests. Move the helpers to the unity8 module. (448e1db0c) * Merged with the base class fix. (ffeb33910) * Merged with the fixtures branch. (d74e070ce) 2015-04-29 Albert Astals Cid * Merge lp:~aacid/unity8/use_dbus_test_runner (b5671c61e) * Merge lp:~aacid/unity8/fixruntests (2085d76e4) * Merge lp:~aacid/unity8/use_dbus_test_runner (b96108fbf) * Make the tests more stable (434090589) * Make runtests return the exit status of make (287bbe3a2) * Increase max time since we have long running tests (211497e7c) * Use dbus-test-runner instead of dbus-launch (1fcc7f214) 2015-04-29 handsome_feng * remove the code in test (8bd86b2ff) * remove signal resetAll (de9c30303) 2015-04-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d69da4213) 2015-04-28 Daniel d'Andrada * Make all items in the spread have the very same size when stacked on the left side (e6b6168c2) 2015-04-28 Albert Astals Cid * Use dbus-test-runner instead of dbus-launch (b2674d2a0) 2015-04-28 Leo Arias * Use the base class from the toolkit in autopilot tests. (020b1359e) 2015-04-28 Daniel d'Andrada * Remove unneeded include dir (80633637b) 2015-04-28 Albert Astals Cid * Review fixlets (df7050acb) * Concierge mode "workarounds" (d3152c53a) 2015-04-28 Nick Dedekind * don't break focus encasulation (c45fe745a) 2015-04-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8c98a7aef) 2015-04-27 Daniel d'Andrada * Remove empty new line at end of file (54a44cd7e) * Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) (254396592) * Merge ddaImprovements (44de27c5a) 2015-04-27 Michael Terry * Guard some uses of loader.item to avoid early-exiting an important function (3b8e22999) 2015-04-27 Mirco Müller * Fix more flake8 errors. (bab9561bd) 2015-04-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3e3867c38) 2015-04-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1f64b425e) 2015-04-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6fde123eb) 2015-04-24 Leo Arias * Removed the duplicated unity launching in indicators tests. (d3318d8cc) 2015-04-24 Daniel d'Andrada * Fix focus handling in DesktopStage (7bdef9d49) 2015-04-24 Leo Arias * Initial refactor to simplify the setup in autopilot tests. (9fb739fcb) 2015-04-24 Daniel d'Andrada * Removing unneeded workaround (eb2d9324c) * Improve documentation (c4581dbf2) * Merge trunk (3809583c9) 2015-04-24 Albert Astals Cid * Add an indicator when the screeshot indicates starting up too (b63fa92d3) * Add SessionGrabber.qmltypes (3934334b3) 2015-04-24 Daniel d'Andrada * Plug memory leaks in tst_DirectionalDragArea (fcfe3a07b) * fix some C++ object onwership and lifetime issues (af30282e2) * Don't animate rotation when greeter is shown or while display is off (45a59d6a0) 2015-04-24 Albert Astals Cid * Rename to SessionGrabber (94a999bbe) 2015-04-24 Mirco Müller * Merge with parent (279bebaeb) 2015-04-24 Albert Astals Cid * Add (C) (7046f3032) 2015-04-24 handsome_feng * Open Pre-populated scope when click favourite scopes from Manage Dash (66160ebf1) 2015-04-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (701ef3dc3) 2015-04-23 Michael Zanetti * fix bad merge (510660423) * [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada . Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp [ Michał Sawicz ]; Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp (ae84acca6) * [ CI Train Bot ]; New rebuild forced. [ Daniel d'Andrada . Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp [ Michał Sawicz ]; Tapping home key shows unity8-dash home added: plugins/Utils/ElapsedTimer.h plugins/Utils/HomeKeyWatcher.cpp plugins/Utils/HomeKeyWatcher.h plugins/Utils/Timer.cpp plugins/Utils/Timer.h tests/plugins/Utils/homekeywatchertest.cpp (1dc7b1382) * Implement full-shell rotation (LP: #1210199) [ Albert Astals Cid ]; Compile with Qt 5.5 (LP: #1437238); Different way of top aligning labels when the other one in the row is multiline (LP: #1442085); make pot_file [ Andrea Cimitan ]; Set sourceSize for DashBackground.qml Image [ CI Train Bot ]; New rebuild forced.; Resync trunk. added: po/sk.po [ Daniel d'Andrada ]; Move handling of command line options to a separate class; Refactor tst_PhysicalKeysMapper.qml [ Leo Arias ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Leonardo Arias Fonseca ]; For autopilot tests, use the device simulation scenarios from the toolkit. [ Michael Zanetti ]; Make sure dnd mode is ended properly when drag gesture is cancelled (LP: #1444949) [ Michał Sawicz ]; Fix flake8 warnings (LP: #1444170); Move mock indicator service to unity8-fake-env, as it's a binary- dependent package. [ Nick Dedekind ]; Use asynchronous dbus requests for property updates. (LP: #1436982) [ Albert Astals Cid ]; Focus the shutdown dialog (LP: #1417991); Make url-dispatching scope activation when the dash is not on the main scopes (LP: #1364306); We use autopilot3 now [ CI Train Bot ]; New rebuild forced. Resync trunk. added: po/or.po [ Daniel d'Andrada ]; Make tst_PreviewListView and tst_GenericScopeView work in out-of- source builds; MouseArea that shows the indicators panel should cover the indicators bar only (LP: #1439318); Surface gets active focus also with mouse clicks [ Josh Arenson ]; Add a mode option to unity8 for selecting greeter mode in the future; Remove PkgConfig include from Launcher plugin to fix cross-compile (LP: #1437702) [ Leo Arias ]; Fixed the check for string in the lock screen test. (LP: #1434518) [ Michael Terry . Make sure the edge tutorial is destroyed when we receive a call during the wizard. (LP: #1436349); Skip parts of the edge tutorial that require a touch device (like spread and bottom edge). (LP: #1434712) [ Michael Zanetti ]; Don't hide stages just because they're empty (LP: #1439615); [Launcher] fix bug where an item would disappear even though the app is running (LP: #1438172) [ Nick Dedekind ]; Fixed autopilot test failures related to udev input failure for power button.; Made improvements for laggy indicator backends (lp#1390136). (LP: #1390136) [ Pete Woods ]; GPS only goes active when the Dash is in the foreground (LP: #1434379) [ handsome_feng<445865575@qq.com> ]; Modified the wrong time format in ScreenGrabber (LP: #1436006) [ Albert Astals Cid ]; Fix regression making pan not possible in Zoomable Image (LP: #1433506); Make sure m_firstVisibleIndex is correctly set after processing changeSet.removes (LP: #1433056); make pot_file [ Daniel d'Andrada ]; Don't show the rotating rect in "make tryFoo". [ Michael Zanetti ]; make pinlockscreen adjust better to larger displays [ Albert Astals Cid ]; Add some context to tr calls (LP: #1431497); Require binaries and .pc files we call from code; Test: More stubborn flick to the end [ Andrea Cimitan ]; Refactor PreviewOverlay to fix weird zoom out/in animations when previewing images from the Previews [ CI Train Bot ]; Resync trunk. [ Charles Kerr ]; Re-enable a rotation lock test now that the bug that broke that test has been fixed. (LP: #1410915) [ Daniel d'Andrada ]; Darkened area behind indicators menu should eat input until it fully disappears (LP: #1417967); DesktopStage - fix focus switch when user taps on window (LP: #1431325); Fix warnings when launching tutorial; Make MouseTouchAdaptor controllable from within QML; Make tst_Shell absorb tst_TabletShell [ Leo Arias ]; Changed the autopilot dependencies so they do not require qt4. (LP: #1429158) * Drop the support for python2 in autopilot tests. (LP: #1429163); Stop using the deprecated toolkit emulators namespace in autopilot tests. (LP: #1341681) [ Michael Terry ]; Don't close wizard & edge tutorial when the unity8-dash closes (LP: #1425484); Don't let the wizard sit indefinitely, waiting for a wizard page to finish preparing itself. (LP: #1425737); Fix two broken qmluitest files by waiting for everything to settle before starting the tests.; Only call unlockAllModems once the wizard is done. (LP: #1425161) (LP: #1425161. When we are locking the user out from too many login failures, notice when time passes even if the device is suspended. (LP: #1396817) (LP: #1396817) [ Michael Zanetti ]; Add a mouse area to the indicators panel so we can open them by clicking. (LP: #1417650); fix launcher not reacting to first click when revealed by mouse hover, add tests; performance improvements (LP: #1430233, #1425087) [ Michał Sawicz ]; Remove the activity indicator from tests; Use targets instead of custom ld arguments for linking [ Mirco Müller ]; Updated the visuals of the SwipeToAct-widget for incoming-call snap- decision notifications according to new design-spec. Updated the visuals of the SwipeToAct-widget for incoming-call snap- decision notifications according to new design-spec.; No-change rebuild against Qt 5.4.1. (8a8f86188) 2015-04-23 Daniel d'Andrada * Fix the positioning of the application window screenshot (16d5266b0) * Merge trunk (cb15f2ccf) 2015-04-23 Albert Astals Cid * Some documentation (fab816068) * suspend+reboot also gives you the screenshot (6f9be79c1) 2015-04-23 CI Train Bot * Releasing 8.02+15.04.20150423-0ubuntu1 (e1fdd205d) 2015-04-23 Michał Sawicz * Tapping home key shows unity8-dash home (89681f211) * Make sure the home key is released before activation (6f711f149) 2015-04-23 Albert Astals Cid * Stopped+splash -> spinner not active (719215033) * Clean the screenshot on exit (cc68b6690) * split into a new line (e8165fe98) * Give the test a size (84f6ebd79) * Merge lp:unity8 (b262ce04b) * Test for the screenshoter itself (b554534cb) 2015-04-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cc8a72e68) 2015-04-23 handsome_feng * Fixed an error, added a test, and used long left edge swipe instead of a short one to back to apps scope and reset the search (4b51b2cb7) * revert to mainline (1318fcb2b) 2015-04-22 Michael Terry * Handle start() being called while we are processing events during a cancel() call (4dc3bec5c) 2015-04-22 Josh Arenson * Change ShimGreeter from QtObject to Item to WAR lp:1447391 (1a90dfc0c) 2015-04-22 Michael Terry * Merge from trunk (cd4845a1d) 2015-04-22 Josh Arenson * set objectName for greeter and shimGreeter (cd3433315) * Fix indentation (8672070b9) 2015-04-22 Daniel d'Andrada * Ensure that windows in the spread stack perfectly on the left of the spread (56ea30aba) 2015-04-22 Leo Arias * Added the required version for uitk. (17e4eaece) * Removed extra whitespace. (b6906e0dd) 2015-04-22 Albert Astals Cid * Remove screenshot first, make sure we still have all the info avalialbe (1be2eb760) 2015-04-22 Mirco Müller * Make test skip earlier and save execution-time, if device does not support a certain orientation. (9abe5f864) 2015-04-22 CI Train Bot * Releasing 8.02+15.04.20150422-0ubuntu1 (075a6fa30) 2015-04-22 Michał Sawicz * Move mock indicator service to unity8-fake-env, as it's a binary-dependent package. (f1f747b73) 2015-04-22 Leo Arias * For autopilot tests, use the device simulation scenarios from the toolkit. Approved by: Albert Astals Cid (87cd83ffc) 2015-04-22 Michał Sawicz * Fix flake8 warnings Fixes: #1444170 Approved by: Leo Arias (92da04015) 2015-04-22 Michael Zanetti * Make sure dnd mode is ended properly when drag gesture is cancelled Fixes: #1444949 Approved by: Albert Astals Cid (598c584fc) 2015-04-22 Daniel d'Andrada * Move handling of command line options to a separate class (153c2106e) 2015-04-22 Albert Astals Cid * make pot_file (7b417f9b8) 2015-04-22 Andrea Cimitan * Set sourceSize for DashBackground.qml Image Approved by: Albert Astals Cid (836410842) 2015-04-22 Daniel d'Andrada * Refactor tst_PhysicalKeysMapper.qml (0d003de1d) 2015-04-22 Albert Astals Cid * Different way of top aligning labels when the other one in the row is multiline (fadec19f2) * Compile with Qt 5.5 Fixes: #1437238 Approved by: Timo Jyrinki (551a103ba) 2015-04-22 Nick Dedekind * Use asynchronous dbus requests for property updates. Fixes: #1436982 Approved by: Albert Astals Cid (26ca85089) 2015-04-22 Michał Sawicz * Add a Replaces field to unity8-fake-env (2d2db2dc8) 2015-04-22 Albert Astals Cid * Don't show spinner in paused or stoped modes (a78125a19) 2015-04-22 Mirco Müller * Removed to lines that must have been added by a bogus branch-merge. The display-indicator ap-tests were never meant to be touched. (e214dcd15) 2015-04-22 Daniel d'Andrada * Refactor TransformedSpreadDelegate scaling logic into something I can understand (338f354ec) * Fix whitespace issue (5bd30bb01) 2015-04-22 Albert Astals Cid * First attempt at saving/loading screeshots (489b02861) 2015-04-22 Daniel d'Andrada * s/m_emitActivatedIfNoTouchesAroundTimer/m_activationTimer (8b4a46c9b) * Update tests (feea5e161) * Also hide the launcher when home key is pressed (7896ee5a5) 2015-04-22 Mirco Müller * Argl (110424faa) * Build-dependency on libunity-api-dev >= 7.97 is wrong 7.96 is sufficient. (95bacf9fa) 2015-04-22 Daniel d'Andrada * Modifications according to review feedback (5ac6c11fa) 2015-04-22 Mirco Müller * Merged with unity8 trunk. (981b847eb) 2015-04-21 Josh Arenson * Relocate timer outside of Greeter (2dccdfcca) * Move showGreeterDelayed timer to Powerd connection instead of inside greeter (c1ae7b53f) * Add forceShow to ShimGreeter (439e3513b) * Fix typo in ShimStage (8826097d0) * Remove residual code from Shell (14df223d0) * Merge upstream (4661d66d8) 2015-04-21 Mirco Müller * flake8-ify shell-rotation ap-test. (488d97a50) 2015-04-21 Michał Sawicz * UNITY_SCOPES_LIST is no more (028d716a2) 2015-04-21 Leo Arias * Merged with the flake8 fixes. (5c77a187c) 2015-04-21 Michał Sawicz * wrap-and-sort -at (54f11ab43) * Move mock indicator service to unity8-fake-env (f8cea232b) 2015-04-21 Mirco Müller * Forgot import (ddffd7933) * More Python3-ification according to MP-comments. (49371922f) * Fix some issues from MP-comments... use scenarios as much as possible to make ap-test more compact. (81b037e8b) 2015-04-21 Michael Zanetti * add workspaces snapshotting through a shader effect (35fe40404) * treat leftmost item special and make it fold later to use up all the available screen estate (ec403a51c) * replace temporary close icon with proper asset (17e4b1233) 2015-04-20 Josh Arenson * Removed unused property panelHeight (c49a46b65) 2015-04-20 Leo Arias * Merged with prerequisite. (fa5edf767) 2015-04-20 Michał Sawicz * One more tweak (7909dbecf) * Fix more (c938d6275) 2015-04-20 Daniel d'Andrada * Fix bad merge (add UnityCommandLineParser::deviceName back) (f9350f741) 2015-04-20 Nick Dedekind * test rename (9a35b6b79) * replaced mouseClick with tap for touch (22bac90a4) * re-added test for click on app window (65896a94a) 2015-04-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8190f38cb) 2015-04-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dceb4c8da) 2015-04-17 Leonardo Arias Fonseca * For autopilot tests, use the device simulation scenarios from the toolkit. (c56e19062) 2015-04-17 Daniel d'Andrada * Make Ubuntu.Gestures components install TouchRegistry by themselves (c5d926c70) * Merged ddaImprovements (3628f6296) 2015-04-17 Nick Dedekind * whitespace (4853ac77a) * line length (2024c0e4a) * removed debug (b224afd1c) * better tests (f6cafe155) * store sets + changed (ea46e8eab) 2015-04-17 Daniel d'Andrada * Fix whitespace issue (6c9ed82ca) * FloatingFlickable (38f969b3a) * Merge ddaImprovements (0f9d3440e) 2015-04-17 Michael Zanetti * coding style (41afe6b5a) * do the full endDrag procedure in case of a cancel (4efb6f45c) 2015-04-17 Daniel d'Andrada * Tapping home key shows unity8-dash home (e9f3c91ff) 2015-04-17 Michael Zanetti * also reset drag.target (ba47b658f) * tweak++ (19bf412e9) * add a preliminary close button to the highlight (asset needed) (815294dbb) 2015-04-16 Josh Arenson * Expose showGreeterDelayed timer to outside objects (5a18681f4) * Define shellMode property in tst_Tutorial (529ddd484) 2015-04-16 Nick Dedekind * delete watcher (7f64acc19) 2015-04-16 Josh Arenson * Define shellMode property in tst_ShellWithPin (acb3bd154) 2015-04-16 Mirco Müller * Removed tst_TabletShell.qml added by mistake earlier. (f059aa9ae) 2015-04-16 Michał Sawicz * Fix flake8 warnings (f7eb3eea5) 2015-04-16 Michael Zanetti * take easing away from angle (a60d48646) 2015-04-16 Mirco Müller * Make code a bit more tight. (ba1bee4b5) 2015-04-16 Michael Zanetti * make workspace selector look a bit more like the mockup (e04249b2f) 2015-04-16 Daniel d'Andrada * Merge lp:~dandrader/unity8/unityCommandLineParser (d63d59042) 2015-04-16 Leonardo Arias Fonseca * Copied the statemenets I missed from the sanity. (47c160eb6) * Copied the statemenets I missed from the sanity. (9ba16af7e) * Copied the statemenets I missed from the sanity. (449908b0d) 2015-04-16 Mirco Müller * Use the logger-facility for spitting out runtime-info about the test. (c234c6b54) 2015-04-16 Michael Zanetti * Make sure dnd mode is ended properly when drag gesture is cancelled (b27711268) * use floatingflickable (ba4ffbaba) 2015-04-16 Federico Gimenez * Updated to use grid units (2c380c5c3) 2015-04-15 Leonardo Arias Fonseca * Added the press duration an extra wait while opening the preview. (3986d3e9d) 2015-04-15 Daniel d'Andrada * Tweak launcher animation (ee22bb33d) * Fix tst_ShellWithPin (4dc7d6e90) * Added DirectionalDragArea.pressed property (427d712a9) * fix shell tests (3abbbd7e6) 2015-04-15 Josh Arenson * Fix shell qmltest buy explicetly setting shellMode (19630a864) 2015-04-15 Michael Zanetti * merge dandrader's floatingflickable (and with it the dda improvements) (fac961c80) * merge dednick's branch (22f86a789) 2015-04-15 Daniel d'Andrada * Fix tst_Shell::test_leftEdgeDragFullscreen (0693fb089) * Fix UnityTestCase.removeTimeConstraintsFromDirectionalDragAreas() (c1df1027e) 2015-04-15 Michael Zanetti * [ Albert Astals Cid ]; Focus the shutdown dialog (LP: #1417991. Make url-dispatching scope activation when the dash is not on the main scopes (LP: #1364306); We use autopilot3 now [ CI Train Bot ]; New rebuild forced.; Resync trunk. added: po/or.po [ Daniel d'Andrada ]; Make tst_PreviewListView and tst_GenericScopeView work in out-of- source builds; MouseArea that shows the indicators panel should cover the indicators bar only (LP: #1439318); Surface gets active focus also with mouse clicks [ Josh Arenson ]; Add a mode option to unity8 for selecting greeter mode in the future; Remove PkgConfig include from Launcher plugin to fix cross-compile (LP: #1437702) [ Leo Arias ]; Fixed the check for string in the lock screen test. (LP: #1434518) [ Michael Terry . Make sure the edge tutorial is destroyed when we receive a call during the wizard. (LP: #1436349); Skip parts of the edge tutorial that require a touch device (like spread and bottom edge). (LP: #1434712) [ Michael Zanetti ]; Don't hide stages just because they're empty (LP: #1439615); [Launcher] fix bug where an item would disappear even though the app is running (LP: #1438172) [ Nick Dedekind ]; Fixed autopilot test failures related to udev input failure for power button.; Made improvements for laggy indicator backends (lp#1390136). (LP: #1390136) [ Pete Woods ]; GPS only goes active when the Dash is in the foreground (LP: #1434379) [ handsome_feng<445865575@qq.com> ]; Modified the wrong time format in ScreenGrabber (LP: #1436006) (3d59dc608) 2015-04-15 Nick Dedekind * Fixed interface and property for PasswordDisplayHint (927261acf) 2015-04-15 Daniel d'Andrada * Keep the way window geometry was being used before (1efe4de73) 2015-04-15 Nick Dedekind * Updated Utils plugin from trunk (0ef484e81) * merged with trunk (1b40225d7) 2015-04-15 Michael Zanetti * make it scale better for different screen sizes (c83ac8bdb) * make tiles square (be09e6c75) 2015-04-15 Michał Sawicz * Bump version for shell rotation (369ec39d8) 2015-04-15 Mirco Müller * Merged with unity-team's shellRotation branch and fixed conflicts. (8d8adc2ad) 2015-04-15 Nick Dedekind * fixed regresssion in test and added a test for it. (0f63ce996) * added desktop test case (8f3745274) * Use Staged as default (ea26b2ad0) 2015-04-15 Federico Gimenez * Merged with trunk (da7370f0f) 2015-04-14 Josh Arenson * remove stray brace (7ab7ef008) * Add ShimGreeter.qml (aac3c2311) * Fix debian/control for real (d7165bfd3) * Reenable testing (d512ac2cb) * Restore debian/control (ee042fd54) * Fix anchoring (7a90301ab) * [NOT FINISHED] Allow shell to load ShimGreeter or inline Greeter based on shellMode (d86534358) * [ Albert Astals Cid ]; Focus the shutdown dialog (LP: #1417991. Make url-dispatching scope activation when the dash is not on the main scopes (LP: #1364306); We use autopilot3 now [ CI Train Bot ]; New rebuild forced.; Resync trunk. added: po/or.po [ Daniel d'Andrada ]; Make tst_PreviewListView and tst_GenericScopeView work in out-of- source builds; MouseArea that shows the indicators panel should cover the indicators bar only (LP: #1439318); Surface gets active focus also with mouse clicks [ Josh Arenson ]; Add a mode option to unity8 for selecting greeter mode in the future; Remove PkgConfig include from Launcher plugin to fix cross-compile (LP: #1437702) [ Leo Arias ]; Fixed the check for string in the lock screen test. (LP: #1434518) [ Michael Terry . Make sure the edge tutorial is destroyed when we receive a call during the wizard. (LP: #1436349); Skip parts of the edge tutorial that require a touch device (like spread and bottom edge). (LP: #1434712) [ Michael Zanetti ]; Don't hide stages just because they're empty (LP: #1439615); [Launcher] fix bug where an item would disappear even though the app is running (LP: #1438172) [ Nick Dedekind ]; Fixed autopilot test failures related to udev input failure for power button.; Made improvements for laggy indicator backends (lp#1390136). (LP: #1390136) [ Pete Woods ]; GPS only goes active when the Dash is in the foreground (LP: #1434379) [ handsome_feng<445865575@qq.com> ]; Modified the wrong time format in ScreenGrabber (LP: #1436006) [ Albert Astals Cid ]; Fix regression making pan not possible in Zoomable Image (LP: #1433506); Make sure m_firstVisibleIndex is correctly set after processing changeSet.removes (LP: #1433056); make pot_file [ Daniel d'Andrada ]; Don't show the rotating rect in "make tryFoo". [ Michael Zanetti ]; make pinlockscreen adjust better to larger displays (f3ca9c11e) 2015-04-14 Daniel d'Andrada * Introducing FloatingFlickable (9f2119a19) * Merge lp:~dandrader/unity8/ddaImprovements (a409c4a91) 2015-04-14 Albert Astals Cid * make pot_file (96d588db7) 2015-04-14 Daniel d'Andrada * Move handling of command line options to a separate class (f4554226b) * Merge trunk (5fe47b980) 2015-04-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7478eb885) 2015-04-13 Josh Arenson * [NOT WORKING] need to merge trunk (1163086f1) 2015-04-13 Robert Bruce Park * Restore lost changelog entry. (5ee5c24ef) 2015-04-13 CI Train Bot * Resync trunk. (53f6f5c4e) 2015-04-13 Robert Bruce Park * Restore lost changelog entry. (c6d7908d1) 2015-04-13 Andrea Cimitan * Set sourcesize for dash background (b616f9956) 2015-04-13 Daniel d'Andrada * Refactor tst_PhysicalKeysMapper.qml (d5108b401) 2015-04-13 Michael Zanetti * try adding some SpreadFlickable (3c241c3a6) 2015-04-13 Nick Dedekind * more tests + fixes (26a30774b) 2015-04-13 Daniel d'Andrada * Fix whitespace issues (06e9bc303) 2015-04-13 Albert Astals Cid * some expectation on the sizes (353f87455) 2015-04-13 Michael Zanetti * try to add a special flickable that doesn't eat the mouse presses (6f759cfa0) 2015-04-13 Nick Dedekind * merge with trunk (cc5cf354a) 2015-04-13 Albert Astals Cid * Different way of top aligning labels when the other one in the row is multiline (ca6b82a33) * Use proper path (d7e6d83b1) 2015-04-13 Nick Dedekind * fixed AccountsServiceDBusAdaptor.h local source inclusion (87ca4a5fe) 2015-04-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c0c8503e3) 2015-04-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ae5bee6a5) 2015-04-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4760cf782) 2015-04-10 Josh Arenson * Load shim stage when shellMode==greeter (5fff64302) 2015-04-10 Daniel d'Andrada * DirectionalDragArea & friends: various improvements & API grooming (792c5f3fe) 2015-04-10 Mirco Müller * Merged with ~unity-team/unity8/shellRotation and fixed conflicts. (7324d4651) * Removed sneaky bzr-cruft. (983a875a0) 2015-04-10 Michał Sawicz * Update application API versions (344f20de0) 2015-04-10 Nick Dedekind * line length (f61e81362) * better (15ec47004) 2015-04-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d6388193f) 2015-04-09 Nick Dedekind * use async requests for property changes (b4e9db7ef) 2015-04-09 CI Train Bot * Releasing 8.02+15.04.20150409.1-0ubuntu1 (b3966a8eb) 2015-04-09 Michael Zanetti * Don't hide stages just because they're empty (c4e7051ac) 2015-04-09 Nick Dedekind * Fixed autopilot test failures related to udev input failure for power button. Approved by: Albert Astals Cid (fb2598e03) 2015-04-09 Daniel d'Andrada * MouseArea that shows the indicators panel should cover the indicators bar only (19c2852f8) 2015-04-09 Pete Woods * GPS only goes active when the Dash is in the foreground Fixes: #1434379 Approved by: Michał Sawicz (adb8c59f5) 2015-04-09 Josh Arenson * Remove PkgConfig include from Launcher plugin to fix cross-compile Fixes: #1437702 Approved by: Michał Sawicz (cc8f2ba3c) 2015-04-09 Michael Zanetti * [Launcher] fix bug where an item would disappear even though the app is running (53bcb4439) 2015-04-09 Albert Astals Cid * We use autopilot3 now (2a50cbd8e) 2015-04-09 handsome_feng * Modified the wrong time format in ScreenGrabber Fixes: #1436006 Approved by: Albert Astals Cid (2815bc0d1) 2015-04-09 Josh Arenson * Add a mode option to unity8 for selecting greeter mode in the future Approved by: Michael Terry, PS Jenkins bot (014f2dfd4) 2015-04-09 Michael Terry * Make sure the edge tutorial is destroyed when we receive a call during the wizard. Fixes: #1436349 (59a8d30dc) * Skip parts of the edge tutorial that require a touch device (like spread and bottom edge). (b7d662aa4) 2015-04-09 Daniel d'Andrada * Make tst_PreviewListView and tst_GenericScopeView work in out-of-source builds Approved by: Albert Astals Cid (6141dcc74) 2015-04-09 Leo Arias * Fixed the check for string in the lock screen test. Fixes: #1434518 Approved by: Albert Astals Cid (e11f9d8cb) 2015-04-09 Albert Astals Cid * Focus the shutdown dialog (2bcb8e973) * Make url-dispatching scope activation when the dash is not on the main scopes (688511600) 2015-04-09 Nick Dedekind * Made improvements for laggy indicator backends (lp#1390136). Fixes: #1390136 Approved by: Michał Sawicz (977a1a62b) 2015-04-09 Daniel d'Andrada * Surface gets active focus also with mouse clicks Approved by: Michael Zanetti (7cb775d90) 2015-04-09 Mirco Müller * Re-merge with unity8 trunk again. (0445b7197) * Clean up debugging output and removing obsolete code. (863881799) 2015-04-09 Michael Zanetti * add initial workspaces visuals (45fa1e6ba) * next time I'll test before committing (f789941bc) * rework animation once more, fix some bugs (cd57eab32) 2015-04-08 Michael Zanetti * added proper highlight (a7b4fbe61) * fix highlight looping (21675ade3) * Don't hide stages just because they're empty (d7a86a37b) 2015-04-08 Pete Woods * Respond to Daniel's comments (e4f288176) * Only have scopes active when the app is focused (49dd0c4a5) 2015-04-07 Nick Dedekind * revert re-order (d2e4ef9aa) * review comments (35f9f7c23) 2015-04-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6b94e55f7) 2015-04-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (04f60d07f) 2015-04-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eae0df277) 2015-04-03 Michael Terry * Merge in lp:~mterry/unity8/skip-spread-tutorial-on-desktop (d85438aaa) 2015-04-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f232669af) 2015-04-02 Daniel d'Andrada * MouseArea that shows the indicators panel should cover the indicators bar only (a5781bdbe) * Add regression tests (20f850ca7) 2015-04-02 Mirco Müller * Merged Paul's branch with the working fake-sensor- and webbrowser-app-tests wrt to shell-rotation. Although still seeing high failure-rate, which isn't necessarily due to the tests themselves but rather DBus or upstart. (a7b7949ec) 2015-04-02 Nick Dedekind * bumped version (4484708dc) * merged with lp:~dandrader/unity8/mouseClickSwitchesSurfaceFocus (f54591a73) * added missing greeter code (5ecd0d392) 2015-04-02 Albert Astals Cid * style (b9c144939) 2015-04-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f3619476e) 2015-04-02 Ying-Chun Liu * Add some basic tests. Fix white-space. (33782b437) 2015-04-01 Michael Zanetti * fade out tile info when stacked (e57efda19) * added scaling on stacked ends, some cleanup (c4a991814) 2015-04-01 Nick Dedekind * style tweaks (e885a33ca) * Fixed slider test (f723e6af9) * whitespace (8c8752674) * use greeter dbus calls to lock unity (685165c62) * added debug statement (b20b95f99) 2015-04-01 Mirco Müller * Merged with trunk and solved all conflicts. (43a63429d) 2015-04-01 Michael Zanetti * further improve highlight movement (05e8cb53d) * adjust progress on left and right to restrict overshooting. Improves the highlight too. (d012b1bab) * merge daniel's focus-fixing branch (a550870bd) 2015-03-31 Michael Zanetti * merge focus surface (814127472) 2015-03-31 Nick Dedekind * added check for greeter active (71448fae1) * Moved lock_unity to testcase for pre-creation of uinput device (355785521) 2015-03-31 Michael Zanetti * merge trunk (89ddc78b2) 2015-03-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a11db0581) 2015-03-30 Josh Arenson * Remove PkgConfig include from Launcher plugin to fix xcompile (223071090) 2015-03-30 Michael Zanetti * [Launcher] fix bug where an item would disappear even though the app is running (9927cee84) 2015-03-30 Nick Dedekind * added sleep before write to uinput (36a297f33) 2015-03-30 Mirco Müller * Use the mir-socket deletion from launch_unity() in LaunchUnityWithFakeSensors(). (955de6c3f) 2015-03-30 Michael Zanetti * add proper folding (080593128) 2015-03-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e436f56a3) 2015-03-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fb21b365b) 2015-03-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (66895aef7) 2015-03-27 Albert Astals Cid * Compile with Qt 5.5 (dfd662bf2) 2015-03-27 Michael Zanetti * improve animation - highlight more broken atm though (4f6952690) 2015-03-27 Albert Astals Cid * And forgot i need this too (2485b4f93) * Test uri dispatcher does what it has to do (882aaef18) 2015-03-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b35422f09) 2015-03-26 Albert Astals Cid * unbreak tryDialogs (f26cdb920) * test item gets the focus as suggested by mzanetti (aa1c784e2) 2015-03-26 Michael Terry * Help Qml decide to destroy the tutorial when it is unloaded (1975165e0) * Review nits (41d4d9fef) 2015-03-26 Michael Zanetti * add some stacking animation (df925486c) 2015-03-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (48a8b2b42) 2015-03-25 Nick Dedekind * decreased interval (46004e8b8) 2015-03-25 Michael Zanetti * move title below icon (c5dcb2de7) 2015-03-25 handsome_feng * modified the wrong time format (e534d2853) 2015-03-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3a8c658eb) 2015-03-24 CI Train Bot * Resync trunk. (30095513f) 2015-03-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bdebfdc67) 2015-03-23 Josh Arenson * Reenable tests (f13f33d42) * Redo branch (360e4acda) 2015-03-23 Michael Terry * Move tests to tst_Tutorial.qml (8ec63d241) * Add new test for this branch, and fix up GSettings mock (4511c9e54) 2015-03-23 Nick Dedekind * use waitbufferinterval (6698d2058) 2015-03-23 Michael Terry * Don't use EdgeDragArea on desktop (c93ed50bb) 2015-03-23 Albert Astals Cid * We use autopilot3 now (695c3f014) 2015-03-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d9d489b7c) 2015-03-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9be1305b3) 2015-03-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e29b41674) 2015-03-20 Daniel d'Andrada * Undo all tst_Showable changes (c4369f8bd) * Remove unused code (0bc195d74) * Fix tst_ShellWithPin.test_emergencyDialerLockOut (fcccc721a) * Make tst_PreviewListView and tst_GenericScopeView work in out-of-source builds (b4064d10a) 2015-03-20 Leo Arias * Fixed the check for string in the lock screen test. (cba979f8c) 2015-03-20 Nick Dedekind * updated for change in ServerPropertySync api (9443fc26a) 2015-03-20 Albert Astals Cid * Focus the shutdown dialog (a52937090) 2015-03-20 CI Train Bot * Releasing 8.02+15.04.20150320-0ubuntu1 (c2fae78b6) 2015-03-20 Daniel d'Andrada * Don't show the rotating rect in "make tryFoo". (bc5e69655) 2015-03-20 Albert Astals Cid * make pot_file Approved by: Michael Zanetti (a357ca53a) * Fix regression making pan not possible in Zoomable Image (7d0dbe594) 2015-03-20 Michael Zanetti * make pinlockscreen adjust better to larger displays Approved by: Mirco Müller (37ad6e0c8) 2015-03-20 Albert Astals Cid * Make sure m_firstVisibleIndex is correctly set after processing changeSet.removes (ab3534ec0) 2015-03-20 Nick Dedekind * merged with trunk (ee637032f) 2015-03-20 Michael Zanetti * experiment with linear movement and folding on both ends (f15cc28df) 2015-03-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f1e1c45b5) 2015-03-19 Albert Astals Cid * fix variable ^_^ (4f246ba92) * Make scope dispatching work if fav scope is shown (8da608ca5) 2015-03-19 Daniel d'Andrada * The GenericApp approach doesn't work (dff962bb5) 2015-03-19 Albert Astals Cid * run pot_file (63e289f5c) 2015-03-19 Daniel d'Andrada * Handle null targets properly (a1b46e0db) 2015-03-19 Michael Zanetti * add some margin to the left (a19a018b0) * double rotation (d8daf1f3b) * fix orientation of mocksurfaces (a4a4a7c8f) * added iconst below tiles (701220604) 2015-03-19 Daniel d'Andrada * Don't show the rotating rect in "make tryFoo". (797c0a954) * Merge trunk (e0c46f5cf) 2015-03-19 Michael Zanetti * don't show decoration in spread (e059971c2) * scale tiles down to max 35% of scene height (400ef9897) 2015-03-19 Daniel d'Andrada * Merge trunk (5809e2d10) 2015-03-19 Michael Zanetti * merge trunk (6adda004e) 2015-03-18 Michael Zanetti * add a property for the foregroundColor instead of having it hardcoded all over the place (e06d2baa0) * drop more whitespaces (9aaa499e0) * drop whitespace (7b280d18f) * make it more linear (ad62f92e3) 2015-03-18 Albert Astals Cid * spacing (0589c65cb) * This makes a bit more sense (cd24bfbbd) * Fix regression making pan not possible in Zoomable Image (55c003953) 2015-03-18 Michael Terry * Merge from trunk (519c17da2) 2015-03-18 Michael Zanetti * make pinlockscreen adjust better to larger displays (5ea5f5c6d) 2015-03-18 CI Train Bot * Releasing 8.02+15.04.20150318-0ubuntu1 (4d5d38e1a) 2015-03-18 Daniel d'Andrada * DesktopStage - fix focus switch when user taps on window (0533cec28) 2015-03-18 Michał Sawicz * Remove the activity indicator from tests (d051ca1cf) 2015-03-18 Albert Astals Cid * Add some context to tr calls Fixes: #1431497 Approved by: GunChleoc, Michael Zanetti (6eef43407) * Test: More stubborn flick to the end Approved by: Michał Sawicz (488b30e2c) 2015-03-18 Mirco Müller * Updated the visuals of the SwipeToAct-widget for incoming-call snap-decision notifications according to new design-spec. Approved by: Daniel d'Andrada (f74aa057b) 2015-03-18 Andrea Cimitan * Refactor PreviewOverlay to fix weird zoom out/in animations when previewing images from the Previews Approved by: Albert Astals Cid (28b1389ff) 2015-03-18 Leo Arias * Stop using the deprecated toolkit emulators namespace in autopilot tests. Fixes: #1341681 Approved by: Albert Astals Cid (7c945c20c) * Changed the autopilot dependencies so they do not require qt4. Fixes: #1429158 Approved by: Albert Astals Cid (0992aa675) * Drop the support for python2 in autopilot tests. Fixes: #1429163 Approved by: Albert Astals Cid (080d8e731) 2015-03-18 Albert Astals Cid * Require binaries and .pc files we call from code (b85d10a37) 2015-03-18 Michael Zanetti * performance improvements (1dee16b17) 2015-03-18 Michael Terry * When we are locking the user out from too many login failures, notice when time passes even if the device is suspended. (LP: #1396817) Fixes: #1396817 Approved by: Albert Astals Cid (e4df71e05) 2015-03-18 Daniel d'Andrada * Darkened area behind indicators menu should eat input until it fully disappears Fixes: #1417967 Approved by: Albert Astals Cid (95cd8a0a3) 2015-03-18 Michał Sawicz * Use targets instead of custom ld arguments for linking (5777b8aa7) 2015-03-18 Charles Kerr * Re-enable a rotation lock test now that the bug that broke that test has been fixed. Fixes: #1410915 Approved by: Leo Arias, Albert Astals Cid (5bda3dcd9) 2015-03-18 Michael Zanetti * Add a mouse area to the indicators panel so we can open them by clicking. (b6ca55363) 2015-03-18 Daniel d'Andrada * Fix warnings when launching tutorial (2cd65543c) 2015-03-18 Michael Terry * Don't let the wizard sit indefinitely, waiting for a wizard page to finish preparing itself. (bb0b4a634) * Fix two broken qmluitest files by waiting for everything to settle before starting the tests. Approved by: Albert Astals Cid (2c64a01de) 2015-03-18 Michael Zanetti * fix launcher not reacting to first click when revealed by mouse hover, add tests Approved by: Daniel d'Andrada (9a6aaeb71) 2015-03-18 Daniel d'Andrada * Make MouseTouchAdaptor controllable from within QML Approved by: Michael Zanetti (e1cc928cc) 2015-03-18 Michael Terry * Don't close wizard & edge tutorial when the unity8-dash closes (603d59027) * Only call unlockAllModems once the wizard is done. (LP: #1425161) Fixes: #1425161 Approved by: Michał Sawicz, Daniel d'Andrada (355e344c9) 2015-03-18 Daniel d'Andrada * Make tst_Shell absorb tst_TabletShell (cd4dab659) 2015-03-18 Timo Jyrinki * No-change rebuild against Qt 5.4.1. (35f26de48) 2015-03-17 Albert Astals Cid * Make sure m_firstVisibleIndex is correctly set after processing QQmlChangeSet::Change (4fa1f82f7) 2015-03-17 Mirco Müller * Fixed all mentioned issues from MR-comments. (dc39ffdd5) * Made fake application work... again... sometimes... *grrr* really losing my patience with AP/python right now. (c229b10f8) 2015-03-16 Michael Zanetti * add left/right and backtab (535d849cc) 2015-03-16 Nick Dedekind * fixed testes (3b5a3d7ac) 2015-03-16 Daniel d'Andrada * Some improvements: (8d372d5d8) 2015-03-16 Michael Zanetti * some first exploration of a spread for desktop (6c5334741) 2015-03-16 Daniel d'Andrada * Ensure saveGeometry finishes before the thread it created actually starts to run (c33d3d2f3) 2015-03-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d18ae2ed5) 2015-03-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (09561727f) 2015-03-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5a2cb7a7e) 2015-03-13 Daniel d'Andrada * Add another test (4eee1a2ac) * DesktopStage - fix focus switch when user taps on window (df4325080) 2015-03-13 Michał Sawicz * Replace the UITK ActivityIndicator with our own rotator (0493ee4b5) 2015-03-13 Michael Zanetti * tap instead of click (10212b01b) 2015-03-13 Michał Sawicz * Remove the activity indicator from tests (47e0c8510) 2015-03-13 Daniel d'Andrada * Just to trigger a new Jenkins build (fcd86f3b4) 2015-03-13 Nick Dedekind * reverted version req to get CI working (e325708b1) 2015-03-13 Albert Astals Cid * more context (213ee3041) * Some c i missed (e1d94630c) * Remove unused qml/Panel/SearchIndicator.qml (10288690b) * Add some context to tr calls (45598cdc4) * Add some context to tr calls (187c2238f) 2015-03-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fe062bbf1) 2015-03-12 Daniel d'Andrada * Remove comment (a1c001e81) 2015-03-12 Albert Astals Cid * A bit of refactoring (0af68ffd5) 2015-03-12 Michael Zanetti * fix controls width (77e656179) * drop unused stuff (a9c459445) 2015-03-12 Nick Dedekind * fixed senarios for devices (56e338a96) 2015-03-12 Daniel d'Andrada * Add tests (a4cff5bb8) * merge controlTouchEmulationFromQML (c506f9a31) * Improve code and tests (c75a8bc3c) 2015-03-12 Nick Dedekind * updated fixture name (afcbaf09e) 2015-03-12 Michael Zanetti * merge two launcher test cases (f582661a7) 2015-03-12 Nick Dedekind * ubuntu-settings-components 0.6 (c125b77b6) * renames + test fixes (233109f78) 2015-03-12 Daniel d'Andrada * Remove pressed signal from TouchGate (16004089e) 2015-03-12 Michael Zanetti * fix launcher not reacting to first click in mouse mode, add tests (5ad2f3c36) * merge prereq (9e6b4dae8) 2015-03-12 Albert Astals Cid * Need the stubborness in another place, so generalize it (8fff1ddfc) 2015-03-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a80d9f0e3) 2015-03-11 Daniel d'Andrada * Switch Surface focus also with mouse clicks (a6e7ec545) * Clean up Unity.Application mocks regarging input method (d43eea342) * Fill the fake UbuntuKeyboardInfo with correct values (9b0b65d95) 2015-03-11 Michael Terry * Check thread count at end of test (4280b6eab) * Add some comments on why we cache the 'active' bool instead of using an alias (77ffd43a3) * Merge unifyShellTests (7ebe87413) 2015-03-11 Charles Kerr * strip tags with strip-u8-tags.py (776d003f7) 2015-03-11 Michael Terry * Be more succinct (dfa85e652) 2015-03-11 Mirco Müller * Minor tweaks reflecting latest Design-feedback... partial fix for default slider-position glitch. (20c9eaa25) 2015-03-11 Nick Dedekind * Laggy backends (4c49adae1) 2015-03-10 Daniel d'Andrada * Remove unused signal (91fdd1399) * Merge trunk + ~dandrader/unity8/unifyShellTests (eacd201fa) 2015-03-10 Michael Terry * Fix accidental whitespace (8d26cc7cd) * Remove debug code; fix test to work in jenkins (b8729fc9e) * Fix some broken qmluitests (79a67312f) * Merge from prereq (75147bcc3) * Merge from unifyShellTests (4eb2771e5) 2015-03-10 Daniel d'Andrada * Merge trunk (4858f9965) 2015-03-10 Andrea Cimitan * A couple of minor tweaks (2f76ee39c) * Fix as review (77dc71987) 2015-03-10 Albert Astals Cid * Add fixme (71453942b) * More stubborn flick to the end (567453a84) 2015-03-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (edd4d679f) 2015-03-09 Andrea Cimitan * Fix aspect ratio overlay (ef7a486cf) 2015-03-09 Michael Zanetti * redo inputinfo on top of rebased shellRotation (337d81985) 2015-03-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c5f7c0ae0) 2015-03-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f629a5bc9) 2015-03-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aa8f926a1) 2015-03-06 Mirco Müller * Made the blinking-animation of the arrows more compact. (436b60790) * Use symbolic names for the custom colors. (ab7b4cdbb) 2015-03-06 Leo Arias * Link to the bug. (dc5b31344) * Stop using the deprecated toolkit emulators namespace in autopilot tests. (cb607fd58) * Merged with parent. (fd7f02a50) 2015-03-06 Mirco Müller * Update the year in the header comment. (600fdff41) * Stripped some more obsolete code... made the slider pick up the target-icon's color gradually. (c45645ae8) 2015-03-06 Leo Arias * Changed the autopilot dependencies so they do not require qt4. (889aecc86) 2015-03-06 Mirco Müller * Merged kgunn's conflict-resolving branch (8780fc87b) 2015-03-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d8d3d2925) 2015-03-05 Kevin Gunn * updated from lp:~unity-mir/unity8/shellRotation (eb89a7a96) 2015-03-05 Michael Terry * to-be-deleted testing code to investigate jenkins failure (feea33f89) 2015-03-05 Andrea Cimitan * More fixes (d3cf8f2bc) 2015-03-05 Daniel d'Andrada * Update copyright year of all created or modified files (e15956d50) * Avoid having Rotation animations accessing context from parent (8f9ea332d) 2015-03-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (31b234f72) 2015-03-04 Mirco Müller * Added first iteration of blinking arrows as visual clues for the user. (5d17a09f1) 2015-03-04 Nick Dedekind * fixed gsettings mock (a2f95be09) 2015-03-04 Michael Zanetti * always reset the flag (328b4b3ef) 2015-03-04 Andrea Cimitan * Fixes to single item in image listview (714f640be) 2015-03-04 Daniel d'Andrada * Shell rotation (8ef39f86e) 2015-03-04 Nick Dedekind * Fix for desktop app focus (3ecd12d0e) 2015-03-04 Andrea Cimitan * minor (54d604211) * merged trunk (09dd2e05a) * New PreviewOverlay logic (7632f3ce1) 2015-03-04 Nick Dedekind * merged with trunk (1ac1b12cc) 2015-03-04 Mirco Müller * First set of changes for the SwipeToAct visual update. (5d16e38bc) 2015-03-04 Michael Zanetti * be more clever with caching (eed6b68a3) 2015-03-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (36d36acd9) 2015-03-03 CI Train Bot * Resync trunk. (201a0d0e9) 2015-03-03 Michael Terry * Merge unifyShellTests (a14798e2e) * Update copyright years (33b3eab19) 2015-03-03 Daniel d'Andrada * And one more for good measure (e74a0bc09) * Will that empty commit make Jenkins rebuild? (ec69f24e9) 2015-03-03 Albert Astals Cid * Require binaries and .pc files we call from code (724dc49a0) 2015-03-03 Michael Zanetti * fix typo in comment (0b8e9b83a) * performance improvements (5e9525c46) 2015-03-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4b63d6be7) 2015-03-02 Leo Arias * Removed the unnecessary object. (81706381e) * Merged with trunk. (a1582195c) 2015-03-02 Michael Terry * Some minor fixes (34baeb4ac) * Make sure that our greeter lockout screen knows that time passes even when suspended (a67e41cb3) 2015-03-02 Daniel d'Andrada * Darkened area behind indicators menu should eat input until it fully disappears (6a4c4e203) 2015-03-02 Michał Sawicz * Two more instances (18a2d70cb) * Use target instead of custom ld arguments for linking (add375bce) 2015-03-02 Daniel d'Andrada * Make MouseTouchAdaptor controllable from within QML (b9a4bb046) 2015-03-02 CI Train Bot * Releasing 8.02+15.04.20150302-0ubuntu1 (fb08c611c) 2015-03-02 Daniel d'Andrada * Stabilize some Shell qml tests (51ebfee8f) 2015-03-02 Chris Townsend * Add a wrapper for handling the /org/gnome/SessionManager/EndSessionDialog DBus object used by indicator-session. This allows indicator-session to properly talk to the Unity 8 session management functions. Fixes: #1392187 Approved by: Albert Astals Cid (da3f75a0a) 2015-03-02 Daniel d'Andrada * Remove enums and properties that doesn't exist in the real ApplicationManager (7f8c6efed) * Add NO_TESTS cmake option to skip tests and therefore speed up builds Approved by: Michael Zanetti, Albert Astals Cid (daa570887) 2015-03-02 Michael Terry * Make the draggable part of the right edge (during the tutorial) a constant size, instead of having it grow and shrink as the spread peeks out from the side. Approved by: Albert Astals Cid (4a1182000) 2015-03-02 Josh Arenson * Create a PhysicalKeyMapper to handle all physical/hardware keys Fixes: #1390393 Approved by: Albert Astals Cid (22b61ccb0) 2015-03-02 Chris Townsend * Make the Unity 8 session dialogs behave in the same fashion as Unity 7. From indicator-session: - Clicking "Log Out" will now present a dialog to "Lock", "Log Out", or "Cancel". - Clicking "Shut Down" will now present a dialog to "Reboot", "Shut Down", or "Cancel". Fixes: #1416074 Approved by: Albert Astals Cid (6ac4a05ff) * Allow for proper logout session management. This uses the EndSession() Upstart DBus method on the current session bus. Fixes: #1360316 Approved by: Albert Astals Cid (79aed6bde) 2015-03-02 Albert Astals Cid * Don't precache items that are outisde the 1.5*height buffering area Fixes: #1410131 Approved by: Andrea Cimitan (90194d157) 2015-03-02 Mirco Müller * Replicated the bare minimum of env-var argument-setup from process-helpers.py in class LaunchUnityWithFakeSensors. (9704a4988) 2015-03-01 Charles Kerr * re-enable skipped rotation lock test. (82072fc9d) 2015-03-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (45c4ba4d4) 2015-02-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0ae1c26f8) 2015-02-27 Michael Terry * Mark pam test as non-gui (81d74c8c5) 2015-02-27 Robert Bruce Park * Launchpad automatic translations update. (31da83ee2) 2015-02-27 Mirco Müller * Fake sensor changes still don't affect shell's orientation and angle properties... reshuffled test a bit. (1c48913de) *sigh* hard-coded using local unity8-binary for the moment... pulling orientation and rotation works now, but the changes of the fake-sensors no longer affect the properties orientation and rotation... wtf (6dfd34ffb) 2015-02-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (22c5c4d3b) 2015-02-26 Daniel d'Andrada * Fix warnings when launching tutorial (e6323fed3) 2015-02-26 Michael Terry * Be more emphatic about cancelling a PAM thread (aeb089874) 2015-02-26 CI Train Bot * Releasing 8.02+15.04.20150226-0ubuntu1 (b91dd672d) 2015-02-26 Pete Woods * Only set scopes active when the screen is on Fixes: #1422879 Approved by: Albert Astals Cid (670e0e3df) 2015-02-26 Michael Terry * Handle dash closing while the wizard is open (bb4710f87) 2015-02-26 Daniel d'Andrada * Wait for greeter to stabilize before running test and remove unused function (4bdf94bd6) 2015-02-25 Michael Terry * Time out wizard pages, so we don't leave user sitting there if bad code exists (242946d42) * Only unlock modems after we're done with the wizard (60faf713e) 2015-02-25 Daniel d'Andrada * Make tst_Shell absorb tst_TabletShell (a2eea1234) * merge stabilizeShellTest (c3b90000f) 2015-02-25 Mirco Müller * Get rid of non-working helper-functions and unused print()s. (9127bf727) 2015-02-25 Daniel d'Andrada * Update tst_login and add a helper showLogin() function (a16be3fb9) 2015-02-25 Chris Townsend * Update .pot file for new strings in session dialogues. (73eb65d4a) * Merge trunk. (b638e904e) * Merge trunk. (b822ed26a) 2015-02-25 Daniel d'Andrada * Stabilize some Shell qml tests (cd473e830) 2015-02-25 Mirco Müller * Pulling orientation finally works. (3b2cac861) 2015-02-24 Albert Astals Cid * Merge (14ef5172d) 2015-02-24 CI Train Bot * Releasing 8.02+15.04.20150224-0ubuntu1 (23d9094bb) 2015-02-24 Albert Astals Cid * Fix some warnings in Mock Notifications (72dac6937) * Do not declare the hostname property twice Approved by: Michael Terry, Andrea Cimitan (f13548727) 2015-02-24 Michael Terry * Wait for libqofono to finish initializing before we decide whether to skip the wizard's SIM page or not. (90d88fe50) * Silence a couple qml warnings. Fixes: #1423286 Approved by: Daniel d'Andrada (51a7e7f90) * Move the gschema file to data/ and install it via cmake, not dpkg. Approved by: Albert Astals Cid (34e82f699) 2015-02-24 Albert Astals Cid * Make qmluittests pass with Qt 5.4 (41e34e213) 2015-02-24 Andrea Cimitan * Add maximumLineCount for subtitle label in cards Fixes: #1414870 Approved by: Albert Astals Cid (286d082e7) 2015-02-24 Albert Astals Cid * Dash manage hint should not be visible in previews+test Fixes: #1422260 Approved by: Andrea Cimitan, PS Jenkins bot (d89bf7379) * Update qmltypes Approved by: Andrea Cimitan (f6c89b763) * Preserve the aspect ratio for the card attribute images Fixes: #1411751 Approved by: Michał Sawicz, Andrea Cimitan (e26c2d605) 2015-02-24 Ying-Chun Liu * Add Autopilot Notification helper. Approved by: Leo Arias, Allan LeSage, Albert Astals Cid (af668d5cc) 2015-02-24 Michael Zanetti * enable revealing the launcher by hitting the left edge using the mouse Approved by: Albert Astals Cid (0fbe56192) 2015-02-24 Michael Terry * Refactor the greeter code to be more compartmented and isolatable. (a720b0b60) 2015-02-24 Albert Astals Cid * Fix cardcreator test (915ceea19) * Merge (73c289ebe) 2015-02-23 Leo Arias * Updated the copyright year. (f52a87548) * Updated the setup version. (af053d18e) * Use the right py3 binary. (a77729762) * Removed the python dep. (ea253638c) * No need for python depends. (14e508921) * No need for py2 setuptools. (202481558) * Removed the py2 support. (5ec99b3cf) 2015-02-23 Michael Terry * Simplify behavior launcher/greeter/dash when doing a long-left-drag; now we never show dash while locked (3b68792e9) 2015-02-23 Pete Woods * Only set scopes active when the screen is on (6c7ea5747) 2015-02-23 Michael Zanetti * fix enabled condition (07d571d54) 2015-02-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f84db1bc5) 2015-02-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0bd3ebfd1) 2015-02-20 Daniel d'Andrada * Remove enums and properties that doesn't exist in the real ApplicationManager (87f587dac) 2015-02-20 Albert Astals Cid * Fix some warnings in Mock Notifications (014a6cf34) 2015-02-20 Mirco Müller * Issue with proxy object seems to be solved, but still can't get hold of shell object from unity with fake sensors. (e2b0c1105) 2015-02-20 Albert Astals Cid * Don't declare the hostname property twice (e1a79d87b) * fix indent (9e00d4f83) 2015-02-20 Michael Zanetti * quick'n'dirty way to open/close the indicators via mouse (020210528) 2015-02-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (535b1f1af) 2015-02-19 Michael Terry * Add better test support (f5acba4ed) * Wait for libqofono to finish initializing before we decide whether to skip the wizard's SIM page or not. (7d501b210) 2015-02-19 Michael Zanetti * merge trunk (3eea189c5) * fix the timer usage (8d65f430d) 2015-02-19 Daniel d'Andrada * Add NO_TESTS cmake option to skip tests and therefore speed up builds (7267c372b) 2015-02-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (35857220c) 2015-02-18 Michael Terry * Keep tutorial right edge a constant size (3780624e6) * Fix a couple qml warnings (bc94814c3) * Don't enable backspace pin button when not supposed to (4619682d3) 2015-02-18 Mirco Müller * Trying to pull orientation from shell. (7f9bc9a2a) 2015-02-18 Albert Astals Cid * More ifdefs (8f0438c7c) 2015-02-18 Michael Terry * Whoops, remove reference to ShellWithPassphrase (62c91bb0d) 2015-02-17 Michael Terry * Fix shell tests, by reverting a small cleanup I tried to make (6a2af7bdd) * Clean up installation of gschema file (67cc3c43b) * More nits (93bc7e130) * More nits (015ad2dcf) 2015-02-17 Albert Astals Cid * Make sure there's a window (510bd7748) * Wait for the button to be enabled before tapping on it (abeb27ee0) 2015-02-17 Michael Terry * Fix some review nits (dcc22c001) 2015-02-17 Ying-Chun Liu * Fix minor issues. (e59897b36) 2015-02-17 Michael Terry * Merge from trunk (313761a3b) 2015-02-17 Albert Astals Cid * Make tests pass with Qt 5.4 (ce728e3a8) 2015-02-17 Andrea Cimitan * Add maximumLineCount: 1 for subtitle label in cards (f2c836c3a) 2015-02-17 Albert Astals Cid * Merge (0b54e6540) 2015-02-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1e7da1728) 2015-02-17 Michał Sawicz * Fix signal more (9345a79ce) 2015-02-16 Michał Sawicz * Rename signals properly. (5612caf86) * Accept power events regardless of power state, don't trigger screenshots if screen off (4abadeaab) * doc-- (fadbcfa08) * doc++ (9d90234f3) * Update copyright dates (d24c20327) * Extend tests to verify long press behavior (1157eb982) * Refactor to use signals (376c593a6) * Refactor to use signal for power and full events (7888692ca) * Use volume instead of power key again (7accc0b18) * Merge trunk. (5bb641c63) 2015-02-16 Robert Bruce Park * Releasing 8.02+15.04.20150216.1-0ubuntu1. (61022bca8) 2015-02-16 Mirco Müller * Forgot import (47664ef61) * Moved over shell-rotation AP test after fixing all the updated related branches and merge-conflicts along the way *sigh* (4f47837df) * Merged the fake platform-sensor module branch. (fccf496d8) 2015-02-16 Timo Jyrinki * No-change rebuild against Qt 5.4.0. (2a91807aa) 2015-02-16 CI Train Bot * Releasing 8.02+15.04.20150216.1-0ubuntu1 (f3e32b38c) * No-change rebuild against Qt 5.4.0. (77b3b7961) 2015-02-16 Albert Astals Cid * Make sure the height it's the height it will have (a5e368075) 2015-02-16 Andrea Cimitan * Set sourcesize for scopes images in manage dash Approved by: Albert Astals Cid (742220860) 2015-02-16 Albert Astals Cid * Hardcode tranlsation for internal.location field Fixes: #1393438 Approved by: Andrea Cimitan, PS Jenkins bot (4bf946553) 2015-02-16 Michael Zanetti * Cleanup cmake warning about missing Qt5Sql module Approved by: Michał Sawicz, PS Jenkins bot (857103c84) 2015-02-16 Andrea Cimitan * Fix temp scopes opening temp scopes, correctly close previously opened temp scope with its preview Fixes: #1410337 Approved by: Albert Astals Cid (fb8bb42c8) 2015-02-16 Albert Astals Cid * Test for bug #1316660 (b85001f05) 2015-02-16 Michał Sawicz * Resync rebuild for Qt 5.4 (6ee22c6c0) 2015-02-16 Albert Astals Cid * line-- (200401a8b) 2015-02-16 Andrea Cimitan * Fix testPreview (3ce148083) 2015-02-16 Albert Astals Cid * Dash manage hint should not be visible in previews+test (6bd9cff57) 2015-02-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5291640af) 2015-02-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (af66475d5) 2015-02-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7fbd6cd5f) 2015-02-13 Daniel d'Andrada * Finally consistent and crash free side stage behavior for MWC (13adf5845) 2015-02-13 Andrea Cimitan * merge el trunko (d49a3962a) * Bump version (1b9541080) 2015-02-13 Ying-Chun Liu * Move to main_window. Update test_notifications. (ca6ddf282) 2015-02-13 Andrea Cimitan * Use shape item instead (c15a70279) * Set sourceSize for images of scopes in manage dash (9ecbdff0c) 2015-02-13 Albert Astals Cid * We need to wait for heights here too (a93f8702f) * Make sure the height it's the height it will have (fd45a5204) * Update pot (1be067b87) * Merge (f6c200d66) * Update qmltypes (aa807a1a3) 2015-02-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (23c05f9d0) 2015-02-12 Michael Terry * Remove (unneeded?) focus hack (2fa6015f4) 2015-02-12 Daniel d'Andrada * Merge trunk (d2d81e430) 2015-02-12 Michael Terry * Add unused tst_ShellWithPassphrase.qml file, to allow tryShellWithPassphrase (5c19c620f) 2015-02-12 Albert Astals Cid * Add explanations for the width: code (37d25d55a) 2015-02-12 Andrea Cimitan * Small tweak (481643e65) 2015-02-12 Michael Terry * Merge from trunk (7b1fb78ff) 2015-02-12 Albert Astals Cid * Protect against SVG (8c77d71e0) 2015-02-12 Michael Terry * Add tiny test to confirm that we don't just jump to launcherOffset = 0 (0c32f9f3b) 2015-02-12 CI Train Bot * Resync trunk (e0f1af46b) 2015-02-12 Michael Terry * Stop some warnings from being printed (acb07d866) * Animate letting go of the coverPage (ccb52c5d0) 2015-02-12 Andrea Cimitan * As suggested (d84064b48) 2015-02-12 Michael Terry * Add test and comment for the relied-upon behavior of emitting a focus id changed signal even when we focus the same app (e6fa1b8e1) * Consolidate app-switching logic (ca39b8b44) * Shorten a couple long lines (6038c0816) 2015-02-12 Andrea Cimitan * as review (138d3fe20) 2015-02-12 Albert Astals Cid * Two other places where we want to maintin the AR (8e50c6e39) 2015-02-12 Michael Zanetti * Cleanup cmake warning about missing Qt5Sql module (20555ced1) 2015-02-12 Albert Astals Cid * Preserve the aspèct ratio for the card attribute images (6817a0ede) 2015-02-12 Andrea Cimitan * remove console log (883eed0d3) * bump versions (6f073d01b) * More fixes (9a577b88a) 2015-02-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4ba79cd02) 2015-02-12 handsome_feng * make left swipe reset search string (61e488d11) 2015-02-11 Josh Arenson * Refactor code; Add test for order-independent screenshot button presses (ae03088a9) 2015-02-11 Andrea Cimitan * Moar fixes (bf1bba223) * Merged albert branch, more implementations on the mock (325062d0c) 2015-02-11 CI Train Bot * Releasing 8.02+15.04.20150211-0ubuntu1 (6d4804c27) 2015-02-11 Michael Terry * Clip the infographic to its bounding box, instead of letting it bleed past the welcome page (visible when dragging the welcome page to the side). (dd316acd4) * Support switching the indicator profile on the fly, as the greeter appears and disappears. (But don't use it yet, not until the settings panel to control this is in place.) (7754b789d) 2015-02-11 Michael Zanetti * Fix resizing windows when making it smaller than minSize and then larger again. Approved by: Daniel d'Andrada, PS Jenkins bot (d6b7ae599) * save and restore window size and position Approved by: Daniel d'Andrada, PS Jenkins bot (f8ff2cf98) 2015-02-11 Michael Terry * Add new right-edge and bottom-edge screens to the first-boot edge tutorial Fixes: #1383297 Approved by: Michael Zanetti (d71e55bde) * Redesign tutorial to match latest spec (just removing obsolete pages and redesigning look, no new pages yet) (2422d6d02) 2015-02-11 Daniel d'Andrada * Tapping on a surface gives it active focus (dac85dc09) * Improve Launcher tests, making them more reliable Approved by: Michael Zanetti, PS Jenkins bot (9f7617d46) 2015-02-11 Michael Zanetti * Launcher fixes for windowed mode (9f25efecd) 2015-02-11 Mirco Müller * Allow swipe-to-dismiss for contracted snap-decision notifications, interactive notifications and ephemeral notifications. Fixes: #1334855, #1355422 Approved by: Michał Sawicz, PS Jenkins bot, Albert Astals Cid (d4a51780d) 2015-02-11 handsome_feng * makes the header fully reveal when tapping the search icon. Fixes: #1379327 Approved by: Albert Astals Cid (692e5670f) 2015-02-11 Daniel d'Andrada * Make indicators bar eat all events (d9c2596e6) 2015-02-11 Michael Zanetti * Add an AccountService based launcher model to be used with split greeter Approved by: Michael Terry, Michał Sawicz (5f76e1331) 2015-02-11 Michael Terry * Merge from tutorial-new-screens (5a83e34d5) * Merge from tutorial-refactor (4114c7901) * Rebase on lp:~dandrader/unity8/fixSurfaceActiveFocus (df795f3eb) * Go back to simple clip: true (4892fa42b) * Restore behavior animating LoginList height (03805497c) 2015-02-11 Michael Zanetti * and those two too (fbf427a1d) * and another two (d67b054e6) * update more copyright headers (31d90b567) * update copyright headers (955296e25) * merge trunk (35bcfccd2) 2015-02-11 Michael Terry * Only clip while swiping the greeter (b1394b687) 2015-02-11 Michael Zanetti * bump required launcher api version (96870d59e) * disable the MouseArea in case we revealed the launcher by a touch drag (f9e9c6e60) * merge trunk (17ee6993d) * only store when destroying the scene (63ca913de) * dropped unused variables (fe457e378) * merge prereq (6d88404d6) * create cache dir if it doesn't exist (57eb65698) 2015-02-11 Ying-Chun Liu * fix whitespace (3a568058c) 2015-02-11 Albert Astals Cid * Verify to tryCompare (eaa551fdb) 2015-02-10 Josh Arenson * Add AP test (eab826ea7) 2015-02-10 Michael Terry * Make fake TestView more obviously intentionally-blank (026d77e47) * Small cleanups (1d3cf0bf1) * More comments (ebb658d56) * Clip infographic to the welcome screen (eba53748a) 2015-02-10 Michael Zanetti * fix init code (ab01b517c) * improve debug print (7d9f89147) * drop localstorage qml plugin dep (ff07f5f83) * replace WindowStateStorage with a threaded c++ implementation (ec57fb3fa) 2015-02-10 Michael Terry * Add a C++ test for switching profiles (84782dfdd) 2015-02-11 Ying-Chun Liu * Add Notification Helper. (90b43c01e) 2015-02-10 Albert Astals Cid * Test for bug #1316660 (cbf0b891f) 2015-02-10 Michael Zanetti * make the moveResizeArea visible (90326328a) * init fake window (0e2737425) 2015-02-10 Albert Astals Cid * TODO++ (23f472f4e) * Hack "Enable location data" translation (240184b74) 2015-02-10 Michael Zanetti * drop debug print (9ee23dfa5) * drop pointless mapToItem (bfa9984f6) 2015-02-09 Michael Zanetti * implement onlyPinned property (191c091ea) 2015-02-09 Michael Terry * Wait until userlist settles at beginning of TabletShell test (f89c6ccd1) 2015-02-09 Albert Astals Cid * Merge (eb5f6b0d4) 2015-02-09 Michael Zanetti * fix install step for greeter plugin (4c28595d5) 2015-02-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3f18c2277) 2015-02-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eef6def9f) 2015-02-06 Michael Terry * Fix autopilot harder (698a2ad41) * Delete bogus leftover bzr file (07d4cc33a) * Back out greeter changing profile -- we don't have proper settings support for that yet (d5601791d) * Merge from trunk (d0b854799) 2015-02-06 Mirco Müller * Make sure all rendering operations are completed before doing the swipe-dismiss-checks, thus the tests also pass on very slow (jenkins) systems. (c318def67) 2015-02-06 Michael Terry * Fix tutorial autopilot test with new greeter refactor (3c8489936) 2015-02-06 Daniel d'Andrada * Improve Launcher tests, making them more reliable (5f946a140) * Merge lp:~mzanetti/unity8/launcher-fixes (9198b6ce0) * Merge trunk (2a61c5075) * Fix tst_Launcher.qml (69cfd67e7) 2015-02-06 Michael Zanetti * fix comment (a2369b2d4) * enable revealing the launcher by hitting the left edge using the mouse (72a43b8e4) 2015-02-06 Daniel d'Andrada * Merge lp:~mzanetti/unity8/launcher-fixes (a5bf8ebf8) * Fix bug when switching from landscap app to portrait app via left-edge (9e65f327d) 2015-02-06 Michael Zanetti * fix resizing when making it smaller as minSize and then larger again (9d3a81620) * revert this... breaks it (35cd0a3bb) * initiazlize the loader's size (b84ad6b86) * update copyright header year (7c2f475fa) 2015-02-05 Michael Terry * Fix another test (fb2063f21) * Merge from tutorial-new-screens (953f629f1) * Merge from -refactor (9f9d0f1d9) * Fix tutorial qmluitests with the new lightdm mock (49dce191f) * Merge from -refactor (efa9eadeb) * Merge from trunk (c1dd6a5b5) * Merge from tutorial-new-screens (7dfc54995) 2015-02-05 Michael Zanetti * rename file too (e41274ccb) 2015-02-05 Mirco Müller * Merge with trunk. (8f61a8195) 2015-02-05 Daniel d'Andrada * Merge trunk (9800f80e3) 2015-02-05 Michael Zanetti * cleanup (8e3373d8f) * fix some issues when rotating (767a88cc8) * take margins into account when snapping (5fda2b4a6) 2015-02-05 CI Train Bot * Releasing 8.02+15.04.20150205-0ubuntu1 (958eebf00) 2015-02-05 Michael Terry * Don't accept multiple "Finish" clicks during the last step of the wizard (ed6e5e130) 2015-02-05 Andrea Cimitan * Background needs to be specified to be visible in horizontal cards Fixes: #1411748 Approved by: Albert Astals Cid (ddb61a398) 2015-02-05 Daniel d'Andrada * Don't show() the lockscreen if it's already being shown (266b7ecae) 2015-02-05 Andrea Cimitan * Fix continue button in wifi wizard page, adds qml-module-qtsysteminfo as unity8 dep Fixes: #1363400 Approved by: Albert Astals Cid (881cb8188) 2015-02-05 Albert Astals * Implement proper updateRanges for horizontal items (i.e. Carousel, Horizontal List) (3181a0246) 2015-02-05 Daniel d'Andrada * Ensure the greeter password field is not covered by the keyboard Approved by: Michał Sawicz (b16213327) * Unify all liblightdm mocks (27613f3dd) 2015-02-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (54b7fd491) 2015-02-05 handsome_feng * use showHeader() instead of positionAtBeginning() (10d67adc9) 2015-02-04 Josh Arenson * Do not accept volume events. (d95d19f39) 2015-02-04 Daniel d'Andrada * Fix tests (48f553363) 2015-02-04 Michael Zanetti * uppercase actually (2f488d46a) * update launcherItems property naming to be camelcase (e030165c4) 2015-02-04 Daniel d'Andrada * Merge trunk (95fb747d1) * Upon shell rotation, rotate all app windows that would not be resized by it (02a4bdf7b) 2015-02-04 Michał Sawicz * Add workaround for gcc ICE. (65cdad7c3) 2015-02-04 Michael Zanetti * update dependencies (776cffbc1) 2015-02-04 Andrea Cimitan * whitespace (d6e78b75f) * fixed test (804cd8000) * Moar changes (5b2c4427c) 2015-02-04 Michael Zanetti * and again (57566ecf2) * better naming part 2 (654389bdc) * install the new plugin (4202681f5) * sort includes (07e1477fc) * merge trunk (16f7faba8) 2015-02-04 Daniel d'Andrada * Improve the side stage rotation situation (ad2043a27) 2015-02-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7fce28495) 2015-02-03 Michael Zanetti * better naming (d4cac7b5b) 2015-02-03 Michael Terry * Fix more autopilot failures (849c086e9) * Merge from -refactor (1b9f52512) * Update autopilot (af1f8ef46) 2015-02-03 Andrea Cimitan * As review (553e4b02b) 2015-02-03 Daniel d'Andrada * Merge trunk (ab4dec7be) * Inch towards a sane side stage rotation story (b9a990f18) * include(FindPkgConfig) only once, in the root CMakeLists.txt (0bfe3cba3) 2015-02-03 Chris Townsend * Make the Unity 8 session dialogs behave in the same fashion as Unity 7. From indicator-session: - Clicking "Log Out" will now present a dialog to "Lock", "Log Out", or "Cancel". - Clicking "Shut Down" will now present a dialog to "Reboot", "Shut Down", or "Cancel". (e048bd051) * Add tests for the DBusGnomeSessionWrapper. Re-work the original DBus session test. (520e4ce51) 2015-02-02 Michael Terry * Fix autopilot tests (24738c020) * Fix some OSK/focus issues with NarrowMode (bc1218a22) 2015-02-02 Daniel d'Andrada * Tablet stage with a side stage app rotate and crash (2e51ce1d6) * Check if the appId string is not empty before using it (6c68e0cbe) * s/isFullscreen/fullscreen (eb8eb74d3) * Remove leftover code (fa7f2e005) * Merge lp:~dandrader/unity8/unifyLightDMMocks (a95cf67a9) * Make use of existing function (5e3edac8c) 2015-02-02 Michael Terry * Fix whitespace (86695120e) * Update years (dd504a066) 2015-02-02 handsome_feng * fix bug 1379327 (1d031f17a) 2015-02-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (928f819aa) 2015-02-01 Michael Terry * Add tease to bottom edge slider (a8558bcec) * Merge from -refactor (e27065e0b) * Don't let user interact with launcher when not 'visible' (1e7f11b56) * More fixes/cleanup (8a968c8e2) 2015-02-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (09142bb3b) 2015-01-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2b4307f05) 2015-01-30 Michael Terry * more test fixes (e372307e9) * More test changes (f8c442fff) * Make spread pages slightly smaller (b495a4258) 2015-01-30 Chris Townsend * Add a wrapper for handling the /org/gnome/SessionManager/EndSessionDialog DBus object used by indicator-session. This allows indicator-session to properly talk to the Unity 8 session management functions. (a93817983) 2015-01-30 Andrea Cimitan * Oops (4547552f8) * Test (aacfcc89e) 2015-01-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (62a3e8249) 2015-01-29 Michael Terry * Misc small fixes (e5dd76286) 2015-01-29 Josh Arenson * [ Sebastien Bacher ]; Set text hint property for the messaging menus inline reply widget (LP: #1389234) [ Ying-Chun Liu ]; Added an initial set of autopilot tests for the display indicator. [ Nick Dedekind ]; Removed filtering the indicator model by visibility. [ Michael Zanetti . fixes left edge drag when in spread [ Albert Astals Cid ] * Fix ninja build in a different way The previous one was adding rpath to some .so that broke our tests that use LD_LIBRARY_PATH to change which one is picked up [ Leo Arias ]; Added an initial set of autopilot tests for the display indicator. (c236e4bbf) 2015-01-29 Michael Terry * Merge from trunk (558e6ae58) * test cleanup (c88018a4f) * More test work (33c111f10) 2015-01-29 Michael Zanetti * drop example (740fc55c6) * fix some review comments (28025f090) 2015-01-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d565cd23b) 2015-01-28 Michael Terry * Disable final page when user clicks Finish (f83cfbe47) 2015-01-28 Michael Zanetti * update copyright header (766c29054) * save and restore window size/position (f4c608f0a) 2015-01-28 Michael Terry * Merge from -refactor (7f9482a92) * Merge from trunk (539b3758d) 2015-01-28 Daniel d'Andrada * Tapping on a surface gives it active focus (ba68d27c2) * Remove debug left overs (b3809cb32) * Fix tst_SessionContainer.test_childSessionDestructionReturnsFocusToSiblingOrParent() (60dee0fe5) * Fix bad whitespace (05f27736e) * Fix surface active focus handling (fbbfff9db) 2015-01-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c780bde7a) 2015-01-27 Daniel d'Andrada * Merge trunk (957d57445) 2015-01-27 Chris Townsend * Fixed another whitespace issue. (486441e4d) 2015-01-27 CI Train Bot * Resync trunk (3e9370161) 2015-01-27 Chris Townsend * Fix some whitespace issues Jenkins is complaining about. (fde550d3a) 2015-01-27 Andrea Cimitan * merged (8924fe730) 2015-01-27 Mirco Müller * Delete trailing newlines. (9f091eb0d) 2015-01-26 Chris Townsend * Allow for proper logout session management. This uses the EndSession() Upstart DBus method on the current session bus. (9bc1cc4db) 2015-01-26 Mirco Müller * Don't check for sound-playback if check is not intended. (b5fc9db4b) 2015-01-26 Daniel d'Andrada * Update tst_PhoneStage (a1803c36e) * Make indicators bar eat all events (2c0ab6019) * Make indicators bar eat all events (741288f16) 2015-01-26 Mirco Müller * Don't fix the snapDecisionProxyModel-hack in this branch. It'll be kept in a seperate one to not futher block this one from being MP'ed. (ea6d2df24) * Merged with trunk. (9ecb29f71) * Tighten ActionModel a bit. (e2781714a) * Stripped down MockNotificationModel further. Checks of the Audio-state still fail... no idea why. (1b7c3ae11) 2015-01-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0af20857e) 2015-01-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a1216699d) 2015-01-23 Daniel d'Andrada * Ensure the greeter password field is not covered by the keyboard (36638469f) * Ensure the greeter password field is not covered by the keyboard (68730ea50) * Merge lp:~dandrader/unity8/unifyLightDMMocks (b88379a4d) 2015-01-23 Leo Arias * Removed / (45638d998) 2015-01-23 Mirco Müller * Make sure a click on the button with ok_id does trigger the notification to be removed from the model. Why the button in question reports a size of 0x0 and thus mouseClick() fails is currently beyond me. (4bf0d3d7d) 2015-01-23 Daniel d'Andrada * Add Shell property used by autopilot tests (29f000c8c) 2015-01-23 CI Train Bot * Releasing 8.02+15.04.20150123.3-0ubuntu1 (ac9b57670) 2015-01-23 Albert Astals Cid * Fix ninja build in a different way (b5e86cf8d) 2015-01-23 Nick Dedekind * Removed filtering the indicator model by visibility. Approved by: Daniel d'Andrada (a6d77df45) 2015-01-23 Ying-Chun Liu * Added an initial set of autopilot tests for the display indicator. Approved by: Albert Astals Cid, Allan LeSage (cea4e0418) 2015-01-23 Michael Zanetti * fixes left edge drag when in spread (458bd19a2) 2015-01-23 Sebastien Bacher * Set text hint property for the messaging menus inline reply widget Fixes: #1389234 Approved by: Nick Dedekind (cb65cef09) 2015-01-23 Andrea Cimitan * Some testers reported currentNetworkMode being sometimes set after the networkName changes (on RTM), let's add a signal, won't hurt (ed2323a07) 2015-01-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (66850b56e) 2015-01-22 Leo Arias * Use a thread to restart unity. Added a test that uses orientation. (588c30493) * Wait for unity to start running. (16e8d0a65) * Merged with prerequisite. (3922cc678) * Use threading to start unity. (6935d11a9) * Super setup should go first. (c16c237f9) * Set the environment variable with initctl. (9d43e108f) * Fixed the import of Equals. (6db04be21) * Fixed the class name in super call. (1b325e8e5) 2015-01-23 Ricardo Mendoza * Conform to python3 spec (a22263062) * Update copyright (d1df3223a) * Take proxy, better naming (8e975832e) * Create sensors fixture (739eb4565) 2015-01-22 Josh Arenson * Allow shell to determine event acceptance on key release from outside (803540cc7) 2015-01-23 Ricardo Mendoza * Improve code (3d086c982) 2015-01-22 Josh Arenson * Move media key logic and powerd logic into PhysicalKeyFilter (5a061b074) * [ Michael Terry ]; Don't show any power dialogs while the screen is off. This is a band-aid to avoid the symptom, while we still investigate the source of why the screen doesn't turn on (and why we seem to not handle the power-button-release event). (LP: #1409003, #1410830. Don't refocus the dialer-app when a call is started by the user. Because of how qtmir works, this would cause the dialer-app to unfocus momentarily, causing interface oddities for the user. (LP: #1413065) [ CI Train Bot . Resync trunk [ Albert Astals Cid ]; Build with ninj. Fixes for Table Preview Widget (LP: #1410420) [ Michael Zanetti ]; Add support for earpiece media buttons (LP: #1398427); Add a WindowMoveResizeArea and tests for it [ Andrea Cimitan ]; support background on horizontal cards with summary (LP: #1393008) [ Gerry Boland . DashCommunicator: replace QDBusInterface with a non-blocking simplification which does not introspect the service on creation (LP: #1403508) [ Leo Arias . Added an autopilot test for the edges demo. [ Albert Astals ]; Don't show the manage dash pull up arrow on temp scopes (LP: #1401869); Remove hack, newer Qt already support keyClick(char); Tests: Add Qt 5.5 removal TODOs; Make sure we use fPIC when compiling files for the static library too; Make sure changing a scope doesn't trigger creation/destruction of delegates until it's finished (LP: #1410122) [ Michael Zanetti ]; patch debian/control file before using it to make it work with mk- build-deps [ Michał Sawicz ]; We don't need the SIGSTOP in main() any more.; Add a test to make sure the shell always starts disabled until it is enabled by a complete PAM interaction. [ Leo Arias ]; Added an autopilot test for the edges demo. [ Nick Dedekind . Unhook Lights interface from indicator widgets (LP: #1385331) [ Albert Astals ]; Fix going to scopes when the Manage Dash is open (LP: #1403464. QSortFilterProxyModelQML -> UnitySortFilterProxyModelQM. Clip the Scopes List header; Fix ScopesList not being under finger; Make waitForRendering with no item fail instead of crash; Disable Dash horizontal scroll while Navigation InverseMouseArea is pressed (LP: #1403048. Test: Make sure the mouse area is enabled before clicking into it; Test: We actually need to click on the customBackButton and not on backButton; Test: By default mouseX act on the middle [ Michael Terry ]; Don't block handling power events on loading the greeter's qml and the background image.; Show OSK above the wizard. (LP: #1401213); Unify the name of the Greeter DBus test, make it use our standard binary test macro (which also nicely exports xml results), and make the test a little more robust against timing issues.; Add a test to make sure the shell always starts disabled until it is enabled by a complete PAM interaction. [ Martin Pitt . tests: Fix Notify.Notification.add_action invocation to work also with unpatched libnotify API. (LP: #1223401) [ Rodney Dawes ]; Depend on :native version of g++ to allow cross-compiling to work. (LP: #1353855) (955ba001b) 2015-01-22 Ricardo Mendoza * Add python module to control fake platform API sensors (b305db54d) 2015-01-22 Mirco Müller * This signal-spy is not used. (1c345cf8e) * Trying to get rid of the FIXME/hack in tst_Shell.qml regarding the focus-reset when notifications closed. (eced120ea) 2015-01-22 Albert Astals Cid * Fix ninja build in a different way (eb51e69fe) 2015-01-22 Andrea Cimitan * let's add also for runtime (a9c30acb8) * fix for jenkins (e2fe6b21d) 2015-01-22 Daniel d'Andrada * Just to trigger a new build in Jenkins (d86d36817) 2015-01-22 Andrea Cimitan * As review (326b96a03) 2015-01-22 Mirco Müller * Avoid emitting signal completed in the MockNotification, so notifications don't get removed from the model and can still be acted upon/tested further... some test-order reshuffle done. (03082e324) * Changed checks for passed action-id string. Also had to remove a waitForRendering() as it was causing a segfault... wtf (2559bdd43) 2015-01-22 Ying-Chun Liu * use value_string instead of format string. (d1263aa1e) 2015-01-22 Andrea Cimitan * Horizontal art and summary has no background, added test (238e16305) 2015-01-22 Daniel d'Andrada * Merge trunk (f0a8a3006) 2015-01-22 Sebastien Bacher * refresh the translations template (015c613d6) * update to trunk (6446a97ab) 2015-01-22 Daniel d'Andrada * Merge trunk (b8132bc37) * Simplify test code (134d21e1a) 2015-01-21 CI Train Bot * Releasing 8.02+15.04.20150121.2-0ubuntu1 (24e1c78c6) 2015-01-21 Michael Terry * Don't refocus the dialer-app when a call is started by the user. Because of how qtmir works, this would cause the dialer-app to unfocus momentarily, causing interface oddities for the user. Fixes: #1413065 Approved by: Bill Filler, Michael Zanetti, Gustavo Pichorim Boiko (54c10193b) 2015-01-21 Michael Zanetti * Add a WindowMoveResizeArea and tests for it (7564d82d8) 2015-01-21 Albert Astals Cid * Fixes for Table Preview Widget Fixes: #1410420 Approved by: Michael Zanetti (baa416274) * Build with ninja (55426c655) 2015-01-21 Michael Zanetti * Add support for earpiece media buttons Fixes: #1398427 Approved by: Michael Terry (10041cfad) 2015-01-21 Michael Terry * Don't show any power dialogs while the screen is off. This is a band-aid to avoid the symptom, while we still investigate the source of why the screen doesn't turn on (and why we seem to not handle the power-button-release event). Fixes: #1409003, #1410830 Approved by: Gerry Boland (47c036e4f) 2015-01-21 Mirco Müller * Doh... (a115eaf22) * Moved action-invocation signaling to C++-plugin. (342c203d6) * Removed some debugging insertAction()s from MockActionModel, corrected the swipe-to-dismiss check. (67f19bda9) 2015-01-21 Michael Terry * Don't try to re-focus the dialer-app when callManager.hasCalls changes (0d13a6f62) 2015-01-21 Nick Dedekind * fixed MenuContent test (cf54e894a) 2015-01-21 Daniel d'Andrada * Don't show() the lockscreen if it's already being shown (cd90ce01d) 2015-01-21 Mirco Müller * Got rid of the binding-loop for nid and further adapted the automatic test to the new MockNotification/MockNotificationModel... 8 of 11 pass... getting close. (ac7fe156d) 2015-01-21 Michael Zanetti * merge again (897df3dc1) 2015-01-21 Michael Terry * Merge from trunk (93e094c10) 2015-01-21 Michael Zanetti * merge mterry's branch as prereq (ab1b2dace) 2015-01-21 Mirco Müller * Crap... (4e0e60c10) * Trying to sort out the binding-loop for property (n)id of the MockNotification. (898bf6706) 2015-01-21 Daniel d'Andrada * Update autopilot tests (cec081773) 2015-01-21 Andrea Cimitan * This proved to be more reliable on krillin (8e4b7f22f) 2015-01-21 Daniel d'Andrada * Enable specifying liblightdm mock mode via env var (030e5dd3f) 2015-01-21 Andrea Cimitan * minor (814466c40) * Fix for wifi continue button in the wizard (fb5828b50) 2015-01-21 Mirco Müller * Started to rewrite large portions of the automatic part of the Notification qmltest to work with the new MockNotification and MockNotificationModel... ongoing. (91112e6cf) 2015-01-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (885198662) 2015-01-20 Leo Arias * Singed the XXX comments. (e9766b658) * Small docstring details. (22f4508cb) * open the indicator directly if it is displayed in the menu. (bfb27cf26) * Finished two full tests for the rotation lock. (fccd12281) 2015-01-20 Michael Terry * More test cleanup and additional tests (1b19c7b4b) 2015-01-20 Leo Arias * Fixed the import. (be418872a) 2015-01-20 Mirco Müller * Merged with trunk. (0bcc1749e) * Made tryNotifications use fully dynamic object-creation/destruction now. (3cafb16d6) 2015-01-20 Leo Arias * Moved the indicator tests to their own module. (9bc9ff2f4) 2015-01-20 Nick Dedekind * removed indicator visibility filter (d7988470d) 2015-01-20 Mirco Müller * Get rid of the debug-output. (f662881c3) 2015-01-20 Daniel d'Andrada * Init mockMode (502d87ba1) 2015-01-20 Mirco Müller * Phew... now it works. (a5a32d10c) * Slightly better... (f8c18e62e) * Trying to connect MockNotification::close() to MockNotificationModel::remove() (d19090f91) 2015-01-20 Daniel d'Andrada * Further clean up of run.sh (2011589e9) * Update run.sh (28ef73d01) * Unify all liblightdm mocks (127c1c7df) 2015-01-20 Albert Astals Cid * Actually word wrap (6d54e35d0) * Ellide title and values if past the max width (c44da697f) 2015-01-19 Leo Arias * Corrected the inheritance. (9e850b46a) * Make it py2 compatible. (5ad6b8d29) * Moved the fixture setup helpers to the common file. (2bac421aa) 2015-01-19 Mirco Müller * OMG... that hurts... more than one might imagine... at least the notifications show up now as expected. (44dae678e) 2015-01-19 Albert Astals Cid * Build with ninja (a0c8fe0fc) 2015-01-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a331c38ce) 2015-01-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cd63637a5) 2015-01-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (838ef0a93) 2015-01-16 Michael Terry * More tests (8dc759a6d) * Some more tests (59252dc89) * And add a tst_NarrowView.qml too (4d73fd997) 2015-01-16 Mirco Müller * Expose size of mocked notification-model as count for the qmltest. (25c5617df) 2015-01-16 Michael Terry * More work, add new WideView test (e806e8c4e) 2015-01-16 Andrea Cimitan * WIP (52195ca7a) 2015-01-16 Michael Zanetti * Handle button presses injected by earpieces (7fa604349) 2015-01-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2057c6a8f) 2015-01-15 Daniel d'Andrada * Merge trunk (1be493838) 2015-01-15 Mirco Müller * Fix compiler-errors. (22869755d) 2015-01-15 Michael Terry * Reference Rick's bug too (6597dce69) 2015-01-15 Mirco Müller * Trying to get rid of the whole QSharedPointer mess. (5105786a4) 2015-01-15 Daniel d'Andrada * Make DesktopStage comply with the Stage interface (b0b0fa3b8) * Make proper use of usageModeSettings (8d4446b3d) 2015-01-15 Michael Terry * Merge from -refactor (f9fc49679) * Merge from trunk (6c419e5de) 2015-01-15 Daniel d'Andrada * Update test (32739d72b) * Don't rotate while the greeter is animating (d0b58be1b) 2015-01-15 Mirco Müller * Pulling a MockNotification out of the model still fails with a nullptr and I don't know where that actually happens. (11eadce63) 2015-01-15 Daniel d'Andrada * Abid binding loop between Shell.orientationAngle and OrientedShell.acceptedOrietnationAngle (32967067a) 2015-01-15 Albert Astals * Merge again (bd49d297d) 2015-01-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (876ca5902) 2015-01-14 Michael Terry * Merge from trunk (422481342) 2015-01-14 CI Train Bot * Resync trunk (9c258fbad) 2015-01-14 Albert Astals * Don't precache items that are outisde the 1.5*height buffering area (8060c39d4) 2015-01-14 Daniel d'Andrada * Remove rogue "d" (636b56436) 2015-01-14 Ying-Chun Liu * Add fixtures (d516c414a) 2015-01-14 Michael Terry * Don't show any power dialogs while the screen is off (e0e0217cd) 2015-01-14 Ying-Chun Liu * fix coding style (c183974b3) * Add fixture setup skeleton. (749a41ee9) 2015-01-14 Albert Astals * Didn't want to commit this (87440c8ec) 2015-01-14 Daniel d'Andrada * Fix SpreadDelegates' startinUp state and add some comments (a0986ef78) 2015-01-14 Mirco Müller * A bit of refactoring and forgot to add the MockNotificationModel to the repository. (d4ebb4d16) 2015-01-14 Albert Astals * Merge dash_ranges_on_move again (1a3ebbd05) * Implement proper updateRanges for horizontal items (i.e. Carousel, Horizontal List) (d2dd09888) 2015-01-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (202e06865) 2015-01-13 CI Train Bot * Releasing 8.02+15.04.20150113.1-0ubuntu1 (c82e149c7) 2015-01-13 Andrea Cimitan * support background on horizontal cards with summary Fixes: #1393008 Approved by: Michał Sawicz (05b79a2d2) 2015-01-13 Albert Astals * Make sure changing a scope doesn't trigger creation/destruction of delegates until it's finished Fixes: #1410122 Approved by: Michał Sawicz (c6c29bd1a) * Make sure we use fPIC when compiling files for the static library too (d424707e5) 2015-01-13 Michael Zanetti * patch debian/control file before using it to make it work with mk-build-deps Approved by: Michał Sawicz (abcaf2fbe) 2015-01-13 Albert Astals * Tests: Add Qt 5.5 removal TODOs (8720ab793) * Remove hack, newer Qt already support keyClick(char) (5f61e2130) * Don't show the manage dash pull up arrow on temp scopes Fixes: #1401869 Approved by: Michael Zanetti (f90a460f5) 2015-01-13 Gerry Boland * DashCommunicator: replace QDBusInterface with a non-blocking simplification which does not introspect the service on creation Fixes: #1403508 Approved by: Michael Zanetti (107822f9f) 2015-01-13 Leo Arias * Added an autopilot test for the edges demo. Approved by: PS Jenkins bot, Albert Astals Cid (d8635d94d) * Merge. (a31cbaf3f) * Reorganized the custom proxy objects. (b25e178ed) 2015-01-13 Daniel d'Andrada * Fix typo (9a11baa62) 2015-01-14 Ying-Chun Liu * Fix coding style. (7ac2af5d5) 2015-01-13 Leo Arias * Removed the space. (fce416888) * code style fixes. (0519a72d4) 2015-01-14 Ying-Chun Liu * Fix cannot open. Use ubuntuuitoolkit.CheckBox (52d953b18) 2015-01-13 Mirco Müller * Hm... append() does work, but still added notifications are not visible :/ (95fca22ab) * Stripped down the mocked notification-model for the qmltest even more, but appending still doesn't seem to work. (1580041bc) 2015-01-13 Albert Astals * Increase the busy loop a bit (910775de3) * Merge dash_ranges_on_move (1afc9fb48) * Make sure we don't create/destroy delegates when we are in the middle of switching scopes (8a5aceaca) 2015-01-13 Ying-Chun Liu * Add DisplayIndicator helper (c46741ad6) 2015-01-12 Daniel d'Andrada * Fix Shell.qml sizing during start up (b870ccffb) 2015-01-12 Leo Arias * Fixed the drag. (2c1b6d000) * Reverted the direction and do not call the slow drag. (29b016349) * Attempt swiping the indicators bar. (34ce1d6cd) * Attempt to click the indicator icon. (6391cee94) * Added an IndicatorPage custom proxy object. (13370c551) * Just print the whole tree. (1998b476d) 2015-01-12 Daniel d'Andrada * Get rid of the ":native" (452eca879) 2015-01-12 Michael Zanetti * check on the control file, not the .deb package (b9578d4a5) 2015-01-12 Mirco Müller * Added mocked notification-model (based on real implementation of backend) and made it compile... still need to make it work with the notification qml-test though :) (f3279b676) 2015-01-12 Daniel d'Andrada * Merge lp:~mzanetti/unity8/patched-control (b9ac1d41b) * Shell rotation (0cb19bdfc) 2015-01-12 Michael Terry * Update facebook.png from design (ab17a5635) 2015-01-12 Andrea Cimitan * Fix 1393008 (6fcee3c34) 2015-01-12 Michael Zanetti * change it a bit (169e95bf8) * merge trunk (da6b900b5) 2015-01-12 Albert Astals * Make sure we use fPIC when compiling files for the static library too (9a8276217) 2015-01-12 Michael Zanetti * patch debian/control file before using it to make it work with mk-build-deps (4efdf4134) 2015-01-12 Albert Astals * Add Qt 5.5 removal TODOs (bff71e164) * Merge lp:unity8 (5b8123d67) * Merge lp:unity8 (92b7b91f2) 2015-01-11 Michael Terry * Merge from trunk (3b088698a) 2015-01-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (513e2afad) 2015-01-09 Michael Terry * Merge from -refactor (ddef59f41) * Merge from trunk (cbc5044ac) * Updated fake screenshots (5bfd00a64) * Merge from -refactor (1e8c5fc79) * Tweak colors of slider (940e1fc53) * Fix up error label to fit new design tweaks (d38d8b702) 2015-01-09 Leo Arias * Make the test work with python2. (5accd8042) 2015-01-09 Michael Terry * Merge from -refactor (8d534b98e) * Fix launcher being left exposed after TutorialLeft screen (9e6283f0f) 2015-01-09 Michael Zanetti * simplify (2ff06d3fa) 2015-01-09 Mirco Müller * Still trying to get the mocked Notification to work with the tst_Notifications qmltest. (2e39a7ce1) 2015-01-09 CI Train Bot * Releasing 8.02+15.04.20150109.2-0ubuntu1 (513788743) 2015-01-09 Albert Astals * Test: By default mouseX act on the middle (7108d10aa) * Test: We actually need to click on the customBackButton and not on backButton (6feab60df) * Test: Make sure the mouse area is enabled before clicking into it (177d47c91) 2015-01-09 Michael Terry * Add a test to make sure the shell always starts disabled until it is enabled by a complete PAM interaction. Approved by: Michał Sawicz (68d04cc43) * Unify the name of the Greeter DBus test, make it use our standard binary test macro (which also nicely exports xml results), and make the test a little more robust against timing issues. Approved by: PS Jenkins bot, Albert Astals Cid (cb1ecc1c3) 2015-01-09 Leo Arias * Added an autopilot test for the edges demo. Approved by: PS Jenkins bot, Albert Astals Cid (61879c521) 2015-01-09 Michael Terry * Show OSK above the wizard. Fixes: #1401213 Approved by: Andrea Cimitan, PS Jenkins bot (58c144e15) * Don't block handling power events on loading the greeter's qml and the background image. (a4804287e) 2015-01-09 Nick Dedekind * Unhook Lights interface from indicator widgets Fixes: #1385331 Approved by: Albert Astals Cid (20b705ffc) 2015-01-09 Rodney Dawes * Depend on :native version of g++ to allow cross-compiling to work. Fixes: #1353855 Approved by: Michał Sawicz, PS Jenkins bot (a642c5ce8) 2015-01-09 Michał Sawicz * We don't need the SIGSTOP in main() any more. Approved by: Michael Zanetti (6e7ce90b1) 2015-01-09 Albert Astals * Disable Dash horizontal scroll while Navigation InverseMouseArea is pressed Fixes: #1403048 Approved by: Andrea Cimitan (fd7a329b3) * Make waitForRendering with no item fail instead of crash Approved by: Michał Sawicz, PS Jenkins bot (953086f2d) 2015-01-09 Martin Pitt * tests: Fix Notify.Notification.add_action invocation to work also with unpatched libnotify API. Fixes: #1223401 Approved by: Michał Sawicz, PS Jenkins bot (301be17a7) 2015-01-09 Albert Astals * Fix ScopesList not being under finger (de3644544) * Clip the Scopes List header (b4ed4a2bd) * QSortFilterProxyModelQML -> UnitySortFilterProxyModelQML (e1c9b1abf) * Fix going to scopes when the Manage Dash is open Fixes: #1403464 Approved by: Michael Zanetti, PS Jenkins bot (94796fd05) * Better clicks (e3168eee4) * === (8b0588790) * Wops (0cba185dc) * ; (0ffdbe757) * Somehow i lost this ! (29ea7ca1a) * Test: By default mouseX act on the middle (08c32e08a) * Merge lp:~aacid/unity8/proper_back_button (81652a2f8) * Add note we can remove it once we switch to Qt 5.5 (e7c95e792) * Test: Make sure the mouse area is enabled before clicking into it (930600870) 2015-01-08 Michael Terry * Add a couple tests (4faebb75b) * Merge from -refactor (18edf3ad5) * Link with fake QMenuModel (42bbcd41a) 2015-01-08 Mirco Müller * Merged Saviq's nosigstop branch. (392265b21) 2015-01-08 Michał Sawicz * Remerge lp:~mterry/unity8/cleanup-greeter-dbus-test (5c12379aa) 2015-01-08 Albert Astals * We are actually clicking on the customBackButton and not on backButton (66a4b2aba) * Merge (a724cc3ff) 2015-01-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7c027131c) 2015-01-07 Michael Terry * Merge from -refactor (5ecff4866) * Do that last offset thing more generically (5dc62b4d7) * Merge from -refactor branch (f6d4b0ace) * Recess the slider button a bit (0de1c9995) * Simplify launcher tease logic while also implementing better easing like design wants (fcbe19734) * Robustify waiting for demoEdgesChanged signal by not doing it (6fecade46) 2015-01-07 Michał Sawicz * We don't need the SIGSTOP in main() any more. (f846bfe66) 2015-01-07 Albert Astals * Remove hack, newer Qt already support keyClick(char) (6c21ae2e2) * Add ; (982f3b103) * Merge lp:~aacid/unity8/waitForRenderingNoCrash (5322e6259) * Make waitForRendering not crash if no item is given (6987dad4d) 2015-01-07 Michael Terry * Merge from refactor branch (80fa757dd) * Fix tests (9e9d0c891) 2015-01-07 Mirco Müller * Trying to figure out why the mock/qmltest-internal notification-object (thus getRaw()) id does not work. (b04e29c17) * Got rid of the segfaults, but now MediaPlayer isn't defined, numerous binding-loops nid and notification-member of each notification-object isn't defined either... gee what fun :/ (5e87bd8a7) 2015-01-07 Albert Astals * We don't show the manage dash pull up arrow on temp scopes (0042e2dec) 2015-01-07 Mirco Müller * Merge with trunk. (6a2510971) 2015-01-07 Albert Astals * give it some margins (aa1f0ff12) 2015-01-06 Michael Terry * Treat stage as active if we aren't in normal focus-first-app mode (3d94ef4cd) * Fix performance on right edge page (f68323bd8) * No longer need to wait for page object to be created in tests (b28e80295) * Merge refactor branch (a4585f5d5) * Fix a missing finish() method (efc5d2202) * Further fixes for right-edge tutorial page; still not quite as performant as I want (aa2feff6f) * Add new right-edge screen, not fully finished yet (a4e916605) 2015-01-06 Martin Pitt * tests: Fix Notify.Notification.add_action invocation (72eaab47a) 2015-01-05 Albert Astals * test for flick when navigation open (3b123f339) * Disable Dash horizontal scroll while Navigation InverseMouseArea is pressed (dc3ac5d95) 2015-01-05 Leo Arias * Merged with trunk. (19542b263) 2015-01-05 Albert Astals * Fix ScopesList not being under finger (c84a2e5f5) 2015-01-05 Gerry Boland * Fix typo (f9587d3b8) 2015-01-05 Albert Astals * Clip the Scopes List header (19f185e68) 2014-12-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ab98493d9) 2014-12-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c7b37802b) 2014-12-23 Michael Terry * Add bottom edge pages (8160336b0) * Add a Loader between Shell and the actual content of the tutorial to save memory when tutorial isn't used (5bd1a677c) 2014-12-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b3e89115a) 2014-12-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2641ab296) 2014-12-19 Michael Terry * Fix up tests (40af57946) * Add error text if user drags too far (709e634cc) 2014-12-19 Rodney Dawes * Add comment about using :native for g++-4.9 to existing g++4.9 comment. (dab37e3b7) * [ Ubuntu daily release ]; New rebuild forced [ Albert Astals . Need to wait until loaded is true to use the count property; Manage Dash: Ellide properly [ Albert Astals Cid ]; ScopesList: Use the default scope style for the header [ Daniel d'Andrada ]; Refactor Dialogs.qml to use proper in-scene dialogs; Make Greeter nicely handle being resized [ Albert Astals ]; Rework how we set the ranges so we get some more asynchronousity from item views (LP: #1384374); clickscope is back to being unfavoritable (LP: #1400762); Fix clicking on the manage dash list after having moved the current scope; Make the drag range be a multiple of the drag "rate" value. Workarounds https://bugs.launchpad.net/mir/+bug/1399690 [ Gerry Boland ]; MockAppMan: emit SIGSTOP so AP test apps are run (LP: #1394208) [ Ubuntu daily release ]; New rebuild forced [ Albert Astals ]; Make Navigation work when "jumping" to the non root [ Michał Sawicz ]; Bump version due to new Manage Dash [ Gerry Boland ]; [indicators] Fix positioning on panel resize. [ Nick Dedekind . [indicators] Fix positioning on panel resize. [ Albert Astals ]; Fix the Dash Header hamburger menu background color; Fix tests (LP: #1400449); Allow pulling manage dash if there's no favorite scopes (LP: #1400774. Manage Dash: Make store button work even if you have no favorites (LP: #1400771); Make pot_file [ CI Train Bot ]; Resync trunk [ Andrea Cimitan ]; Remove dismiss timer in Launcher (LP: #1368778) [ Michael Zanetti ]; decrease opacity changes in spread, move it to a separate surface. * Add an initial, rudimentary DesktopStage to get started * Uninvert Launcher in Desktop Mode; Add support for Wallpaper in Desktop stage; Add window control buttons to panel for fullscreen applications [ Rodney Dawes ]; Add dependency on gir1.2-notify-0.7 to unity8-autopilot package. (LP: #1400437) [ CI Train Bot ]; Resync trunk [ Albert Astals ]; Replace Scopes Overview by the new Manage Dash (LP: #1386698, #1368670) [ Michael Terry . Import wizard code from ubuntu-system-settings.; Convert the welcome wizard from a separate executable into a qml plugin (with a small C++ plugin for support).; Add tests for welcome wizard. [ Michael Terry ]; Make sure that there is no window of opportunity for swiping away greeter before the lockscreen appears.; Don't allow dragging the greeter out from the left edge if it's hidden there. (LP: #1372952) [ Michał Sawicz ]; Move from Theme colour to direct UbuntuColors.orange for activity indicator and preview buttons [ Albert Astals ]; Use QImageReader not to load the image into memory twice (LP: #1384374); Don't create the whole current scope delegates, just height; 3 (LP: #1384393, #1384374. Make CroppedImageSizer async; Use ubuntu::connectivity::NetworkingStatus instead of QNetworkConfigurationManager; Compile with Qt 5.4 (LP: #1395636) [ Michael Zanetti ]; close previews and temp scopes on left edge/BFB (LP: #1391798); make spread reversible (LP: #1368668, #1355284, #1368677) [ Andrea Cimitan ]; Different drag behaviour for not closable apps in spread (LP: #1368287) [ Daniel d'Andrada ]; Make UnityTestCase.touchFlick properly map event coordinates [ Michael Zanetti ]; improve snapping after dragging; Make the launcher BFB rounded on one end (LP: #1382596. disable swipeToClose while some snapping is happening (LP: #1378938); increase threshold and avoid jumping in SpreadDelegate dragging (LP: #1352842, #1350803) [ Ying-Chun Liu ]; Notifications should be on right side when wide. (LP: 1379384) (LP: #1379384) [ Albert Astals ]; Fix qml warnings; Fix some qmluitests [ Lars Uebernickel ]; Use Icon instead of StatusIcon [ josharenson ]; Return focus to the application after a tusted session overlay is closing. (LP: #1381292) [ Josh Arenson ]; Return focus to the application after a tusted session overlay is closing. (LP: #1381292) [ Albert Astals ]; Remove unused ResponsiveFlowView; Fix a few cmake warnings when running ./build.sh in a clean checkout [ Mirco Müller ]; Make sure non-square icons are not cropped. (LP: #1378417) [ Michael Terry ]; Drop the "EARLY ALPHA" scare label when running in testing mode. [ Michael Zanetti ]; unify Greeter and Lockscreen wallpaper again; hide quicklist when launcher hides (LP: #1387088) * Keep applications suspended while lockscreen is shown (LP: #1378126); change spread background color to 111111 [ Omer Akram ]; show password when tapped on the 'Show password' label, not just the checkbox. (LP: #1389832. No-change rebuild against Qt 5.3.2. [ Michael Terry . Skip second SIM unlock dialog if user presses Emergency Call on first one (LP: #1387925) [ Michael Zanetti . fix positive/negative answer order on the new swipe notification (LP: #1358343); Update PageHeader to use new SDK api; antialias surfaces when in spread (LP: #1351559) [ Albert Astals ]; Remove Hud [ Mirco Müller ] * Replace ComboButton in snap-decision notifications, used for additional actions (> 3 actions), with custom widget immune to accidental taps. (LP: #1384730) [ Sebastien Bacher ]; Drop workaround, it's not needed and create issues for desktop-next (LP: #1387671) [ Albert Astals ] * Do not append integer to char; Remove unused end() function; Update build.sh; Fix i18n [ Michael Zanetti ] * rework launcher quicklist visuals to fit new design (LP: #1368660); Fix DBusVariant conversion for launcher emblems (LP: #1387261); Fix desktop file encoding in launcher (LP: #1387083); Add a hinting animation to indicate changes in the backend (LP: #1376707) [ Alberto Aguirre ]; Add audioRole to QtMultimedia mock; Add a plugin to take screenshots on vol up + vol down [ CI bot ] * Fix relative time formatter when using non-UTC timezone. (LP: #1378821) [ Leo Arias ]; Removed the tests for the alternate paths of the autopilot helpers. [ Nick Dedekind ]; Fix relative time formatter when using non-UTC timezone. (LP: #1378821); Reset current item selection on deleted. (LP: #1378462); Added timer to re-assert server value after indicator menu item activation. (LP: #1336715) [ Mirco Müller ]; Added dedicated swipe-to-act button for snap-decisions, which avoids accidental taps/button-presses. (LP: #1358343) [ Chris Gagnon ]; add missing unity-scope-click dependancy to unity8-autopilot package (LP: #1336276) [ Michael Terry ]; Don't lock phone if user tries to switch back to an active call. (LP: #1388156) [ Daniel d'Andrada ]; DirectionalDragArea: Update TODO comment in light of new event. TouchDispatcher: synthesize MouseButtonDblClick events [ Leonardo Arias Fonseca ]; Removed the tests for the alternate paths of the autopilot helpers. [ Michael Terry ]; Provide 'passphrase' as a field of Components.Lockscreen; Fix a race between Qml loading and DBus registration that caused problems when jenkins tried to unlock the phone.; Set domain explicitly for the Dialogs component because the welcome wizard wants to import it. (LP: #1381731); When greeter or lockscreen has focus, show active call panel. (LP: #1378872) [ Ted Gould ]; Set the default OOM score for the dash (LP: #1379786) [ Michał Sawicz ]; Revert lp:~unity-team/unity8/flickables-speed-workaround to avoid risk in RTM.; Updated behaviour for zoomable image, workaround for sourcesize (LP: #1333187) [ Michael Frey ]; Added a check for Proximity to determine if we show the lock screen. (LP: #1378012) [ Ying-Chun Liu ]; Add non-interactive code into GenericScopeView. (LP: #1384441) [ Mirco Müller ]; Also use modal nature of snap-decision notifications when greeter/lockscreen is shown. This fixes LP: #1378827. (LP: #1378827) [ Michael Zanetti . Make the launcher update on dconf changes (LP: #1376707. exit spread on background tap (LP: #1368261); Use an index instead of a scope id in DashCommunicator (LP: #1376044) [ Andrea Cimitan ]; Updated behaviour for zoomable image, workaround for sourcesize (LP: #1333187) [ Daniel d'Andrada ]; Make TouchGate synthesize QMouseEvents for mouse-based target items; Don't specify a distanceThreshold as it conflicts with hintDisplacment [ josharenson ]; Fix lp:1370240 by making stages interactive when a snap decision is dismissed. (LP: #1370240) [ Nick Dedekind ]; remove qml ownership confusion for caching unitymenumodels (LP: #1368856. Implementation of expandable panel design (LP: #1368856) [ Albert Astals ]; CardAttributes: Specify column and row since the gridlayout gets confused sometimes (LP: #1381092); Reset VerticalJournal until the cardTool settles (LP: #1381255) [ Mirco Müller ]; Added synchronous/confirmation notification support to unity8. (LP: #1232633) [ Michael Zanetti ]; Fix lp:1370240 by making stages interactive when a snap decision is dismissed. (LP: #1370240); Drop all visual indication of "pinning" (LP: #1381054) [ Antti Kaijanmäki ]; Unlock all modems on boot. (LP: #1333121) [ Michael Terry ]; Don't show initial lockscreen during the edge demo. The user just set up their phone with a password, it's pointless to ask them again. (LP: #1358283); Distinguish between incoming calls and other dialer-app opens. (LP: #1378218) (LP: #1378218) [ Andrea Cimitan ]; Fix flickable speed to be resolution independent, by subclassing components (LP: #1348557) [ Michał Sawicz ] * Fix the ShellWithPin test and some functionality. [ Albert Astals ]; Move Base.qml to DashCategoryBase; Fix first item positioning when m_clipItem->y() is not 0 (LP: #1251597); Fix some small qml warnings [ Daniel d'Andrada ]; Add touch ownership logic on top of qt input handling [ Michał Sawicz ]; Rename datetime indicator in test [ Albert Astals ]; Close overview temp scope on show dash (LP: #1373819); Enable QT_STRICT_ITERATORS; Make Base not clickable, since we don't use it in anywhere clickable (we only use it for Category delegates in the LVWPH) (LP: #1300709); Hide preview if it was visible when going to a scope (LP: #1374548); Remove contentScale variable [ Andrea Cimitan ]; Fix card implicitHeight when summary is declared, but its text is empty. Also fixes vertical journal height and clipping (LP: #1362160. Redesign for pinned apps. Remove thindivider on top of ubuntu dash button (not needed anymore) (LP: #1377100) [ Ying-Chun Liu ]; Fix run_on_device.sh to let it run again. [ Nick Dedekind ]; Fixed indicator menu bindings to server toggle value broken by user interaction. (LP: #1336715); Force rendering so we don't get stuck in "waitForRendering" loop in tests. [ Daniel d'Andrada . PhoneStage: focus the new topmost app after the current one closes itself (LP: #1375267) [ Michael Terry ]; Fix some security issues with the tablet greeter, which allowed the lockscreen to be bypassed. (LP: #1367715) (LP: #1367715) [ Michael Zanetti ]; scale down errorText label if necessary (LP: #1378848) [ Michael Zanetti . Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Antti Kaijanmäki ]; Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Ubuntu daily release ]; New rebuild forced [ Andrea Cimitan ]; Tweak card header to match the spec; Add preview image slideshow (LP: #1351537) [ Michał Sawicz . Cache more things in memory, so flicking scopes should be faster (LP: #1336724); Tweak card header to match the spec; Save texture memory by limiting sourceSize (LP: #1338430) [ Ying-Chun Liu ]; Add attributes to Preview. (LP: #1282460) [ Albert Astals ]; Update pot; Cache more things in memory, so flicking scopes should be faster (LP: #1336724); Save texture memory by limiting sourceSize (LP: #1338430); Clip the settings list; Fix unlocking from the left again; Add wait_ makes tests more reliable [ Michael Zanetti ]; fix fading out the launcher instead of sliding it out on left-edge minimizing an app.; Make the DashCommunicator async and more flexible to handle a lifecycle-suspended dash (LP: #1339883) [ Michael Terry ]; Retry unlock-device script if it fails, as there is always a risk of a small race with boot-up. (LP: #1370644); Add pull-to-refresh functionality to scopes. (LP: #1368336) [ CI bot ]; Resync trunk [ Alexandros Frantzis ]; Remove stale trusted socket before starting unity8 from upstart (LP: #1371597) (LP: #1371597) [ CI bot ]; Resync trunk [ Andrea Cimitan . Move activity indicator on top of keyboard (LP: #1354519) [ Gerry Boland ]; Cleanup: Remove unused member and fix small syntax error in OrientationLock [ josharenson . Fix lp:1367894 by correcting how the minute value is calculated in the panel. (LP: #1367894) [ Nick Dedekind ]; Fixed DefaultIndicatorPage test. Fixed warnings from test. [ Ying-Chun Liu ]; Remove maxLineCount in preview. (LP: 1328513) (LP: #1328513) [ Michael Terry ]; Fix some code that accidentally landed in trunk before it got cleaned up. The current code just has some duplication to it that should be unified.; Implement latest visual designs for passphrase lockscreen.; Make it easier to use the Lockscreen component from the welcome wizard. Limit how much memory we reserve for the greeter background image, allowing giant images to appear correctly. [ Daniel d'Andrada ]; Add gdbTestComponentName build targets [ CI bot ]; Resync trunk [ Nick Dedekind ] * Visual changes for indicator RTM polishing (LP: #1329289) [ Ubuntu daily release ]; New rebuild forced [ Michael Zanetti ]; fix swiping away the launcher from the left edge; fix indicators AP test [ Florian Boucault . New Splash screen implementation that fakes real app [ Albert Astals ]; We need this in build-depends so that qmluitests pass in CI [ Daniel d'Andrada ]; New Splash screen implementation that fakes real app [ Michael Terry ]; Fix LC_ALL and test harder by making both manual runs of timeformattertest and the whole test suite use the same locale settings. [ CI bot ]; Resync trunk [ Michał Sawicz ]; Add -windowgeometry option to the Dash and drop any user-visible mentions of Dash; Dash: Fix issue when expanding a category and collapsing another one at the same time. [ Albert Astals ]; Dash: Fix issue when expanding a category and collapsing another one at the same time.; Make the categoryView invisible when we are in the preview mode (LP: #1341205); Pixel pushing in the dash header (LP: #1365929) [ Ying-Chun Liu ]; Re-add restart button for power menu. (LP: 1358197) (LP: #1358197) [ Marcus Tomlinson ]; Don't show a preview if a null response is returned from scope.preview(result) [ Mirco Müller ]; Don't limit the number of text-lines for body-text. (LP: #1369438) [ Michael Zanetti ]; Don't hide launcher when nothing happens on long left edge swipes (LP: #1357333); Rework LauncherBackend [ Michael Terry ] * When running qmluitests, make sure that they use LANGUAGE=C, fixing a test failure when running locally in the US. [ Daniel d'Andrada ]; Some ApplicationWindow test improvements [ Rodney Dawes ]; Check purchase state to determine if purchase was cancelled and hide progress. (LP: #1362622) [ Michael Zanetti ]; Focus first app if there are already some running when we're starting up (LP: #1339883) [ Michał Sawicz ]; Don't play empty urls in Notification.qml [ Daniel d'Andrada . Improve tst_Shell; Build without any warnings; Make tst_Card work from outside the source tree (LP:1359201) (LP: #1359201) (c37e301c4) 2014-12-19 Albert Astals * QSortFilterProxyModelQML -> UnitySortFilterProxyModelQML (1d8465198) 2014-12-19 Michael Terry * Some design nits (a0dba6310) 2014-12-18 Josh Arenson * Restore control file (825e313df) * Move signal to PhysicalKeysMapper (376f612be) * [ Ubuntu daily release ]; New rebuild forced [ Albert Astals . Need to wait until loaded is true to use the count property; Manage Dash: Ellide properly [ Albert Astals Cid ]; ScopesList: Use the default scope style for the header [ Daniel d'Andrada ]; Refactor Dialogs.qml to use proper in-scene dialogs; Make Greeter nicely handle being resized [ Albert Astals ]; Rework how we set the ranges so we get some more asynchronousity from item views (LP: #1384374); clickscope is back to being unfavoritable (LP: #1400762); Fix clicking on the manage dash list after having moved the current scope; Make the drag range be a multiple of the drag "rate" value. Workarounds https://bugs.launchpad.net/mir/+bug/1399690 [ Gerry Boland ]; MockAppMan: emit SIGSTOP so AP test apps are run (LP: #1394208) [ Ubuntu daily release ]; New rebuild forced [ Albert Astals ]; Make Navigation work when "jumping" to the non root [ Michał Sawicz ]; Bump version due to new Manage Dash [ Gerry Boland ]; [indicators] Fix positioning on panel resize. [ Nick Dedekind . [indicators] Fix positioning on panel resize. [ Albert Astals ]; Fix the Dash Header hamburger menu background color; Fix tests (LP: #1400449); Allow pulling manage dash if there's no favorite scopes (LP: #1400774. Manage Dash: Make store button work even if you have no favorites (LP: #1400771); Make pot_file [ CI Train Bot ]; Resync trunk [ Andrea Cimitan ]; Remove dismiss timer in Launcher (LP: #1368778) [ Michael Zanetti ]; decrease opacity changes in spread, move it to a separate surface. * Add an initial, rudimentary DesktopStage to get started * Uninvert Launcher in Desktop Mode; Add support for Wallpaper in Desktop stage; Add window control buttons to panel for fullscreen applications [ Rodney Dawes ]; Add dependency on gir1.2-notify-0.7 to unity8-autopilot package. (LP: #1400437) (13eb553cb) 2014-12-18 Michael Terry * More progress (e969c9a03) 2014-12-18 Josh Arenson * Remove GUI dependence for qmltest (222a6bc05) 2014-12-18 Michael Zanetti * add copyright header (52fd40b17) 2014-12-17 Leo Arias * On the autopilot helpers, swipe if the item to open from the dash is not visible. (a321ca759) * Fixed the emulators import. (af1a5ad1d) 2014-12-17 Gerry Boland * Typo (f00b88e94) * Remove unused include (91ee7a5b3) * Refactor AbstractDBusServiceMonitor to allow inheritor to create something other than a QDBusInterface when service appears. DashCommunicator uses this to create non-blocking interface, which is suited to push communication it needs (1acbc969b) 2014-12-17 Albert Astals * Test that dashcommunicator setCurrentScopeRequested closes the manage dash (b45bf6b7d) 2014-12-17 Nick Dedekind * removed whitespace (c51743319) 2014-12-17 Albert Astals * Fix going to scopes again when the Manage Dash is open (f56cb8209) 2014-12-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a5c6e33b7) 2014-12-16 Gerry Boland * Replace QDBusInterface with a non-blocking simplification which does not introspect the service on creation (5a7139ef6) 2014-12-16 Michael Terry * Some minor cleanups (42f90a4a8) * Merge from trunk (fcb534adc) 2014-12-16 Leo Arias * Added a test for the demo edges. (ee22cf861) 2014-12-16 Michael Terry * Make waiting for second signal a little safer (3bec0983d) 2014-12-16 Michael Zanetti * make use of min/max props (1529d275e) * revert to phone by default (fa379ff8d) * add a WindowMoveResizeArea to properly move and resize windows (194546b4a) * merge (1f48a4dc2) 2014-12-16 CI Train Bot * Releasing 8.02+15.04.20141216.1-0ubuntu1 (621ea5f4b) 2014-12-16 Albert Astals * Manage Dash: Ellide properly (c96094071) * Need to wait until loaded is true to use the count property Approved by: Michael Zanetti (461352260) * Manage Dash: Ellide properly (a86209fe5) * Merge (7f3c4171e) 2014-12-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f0a4ab9af) 2014-12-15 CI Train Bot * Releasing 8.02+15.04.20141215.3-0ubuntu1 (10ced0ca9) 2014-12-15 Gerry Boland * MockAppMan: emit SIGSTOP so AP test apps are run Fixes: #1394208 (acb35b577) 2014-12-15 Albert Astals * Make the drag range be a multiple of the drag "rate" value. Workarounds https://bugs.launchpad.net/mir/+bug/1399690 (7cb7d426f) 2014-12-15 Albert Astals Cid * ScopesList: Use the default scope style for the header (a9db83f8b) 2014-12-15 Albert Astals * Fix clicking on the manage dash list after having moved the current scope (f16743d89) * clickscope is back to being unfavoritable Fixes: #1400762 Approved by: Michał Sawicz (112b015fc) 2014-12-15 Daniel d'Andrada * Make Greeter nicely handle being resized (852e1cfca) * Refactor Dialogs.qml to use proper in-scene dialogs (2dc0cae23) 2014-12-15 Albert Astals * Rework how we set the ranges so we get some more asynchronousity from item views Fixes: #1384374 Approved by: Andrea Cimitan (05c7dcab0) 2014-12-15 Albert Astals Cid * Use the default scope style for the header (db251d16b) 2014-12-15 Gerry Boland * MockAppMan: emit SIGSTOP so AP test apps are run (f3d426de7) 2014-12-15 Michael Zanetti * revert to using the dconf backend for the dconf based tests (a9dc5f1ae) 2014-12-15 Albert Astals * more safe waits (071d20867) * Fix tests (819c4dee5) 2014-12-15 Daniel d'Andrada * Merge trunk (3cd3f6235) 2014-12-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (026763904) 2014-12-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a666849a6) 2014-12-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eef0b9f96) 2014-12-12 Nick Dedekind * better lights init (bbbbec1ff) 2014-12-12 CI Train Bot * Releasing 8.02+15.04.20141212.1-0ubuntu1 (53ea14ca9) 2014-12-12 Albert Astals * Make Navigation work when "jumping" to the non root (4f28aa7a6) * settle animation before clicking (de741351e) * fix comment (e67cb18c9) * comment++ (96b4e284c) * reset workaroundRestoreIndex if user wants to go to a specific scope (525c1f392) * test for move scope around and back back (6b76627a8) * Merge apps_special_after_all (2ae26d952) 2014-12-12 Michael Zanetti * drop debug prints (8c915dfe1) * fix license headers (5aef8584c) * add a AccountsService based launcher model to be used with split greeter (775a905bb) 2014-12-12 Albert Astals * fix hideChildren bug on drag (b06ae0850) * test click scope is not favoritable (97ca86be0) * Click scope should not have a favorite button (9aab1d792) * clickscope is back to unfavoritable (c5ca4664b) 2014-12-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (18e9e8010) 2014-12-11 Josh Arenson * Privitize internal properties in PhysicalKeysMapper (ffe76cc5e) * Revert eventAccepted logic in Shell (64d42126d) * Remove eventAccepted from PhysicalKeysMapper (16ab87b5a) * Remove GUI from test (d2abe973b) * Change test names to fit convention (ffaf38bda) 2014-12-11 Michael Terry * Merge from trunk (c0486b1b1) * Separate greeter into WideGreeter and NarrowGreeter classes (93b318c3d) * more cleanup (1bcaf7288) * Merge from trunk (550a77a7b) * Go for a simpler fix than making greeter load async (60930ec50) * Merge from test-early-disable (e329c0182) * Merge from trunk (ff9a5fba0) * Clean up greeter dbus test (cb21dfaeb) * Fix dbus test (2c52eb155) 2014-12-11 Nick Dedekind * merged with trunk (05a92b84d) 2014-12-11 Daniel d'Andrada * Add missing plugins/Unity/Session/dbusunitysessionservice.h change (c72dee932) 2014-12-11 CI Train Bot * Releasing 8.02+15.04.20141211.2-0ubuntu1 (e17b67156) 2014-12-11 Albert Astals * Make pot_file Approved by: Michał Sawicz (c10d994dc) * Manage Dash: Make store button work even if you have no favorites Fixes: #1400771 Approved by: Michael Zanetti (4a9140237) * Allow pulling manage dash if there's no favorite scopes Fixes: #1400774 Approved by: Michael Zanetti (3d1838060) * Fix tests Fixes: #1400449 Approved by: Michael Zanetti (c62b603b5) 2014-12-11 Rodney Dawes * Add dependency on gir1.2-notify-0.7 to unity8-autopilot package. Fixes: #1400437 Approved by: Michał Sawicz (b5a352971) 2014-12-11 Andrea Cimitan * Remove dismiss timer in Launcher Fixes: #1368778 Approved by: Michael Zanetti, PS Jenkins bot (d6a86d29a) 2014-12-11 CI Train Bot * Bump version due to new Manage Dash (2ad66ae53) 2014-12-11 Michael Zanetti * Add window control buttons to panel for fullscreen applications Approved by: Gerry Boland (e24563869) * Add support for Wallpaper in Desktop stage Approved by: Gerry Boland (0f896a337) * Uninvert Launcher in Desktop Mode (8471b2622) * Add an initial, rudimentary DesktopStage to get started Approved by: Gerry Boland (015e1a301) 2014-12-11 Gerry Boland * [indicators] Fix positioning on panel resize. Approved by: Daniel d'Andrada (d92457bc5) 2014-12-11 Albert Astals * Fix the Dash Header hamburger menu background color (36fcbc959) 2014-12-11 Michael Zanetti * decrease opacity changes in spread, move it to a separate surface. (08e41415a) 2014-12-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9ef8e3b93) 2014-12-10 Josh Arenson * Fix dialogs (fb973acad) 2014-12-10 Michael Terry * Show OSK for passphrase in wizard (e9a04b76c) 2014-12-10 Josh Arenson * Merge upstream (b17253f30) * Refactor PhysicalKeysFilter to PhysicalKeysMapper (1e92296b7) 2014-12-10 Michael Terry * Make black greeter appear faster, still working on wallpaper version (602015038) 2014-12-10 Josh Arenson * Change sleeps to waits in tests. Change wait time to correct units. (7c6231d28) * Move power key long press functionality to PhysicalKeysFilter from dialogs (6dc418d68) * Fix if/else statements (abd389975) 2014-12-10 Michael Terry * Remove unneeded id (995bb6cc2) * Remove some more warnings (ae8f1bba6) 2014-12-10 Albert Astals * make pot_file (091b4db57) * Add test (7b8249740) * Fix comment (60b3ed0f7) * remove wrong comment (3aada7fa2) * Add test (8171b40ce) 2014-12-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eb5e02577) 2014-12-09 Josh Arenson * Remove VolumeKeyFilter (b95edd157) * Restore control file (3660d9c75) * Add unit test and fix bug(s) exposed by unit test (37dabe352) * Feature complete (63d4385d3) 2014-12-09 Michael Terry * Add test for starting disabled (e74245691) 2014-12-09 Albert Astals * Make store button work even if you have no favorites (b8e26057a) * Allow pulling manage dash if there's no favorite scopes (12d553c5f) * Also set panelForegroundColor (1c4869909) * skip instead of return (e8fb71ea7) 2014-12-09 Daniel d'Andrada * Update tst_MultiGreeter.qml (7bd554a83) 2014-12-09 Albert Astals * Merge unity8 (847865397) * Fix testDash (4800e0768) 2014-12-09 Daniel d'Andrada * tease also when a drag gets started (28bb74827) 2014-12-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1c9e60fe2) 2014-12-08 Josh Arenson * Do not emit volumeDown when taking a screenshot (363bfef5b) * Initial re-implementation of screenshot logic (ac73c260c) 2014-12-08 Daniel d'Andrada * Make TabletShell::test_leftEdgeDrag(with demo) pass again (e55b3fbd5) 2014-12-08 Rodney Dawes * Add dependency on gir1.2-notify-0.7 to unity8-autopilot package. (244ca7c4e) 2014-12-08 Daniel d'Andrada * Oops...Reenable SingleGreeter tests. (946d2fa23) * Fix tst_DragHandle (414a18dce) * Fix duration of the hideAnimation (9459baeda) * And restore that as well (b8b2efca5) * Restoring a bunch of deleted/modified (4964b1d4f) 2014-12-08 Josh Arenson * [ CI Train Bot ]; Resync trunk [ Albert Astals ]; Replace Scopes Overview by the new Manage Dash (LP: #1386698, #1368670) (562c50ef6) 2014-12-08 Michael Terry * Fix tests (d1fdad3a5) 2014-12-08 Daniel d'Andrada * Refactor Dialogs.qml to use proper in-scene dialogs (a4ee85b0b) * Make Greeter still be a Showable (a258c2deb) 2014-12-08 Andrea Cimitan * Removed piece in a test (0b2d7189c) 2014-12-08 Michał Sawicz * Bump version for new Manage Dash (ec2517d45) 2014-12-08 CI Train Bot * Resync trunk (07607c602) 2014-12-08 Michael Zanetti * add a test (3b24aad8a) 2014-12-08 Daniel d'Andrada * Remove commented-out lines (430910df4) 2014-12-08 Michael Zanetti * use === to make the reviewer happy (99bb8c4ae) 2014-12-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (768d99571) 2014-12-05 Josh Arenson * Create PhysicalKeysFilter (1073bf391) 2014-12-05 Michael Terry * Merge from trunk (5545def9f) * Merge from trunk (91fc2b656) 2014-12-05 Daniel d'Andrada * Greeter refactoring to nicely handle being resized (e8ef7b4e5) 2014-12-05 Albert Astals * Add the comment here too (225ad06b2) * Make the dragged distance be a multiple of the dragged area (abff1489c) 2014-12-05 Andrea Cimitan * With property (44c3a7201) 2014-12-05 Michael Zanetti * merge prereq (c3bc4a114) * merge prereq (f93c15904) * clip the launcher button (e96410ea4) * merge prereq (22e352523) * merge prereq (e0ca4e4b9) * merge trunk (ebc0ef331) 2014-12-05 CI Train Bot * Releasing 8.01+15.04.20141205-0ubuntu1 (3aef5c64e) 2014-12-05 Albert Astals * Replace Scopes Overview by the new Manage Dash Fixes: #1368670, #1386698 Approved by: Nick Dedekind, Benjamin Keyser (4246cafee) * Merge (54c78e796) 2014-12-05 CI Train Bot * Resync trunk (e4af96159) 2014-12-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (32165b26d) 2014-12-04 Michael Terry * Only use greeter profile if passcode/passphrase is set, per design (270a7bff2) 2014-12-04 CI Train Bot * Releasing 8.01+15.04.20141204-0ubuntu1 (59512b51f) 2014-12-04 Michael Terry * Add tests for welcome wizard. Approved by: Andrea Cimitan (7eb3dd938) * Convert the welcome wizard from a separate executable into a qml plugin (with a small C++ plugin for support). (39eae8ac1) * Import wizard code from ubuntu-system-settings. (67a2df58c) 2014-12-04 Albert Astals * Fix comment (0a057429f) * Accomodate for the fact that we can go back when going at index 0 (b12981050) 2014-12-03 Michael Terry * Add missing dep and fix AS mock to allow setting null license path (47d4e01b3) 2014-12-03 Albert Astals * Refactor (33d72b223) * If the navigation we're reaching is a child, list the parent not itself (3ea41b498) 2014-12-03 Michael Terry * Isolate calls to LightDM.Greeter.authenticate() (6a3d502f3) 2014-12-03 Gerry Boland * Add QML test to check panel resize has indicator item reposition correctly (20f42692e) 2014-12-03 Michael Zanetti * merge prereq (937498388) * merge prereq (cd236867d) 2014-12-03 Albert Astals * Small fix after previous real -> int change (006ecdb18) 2014-12-03 Michael Zanetti * merge prereq (ef90709c4) 2014-12-03 Nick Dedekind * [indicators] rotate Flickable 180 so its contents right aligned, to fix positioning on panel resize (7e11feb34) 2014-12-03 Michael Zanetti * merge trunk (b3d807d7f) 2014-12-03 Albert Astals * Merge (6ad7a557d) * Make cacheBuffer int for consistency with Qt own's classes (9fea98d0e) * Merge (b98431818) 2014-12-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (57f15d1ad) 2014-12-02 Michael Terry * And drop infographicModel (5b21be41f) * Comment on why we sometimes load async, sometimes not (34ad44af3) * Only make greeter async after the first time (3d140ca13) * Merge from trunk (d5b705051) * Add folderlistmodel to build-depends (and depends) (8a07d343a) * Merge from trunk (7e3c280b6) * Merge from wizard-plugin (d5b832fc9) * Merge from wizard-import (d6088f30f) * Merge from trunk (dbed23013) * review nits (4a20ff2ef) * Remove debug line (055a349fd) * Re-enable tests, whoops (a8dcdbf65) 2014-12-02 Albert Astals * Some debug, let's see what is going on on CI (933ab1be9) 2014-12-02 Michael Zanetti * fixes left edge drag when in spread (c09444904) * drop debug prints (c7c161133) 2014-12-02 Albert Astals * Disable searh for now (2b1d562a3) * reshuffle (918be281d) * Fix the hamburger menu background (43d6f901f) * Increase the drag range (78daadefc) 2014-12-02 CI bot * Releasing 8.01+15.04.20141202-0ubuntu1 (324cf95fe) 2014-12-02 Andrea Cimitan * Different drag behaviour for not closable apps in spread Fixes: #1368287 Approved by: Albert Astals Cid (a3c51466e) 2014-12-02 Albert Astals * Compile with Qt 5.4 Fixes: #1395636 Approved by: Timo Jyrinki, PS Jenkins bot (32035a461) 2014-12-02 Michael Zanetti * make spread reversible Fixes: #1355284, #1368668, #1368677 Approved by: Albert Astals Cid (16b7d9a61) 2014-12-02 Daniel d'Andrada * Make UnityTestCase.touchFlick properly map event coordinates (d6b5b2fee) 2014-12-02 Michael Terry * Don't allow dragging the greeter out from the left edge if it's hidden there. Fixes: #1372952 Approved by: Michael Zanetti (2b506f20c) * Make sure that there is no window of opportunity for swiping away greeter before the lockscreen appears. (5e5019a69) 2014-12-02 Albert Astals * Use ubuntu::connectivity::NetworkingStatus instead of QNetworkConfigurationManager (3a5de52c7) 2014-12-02 Michał Sawicz * Move from Theme colour to direct UbuntuColors.orange for activity indicator and preview buttons Approved by: Albert Astals Cid (f99935a2b) 2014-12-02 Michael Zanetti * close previews and temp scopes on left edge/BFB Fixes: #1391798 Approved by: Andrea Cimitan, PS Jenkins bot (f26832136) 2014-12-02 Albert Astals * Make CroppedImageSizer async (54f979a66) * Don't create the whole current scope delegates, just height; 3 Fixes: #1384374, #1384393 Approved by: Andrea Cimitan (422592fee) * Use QImageReader not to load the image into memory twice Fixes: #1384374 Approved by: Michał Sawicz (3b43143bb) * Faster way to get to the scope loader we want (8c4704072) 2014-12-02 Michael Zanetti * try this (32a56982a) 2014-12-01 Michael Terry * get rid of a minor warning during tests (e6a21a0e5) * minor cleanup (b1e092a06) * Remove all traces of lockscreen from Shell (de65f6e88) 2014-12-01 Albert Astals * Need a wait_ here now that things are more async (bf8cb836c) 2014-12-01 Mirco Müller * Still broken notification-qmltest due to heavily extended MockNotification-plugin. (44c803d9a) 2014-12-01 Michael Zanetti * merge trunk, fix tests that broke with merge (41a859d01) * fix ap test (42358c756) * only use the new rectangle overlay in phase 0 and 1 (5b71f7a63) 2014-12-01 Andrea Cimitan * Comment out another piece (173d3d0c3) 2014-11-28 Michael Terry * Move Lockscreen into Greeter class (15481187a) * Drop greeterWrapper and instead add a launcherOffset property to the Greeter object (16a8ab4eb) 2014-11-28 Nick Dedekind * merged with trunk (c4919ae85) 2014-11-28 Michael Terry * Merge from wizard-plugin (a0fef682f) * Let hereLicensePath update from null to empty string (736b60392) * Merge from wizard-plugin (8219b023a) * Move login function to Greeter (7f18c1dd6) 2014-11-27 Andrea Cimitan * Fix test (41d5b0952) * Tweaked limit as design requested (f8f23c62e) 2014-11-26 Andrea Cimitan * Add elastic effect to not cleseable spreads (6b3c4147b) * Add comment (d851cffc7) * comment code (4bef5eb2c) 2014-11-26 Michael Zanetti * decrease opacity, move it to overlay rectangle (7da96866d) 2014-11-26 Daniel d'Andrada * Merge trunk (2eec2248d) 2014-11-26 Sebastien Bacher * rebase on trunk (a8fd2d903) 2014-11-26 Albert Astals * Compile with Qt 5.4 (c29a26834) * Merge unity8 (a2f099dfe) * Merge photoscopeimprovements (b5be6d1ac) * Merge unity8 (21b59737f) * Merge photoscopeimprovements (3f388f484) * Merge croppedImageSizer (d9fda2727) * Merge unity8 (d9bdf2c50) 2014-11-25 Michael Terry * Cleanup infographics bindings (6fb4a1349) 2014-11-25 Michael Zanetti * make short flick distance shorter in the test (4090e8464) * move it even more to the right (6742f29db) 2014-11-25 CI bot * Releasing 8.01+15.04.20141125.2-0ubuntu1 (be5937682) 2014-11-25 Albert Astals * Fix some qmluitests Approved by: Michael Zanetti (3558866dd) 2014-11-25 Lars Uebernickel * Use Icon instead of StatusIcon (a761c8204) 2014-11-25 Albert Astals * Fix qml warnings (c2f1939d2) 2014-11-25 Michael Zanetti * increase threshold and avoid jumping in SpreadDelegate dragging Fixes: #1350803, #1352842 Approved by: Albert Astals Cid (24b1822d4) * disable swipeToClose while some snapping is happening Fixes: #1378938 Approved by: Albert Astals Cid (7c4a08b5a) * Make the launcher BFB rounded on one end Fixes: #1382596 Approved by: Michał Sawicz (03dce851a) * improve snapping after dragging (db59cf059) 2014-11-25 Ying-Chun Liu * Notifications should be on right side when wide. (LP: 1379384) Fixes: #1379384 Approved by: Michael Zanetti (688a67ad3) 2014-11-25 Daniel d'Andrada * Update tests (cb02036ba) 2014-11-25 Michael Zanetti * move position markers more to the right (816230220) 2014-11-25 Albert Astals * Need to also make it invisible (98d2a72f9) * Do not create categories for categories without results (116e0cc35) * Fix this binding ^_^ (4c229b3e4) * Try to use the mascot if there's no art set (da3874f75) 2014-11-24 Michael Terry * Remove extra whitespace (06abbb0b0) * add some copyright notices (72af5a0e5) * Fix some bits and pieces that weren't ready for an async greeter load (037b383dd) * Merge from early-disable (45da0be64) * Address review nits (ae2f1e40d) * Merge from wizard-plugin (11cc505a2) * Use a separate property rather than a special one-space value to signal when we have a valid HERE path (acaab884d) * Merge from trunk (100cd8e66) 2014-11-24 Albert Astals * The waitForRendering is enough to get the proper position on valgrind (5eba01c8b) * update aux again (86ded1bdc) 2014-11-24 Michael Terry * fix tests by resetting Greeter singleton objects inbetween Shell instances (2255cd7ad) * Merge from trunk (6de7a1fbf) 2014-11-24 Michael Zanetti * shrink indicators area if buttons are visible (eb279a401) 2014-11-24 Albert Astals * Make the test pass in slower machines (i.e. CI or valgrind) (8ba510e47) 2014-11-24 Nick Dedekind * removed author (56cc8a479) 2014-11-24 Albert Astals * Fix test broken by SDK behaviour change (cf1bb10a7) 2014-11-24 Michael Zanetti * add window control buttons to panel (3d806643b) 2014-11-24 Daniel d'Andrada * Make UnityTestCase.touchFlick properly map event coordinates (e3a18fd6e) 2014-11-24 Michael Zanetti * verfiy -> compare (217ad7264) 2014-11-24 Albert Astals * Small tweak (c09be8334) 2014-11-24 Mirco Müller * Merged with trunk again. (5a54cb7ae) 2014-11-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (07e4d0d2b) 2014-11-21 Michael Terry * Don't let user drag greeter out from left edge of screen when it's hidden (3ad8fc10d) * Add a bunch of tests for wizard (2e474a24d) * Don't undo clock date label binding, rather just force it to regenerate itself (c584e65ef) * Make shell disabled from the get-go instead of first greeter show (9cc97bca0) * Some more minor packaging cleanup (35fd20a88) * And depend on ubuntu-system-settings itself for its plugins that the wizard uses (72bdd9d88) * Conflict with the wizard package, so both aren't installed at the same time (b38f86dad) 2014-11-21 Michael Zanetti * merge prereq (63548201f) 2014-11-21 Lars Uebernickel * IndicatorItem: remove Icon.sets property (f494a329c) 2014-11-21 Michael Zanetti * fix qml tests (b423a77d1) * make it crossfade (e8ee8ca39) * merge prereq (8af1cfef4) * revert change for default form factor to keep jenkins happy (ecc9fd403) 2014-11-21 Lars Uebernickel * Remove StatusIcon in refactored indicator code (5259cf49d) 2014-11-21 Mirco Müller * Mock internal id for notifications in qmltest, thus closing can easily be restricted to just the one notification being swiped for dismissal. (178f06bc3) 2014-11-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (54120003d) 2014-11-20 Michael Zanetti * there be pictures (bffd21dad) * merge prereq (e82f36e7c) * camelCase now allowed in gsettings schemas (fce30861e) * restructure a bit, uninvert the launcher in desktop mode (5d1dfec8c) * fix jumping when changing swipe direction (0379a84ea) 2014-11-20 Albert Astals * remove unused slot (824cefc05) 2014-11-20 Michael Zanetti * s/Spread/Staged/ (ac3de11c3) 2014-11-20 Michał Sawicz * Move from Theme colour to direct UbuntuColors.orange for activity indicator and preview buttons (12b1f0b97) 2014-11-20 Albert Astals * make pot_file (278c54a50) * depend again in ~aacid/unity-api/setMoveFavorite (dbfe95ff5) 2014-11-20 Michael Zanetti * merge prereq (47169f10a) * merge trunk (103394ae0) * merge with launcher-snap-after-drag (e7454a528) 2014-11-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3bff641c8) 2014-11-19 Michael Terry * Only update language if it changed (225ac0e51) * Don't load Pages.qml unless we need to (4b57472bb) * Handle incoming calls (c4d70b9cb) 2014-11-19 Michael Zanetti * add copyright headers (8c2644e78) 2014-11-19 Michael Terry * Update from wizard-plugin (995f20233) * Update from u-s-s (2f3be892c) * Merge from wizard-import (25af38fe9) * Merge from trunk (c07aa7e23) * Have unity8 handle language changes better (ba4a9a02a) 2014-11-19 Albert Astals * Fix infinite loop in creation/deletion of delegates (a0e87ce5d) 2014-11-19 Michael Zanetti * some minor improvements (8df007e93) * add a gsettings schema to select the usage mode (fff8cf812) 2014-11-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e4b6642a6) 2014-11-18 Michael Terry * Bundle of fixes (e7b149442) 2014-11-18 Michael Zanetti * first somewhat working desktop stage (e5eb93d50) 2014-11-18 Ying-Chun Liu * merge trunk (8ab4238e2) 2014-11-18 Albert Astals * Fix qml warnings (233384948) * Fix qml warnings (5e73f522e) 2014-11-18 Michael Zanetti * add a else to avoid a theoretically nasty situation (8b1212309) * increase margins to prevent rounding at the top (bottom on phone) (eb1cbe6ec) * adjust to new threshold and non-jumping behavior (027df6b68) 2014-11-17 Michael Terry * Merge from trunk (69e6a2ba4) 2014-11-17 Michael Zanetti * drop unneeded clipping (797620ceb) * make it readonly (71b1b25ba) * drop borderSource from shape (89d59a7f6) 2014-11-17 CI bot * Releasing 8.01+15.04.20141117-0ubuntu1 (02ab6f8c7) 2014-11-17 Michael Zanetti * change spread background color to 111111 (84743dbb4) 2014-11-17 Michael Terry * Drop the "EARLY ALPHA" scare label when running in testing mode. (b89253002) 2014-11-17 Albert Astals * Fix a few cmake warnings when running ./build.sh in a clean checkout Approved by: Michael Zanetti (07aab75d6) 2014-11-17 Michael Zanetti * Keep applications suspended while lockscreen is shown Fixes: 1378126 Approved by: Josh Arenson (df85ab4c9) * hide quicklist when launcher hides Fixes: 1387088 Approved by: PS Jenkins bot, Albert Astals Cid (a394f869e) 2014-11-17 Albert Astals * Remove unused ResponsiveFlowView Approved by: Michael Zanetti, PS Jenkins bot (8fe6f2ea9) 2014-11-17 Mirco Müller * Make sure non-square icons are not cropped. Fixes: 1378417 Approved by: Andrea Cimitan (ec60657cb) 2014-11-17 Michael Zanetti * unify Greeter and Lockscreen wallpaper again (a72d409d9) 2014-11-17 Omer Akram * show password when tapped on the 'Show password' label, not just the checkbox. Fixes: 1389832 Approved by: Michael Zanetti, PS Jenkins bot (f9523a58b) 2014-11-17 Josh Arenson * Return focus to the application after a tusted session overlay is closing. Fixes: 1381292 Approved by: Michael Zanetti, PS Jenkins bot (dca0c146f) 2014-11-17 Lars Uebernickel * Properly remove DefaultIndicatorWidget.qml (d9862a908) 2014-11-17 Albert Astals * Make test pass (30127c79f) * Fix more tests (5405b007f) * Repair the cachebuffer here too (2068555d2) * Set cache buffer to the value it had when the test was written (ff2398667) * Remove unused static (325b57c0b) * Merge lp:~aacid/unity8/photoscopeimprovements (ecbe75604) 2014-11-17 Lars Uebernickel * Merge trunk (690f408b0) 2014-11-17 Michael Zanetti * make launcher BFB rounded (5616d1393) * increase threshold and avoid jumping in SpreadDelegate dragging (ff50a9342) 2014-11-16 Michael Terry * Ship polkit file (fc251eacb) 2014-11-14 Michael Terry * Further build fixes (c7f5a6799) * update packaging (ad348249b) * First pass at making wizard a plugin (6f03af2f0) 2014-11-14 Ying-Chun Liu * Change to use anchors on narrow and width on wide. (e080ac633) 2014-11-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c26442aea) 2014-11-14 Omer Akram * fix tags (44a74f48a) * merge trunk (cbdde6f29) 2014-11-13 Mirco Müller * Fix old FIXME and avoid binding-loop. (069451cb7) 2014-11-13 Michael Terry * Merge from trunk (c12f8e8ea) 2014-11-13 Michael Zanetti * disable swipeToClose while some snapping is happening (6a68e359c) * improve snapping after dragging (7666f34a1) * change spread background color to 111111 (1a31c7832) 2014-11-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (973e46862) 2014-11-12 Michael Terry * Drop alpha-not-ready-for-use label (b4015a6c2) 2014-11-12 Albert Astals * We need to call calculateSourceSize even if imageSize doesn't change (eac69ea5f) * Find things we use (e3dc05470) * Don't mention things we don't need (132ad7149) 2014-11-12 Mirco Müller * Merged with trunk again. (94699d21d) * Avoid setting and unsetting left/right anchors for swipable notifications. (1545263af) * Made the comment for a notification's global opacity-binding more verbose. (da18a799d) 2014-11-12 Michael Zanetti * close previews and temp scopes on left edge/BFB (843cacc40) 2014-11-12 Albert Astals * Merge (488e9c9db) * Merge (917a8ec69) * better slot name (9df0b3e5c) * Less changes against parent branch (d6e15dc98) * Merge (f14d12f54) * Merge (383d3cb12) * Merge (a4b75decd) * don't print the reply, will be 0 at this stage (ee959285e) * Merge (e65178d23) * It's the source being valid only that should trigger the network request (e8a9d9803) 2014-11-12 Michael Zanetti * fix it for real (9a98b849e) 2014-11-12 Albert Astals * Catch the case where m_height or image height are <= 0 (f96138d56) 2014-11-12 Sebastien Bacher * Set text hint property for the messaging menus inline reply widget (de01ec4dd) 2014-11-12 Albert Astals * Rework how we set the ranges so we get some more asynchronousity from item views (f45a5746c) 2014-11-12 Timo Jyrinki * No-change rebuild against Qt 5.3.2. (132d32e8d) 2014-11-12 Albert Astals * Rename image so we don't end up with (8955e9183) 2014-11-11 Josh Arenson * Remove FIXME (d791c2b40) 2014-11-11 Michael Terry * Initial move of wizard source code to unity8 (23a2ae1a2) 2014-11-11 Michael Zanetti * fix if (af583f739) * only set the gsettings image if there is no AS setting (d070482bf) * merge trunk (1e244ef04) * make the black overlay cofigurable to not break the wizard (5b57fc3ae) * fix review comments (6a7e67fb9) 2014-11-11 Nick Dedekind * new qmenumodel version dep (a0734a9e9) * merged with trunk (54c9f4025) 2014-11-11 Albert Astals * Be more thread safe (5509d1a5f) * Add comment explaining why worker->m_reply is fine to use at this point (385f205ad) 2014-11-11 Nick Dedekind * update qmltypes (be8d9b4f8) * IndicatorsLight made into non-widget component (f8a870ce6) 2014-11-11 Michael Zanetti * add a test (cf723d8f0) * keep apps suspended while in lockscreen (7d43d2433) 2014-11-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (def95259f) 2014-11-10 Mirco Müller * Make all but confirmation notifications and expanded snap-decisions draggable/swipe-dismissable. Updated qmltest accordingly. (5aa8f18d4) 2014-11-10 Ying-Chun Liu * merge trunk (e46cf6d34) 2014-11-10 Michael Zanetti * drop some unneeded changes (1242eb298) * make spread reversible (172da5f85) * hide quicklist when launcher hides (310c561c0) 2014-11-10 Mirco Müller * Fixed manual merge-issue causing problems in Notification-qmltest. (d78335dd5) 2014-11-10 Albert Astals * Merge (74dd3fc36) * Merge (c8db5fbe4) * Merge (94ab9c2d6) * Merge (b2de8fcdd) * Merge (dbf64c258) * Merge (c4c504602) 2014-11-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6aacf7cd0) 2014-11-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4de98e9b8) 2014-11-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e620c6770) 2014-11-07 Ted Gould * Start indicators after unity8 has started (639927fd7) 2014-11-07 Albert Astals * Hook up cacheBuffer in QML (882dbdf61) * Remove unused ResponsiveFlowView (4b917b986) * Allow setting the cacheBuffer externally (358e8f633) 2014-11-07 Mirco Müller * Make sure non-square icons are not cropped. (1fc6e29cf) * Merged with trunk and fixed conflicts. (d51efda80) 2014-11-07 Albert Astals * Try waiting here a bit (9319a1771) 2014-11-07 CI bot * Releasing 8.01+15.04.20141107.2-0ubuntu1 (c9efc9191) 2014-11-07 Michael Zanetti * antialias surfaces when in spread Fixes: 1351559 Approved by: Gerry Boland (e02ad8775) * Update PageHeader to use new SDK api Approved by: Tim Peeters (a0915555d) 2014-11-07 Albert Astals * Remove Hud (ae84ecb04) 2014-11-07 Mirco Müller * Replace ComboButton in snap-decision notifications, used for additional actions (> 3 actions), with custom widget immune to accidental taps. Fixes: 1384730 Approved by: Albert Astals Cid (e5613f8ed) 2014-11-07 Michael Zanetti * fix positive/negative answer order on the new swipe notification Fixes: 1358343 Approved by: Mirco Müller, PS Jenkins bot (022cf0e91) 2014-11-07 Michael Terry * Skip second SIM unlock dialog if user presses Emergency Call on first one Fixes: 1387925 Approved by: Michael Zanetti, PS Jenkins bot (0c8b6e5d7) 2014-11-07 Albert Astals * Merge (fa190e6be) 2014-11-07 Michael Zanetti * unitfy Greeter and Lockscreen wallpapers again (5bd3dbc8e) 2014-11-07 Mirco Müller * Fixed issues based on MP-comment suggestions. (24a6b1ff7) * Removed copyNpaste error. (90099a89d) 2014-11-07 Albert Astals * Less stuff to translate is a feature (d39c87493) * Make sure it's rendered before clicking into it (84d336592) * Merge (755ae5b7a) * Merge (79bcf5f7f) * We don't care if this reply finishes or not anymore (b24b6cae4) 2014-11-07 Mirco Müller *sigh* qtcreator is very odd with regards to whitespaces. (dc30aa192) 2014-11-07 Albert Astals * Merge (7046b32b4) * Merge (8eeb8c4a6) * Merge (77bc86c2c) * Merge (8c8ffed15) 2014-11-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1a1303332) 2014-11-06 Mirco Müller * Added a small debug-output, so one sees something on the terminal when running tryOptionToggle and clicking on an action. (7f4235c54) * Doh. (38c4b899b) 2014-11-06 Albert Astals * More sane way of setting the displayMargin[Begin,End] (02cbc37ab) 2014-11-06 Mirco Müller * Update icon-visibility-check for notification's OptionToggle-qmltest. (4856af73d) * Merged with trunk and resolved conflicts. (265a8033e) 2014-11-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1b341bce7) 2014-11-06 Omer Akram * merge trunk (c9b50d852) * need to have a MouseArea to click at (05dd69451) * fix as Saviq suggested (ea18e6438) 2014-11-05 Omer Akram * wifi password dialog: also show password if tapped on the label (52f2662e0) 2014-11-05 Albert Astals * Use a Qt::QueuedConnection to make sure we don't deadlock with abort calling finished (0074e62a4) 2014-11-05 Michael Terry * Skip second SIM unlock dialog if user presses Emergency Call on first one (c13b8bdc8) 2014-11-05 Albert Astals * Merge (47d464612) * The Journal doesn't like items changing size, so let's not make it async (1fc197c0e) 2014-11-05 Michael Zanetti * fix positive/negative answer order on the new swipe notification (ab2425e80) 2014-11-05 Albert Astals * Merge (67f3d1250) * Async CroppedImageSizer (b60e2fc36) * Merge (a84a909b9) * Merge lp:unity8 (e504d77cc) * Merge lp:unity8 (71aa02b48) * Merge lp:unity8 (2093d3254) * Merge lp:unity8 (07aedbf3f) 2014-11-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b520ab79d) 2014-11-04 Michael Terry * Fix some nits from design (84adc8acf) 2014-11-04 Mirco Müller * Merged with trunk and fixed conflicts. (857523409) * Fix height-animation issue with expansion of OptionToggle widget and framing notification/UbuntuShape being out of sync. (574640380) 2014-11-04 Michael Zanetti * also antialias the app screenshot (906ff5ea2) * enable surface antialiasing when in spread mode (041a32a45) 2014-11-04 CI bot * Releasing 8.01+15.04.20141104-0ubuntu1 (52c3b4b6e) 2014-11-04 Nick Dedekind * Added timer to re-assert server value after indicator menu item activation. Fixes: 1336715 Approved by: Michał Sawicz (f4aa9ac44) 2014-11-04 Daniel d'Andrada * TouchDispatcher: synthesize MouseButtonDblClick events (645165eea) 2014-11-04 Michael Terry * Don't lock phone if user tries to switch back to an active call. Fixes: 1388156 Approved by: Michael Zanetti (b66800329) 2014-11-04 Daniel d'Andrada * DirectionalDragArea: Update TODO comment in light of new events Approved by: Albert Astals Cid (11146b868) 2014-11-04 Albert Astals * Fix i18n (e6d72b6aa) 2014-11-04 Mirco Müller * Added dedicated swipe-to-act button for snap-decisions, which avoids accidental taps/button-presses. Fixes: 1358343 Approved by: Josh Arenson, Albert Astals Cid (9fe1a47c3) 2014-11-04 Nick Dedekind * Reset current item selection on deleted. Fixes: 1378462 Approved by: Albert Astals Cid (5aaaf3a8a) 2014-11-04 Michael Zanetti * Add a hinting animation to indicate changes in the backend Fixes: 1376707 Approved by: Daniel d'Andrada (bebdf63cd) * Fix desktop file encoding in launcher Fixes: 1387083 Approved by: Josh Arenson, Albert Astals Cid (b99f836d7) 2014-11-04 Chris Gagnon * add missing unity-scope-click dependancy to unity8-autopilot package Fixes: 1336276 Approved by: Michael Zanetti, Omer Akram (539d5d987) 2014-11-04 Michael Zanetti * Fix DBusVariant conversion for launcher emblems Fixes: 1387261 Approved by: Albert Astals Cid (a1fa256f4) 2014-11-04 Albert Astals * Update build.sh (edc17894c) 2014-11-04 Leonardo Arias Fonseca * Removed the tests for the alternate paths of the autopilot helpers. Approved by: Michael Zanetti, Omer Akram (f490cceca) 2014-11-04 Sebastien Bacher * Drop workaround, it's not needed and create issues for desktop-next Fixes: 1387671 Approved by: Michael Terry (4eeed3ed7) 2014-11-04 Albert Astals * Remove unused end() function Approved by: Daniel d'Andrada (59816fc4c) * Do not append integer to char; (fec6d80ee) 2014-11-04 CI bot * Fix relative time formatter when using non-UTC timezone. Fixes: 1378821 Approved by: Daniel d'Andrada (38b3ee4dc) 2014-11-04 Michael Zanetti * rework launcher quicklist visuals to fit new design Fixes: 1368660 Approved by: Michael Terry (9487d0916) 2014-11-04 Nick Dedekind * Fix relative time formatter when using non-UTC timezone. Fixes: 1378821 Approved by: Daniel d'Andrada (432b850f5) 2014-11-04 Alberto Aguirre * Add a plugin to take screenshots on vol up + vol down (4565c0c06) * Add audioRole to QtMultimedia mock (262de1a8c) 2014-11-04 Daniel d'Andrada * Fix typo (1e3c5fd40) 2014-11-04 Albert Astals * Make this async too (bcf198c08) 2014-11-03 Michael Terry * Merge in multimediaMocks fix (92cdeafd4) * And same for TutorialPage.qml (3d61ba10e) * Just delete old EdgeDemo.qml completely and replace with Tutorial.qml; enough changed that it was harder to read the diff than helpful (b3d900098) * Merge from trunk (6f5c0a54a) 2014-11-03 Mirco Müller * Added qml-test for the new custom OptionToggle widget for snap-decision notifications. Adjusted existing qml-test for notifications accordingly. (545d96e45) 2014-11-03 Daniel d'Andrada * TouchDispatcher: synthesize MouseButtonDblClick events (19dc3da8d) * Add a regression test for lp:1388359 (c73522596) * Refactor tst_SingleGreeter (6f67c3f69) * merge lp:~aacid/unity8/multimediaMocks (60313851a) 2014-11-03 Albert Astals * Make the other Card* async too (384ef9a83) 2014-10-31 Michael Terry * Add tests (e530f6b0c) 2014-10-31 Nick Dedekind * merged with trunk (582562805) 2014-10-31 Leo Arias * Merged with trunk. (a6f509328) 2014-10-31 Michael Terry * Only upgrade dialer-app to a lockedApp if we're already locked (c3f8c9a71) 2014-10-31 Albert Astals * Merge (0f4b6e60d) * change forth and back (70ff5f8b7) 2014-10-31 Mirco Müller * Make OptionToggle emit/trigger the correct actionId passed via the action-model. (9de78553f) 2014-10-31 Albert Astals * Test the other aspect ratio else (7dc20012a) * style (92d6fcc9d) * Make sure we don't divide by 0 (2664a82af) 2014-10-31 Daniel d'Andrada * DirectionalDragArea: Update TODO comment in light of new events (2a3db18b3) 2014-10-31 Ying-Chun Liu * merge trunk (caa58c631) 2014-10-31 Alberto Aguirre * Add audioRole to QtMultimedia mock (219c88f2f) 2014-10-31 Mirco Müller * Adapted the SwipeToAct qml-test too after the merge with trunk. (addc91467) * Merged with trunk... resolved conflicts. (11591bc8c) 2014-10-31 Albert Astals * Fix i18n (c120f6110) * Merge (629a4ac42) 2014-10-31 Michael Zanetti * merge trunk (15d7b45a6) 2014-10-31 Albert Astals * Merge (939e4ec73) 2014-10-30 CI bot * Releasing 8.01+15.04.20141030-0ubuntu1 (f8306862b) 2014-10-30 Michael Zanetti * Use an index instead of a scope id in DashCommunicator Fixes: 1376044 Approved by: Albert Astals Cid (974e2d6b5) 2014-10-30 Mirco Müller * Also use modal nature of snap-decision notifications when greeter/lockscreen is shown. This fixes LP: #1378827. Fixes: 1378827 Approved by: Michael Terry (c67350f4b) 2014-10-30 Andrea Cimitan * Updated behaviour for zoomable image, workaround for sourcesize Fixes: 1333187 Approved by: Michał Sawicz (86da29f22) 2014-10-30 Michael Terry * Expose a 'passphrase' field of Components.Lockscreen to allow consumers (like the wizard) to query the password content before the user finishes. Needed to provide a proper Continue button in the welcome wizard. (1951663d7) 2014-10-30 Michał Sawicz * Revert lp:~unity-team/unity8/flickables-speed-workaround to avoid risk in RTM. (1309cbd08) 2014-10-30 Ted Gould * Set the default OOM score for the dash Fixes: 1379786, 1379788 Approved by: Michał Sawicz (6cf1f3957) 2014-10-30 Daniel d'Andrada * Don't specify a distanceThreshold as it conflicts with hintDisplacment (f7a361af6) 2014-10-30 Michael Zanetti * exit spread on background tap Fixes: 1368261 Approved by: Michael Terry (036c96495) 2014-10-30 Ying-Chun Liu * Add non-interactive code into GenericScopeView. Fixes: 1384441 Approved by: Albert Astals Cid (b054b2483) 2014-10-30 Michael Terry * When greeter or lockscreen has focus, show active call panel. Fixes: 1378872 Approved by: Nick Dedekind (0813bd21c) 2014-10-30 Daniel d'Andrada * Make TouchGate synthesize QMouseEvents for mouse-based target items (0706621a7) 2014-10-30 Michael Frey * Added a check for Proximity to determine if we show the lock screen. Fixes: 1378012, 1378043 Approved by: Michael Terry (37b6786fb) 2014-10-30 Michael Terry * Set domain explicitly for the Dialogs component because the welcome wizard wants to import it. Fixes: 1381731 Approved by: Daniel d'Andrada (41806ab17) * Fix a race between Qml loading and DBus registration that caused problems when jenkins tried to unlock the phone. (89dbba88e) 2014-10-30 Michael Zanetti * Make the launcher update on dconf changes Fixes: 1376707 Approved by: Daniel d'Andrada (324c3e71a) * Fix desktop file encoding in launcher (965b3db9c) 2014-10-30 Chris Gagnon * add unity-scope-click to as depends to unity8-autopilot package (e67cb71c6) 2014-10-30 Michael Zanetti * fix DBusVariant converion (2682bc37d) * update qmltests for new objectName (fce573e7a) * make AP work based on index too (4c824915a) 2014-10-30 Albert Astals * According to Saviq this stuff should not have @ (a81dd0588) * Adapt to new code (f18d9604d) * Merge from croppedimagesizer (1f5e2da6e) * Update expectations (998cd29a3) 2014-10-30 Mirco Müller * Started to replace ComboButton with custom OptionToggle widget. (36cd49c1e) 2014-10-30 Albert Astals * Expose fillMode too (2ef4fb782) * Since clickscope is not special in any way now no need to change this code (a2f5bb836) 2014-10-30 CI bot * Releasing 8.00+15.04.20141030-0ubuntu1 (762258542) 2014-10-30 Albert Astals * Reset VerticalJournal until the cardTool settles Fixes: 1381255 Approved by: Michał Sawicz (79e2fa8f2) * CardAttributes: Specify column and row since the gridlayout gets confused sometimes Fixes: 1381092 Approved by: Michał Sawicz, PS Jenkins bot (65bdb6d9f) 2014-10-30 Michael Zanetti * Drop all visual indication of "pinning" Fixes: 1381054 Approved by: Andrea Cimitan, Michał Sawicz (04fcea5e8) 2014-10-30 Nick Dedekind * Implementation of expandable panel design Fixes: 1368856, 1382078, 1383693 Approved by: Michael Terry (a33614bdb) 2014-10-30 Michael Zanetti * Fix lp:1370240 by making stages interactive when a snap decision is dismissed. Fixes: 1370240 (b1b310fdf) 2014-10-30 Antti Kaijanmäki * Unlock all modems on boot. Fixes: 1333121 Approved by: Michał Sawicz (bea029a4b) 2014-10-30 Nick Dedekind * remove qml ownership confusion for caching unitymenumodels Fixes: 1368856 Approved by: Albert Astals Cid (41cc2253f) 2014-10-30 Mirco Müller * Added synchronous/confirmation notification support to unity8. Fixes: 1232633, 1373404, 1378618 Approved by: Andrea Cimitan, Albert Astals Cid (9c6d98ee0) 2014-10-30 Albert Astals * Make async, after all we're creating more than we really need to see so it's better if it's async (d2ce14038) * No more binding loops (68bef6b17) 2014-10-29 Alberto Aguirre * Remove trailing whitespace in comments (5c43cb6e6) * Avoid volume control changes when both volume keys are pressed. (8c22a7855) 2014-10-29 Mirco Müller * Adjust Flickable (d5d491c55) * Re-add the Flickables import. (3dbd393d8) * Doh (d4780efbd) * Further tweak the Loader for the SwipeToAct-widget. (5a66853c1) * Use Loader for the swipeToAct widget to save some resources, if it is not used. (69b793ff0) * Removed superfluous import. (852e978b0) 2014-10-29 Michał Sawicz * Merge lp:~saviq/unity8/revert-resolution-flickable (bb8f8af8d) 2014-10-29 Albert Astals * Add some spacing where the item is going to be dropped (1ecc5579d) 2014-10-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (96445fcd5) 2014-10-28 Michael Terry * Fix installation of Tutorial directory (9277440b2) * make the last screen mention that it's the last screen (87276bb27) * Ship the Tutorial directory (e866b9c4d) 2014-10-28 Albert Astals * Use a ThinDivider instead of a custom built thing (05d868ec7) * Hook scopeStyle (c5adf597e) * Other -> Also Installed (5c94f448e) 2014-10-28 Michael Terry * Add a qmluitest file for tutorial (9dd6ce492) 2014-10-28 Albert Astals * Merge (e268fff60) * Move to the plain qml tests side (2c2899af5) * whitespace (e3eb7de6b) * No Hud (84da3e533) * we don't need dee here (0cc6d3941) * Merge (e670dcfc4) * And now make it a test ^_^ (c1c70003a) * make the test async (05da20d28) * better image (037be2681) * Don't need http access in test (d4bbdc3d1) * we don't do the network thing anymore (57319cc39) * Remove Hud (ba2f35994) * Don't create the whole current scope delegates, just height; 3 (9601a8fb4) 2014-10-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dbd800446) 2014-10-27 Michael Terry * Refactor and redesign edge tutorial (8cebdc79d) 2014-10-27 Ying-Chun Liu * Merge trunk (8c1453337) 2014-10-27 Albert Astals * Merge croppedimagesizer (2467aa96b) * Use ubuntu::connectivity::NetworkingStatus instead of QNetworkConfigurationManager (29af9e58d) * Update (cac92b9b0) 2014-10-24 Mirco Müller * Minor tweaks. (60b50e272) 2014-10-24 Ted Gould * Adjusting score to be lower than the focused app (98882434f) 2014-10-24 Mirco Müller * Fix all the bad whitespace issues QtCreator created. (05592daab) * Updated copyright header-comments. (7b23acbdb) 2014-10-24 josharenson * [HACK] Force focus back to the prent surface when a trusted session is closed. (bff46a996) 2014-10-24 Mirco Müller * Deleted incoming-call snap-decision notification autopilot-test as this is now covered in the qml-based set of notification-tests. (aa1e7cc35) * Extracted SwipeToAct-qmltest into seperate file to simplify testing of left and right swipe-gestures. (7f16e3982) 2014-10-24 Albert Astals * Try to use QImageReader not to load the image into memory twice (ee61f43bb) 2014-10-23 Mirco Müller * Replace the old mocks for the notification-qml-tests... make the SwipeToAct widget-test pass. (bb75bba73) 2014-10-23 Leonardo Arias Fonseca * Fixed whiteline. (23c546ae5) * Reverted the missing method. (19f8d9768) * Making the statement look prettier. (d32ff7bc9) * Removed the tests for the alternate paths of the autopilot helpers. (0bd9d71d7) 2014-10-23 Sebastien Bacher * Drop workaround, it's not needed and create issues for desktop-next (4089f518c) 2014-10-23 Albert Astals * Move the title setting "up" in the hierarchy (2cd58ee80) 2014-10-23 Mirco Müller * Also use modal nature of snap-decision notifications when greeter/lockscreen is shown... adapted related autopilot-tests accordingly. (daff3636e) 2014-10-23 josharenson * [CHECKPOINT COMMIT] (408e13929) 2014-10-23 Michael Terry * Allow consumers of Lockscreen to query the current passphrase (23bce9920) 2014-10-23 Albert Astals * Small fixlets (2abfc99a7) 2014-10-23 Michał Sawicz * Revert lp:~unity-team/unity8/flickables-speed-workaround to avoid risk in RTM. (eabe465d0) 2014-10-22 Michael Zanetti * drop scope initialisation logic as we want to have 0 all the time now (a3cc5b0a0) 2014-10-22 Andrea Cimitan * Adding file (636121a68) 2014-10-22 Albert Astals * Remove unused end() function (504f0b8f5) 2014-10-22 Michael Zanetti * revert change in setCurrentScope and use setCurrentScopeAtIndex directly (b6020f093) 2014-10-22 Albert Astals * Do not append integer to char; (6203bf09b) 2014-10-22 Andrea Cimitan * Move files a bit, to share code (3d06ffcc4) 2014-10-22 Michael Zanetti * reorder (da708711d) * update PageHeader to use new SDK api (5b1c03a2c) 2014-10-22 Andrea Cimitan * Fix horizontal centering (c3c4dc878) * Extra (cfe5b1c32) * Extra tweaks (73623247c) 2014-10-22 Mirco Müller * Trying to get notification's qmltest working for the SwipeToAct-widget. (71c42ed90) 2014-10-22 Andrea Cimitan * Update animations on open/close (e6c8496ed) 2014-10-22 Albert Astals * Click scope should actually have a favorite button now (85b65c4a9) * Depend on ~aacid/unity-api/setMoveFavorite (bb6e57986) * Workaround bug when moving to/from the current index scope (49f86d59a) * Fix dragging bug (c25e7084a) 2014-10-22 Andrea Cimitan * Not sure this will fix the issue with CI (3188f32af) 2014-10-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0e59683bd) 2014-10-21 Michael Zanetti * improve comment (a8aed5401) 2014-10-21 Andrea Cimitan * Fix for black preview zoomable images, use fullscreen preview (e0142d13c) 2014-10-21 Nick Dedekind * removed StopAtBounds (a52c7f7c1) 2014-10-21 Michael Zanetti * don't emit pinnedChanged if it actually doesn't unpin, update test (a06033406) 2014-10-21 Daniel d'Andrada * Don't specify a distanceThreshold as it conflicts with hintDisplacment (1c64e2123) 2014-10-21 Nick Dedekind * fixed local relative time (293b66cbe) 2014-10-21 Mirco Müller * Started to add SwipeToAct-checks to notification's qml-tests. (20ff88a6a) 2014-10-21 Daniel d'Andrada * Merge lp:~nick-dedekind/unity8/expanded-panel-design (6b2c36c8f) 2014-10-21 Mirco Müller * Small Flickable-related fix... also make sure no regular buttons are created, if the SwipeToAct-widget is used. (0c162fca9) * Make SwipeToAct's slider accessable to qmltests. (b53f0a597) 2014-10-21 Nick Dedekind * removed unnecessary fields (ae4b8ad0b) * Added test for menu item selection on remove (685ff7caf) 2014-10-21 Michael Zanetti * rename hinting signal (6e142387a) 2014-10-21 Nick Dedekind * fix async object creation missing unitymenumodel signal (c5a6fd22b) 2014-10-21 Michael Zanetti * merge prereq (fab32a54f) 2014-10-21 Albert Astals * clickscope is now un/favoritable (78ee5d1cc) 2014-10-21 Alberto Aguirre * Add audioRole to QtMultimedia mock (771480d03) 2014-10-21 Michael Terry * Don't block greeter.show() on loading background image and qml (9ad7c6a72) 2014-10-21 Nick Dedekind * more required to shed lock (3326cb1c8) 2014-10-21 Michael Zanetti * add button to test hintChanged signal (ba42b4f8f) 2014-10-21 Nick Dedekind * reset current item on deletion (1955e185c) 2014-10-21 Ying-Chun Liu * Save objectName for rendererLoader. (9961d7743) 2014-10-21 Nick Dedekind * better indicator switch detection (5387d8d65) 2014-10-20 Mirco Müller * Only trigger use of SwipeToAct-widget if notification uses special hint... otherwise use regular buttons. (d78c63d4b) 2014-10-21 Ying-Chun Liu * Notifications should be on right side when wide. (LP: 1379384) (07eb810cf) 2014-10-20 Albert Astals * Use 0.2 as the messaging-app (798932e37) 2014-10-20 Nick Dedekind * re-add commit line for redrag (cf7ba9c46) 2014-10-21 Ying-Chun Liu * Don't modify touchdown visible (b5edd7d7e) 2014-10-20 Daniel d'Andrada * fix whitespace issue (49e495cef) 2014-10-20 Nick Dedekind * fixed indicator realignment (ed84f97b1) 2014-10-20 Mirco Müller * Make SwipeToAct a bit more generic and allow passing in symbolic icons. (adf35a57d) 2014-10-20 Albert Astals * Don't optimize visibility here (c3d7d9770) 2014-10-20 Mirco Müller * Make SwipeToAct-widget slightly delay emitting the signal of a selected choice to allow showing the outlined button as an additional verification clue to the user... as Design requested. (efac0c012) 2014-10-20 Michael Frey * One more time for formatting. (35fb4d9a2) 2014-10-20 Daniel d'Andrada * Add missing file (356b53315) 2014-10-20 Michael Frey * Better style. (a0b6aa015) 2014-10-20 Nick Dedekind * more efficient delegate draws (536f6e0af) 2014-10-20 Michael Frey * Remove extra white space. (9124a0a45) * Fix to check the proximity sensor when determining to show the lock screen. Fixes #1378043 and #1378012 (8dd6ea20b) 2014-10-20 Michael Zanetti * change DashCommunicator to use a scope index instead of a scope id (f5af5d79e) 2014-10-20 Ying-Chun Liu * Merge trunk (149a553aa) * Fix unit tests (45c23c58b) 2014-10-20 Nick Dedekind * merge with sharedunitymenumodel branch (6b61029dc) 2014-10-20 Daniel d'Andrada * Fix whitespace issues (132d728fb) 2014-10-20 Ted Gould * Setting the default OOM score for the dash (aac0c643f) 2014-10-20 Lars Uebernickel * Replace more occurences of StatusIcon with Icon (765b10bc0) 2014-10-20 Nick Dedekind * isIndicatorVisible->indicatorVisible (8d2163329) 2014-10-20 Lars Uebernickel * Merge trunk (04276acaf) 2014-10-18 Mirco Müller * Don't use the obsolete properties of the SwipeToAct widget. (9b5f4a452) * Merged with trunk. (21b5be791) * Fully implemented all required visual features for the swipe-to-act widget. (b78761ed5) 2014-10-17 Nick Dedekind * fixed root action state visible (9f6576101) 2014-10-17 Daniel d'Andrada * Don't specify a distanceThreshold as it conflicts with hintDisplacment (1c635bfa9) 2014-10-17 Nick Dedekind * Expanded visible indicators. (2f15a07c4) 2014-10-17 Albert Astals * Bring back the tests (15cc38fd0) 2014-10-17 Daniel d'Andrada * use real timers in TouchRegistry when running "make tryFoo" tests (uqmlscene) (1bb1d440c) 2014-10-17 Albert Astals * bind processing (3a18c94f7) * Bit more modern (bb90144eb) 2014-10-17 Daniel d'Andrada * Make TouchGate synthesize QMouseEvents for mouse-based target items (6f080490c) 2014-10-17 Nick Dedekind * fixed edge demo (0742924e4) 2014-10-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1ff263153) 2014-10-16 Albert Astals * New interaction method suggested by Design that looks more like what the Launcher does (3f7eff0f2) * Don't activate in edit mode (8d939d5f8) * set the subtext too (8f0679fc4) * Since we're limiting the X i also feel like limiting the Y makes sense (054fd70c9) * Design wants that the x coordinate of the dragged item is always 0 (8e2b225c0) * 'Apps' should be reposition-able and unfavorite-able when in edit mode (as with other scopes). (f80c113a4) * Once in drag, move is on rpess not pressAndHold (292b95be7) * Eat direct presses on the overview hint so that they do not end up in the card below (d8752f0e9) 2014-10-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (77949c5b1) 2014-10-15 Michael Terry * Set the domain explicitly for the Dialog component class (b13728b6f) 2014-10-15 Michael Zanetti * fix bad merge (a2d8c68b3) * merge lp:~nick-dedekind/unity8/sharedunitymenumodel (5afb01d06) 2014-10-15 Michael Terry * Merge from trunk (72c4cda04) * Try to guard against the shell.enabled logic from biting us (c5998b14c) 2014-10-15 Nick Dedekind * remove/add item fixes (c04db5a30) 2014-10-15 Alberto Aguirre * Make PNG the default screenshot format (2ee53362e) 2014-10-15 Albert Astals * Reset VerticalJournal until the cardTool settles (955bba8e7) 2014-10-15 Mirco Müller * Add audioRole to fix LP: #1378920. (cbf8aaaa4) 2014-10-15 Michael Terry * Merge from trunk (b629fe192) 2014-10-15 Michael Zanetti * drop debug print (3a3879f0a) * share some little duplicated code (3d5a8e678) 2014-10-15 Mirco Müller * Make sure any attached sound-file is played back for sync. notifications any time its hints are changed. (f9c6f7452) 2014-10-15 Michael Zanetti * drop unneeded findChild (d6aa927ec) * wait for the notification to be expanded (47237ded7) 2014-10-15 Antti Kaijanmäki * re-enable tst_unlockAllModemsOnBoot (f14b64087) 2014-10-15 Michael Zanetti * fix bad merge (f4ac106bf) 2014-10-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fadfb1a77) 2014-10-14 Antti Kaijanmäki * Unlock all modems on boot. (f96702247) 2014-10-14 Alberto Aguirre * Use binding instead of function call to enable/disable screenshotting according to screen power status. (81298c9e8) * merge lp:unity8 (c1dec0cac) * Address review feedback (32490b602) 2014-10-15 Ying-Chun Liu * Fix card result (4e4313bf4) 2014-10-14 Michael Zanetti * add more waitForRendering (636ade55d) 2014-10-15 Ying-Chun Liu * Use enabled property (267378410) 2014-10-14 Michael Zanetti * merge trunk (c8adabc7a) 2014-10-14 Albert Astals * Add a button to toggle visibility (93e654d5b) * Specify column and row since the gridlayout gets confused sometimes (74a27eeeb) 2014-10-14 Ying-Chun Liu * merge trunk (403f8e10a) 2014-10-14 Nick Dedekind * full screen notifications don't include panel (55187259c) * use QPointer to track singleton destruction (9f4cd4659) 2014-10-14 Michael Zanetti * cerry-pick fix over (416596767) 2014-10-14 Nick Dedekind * remove previouslyStopped (5a125325f) 2014-10-14 Michael Terry * Remove async again (bf178de1e) * Merge from trunk (1fd629371) 2014-10-14 Michael Zanetti * drop all visual indication of "pinned". Design doesn't want it any more. (af3efa8d5) * revert back to activeFocus, make it a bit more robust (de456b806) 2014-10-14 Nick Dedekind * sync indicator page delegate loader (dc7c4609a) 2014-10-14 Mirco Müller * Simplify implicitHeight binding a bit. (6cf354e47) * Fix trailing whitespaces. (2a6401673) * Solved top-margin issues in fullscreen snap-decision due to added sync. notification support. (c083dee48) 2014-10-14 Michael Zanetti * merge trunk, update test to work with trunk (8cf66da43) 2014-10-14 Nick Dedekind * merged with trunk (97551904f) * fixed include (56c70e808) * merged with trunk (f66d62730) 2014-10-14 Albert Astals * Fix broken merge (b7df604bb) * Merge (355185980) 2014-10-13 Nick Dedekind * AP emulator update (c3300019e) * review comments (966e2f919) 2014-10-13 Michael Zanetti * don't call any methods that could overwrite dconf while we're loading it (423e8d4d6) 2014-10-13 Nick Dedekind * even better velocity calc (76cbe2136) * performance tweaks. (dc1cda688) 2014-10-13 CI bot * Releasing 8.00+14.10.20141013.2-0ubuntu1 (10ac5e3d5) 2014-10-13 Daniel d'Andrada * Add touch ownership logic on top of qt input handling (8b2cc4c31) 2014-10-13 Michał Sawicz * Fix the ShellWithPin test and some functionality. (a326304ee) 2014-10-13 Andrea Cimitan * Fix flickable speed to be resolution independent, by subclassing components Fixes: 1348557 Approved by: Albert Astals Cid (9f68029c8) 2014-10-13 Albert Astals * Fix some small qml warnings Approved by: Michael Terry (16cc3a946) * Fix first item positioning when m_clipItem->y() is not 0 Fixes: 1251597, 1372940 Approved by: Michael Zanetti (19f9882d2) 2014-10-13 Michael Terry * Distinguish between incoming calls and other dialer-app opens. (LP: #1378218) (e83c89bb6) * Don't show initial lockscreen during the edge demo. The user just set up their phone with a password, it's pointless to ask them again. Fixes: 1358283 Approved by: Mirco Müller (b544d30ee) 2014-10-13 Albert Astals * Move Base.qml to DashCategoryBase (08613d902) 2014-10-13 Michael Zanetti * fix bad merge (3a00958c9) * fix indentation to make whitespace test happy (c69e7e799) 2014-10-13 Nick Dedekind * s/Threashold/Threshold (ee864bfcc) * recalc guard (b3fced6fc) 2014-10-13 Michael Zanetti * merge the kraken (978a81787) 2014-10-13 Nick Dedekind * reverted debug change (4f581145c) * break loop (d2cbd2efa) * use QWeakPointer::isNull (4f3f5a378) * fixed expansion (4340082cc) 2014-10-13 Mirco Müller * Added qmltests for value-label and value-tint of synchronous notifications. (ec13d0e04) 2014-10-13 Nick Dedekind * merged with shared (0a2cda48d) * merged with trunk (c001cd012) 2014-10-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (abb33d56b) 2014-10-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (84382b5f4) 2014-10-10 Alberto Aguirre * Clasify shutter sound as alert to avoid pausing other players. (ef38c29fc) 2014-10-10 Michael Zanetti * fix the notification focus test (ec888f305) 2014-10-10 Nick Dedekind * typo (0433137a3) 2014-10-10 Alberto Aguirre * Play camera shutter sound when taking screenshot. (11549cf38) 2014-10-10 Michael Zanetti * hardcode colors. palette's broken (1125a395c) 2014-10-10 Nick Dedekind * added code comments (41c7b1ea6) 2014-10-10 Daniel d'Andrada * Bump qtmir version dependency (ef63f10be) 2014-10-10 Michael Zanetti * fix issues from review (fb4af0b4b) * addressed nits (f79fc1713) 2014-10-10 Michał Sawicz * Use tap() everywhere in the touched file. (b8cb938dd) * Improve the tap() method (5593d686d) 2014-10-10 Alberto Aguirre * merge lp:unity8 (0c9bcd7b9) 2014-10-10 Michael Zanetti * exit spread on background tap (5f2a099b7) * rework quicklist visuals (72aefad38) 2014-10-10 Andrea Cimitan * Attempt to merge (7f38f3f94) * merge trunk (e1cfe32b4) 2014-10-10 Mirco Müller * Added support for the new sync. notification layout and design requirements to allow the max-volume-warning use-case. (779484b84) 2014-10-10 Albert Astals * Merge (6fb1d1395) * Fix some qml warnings (ec00b9e55) 2014-10-10 Michał Sawicz * Fix the ShellWithPin test and some functionality. (35f128458) 2014-10-10 Albert Astals * Merge (6055ff3cf) 2014-10-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cc50056e8) 2014-10-09 Michael Terry * Fix missing arguments (560d8b2af) * Allow dbus objects to register immediately (speeds up dash a lot (e0be9e37f) 2014-10-09 josharenson * Add newline (e9d1240e4) * Remove unused AP test (0bbce1620) * Add a unit test (4ffdbf1c1) 2014-10-09 Michael Terry * Merge from trunk (f93ae23c4) * Merge from trunk (f2544fa9f) 2014-10-09 Daniel d'Andrada * DDA - ungrab current mouse grabber instead of going all the way grabbing for himself (6e35e1eba) 2014-10-09 Albert Astals * Merge (58865a610) * Merge (71f40d270) * Merge (5be018baf) 2014-10-09 Nick Dedekind * more review comments (f1e9b2082) * Added server value re-assertion + test (e975b7f74) 2014-10-09 Michael Terry * Merge from trunk (dddfa87e0) * Close race between hideGreeter and PAM (341a8323d) * small cleanups (a2b5ebc0c) * Merge from trunk (4bf0fdbde) * Add common DBus object classes to libunity8-private (ae64e24d8) 2014-10-09 Nick Dedekind * better adjustments (32c5d4de0) 2014-10-09 Daniel d'Andrada * Work around qt bug to make tests pass (87c2ff891) 2014-10-09 CI bot * Releasing 8.00+14.10.20141009.4-0ubuntu1 (d548b1d7f) 2014-10-09 Michał Sawicz * Rename datetime indicator in test (5e1352dee) 2014-10-09 Michael Zanetti * scale down errorText label if necessary Fixes: 1378848 Approved by: Michael Terry (e2899293c) 2014-10-09 Michael Terry * Fix some security issues with the tablet greeter, which allowed the lockscreen to be bypassed. (LP: #1367715) (5e81d1573) 2014-10-09 Albert Astals * Remove contentScale variable (cc5a1a7ed) 2014-10-09 Daniel d'Andrada * PhoneStage: focus the new topmost app after the current one closes itself Fixes: 1375267 Approved by: Michael Zanetti (f2f86a695) 2014-10-09 Andrea Cimitan * Redesign for pinned apps. Remove thindivider on top of ubuntu dash button (not needed anymore) Fixes: 1377100 Approved by: Michael Zanetti, PS Jenkins bot (050ec52ec) 2014-10-09 Nick Dedekind * Force rendering so we don't get stuck in "waitForRendering" loop in tests. Approved by: Daniel d'Andrada (52f714f78) 2014-10-09 Albert Astals * Hide preview if it was visible when going to a scope Fixes: 1374548 Approved by: Andrea Cimitan (6f4e2dd48) 2014-10-09 Andrea Cimitan * Fix card implicitHeight when summary is declared, but its text is empty. Also fixes vertical journal height and clipping Fixes: 1362160 Approved by: Albert Astals Cid (a966812c3) 2014-10-09 Albert Astals * Make Base not clickable, since we don't use it in anywhere clickable (we only use it for Category delegates in the LVWPH) Fixes: 1300709 Approved by: Andrea Cimitan (c4b126710) 2014-10-09 Ying-Chun Liu * Fix run_on_device.sh to let it run again. Approved by: Michael Terry (d8c6c7bca) 2014-10-09 Albert Astals * Enable QT_STRICT_ITERATORS (1c731cb02) * Close overview temp scope on show dash Fixes: 1373819 Approved by: Daniel d'Andrada (505f8890f) 2014-10-09 Nick Dedekind * Fixed indicator menu bindings to server toggle value broken by user interaction. Fixes: 1336715 Approved by: Michael Terry (cc2ec9bb7) 2014-10-09 Ying-Chun Liu * remove empty lines (3d8a3ebed) 2014-10-09 Michał Sawicz * Also rename the messaging indicator title (c8b7692f9) 2014-10-09 Ying-Chun Liu * Fix results (68a114e26) 2014-10-09 Michał Sawicz * Datetime indicator rename (8b22f2aac) 2014-10-09 Michael Terry * Merge from trunk (fa5a8cbe7) * Make indicator loaders async again (a2c6f886b) * Fix broken test due to a dumb typo (53358f527) * Merge from tablet-security (e15225ba5) 2014-10-09 Daniel d'Andrada * left-edge swipe should always work, even when the launcher is being show (e14200d28) 2014-10-09 Michael Terry * Switch text of emergency call button when in a call (72dca6396) 2014-10-09 Nick Dedekind * use dp(3) for handle (4023cb949) * fixed non-adjacent item buffer (2ff8db645) * tweaked scroll values for change in fps (d01b4032f) 2014-10-09 Albert Astals * Fix first item positioning when m_clipItem->y() is not 0 (ade5362d8) 2014-10-09 Nick Dedekind * removed old property (7235b0952) * rejigged order (36732a02e) * removed debug rectangles (f653b91d7) * more tweaks and test fixes (5dea3c229) * fixed highlight offset (40122beb3) * fixed lateral position update (80ae28829) * cimi review comments (58c8ed237) 2014-10-09 Michael Zanetti * merge (92f2c7d02) 2014-10-09 Nick Dedekind * AP fixes (d06ea16e6) * delayed left alignment. (344ec1041) * scroll tweaks. velocity calculator improvements (45dbe19ee) 2014-10-09 Michael Zanetti * merge trunk (36696346e) 2014-10-09 Mirco Müller * Merge with trunk again. (81b724d31) 2014-10-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6f6423afd) 2014-10-08 josharenson * [CHECKPOINT COMMIT] (9414f13e8) 2014-10-08 Michael Terry * Handle active call hint correctly when greeter is shown (e4d1bfc34) * If user backs out of active call to greeter, then launches dialer by any means, make dialer lockedApp again (7ce9bee22) * merge from tablet-security (3d2b41ce2) * Add wait(500) to properly test leftEdgeDrag (95d540340) * expand comments (fec14c132) * Make password login test a little more reliable (f8b143b9a) 2014-10-08 josharenson * [ Michael Zanetti ]; Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Antti Kaijanmäki ]; Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Ubuntu daily release ]; New rebuild forced (29da25400) 2014-10-08 Michael Terry * Prevent dash logins in tablet mode (526802caf) * Merge from trunk (975c22073) 2014-10-08 Mirco Müller * Get rid of empty line. (2e7cbaf57) * Merged with trunk. (7919d29c8) 2014-10-08 Michael Zanetti * scale down errorText is necessary (a29a12d18) 2014-10-08 Albert Astals * Name changed (fb19ce38c) 2014-10-08 Michael Terry * Move profile setting out of init() (44915e587) * Add semicolons (c04d14889) * Fix timing of DBus registrations to avoid a race (f4fcd19e9) 2014-10-08 Nick Dedekind * fixed mock model data (7148200bf) * fixed vesa review comments (067e8ffb2) 2014-10-08 Daniel d'Andrada * Avoid conflict between dash vertical flickable and its bottom-edge DDA (cb447ab3a) 2014-10-08 CI bot * Releasing 8.00+14.10.20141008-0ubuntu1 (816fd3453) 2014-10-08 Antti Kaijanmäki * Dual SIM pin unlocking. Hook up the UI to the backend. Fixes: 1267135, 1336675, 1357000, 1359226, 1361074 Approved by: Michael Zanetti (45e8385e4) 2014-10-08 Albert Astals * Some simplifications (f5c348c48) 2014-10-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eeac5a67a) 2014-10-08 Ying-Chun Liu * fix trailing \r (ad0cf976e) * merge trunk (d21a1cc2a) 2014-10-07 Daniel d'Andrada * Update tst_PhoneStage.qml (f267fe4c1) 2014-10-07 josharenson * Fix lp:1370240 by making stages interactive when a snap decision is dismissed. (4e45571f1) * [ Andrea Cimitan ]; Tweak card header to match the spec; Add preview image slideshow (LP: #1351537) [ Michał Sawicz . Cache more things in memory, so flicking scopes should be faster (LP: #1336724); Tweak card header to match the spec; Save texture memory by limiting sourceSize (LP: #1338430) [ Ying-Chun Liu ]; Add attributes to Preview. (LP: #1282460) [ Albert Astals ]; Update pot; Cache more things in memory, so flicking scopes should be faster (LP: #1336724); Save texture memory by limiting sourceSize (LP: #1338430); Clip the settings list; Fix unlocking from the left again; Add wait_ makes tests more reliable [ Michael Zanetti ]; fix fading out the launcher instead of sliding it out on left-edge minimizing an app.; Make the DashCommunicator async and more flexible to handle a lifecycle-suspended dash (LP: #1339883) [ Michael Terry ]; Retry unlock-device script if it fails, as there is always a risk of a small race with boot-up. (LP: #1370644); Add pull-to-refresh functionality to scopes. (LP: #1368336) [ CI bot ]; Resync trunk (49c7a78d0) 2014-10-07 Daniel d'Andrada * Add similar fix to TabletStage (cdeb74a28) 2014-10-07 Michael Terry * Add test (07c6cdcf7) 2014-10-07 Daniel d'Andrada * PhoneStage: focus the new topmost app after the current one closes itself (d71747163) 2014-10-07 Michael Terry * Treat incoming calls differently from other launches of dialer-app while in the greeter (4e213d671) 2014-10-07 Albert Astals * Remove contentScale variable (69abf4ba6) * Close the popup correctly (180deeccc) * make sure to close the search popup on going to other scopes (0339f55ed) * For now comment the dash overview tests (c2eba2bcc) * more scopes order changes (c12f1b3ea) * Account for scope order changes in mock scopes (09b9e9543) * Account for reordering of scopes in the mock scopes (7051a344d) * Merge (a3ee0772b) 2014-10-07 Daniel d'Andrada * Add TODO comment on bug report (bd8417647) * Remove traling whitespace (3e56a2292) * Work around bug in Qt (021340744) 2014-10-07 Andrea Cimitan * Requested design changes (6963f59f9) 2014-10-07 Nick Dedekind * qmltype update (53878bfd2) * qmltype update (532a42eea) * merged with shared (8b2d4f1ee) * copywrite update (87e943f10) * fixed indent (10b9065f9) * merged with sharedunitymenumodel branch (eedea543b) * reverted unnecessary changes (1b3c9689b) * merged with shared model (c6b348264) * merged with trunk (1ea033d3f) * tweak (5e571c929) * merged with trunk (902b39267) 2014-10-07 Antti Kaijanmäki * update .pot (24f9b9914) 2014-10-07 Andrea Cimitan * Default is antialiasing true for radius rectangles (053f80ab2) * Redesign for pinned apps. Remove thindivider on top of ubuntu dash button (not needed anymore) (eec67aa23) 2014-10-07 Antti Kaijanmäki * merge trunk. (1d934f8e9) 2014-10-07 Nick Dedekind * better mocking (682562d54) 2014-10-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (48f22f3de) 2014-10-06 Michael Terry * Fix test to match new keeping-cached-model behavior (b670702c7) * Merge from trunk (e6f3d11ab) * Merge from tablet-security (19d9e0b27) * Merge from trunk (175109623) 2014-10-06 Nick Dedekind * initialise check value (7c1af895b) 2014-10-06 Albert Astals * Merge (51f873365) * Merge (e0d888c95) * Merge (16efabd97) * Merge (8a553c943) * Merge (bbd2e74f0) 2014-10-06 Daniel d'Andrada * Merge lp:unity8 (5921748ae) 2014-10-06 Albert Astals * Merge trunk (fb99a0fae) 2014-10-06 Michael Terry * Merge from tablet-security (6c9885990) 2014-10-06 Daniel d'Andrada * Add regression test Shell.test_tapUbuntuIconInLauncherOverAppSpread (58685a408) 2014-10-06 Michael Terry * Fix MultiGreeter qmluitest (799eca769) 2014-10-06 Michael Zanetti * bump (b91d075eb) * bump required unity-api versions (e7c63e945) * only hint if the change was triggered from the backend, add tests (36f2dcde1) 2014-10-06 Michael Terry * Fix test (399449fc7) 2014-10-06 Michael Zanetti * add hinting to launcher if it changes behind the scenes (73d98ae77) * merge prereq (fe33326d4) 2014-10-06 Nick Dedekind * merged with trunk (b6b5f97f5) * use existing controls (1fca676b7) * self review fixes (cfc6b8ca2) 2014-10-06 Albert Astals * modernize this too (cdba19aaa) * add subtitle support (e07f589fd) * Merge (a8760ae0f) 2014-10-06 CI bot * Releasing 8.00+14.10.20141006-0ubuntu1 (49bcb3a7b) 2014-10-06 Albert Astals * Add wait_ makes tests more reliable (6d260975e) * Fix unlocking from the left again (30a975cf6) 2014-10-06 Michael Terry * Add pull-to-refresh functionality to scopes. Fixes: 1368336 Approved by: Albert Astals Cid (017714e07) 2014-10-06 Albert Astals * Clip the settings list (0da63cd56) 2014-10-06 Andrea Cimitan * Add preview image slideshow Fixes: 1351537 Approved by: Albert Astals Cid (db0f253dc) 2014-10-06 Michael Terry * Retry unlock-device script if it fails, as there is always a risk of a small race with boot-up. Fixes: 1370644 Approved by: Albert Astals Cid (82a82b4fb) 2014-10-06 Ying-Chun Liu * Add attributes to Preview. Fixes: 1282460, 1356881 Approved by: Albert Astals Cid (acb11d35c) 2014-10-06 Michał Sawicz * Save texture memory by limiting sourceSize Fixes: 1338430 Approved by: Mirco Müller (c137ceb1f) 2014-10-06 Michael Zanetti * Make the DashCommunicator async and more flexible to handle a lifecycle-suspended dash Fixes: 1339883 Approved by: Albert Astals Cid (efcd1ba20) 2014-10-06 Michał Sawicz * Tweak card header to match the spec (8e74cdd0c) 2014-10-06 Michael Zanetti * fix fading out the launcher instead of sliding it out on left-edge minimizing an app. (aec74acf5) 2014-10-06 Michał Sawicz * Cache more things in memory, so flicking scopes should be faster Fixes: 1336724, 1338430 Approved by: Andrea Cimitan (69598fa0f) 2014-10-06 Nick Dedekind * reverted change to UbuntuShapeForItem (0de431b42) * better scrolle calc (13f6ed11a) 2014-10-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9d2fe61c2) 2014-10-05 Michael Terry * When edge demo is running, don't show an initial lockscreen (180042345) * Fix tests (a8b3aafff) * Merge from trunk (0db617989) 2014-10-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9468d68c0) 2014-10-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a770cd917) 2014-10-03 Michael Terry * fix tests and add one (d6de6bc47) * Fix initial visible state being whack (38f3ead1c) 2014-10-03 Daniel d'Andrada * Only animate the dash overview drag after the gesture has been recognized (963005ee2) 2014-10-03 Nick Dedekind * merged with trunk (9f56905c6) 2014-10-03 Daniel d'Andrada * Only show app shadows when we are indeed perfoming and edge drag (3820313c3) 2014-10-03 Albert Astals * More wait (4ca783730) * Add wait_ makes tests more reliable (ae914746b) 2014-10-03 Michael Terry * Support switching indicator profiles between normal and greeter versions (c2435700d) 2014-10-03 Daniel d'Andrada * Only move the stage once an edge-drag gesture has been recognized (e4c4523fa) * Make tst_Launcher stable (50d25ebfb) 2014-10-03 Michael Terry * Update from trunk (41a839fd9) 2014-10-03 Albert Astals * There's no such thing as emptyListItem.pressed anymore (e48cb2f9e) 2014-10-03 Nick Dedekind * merged with trunk (fd3afc2a5) * merged with trunk (2cc60b0ee) * removed widget+pageSource (8442b69f3) * fixed indicator client (e70ab63bd) 2014-10-03 Albert Astals * bigger press area (cc6b089b3) 2014-10-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e3848442a) 2014-10-02 Albert Astals * Hide preview if it was visible when going to a scope (3b90fb8ee) 2014-10-02 Daniel d'Andrada * unity8-dash also needs a TouchRegistry (84a05890b) 2014-10-02 Alberto Aguirre * merge lp:unity8 (8b8c68e7f) 2014-10-02 Nick Dedekind * DefaultIndicatorPage -> IndicatorPage (b0e0a8123) 2014-10-02 Ying-Chun Liu * merge trunk (f6c088da5) 2014-10-02 Albert Astals * Naming naming (3ff5f7a2d) 2014-10-02 Michael Zanetti * fix issues from review (7d865e007) 2014-10-02 Daniel d'Andrada * Made tst_Launcher tests pass again took the opportunity to recfactor it a bit (d78e2d157) 2014-10-02 Andrea Cimitan * Fixes (56c29222a) 2014-10-02 Nick Dedekind * shorten drag handle in fullscreen. Use state change (fdb56beba) * Fixed bugs reported + added test for panel hide (b7ba76d81) 2014-10-02 Andrea Cimitan * Use real (488ae8c50) 2014-10-02 Albert Astals * Merge (5dc7f51e6) * Move Base.qml to DashCategoryBase (ade5d2020) * Make Base not clickable, since we don't use it in anywhere clickable (8eb47b349) 2014-10-02 Daniel d'Andrada * Add a mock UbuntuKeyboardInfo (fb0fb451b) 2014-10-02 Albert Astals * Update pot (881b329a3) * Fix unlocking from the left again (1f6dd0923) 2014-10-02 Andrea Cimitan * Fix card implicitHeight with no summary text (f3aa09fc5) 2014-10-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bd3878901) 2014-10-01 Nick Dedekind * dots (1754c9cd8) * more fixes to tests (93272507b) * merged with trunk (bb1ad2ef1) 2014-10-01 Daniel d'Andrada * fix tst_ApplicationWindow.qml (93dc6350d) * Fix debug code (8e222b9ec) * Clean up things (e6096a424) * Missing bit (dd7391cc6) * TouchGate can no longer leak stored QTouchEvents (271956759) 2014-10-01 Nick Dedekind * visual tweaks/fixes (c8e87c2d8) 2014-10-01 Daniel d'Andrada * Small refactoring (096ad3be9) 2014-10-01 Alberto Aguirre * merge lp:unity8 (26ed56e8a) 2014-10-01 Daniel d'Andrada * Remove leftover code (742a45945) * Remove superfluous return statement. (5b2d26cb3) * exit loop once there's no point in continuing (8efbd7943) 2014-10-01 Michael Terry * Merge from trunk (78796f3db) 2014-10-01 Daniel d'Andrada * Add touch ownership logic on top of qt input handling (3f3f85438) 2014-10-01 Albert Astals * how dare you empty space! (b4e87ec77) 2014-10-01 Nick Dedekind * fixed up mock unitymenumodel dodgeyness (4af4e83d4) 2014-10-01 Albert Astals * Enable QT_STRICT_ITERATORS (ee14ad32e) 2014-10-01 CI bot * Resync trunk (6ed5fb3bb) 2014-10-01 Albert Astals * Do the overview temp closing later to prevent a quick show of the overview and don't animate either if we are on the overview temp scope (075f2a460) 2014-10-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fd316dca6) 2014-09-30 Nick Dedekind * fixed qmltests (8f2ddc574) 2014-09-30 CI bot * Releasing 8.00+14.10.20140930.2-0ubuntu1 (f884b1ee5) 2014-09-30 Nick Dedekind * Fixed DefaultIndicatorPage test. Fixed warnings from test. Approved by: Albert Astals Cid (d10f95bbe) 2014-09-30 Michael Terry * Limit how much memory we reserve for the greeter background image, allowing giant images to appear correctly. (0e01c9b82) 2014-09-30 Daniel d'Andrada * Add gdbTestComponentName build targets Approved by: Michael Zanetti (75e15703a) 2014-09-30 Michael Terry * Make it easier to use the Lockscreen component from the welcome wizard. Approved by: Albert Astals Cid (5367c4f63) * Implement latest visual designs for passphrase lockscreen. (a281d95f1) * Fix some code that accidentally landed in trunk before it got cleaned up. The current code just has some duplication to it that should be unified. Approved by: Michael Zanetti (7ae0699a7) 2014-09-30 Alexandros Frantzis * Remove stale trusted socket before starting unity8 from upstart (LP: #1371597) Fixes: 1371597 Approved by: Ying-Chun Liu (95bd37d34) 2014-09-30 Andrea Cimitan * Move activity indicator on top of keyboard Fixes: 1354519 Approved by: Michael Terry (1236aa3ef) 2014-09-30 Gerry Boland * Cleanup: Remove unused member and fix small syntax error in OrientationLock Approved by: Daniel d'Andrada (84f620211) 2014-09-30 Ying-Chun Liu * Remove maxLineCount in preview. (LP: 1328513) Fixes: 1328513 Approved by: Michael Terry (7705e208c) 2014-09-30 josharenson * Fix lp:1367894 by correcting how the minute value is calculated in the panel. Fixes: 1367894 Approved by: Nick Dedekind (446beeea6) 2014-09-30 Michael Zanetti * cleanup (8a22c112e) 2014-09-30 Nick Dedekind * fixed license issues (96bb7e535) 2014-10-01 Ying-Chun Liu * Fix run_on_device.sh not running good. (9d7c99393) 2014-09-30 Michael Zanetti * make the launcher model update on dconf changes (eb180d10a) 2014-09-30 Albert Astals * Close temp scope on show dash (5a46acde3) 2014-09-30 Nick Dedekind * removed debug (ad937900a) 2014-09-30 Albert Astals * Clip the settings list (60a4cc1f9) 2014-09-30 Nick Dedekind * removed old panel (42c319d10) * moved new -> current (61c6e38be) 2014-09-30 Michael Terry * Update pot (fc8cdb5be) * Use Item not Rectangle (18ccf03d6) 2014-09-30 Mirco Müller * The boolean flag draggable should be read-only. (b1f9e85fb) 2014-09-30 Nick Dedekind * merged with trunk (232809433) * latest! (813725c73) 2014-09-30 Michael Terry * Don't refresh until scope is back in place to avoid a scope-settling bug (d8718fbfb) 2014-09-30 Mirco Müller * Merge with trunk. (6231502ce) 2014-09-30 Michael Terry * Break out our custom PullToRefreshStyle into its own file and add a comment about what's keeping us from using the standard version (c6adb8d21) 2014-09-30 Mirco Müller * Fix issues from MP-comments. (7bcab0e6b) 2014-09-30 Michael Terry * Merge from trunk (597934d5c) 2014-09-30 Andrea Cimitan * Flickables for menucontent (a7f4e2707) * merged slideshow branch (6ccd267d5) * merged (399cf34d2) * merged (9f8aa54ec) * Attempt to fix test (7dd4d4b24) * Design tweaks (a4d9f84d4) 2014-09-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8580e14dd) 2014-09-29 Andrea Cimitan * Add pressed visual effect (de5c461db) 2014-09-29 Michael Terry * Fix passphrase entry in autopilot (596a27538) 2014-09-29 Nick Dedekind * more! (c529357ee) 2014-09-29 Andrea Cimitan * Add tests (3bac84c0a) 2014-09-29 Alberto Aguirre * merge lp:unity8 (803ab7d7b) 2014-09-29 Nick Dedekind * merged with trunk (2b3394a16) 2014-09-29 Michael Zanetti * update the launcher tests mock appman backend (294d9b76d) 2014-09-29 Andrea Cimitan * merged (e2e94dd04) * Add slideshow to previewImageGallery (48e19e5ce) 2014-09-29 Ying-Chun Liu * merge trunk (c137000d0) * merge trunk (5f456f546) 2014-09-29 Albert Astals * Happier Cimi :) (35952de01) * some minor fixes (383d797b5) 2014-09-29 Nick Dedekind * fixed up broken tests and warnings from polishing branch (0def85344) 2014-09-29 Michael Zanetti * minor tweak from review comment (344a8b166) * dashActive -> forceDashActive (1813285ff) * merge/update (f55a0dc5c) * check for a valid interface connection (fc074032b) 2014-09-29 Albert Astals * set/unset drag.target the first thing (e2c62c5fd) * Make it so that you can't move Apps (bf6bba364) * Make it so you can drag on the handle too (de99f99ed) 2014-09-29 Andrea Cimitan * Updated alignment (4acc103ca) 2014-09-29 Albert Astals * Mereg (60682c54e) * Merge (9869b26ab) 2014-09-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (843a993a3) 2014-09-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aa93b9462) 2014-09-28 CI bot * Resync trunk (5807cd64c) 2014-09-27 Alberto Aguirre * Ignore multiple key presses, only take one screenshot if keys are held. (7476974e4) * Don't take screenshots while screen is off. (d143f1f21) 2014-09-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bb3292b78) 2014-09-26 Alberto Aguirre * Avoid blocking gui thread while saving screenshot (fdbf6e6e7) * move screenshot animation to its own qml file (77bdac279) * Rename plugin to ScreenGrabber (86331ae94) * merge lp:unity8 (52b29bea3) 2014-09-26 Michael Terry * Add pull-to-refresh functionality to scopes (6a4903435) 2014-09-26 CI bot * Releasing 8.00+14.10.20140926-0ubuntu1 (f116dc5b3) 2014-09-26 Nick Dedekind * Visual changes for indicator RTM polishing Fixes: 1329289, 1349921, 1350308, 1350952, 1354506, 1373319 Approved by: Andrea Cimitan (73484f407) 2014-09-26 Michael Terry * Make unlock device more reliable by retrying (690c11b96) 2014-09-26 Albert Astals * Merge (49256b0a9) 2014-09-26 CI bot * Resync trunk (2abe83127) 2014-09-26 Albert Astals * I like it better this way (7dfe407dd) * Make activate more close to what real plugin does (99470c3a6) * fix++ (0d3d9b4a3) * fix isFavorites and categoryId issues with last commit (0828225b6) * clicking on scope opens it (82b74fc86) 2014-09-26 Ying-Chun Liu * Add Attributes in PreviewHeader (27343da61) 2014-09-26 Albert Astals * better categori names (75b7da273) * fix beginmoverows calls (0a54e7b3c) * animations are nice (00297d259) 2014-09-26 Mirco Müller * Fix positioning of swipe-to-act button. (2e4b655cd) 2014-09-26 Albert Astals * implement the moveTo in the fake scopes backend (f163b2654) 2014-09-26 Nick Dedekind * merged with lp:~nick-dedekind/unity8/sharedunitymenumodel (2a3f68a8d) 2014-09-26 Albert Astals * Initial implementation of the move support (c732dccd6) 2014-09-26 Daniel d'Andrada * s/gdbTest/gdbtest (d3ac71aee) 2014-09-26 Mirco Müller * Doh! (5a119b9d9) * First rough implementation of swipe-to-act button... still a wip. (775678044) 2014-09-26 Albert Astals * Merge lp:~dandrader/unity8/real_header_splashscreen (04b04e729) 2014-09-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ade5c1b70) 2014-09-25 Alberto Aguirre * Use the date for the screenshot file name instead of a sequential number. (692f0f59c) 2014-09-25 Michael Terry * Limit how much memory we'll reserver for this image (f5f953a34) 2014-09-25 Daniel d'Andrada * Don't add it to "make test" (85bf8628c) 2014-09-25 Albert Astals * next try (ded544e6c) * Dude i had fixed this :S (3a65f55d1) * Does this help? (478de30e5) 2014-09-25 Daniel d'Andrada * Don't add it to the targets like "make qmltests" (fd9cd3d8d) 2014-09-25 Michael Terry * Merge from passphrase-ui-tweaks (0fc2b58bb) * Control dot size more carefully (162c50fe3) 2014-09-25 Nick Dedekind * merged with trunk (4e9492790) 2014-09-25 Michael Zanetti * drop empty line unrelated to the change (af9b60bd0) * fix launcher fading out instead of sliding out (ecbf93841) 2014-09-25 Albert Astals * We also need a longer wait in here (3e3b5b941) * Merge (686b4e476) 2014-09-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1cca366b1) 2014-09-24 Michael Terry * Merge from passphrase-ui-tweaks (18209eb78) * Make tryLockscreen work a bit better (0236a4e55) 2014-09-24 Daniel d'Andrada * Add gdbTestComponentName build targets (b60fed514) 2014-09-24 Michael Terry * Move lockscreen test (0ee142273) 2014-09-24 Michael Zanetti * add missing files, drop debug print (141d7dadb) * make it threaded (092920378) 2014-09-24 Alberto Aguirre * Add a plugin to take screenshots on vol up + vol down (7ce9d8345) 2014-09-24 Nick Dedekind * MediaPlayerMenu.running -> showTrack (d82176e59) 2014-09-24 Michael Zanetti * merge Gerry's proposal and make it threaded (5114c484c) 2014-09-24 Mirco Müller * Merge with trunk (b3939afb3) 2014-09-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (69cf4b650) 2014-09-23 Michael Terry * Update from passphrase-ui-tweaks (f93342e89) * Fix some focus issues with PassphraseLockscreen (6ec5408dd) * Merge in passphrase-ui-tweaks (4b5bd6c11) * Allow centered multi-line errorText for pinscreen (a498661b6) 2014-09-23 Albert Astals * No drag handle for other since it doesn't make sense moving them (31f2d245e) 2014-09-23 Ying-Chun Liu * merge trunk (3837dfae8) 2014-09-23 Albert Astals * Merge (e56d689df) * Wait for stuff to settle (3bef27465) * Move common waiting to the top (0c6b0c908) 2014-09-23 Ying-Chun Liu * merge trunk (1e651e5e6) 2014-09-23 Michael Terry * Some fixes to Lockscreen that make it easier to use from the welcome wizard (da6e066f0) 2014-09-23 Alexandros Frantzis * Remove stale trusted socket before starting unity8 from upstart (1c1f97f73) 2014-09-23 Albert Astals * Merge (20c1ceb59) * things are a bit slower to load now since we're asking for a bazillion of items to be on memory so give the tryCompareFunction some more time (4a1282555) 2014-09-23 Nick Dedekind * plop2 (086f3bb63) 2014-09-23 CI bot * Releasing 8.00+14.10.20140923-0ubuntu1 (ce5cf8481) 2014-09-23 Albert Astals * Fix seeAll test (d64c70732) 2014-09-23 Michael Zanetti * fix indicators AP test Approved by: Nick Dedekind (7c8b715d1) * fix swiping away the launcher from the left edge (f13c1248c) 2014-09-23 Michael Terry * Fix LC_ALL and test harder by making both manual runs of timeformattertest and the whole test suite use the same locale settings. Approved by: Nick Dedekind (cdb70f23a) 2014-09-23 Albert Astals * We need this in build-depends so that qmluitests pass in CI (d2206dee5) 2014-09-23 Florian Boucault * New Splash screen implementation that fakes real app (69272e29d) 2014-09-23 Albert Astals * Merge lp:~aacid/unity8/fix_gsv_test (9fa938df5) * Fix test (189b39f22) 2014-09-23 Nick Dedekind * plop (757eb62b2) * IndicatorsBar (193b02cce) 2014-09-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ff9936d47) 2014-09-22 Michael Terry * Gosh dang it, accidentally reversed meaning of check, fixed. That other branch that renames fakeActiveForApp ought to land (ba0dba741) * Maybe the locked check was just in case we got to showDash even though we had a fake active app, so keep a check for that for safety's sake (0e2a956b9) * Simplify showDash logic (1bbf0576e) 2014-09-22 Michael Zanetti * add qmltest (bcc332e2c) * fix broken AP test in indicators (21343fa14) * fix swiping away the greeter from the left edge (234abe0e8) 2014-09-22 Nick Dedekind * fixed up defaults for media player menu (e8da8d1e1) 2014-09-22 Albert Astals * As per design entering edit mode clears the possible existing search (81a3e3b27) * Foundations for the edit mode (cf3695c76) 2014-09-22 Gerry Boland * Merge trunk (4cce77466) 2014-09-22 Albert Astals * "Document" 1073741823 (b0c298b05) * emptyspace-- (e1bd76e27) * clickscope is the one not modifiable, not the first (d319b6f06) * scope needs to be active for search to work (bd7e9dc63) * This seems to come from a broken merge (1e4751d4c) * merge (875dd2ec8) * wire up search (da009e433) 2014-09-22 Daniel d'Andrada * Bump unity-api package version dependency (12241c59c) 2014-09-22 Albert Astals * Store in scopes list (0eef25247) 2014-09-22 Nick Dedekind * LC_ALL=C.UTF-8 again (1a732f497) * merged with LC_ALL fix (8863bdc46) 2014-09-22 Albert Astals * You can't unfavorite the first thing of the favorites (that backend will make sure it's Apps) (a5924025b) * Some fav/unfav animation (16f192a57) 2014-09-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ad15d40a6) 2014-09-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8cf2ed46f) 2014-09-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (830d1e032) 2014-09-19 Mirco Müller * Make fg/bg-color-scheme selection more generic and adapt better to the background. (264312161) 2014-09-19 Nick Dedekind * merge with trunk (ce9db1a09) * start (de45373b9) 2014-09-19 Andrea Cimitan * Fixes (219e3b218) 2014-09-19 Michael Zanetti * make it compile (427ce884b) 2014-09-19 Andrea Cimitan * Merges (bcb867000) 2014-09-19 Nick Dedekind * merged with trunk (ad9ae2e55) * update pot (f0abf3bbb) * merged with trunk (f7406b697) 2014-09-19 Michael Terry * Put LC_ALL=C in place for both 'make timeformattertest' and 'make test' (9a955f35a) 2014-09-19 Nick Dedekind * more review comments (20589afef) 2014-09-19 Ying-Chun Liu * merge trunk (098b7c37f) 2014-09-19 Albert Astals * Make it a list, it's better and will allow us to do the animations better (799f27b81) * implement setFavorite in fake_scopes (fd86d641e) 2014-09-19 Michael Zanetti * update depenency after merging unity-api (335612892) * merge trunk (c74d874a6) * bump required unity-api version (aa536ad63) 2014-09-19 Daniel d'Andrada * Merge trunk (9e6314d7d) 2014-09-19 Albert Astals * begone (442e110a3) 2014-09-19 Michael Zanetti * improve the whole async DashCommunicator logic (720d0eef8) 2014-09-19 Albert Astals * Merge (95f5ae807) * Merge (f71ff9073) * Silence a few warnings (3a25eea06) * This should not be here, it's part of a bad merge (adca93889) * And now with the files we need \o/ (f59f12cf3) 2014-09-19 CI bot * Resync trunk (c712c925c) 2014-09-19 Albert Astals * We need this in build-depends so that qmluitests pass in CI (ca7ef36a6) 2014-09-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (75f7bcc11) 2014-09-18 CI bot * Releasing 8.00+14.10.20140918.3-0ubuntu1 (6d46e5e0c) 2014-09-18 Rodney Dawes * Check purchase state to determine if purchase was cancelled and hide progress. Fixes: 1362622, 1370651 Approved by: Michael Zanetti, Alejandro J. Cura (b93892fd1) 2014-09-18 Ying-Chun Liu * Re-add restart button for power menu. (LP: 1358197) Fixes: 1358197 Approved by: Albert Astals Cid (992b0b20f) 2014-09-18 Albert Astals * Pixel pushing in the dash header Fixes: 1365929 Approved by: Andrea Cimitan (628a365bd) 2014-09-18 Michael Terry * When running qmluitests, make sure that they use LANGUAGE=C, fixing a test failure when running locally in the US. (79684a385) 2014-09-18 Mirco Müller * Don't limit the number of text-lines for body-text. Fixes: 1369438 Approved by: Albert Astals Cid (346d51d6e) 2014-09-18 Michael Zanetti * Rework LauncherBackend (0c938abcb) 2014-09-18 Daniel d'Andrada * Some ApplicationWindow test improvements Approved by: Nick Dedekind (bb66e764b) 2014-09-18 Marcus Tomlinson * Don't show a preview if a null response is returned from scope.preview(result) Approved by: Albert Astals Cid (0aa26c725) 2014-09-18 Albert Astals * Make the categoryView invisible when we are in the preview mode Fixes: 1341205 Approved by: Andrea Cimitan (257d67ac1) 2014-09-18 Michał Sawicz * Dash: Fix issue when expanding a category and collapsing another one at the same time. (acb66537f) 2014-09-18 Michael Zanetti * Don't hide launcher when nothing happens on long left edge swipes Fixes: 1357333 Approved by: Albert Astals Cid (318e81a0e) 2014-09-18 Michał Sawicz * Add -windowgeometry option to the Dash and drop any user-visible mentions of Dash (d276e0e66) 2014-09-18 Michael Zanetti * fix schema to reflect change in unity-schemas (7e4e10ca4) * fix dependency on unity-schemas (501ea0e13) 2014-09-18 Andrea Cimitan * Align dash indicator to the keyboard (0e29d0063) 2014-09-18 Albert Astals * make it fav vs nonfav, not fav vs all (5636a447d) * First attempt for the new scopes list (18b59bcc6) 2014-09-18 Gerry Boland * Remove unused pointer and fix code syntax (69e88ba57) 2014-09-18 Rodney Dawes * Use getters/setters for purchasing bool. (6f4e9a4a5) * Don't signal for "purchaseCancelled" to avoid preview refreshing. (c7a8e4bb2) 2014-09-18 Ying-Chun Liu * Refresh pot file. (ee2dc6c3e) 2014-09-18 Albert Astals * Typo (02e790557) 2014-09-18 CI bot * Releasing 8.00+14.10.20140918-0ubuntu1 (9e3889028) 2014-09-18 Daniel d'Andrada * Make tst_Card work from outside the source tree (LP:1359201) (d02ffcd6e) * Build without any warnings Approved by: Andrea Cimitan (c959e3680) * Improve tst_Shell (06e0a2e14) 2014-09-18 Michał Sawicz * Don't play empty urls in Notification.qml Approved by: Mirco Müller, Ricardo Salveti, Ricardo Mendoza (c43869f1b) 2014-09-18 Michael Zanetti * Focus first app if there are already some running when we're starting up Fixes: 1339883 Approved by: Gerry Boland (b6cc77c27) * make the dashcommunicator async (2d99d78ae) 2014-09-18 Albert Astals * Do not rename (80b6dd1c8) * spacing and (C) year (502289648) 2014-09-18 Marcus Tomlinson * Fixed formatting (ea261bf9d) 2014-09-18 Ying-Chun Liu * Remove max line count:2 in PreviewHeader (87eac7672) 2014-09-18 Marcus Tomlinson * Formatting fixes (ae844bf61) * Reverted some more unnecessary changes (c4c44716b) * Previews.Preview delegate needs to query for a new preview on each invocation of previewModel (f0e82f7bf) 2014-09-17 Michael Terry * Add back retryText, but squish pin header box slightly to compensate (9b6e86538) * Remove unnecessary set of ENVIRONMENT property on a target (65245b675) 2014-09-17 Albert Astals * Adapt to != -> !== change (11ab9d976) 2014-09-17 Ying-Chun Liu * Add Restart button back. (c55f459d8) 2014-09-17 Michael Terry * And add same logic to manual qmltests (18bacd88d) * Properly parse default environment for qmluitests (0833bdbf2) 2014-09-17 Mirco Müller * After numerous experiments and lack of feedback from Design and ofono-stack folks, I managed to determine the sweet-spot to be 12 lines for snap-decisions with a added entry-field. That way a single fully expanded snap-decision (with two buttons, an entry-field, a summary and an icon) is still fully visible with a shown OSK. (344a83f7c) 2014-09-17 Albert Astals * != -> !== (f803b7aef) * Merge (934f6ecc4) * Merge (cc25b0ce2) * properties at the begnning (361ed57a9) 2014-09-17 Mirco Müller * Don't enforce a line-limit for body-text, since there can be class-2 sms with up to 140 characters. (02455473a) 2014-09-17 Marcus Tomlinson * Fixed broken previewing in Scopes Overview (7e54e3912) 2014-09-16 Rodney Dawes * Depend on :native version of g++ to allow cross-compiling to work. (6e277d71e) 2014-09-16 Daniel d'Andrada * Remove commented-out code (41df43348) 2014-09-16 Marcus Tomlinson * Merged trunk (27640514d) 2014-09-16 Albert Astals * Some pixel pushing (ab99a3966) * properly reset stuff in test (19e741c71) 2014-09-16 Michael Zanetti * merge orientation branch to get around conflicts (e2148e2e1) 2014-09-16 Marcus Tomlinson * Don't set new "NullPreviewScope" mock as favorited as it throws a bunch of tests off (b0c4cd791) 2014-09-15 Michael Terry * Make ShellWithPin tests more reliable (a49705d6e) * Update and expand lockscreen qmluitests (3e2956a77) 2014-09-15 Andrea Cimitan * Bump requirements and add comments for GridView and ListView (1d32cc6ff) * [ Pete Woods ]; Disable OEM and Click scopes when system scopes are disabled [ CI bot ]; Resync trunk [ Pawel Stolowski ] * Set UNITY_SCOPES_NO_FAVORITES environment variable to make scopes plugin ignore favorite scopes and fix basic functionality of unity- scope-tool. (7f494f808) 2014-09-15 Rodney Dawes * Use a public variable in the class to store state rather than a static. (e3946ee34) * Check purchase state to determine if purchase was cancelled and hide progress. (89081af23) 2014-09-15 Michael Terry * Fix running payment preview test in US locale (250fae56e) 2014-09-15 Daniel d'Andrada * Use the icon splash screen by default (2184203fd) 2014-09-15 Michael Terry * Fix some focus issues (b05957766) 2014-09-15 Mirco Müller * Merged with trunk and fixed conflicts. (153e38d40) 2014-09-15 Michael Terry * Update passphrase lockscreen UI and make some other design tweaks (7c97457d5) 2014-09-15 Mirco Müller * Exercise swipe-to-dismiss functionality in notification qmltest. (02c691431) 2014-09-15 Albert Astals * Merge (ab9e993cc) * Try to make LVWPH to behave consistently (5024acfab) 2014-09-15 Daniel d'Andrada * tst_Splash.qml: Remove empty new line. (42e204150) 2014-09-15 Nick Dedekind * merged with trunk (b7cdc9797) 2014-09-15 Mirco Müller * Restrict the 10-line limit for body-text to snap-decisions. (af366c4d2) * Allow 10 lines of body-text. (d00259400) 2014-09-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bd05eecd1) 2014-09-12 Mirco Müller * Allow more notification-types to support swipe-to-dismiss. (61bf9a31b) 2014-09-12 Daniel d'Andrada * Put the branch into shape (18c574086) 2014-09-12 Mirco Müller * Updated, fixed and extended qmltest for notifications according to the new confirmation-notification support. (5dcfc037a) 2014-09-12 Gerry Boland * Typo (8169a3b3b) * test_SessionContainer: stupid compare statements fixed. Using root & child prefixes to clarify things (7827c2412) 2014-09-12 Florian Boucault * Merge florian's real_header_splashscreen (b020fe454) 2014-09-12 Daniel d'Andrada * Merge trunk (94838023d) 2014-09-12 Nick Dedekind * Added test for lp1336715 (bda27eec0) * Fixed server bindings (7ad04cb7f) 2014-09-12 Lars Uebernickel * Use Icon instead of StatusIcon (a9db4f31a) 2014-09-12 Marcus Tomlinson * Addressed review comments (fb2d2e74d) 2014-09-12 Nick Dedekind * register unitymenumodel type (82045e452) 2014-09-12 Michał Sawicz * bool(QUrl("")) == true :/ (7dde7aef2) 2014-09-12 Nick Dedekind * Added check for model create (1a54052d0) * set explicit object ownership (684a6d3e8) 2014-09-12 Michael Terry * Make ShellWithPin tests more reliable by waiting for rendering (1e6345835) 2014-09-12 Nick Dedekind * CachedUnityMenuModel -> SharedUnityMenuModel (f38a47faa) 2014-09-12 Mirco Müller *sigh* margin-fix got lost in the last commit (b2ad2f5c4) 2014-09-12 Michał Sawicz * Merge lp:~unity-team/unity8/two_see_more_bugfix (abf081574) * I said we have it already. (e61178459) * We already have a seeAllButton property. (a3c10cb3c) * Drop Q_PROPERTY (cbd3202fd) 2014-09-12 Mirco Müller * Merged with trunk, solved conflicts. (6f4386fab) 2014-09-12 Marcus Tomlinson * Added test_tryOpenNullPreview qmltest (6472b0fe8) * Fixed failing tests (4b36f44f5) 2014-09-12 Nick Dedekind * fixed test for dd day in LC_ALL=C (04789ec5e) 2014-09-11 Michael Terry * Add some tests (17570290c) 2014-09-11 Michał Sawicz * Merge lp:~unity-team/unity8/scopes_more_things_on_memory (2d8b2562a) * Merge lp:~unity-team/unity8/two_see_more_bugfix (88b240c30) * Merge trunk. (c0e51157e) 2014-09-11 josharenson * Update tests to test for call timer value in panel. (288c9abe9) 2014-09-11 Ying-Chun Liu * Merge trunk. (ada0f2248) 2014-09-11 Nick Dedekind * removed USC.IconVisual (60e36410d) 2014-09-11 Ying-Chun Liu * Add unit tests. Fix CardCreator results. (22f804f58) 2014-09-11 Michael Terry * Merge from trunk (f89c252c2) * Remove unnecessary comment (6f165b827) 2014-09-11 Michał Sawicz * Merge trunk. (4307994dc) 2014-09-11 Gerry Boland * Bad copy/paste, fix orientation on tablet (a7f30dc4e) * Add test for SurfaceContainer (c9bd4345e) 2014-09-11 Andrea Cimitan * [ Pete Woods ]; Disable OEM and Click scopes when system scopes are disabled [ CI bot ]; Resync trunk [ Pawel Stolowski ] * Set UNITY_SCOPES_NO_FAVORITES environment variable to make scopes plugin ignore favorite scopes and fix basic functionality of unity- scope-tool. (95e93552f) 2014-09-11 Gerry Boland * Oopsie, orientation will work now (c5865e2c7) * Propagate orientation to all child surfaces, update tests to suit (dd79fb9c2) 2014-09-11 Michał Sawicz * Merge trunk. (40c01773b) 2014-09-11 Nick Dedekind * added fix for current indicator item (bbbdd3985) 2014-09-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (679838909) 2014-09-10 josharenson * Fix lp:1367894 (152924c3e) 2014-09-10 Michael Terry * Make tablet greeter work correctly when apps request focus and have it reset itself every show (42b94b69e) 2014-09-10 Gerry Boland * Use Binding instead JS establised binding (e74a12146) * MockMirSurfaceItem: Rotate whole thing, even if image looks weird (ef8d87747) 2014-09-10 Daniel d'Andrada * Some test improvements (7c1ee0440) 2014-09-10 Gerry Boland * TabletStage: Use Binding instead of JS settings a binding (8393c49c5) * Use OrientationLock.savedOrientation. Rename deviceOrientation to deviceOrientationAngle (69190a1cb) 2014-09-10 Michael Terry * Don't let table users swipe away greeter (9916cade5) * And update a comment to match fake->locked change (f29d434bd) * Rename fakeActiveForApp for clarity (2da060236) * Only show phone stage when a fake active app is open (6b51d6132) 2014-09-10 Ying-Chun Liu * Fix touchdown effect. (a07f9c7eb) 2014-09-10 Michael Zanetti * merge trunk (6e1c315e0) * focus the first one if we already have running apps when unity starts (eaf26f97b) * merge trunk (45b5bf076) 2014-09-10 CI bot * Releasing 8.00+14.10.20140910.1-0ubuntu1 (f34bc9b16) 2014-09-10 Pete Woods * Disable OEM and Click scopes when system scopes are disabled Approved by: Pawel Stolowski (b98678e77) 2014-09-10 Pawel Stolowski * Set UNITY_SCOPES_NO_FAVORITES environment variable to make scopes plugin ignore favorite scopes and fix basic functionality of unity-scope-tool. Approved by: Pete Woods (325cd2697) 2014-09-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0f0da0f1c) 2014-09-10 Marcus Tomlinson * Fixed spelling mistake (059855685) 2014-09-10 Gerry Boland * Merge trunk (8bb670431) 2014-09-09 CI bot * Resync trunk (eaecfc22d) 2014-09-09 Marcus Tomlinson * Don't preview if a null response is returned from "scope.preview(result)" (ea74b6439) 2014-09-09 Nick Dedekind * tweak delegate caching (7ca570062) * confirm removal for message items (76b890b22) * test fixes for removal of content activator (cfa89fb76) 2014-09-09 Ying-Chun Liu * Merge trunk (44c0832f6) 2014-09-09 Nick Dedekind * removed content activator (2a84c00da) * updated for changes to ListItem.Empty (aa4043d05) * Simplified MessageMenuItemFactory (8d05f2139) 2014-09-09 Michael Zanetti * don't load unity7 favorites but only work with the new items key (18fc462e2) 2014-09-09 Andrea Cimitan * [ Michał Sawicz ]; Use a single white pixel instead of the heavier checkers image.; Add support to unlock-device for the new adbd coming down the pipeline. Also fix autopilot tests and run scripts for that.; Make LVWPH non interactive while on header animation; Improve references to scope/scopeStyle in PreviewListView and PageHeader, add tests. [ Nick Dedekind ]; Support for nested prompt session. (LP: #1358388) [ Albert Astals ]; Remove unused hasAttributes variable; Disable dash overview if in temp scope preview; Block mouse events under scope overview bottombar (LP: #1362206); Fix regression in focus handling due to SDK change; Fix warning 'Background.qml:81:21: Unable to assign bool to QUrl. Fix launcher internationalization; Make swipe and home button press in the launcher dismiss the overview; GSV: Use proper variable since altnav renames; Fix some "Cannot read property 'luminance' of null" warnings; Make LVWPH non interactive while on header animation [ Mirco Müller ]; Implemented the needed visual updates on notifications requested by Design for RTM. (LP: #1348092) [ Michael Terry ]; Don't show greeter when screen turns off during a call, even if proximity sensor isn't active. (LP: #1347001); Add support to unlock-device for the new adbd coming down the pipeline. Also fix autopilot tests and run scripts for that. [ Michael Zanetti ]; open the application when clicking on the title entry in the quicklist (LP: #1336380); Don't animate x while dragging apps from the left edge (LP: #1360105) [ Diego Sarmentero ]; Reset button state on cancel (LP: #1362622) (5447e86b5) 2014-09-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8bc70d847) 2014-09-08 Daniel d'Andrada * Build without any warnings (00cb69940) 2014-09-08 CI bot * Releasing 8.00+14.10.20140908.1-0ubuntu1 (0dff53cd4) 2014-09-08 Michael Zanetti * Don't animate x while dragging apps from the left edge Fixes: 1360105 Approved by: Daniel d'Andrada (2c7808f7f) 2014-09-08 Mirco Müller * Implemented the needed visual updates on notifications requested by Design for RTM. Fixes: 1348092, 1365987 Approved by: Daniel d'Andrada (473ab3392) 2014-09-08 Michał Sawicz * Improve references to scope/scopeStyle in PreviewListView and PageHeader, add tests. Approved by: Andrea Cimitan, PS Jenkins bot (23d0818cb) * Make LVWPH non interactive while on header animation (6502d783b) 2014-09-08 Albert Astals * Fix some "Cannot read property 'luminance' of null" warnings (4e322d5b3) * GSV: Use proper variable since altnav renames Approved by: Michał Sawicz (4a7b9b4e0) 2014-09-08 Michael Zanetti * open the application when clicking on the title entry in the quicklist Fixes: 1336380 Approved by: Albert Astals Cid (14dd4e3ad) 2014-09-08 Albert Astals * Make swipe and home button press in the launcher dismiss the overview (cdb4c7ca2) * Fix launcher internationalization (a3d38fbc3) 2014-09-08 Michael Terry * Add support to unlock-device for the new adbd coming down the pipeline. Also fix autopilot tests and run scripts for that. Approved by: Gerry Boland (2c9ebd707) 2014-09-08 Albert Astals * Fix warning 'Background.qml:81:21: Unable to assign bool to QUrl' (1af115f12) * Fix regression in focus handling due to SDK change Approved by: Michael Zanetti, PS Jenkins bot (2c22301af) 2014-09-08 Michael Terry * Don't show greeter when screen turns off during a call, even if proximity sensor isn't active. Fixes: 1347001 Approved by: Michał Sawicz, Albert Astals Cid (7f545d033) 2014-09-08 Albert Astals * Block mouse events under scope overview bottombar Fixes: 1362206 Approved by: Andrea Cimitan (811b8491a) 2014-09-08 Diego Sarmentero * - Reset button state on cancel Fixes: 1362622 Approved by: Michał Sawicz (2c978cdd5) 2014-09-08 Michał Sawicz * Use a single white pixel instead of the heavier checkers image. Approved by: Andrea Cimitan (6156968c8) 2014-09-08 Albert Astals * Disable dash overview if in temp scope preview Approved by: Michał Sawicz, Andrea Cimitan (e43dfe5e5) * Remove unused hasAttributes variable Approved by: Ying-Chun Liu (8604d682d) 2014-09-08 Nick Dedekind * Support for nested prompt session. Fixes: 1358388, 1363081 Approved by: Michał Sawicz, Daniel d'Andrada (e1a2a2f8d) 2014-09-08 Michał Sawicz * More space to reduce diff. (7d984ccb1) * Indent to reduce diff (d678e71f2) * Bring long options back (7302a62c6) * Drop long options. (28c53f9f9) * Use phablet-tools where possible (c9025d030) * No need to sudo to get the right environment over adb shell (f6216636d) * Fix lifecycle tests and rename the wait assertion in Greeter emulator. (ff1b2bc36) * Use Greeter emulator in lockscreen tests, not the unlock helper. (da9543ff0) * Rework run_on_device.sh to support non-root adb shell (f98678d0c) * Use the greeter dbus method in process_helpers.unlock_unity (7ba2cb51a) * Merge trunk (221e0d28e) 2014-09-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (459fcbfd9) 2014-09-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bcacecf2c) 2014-09-05 Andrea Cimitan * Will it break? (34013082f) 2014-09-05 Gerry Boland * AbstractDBusServiceMonitor: expose system or session bus option (6b44b20d7) * [debian] Install libunity8-private.so (b4eb5666d) * Remove stale references to QDbusInterface (2b4c2fe27) * Need to set -fvisibility=hidden only for executables, so shared library can export symbols to be linked against (5e0763a95) * Convert DashCommunicator to use AbstractDBusServiceMonitor (200453ad4) 2014-09-05 Mirco Müller * Merged with trunk. (724d09638) 2014-09-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (464d4d747) 2014-09-05 Michał Sawicz * Fix typo (6238a5cfc) * Fix title alignment test and binding, clean up old components from CardHelpers.js (05bbb1498) 2014-09-05 Gerry Boland * Rename shared lib to libunity8-private (0996017ec) 2014-09-04 Gerry Boland * Label signal arguments for clarity (3c575f345) * Prefer nullptr to 0 (cfb173104) * Add some extra consts (1d499f833) * Small tweaks to AbstractDBusServiceMonitor to use Qt5 and C++11 features (7126ce141) * Add libunity8-utils library and import AbstractDBusServiceMonitor from unity2d (dfee783c6) 2014-09-04 Michał Sawicz * Unneeded layout assignment. (5f19d21d4) * Bigger coverage. (5fed263f9) * Tweak card header to implement the spec correctly (bd181fc2a) 2014-09-04 Pete Woods * Set a value (f1e931a63) * Disable OEM and Click scopes when system scopes are disabled (f5d35d1e0) 2014-09-04 Michał Sawicz * Fix flake issues (f17adda4a) 2014-09-04 Daniel d'Andrada * Make tst_Card work from outside the source tree (LP:1359201) (7530a7096) 2014-09-04 Michał Sawicz * Merge trunk. (542aa522f) 2014-09-04 Daniel d'Andrada * Improve tst_Shell (8075b02e8) 2014-09-04 Michał Sawicz * Do not use "Dash" anywhere user-visible (4fc086119) * Use -windowgeometry to start dash at the requested size. (6949c753c) * Add support for -windowgeometry in dash (b41eead19) 2014-09-04 Mirco Müller * Make contracted snap-decision notifications swipe-to-dismiss-able to comply with latest design-requirements... AP-tests wip still. (cbbdd0c5a) 2014-09-04 Pawel Stolowski * Set UNITY_SCOPES_NO_FAVORITES env var. (ca32b9722) 2014-09-04 Gerry Boland * Merge trunk and fix conflicts (b7bea4c65) 2014-09-04 Michał Sawicz * Merge lp:~unity-team/unity8/scopes_more_things_on_memory (1acdc0bf2) * Drop interactive binding from GenericScopeView as we're closing the list onPressed anyway (2b636ec17) 2014-09-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (688f4d43e) 2014-09-04 Michał Sawicz * Merge lp:~aacid/unity8/two_see_more_bugfix (5ef5f083e) 2014-09-03 Nick Dedekind * check for surface before forcing active focus (6dc64cd55) * use dgettext (217aeabc6) 2014-09-03 Ying-Chun Liu * merge trunk (99e470856) 2014-09-03 Michael Zanetti * make some count emblems visible in the mock (8a62abbe0) * improve countEmblem test and fix some warnings along the way (ae59de50f) 2014-09-03 Gerry Boland * [tests] Connect orientation property to mock surface, and write tests for PhoneStage to exercise it (8e19dec68) * Use Binding instead of connecting/disconnecting via JS. (f3a4e22fe) 2014-09-03 Nick Dedekind * fixed/added comment (c14e228c2) * fixed/added comment (11fa16d11) * updated pot (d3f0145ee) * Fixed up relative time formatting & tests (bdfb1b0a8) 2014-09-03 Gerry Boland * [tests] add orientation property to mock MirSurfaceItem (c915fa06d) 2014-09-03 Michael Zanetti * bump launcher-impl version requirement (b06c57cbc) 2014-09-03 Gerry Boland * Merge trunk (1ae16e2ea) 2014-09-03 Michael Zanetti * fix dependency on unity-schemas (228ad3410) 2014-09-03 CI bot * Releasing 8.00+14.10.20140903.1-0ubuntu1 (e805fc51a) 2014-09-03 Nick Dedekind * Support for nested prompt session. Fixes: 1358388, 1363081 (afc6ec47d) 2014-09-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (538b9bdba) 2014-09-03 Nick Dedekind * Added test for force focus (b60a55e1d) 2014-09-02 Michael Zanetti * properly mark overrides (56897546e) * require 7.90 of libunuty-api (5b1d9361e) * fix whitespace (aaf73c902) * change DesktopFileHandler back into a stateful class but more polished (577a2ed9e) 2014-09-02 Nick Dedekind * reverted change to Animation StateGroup->Item (d12cbd3f8) * Fixed issue with session focus (a02af0fd7) 2014-09-02 Michael Zanetti * drop unneeded debug print and microoptimize an if/else (1f0b8d1dd) * added a comment on why animateX can't be a simple binding (0ec11a954) * make it a namespace only (750589e27) * make DesktopFileHander static to save some memory (bef70daac) 2014-09-02 Albert Astals * Fix test (4820d01fa) 2014-09-02 Michael Zanetti * add regression tests (2f0f2fa2d) 2014-09-02 Albert Astals * Animate the overview hiding if visible (3dec4a8a7) 2014-09-02 Michael Zanetti * also fix left edge drag animation in tablet mode (316361014) * Don't animate x while dragging apps from the left edge (95e6af4ef) * don't hide launcher when nothing happens on long left edge swipes (b786ccc4a) * open the application when clicking on the title entry in the quicklist (0312969c5) 2014-09-02 Albert Astals * Make swwipe and home button press in the launcher dismiss the overview (fb1e3ea90) 2014-09-02 Michael Zanetti * also revert the other workarounds for being able to work (6632c3750) * ooops. this shouldn't have gone in (64903dd8a) 2014-09-02 Nick Dedekind * merged with trunk (e0990ee89) 2014-09-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (62c84f8c9) 2014-09-01 Michael Zanetti * merge prereq also adding support for in desktop file translations (a9a780aca) 2014-09-01 Nick Dedekind * added application property to session (ec70d0fbd) 2014-09-01 Albert Astals * Use the non-standard X-Ubuntu-Gettext-Domain if present (7f90efa4e) * We're setting this from cpp now (7ebc61270) * Call textdomain (28aebb5fe) 2014-09-01 Nick Dedekind * removed unnecessary import (49c427dd0) * added comment for clipping (a1319b9fa) * stategroup (2150ab8b2) * live update (4695446ca) * updated qmltypes (14c1ca834) 2014-09-01 Albert Astals * kill the evil multiple lines at end of file (a9abee4e8) * make list non interactive while on header animation (aa89d2765) 2014-09-01 Nick Dedekind * made a bit more declarative (e4760452f) 2014-09-01 Albert Astals * test the visible+network code for card images (1d829a483) * Add Ubuntu.Connectivity mock (6a99ed94a) 2014-09-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (551f5fdba) 2014-08-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (810d48d62) 2014-08-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2d08473ce) 2014-08-29 Nick Dedekind * animation tests (0a79d510a) * tests for animations (a3ae66fbd) * better animation (552be8091) 2014-08-29 Michael Terry * fix comment (51d9b1b4b) 2014-08-29 Nick Dedekind * line length (078e140f1) * fixed up animation anchoring (a306ae069) 2014-08-29 Michael Terry * Support new adbd when unlocking (8b47aadba) 2014-08-29 Mirco Müller * Avoid focus-stealing from entry, if checkbox is tapped. (2e2afbd88) 2014-08-29 Albert Astals * Fix syntax (0a7c45cc6) 2014-08-29 Nick Dedekind * Live surfaces & sessions (bd9428ee3) 2014-08-29 Albert Astals * Saviq suggestions (4ac0c6b48) 2014-08-29 Michael Zanetti * and one more debug print dropped (6f9b9c5d1) 2014-08-29 Albert Astals * more wait and not direct access (c337c57e2) 2014-08-29 Michael Zanetti * drop more debug prints (8b0b60269) * drop some debug prints (d7a479e32) 2014-08-29 Nick Dedekind * composition of ApplicationWindow & SessionContainer (4979650fa) 2014-08-29 Michael Zanetti * fix tests, add copyright headers (2493bd69c) 2014-08-29 Diego Sarmentero * fixing tests as suggested (2bcd81438) 2014-08-29 Albert Astals * Do not update ranges of GSV if it's being moved around by its parent (38f9e4fb3) 2014-08-29 Nick Dedekind * renamed mirobjectmodel->objectlistmodel for same in qtmir (b4e331f0f) * removed parent/z of session (b604951a4) 2014-08-29 Michael Zanetti * workaround the z-ordering issue with the Dialog (37200162f) 2014-08-29 Albert Astals * Fix warning 'Background.qml:81:21: Unable to assign bool to QUrl' (8f67270e3) * Fix test (da3fc0146) 2014-08-29 Mirco Müller * Avoid the inset appearance of the surrounding UbuntuShape of a notification. (2451842da) 2014-08-29 Albert Astals * Fix some "Cannot read property 'luminance' of null" warnings (31909f685) 2014-08-29 Antti Kaijanmäki * implement dualsim pin unlock dialog. (52e1e5673) 2014-08-29 Albert Astals * Proper variable since altnav renames (edeb951a3) * This should not have been removed (5511f3ab8) * Merge (3c4cfa8b8) * Merge (e401069cd) 2014-08-29 Nick Dedekind * better surface/session registration (936f3af29) 2014-08-28 CI bot * Releasing 8.00+14.10.20140828.1-0ubuntu1 (f9648cc57) 2014-08-28 Michael Terry * With recent password support, we want to be able to unlock the device even with a password set. And we need to be able to do this once the new adbd lands. So I've added a DBus command to hide the greeter. This should be secure because all apps are constrained and if you're on the local session bus unconstrained, you already have access to anything you want. (c325074da) * Reverse default for the user option "allow launcher/panel in greeter when locked." And allow that property to be controlled by an AccountsService property. (LP: #1358340) Fixes: 1358340 Approved by: Albert Astals Cid (bb8999c65) * Force a delay of 20s to wait for unity8 (2197aba7a) 2014-08-28 Nick Dedekind * Surface animation on remove (241ac4187) 2014-08-28 Albert Astals * test++ (17fc1cba1) 2014-08-28 Michael Terry * Fix typo (48d93ba05) 2014-08-28 Albert Astals * Fix name (b40b5718f) 2014-08-28 Michael Terry * Merge from trunk (88673fb71) 2014-08-28 Nick Dedekind * Better trySessionContainer (40ab519d0) 2014-08-28 Albert Astals * Fix Merge (8abc327fc) * More verbose name (7a9c8699b) * Workaround the SDK change in our side (81b336bd9) * Tell the popover we want nothing to do with this focus restoring (f749fca22) 2014-08-28 Mirco Müller * Fixed the white bar at the top of fullscreen sim-unlock snap-decision notification. (31ef0979a) 2014-08-28 Nick Dedekind * removed childSurfaces from MirSurfaceItem (7af764c2a) 2014-08-28 Mirco Müller * Merge with trunk. (f0a1ae773) 2014-08-28 Albert Astals * Merge (42fd6f65a) * Merge (2bfdf38b4) * Merge (8e23d1f1a) * Merge (8cadc139f) * Merge (fd7848e51) * Merge (5e8bbf546) * Merge (05923a492) 2014-08-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1fbc843b0) 2014-08-27 Nick Dedekind * merge manualsurface/session creation into applicationinfo (84b65c51a) 2014-08-27 Gerry Boland * Have tablet behave as before (5ff9fca01) * Merge trunk (bbb24a422) 2014-08-27 Nick Dedekind * ApplicationInfo->ApplicationInfoInterface (bc302959b) * merged with trunk (3ecd374ab) * tweaked animations (d3821d465) 2014-08-27 Florian Boucault * Better image size limits. (ea24632e9) * Splash: use values from desktop file. (c86a277a6) * Small fixes (1e26c5b31) 2014-08-27 Michael Terry * Handle future adb user changes (cb2509338) 2014-08-27 Florian Boucault * Reintroduced necessary property... (d653e51ae) * Slighly cleaner and more efficient. (aa1185b38) * Synced qml/Stages/MainViewStyle.qml with latest toolkit. (43b95a0a9) * Merged from trunk (dd4acd8c2) 2014-08-27 Nick Dedekind * more test fixes (063f167b3) * test fixes. + merge tweaks (d4503856e) 2014-08-27 CI bot * Releasing 8.00+14.10.20140827.2-0ubuntu1 (2b59b8e21) 2014-08-27 Albert Astals * Make the PageHeaderLabelTest pass under valgrind Approved by: Michał Sawicz (fceff4f79) 2014-08-27 Michael Zanetti * use a smaller asset for the app's dropshadow Fixes: 1359157 Approved by: PS Jenkins bot, Albert Astals Cid (ea4ccc3da) 2014-08-27 Marcus Tomlinson * Handle the openScope signal in "tempScopeItem" (ScopesOverview.qml) as is done with "scopeItem" (Dash.qml) Fixes: 1356410 Approved by: PS Jenkins bot, Albert Astals Cid (7654beee4) 2014-08-27 Michał Sawicz * Passcode, not PIN Fixes: 1361114 Approved by: Michael Zanetti, PS Jenkins bot (4e4ad2946) 2014-08-27 Benjamin Zeller * Add support for scope:// url in the dash Fixes: 1361349 Approved by: Michał Sawicz, PS Jenkins bot (b82468481) 2014-08-27 Michał Sawicz * Add scope favoriting support Approved by: Michael Zanetti, PS Jenkins bot (674ddacd1) * Add scope settings UI (624ac8c76) * Support alternative navigation in the dash. (f5393468f) * Make "See Less" get stuck at the bottom of the view Approved by: Daniel d'Andrada, PS Jenkins bot (db4d21372) * Add table preview widget Approved by: Michael Zanetti, PS Jenkins bot (577223cca) * Add support for preview button color customization. Deprecate support for action icons. Approved by: Andrea Cimitan, PS Jenkins bot (bc4730792) 2014-08-27 Andrea Cimitan * Fix right padding on overlay card Approved by: Michael Zanetti, PS Jenkins bot (3f36d307a) 2014-08-27 Jussi Pakkanen * Use nullptr instead of NULL. Approved by: Michael Zanetti, PS Jenkins bot (bd21e658a) 2014-08-27 Michał Sawicz * Don't ignore empty attributes in CardAttributes.qml and improve its encapsulation Fixes: 1355901 Approved by: Andrea Cimitan, PS Jenkins bot (7d897880f) * Implement scope header customization options Approved by: Andrea Cimitan, PS Jenkins bot, Albert Astals Cid (264a02337) 2014-08-27 Albert Astals * Don't let clicks pass through the black back in scopes overview (8ebc6c8d4) 2014-08-27 Michael Terry * Allow unlocking the greeter via dbus (885840843) 2014-08-27 Diego Sarmentero * adding tests (614e7b178) 2014-08-27 Albert Astals * ? -> ; (d65ba0092) * Add verify (619c44342) * Make the test pass under valgrind (a50e80d9a) 2014-08-27 Michał Sawicz * Fix review comments (e6424c2d0) 2014-08-27 Nick Dedekind * renaming + updates (a5d616e26) 2014-08-27 Albert Astals * adapt card creator tests yet again (ac91d94cb) * Adapt to test changes (ba3ffd019) 2014-08-27 Diego Sarmentero * reset button (2ec1733d0) 2014-08-27 Albert Astals * Fix test (6bc54ff66) * better/more robust testing (3577812c3) 2014-08-27 Michał Sawicz * Use a single white pixel instead of the heavier checkers image. (3b635587e) 2014-08-27 Albert Astals * Disable dash overview if in temp scope preview (84be2a253) 2014-08-27 Michał Sawicz * Hide list on touch outside. (0b50fd5c2) * Enable wrapping and eliding in dash navigation (d5ca82c62) 2014-08-27 Albert Astals * Merge (3d45c1cd6) 2014-08-27 Michał Sawicz * Add missing # for the default color (2827603be) 2014-08-27 Albert Astals * Implement visibleRangeBegin in ScopesOverviewAll (c9a4b8d8d) * Merge (f6b90ec8f) 2014-08-27 Andrea Cimitan * Fixed indent (d8d287b94) 2014-08-27 Albert Astals * Only default to not loading images if we're on limited bandwidth (29c44caca) * Merge (95802a572) 2014-08-27 Andrea Cimitan * Add link to bug (58f524a58) 2014-08-27 Michał Sawicz * Fix references to scope/scopeStyle in PreviewListView.qml and PageHeader.qml (b82c0d8c6) 2014-08-27 Benjamin Zeller * Move url-dispatcher file from common to unity package (471406a1c) 2014-08-27 Michał Sawicz * Remove unneeded property. (f02ba81d1) 2014-08-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (589c41e71) 2014-08-27 Nick Dedekind * qtmir version req bump (a3e4cdea9) 2014-08-27 Michał Sawicz * Fix scope mapping test. (89f8c4d4e) 2014-08-27 Gerry Boland * Basic shell-controlled orientation support with added orientation lock (04b59db44) 2014-08-26 Michael Terry * Set edge demo paused value declaratively (ee4510d9f) 2014-08-26 Michał Sawicz * Lighter separator (56847cf78) 2014-08-26 Michael Zanetti * switch to proper dbus interface (2833057ea) * add file watcher to installs (8ae76b224) 2014-08-26 Nick Dedekind * fixes for trunk merge (6dc1918e7) 2014-08-26 Michał Sawicz * Merge lp:~unity-team/unity8/scope-settings (e6808a583) * Merge lp:~unity-team/unity8/alt_nav_support (19bfd158f) * Merge lp:~cimi/unity8/scope-settings (4b6ce0495) * Improve test reliability. (f7cdbb2e7) 2014-08-26 Andrea Cimitan * New approach to test (5a0ce70ac) 2014-08-26 Michael Zanetti * reenable mock plugins (8ec3f819b) 2014-08-26 Michał Sawicz * Test fix. (219c80365) * Passcode, not PIN... (f1077b1df) 2014-08-26 Benjamin Zeller * Small fix from Saviq (9e55d93bd) 2014-08-26 Albert Astals * Only set the source of the images once it is visible (c2a54491d) 2014-08-26 Michał Sawicz * Offset the vertical divider to not touch the highlight (7027219ea) 2014-08-26 Andrea Cimitan * Other approach to test (5a4d240c4) 2014-08-26 Nick Dedekind * merged with trunk (1bcbfcc02) 2014-08-26 Andrea Cimitan * Test initialValue (83c8744e0) * Fixed tests (3b316eee8) 2014-08-26 Michael Terry * Merge from trunk (910414799) * Merge from trunk (777e3248c) 2014-08-26 Michael Zanetti * bump required launcher api version (ff773643f) * merge trunk (5dbd13db4) 2014-08-26 Michał Sawicz * Change PageHeader's API to not use scope directly (ae567d270) 2014-08-26 Albert Astals * Sent the visible range so that even if we set a huge displayMargin for current view, the views are only created, not marked as visible (b5ed3a41b) 2014-08-26 Nick Dedekind * sessionStarting/Stopping (090a7f6b5) 2014-08-26 Andrea Cimitan * More changes (8ea54f3dc) * merged trunk (27f41a421) * Changes according to review (3e4697f49) 2014-08-26 Michał Sawicz * Change wording in options (603723bf8) * Change the transition. (73bf9997b) * Support solids and gradients in navigation button highlights (78860661d) 2014-08-26 Michael Zanetti * split the launcherbackend into different parts to get rid of the accumulated mess (416682a9c) 2014-08-26 Michał Sawicz * Merge trunk (846d3bfda) * Merge lp:~cimi/unity8/scope-settings (b41ac8789) * Make the highlight ~work with navigation background (55473f96b) * Merge lp:~unity-team/unity8/seeLessStuckBottom (84f07de7c) * Merge lp:~unity-team/unity8/tablePreviewWidget (313e1091a) * Merge lp:~saviq/unity8/preview-customizations (40f3bb3de) * Merge lp:~saviq/unity8/header-customizations (1f5a0a2e9) * Merge trunk. (2151c5385) 2014-08-26 Albert Astals * "Remove unused hasAttributes variable" doesn't belong to this branch, revert (4e5585e3d) * lesschanges (96d8d9d28) * Use some more memory for scopes (65e6862b7) * debug-- (fa3970a37) * real not int (634531760) * Implement external cache buffer setting (4559c4ae4) 2014-08-26 Jussi Pakkanen * Use nullptr instead of NULL. (ac10b98ca) 2014-08-26 Michael Zanetti * merge trunk (918e9a4a3) 2014-08-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1d2b77976) 2014-08-26 Andrea Cimitan * Another thing addressed (011014806) 2014-08-25 Andrea Cimitan * Fix tests with refactor (88cdf92fd) * More changes to review (446556a0d) * More changes, still doesn't work (b57a1fa99) * More fixes (7e9e4963a) * More changes requested (20f7e6168) * Removed previewShown and settingsShown properties (c6d555d32) 2014-08-25 Albert Astals * Remove unused hasAttributes variable (770382b28) 2014-08-25 Michał Sawicz * Add favorite testing. (a5d030417) 2014-08-25 CI bot * Releasing 8.00+14.10.20140825.3-0ubuntu1 (df2d07670) 2014-08-25 Michał Sawicz * Rename Ubuntu.Connectivity to Unity.Connectivity to avoid name clash (5b1719c60) 2014-08-25 Daniel d'Andrada * SpreadDelegate - properly transition between splash screen, surface and screenshot (76a6dd2c6) 2014-08-25 Michał Sawicz * Add bug reference (5a50daa1a) * Expect the unlock test failure. (595a44b16) 2014-08-25 Mirco Müller * Merged with trunk and fixed conflicts again. (8bb734a6b) 2014-08-25 Michał Sawicz * Revert unrelated qmltypes changes. (d7f4bea22) * Do not unlock modems on boot yet. (62e54f342) 2014-08-25 Albert Astals * eof (650d19bb3) * fix tests again :D (4a089b009) 2014-08-25 Michał Sawicz * Rename Ubuntu.Connectivity to Unity.Connectivity to prevent name clash (85f90d7fa) 2014-08-25 Albert Astals * It's not visible never here, just part of the UbuntuShape (060470518) 2014-08-25 Daniel d'Andrada * Remove trailing whitespace (645a3f2bc) 2014-08-25 Albert Astals * Reduce texture memory used (fea8816d4) 2014-08-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (48ff4d49b) 2014-08-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e95909eec) 2014-08-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (316bdb6ea) 2014-08-22 Daniel d'Andrada * SurfaceContainer: make the contained surface reliably follow the size of its container (ce390f844) 2014-08-22 Michael Zanetti * merge appdate branch as prereq (ac987a25f) 2014-08-22 Andrea Cimitan * More stable tests (7ea785071) 2014-08-22 Albert Astals * Merge (72de5bff7) * Merge (15bd6b8f3) * Merge trunk (247b8a311) 2014-08-22 Daniel d'Andrada * Fix prompt surfaces (da2e032f6) 2014-08-22 Michael Zanetti * load name and icon from desktop file if possible (f4d6113b7) * update launcher on app install/update/removal (36ba1aac4) 2014-08-22 Albert Astals * Simpler code (db3a7f71a) * Update expected results (f43c72f69) * Hide the categoryView if it's out of view (140f13fad) 2014-08-22 Nick Dedekind * tests & fixes for session-in-session (86ea5bedb) 2014-08-22 Michał Sawicz * Merge lp:~unity-team/unity8/seeLessStuckBottom (21b1980e3) * Merge lp:~unity-team/unity8/tablePreviewWidget (40ee30ec8) * Merge lp:~saviq/unity8/preview-customizations (4fe9bbf2b) * Merge lp:~saviq/unity8/header-customizations (5594002e4) * Disable header divider in overview previews (4b0c740e9) 2014-08-22 CI bot * Releasing 8.00+14.10.20140822-0ubuntu1 (d8c7c26cd) 2014-08-22 Mirco Müller * Made notification qml-test pass again by using Component.onCompleted instead of onOpacityChanged for the time being. Approved by: Michał Sawicz, PS Jenkins bot (67f20afbe) 2014-08-22 Albert Astals * PreviewExpandable: "widgets" is a model, not an array Approved by: Andrea Cimitan, Pawel Stolowski, Michał Sawicz (063aa8739) 2014-08-22 Gerry Boland * Cancel open PAM interactions on shutdown - fixes hang on logout on desktop Fixes: 1353041 Approved by: Michał Sawicz, Michael Terry, Christopher Townsend, PS Jenkins bot (13e6d69f9) 2014-08-22 Michael Zanetti * Implement new lockscreen designs Approved by: Michael Terry (ce17b6586) 2014-08-22 Michael Terry * Allow logging into a desktop or tablet session again, by properly dismissing old PAM conversations. (LP: #1350878) (f35c4e8a6) * Always keep indicator/launcher locked state in sync with whether the user is authenticated. (LP:# 1357230) (2756c137d) * Show the SIM unlock dialog immediately after booting, and enable its emergency call button. (66d3f20bd) 2014-08-22 Diego Sarmentero * Show progress bar on payment button click (6fea321e2) 2014-08-22 Martin Pitt * Mark for using language packs. Approved by: Michał Sawicz, Sebastien Bacher (54602d48b) 2014-08-22 Albert Astals * More stable dash overview tests Approved by: Michał Sawicz, PS Jenkins bot (c3f33dd23) 2014-08-22 Alberto Aguirre * Proxy inactivity timeout values from gsettings into Unity.Screen Fixes: 1230345 Approved by: Daniel d'Andrada, PS Jenkins bot (1a3ac0d9f) 2014-08-22 Andrea Cimitan * [ CI bot ]; Resync trunk [ Nick Dedekind ]; Fixed CachedUnityMenuModel destruction unhinging indicators. (LP: #1328646) [ Mirco Müller ]; Temporarily disable any opacity-animation for notifications to unblock the train due to LP: 1354406. (LP: #1354406) (9178f5b95) 2014-08-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a8c67603a) 2014-08-22 Benjamin Zeller * fix packaging (3ba31582c) 2014-08-21 Nick Dedekind * Sessions-in-sessions (8183eb12d) 2014-08-21 Daniel d'Andrada * Update unity-application-impl version (50c7fc9a5) 2014-08-21 Michael Terry * Merge from sim-unlock-on-boot (9e784f8f9) 2014-08-21 Mirco Müller * Argl, that check did not belong in the one-over-two layout test. (e0a04c22d) 2014-08-21 Andrea Cimitan * Whitespaces (bf7938e3c) 2014-08-21 Michael Zanetti * use a smaller asset for the app's dropshadoe (183f4eefe) * merge lifecycle branch as a prereq (e168fb107) 2014-08-21 Benjamin Zeller * Add scope:// url support to the dash (ab6fbeb72) 2014-08-21 Mirco Müller * Merged with trunk and fixed all conflicts. (90a8f00cb) 2014-08-21 Michael Terry * Fix path for mocks qmltypes (fd8166886) * Update qmltypes (b5c7ac0b4) * Add a small test to confirm that unlocked properties are correct (98f62c733) * Merge from trunk (6b6d265fd) * Merge from trunk (19bd613fb) 2014-08-21 Andrea Cimitan * Remove prefix for padding test (d3cacb5fd) 2014-08-21 Albert Astals * widgets is a model, not an array of objects (1a6a34ebd) 2014-08-21 Andrea Cimitan * Fix right padding and tests (262086227) * Add test for left/right paddings (9de73b24c) 2014-08-21 Michael Zanetti * update pot (722f0f67d) 2014-08-21 Marcus Tomlinson * Added "// TODO Add tests for these connections" (e9ac69cdc) 2014-08-21 Mirco Müller * Made notification qml-test pass again. Added FIXME-remarks regarding currently used workaround for LP: #1354406. Avoid some QWARNs. (8eba0b8ef) 2014-08-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3e0d35c6c) 2014-08-20 CI bot * Releasing 8.00+14.10.20140820-0ubuntu1 (ca8557fef) 2014-08-20 Nick Dedekind * Fixed CachedUnityMenuModel destruction unhinging indicators. Fixes: 1328646, 1357311 (cd04516cd) 2014-08-20 Mirco Müller * Temporarily disable any opacity-animation for notifications to unblock the train due to LP: 1354406. (cea2bd710) 2014-08-20 Florian Boucault * Fixed z order (8fd1fd689) 2014-08-20 Michael Terry * Create QDBusInterface object on the fly (95fc898ed) 2014-08-20 Mirco Müller * Temporarily disable any opacity-animation for notifications to unblock the "train" due to LP: 1354406. While it does fix the problem described in that bug, it does not solve the opacity-animation getting stuck at 0 leading to invisible snap-decisions. This gives us a bit more breathing room still. (c59e4c880) 2014-08-20 Florian Boucault * Empty (7c705adfc) 2014-08-20 Andrea Cimitan * Fix right padding (908134cfa) 2014-08-20 Michael Terry * Merge from trunk (de8fbc2a7) 2014-08-20 Daniel d'Andrada * The mock gallery-app is now a fullscreen app (82a8e18e6) 2014-08-20 Florian Boucault * Merged from trunk (50bc9afd4) 2014-08-20 Nick Dedekind * Reverted shell change (098c94fc2) * Added tests for model delete (0adb603b8) * removed debug (4edfe5eba) 2014-08-20 Albert Astals * second scenario and bugfixes for it (f7d29798c) 2014-08-20 Nick Dedekind * review comments (0abe41570) 2014-08-20 Marcus Tomlinson * Redirect onGotoScope to root.scope.gotoScope() rather than calling favoriteSelected() directly (bb24e42e8) * Switch back to first tab before opening favorited scope from tempScopeItem (d81dc3393) 2014-08-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (00b68d23d) 2014-08-19 Michael Zanetti * update as per design review (034e67812) 2014-08-19 Albert Astals * A test that failed with the old code (3dbd58b14) 2014-08-19 Michael Terry * Switch properties to system schema, instead of our own (0a3f1ddf0) 2014-08-19 Nick Dedekind * use qml ownership for models (225914208) 2014-08-19 Mirco Müller * Made visibility-check for secondary-icon more compact. (e5bc1ec46) 2014-08-19 Martin Pitt * mark for using language packs (51a793530) 2014-08-19 Michael Terry * Split the one setting into two (b3578c10c) 2014-08-19 Diego Sarmentero * checking before click (478fe9526) 2014-08-19 Albert Astals * Fix seeAll expansion (6306f7515) 2014-08-19 Ying-Chun Liu * Merge trunk (ce0f39b09) 2014-08-19 Diego Sarmentero * [ CI bot ]; Resync trunk [ Michał Sawicz ]; Fix dash overview test and prevent crash in mock ApplicationInfo's d'tor. tryCompareFunction didn't work because .item threw. [ Michael Terry ]; Bring dialer to front on incoming call even when device is locked (LP: #1354532) [ CI bot . Resync trunk [ Michał Sawicz ]; Use palette's baseText for text colour in dash.; Update qmltypes definition. Move PageHeader out of qml/Components into qml/Das. Reshuffle and update dependencies; Fix cardtool test and make card creator output debugging info on errors. Support previews for scopes in overview and hook up preview processing to activity indicator.; Fix notifications indicator title; Fix horizontal list activation and add test for it. [ Ying-Chun Liu ]; Add button colors and i18n for power off dialog. (LP: #1354506) [ Mirco Müller ]; Force plain-text rendering for summary- and body-text. (LP: #1335787) [ Michael Terry ]; Add --lightdm= argument to ./run.sh that lets developers choose which lightdm backend to use. Stop letting a user that is immediately denied via PAM into the shell by fixing some assumptions that a user which was not prompted was successfully authenticated. This is not a common situation, you'd have to manually change your PAM config. Fix a small console warning .; Make wrong-password handling much nicer by showing a pretty spinner while we wait for PAM, by improving the prompt text to match designs, by forcing the user to wait five seconds after every five failed attemps, and by supporting (but not yet enabling) an opt-in "factory-reset your phone after X failed attemps" feature. [ Michael Zanetti ]; bring back network caching in dash (LP: #1355729) [ Michał Sawicz ]; Add --lightdm= argument to ./run.sh that lets developers choose which lightdm backend to use. Stop letting a user that is immediately denied via PAM into the shell by fixing some assumptions that a user which was not prompted was successfully authenticated. This is not a common situation, you'd have to manually change your PAM config. Fix a small console warning .; Fix anchor in PreviewListView.qml. Make wrong-password handling much nicer by showing a pretty spinner while we wait for PAM, by improving the prompt text to match designs, by forcing the user to wait five seconds after every five failed attemps, and by supporting (but not yet enabling) an opt-in "factory-reset your phone after X failed attemps" feature. * Add new horizontal list category layout. (LP: #1352226) * Fix qml tests - loader around PageHeader, more retries for selecting a scope and undefined attributes in mock overview scope. [ Leo Arias ]; Added autopilot helpers and tests for the launcher and dash icon.; Added an autopilot helper to click a scope item.; Added an autopilot test for focusing an app clicking the icon on the launcher. [ Mirco Müller ]; Allow ENTER/RETURN in a TextField to accept a snap-decision notification. (LP: #1305885) [ Andrea Cimitan ]; Add emblem support in dash cards. [ Michael Terry ]; Fix a variety of design nits with the current lockscreen:; disable indicators and launcher when locked; when reversing the direction of a greeter flick, treat it as a cancel; don't animate dots when changing the infographic data source; make cancelling a login nicer:; reduce the delay before greeter starts animating; show the greeter from the same side of the screen that it hid to; don't re- animate the infographic (LP: #1351027) [ Stephen M. Webb ] * enables the unity8 upstart job for desktop sessions (LP: #1353041) [ Albert Astals ]; Dash Overview (LP: #1317683) * GenericScopeView: On click only activate scope:// uris and clickscope items The rest of clicks result in a preview, also scope:// uris don't get a preview; Pass the scope search hint up to the search line [ CI bot . Resync trunk [ Nick Dedekind ]; Added application prompt surfaces to allow prompting application which have not yet created a surface. (d90b81446) 2014-08-19 Ying-Chun Liu * remove event accept. (ff2ea35c2) 2014-08-19 Mirco Müller * Fixed failure of notification qml-tests by updating the used object-names. Fixed some QML-warnings. (e77ad4d3d) 2014-08-19 Michael Terry * Properly ignore and dismiss prompts from old PAM conversations (9c147d244) 2014-08-19 Daniel d'Andrada * Fix mock virtual keyboard (b6130e077) * Compress the expression a bit (547a4a1b3) 2014-08-19 Diego Sarmentero * changing visibility link (727028bcb) 2014-08-19 Daniel d'Andrada * Show nothing if running app loses surface (f2281d653) 2014-08-19 Michael Zanetti * make sure the retryLabel uses its space even when empty (9a26bacde) 2014-08-19 Michael Terry * Don't reset authenticatio a second time (f94eff840) 2014-08-19 Marcus Tomlinson * Handle onGotoScope in tempScopeItem (3c813788c) 2014-08-19 Daniel d'Andrada * Get rid of annoying warning. (cf5ebf582) 2014-08-19 Nick Dedekind * added test for lp1328646 (821f5d272) * added test for cached model (74f208a6b) 2014-08-19 Andrea Cimitan * Fixed tests (975eeb1c6) 2014-08-19 Nick Dedekind * fixed problem destroying cached menu model. (0b65bb2b0) * rebased (0a267ebdb) 2014-08-19 Marcus Tomlinson * Handle the onOpenScope signal in "tempScopeItem" (ScopesOverview.qml) as is done with "scopeItem" (Dash.qml) (d4d72c247) 2014-08-19 Michael Zanetti * lock it again when the forcedDelayTimer is running and its recreated (2faf4327e) * fix test (409a17c37) * make it better translatable (6be9c8ddf) 2014-08-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d546260f5) 2014-08-18 Michał Sawicz * Add support for scope favoriting (1811a8e50) 2014-08-18 Michael Terry * Fix tests (11358e01f) * Go back to launcher/panel being interactive while locked by default; add setting so that when ubuntu-system-settings is ready, they can re-enable that mode (5d365e3bf) 2014-08-18 Michael Zanetti * cleanup strings and debug print as per review (8a358244e) * fix test (6aaf521fa) * revert accidental change (1a87419fe) * bring back the autoconfirm comment and reset logic (b730f0803) 2014-08-18 Mirco Müller * Fixed object-name collisions that caused notification AP-tests to fail... did some visual updates to notification AP-tests... added notification AP-test for the new over-over-two button layout case. (6487085f7) 2014-08-18 Daniel d'Andrada * Remove debug print (019781339) * Remove ApplicationInfo destructor fix as Saviq already did it in trunk in the meantime (da0ec7242) * Merge trunk (646118d64) * Remove empty line at the end of tst_ApplicationWindow.qml (5fd36d741) * Some test refinements (e246ecd0d) 2014-08-18 Michał Sawicz * Merge lp:~unity-team/unity8/seeLessStuckBottom (2f4b96e64) * Merge lp:~unity-team/unity8/tablePreviewWidget (84170a729) * Merge lp:~saviq/unity8/preview-customizations (cd61c2232) * Merge lp:~saviq/unity8/header-customizations (18d67d48b) * Work around a crasher in JS (87f761d7f) 2014-08-18 Andrea Cimitan * Check for visible instead open in preview and settingsShown (a58769f31) * Refactoring code for the Loader (53f787cb8) 2014-08-18 Daniel d'Andrada * Some improvements (2c397d302) 2014-08-18 Michael Zanetti * update Lockscreen tests for the brought back autoconfirm mode (a67e845cd) 2014-08-18 Nick Dedekind * removed functional (f60c80442) 2014-08-18 Daniel d'Andrada * Update unity-shell-application version requirement uniformly (4eedf03fa) * Specify the screenshot size and remove debug print (073546674) 2014-08-18 Andrea Cimitan * More stuff addressed (3c508c31c) 2014-08-18 Albert Astals * More stable dash tests (cd4bedf20) 2014-08-18 Michael Zanetti * fix ap tests (825dc3e36) * fix qmltests (eefa025d0) 2014-08-18 Nick Dedekind * rebased (b38f652a0) 2014-08-18 Mirco Müller * The append hint (use-case) is no longer desired by the Design team, because of the newly introduced max. line-limit of 2 for a notification's body-text. Thus the corresponding AP-test was removed. (8d85c3887) 2014-08-18 Michał Sawicz * Merge lp:~unity-team/unity8/seeLessStuckBottom (2cf29ffe9) * Merge lp:~unity-team/unity8/tablePreviewWidget (9270c34e8) * Merge lp:~saviq/unity8/preview-customizations (3e1188ff3) * Merge lp:~saviq/unity8/header-customizations (6d769c978) * Merge trunk. (024b7b451) 2014-08-18 Andrea Cimitan * [ CI bot ]; Resync trunk [ Michał Sawicz ]; Fix dash overview test and prevent crash in mock ApplicationInfo's d'tor. tryCompareFunction didn't work because .item threw. [ Michael Terry ]; Bring dialer to front on incoming call even when device is locked (LP: #1354532) [ CI bot . Resync trunk [ Michał Sawicz ]; Use palette's baseText for text colour in dash.; Update qmltypes definition. Move PageHeader out of qml/Components into qml/Das. Reshuffle and update dependencies; Fix cardtool test and make card creator output debugging info on errors. Support previews for scopes in overview and hook up preview processing to activity indicator.; Fix notifications indicator title; Fix horizontal list activation and add test for it. [ Ying-Chun Liu ]; Add button colors and i18n for power off dialog. (LP: #1354506) [ Mirco Müller ]; Force plain-text rendering for summary- and body-text. (LP: #1335787) (af0bee632) 2014-08-18 Michał Sawicz * Fix cardcreator test. (7a796efd4) 2014-08-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f60547314) 2014-08-18 Michał Sawicz * Merge lp:~saviq/unity8/header-customizations (40893b562) 2014-08-17 CI bot * Resync trunk (c3a867cc1) 2014-08-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c27860add) 2014-08-17 CI bot * Releasing 8.00+14.10.20140817-0ubuntu1 (e51c9a76b) 2014-08-17 Michał Sawicz * Fix dash overview test and prevent crash in mock ApplicationInfo's d'tor. (b94dabbf1) 2014-08-16 Andrea Cimitan * Fix issue with preview in scope overview (5d9b8d8f1) 2014-08-16 Michał Sawicz * Reset m_surface in ApplicationInfo's d'tor, otherwise we get it as a signal when it's too late. (4bafdb74e) * Merge lp:~unity-team/unity8/seeLessStuckBottom (75f4736b6) * Merge lp:~unity-team/unity8/tablePreviewWidget (07ea17d1f) * Merge lp:~saviq/unity8/preview-customizations (a009effbe) * Merge lp:~saviq/unity8/header-customizations (a0d07d2f9) * Fix expected colors in GenericScopeView test. (81b958d0b) * Fix dash overview test. (7633b559c) 2014-08-16 Michael Terry * Merge from trunk (48f051d34) 2014-08-16 Michał Sawicz * Merge lp:~saviq/unity8/header-customizations (053b31292) 2014-08-16 CI bot * Resync trunk (2ab9bc801) 2014-08-16 Michał Sawicz * Force row to be 2GU high and improve invalid value handling (4b1697d2f) * Don't ignore empty attributes in CardAttributes.qml and improve its encapsulation (3dd875d3a) 2014-08-16 Andrea Cimitan * Better the string test too (ee5b83151) * Properly fix tests (6ba7b7b2d) * Workaround test (bcc82db8f) 2014-08-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (911a2fbd3) 2014-08-15 Alberto Aguirre * Update required gsettings-ubuntu-schemas package version (78daf45be) 2014-08-15 Michael Terry * Make isAuthenticated a notifiable property (2b5011360) * Enable emergency call button (448a2f7b5) 2014-08-15 Alberto Aguirre * Update required gsettings-ubuntu-schemas version (4c607882b) 2014-08-15 Michael Terry * Start SIM unlock dialog on boot (2bba53988) * Merge in dialer-in-greeter (0aab030e5) 2014-08-15 Diego Sarmentero * cleanup in test (2dca7a5d4) 2014-08-15 Alberto Aguirre * Proxy inactivity timeout values from gsettings into Unity.Screen (02d36e4ca) 2014-08-15 CI bot * Releasing 8.00+14.10.20140815.1-0ubuntu1 (00e5b5422) 2014-08-15 Michał Sawicz * Fix horizontal list activation and add test for it. Approved by: Michael Terry (bd77b2f35) * Fix notifications indicator title Approved by: Michael Terry, Mirco Müller (f5cf8f7e5) * Support previews for scopes in overview and hook up preview processing to activity indicator. (41e957a9e) * Fix cardtool test and make card creator output debugging info on errors. Approved by: Andrea Cimitan, Daniel d'Andrada, PS Jenkins bot (8e00ae4eb) 2014-08-15 Michael Terry * Bring dialer to front on incoming call even when device is locked Fixes: 1354532 Approved by: Nick Dedekind (2e906c095) 2014-08-15 Ying-Chun Liu * Add button colors and i18n for power off dialog. Fixes: 1354506 Approved by: Michał Sawicz (d3ba6f80b) 2014-08-15 Michał Sawicz * Reshuffle and update dependencies Approved by: Antti Kaijanmäki, Facundo Batista (778dcd400) * Move PageHeader out of qml/Components into qml/Dash Approved by: Andrea Cimitan (8e0b6dafb) * Update qmltypes definitions Approved by: Michael Zanetti (fec6fcf80) * Use palette's baseText for text colour in dash. Approved by: Michael Zanetti (52e603a9f) 2014-08-15 Mirco Müller * Force plain-text rendering for summary- and body-text. Fixes: 1335787 Approved by: Michał Sawicz (59fcfae52) 2014-08-15 Michael Zanetti * update shaking behavior as info appeared in spec (03049a312) 2014-08-15 Andrea Cimitan * Should not feature overview in settings page (7e52a60fa) * Fix issue with initial count for preview (0cb1228d6) 2014-08-15 Michał Sawicz * Hide highlight if line invisible. (d8ee53d7c) 2014-08-15 Daniel d'Andrada * A bit of refactoring (c33616470) 2014-08-15 Andrea Cimitan * Merged horizontal list (806f2d06a) * Force focus properly (6afb579c2) 2014-08-15 Ying-Chun Liu * Fix messages. Remove disable when screen status changed (81daf5a76) 2014-08-15 Michał Sawicz * Fix horizontal list activation and add test verifying it really works. (7da2e76d7) * Merge lp:~unity-team/unity8/seeLessStuckBottom (ef46818fc) * Merge lp:~unity-team/unity8/tablePreviewWidget (f6a0965f2) * Merge lp:~saviq/unity8/preview-customizations (dda38b9e9) * Merge lp:~saviq/unity8/header-customizations (857151874) * Put the highlight outside of the divider. (ee211c74e) * Merge lp:~unity-team/unity8/seeLessStuckBottom (6dea7c244) * Merge lp:~unity-team/unity8/tablePreviewWidget (704e7604a) * Merge lp:~saviq/unity8/preview-customizations (045f82642) * Merge lp:~saviq/unity8/header-customizations (7aaedc254) * Fix it even better :/ (450925f54) * Merge lp:~unity-team/unity8/tablePreviewWidget (d8e552ff8) * Merge lp:~saviq/unity8/preview-customizations (e9f0e56d7) * Merge lp:~saviq/unity8/header-customizations (7ca7d6321) * Fix notification indicator title (cb7de1631) * Move the highlight inside the divider (e3a88db3b) * Fix navigation background better (d97c4f9af) * Merge lp:~unity-team/unity8/seeLessStuckBottom (abab95651) * Merge lp:~unity-team/unity8/tablePreviewWidget (0dc3bc439) * Merge lp:~saviq/unity8/preview-customizations (a20a64952) * Merge lp:~saviq/unity8/header-customizations (4e12dee37) * Fix default navigation background (46bb7387b) * Add inset effect to the divider. (4c71157c6) * Use palette's baseText as default (aa4a32f8b) * Use theme's baseText instead of grey. (9db610f38) 2014-08-15 Michael Zanetti * new lockscreen design (48075704c) 2014-08-15 Michał Sawicz * Merge lp:~unity-team/unity8/seeLessStuckBottom (5eae36be3) * Merge lp:~unity-team/unity8/tablePreviewWidget (9526d5aa2) * Merge lp:~saviq/unity8/preview-customizations (910950681) * Merge lp:~saviq/unity8/header-customizations (dbe5285f3) * Merge lp:~saviq/unity8/move-pageheader (e0cb4630c) * Merge lp:~saviq/unity8/grey-from-palette (ddd857809) * Merge trunk (2f1bc8528) * Add test for not overlapping navigation panes (5fb82fa2e) * Add test for alternative navigation (574a3c521) 2014-08-15 Gerry Boland * Cancel open PAM interactions on shutdown - fixes hang on logout on desktop (93a0254dc) 2014-08-15 Michał Sawicz * Fix expandable button (0ad0436a0) * Widgets already have scopeStyle (8809451dd) * Use alias instead of separate property (955006d29) 2014-08-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5613e47e5) 2014-08-15 Michał Sawicz * Wrap ostensibly long lines. (6f0c06041) * Fix review comments. (d8e5a7f2c) * Fix CardTool testcase name and don't hardcode card size values (449a51b0f) * Support previews for scopes in overview and hook up preview processing signal to activity indicator. (a4e9ead84) 2014-08-14 Michał Sawicz * Fix cardcreator and print debugging output on error. (95d9eaf7e) 2014-08-14 Daniel d'Andrada * Merge trunk (037720ca2) * addressing review comments (d4c3c6ddd) 2014-08-14 Michał Sawicz * Add anchors and ellipsis in labels. (49c04dac1) * Use the new getTextColor method from ScopeStyle and increas threshold for dark dropshadow (ebd84889e) * Merge lp:~saviq/unity8/header-customizations (69f670d4a) * Make the nav overlay darker. (aa5da4970) * Redo text color threshold on backgrounds (f7af5522c) * Change the default foreground color (12d39f935) 2014-08-14 Nick Dedekind * removed debug log (092e441bb) * tweaked properties (616440fcf) * updated qtmir requirement to 0.4.2 (9a1eff7f3) 2014-08-14 Michał Sawicz * Reshuffle and update build and runtime dependencies. (dbd2f1497) * Add missing qmltypes (63856ad6a) * Replace one more "gray" with theme. (f99a4c484) 2014-08-14 Michael Terry * Merge from trunk (5736d56f7) 2014-08-14 Diego Sarmentero * fixing proposal (bb842177c) 2014-08-14 Michał Sawicz * Merge lp:~saviq/unity8/preview-customizations (7e0bf5bf8) * Merge lp:~unity-team/unity8/seeLessStuckBottom (ce8b73414) * Merge lp:~saviq/unity8/preview-customizations (2f2b34144) * Add light shadow and change single-nav z-stack to be consistent with dual-nav (099851ae8) * Fix z ordering between main and alt navigation. (6729d0b40) * Fix wide layout and adapt to coloured background (5c1bae9db) * Add navigation bar background and drop shadows (339ae5235) * Merge lp:~saviq/unity8/preview-customizations (a4f5098a5) * Add support for styling preview buttons. Remove deprecated support for icons in buttons. (43f2b8a97) * Adapt GenericScopeView tests to style changes. (9b3577df6) * Merge lp:~saviq/unity8/move-pageheader (2fc2c7366) * Fix image path in tst_GenericScopeView.qml (bb1320307) * Fix background luminance. (05dbc8bfd) * Add divider color to the fake scope. (b7062dde8) * Add fake scope navigation background. (89d464ed2) * Fix overview header background (5b1226827) * Fix default navigation background (eafe16f11) * Add luminance property to Background.qml (f58b35fdb) * Move luminance calculation out to Utils.Style (f4a7f031c) * Colourize attribute icons (80bf239e9) * Hook up divider color, move pagination dots above the divider. (37550facf) * Add support for preview button color in ScopeStyle.qml (fcbcf9a0b) * Add support for header divider color and navigation background in ScopeStyle.qml (21a6e4a15) * Make default header background non-transparent. (0fc1b8e10) * Merge lp:~saviq/unity8/grey-from-palette (f460ff1cd) * Merge trunk. (6b15f1d5f) * Fix fake image path. (c0548925f) 2014-08-14 Nick Dedekind * rebased (1d28b143b) * remove application exposure (211241675) 2014-08-14 Andrea Cimitan * Merge el trunko (5ee03cbde) 2014-08-14 CI bot * Resync trunk (96d39644d) 2014-08-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c86e65af4) 2014-08-14 CI bot * Releasing 8.00+14.10.20140814.1-0ubuntu1 (ab88170b2) 2014-08-14 Leo Arias * Added an autopilot test for focusing an app clicking the icon on the launcher. Approved by: Michał Sawicz, Brendan Donegan (a14400317) * Added an autopilot helper to click a scope item. Approved by: Michał Sawicz (c3620291d) * Added autopilot helpers and tests for the launcher and dash icon. Approved by: Michał Sawicz, Brendan Donegan (88d29159f) 2014-08-14 Michał Sawicz * Fix qml tests - loader around PageHeader, more retries for selecting a scope and undefined attributes in mock overview scope. Approved by: Michael Zanetti (027f37ca2) 2014-08-14 Michael Zanetti * bring back network caching in dash Fixes: 1355729 Approved by: Pawel Stolowski (f55a107f2) 2014-08-14 Michał Sawicz * Add new horizontal list category layout. Fixes: 1352226 Approved by: Andrea Cimitan (2dbf5dd7f) 2014-08-14 Michael Terry * Make wrong-password handling much nicer by showing a pretty spinner while we wait for PAM, by improving the prompt text to match designs, by forcing the user to wait five seconds after every five failed attemps, and by supporting (but not yet enabling) an opt-in "factory-reset your phone after X failed attemps" feature. Approved by: Michał Sawicz (548e044c5) 2014-08-14 Michał Sawicz * Fix anchor in PreviewListView.qml. Approved by: Andrea Cimitan (cad788d21) * Update .qmltypes files. (4909579b7) 2014-08-14 Michael Terry * Add --lightdm= argument to ./run.sh that lets developers choose which lightdm backend to use; Stop letting a user that is immediately denied via PAM into the shell by fixing some assumptions that a user which was not prompted was successfully authenticated. This is not a common situation, you'd have to manually change your PAM config. * Fix a small console warning Approved by: Michał Sawicz (057380671) 2014-08-14 Mirco Müller * Allow ENTER/RETURN in a TextField to accept a snap-decision notification. Fixes: 1305885 Approved by: Michael Zanetti (d68b22296) 2014-08-14 Michał Sawicz * Merge lp:~unity-team/unity8/greeter-misc-cleanups (3a83692c5) * Simplify setCurrentScope test. (990c34514) * Merge trunk. (187e7e53e) * Fix Dash test better. (df78d1080) * Make sure attributes is always defined in mock overview scope. (3eb4c4b6b) * Increase dash flicking retries to 10, as 5 wasn't enough apparently. (2f2bc7526) * Fix searchHint test. (c4d483fb7) 2014-08-13 Daniel d'Andrada * Get rid of all mentions to screenshot in the Unity.Application API (845cc0eac) 2014-08-13 Michael Terry * update object names (b067c0d5e) * Update pot (f895f9e96) * Use the built-in lockscreen dialog rather than a home-brewn one (9a6b0cbf4) 2014-08-13 Michał Sawicz * Merge trunk. (28302faa4) * Bump imports. (3bfc664f8) * Merge trunk. (fe91c9374) 2014-08-13 Nick Dedekind * removed SurfaceManager::onSurfaceAboutToBeDestroyed (fcca2b65e) 2014-08-13 Michael Terry * Remove spinner; design didn't like it and it complicates other UI changes down the line (aacb4a305) * Merge from trunk (20f22760d) 2014-08-13 Nick Dedekind * moved tests for surface container to separate files (227654306) 2014-08-13 Michał Sawicz * Move PageHeader.qml to qml/Dash (2405f617e) 2014-08-13 Diego Sarmentero * adding test (20f4803db) 2014-08-13 Nick Dedekind * fixed max->min insert (2917119b7) 2014-08-13 Michał Sawicz * Add support for preview button color in ScopeStyle.qml (3e23c33c6) * Add support for header divider color and navigation background in ScopeStyle.qml (4726493e8) * Make default header background non-transparent. (2b472c34d) * Replace all occurences of "grey" in dash with palette-sourced colour. (d6249e8e3) 2014-08-13 Andrea Cimitan * Update ScopeSettingBoolean (257402ef4) 2014-08-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (75875f692) 2014-08-12 Michael Terry * Fix qmluitest after recent change (09a2c930f) 2014-08-12 Leo Arias * Wait more. (9dd830bba) 2014-08-12 Michael Terry * Whoops, don't break emergency call when the dialer hasn't been launched yet (352a2eb29) 2014-08-12 Andrea Cimitan * Added tests for settings open close (59038177c) 2014-08-12 Diego Sarmentero * opacity fixed (b5aea5a39) 2014-08-12 Leo Arias * Make the appId property readonly. (96abbb1f8) 2014-08-12 Andrea Cimitan * Moar fixes (9dc845504) 2014-08-12 Nick Dedekind * removed RemoveBackground (cf5470a69) * merged with trunk (525a59f8c) * merged with trunk (c2c955c00) * use model for surfaces (698b70743) 2014-08-12 Michael Zanetti * bring back network caching in unity8-dash (4d02a7bb4) 2014-08-12 Mirco Müller * Merged with trunk. (6d80eaab6) * Merged with trunk. (1479cb4f2) 2014-08-12 Diego Sarmentero * specific opacity (31059797e) * improves requested (1814087e9) 2014-08-12 Andrea Cimitan * Added fake settings (74ee45e40) 2014-08-12 Diego Sarmentero * invert calls (fd1c34a26) 2014-08-12 Andrea Cimitan * Merge trunk (bde3de355) 2014-08-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b7455d3f8) 2014-08-11 CI bot * Releasing 8.00+14.10.20140811-0ubuntu1 (38c89b865) 2014-08-11 Stephen M. Webb * enables the unity8 upstart job for desktop sessions Fixes: 1353041, 1354029 Approved by: Michał Sawicz (e0dfabe28) 2014-08-11 Albert Astals * Pass the scope search hint up to the search line Approved by: Michael Zanetti (237a7756d) 2014-08-11 Michael Terry * Fix a variety of design nits with the current lockscreen: * disable indicators and launcher when locked * when reversing the direction of a greeter flick, treat it as a cancel * don't animate dots when changing the infographic data source * make cancelling a login nicer: * reduce the delay before greeter starts animating * show the greeter from the same side of the screen that it hid to * don't re-animate the infographic Fixes: 1351027 Approved by: PS Jenkins bot, Albert Astals Cid (5e915b4c1) 2014-08-11 Albert Astals * GenericScopeView: On click only activate scope:// uris and clickscope items (7a8ef73a5) 2014-08-11 Andrea Cimitan * Add emblem support in dash cards. Approved by: Michał Sawicz (6ae85356c) 2014-08-11 Albert Astals * Dash Overview Fixes: 1317683 Approved by: Michal Hruby, Michał Sawicz, Nick Dedekind (39614c9e2) 2014-08-11 Diego Sarmentero * show progress bar instead of spinner (0b02859f6) 2014-08-11 Michael Terry * Only muck with fakeActiveForApp setting if we're locked (1afc2c87b) * Merge in lockscreen-nits branch (60dc7a080) * Don't try to show greeter when call is over, dialer can manager that (6d6600121) 2014-08-11 Andrea Cimitan * Added more tests (8a7d160b2) 2014-08-11 Michael Terry * Add a function for setting fake-active mode to avoid scary-sounding emergencyCall signal when all we want to do is accept an incoming call (1809d7118) * When dialer-app is focused and the greeter is up, enter emergency call mode (a12f8e1fd) 2014-08-11 Leo Arias * Merged with prerequisite. (1f18530e7) * Fixed the merge. (cad64beed) * Merged with trunk. (58873d402) * Remove the failed merge message. (cb1f0d4d0) * Merged with trunk. Updated to work with dash as app. (5017345cb) 2014-08-11 Daniel d'Andrada * Add some more mock values (fe2c64182) * SpreadDelegate - properly transition between splash screen, surface and screenshot (64f3a3af4) 2014-08-11 Ying-Chun Liu * Merge trunk (129ee8b5e) * Merge upstream (712f25404) * Add i18n to all the dialog texts (4d88ba4be) 2014-08-11 Diego Sarmentero * fix doc string (3ab9fe6e0) 2014-08-11 Michał Sawicz * Hook up horizontal list layout. (7a58bb3c1) * Add support and test for the new layout in CardTool. (f2a55dc1f) * Add new horizontal-list category layout. (c94ad4b8a) 2014-08-11 Andrea Cimitan * Add small tests (e53328c5f) 2014-08-11 Michał Sawicz * Add tests for PreviewListView.qml. (c3bc9af36) * Fix anchor in PreviewListView.qml. (fec2d1c7d) 2014-08-11 Andrea Cimitan * Fix issue in reviewy (ca354db11) 2014-08-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6ef3e13d3) 2014-08-09 Andrea Cimitan * Whitespaces (d8064d595) 2014-08-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (22547e2c1) 2014-08-08 Andrea Cimitan * Remerged (55a174448) * Merged dash overview (ffdf830f8) 2014-08-08 Diego Sarmentero * link button enabled state to processActive attribute (3ed548d03) * disable button on process action (1b5da4b5a) * fixing variable name (bd17aa0d8) * fix attribute naming (86d50e719) * show processing feedback on action progress (23b849f6d) 2014-08-08 Andrea Cimitan * Add colorisation (4f7b8e0f4) * Fixed another review erequest (4439914ec) * Fixed issue of spacing when the touchdown is on the art only (3c5db8420) * Fixed right padding (7bf99ea1b) 2014-08-08 Albert Astals * unfocus++ (20331381c) 2014-08-08 Andrea Cimitan * merged overview (38f4f4369) 2014-08-08 Mirco Müller * Enforce 2-line limit for body-text as per Design-request. Removed body-text opacity according to Design-request. (d7b50b89c) 2014-08-08 Albert Astals * hook up temp scope processing (e1e53b523) 2014-08-08 Mirco Müller * Adapted notification qml-tests to new hints and added exercising the new 2-over-1 button-layout for snap-decision notifications. (c155a77cb) 2014-08-08 Andrea Cimitan * Fixed whitespaces (0946923ba) * Moar fixes (160c975c4) 2014-08-08 Mirco Müller * Merged with trunk (5211c9d11) 2014-08-08 Albert Astals * TODO++ (d53390b04) 2014-08-08 Stephen M. Webb * removed non-existent surfaceflinger session (8638a9f59) 2014-08-08 Diego Sarmentero * [ Michal Hruby ]; Work with the scopes-v4 branch + departments->navigation renaming [ Michał Sawicz . Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards; Use the correct API in PageHeader. (LP: #1353048) * Refactor dash activity indicator. (LP: #1351539) [ Albert Astals ]; Dash Departments fixes Update maxHeight manually since it depends on the position of the item and its parents and it can't know when the binding has to be updated Make parent stuff non interactive when the department list is shown; PageHeader: when on search clip y-coordinates otherwise the background spills out when on search (LP: #1350398); Dash: Implement OverlayColor support in Cards; Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards; Make test_departments test more stable There's various DashDepartments on the dash, make sure we're working over the one that is on screen, otherwise clicks don't end up where they should; Work with the scopes-v4 branch + departments->navigation renamin. Fixes for dash as app Load i18n catalog Process command line options Add the posibility to have a mouse touch adaptor (LP: #1353351); Implement the Expandable Preview Widget Now TextSummary is not expandable by itself anymore, you have to use it inside an Expandable to get the behaviour; Add test prefix to xml output, seems CI needs it [ Antti Kaijanmäki ]; Indicators: Adds new ModemInfoItem to be used with indicator-network (LP: #1329204) [ Michael Terry ]; When the edge demo is running, don't show the greeter if the screen is turned off. This avoids an odd interaction where parts of the greeter are disabled but the edge demo isn't visible until you slide the greeter away. (LP: #1283425); Don't hardcode the phablet password in our testing script. [ Ying-Chun Liu ]; Add divider dots. [ Mirco Müller . Make sure the TextField of a snap-decision notification has the active focus upon creation, thus the osk shows up right away. (LP: #1346867) [ Andrea Cimitan ]; Add touchdown effect to dash cards.; Import Ubuntu.Components for preview image gallery to pick up default flicking speeds. (3823278a3) 2014-08-08 CI bot * Releasing 8.00+14.10.20140808-0ubuntu1 (e700c19d0) 2014-08-08 Nick Dedekind * Added application prompt surfaces to allow prompting application which have not yet created a surface. (9f5177ef9) 2014-08-08 Daniel d'Andrada * SpreadDelegate - properly transition between splash screen, surface and screenshot (95bae9bf7) 2014-08-08 Andrea Cimitan * Fix categories with attributes (980bb654a) 2014-08-08 Mirco Müller * Merged with trunk *sigh* (017d1e839) * Avoid using accessing notification in MenuItemFactory. (4a42a644a) * Force plain-text rendering for summary- and body-text. (b20118c5e) 2014-08-08 Albert Astals * hook up the search indicator (dc6cab952) 2014-08-08 Nick Dedekind * better mock logging (38eaad10c) * Fixed promptSurface over app splash (8a36dc495) 2014-08-08 Albert Astals * Merge (9a75be0a4) * Merge (4acdfb4e5) * Merge (41a8524fb) * Merge (26ea6ad60) * Merge (2f55286c7) * More update (df33ff820) * overview handle: opacity because of header pos, y because of opening (b799bef13) * Only use dashContent.pageHeaderTotallyVisible when there's no temp scope (2ce45f8b0) 2014-08-08 Andrea Cimitan * merged trunk (6a4d7f892) 2014-08-08 Albert Astals * enable drag handle only if overviewDragHandle.enabled (234045f76) * Dash overview handle (d393da8b3) * Use icon instead of own image (b8acc39f8) * "fake" dash should not be visible if we have a temp scope (583f40b67) * Make the goto store button work if store is a favorite (a84902347) * Merge ~aacid/unity8/seeLessStuckBottom (e9c7da07c) * Merge ~aacid/unity8/tablePreviewWidget (34fa939ba) * Merge lp:~aacid/unity8/scopeSearchHintText (5c5326bb6) 2014-08-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8705631a4) 2014-08-07 Florian Boucault * Support resolution independent images v2. (1958f059c) * Support resolution independent images. (3cabd4223) 2014-08-07 Stephen M. Webb * use unity8 upstart job for desktop, too (da21175c5) 2014-08-07 Florian Boucault * Reenable activity indicator that was disabled by mistake. (786e5680f) 2014-08-07 Diego Sarmentero * changing property name (919c5a4e8) 2014-08-07 Florian Boucault * Removed palettes copied over from toolkit. (f78c7f2ea) * Use data from desktop file. (8ba9096c9) * Added support for image. (29019df5c) 2014-08-07 Nick Dedekind * added prompt surfaces (e25bea4de) 2014-08-07 Diego Sarmentero * Adding processing signal (8a798c08e) 2014-08-07 Florian Boucault * Longer delay: fixes jumping for sudoku. (18886ff7b) 2014-08-07 Andrea Cimitan * [ Michal Hruby ]; Work with the scopes-v4 branch + departments->navigation renaming [ Michał Sawicz . Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards; Use the correct API in PageHeader. (LP: #1353048) * Refactor dash activity indicator. (LP: #1351539) [ Albert Astals ]; Dash Departments fixes Update maxHeight manually since it depends on the position of the item and its parents and it can't know when the binding has to be updated Make parent stuff non interactive when the department list is shown; PageHeader: when on search clip y-coordinates otherwise the background spills out when on search (LP: #1350398); Dash: Implement OverlayColor support in Cards; Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards; Make test_departments test more stable There's various DashDepartments on the dash, make sure we're working over the one that is on screen, otherwise clicks don't end up where they should; Work with the scopes-v4 branch + departments->navigation renamin. Fixes for dash as app Load i18n catalog Process command line options Add the posibility to have a mouse touch adaptor (LP: #1353351); Implement the Expandable Preview Widget Now TextSummary is not expandable by itself anymore, you have to use it inside an Expandable to get the behaviour; Add test prefix to xml output, seems CI needs it [ Antti Kaijanmäki ]; Indicators: Adds new ModemInfoItem to be used with indicator-network (LP: #1329204) [ Michael Terry ]; When the edge demo is running, don't show the greeter if the screen is turned off. This avoids an odd interaction where parts of the greeter are disabled but the edge demo isn't visible until you slide the greeter away. (LP: #1283425); Don't hardcode the phablet password in our testing script. [ Ying-Chun Liu ]; Add divider dots. [ Mirco Müller . Make sure the TextField of a snap-decision notification has the active focus upon creation, thus the osk shows up right away. (LP: #1346867) [ Andrea Cimitan ]; Add touchdown effect to dash cards.; Import Ubuntu.Components for preview image gallery to pick up default flicking speeds. [ Michael Zanetti ]; Split the dash from the shell into a separate app (LP: #1232687) [ Leo Arias . Update the autopilot tests to work with the new dash app. [ Daniel d'Andrada ]; Split the dash from the shell into a separate app (LP: #1232687) (e419120ea) * WIP - still need to fix AP tests, add tests for scope settings, try not-boolean settings (00bf0b3dd) 2014-08-07 Albert Astals * Merge (440b8d827) * Merge (a22961633) * Merge (076c4fd3f) * Merge (5009a76c3) 2014-08-07 Michael Terry * Merge from trunk (ecfeb6cae) * Merge from trunk (961298465) 2014-08-07 Albert Astals * Merge (f9129df28) 2014-08-07 Michael Terry * Merge from trunk (5acb4e1d8) 2014-08-07 Albert Astals * Merge (f764f77e1) * Merge (f7fdc089b) * Merge (b41a11c3c) * Merge (569149f04) 2014-08-07 CI bot * Resync trunk (d816a4604) 2014-08-07 Albert Astals * fix test (fe90e3105) * Take into account overlayLoader.item.luminance to decide header text color (31dfe654f) 2014-08-07 Florian Boucault * Added application fade in. (4c2500659) * Slide in animation a bit slower. (f4856bf3f) 2014-08-07 Albert Astals * search results viewer is always current (f77b912ce) * search results viewer is always current (d761feae3) * set scope active when overview is open (972b25d54) * set scope active when overview is open (5461d9e98) * bottom bar should be non opaque and taller (01772c7aa) * bottom bar should be non opaque and taller (c849a1fb6) * This background is one too many (9098417fd) * Adapt test (93a63d190) * fix expectation (6f38c4966) * Fix test expectations (8be3e43f5) * More merge issues (72f88c5fe) * Compile (67f6aa947) * Merge (141d91120) * Merge (546aeef5a) * Merge (f581fcaaa) * Merge (203e201f2) * Merge (bb4b2e552) * Merge (a7871ba5e) * Merge (fe016437d) * Merge (78b1fefec) * Merge (f0e1cfb9b) * Merge (576a2a28e) * Merge (04cafe3ba) * Merge (e029a91e4) * Merge (abbcda432) * Merge (268044f32) * Merge (b36e2bf56) * Merge (7f59c8574) * Merge (d05adb70a) * Merge (b250d968f) * Merge (b89b226fa) * Merge lp:~unity-api-team/unity8/modeminfo (7655ef1f1) * make sure the delegate is created (scroll to it) (2d7fbebd7) * scopes scope is not there by default anymore so use another one (f97593f53) 2014-08-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (558d014ae) 2014-08-06 Florian Boucault * Removed unreliable pause. (2d55943f0) * Position spinner properly. (a89dbbf17) * Make spinner visible. (a05788367) * Fix app flickering at end of startup. (af499b01a) * Added spinner. (cbc330b88) * Set a default theme (b7dbf262d) * Fix main view style (63c1bae94) * App launch: display real background and header when launching apps. (880c1f8c5) 2014-08-06 CI bot * Releasing 8.00+14.10.20140806.1-0ubuntu1 (49a46a22a) 2014-08-06 Albert Astals * Add test prefix to xml output, seems CI needs it (000d8bbd6) 2014-08-06 Michał Sawicz * Refactor dash activity indicator. Fixes: 1351539 (c853a12e9) 2014-08-06 Albert Astals * Implement the Expandable Preview Widget (4dcf40a91) * Fixes for dash as app (e9cd5c85e) 2014-08-06 Michal Hruby * Work with the scopes-v4 branch + departments->navigation renaming Approved by: Michał Sawicz, Michal Hruby (b0f3e58ea) 2014-08-06 Michael Terry * Don't hardcode the phablet password in our testing script. Approved by: Michał Sawicz (04ecfd838) 2014-08-06 Albert Astals * Make test_departments test more stable (297c5ac0f) 2014-08-06 Michał Sawicz * Use the correct API in PageHeader. Fixes: 1353048 Approved by: Andrea Cimitan, PS Jenkins bot, Tim Peeters (7d27ba77c) * Hardcode art shape size for click scope local and predefined categories (4aee55348) 2014-08-06 Andrea Cimitan * Import Ubuntu.Components for preview image gallery to pick up default flicking speeds. Approved by: Michael Terry (94734625d) 2014-08-06 Albert Astals * Dash: Implement OverlayColor support in Cards Approved by: Michael Terry (c316d84a0) 2014-08-06 Andrea Cimitan * Add touchdown effect to dash cards. Approved by: Ying-Chun Liu (c3d22631b) 2014-08-06 Albert Astals * PageHeader: when on search clip y-coordinates otherwise the background spills out when on search Fixes: 1350398 Approved by: Michael Terry (c35c29010) 2014-08-06 Ying-Chun Liu * Add divider dots. Approved by: Michał Sawicz (dbb2769c6) 2014-08-06 Albert Astals * Dash Departments fixes (68abd8eaa) 2014-08-06 Michael Terry * When the edge demo is running, don't show the greeter if the screen is turned off. This avoids an odd interaction where parts of the greeter are disabled but the edge demo isn't visible until you slide the greeter away. Fixes: 1283425 Approved by: Albert Astals Cid (e15d89bbb) 2014-08-06 Mirco Müller * Make sure the TextField of a snap-decision notification has the active focus upon creation, thus the osk shows up right away. Fixes: 1346867 Approved by: Michael Terry (853c96e43) 2014-08-06 Antti Kaijanmäki * Indicators: Adds new ModemInfoItem to be used with indicator-network Fixes: 1329204 Approved by: PS Jenkins bot, Nick Dedekind (9ff253f81) 2014-08-06 Albert Astals * Move the declaration of Ubuntu.Thumbnailer 0.1 to the application root file (9fc837e27) 2014-08-06 Michael Terry * Fix autopilot tests (0b55bb98c) * Fix mocks to use same prompt string as PAM (505c90ecc) * Update pot file (f4381a6a2) 2014-08-06 Michał Sawicz * Merge lp:~unity-team/unity8/scopes-v4 (737e6c060) 2014-08-06 Albert Astals * Merge lp:~mterry/unity8/dash-app-demo-fixes (3b5087a34) 2014-08-06 Michael Terry * Fix some additional issues with the demo after the removal of the dash (d55fc741a) 2014-08-06 Ying-Chun Liu * non-interactive on GenericScopeView (99febfcc0) 2014-08-06 Michael Terry * Merge from dash-app-fixes (9f3bb4b2a) 2014-08-06 Albert Astals * Merge (97b8e3ee6) * Merge (ec07a7419) * Bring the dash background from the shell to the dash (11e593cf2) 2014-08-06 Michael Terry * Merge from dash-app-fixes (f80968c67) 2014-08-06 Albert Astals * We changed the formula (1a8074f0c) 2014-08-06 Mirco Müller * Argl! (d9d628968) * Made code a bit tighter. (74b95f1b1) * Merged with trunk (cde21f205) 2014-08-06 Michał Sawicz * Fix search emulator. (b65012191) 2014-08-06 Albert Astals * drop -testability support (fefbcf07a) * Fixme as requested by Saviq (fd324184f) * drop Test suffix (98d992376) * More updates (d2cf1f9ce) * Add test prefix to xml output, seems CI needs it (32e07ec5f) * New need implementation (bc4c335b4) * more renaming (a83e249e2) * Fix merge/tests (f4220c919) * there's a see less button now (ac97f3bba) * Merge unstable departments test (aeeab82a8) * Merge dashSepartmentsListTweaks (e9c4786a9) * Merge dashSepartmentsListTweaks (6bcf96392) * Dummy implement refresh() (a225cb12a) * If the scope changes, floatingseeless is obviously companion to noone (d9e40a45a) * Wait for the button to stop moving before clicking on it (985e77dab) * Fixlets (4103ec350) * Build (8c94e7469) * Fixes for dash as app (f60bab34e) * Merge (6a5d6f15c) * Merge (2657ebef1) * I did not want to remove this (f1bd6264d) * Add an option for desktop_file_hint since the upstart file is using it (49acd7667) * Don't remember why this is here, remove (ded80f459) 2014-08-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4b6a6fb66) 2014-08-06 Michał Sawicz * Merge lp:~cimi/unity8/card_touchdown_2. (b3cfec77d) 2014-08-05 Michał Sawicz * Use correct PageHeader colour API. (f16d76ee1) * Merge. (0470a26c9) 2014-08-05 Michael Terry * Merge from no-lock-during-demo (aafc6d88f) * Merge from trunk (1d4c112c9) * Merge from trunk (543d4efa5) 2014-08-05 Albert Astals * Merge (f3347f9e1) * Merge (54352ed0c) * Merge (671bc5487) * Merge (480886466) * Merge (7af98afb3) * Merge (7ae937992) * Merge (1afdfa39e) * Merge (556ecaea4) * pot_file (4ca9ffe8e) * Merge (cd66f6fcd) * Merge (b5afe1cfd) * Merge (bb43e01fa) * Merge (5b5d46b85) * Merge (49f0a4350) * Merge lp:~canonical-platform-qa/unity8/dash-as-app-autopilot (f8a464505) * Merge lp:~unity-team/unity8/dash-as-app (6743bb37f) 2014-08-05 Michael Terry * Use a Binding instead of a Connection for lights (91f7a026e) 2014-08-05 Albert Astals * Make the stuck "see less" by pushed by the collapsed height of the baseItem it is companion of (ec520e2ee) 2014-08-05 CI bot * Releasing 8.00+14.10.20140805-0ubuntu1 (8e45b88c6) 2014-08-05 Leo Arias * Update the autopilot tests to work with the new dash app. Approved by: Michał Sawicz (af3058bc1) 2014-08-05 Michael Zanetti * Split the dash from the shell into a separate app Fixes: 1232687, 1236280, 1326120, 1333261, 1336953 Approved by: Daniel d'Andrada (f979647f1) 2014-08-05 Daniel d'Andrada * Update DashCommunicator mock plugin (6836fabbd) 2014-08-05 Albert Astals * Make "See Less" get stuck at the bottom of the view (f4183c198) 2014-08-05 Daniel d'Andrada * Merge trunk (ce4ccaaf2) 2014-08-05 Mirco Müller * Fix the top-margin for synchronous notifications. (037163908) 2014-08-05 Albert Astals * Less empty space (811763af9) 2014-08-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a1c2c285c) 2014-08-04 Mirco Müller * Merge with trunk (5970c90fc) 2014-08-04 Michael Terry * Merge from trunk (07147a1ef) * Merge from trunk (cffb1bea6) 2014-08-04 Leo Arias * Only check for the start part of the status, as suggested by saviq. (4843223a1) * Fixed grammar erro. (871990606) * Fixed typo. (ca6a86e63) * Fixed typo. (aba4fbd8f) * Remove unused import. (94b17caff) 2014-08-04 Albert Astals * Merge (3d20f5f5f) * Adapt to API changes (72c5da96f) * Fix test (05cc690ab) * need new api-dev (01fdd16e8) * require the newer scopes plugin (101b5a9fc) * Merge (91ac4026a) * Fix scope tool (8f21a654f) * Support Alt Navigation (713e43014) 2014-08-04 Michael Terry * Fix whitespace (00082ac1a) * Merge from trunk (07eaa845e) * Merge from trunk (1ce88f85b) 2014-08-04 Albert Astals * Alt Navigation implementation (a3af6755e) * Update here too (237eb7d25) 2014-08-04 Andrea Cimitan * Import Ubuntu.Components for preview image gallery (b8e344fbd) 2014-08-04 Albert Astals * more department -> navigation renaming (60661e3f5) * Make test_departments test more stable (28e09bcd3) * some renaming departments -> navigation (30fc4421f) 2014-08-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7577e0d62) 2014-08-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3ee585c7b) 2014-08-01 Nick Dedekind * Added default Header Components. Used in indicators. (c7da358d7) 2014-08-01 Albert Astals * Make the mock compile (3f644ceb9) 2014-08-01 Andrea Cimitan * Merge (45b4359e7) * [ Gerry Boland ]; Fix the run.sh script - pretend to be running with qtmir and emit SIGSTOP at the right time [ Ying-Chun Liu ]; Implement Attribute UI. (LP: #1282460) [ Albert Astals ]; Hide search history popup as soon as you start typing As discussed with Mike and Saviq; Compile with for scopes-v3 unity-api; PageHeader: Unfocus search field when search entry is selected; Show search field if the search query changes; Test: Add a condition for art.height being > 0 means stuff has already been layouted a bit without it it can happen that we get 0 for everything at startup and tests still pass; Remove leftover in test of an old headerless implementation [ Michael Zanetti ]; Drop Recent apps category from Dash (LP: #1281092); update launcher count emblems to match new spec (LP: #1338984) [ Bill Filler ]; disable predictive text for dash search field (LP: #1340409) [ CI bot ]; Resync trunk [ Antti Kaijanmäki . DefaultIndicatorPage: use Loader status to determine the visible property. (LP: #1350555) (a223069ac) 2014-08-01 Michael Terry * Handle translated PAM prompts (2d0ed8ea5) 2014-08-01 Andrea Cimitan * [ Gerry Boland ]; Fix the run.sh script - pretend to be running with qtmir and emit SIGSTOP at the right time [ Ying-Chun Liu ]; Implement Attribute UI. (LP: #1282460) [ Albert Astals ]; Hide search history popup as soon as you start typing As discussed with Mike and Saviq; Compile with for scopes-v3 unity-api; PageHeader: Unfocus search field when search entry is selected; Show search field if the search query changes; Test: Add a condition for art.height being > 0 means stuff has already been layouted a bit without it it can happen that we get 0 for everything at startup and tests still pass; Remove leftover in test of an old headerless implementation [ Michael Zanetti ]; Drop Recent apps category from Dash (LP: #1281092); update launcher count emblems to match new spec (LP: #1338984) [ Bill Filler ]; disable predictive text for dash search field (LP: #1340409) [ CI bot ]; Resync trunk [ Antti Kaijanmäki . DefaultIndicatorPage: use Loader status to determine the visible property. (LP: #1350555) (fd3ab19db) 2014-08-01 Ying-Chun Liu * Merge trunk (d702f12bc) 2014-08-01 Michael Terry * Switch to 7 attempts, 5 min lockout (55e5ca723) 2014-08-01 Andrea Cimitan * More fixes (5f9d05ab9) 2014-08-01 Ying-Chun Liu * rename png (d45d3e81c) 2014-08-01 Michael Terry * minor cleanup (89855da32) * Fix qml tests (9c4144c2f) 2014-08-01 Albert Astals * Merge (fa03a3903) * collapsed went from 7 to 3 so make short shorter (ad2236ffe) * Typo merge (76bf20e8d) 2014-08-01 Michael Terry * Improve readability (482b6d2cc) * Merge from trunk (42d1f8e80) * If we trash the lockscreen, reset some variables (59c176422) * Show a spinner while waiting for PAM, clean up wrong-password text handling (d73fdc539) 2014-08-01 Ying-Chun Liu * merge trunk (7d4df8f9d) 2014-08-01 Albert Astals * Merge (b9916d325) * Merge (22ed98531) * extra spaces (b0288431f) * Merge (9bb49bff5) * Merge (053bf79b1) * Merge (b375cf55f) * Merge (94634140e) * Merge (bee777f90) * Merge (ceea1fd7e) * merge (ad51f4c9c) * Pass the test (abbd3f9ef) * Merge again (96aac5175) * Merge (e3cbeffe9) 2014-08-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ee994e5cd) 2014-07-31 Leo Arias * Merged with prerequisite. (b29be15dc) * Removed tags. (62fce76ed) * Removed extra space. (b6cf14e71) * Merged with trunk. (265c37d78) 2014-07-31 Nick Dedekind * added copywrite (0a7551009) * requires 0.4 from ubuntu-settings-components (3a0a8f369) 2014-07-31 CI bot * Releasing 8.00+14.10.20140731.1-0ubuntu1 (c3a03b5cb) 2014-07-31 Antti Kaijanmäki * DefaultIndicatorPage: use Loader status to determine the visible property. Fixes: 1350555 Approved by: Nick Dedekind (fb792f21c) 2014-07-31 Gerry Boland * Fix the run.sh script - pretend to be running with qtmir and emit SIGSTOP at the right time Approved by: Michał Sawicz, Albert Astals Cid (eec88de69) 2014-07-31 Albert Astals * Remove leftover in test of an old headerless implementation Approved by: Michael Zanetti (6dbd96583) 2014-07-31 Bill Filler * disable predictive text for dash search field Fixes: 1340409 Approved by: Michał Sawicz, PS Jenkins bot (f156d7d7f) 2014-07-31 Ying-Chun Liu * Implement Attribute UI. Fixes: 1282460, 1350741 Approved by: PS Jenkins bot, Albert Astals Cid (f3397ec15) 2014-07-31 Michael Zanetti * update launcher count emblems to match new spec Fixes: 1338984 Approved by: Andrea Cimitan, PS Jenkins bot, Vesa Rautiainen (91ebb8c0b) 2014-07-31 Albert Astals * Test: Add a condition for art.height being > 0 (2b647b88d) * Show search field if the search query changes Approved by: Michael Zanetti, PS Jenkins bot (17d41c06f) 2014-07-31 Michael Zanetti * Drop Recent apps category from Dash Fixes: 1281092, 1308206, 1324081, 1341770 Approved by: Albert Astals Cid (77e7f7c55) 2014-07-31 Albert Astals * PageHeader: Unfocus search field when search entry is selected Approved by: Michael Zanetti (687e62f6d) * Compile with for scopes-v3 unity-api (67ccd14fe) * Hide search history popup as soon as you start typing (86ca5e7d3) 2014-07-31 Michael Terry * Don't crash because we blocked a method from returning while deleting qml objects; instead just delay signal emission (3ddfbee20) * Support locking user out for five seconds after five failed entries (551a66199) 2014-07-31 Andrea Cimitan * Added test (5b01732db) 2014-07-31 Albert Astals * Merge (f9fa623d7) 2014-07-31 Michael Terry * fix run.sh (af704d73c) 2014-07-31 Ying-Chun Liu * Merge trunk (70c8527e8) 2014-07-31 Andrea Cimitan * Fixed test (7df452218) 2014-07-31 Leo Arias * Pass the testability as an argument. (9307e2e24) 2014-07-31 Andrea Cimitan * Fixed tests (ba394b625) 2014-07-31 Albert Astals * Convert the overrides to functions as Nick suggested (f9ea8739e) 2014-07-31 Ying-Chun Liu * Rename dividerDots* to pagination*. Remove some unused id. (a8d7f84cc) 2014-07-31 Michael Terry * Simulate PAM delay when manually testing lockscreen (e12dc3d43) 2014-07-31 Albert Astals * Small catches from review (c43d2e3b9) 2014-07-31 Andrea Cimitan * [ Michael Terry ]; Check user's pin/password using PAM, instead of a plaintext keyfile. New build dependency: libpam0g-dev for phone unlock with PAM (LP: #1234983) [ Gerry Boland ] [ Daniel d'Andrada ]; Re-architecture unity8 to use the QtMirCompositor library so that the Qt scenegraph renderer is used as the Mir compositor, and application surfaces are added to the QML scene as items. (3cdb6bcb3) * Indent (4d1dc8cb2) * Indent (4ed8f1d96) * Tests code (c998957bf) * Indent (6400b0c5e) * Readd line (a89e49cc0) 2014-07-31 Antti Kaijanmäki * review adjustments (ea5a5277c) 2014-07-31 Andrea Cimitan * Conflicts solved (2f50de287) 2014-07-31 Nick Dedekind * merged with trunk (444e2daf3) 2014-07-31 Andrea Cimitan * Merge attribute branch and add improved tests (5c246d47b) 2014-07-31 Michael Terry * Show correct placeholder text, add wrong-password placeholder text, and keep it showing until next entry (ed919eb7c) * Merge in greeter-misc-cleanups (450393f99) * Disable factory-resetting by default (35dd14655) 2014-07-31 Mirco Müller * Initial implementation of synchronous (aka confirmation) notification support. (4920ee184) 2014-07-31 Michael Terry * Merge from trunk (e91c1ea92) 2014-07-31 Andrea Cimitan * [ Michael Terry ]; Check user's pin/password using PAM, instead of a plaintext keyfile. New build dependency: libpam0g-dev for phone unlock with PAM (LP: #1234983) [ Gerry Boland ] [ Daniel d'Andrada ]; Re-architecture unity8 to use the QtMirCompositor library so that the Qt scenegraph renderer is used as the Mir compositor, and application surfaces are added to the QML scene as items. (e66749c45) 2014-07-31 Gerry Boland * Unrevert the revert (65c027292) 2014-07-31 Albert Astals * Merge lp:~paulliu/unity8/attribute (69c5ec493) 2014-07-31 Gerry Boland * AP test to ensure sigstop emitted (36a2dc46e) 2014-07-31 Albert Astals * require new scopes impl (b5ad1a015) * Have a table here too (913477afc) * Merge (9ce6b9915) * Merge (4e6d96571) * Merge (2288f2442) * Merge (a8a3231d9) * Table Preview Widget (b5a954353) * Fixlets (2a6469e4b) 2014-07-31 Michael Terry * Remove unnecessary guard before teasing (648d29a36) * Use authenticated instead of promptless (bc8fc382b) * Merge from trunk (2cf87ffe4) 2014-07-31 Gerry Boland * Make slightly less readable - revert 1093 - AP bug to unset env vars actually sets them to empty strings (6ed8935bb) 2014-07-31 Ying-Chun Liu * Don't show dialog when display power is off (e9218115d) * merge trunk (a6c2fba44) 2014-07-31 Albert Astals * Add ; (7c4d4e239) * Make this totally harder to read by splitting in two lines as requested on the review (9a466671c) * Some people have ridiculously narrow screens and make me lose vertical space (5c02145ff) * Split into two lines (6f0aef815) 2014-07-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (277cf56ad) 2014-07-30 Leo Arias * Updated the lifecycle tests. (3b5e99ceb) * Removed unused helper. (2d35be9ab) * Hide unity7 launcher. (7c313b1ea) * Make sure that unity is running and the dash is not. (5ee1d2fbf) * Fixed the error reporting. (d63d4fe4b) 2014-07-31 Antti Kaijanmäki * merge trunk. (f33684ae1) 2014-07-30 Leo Arias * Removed the unused function. (fbdd4fb43) 2014-07-31 Antti Kaijanmäki * don't explicitly hide the indicator anymore. (af5dbc4af) 2014-07-30 Leo Arias * Updated the upstart tests. (73ad03613) 2014-07-30 Antti Kaijanmäki * DefaultIndicatorPage: use Loader status to determine the visible property. (f2c1dd127) * revised modem info item. (3614d990d) 2014-07-30 Leo Arias * Updated the test search. (eb8963fec) * Updated the wait for unity. (e9e03f995) * Updated the notifications tests. (23211efc3) * Update the screenlock autopilot tests. (279709331) * Merged with the prerequisite branch to be able to launch unity. (55642cb11) 2014-07-30 Michal Hruby * Fix departments to work with scopes interface v4 (ff2b71345) 2014-07-30 CI bot * Resync trunk (33f90270c) 2014-07-30 Nick Dedekind * Fixed tests (e1221156d) * removed indicator artwork (5981d57d7) 2014-07-30 Michał Sawicz * Fix review comments. (daf3632c3) 2014-07-30 Albert Astals * We need to clip when on search y-coordinates otherwise the background spills out when on search (411791e4a) * Add missing file (65752c172) * Merge (30ef8bad6) * Implement the Expandable Preview Widget (2756788ac) 2014-07-30 Michał Sawicz * Merge trunk. (267d7a247) 2014-07-30 Albert Astals * Use a ShaderEffectSource instead of changing Dash parent (f2fbd5d50) 2014-07-30 Ying-Chun Liu * Fix Power off dialog show on display state change. Add buttons color for power off dialog. (8dc6b19d9) 2014-07-30 Andrea Cimitan * Moving towards unique container (43115d608) 2014-07-30 Michael Terry * Perform a factory reset after 10 failed logins; warn user at 9 (359b3d68c) 2014-07-30 Gerry Boland * Make slightly more readable (b31e023af) * Use csignal instead of signal.h (85069027f) * Fix the run.sh script - pretend to be running with qtmir and emit SIGSTOP at the right time (ddb4aaf11) 2014-07-30 Albert Astals * Fix issue with the first time fading in to favorites not working (070750218) 2014-07-30 Michael Terry * Merge from no-lock-during-demo (ac27ca739) * Merge from trunk (e3a1d2d05) * Merge from trunk (7235aa8d9) 2014-07-30 Antti Kaijanmäki * merge trunk. (1ddcc7d4a) 2014-07-30 Albert Astals * Merge (08bf9db53) * Merge (b6f2f5a4a) * Merge (0f0695ea3) * Merge (91c686ac9) * Merge (442cbda4f) * Merge (f79c541e9) * Merge (45e4d3e81) * Merge (ef175d5fd) * Merge (c45a80101) * Merge (eb370f61f) * Merge (dbe1eb82d) * Fix merge (192035d03) * Merge (5721f9b12) * Merge (620b2f82e) * Merge (cc82c22a9) * Merge unity8 (fd17326f3) 2014-07-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (25459c274) 2014-07-29 CI bot * Releasing 8.00+14.10.20140729.1-0ubuntu1 (d50f72ddb) 2014-07-29 Michael Terry * Check user's pin/password using PAM, instead of a plaintext keyfile. (a43676b56) 2014-07-29 Leo Arias * Updated the dash tests to work with the dash app. (8eb7df6ab) 2014-07-29 Nick Dedekind * use transfer-non (846bd5c25) 2014-07-29 Michał Sawicz * Undo divider changes. (00b48754b) * Newline-- (c04546cae) * Re-add newline. (4edc9d0d5) 2014-07-29 Michael Terry * Clean up accountsservice property definitions (27f79e87d) 2014-07-29 Michał Sawicz * Drop departments id, unused. (f90d27970) * Add one more step to verify that indicator goes away. (80e23df56) 2014-07-29 Albert Astals * Fix typo (c827ba622) 2014-07-29 Michał Sawicz * Fix GenericScopeView test. (d2a839d3a) * Use animators instead. (148f6b042) 2014-07-29 Michael Terry * Avoid warning on null item (60a56f671) * Fix some usages of 'promptless' that should be 'authenticated' (f6364f76f) 2014-07-29 Michael Zanetti * make use if isDash, now that we have it (873e6a495) 2014-07-29 Ying-Chun Liu * Add divider dots. (9f6a37d59) 2014-07-29 Michael Zanetti * fix greeter hiding direction on left edge swipe (4a06b1480) 2014-07-29 CI bot * Releasing 8.00+14.10.20140729-0ubuntu1 (87162092a) 2014-07-29 Gerry Boland * changes for Qtcompositor as a plugin to mir Fixes: 1090358, 1181332, 1210199, 1212637, 1232684, 1275808, 1313842, 1323850, 1324081, 1337908, 1337930, 1340189, 1342705, 1342768, 1344082, 1346330, 1347919, 1348686 Approved by: Michael Terry, Michael Zanetti, Vesa Rautiainen, Gerry Boland (e753dcb33) 2014-07-29 Nick Dedekind * more visual tweaks (f6749ed4e) 2014-07-29 Michael Zanetti * add missing copyright header (429063c20) 2014-07-29 Michał Sawicz * Add test for the processing indicator. (b9a61ed1e) 2014-07-29 Gerry Boland * Fix the power down dialog (3553bf0ca) 2014-07-29 Michael Zanetti * switch back to phone mode (75eea9ad6) 2014-07-29 Andrea Cimitan * Fix emblem code and padding (4984c8538) 2014-07-29 Michael Terry * When changing infographics data source, don't animate dots, instead just morph circles to right size and color (333a70d4b) 2014-07-29 Michael Zanetti * s/isActive/active/ as per review nitpicks :D (365fd9e09) 2014-07-29 Albert Astals * More stable tests (f2f422707) * Remove this, it was part of an old headerless implementation effort (aa7811136) 2014-07-29 Michael Zanetti * added comments for isActive (088b2c786) * fix hiding greeter with left edge swipe (946356892) * fix broken focusRequested for apps already focused with MockAppManager (42f733879) * dash is now an app (a20be0147) 2014-07-29 Albert Astals * Merge lp:~aacid/unity8/scopeActivatePreview (4b76dda98) 2014-07-29 Michał Sawicz * Add the processing indicator. (933920943) 2014-07-29 Albert Astals * Merge dash_overview (b20f7f392) * Merge lp:~aacid/unity8/showSearchOnSearchQueryChange (47c81d130) 2014-07-29 Michał Sawicz * Merge trunk. (84064e5cc) 2014-07-29 Albert Astals * Merge lp:~aacid/unity8/compile-scopes-v3 (de6a11d7a) 2014-07-29 Andrea Cimitan * Merged better test branch (fdf1d130a) * First work for the emblem (3f3ad6fa8) 2014-07-29 Michael Terry * Keep greeter content in memory for a quick show() call when cancelling on the lockscreen (c4fc210c4) 2014-07-29 Michael Zanetti * add fixme (2c2b83822) * some tweaks requested by the reviewer (586aa902f) 2014-07-29 Michael Terry * Don't let a reverse-swipe hide the greeter unless the user has really committed to it (ee72f927e) 2014-07-29 Albert Astals * Bring todo back (7e35ec74b) * We still need the clickscope hack it seems (9074453b3) 2014-07-29 Michael Terry * If you show the greeter, have it remember which side it hid into (154fc8fe8) 2014-07-29 Albert Astals * Only activate scope:// uris, the rest is previewed (5bcdb5db8) * pressAndHold has only 1 param in DashREnderer (7b9aa34b0) * Somehow this code ended up repeated, remove (a9041e4e1) 2014-07-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d6e0fa4d4) 2014-07-28 Michael Terry * Don't hardcode a user password in our scripts (99b2604f7) * Disable launcher and panel when locked (a042b062d) 2014-07-28 Michael Zanetti * merge prereq (451cbdb41) * merge trunk (00721e6d1) 2014-07-28 Albert Astals * spacing (c3a5eef01) * We don't support fill-mode anymore (03a7fa7e0) * Fix creator expected code (178aa7d8b) * Fix art shape size for click scope local and predefined categories (af0c04c3c) 2014-07-28 Michael Terry * Allow passing --lightdm-demo (44914c0e8) 2014-07-28 Michael Zanetti * merge prereq (717e63089) * fix whitespace (956cc1f4c) * merge prereq (5052bdee9) * hide indicators on focus change (cada2deec) 2014-07-28 Ying-Chun Liu * Remove the TODO line. (68971ec10) 2014-07-28 Michael Terry * Merge in locking-hash (be06bf0db) 2014-07-28 Albert Astals * Merge (642506ade) 2014-07-28 Ying-Chun Liu * Fix Reference error on summary. (231fadb7c) 2014-07-28 Albert Astals * And a test (96ecb947e) * Just show search, don't focus the textfield (10d80ad08) * Merge lp:~aacid/unity8/unfocusSearchEntryOnHistoryPick (9e848c131) * Show search if the search changes behind our feet (9a58b2334) * Add a condition for art.height not being 0 (b332752be) * Merge (f77f486db) * Merge (44313cc06) * merge (b3bb7d653) 2014-07-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bb8300336) 2014-07-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d390f0d60) 2014-07-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (33cecd33e) 2014-07-25 Nick Dedekind * removed indicator tabs (07ec39e1a) * Various changes for Indicator UI polishing (6af3cbe65) 2014-07-26 Ying-Chun Liu * Merge trunk. (f9a51e017) * test cardData. (e6c322ab2) 2014-07-25 Mirco Müller * Fix margin for collapsed snap-decision notifications. (400158a91) 2014-07-25 Ying-Chun Liu * Add max-count for attributes (fefea98b3) 2014-07-25 Albert Astals * Merge (e51581117) * Merge (ff61dbf2b) * Merge (9d19f588c) * Merge (004db151a) * Merge (e2f35779a) * Merge (ded28597a) 2014-07-25 Andrea Cimitan * Removed commented code (f8802b88f) * Better test for cardcreator, line by line (eb6a5ed2c) * Add touchdown (5d9030b81) 2014-07-25 Albert Astals * Check the searchhint travels up correcly through the layers (8d34c637c) 2014-07-25 Michael Terry * Merge from trunk (3955a4b26) 2014-07-25 Albert Astals * higher unity-apo (b0cd21adf) * Compile with for scopes-v3 unity-api (42ab0d1f8) * We are vertical flickable (59e84f4c4) * Departments fixes (4865ffce0) 2014-07-25 Michael Zanetti * merge prereq (a04f210fe) 2014-07-25 Michał Sawicz * Merge trunk. (16d0d2277) 2014-07-25 Mirco Müller * Implemented special 1over2 buttons layout-case in snap-decisions for design-requirement of e.g. event-reminder notification. (2a3e96c49) 2014-07-25 Michael Zanetti * merge trunk (b255cef96) 2014-07-25 Albert Astals * Pass the scope search hint up to the search line (0f2d87214) * Merge (89298c7df) * Merge (30695faeb) * Merge (6c6678cbb) 2014-07-25 CI bot * Releasing 7.90+14.10.20140725-0ubuntu1 (31927c688) 2014-07-25 Michał Sawicz * Fix the ap test for applications. Approved by: Albert Astals Cid (254304c44) 2014-07-25 Albert Astals * Use deleteLater instead of a direct delete (c1f6f41fb) * Merge (af2f0bb8a) 2014-07-25 Mirco Müller * code tweaks (7a9d7e0c4) 2014-07-25 CI bot * Resync trunk (3d1d3f01e) 2014-07-25 Ying-Chun Liu * Fix CardTool to generate attributes dynamically. (173de1649) 2014-07-25 Michał Sawicz * Fix the ap test for applications. (aec25517f) 2014-07-25 Albert Astals * Use deleteLater instead of a direct delete (62fd37c5d) 2014-07-25 Mirco Müller * Changed the way an icon-summary layout is created, due to the position-change of the secondary icon which was used before. (fab9bd981) 2014-07-25 Albert Astals * Height actually needs to be parent and not root (5642d8ce9) 2014-07-25 Ying-Chun Liu * test 5 attributes. (d8825a4c3) 2014-07-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a533a46bd) 2014-07-25 Michael Zanetti * oops. drop method declaration too (e07a724f4) * merge prereq (90c55dcec) * rewrite some excessive c++11 to good old readable and compilable C++99 (dc524c433) * drop all the unity-mir style code in MockApplicationManager. (f7f70638b) * update PhoneStage tests to deal with the dash app always being there (5fa08c1fc) * drop unused slot (552e71963) * fix fullscreen, stabilize tests (aad693fd6) * merge prereq (6049d1fc7) * merge prereq (964e899d9) * fix testActiveCallHint (c79decf67) * use opacity: 0 instead of visible: false to not mess with scope loading (53d91f177) * fixed launcher tests (27d0ebc34) 2014-07-24 Michael Zanetti * fix testPhoneStage (4b3924685) 2014-07-24 CI bot * Releasing 7.90+14.10.20140724.1-0ubuntu1 (e696f8c93) 2014-07-24 Michael Zanetti * properly parent launcher items Fixes: 1347902 Approved by: Michael Terry (16fd347e3) 2014-07-24 Michał Sawicz * Add dash PageHeader styling. (0df783e9f) * Add support for header links. Approved by: Albert Astals Cid (3a31c3c2d) * Make headerless categories easier (815f50e1c) * Fix expect-sigstop enviroment variable name. Fixes: 1346819 Approved by: Leo Arias, PS Jenkins bot, Albert Astals Cid (1d7c1a32a) * Move expansion button from section header to category footer. Fixes: 1261300 Approved by: Michal Hruby, Albert Astals Cid (6097094d2) * Drop FilterGrid and refactor height animations in GenericScopeView. (c7c13ef4d) * Move the PyDev project files to the root, supporting .py scripts outside of tests/autopilot. Add Autopilot Run and List launch configurations to easily support debugging in Eclipse. Use add_unity8_mock macro in the Telephony plugin. (e92c697dc) 2014-07-24 Michael Zanetti * update tst_Shell (cd69592d3) * merge prereq (4a9697b58) * merge prereq (2c8d695dd) 2014-07-24 Nick Dedekind * Added support for prompt sessions (b188a8acc) 2014-07-24 Daniel d'Andrada * Shell.qml: remove the now unused module import (e9c1fc996) 2014-07-24 Mirco Müller * Made the separator/divider line go across the whole width of a snap-decision notification... and fixed all layouts that got broken in the progress. (844d23687) 2014-07-24 Daniel d'Andrada * Refactor dialogs and fix their Z values (2f0328909) 2014-07-24 Albert Astals * Add a test for click -> sets text and unfocus (021001da7) * Merge lp:~aacid/unity8/search_suggestion_disappear_typing (67d825662) 2014-07-24 Bill Filler * disable predictive text on search field (21b181b86) 2014-07-24 Albert Astals * Unfocus when selecting a history result (47a084d7e) 2014-07-24 Michael Zanetti * do some cleanup (e94063fee) * add a plugin for IPC comunication between Shell and Dash (5693d1a32) 2014-07-24 Albert Astals * Implement overlayColor support (de2b9e777) 2014-07-24 Ying-Chun Liu * Revert workarounds. Add maxData for attributes to CardTool. (13581a669) 2014-07-24 Michał Sawicz * Merge see-all-expansion. (3132c962a) * Merge see-all-expansion. (1454af203) * Merge drop-filtergrid. (b334d19fd) * Fix autopilot test. (ea243515f) 2014-07-24 Mirco Müller * Updated the button colors for snap-decision notifications based on feedback from design. (26536c5a4) 2014-07-24 Ying-Chun Liu * Fix GridLayout height sometimes 0. (4a9c7329b) 2014-07-24 Michael Terry * Merge from trunk (6381ad90f) * Merge from no-lock-during-demo (d07736cc5) * Merge from trunk (175e56e1f) 2014-07-24 Michael Zanetti * merge prereq (2295f15fe) * merge prereq (9f383e6e3) 2014-07-24 Albert Astals * Hide search history popup as soon as you start typing (78ed3cef6) 2014-07-24 Michał Sawicz * Merge see-all-expansion. (ece3c11de) * Fix emulator. (a7e264e37) * Move the activity indicator to bottom of GenericScopeView. (b3f248d2a) * Move luminance to root of ScopeStyle. (e125e587c) 2014-07-24 Ying-Chun Liu * Fix height again. (27aabf64c) 2014-07-24 Michael Zanetti * merge trunk (7fc36d650) * merge prereq (5e3a45c3c) * don't add the dash-app to the launcher (5a00e00ea) * merge prereq (463e32267) 2014-07-24 Ying-Chun Liu * Fix implicitHeight. Update *.res (dc1317809) 2014-07-24 Mirco Müller * Changed layout of secondary icon, changed tint of modal background, changed snap-decision background, changed text-colors, use new button-tint-hints, added separator. (23bf7a18b) 2014-07-24 Albert Astals * Merge (b6164c9c5) * Don't show the scopes scope, it's conflicting with the dash overview (0680e6a16) 2014-07-24 Michael Zanetti * make the dash home button work again (44c8a8528) 2014-07-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b6247b445) 2014-07-24 Michael Zanetti * properly parent launcher items (c885b8859) 2014-07-23 Daniel d'Andrada * Make the application lose focus while the panel is open. (5a052049f) 2014-07-23 Michał Sawicz * Merge see-all-expansion. (67b140d2e) 2014-07-23 Michael Terry * Instead of looking at proximity sensor to determine if we are in a call, use callManager (ccf5695d9) 2014-07-23 Michael Zanetti * don't allow closing the dash in spread (f7f4d98bc) 2014-07-23 Daniel d'Andrada * Add Shell.test_showInputMethod() (a79fd1ef5) * Remove useless code from InputMethod.qml (4c6eeb36b) * Shell.qml: fix underlay.fullyCovered property. (dda685bea) 2014-07-23 Michael Terry * Do not lock phone when greeter is running (9ac716500) 2014-07-23 Daniel d'Andrada * Fix and improve qmluitest Shell.test_focusRequestedHidesGreeter (d5b39dc62) * Update qmluitest Shell::test_DashShown(under indicators) (9a66aaca1) * Remove obsolete and unused code from ApplicationManager mock (f5e85fe6b) * Unity.Application mock: Implement ApplicationManager.empty property (6c2f60e08) 2014-07-23 Michael Zanetti * make the dash app start with upstart (c33e7339e) 2014-07-23 Albert Astals * Dark background for the overview (2c996e97d) 2014-07-24 Ying-Chun Liu * Add color. Fix rightMargin. (c5dd30852) 2014-07-23 Albert Astals * App store button (18fa1c122) 2014-07-23 CI bot * Releasing 7.90+14.10.20140723.4-0ubuntu1 (c090c2f2a) 2014-07-23 thomas-voss * Explicitly select gcc version. (7cf12246f) * Remove adjustments to cmake invocation. (2e5482328) 2014-07-23 Daniel d'Andrada * Fix Unity.Application mock bug: SurfaceManager.surfaceDestroyed(null) (9d4c15609) 2014-07-23 Ying-Chun Liu * Fix summary Top anchor for attributes. (86323ab1c) * Fix anchors/non-subtitles. (647d737ec) 2014-07-23 Albert Astals * Use root and not parent since parent is a hidden item the flickable uses (ee7bfe58f) 2014-07-23 Michał Sawicz * Fix header search press. (2bcb5917f) 2014-07-23 Ying-Chun Liu * Add code for subtitle is not appeared (07ce50752) 2014-07-23 thomas-voss * Add missing includes. (fdabb02a7) 2014-07-23 Albert Astals * Bind scope query back (848f12f39) 2014-07-23 Nick Dedekind * fixed fade animation without surfaceArea (e1118e4f7) 2014-07-23 thomas-voss * Add missing includes. (c672e6938) 2014-07-23 Nick Dedekind * remove surfaceArea (49f573589) * use surface anchors rather than internal item (d2cb49dca) * add fade animation (50d40be5b) * use qmlquicklistproperty for children surfaces (1e08db98f) 2014-07-23 thomas-voss * Account for pay-1 to pay-2. (5736f21d1) 2014-07-23 Michael Zanetti * minor fixes (f04381e38) 2014-07-23 thomas-voss * Explicitly select gcc version. (c3229cf53) 2014-07-23 Albert Astals * Fix threshold calculation as discussed with Saviq (6e114c149) 2014-07-23 Michael Zanetti * drop stuff not needed any more (cc3002e06) 2014-07-23 Albert Astals * Fix property name (172b50f4a) * Easier headerless categories (8e94bb125) 2014-07-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a742b53d9) 2014-07-23 Michael Zanetti * include .desktop file in installs (17bd1953e) * Initial work to split Dash to be a separate app (15e1c0fe6) * merge prereq (6015c9c95) 2014-07-22 Michał Sawicz * Fix whitespace. (9b70fc7d1) * \n-- (5a43dc662) * Add bug number. (09ed40345) * Default to /run/mir_socket if MIR_SOCKET isn't set. (d52ab12af) 2014-07-22 Albert Astals * More headerless category fixes (f4fa25f2f) 2014-07-22 Michał Sawicz * Fix parens... (9a73aeaf1) * Set MIR environment properly when not starting with upstart, too. (ed31cb787) 2014-07-22 Albert Astals * Merge (a0936679c) * No need to get section again (cd6a04904) 2014-07-22 Michael Zanetti * fix disabling of animation in emergency call suatuation. Broke with previous merge (d63f86775) * merge trunk (558161052) * reverting r 1076 (6ab6bce89) 2014-07-22 Albert Astals * Don't show the sticky section header if the section is empty (cbc4c266b) 2014-07-22 Nick Dedekind * reverted change to drop shadow (0a2597213) 2014-07-22 Mirco Müller * Replaced findChild() with signal-based solution to allow the TextField's accept method to trigger the notifications accept-action. (9f62a8401) 2014-07-22 Nick Dedekind * rebased (83b859ddd) 2014-07-22 Albert Astals * Fixes for the phone (bfc9db6f8) 2014-07-22 Nick Dedekind * better animating + fixes (39122b05f) 2014-07-22 Michał Sawicz * Fix upstart integration test under X11. (fb62e29db) * Add TODO and make it clear when collapsedItemCount is invalid. (a73b89f19) * Merge see-all-expansion. (5d2e8e19f) * Merge drop-filtergrid. (f3f8a598f) * Pixel-align ScopesListView to avoid visual artifacts at card boundary. (2996af09c) 2014-07-22 Mirco Müller * Make sure the TextField of a snap-decision notification has the active focus upon creation, thus the osk shows up right away. (9e6112492) 2014-07-22 Michael Zanetti * merge prereq (9a47628f8) 2014-07-22 Daniel d'Andrada * Add a mock virtual keyoard for the qml tests (18c4b89fe) 2014-07-22 Ying-Chun Liu * Rename CardAttributesGrid to CardAttributes. Add copyright header to CardAttributes.qml. (8cf8e82c9) 2014-07-22 Michael Zanetti * drop more unused stuff (d5031224e) * drop RunningApplications stuff (bdf9c74c0) 2014-07-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2663b8591) 2014-07-22 Michał Sawicz * Merge drop-filtergrid (6d76bc513) * Merge cmake-pydev-fixes (91fe6068d) * Merge trunk (5b14cedff) * Merge trunk. (26b29955e) 2014-07-21 Daniel d'Andrada * Update the mock UnityMenuModel (96223d255) 2014-07-22 Ying-Chun Liu * Add test icons. (ad20b1a08) * Fix 7.tst (82c21faf2) 2014-07-21 Albert Astals * Merge lp:~saviq/unity8/category-header-links (1f39c0268) * Use the root.scopeStyle.threshold if it's there (defec5b12) 2014-07-21 Michał Sawicz * Merge see-all-expansion. (658d7a56c) * Fix (or bring back to what they were before) the top/bottom gradients. (c3920dd15) 2014-07-21 Ying-Chun Liu * Add attribute UI. (c667d99d4) 2014-07-21 Albert Astals * deleteLater this (0532f0db4) 2014-07-21 Leo Arias * Merged with trunk. (fdbf808c0) 2014-07-21 CI bot * Releasing 7.90+14.10.20140721.1-0ubuntu1 (ffed20eec) 2014-07-21 Michał Sawicz * Add missing nameOwner property to mock UnityMenuModel. Approved by: Michael Terry (d84d74933) 2014-07-21 Albert Astals * Fix name, There's nothing called pageHeader in this file (3d29c69af) 2014-07-21 Michael Terry * Allow running the dialer-app in emergency mode when the screen is locked. Approved by: Nick Dedekind, Seth Arnold (27c1c3c75) 2014-07-21 Leo Arias * Merged with prerequisite. (acf2d022c) * Merged with trunk. (921df430e) 2014-07-21 Albert Astals * Wrong merge (697ecfc53) * Only vertical flick (6016fc837) * Merge lp:~saviq/unity8/category-header-links (9554b771d) 2014-07-21 Michał Sawicz * Merge see-all-expansion. (4fdd107e9) * Merge drop-filtergrid. (3c607f8bd) * Improve test_set_current_scope_reset reliability. (94e20b8c2) 2014-07-21 Albert Astals * Need the if for restorePosition here too (c18222141) 2014-07-21 Mirco Müller * Allow ENTER/RETURN in a TextField to accept a snap-decision notification. (bf7825b91) 2014-07-21 Albert Astals * when zooming to "All" from temp scope make sure the "All" card we zoom to is on view (1dd293d4e) 2014-07-21 Michał Sawicz * More background tests. (46355d4a7) 2014-07-21 Albert Astals * Preview can call openScope so make sure restorePosition and restoreSize are set (f02c7e06b) * Tests for the scopes overview (f82ec3c35) 2014-07-21 Michał Sawicz * Add scope header style tests. (ff47bfdd9) 2014-07-21 Albert Astals * Fix this (639bbcdd2) 2014-07-21 Nick Dedekind * parent animation (c25c21ec4) 2014-07-21 Michael Zanetti * fix tests (fc295e79c) * shorten line (23f27ce85) * add some more comments (ee5d06410) * "compress the maths a bit" (edc0cca2e) * made some more props readonly (07e1b1b2c) * whitespace fix (83813ec29) 2014-07-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (70f90d1c0) 2014-07-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ae7898e6a) 2014-07-19 Nick Dedekind * updated mock dbus path (2abb1f056) * Added mocking for child surfaces (d13e52438) * rebased (7de3847cc) * rebased (a0432d361) * Added applicationdbus adaptor for adding child surfaces to mir surfaces (3d2e4e5dd) * Added parentSurface & childSurfaces (01aa32491) 2014-07-19 Michał Sawicz * Add tests for header foreground and background. (ab3984a79) 2014-07-19 Nick Dedekind * merged with prompt session branch (18bed51e3) 2014-07-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ba0181939) 2014-07-18 Daniel d'Andrada * Add missing copyright headers to tests/mocks/Unity/Application/SurfaceManager.* (c4e54da2e) * Shell.qml: restore line as Qt no longer complains about it (a174cdb8f) 2014-07-18 Nick Dedekind * Fixed up AppManager mock for qtmir surfaces. (eb31fa22f) 2014-07-18 Michał Sawicz * Implement header background and foreground override. (a925a91f0) * Introduce Background component. (8d130de3c) * Add support for header background and foreground in ScopeStyle.qml. (d6a4bc509) 2014-07-18 Michael Zanetti * coment indexToZIndex (a3a1c1531) * make a bunch of properties readonly (b2495d568) * add some comments (baae18a2c) * added comments regarding the TabletStage states (ae94eb9f6) * add some lost semicolons (7856104d8) 2014-07-18 Nick Dedekind * rebased (c5f506293) * Child surface support (46981c237) 2014-07-18 Michael Zanetti * change velocity value to be given in gus, add comment (6d69bf201) * improve comments around progress a bit (1746bb870) 2014-07-18 Nick Dedekind * whitespace (832b730fa) 2014-07-18 Michael Zanetti * add some semicolons that got lost on the way (99e30394f) * mark locked property in stages readonly, drop unused fullscreen property (c52790629) 2014-07-18 Albert Astals * Another simple test (5d6ee650a) * First easy scopes overview test (f890a7e82) 2014-07-18 Michael Terry * Merge from dialer-above (d51cb0c81) * Merge from trunk (17002e2e8) 2014-07-18 Albert Astals * Use dark/light colors as luminance needs (4e57d21f7) * Depend on scopes api 3 (59db2586b) * Use a proper ScopeStyle (7fe84b998) 2014-07-18 Nick Dedekind * removed qdebug (35721e75b) 2014-07-18 Albert Astals * function used only from one place (7ea1d32ce) * Use activate and openScope as mhr3 wants (bc9befc08) 2014-07-18 Nick Dedekind * render screenshot directly on surface (09bb3eb0a) * remove screenshot update (85f1506c4) * mocks for qtmir (f4240f4e6) 2014-07-18 Michał Sawicz * Disable expansion for categories with header links. (7abda69e8) 2014-07-18 Albert Astals * Pass down the variables to the function (033eafa74) 2014-07-18 Gerry Boland * Merge trunk (7621d20c1) 2014-07-18 Nick Dedekind * rebased (bb2aa2423) 2014-07-18 Michael Zanetti * fix typo (753f7df0d) 2014-07-18 Michał Sawicz * Suppress warning (e27ae0a5b) * Merge trunk. (e9618740a) * Merge trunk. (cfa9352d5) 2014-07-18 Albert Astals * Close popup on click if it's shown (7ce2be3b1) 2014-07-18 Michał Sawicz * Merge trunk. (34c798ffc) 2014-07-18 Albert Astals * [ Nick Dedekind ]; Added environment variable to upstart conf for mir trusted socket; Removed indicator menu dismissal on menu activation (LP: #1337771) [ Michał Sawicz ]; Only generate .qmltypes files manually, no need to do it build-time. It didn't work when cross-compiling either, and required builders to have otherwise unnecessary environment.; Fix CardCreator test. It got broken with a merge that got landed along side of it. [ Ying-Chun Liu ]; Add reboot/shutdown (LP: #1234062) [ Albert Astals . Make the departments test more stable [ Mirco Müller . Fixes gap at top of sim-unlock/fullscreen notification (point 1.), fixes blocking overlay if underlying UnityMenuModel vanishes from DBus (point 2.). The third bullet-point of the bug-report, lockup of shell-UI, could not be reproduced. (LP: #1308011) [ Michael Terry ] * Expose a new greeter DBus property, IsActive, which tells apps and indicators when the integrated-greeter screen is active. Useful for switching UI modes when the screen is locked.; Allow the session to bring up the greeter/lockscreen over DBus. The emergency dialer will need this support in order to cancel bringing it up. [ Michael Zanetti ]; Fixes gap at top of sim-unlock/fullscreen notification (point 1.), fixes blocking overlay if underlying UnityMenuModel vanishes from DBus (point 2.). The third bullet-point of the bug-report, lockup of shell-UI, could not be reproduced. (LP: #1308011) (af5e5182a) * Showing dash overview from temp scope (not from dash overview temp scope) (83cc4687c) 2014-07-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (15cea47c5) 2014-07-17 Daniel d'Andrada * Shell.qml: Move the new Key event handlers to WindowKeysFilter (429c7cf17) * Merge trunk (33a7f65b0) 2014-07-17 Michał Sawicz * Add missing nameOwner property to mock UnityMenuModel. (ca26e985f) 2014-07-17 Daniel d'Andrada * Fix keys handling and the focus mayhem (9bbb23e4f) 2014-07-17 CI bot * Releasing 7.90+14.10.20140717.3-0ubuntu1 (ea572cf78) 2014-07-17 Nick Dedekind * Removed indicator menu dismissal on menu activation Fixes: 1337771 Approved by: Michał Sawicz (1883d6800) * Added environment variable to upstart conf for mir trusted socket Approved by: Michał Sawicz (12d964fcb) 2014-07-17 Michael Zanetti * re-focus previously focused app after greeter (c8e34c702) 2014-07-17 Michael Terry * Add some more braces for single-line ifs (474bc09ae) 2014-07-17 Albert Astals * implement openscope in the fake plugin so we can go to temp scopes from dash (fbd182d79) * Reorganize code + todo so i don't forget (94d598f77) 2014-07-17 Michael Zanetti * undo hack from run_on_device that allowed easier restarting (e9c4dcb35) * drop unused props from TabletStage (62ac9ea90) * reintroduce locked property in stages to not allow dragging them away while in spread (4486d2b4e) * drop plain wrong comment (22ce9315e) * drop usage of topmostApplication because its technically wrong and will be removed from qtmir (e51187510) * make performance optimization in PageHeader a bit more obvious (4bd2c73fb) 2014-07-17 Michał Sawicz * Merge trunk. (59b854858) 2014-07-17 Albert Astals * Merge lp:~aacid/unity8/fixPageHeader (6e6ee1700) * Real fix (4b1b2058c) 2014-07-17 Michael Zanetti * fix inaccurate debian changelog entry (71ec5304b) * don't cover the top panel with the OSK (70924d519) 2014-07-17 Albert Astals * There's nothing called pageHeader in this file (7826737ea) * Use "proper" API for the PageHeader (67dc76929) * The fake plugin provides better scopes overview scope search results (770ffe6b7) * Log when we are called activate (a747edd3f) * Make this python3 compatible (7b100be69) * Implement search click (b8f3f489a) 2014-07-17 CI bot * Releasing 7.90+14.10.20140717.1-0ubuntu1 (050859639) 2014-07-17 Albert Astals * Make the departments test more stable (2d09425cb) 2014-07-17 Mirco Müller * Fixes gap at top of sim-unlock/fullscreen notification (point 1.), fixes blocking overlay if underlying UnityMenuModel vanishes from DBus (point 2.). The third bullet-point of the bug-report, lockup of shell-UI, could not be reproduced. Fixes: 1308011 Approved by: Michał Sawicz (0230c28e1) 2014-07-17 Michał Sawicz * Fix CardCreator test. It got broken with a merge that got landed along side of it. Approved by: Albert Astals Cid (32fe45462) 2014-07-17 Ying-Chun Liu * Add reboot/shutdown Fixes: 1234062 Approved by: Michael Zanetti (7a1fa198e) 2014-07-17 Michael Terry * Allow the session to bring up the greeter/lockscreen over DBus. The emergency dialer will need this support in order to cancel bringing it up. Approved by: Michael Zanetti, PS Jenkins bot (f47831e21) 2014-07-17 Michał Sawicz * Only generate .qmltypes files manually, no need to do it build-time. (507b643cf) 2014-07-17 Michael Terry * Expose a new greeter DBus property, IsActive, which tells apps and indicators when the integrated-greeter screen is active. Useful for switching UI modes when the screen is locked. Approved by: Michael Zanetti, PS Jenkins bot (f5dd6b4ba) 2014-07-17 Albert Astals * Add some debug, see if i can find out why it fails to pass on CI (c0e1f1cd9) 2014-07-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c2d4a7c53) 2014-07-16 Gerry Boland * Merge trunk (6357c5e13) 2014-07-16 Michał Sawicz * Fix design. (3a6940b63) 2014-07-16 Gerry Boland * Splash: stop the waiting dots if component invisible, also disable the mousearea (a94d59c5e) * PageHeader: set offscreen portion invisible, clip only when necessary (a04052386) 2014-07-16 Albert Astals * TODO update (c7abf6400) 2014-07-16 Nick Dedekind * ENABLED->1 (ae41acbb9) * dont set path. unset in post (fbf39ab5c) 2014-07-16 Albert Astals * set first item either at header height or at 0 (168831100) 2014-07-16 Nick Dedekind * set MIR_SERVER_PROMPT_FILE for prompt session socket (7a5c3c3ab) 2014-07-16 Albert Astals * topBar was creating more problems than solving (418a208cb) * warning less (e654fa1c7) * make pot_file (d580617e6) * missed the animation (e7eaadcf2) * Implement search (3a1279382) 2014-07-16 Ying-Chun Liu * Merge trunk. (c4d5467a0) 2014-07-16 Michael Terry * Skip asking password on normal ./run.sh run (508e8b347) 2014-07-16 Albert Astals * We don't get an openScope anymore so don't call closeScope (f2580faa0) 2014-07-16 Michael Zanetti * properly make Launcher invisible when its outside the screen (3bcda1ffd) 2014-07-16 Gerry Boland * Set background color of scene as black (aka glClear colour), can remove a black rectangle from the qml scene (e49ffc06f) 2014-07-16 Albert Astals * off by one again :/ (6af5430ba) * disable overview when on preview (58df12bbe) * We don't allow Dash Overview from a search screen (dab1fac28) 2014-07-16 Michael Zanetti * change launcher count emblem to match new spec (2971ca351) 2014-07-16 Albert Astals * Merge lp:~aacid/unity8/makeTestDashDepartmentMoreStable (bb20be898) * [ Michał Sawicz ]; Activate all results in click scope by default. (LP: #1341262) [ Mirco Müller ]; Added support for utilization of the ComboButton SDK-element for snap-decision notifications with many actions. (31109d8e9) * Make tests not crash and pass :) (40e762b75) * Let current trunk (whihc has no dash overview backend) out of dash overview (cf658af3b) * Better drag area code (014ad9664) * Merge lp:~saviq/unity8/fix-cardcreator-test (dcbe9acd5) * Fix test (b4b737624) * spacing (5c6e25809) 2014-07-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e5f85b889) 2014-07-15 Michael Terry * Notice changes from promptfull to promptless immediately (43d123d79) * Merge from dialer-above (49bee7fc1) * Only enable greeter drag area if greeter is also enabled (I keep forgetting that isn't automatic) (39bb27cf8) * Merge from dialer-above (0b2938186) * Fix qmluitest (722ea0ad3) * Fix review nits (c87078dba) 2014-07-15 Mirco Müller * Updated debian/control to require newer version of qmenumodel. (7e2d4d461) 2014-07-15 Albert Astals * another newline (6ea2f6041) * newline (759e9365f) 2014-07-15 Gerry Boland * Only hide dash when indicators opened on phone, as should still be visible for tablet (d3e983d4e) 2014-07-15 Albert Astals * Yes, still works (c03e0f1ea) * todo ++ (6fe90dbef) * wops vars fighting parameters (b3e7770af) * No need to go through activate now that i have the scopeId (83657820a) * If you select a favorite in All, go back to Dash not to temp scope (5a2dcf26b) 2014-07-15 Michael Terry * Merge from dialer-above (1f8b23b67) 2014-07-15 Ying-Chun Liu * Merge trunk. [ Michał Sawicz ]; Activate all results in click scope by default. (LP: #1341262) [ Mirco Müller ]; Added support for utilization of the ComboButton SDK-element for snap-decision notifications with many actions. (ac93f95a3) 2014-07-15 Michael Terry * Set mock lightdm for PhoneStage test (4bc0a6ccc) 2014-07-15 Albert Astals * Make "Done" in "All" grow from the current scope position (d584d6afb) 2014-07-15 Mirco Müller * Avoid undefined-assignment warning for QUrl-based source. (9b0671539) 2014-07-15 Albert Astals * Animate Dash growing from the All screen (8cc984d9a) 2014-07-15 Mirco Müller * Reverted an accidental commit of a temporary experiment with the sound-hints. (a2b5cf17b) 2014-07-15 Albert Astals * Make the xyscaler be a different item and not scopeItem itself (e21eb51f5) * More scopes, better for testing (f63ab20d6) * Better zoom in/out for the Favorites (533d45395) * Make the test more stable (949401084) 2014-07-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (493e8e747) 2014-07-14 CI bot * Releasing 7.90+14.10.20140714-0ubuntu1 (d19a0c45a) 2014-07-14 Mirco Müller * Added support for utilization of the ComboButton SDK-element for snap-decision notifications with many actions. Approved by: Michał Sawicz, PS Jenkins bot (7c9eb3ba6) 2014-07-14 Michał Sawicz * Activate all results in click scope by default. Fixes: 1341262 Approved by: Alejandro J. Cura, PS Jenkins bot, Albert Astals Cid (e1249222b) 2014-07-14 Gerry Boland * Lockscreen: instead of positioning off-screen, set invisible. (4896422f8) * Indicators: set indicator handle & menu content invisible when are clipped into non-existence (9b649d9f0) * DashContent: set off-screen delegates invisible (10a265f8c) 2014-07-14 Michael Terry * Merge from dialer-above (e7c4f0f46) 2014-07-14 Gerry Boland * s/upstart-app-*/ubuntu-app-*/ (97f99d420) 2014-07-14 Michael Zanetti * fix icon in app splash screen (f1f4a4924) * fix issue that apps started from cmdline are not brought to front (223691d78) 2014-07-14 Michał Sawicz * Don't use special clickscope in tst_GenericScopeView.qml by default. (ecca32548) 2014-07-14 Albert Astals * Put in a different file (4d53fabd7) 2014-07-14 Mirco Müller * Merged with trunk. (7fad7c98b) * Make use of nameOwnerChanged signal (qmenumodel) and close invokable (unity-notifications) to fix blocking of shell, if a passed UnityMenuModel gets pulled from DBus before a notification was closed. (40891113c) 2014-07-14 Michael Zanetti * fix another issue that locks up the spread when using multiple touch points (2c97c8f83) 2014-07-14 Albert Astals * when going back from temp scope the opacity animation needs to trigger at the same time of shrinking, not after (37dac80a1) * Grow the temporary scope from its pos in the grid (dd0f9ca95) 2014-07-14 Michael Zanetti * fix app's topMargins when a fullscreen app is focused (e55f122fd) * work around issue when the spreadView is resized because of starting apps (0299ab5b0) 2014-07-14 Albert Astals * don't leave it without parent on second tab (ed657aec0) * Some more animations, it's not perfect yet but getting there (ef326d954) 2014-07-14 Michael Zanetti * increase the minimal flick distance to 8 gus. There's still too many accidental app closures with 4 gus. (4455e7317) * hide tiles when they're either outside the screen on the right or covered by other tiles on the left edge (78289a8af) 2014-07-14 Michał Sawicz * Don't preview anything in Apps on click. (69f8c682f) 2014-07-14 Albert Astals * move immediateyl (3f8d0917b) * bind current item (6fe575f9d) 2014-07-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0d043a9a7) 2014-07-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a8c97df50) 2014-07-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d2ad4bbbd) 2014-07-11 Michał Sawicz * Add support for category header links. (63f226997) 2014-07-11 Michael Terry * Merge from show-greeter-dbus (0c8a3a941) * Merge from is-active (729d77982) 2014-07-11 Albert Astals * Much nicer "open" animation (7466657b8) 2014-07-11 Michael Terry * Merge from trunk (a56c9f817) 2014-07-11 Albert Astals * Add right margin too otherwise centering ends up not really centering (5664f20a4) 2014-07-11 Ying-Chun Liu * Merge trunk [ Michal Hruby ]; Fix FTBFS when using latest unity-api. [ Michał Sawicz ]; Refactor carousel item activation.; Refactor ScopeItem into GenericScopeView. Add initial support for scope customizations.; Make rating stars in PreviewReviewDisplay.qml non-interactive. (LP: #1337508) [ Nick Dedekind ]; Added active call hint A hint is displayed in the indicator panel when an call is active on the Telephony Serivce [ Albert Astals ] * We need to boostrap height also when we have 1 item ^_^ (LP: #1337408); Add initial support for scope customizations.; CardCreator: Give a correct implicitHeight if we only have art The hasSubtitle change is really unrelated and not needed here, just sneaking it in to not create yet another review. (LP: #1330899); Fake Scopes Plugin: Register PreviewModelInterface [ Michael Zanetti ]; make the launcher's drag'n'drop indicator more prominent (LP: #1332042); make launcher items live having them non-live is not really required and reveals an issue in combination with UbuntuShape (LP: #1302761); Fade out launcher in place instead of moving it to the left on long left edge swipes. (LP: #1332096); update launcher icon glow as requested by design (LP: #1336725); update header in dash to use the new header from the SDK (LP: #1335491); fix testPreview with larger GRID_UNIT_PX values; clip the corner of pinned icons in the launcher as per new design; update launcher background according to latest design (LP: #1336314); Update Launcher's home button design according to new spec. (LP: #1329331) [ CI bot ]; make launcher items live having them non-live is not really required and reveals an issue in combination with UbuntuShape (LP: #1302761) (c9d1ee9f6) 2014-07-11 Albert Astals * pass down the header alignment (21b035c76) 2014-07-11 Michał Sawicz * {}++ (ee858d091) 2014-07-11 Albert Astals * todo-- (c7f09fc72) 2014-07-11 Michał Sawicz * Rename tests, there's no filtering any more. (bb311b5a8) * Update .pot file. (fe426b34d) * Fix GenericScopeView::test_expand_collapse, it wasn't fast enough. (d76c38dcf) 2014-07-11 Albert Astals * fix (6e226a7af) * bind the search part (48a7a520e) * Add the preview list (ed1a5d206) 2014-07-11 Michał Sawicz * Adapt tests. (ee49dccdc) * Move expansion button below category. (0c5980134) 2014-07-11 Albert Astals * Add DashBackground (0ae6ba387) * Don't let scale the other way around (369734f3a) * Add these two missing files (5cfa2d944) * Move this code up to Dash.qml too (fb554b33c) * Move stuff up to Dash and some more wiring (c2a42236a) 2014-07-11 Michał Sawicz * Drop unnecessary properties in CardCarousel (7b5efe3e7) * Reduce cacheBuffer in CardGrid (33114fda2) * Fix DashContent tests. (af45629c4) * Add tests for auto and forced expansion. (79951715d) 2014-07-11 Albert Astals * selecting a favorite "works" (cdbcecea5) 2014-07-11 Michael Zanetti * don't force focusin an app when the surface appears... (a55b1f15c) 2014-07-11 Albert Astals * Starting to get shape (053eaecae) 2014-07-11 Michael Zanetti * handle cancelled events in DragArea to avoid getting stuck in dragging state (585198528) 2014-07-11 Mirco Müller * Adjust regular expression to allow a larger variety of icon-names. (3e5b9163c) * Merged with trunk and resolved conflicts. (a70ad1b4d) 2014-07-11 Michał Sawicz * Merge lp:~saviq/unity8/cmake-pydev-fixes. (c01d9ca40) * Add .bazaar and whitespace to the PyDev project. (69219e455) * Add Autopilot List and Run configurations. (b9c0a8dba) * Use add_unity8_mock in Telephony plugin. (0703197a7) * Fix dash emulators. (f2fff702b) 2014-07-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e505a2266) 2014-07-10 Michał Sawicz * Merge move-pydev-project. (a2ab759e1) * Move PyDev project to the root. (20e002f76) * Fix qml tests after the refactor. (41d350016) * Protect against non-numeric collapsed-rows. (8317b6e4f) * Avoid binding loop in DashRenderer and CardCarousel. (dc31931bd) * Merge fix-cardcreator-test. (ce802bfd1) * Fix CardCreator test that got broken by a merge. (3310c6267) * Bootstrap expanded height in CardVerticalJournal, too. (3f831d7f3) * Make GenericScopeView handle forced expansion instead of renderers on their own. (76c4bf8b4) * Use "expanded" instead of "filtered" thought pattern. (b7aaa80c0) 2014-07-10 Gerry Boland * Remove some other orientation-specific changes (37d688d69) 2014-07-10 Michał Sawicz * Drop FilterGrid and simplify DashRenderer and height animation in dash. (d18b1474f) 2014-07-10 Leo Arias * Merged with prerequisite. (cdfbb9aa6) * Merged with trunk. (91b4bd63c) * Merged with trunk. (0f71a46ad) 2014-07-10 Ying-Chun Liu * Fix bugs. (4d898c63e) * Merge trunk (50d593b20) 2014-07-10 Nick Dedekind * merged with trunk (6b2f0c61c) 2014-07-10 Ying-Chun Liu * Add fade-out effect. (7d5b9d652) 2014-07-10 Albert Astals * Better fake plugin (6509027e3) 2014-07-10 Michał Sawicz * Update qmltypes. (9f097ea7d) * Merge trunk (de35d4583) 2014-07-10 Albert Astals * This should be the finished fake plugin work for scopesoverview, miss the ui to see it i did it right ^_^ (58095ebd8) 2014-07-10 Gerry Boland * debian: add changelog entry, bump to version 8.00 (657747cf1) 2014-07-10 Michael Zanetti * merged with latest unity8 releases (0f47f21bd) 2014-07-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d0b53b99f) 2014-07-10 Albert Astals * Merge unity8 (36aa9ae66) 2014-07-09 CI bot * Releasing 7.90+14.10.20140709.2-0ubuntu1 (2523791f2) 2014-07-09 Michael Zanetti * Update Launcher's home button design according to new spec. Fixes: 1329331 Approved by: Michał Sawicz (4a8a20a72) * update launcher background according to latest design Fixes: 1336314 Approved by: PS Jenkins bot, PS Jenkins bot, Michał Sawicz, PS Jenkins bot (19f2665b0) * clip the corner of pinned icons in the launcher as per new design Approved by: PS Jenkins bot, Vesa Rautiainen, PS Jenkins bot, Michał Sawicz (41d1e09a0) 2014-07-09 CI bot * make launcher items live (503b8a8d4) 2014-07-09 Albert Astals * Fake Scopes Plugin: Register PreviewModelInterface (78877621e) * CardCreator: Give a correct implicitHeight if we only have art (953b0a222) 2014-07-09 Michael Zanetti * fix testPreview with larger GRID_UNIT_PX values Approved by: PS Jenkins bot, Michał Sawicz (fe9aa1a69) 2014-07-09 Michał Sawicz * Make rating stars in PreviewReviewDisplay.qml non-interactive. Fixes: 1337508 Approved by: PS Jenkins bot, Andrea Cimitan, PS Jenkins bot (20f4848fa) 2014-07-09 Nick Dedekind * Added active call hint (620f9640f) 2014-07-09 Michał Sawicz * Add initial support for scope customizations. Approved by: Michael Zanetti, Michael Zanetti (4c3de717b) 2014-07-09 Michal Hruby * Fix FTBFS when using latest unity-api. Approved by: Michał Sawicz (80cb348c4) 2014-07-09 Michał Sawicz * Refactor ScopeItem into GenericScopeView. Approved by: Michael Zanetti, Michael Zanetti (bed961f1d) 2014-07-09 Albert Astals * We need to boostrap height also when we have 1 item ^_^ Fixes: 1337408 Approved by: Michał Sawicz (fbcec327d) 2014-07-09 Michał Sawicz * Refactor carousel item activation. Approved by: Andrea Cimitan, Michael Zanetti (05913070a) 2014-07-09 Michael Zanetti * update header in dash to use the new header from the SDK Fixes: 1335491 Approved by: Michał Sawicz (d56d8b419) * update launcher icon glow as requested by design Fixes: 1336725 Approved by: Vesa Rautiainen, Michał Sawicz (1d141f9ea) * Fade out launcher in place instead of moving it to the left on long left edge swipes. Fixes: 1332096 Approved by: Vesa Rautiainen, Michał Sawicz, PS Jenkins bot (e574a866b) * make launcher items live (09416c794) * make the launcher's drag'n'drop indicator more prominent Fixes: 1332042 Approved by: PS Jenkins bot, Andrea Cimitan (97f055f83) * merge ~mzanetti/unity8/launcher-new-background (66875335a) 2014-07-09 Michał Sawicz * Merge refactor-carousel-delegate. (e46459708) * Merge new-header. (5ea983f5f) * Fix Dash._get_current_page_header emulator helper. (d8c9deee8) 2014-07-09 Michael Zanetti * clip the dndItem too as long as its not moving (1459f99aa) 2014-07-09 Leo Arias * Merged with prerequisite. (1d7fa5307) * Moved the property to the delegate as suggested by michael. (15737de5c) 2014-07-09 Michael Zanetti * add missing objectName (641283ba9) 2014-07-09 Leo Arias * Brough back the is_launcher_open. (1ff9280a4) * Remove the swipe to the left. (a75bf345b) * Removed the tests for some code paths and preconditions for the life cycle test. (2a8bad3cc) 2014-07-09 Michał Sawicz * Fix open_preview emulator. (a69d624ba) 2014-07-09 Albert Astals * First start of implementing a proper scopes overview in the fake plugin (a28160a28) * Initial implementation of scopes overview (0aef82070) 2014-07-09 Michał Sawicz * Merge refactor-carousel-activation. (dfaee26fc) * Merge new-header. (03d74e20b) * Merge refactor-carousel-activation. (e5fe9b9c0) * Merge trunk. (441b4b910) 2014-07-09 Michael Zanetti * oops. better now (959dc8341) * fix comments from review (6f387e990) * fix autopilot tests involving page header (a59e34fc6) 2014-07-09 Ying-Chun Liu * Fix FTBFS (2325b48f3) 2014-07-09 Michael Zanetti * use constant from uitk instead of hardcoding color value (e93d4872f) 2014-07-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e876bec9c) 2014-07-08 Leo Arias * Merged with prerequisite. (18fadffc6) * Merged with trunk. (c12ca4d27) 2014-07-08 Gerry Boland * Remove another unnecessary change to shrink delta - linebreak removed (bed3b8dd9) * Remove unnecessary change to shrink delta - linebreak removed (8d54a4251) * Restore focusedApplicationId property in Shell.qml to fix some AP test fails (5d6ddf6c4) 2014-07-08 Michał Sawicz * Merge refactor-carousel-activation (ad80bb1ed) * Merge new-header (5a2323b68) * Merge refactor-carousel-activation (aa5506c57) * Merge new-header. (f16e99186) * Use a delegate with less common index... (741c4fc31) * Fix title in temporary scope pages. (871cf19f5) 2014-07-08 Gerry Boland * Merge trunk (0c6093ce4) * Fix conflict fix error (f35d2c307) * Remove ApplicationArguments::device as only needed for orientation support (5088bd16f) * Remove orientation-support code from Shell.qml. Shimmy things around to reduce delta (4aa5c3bfe) * Remove unneeded WindowScreenshot component (614761ade) * Remove unneeded QDebug import (3261a4363) * Remove OrientedShell.qml - not enabling rotation for now (3d9e1dc00) * Revert revision 973 - dbus service to post current orientation unnecessary (d6a820884) 2014-07-08 Leo Arias * Merged with staging. (8660d306e) 2014-07-08 Michał Sawicz * Pass index using a property, because it gets lost through the Loader. (d6aae77da) 2014-07-08 Michael Zanetti * make surfaces focusscopes (b0c392413) 2014-07-08 Nick Dedekind * merged lp:~mzanetti/unity8/new-header (d199e5d0e) 2014-07-08 Michael Zanetti * also bump runtime deps (bd263289e) * merge trunk (73e59a210) 2014-07-08 Ying-Chun Liu * Merge trunk [ Nick Dedekind ]; Added support for TransferMenu [ Michał Sawicz ]; Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Nick Dedekind ]; Moved [Message]MenuItemFacotory from Unity.Indicators plugin to qml folder. [ Albert Astals ] * EasingCurve: Initialize members; Fix valgrind warning by not emitting reset on model destructor That won't be supported until Qt 5.4 More info at https://bugreports.qt- project.org/browse/QTBUG-39780 Warning was ==16693== Invalid read of size 8 ==16693== at 0x72B19A0: QQmlContext::isValid() const (qqmlcontext.cpp:231) ==16693== by 0x736C82B: QQmlDelegateModelPrivate::emitChanges() (qqmldelegatemodel.cpp:1412) ==16693== by 0x7372AE6: QQmlDelegateModel::_q_modelReset() (qqmldelegatemodel.cpp:1463) ==16693== by 0x7397224: QQmlDelegateModel::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) (moc_qqmldelegatemodel_p.cpp:196) ==16693== by 0x739769E: QQmlDelegateModel::qt_metacall(QMetaObject::Call, int, void**) (moc_qqmldelegatemodel_p.cpp:292) ==16693== by 0x66379CC: QMetaObject::activate(QObject*, int, int, void**) (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x65AEEFD: QAbstractItemModel::endResetModel() (in /usr/lib/x86_64- linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x23461EFD: FakeIndicatorsModel::unload() (fakeindicatorsmodel.cpp:53) ==16693== by 0x23461E13: FakeIndicatorsModel::~FakeIndicatorsModel() (fakeindicatorsmodel.cpp:34) ==16693== by 0x2345C073: QQmlPrivate::QQmlElement::~QQmlElement() (in /home/tsdgeos_work/phablet/unity8/investigate_test_shell_crash/build dir/tests/mocks/Unity/Indicators/libIndicatorsFakeQml.so) ==16693== by 0x2345C0A3: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== Address 0x1862d448 is 8 bytes inside a block of size 16 free'd ==16693== at 0x4C2C2BC: operator delete(void*) (vg_replace_malloc.c:503) ==16693== by 0x72B21B8: QQmlContextData::destroy() (qqmlcontext.cpp:647) ==16693== by 0x7293458: QQmlPrivate::qdeclarativeelement_destructor(QObject*) (qqmlengine.cpp:612) ==16693== by 0x6C0CADD: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:105) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject() (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693== by 0x6C0CAE5: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject() (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693== by 0x6C0CAE5: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) (LP: #1332598) [ Michael Zanetti . drop launcher item spacing (LP: #1332022); change wording in launcher quicklist (LP: #1332035) [ Alejandro J. Cura ] * Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Rodney Dawes . Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Renato Araujo Oliveira Filho ]; Create IndicatorsLight.qml component used to control indicator led. A blue led will pulse if the message indicator is blue and screen is off. (0f3f034b9) * fix dialog (2ca8c3b89) 2014-07-08 Michael Zanetti * bump uitk dep (23dd442da) 2014-07-08 Michał Sawicz * Undo change to 2.res. (ce4905aac) * Fix scopeStyle in previews. (4e77f9124) * Fix CardCreator tests. (a6415723d) 2014-07-08 Albert Astals * Register PreviewModelInterface (001cf0665) 2014-07-08 Michael Zanetti * merge trunk (c584e98a7) * merge trunk (f8e5f949f) 2014-07-08 Michał Sawicz * Use direct defaults instead of grouped in the default object (e55cd60c7) 2014-07-08 Michal Hruby * Added missing case (22bd4604b) 2014-07-08 Michael Zanetti * merge trunk (d723fc2f5) * merge trunk (188024b43) 2014-07-08 Albert Astals * Add test for art only (16e6ba93b) * Give a correct implicitHeight if we only have art (81415ed87) 2014-07-08 Michal Hruby * Consolidate code style of the scope mock (b12681e48) * Fix FTBFS when using latest unity-api (012a6a594) 2014-07-08 Albert Astals * We need to boostrap height also when we have 1 item ^_^ (c0c27a1dd) 2014-07-08 Michał Sawicz * Move ScopeStyle test under qmluitests, fails to create context otherwise. (1f6d9abb1) * s/StyleTool/ScopeStyle/g (5dd8bb2cf) * Update qmltypes. (0c278744e) * Merge trunk. (5d9abd8e2) 2014-07-07 Gerry Boland * debian: depend on qtdeclarative5-qtmir-plugin, not deprecated libqtmir (0f7b1fb31) 2014-07-07 Nick Dedekind * reverted change to shell causing lockscreen overlay (2b323391b) * review comments (4451c0884) * removed qtdeclarative5-ubuntu-telephony0.1 build-dep (c02501d49) 2014-07-07 Michael Zanetti * keep z ordering as it was (7179b8723) 2014-07-07 CI bot * Releasing 7.90+14.10.20140707-0ubuntu1 (75ee9ea14) 2014-07-07 Nick Dedekind * Added support for TransferMenu Approved by: Charles Kerr, Michał Sawicz (2b2453f67) * updated usc version reqiurement (9d7e8cbeb) * updated pot file (540c0c6b4) 2014-07-07 Michał Sawicz * Merge test_click and _pressAndHold. (c1995538b) 2014-07-07 Nick Dedekind * removed i18n from test (713d6f065) 2014-07-07 Michael Zanetti * make it run on desktop again (ad93795ea) 2014-07-07 Nick Dedekind * merged witrh trunk (36dda6198) 2014-07-07 Michał Sawicz * Drop old comment. (fb113cf00) * Undo unnecessary change. (f2b55731e) 2014-07-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e9e402705) 2014-07-07 Michał Sawicz * Implement StyleTool usage in preview widgets. (b90aabd87) * Transition from fore/backgroundColor to StyleTool. (6c03f3576) * Add support for header logo in StyleTool. (b127c9345) * Simplify checks in StyleTool.qml (843105228) 2014-07-06 Michał Sawicz * Include docs for .qml and .js files from plugins, too. (86f7e9a10) * Implement dark and light color properties instead of inverse. (f0b0dbb96) * Avoid a creator warning. (e31839d8b) * Add support for inversion in StyleTool. (9e0acf742) * Add support for luminance threshold in StyleTool. (342844228) * Change data tags. (46ecd6bb6) * Add support for background color in StyleTool. (983e0753b) * Add support for foreground color in StyleTool. (29986444b) * Introduce StyleTool. (5d07940da) * Merge refactor-scopeitem. (d3039f63d) * Refactor ScopeItem into GenericScopeView. (77d258e12) 2014-07-05 Michał Sawicz * Refactor carousel item activation. (420f25e64) * Merge trunk. (afd1e081c) * Fix cardcreator tests. (bd64f97cc) * Merge new-header. (b2d0dd28b) 2014-07-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (17055de18) 2014-07-04 Nick Dedekind * Updated transfer states. Fixed transferMenu tests (e941fe4f8) * review comments (8db1d7267) 2014-07-04 Michael Zanetti * hide greeter when launching/focusing apps from launcher/indicators (96529249a) 2014-07-04 Nick Dedekind * respace menu item components (d28017a00) 2014-07-04 Michael Zanetti * elevate OSK if indicators are shown (94ec64d56) 2014-07-04 Nick Dedekind * Fixed transfer item test. Added button-section test (7c6a17467) * renamed bulk-transfer-action -> button-section (9f97ae77a) 2014-07-04 Michael Zanetti * adjust check before that one too (9bc8a50b5) * replace useless test with useful one (2f0fabbac) 2014-07-04 Nick Dedekind * merged with trunk (3b6df806a) * updated pot file (0aa40ddd5) 2014-07-04 Michael Zanetti * fix make testPreview on larger GRID_UNIT_PX values (0f87fb39d) * drop search indicator related tests from tst_Shell (0193f12aa) * fix DashContent tests (0d4754341) * change unfocusing/closing popup behavior a little (aa1fee4bc) 2014-07-04 Ying-Chun Liu * merged trunk; debian/control: list qtdeclarative5-ubuntu-ui-toolkit-plugin-gles as an alternative choice, since provides are not versionned, should restore installability on amd64 and i386 [ Michał Sawicz ]; Adapt to suru theme. [ Michael Terry ]; Fix path in launcher mock after moving our mock icons, to avoid a lot of "icon not found" warnings during qmluitests.; Fix the testMultiGreeter qmluitest. Incoming method variables are apparently read-only in Qt5.3. (LP: #1332488) [ CI bot ]; Resync trunk [ Michał Sawicz . Adapt scope mock to new api and quiet unused variable warnings.; Fix dynamic overlay height. (LP: #1334879. Don't center items in CardVerticalJournal, kind of beats the purpose... Also don't bind unnecessarily. [ Ying-Chun Liu ]; Fix LP:1330957 Fix some failed test cases. (LP: #1330957) [ Albert Astals ]; Don't seem to need this waitForRendering And makes test fail in 5.3 [ Alberto Aguirre ]; Update Powerd plugin and Shell.qml to accommodate changes in the display power state notification. [ Ying-Chun Liu ]; Add logout support. Reviewed by: Daniel d'Andrada (LP: #1302213) [ Michał Sawicz ]; Make so that fixedArtShapeSize actually fixes artShapeSize. [ Albert Astals ]; Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467); Make so that fixedArtShapeSize actually fixes artShapeSize. [ Mirco Müller ]; Added the frontend-part of sound-hint support for notifications with updated QML-tests.; New rebuild forced [ Albert Astals ]; Departments support (LP: #1320847) [ Pawel Stolowski ]; Extend the hack for click scope categories with the upcoming 'store' category: single-tap on results from the 'store' category should activate them, instead of requesting a preview. (LP: #1326292) [ Albert Astals ]; Drop the " Preview" suffix from Preview title As requested in https://bugs.launchpad.net/unity8/+bug/1316671 (LP: #1316671) [ Michael Terry ]; Revert split greeter for now. We will bring it back as an option for Desktop, but use a big hammer revert right now to get Touch back in shape. [ CI bot ]; Fix build problems. Reviewed by: Michael Terry (LP: #1328850) [ Michał Sawicz ]; Make lockscreen buttons translatable. [ Albert Astals . Correctly mark these functions as overrides; Remove connections to non existant signal; Better test nam. Improvements for headerless categories LVPWH: No section name -> no header LVPWH: New hasSectionHeader context property for delegates GSV: Add topMargin if no hasSectionHeader (LP: #1326415); Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid work again [ Michael Zanetti ]; Don't crash when we get an invalid app from ApplicationManager (LP: #1309162) [ Andrea Cimitan ]; Workaround for lp1324159 (LP: #1322233, #1324159) [ CI bot ]; Resync trunk [ Florian Boucault ]; Application startup: changed splash rectangle to be black instead of white and added a neat little animation. (LP: #1124265) [ Michael Terry ]; Bump version so ubuntu-touch-session can reference this one [ CI bot ]; Resync trunk [ Michał Sawicz ]; Move env setup past session init in greeter wrapper. (LP: #1325882); no change rebuild; drop dbus-x11 dependency of unity8-greeter, it makes us end up with multiple session dbus daemons which breaks many AP tests in the lab [ Michael Terry ]; Bump version for Breaks due to unity8-greeter; In split mode, determine whether the application identifiers in AccountsService are click packages or not, so we know the correct url prefix to use.; Start logrotate in the greeter's session. [ Andrea Cimitan ]; Passes to make tryCommand -qmljsdebugger=port:3768 to enable debug/profiling test apps; Fixes carousel shadow [ Michał Sawicz ]; Use dpkg-architecture, not gcc, to determine the machine triplet. [ Ying-Chun Liu ]; Fix ZoomableImage test failure. (LP: #1317254) [ Albert Astals ]; We don't need iconutils in this mock; Don't reserve space for mascot if no mascot is specified (LP: #1319343); CardHeader is no more, remove stale line in CMakeLists.tx. GenericScopeViewTest: Wait a bit more Otherwise sometimes we end getting up the wrong delegate (maybe one that will be garbage collected?) (LP: #1322279); Fix crash in organicgridtest [ Daniel d'Andrada ]; Remove Shell's underlay background image as it cannot be seen anymore Now that the Dash has its own, opaque, background, the underlay's background image can no longer be seen. So it's just a waste of resources to have it. [ Michael Terry ] * Use the same animation when dismissing a greeter slide from the launcher as from a normal greeter drag. (LP: #1316513) [ Michael Zanetti ]; enhance lockscreen add a retry indication label (e.g. 3 attempts left). add an additional label (e.g. phone number for multi sim). add a infoPopup (e.g. to display a warning for last retry). add min and max limit values. add tests for the above (LP: #1302050) (07d7dd987) 2014-07-04 Michał Sawicz * Add test for header logo source. (a8a951b2a) * Drop unneeded id. (614b17945) * Drop newline. (0bfaae18f) 2014-07-04 Michael Zanetti * only hide the searchfield if empty (1e8873419) * disable clear action if there's nothing to clear (9f2e945f2) * drop "recent searches" entries completely (6c142f9b2) * shrink active area to only contain the active elements (40275b2f8) 2014-07-04 Michał Sawicz * Use theme icons everywhere, apply colours to departments, too. (9ae5c891d) 2014-07-04 Michael Zanetti * close search onPressed outside of the header (f999de52a) * add some semicolons to follow style guide (effa0a499) 2014-07-04 Michał Sawicz * Merge trunk. (54ae052b4) 2014-07-04 Michael Zanetti * drop debug prints and unused code (5d4bba6ce) 2014-07-04 Mirco Müller * Group anchors. (194cb7c86) * Group anchors. (d2cf9b355) * Avoid QML-warning about invalid assignment. (0bba96f0d) 2014-07-04 Michał Sawicz * Merge new-header. (43bbdfb30) * Just tap in 0,0. (ddfff8f32) 2014-07-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (288e541db) 2014-07-03 Michał Sawicz * Make rating in PreviewRatingDisplay.qml non-interactive. (fdc8f8319) 2014-07-03 Gerry Boland * Simplify main.cpp significantly (e59a12ed7) * Merge unity8 trunk (9c4b7e7b9) * In tablet mode, shell also needs to update app interactive/focus state (97b41f28c) * Merge lp:unity8 trunk (7176e3e80) 2014-07-03 Michael Zanetti * make testPhoneStage pass after the modifications required for QtComp (81b28c098) 2014-07-03 Nick Dedekind * search disabled when not visible (3dd9194f8) * merged with trunk (af9cb0597) 2014-07-03 CI bot * Releasing 7.90+14.10.20140703.1-0ubuntu1 (10ed25090) 2014-07-03 Renato Araujo Oliveira Filho * Create IndicatorsLight.qml component used to control indicator led. (a0d22446f) 2014-07-03 Albert Astals * Fix valgrind warning by not emitting reset on model destructor (a77daa19f) * EasingCurve: Initialize members (ce6d88fb7) 2014-07-03 Michael Zanetti * change wording in launcher quicklist Fixes: 1332035 (be022135f) 2014-07-03 Michał Sawicz * Initial code for a payment button widget, to handle purchasing apps from the click scope. (629758cfe) 2014-07-03 Michael Zanetti * drop launcher item spacing Fixes: 1332022 (570181c89) 2014-07-03 Nick Dedekind * Moved [Message]MenuItemFacotory from Unity.Indicators plugin to qml folder. (c0edd753b) 2014-07-03 Leo Arias * Fixed style and static python errors. (6ce91e0bf) 2014-07-03 Michal Hruby * Cache network requests to reduce data usage and increase dash icon loading speed. (c8013e27d) 2014-07-03 Sebastien Bacher * Resync distro. (2ef2b55ed) 2014-07-03 Nick Dedekind * merged with trunk (52f87fe7b) * added comment to active property (f696961f3) 2014-07-03 Renato Araujo Oliveira Filho * Updated plugin.h license header. (dd4acef5c) 2014-07-03 Michael Zanetti * fix missing dataChanged when unpinning, extend tests to catch that (234cf7c5b) * align position of the clipper item with the iconItem for easier understanding (2879c526c) * revert unneeded import version bump (132c2e6f7) * drop a test in tst_Dash which just checked for the old tabbar header to update. that code is gone (51381446c) * hide search when unfocusing it and its empty (2489183c8) * shift some semicolons around (d5f1dff54) * replace the popover's integrated InverseMouseArea with our own, not covering the header's elements (19ad31dff) * add missing newline (82cb03b99) * revert import version bump (82b401be8) * add sourceSize.height (768915b1d) * one more if(string) change (73734f2a2) * ad SearchHistoryModel as a singleton (8654f9915) * add fixme comment (03cd2a615) * add missing opacity behavior (c2974798b) * drop some unused string contents (We still need the empty property though) (2928630dd) * fix weird size definition of Column (8ca9ee643) * change if (string) as per review suggestion (55d032f67) * indent more (481c942fb) * invert logic for unfocusField to simplify argument handling (98793b825) * drop close search history button (919598de6) * merge (7a4ba52bf) 2014-07-02 Michael Terry * Drop whois (5f2ea432b) 2014-07-02 Renato Araujo Oliveira Filho * Expose color, onMillisec and offMillisec properties to QML. (7cd27f206) 2014-07-02 Michael Zanetti * clip the corner of pinned icons as per new design (ca89475b8) 2014-07-02 Michael Terry * Merge from dialer-above (fb24274c4) * Fix qmluitest (b8ef878cb) * Better handle wrong password attempts (251731da3) * Use the password hint from AccountsService to determine whether to show pin or password prompt (a92978229) 2014-07-02 Michael Zanetti * fix the spacing on top of sim unlock notifications (bbcac78a0) 2014-07-02 Nick Dedekind * removed explicit panel hiding (9948b393f) 2014-07-02 Michael Zanetti * the bug says 70% opacity, while the mail said 60%. After checking with design, 70% is the correct value. (a94c4f74d) * update launcher background according to new design (bff75ae27) 2014-07-02 Renato Araujo Oliveira Filho * Fixed typos. (5c90c06db) 2014-07-02 Michael Zanetti * fix the spread being messed up when an app closes itself (84e894400) 2014-07-02 Renato Araujo Oliveira Filho * Fixed typos. (c15a1178c) 2014-07-02 Gerry Boland * Mir.Application module renamed to Unity.Application (35c22567b) 2014-07-02 Nick Dedekind * merged move-indicator-plugin (b87b9b814) 2014-07-02 Antti Kaijanmäki * qmltest for ModemInfoItem (db22a7ebc) * Add RoamingIndication.qml to qmldir as internal component. (899616f17) 2014-07-02 Michal Hruby * Remove unneeded include (a620e0e76) 2014-07-02 Gerry Boland * Rename of qml plugin from Mir.Application to Unity.Application (72f1b0f00) 2014-07-01 Daniel d'Andrada * Property focus the foreground application surface (eb21682a2) 2014-07-01 Michael Terry * Merge dialer-above branch (c6e3263d3) * Use PAM to check password validity (6262458aa) 2014-07-01 Michael Zanetti * fix typo (5bc004ef3) 2014-07-01 Albert Astals * Another Image -> Icon + color (72743f71f) * Use Icon instead of Image so we can use color :) (3c458234d) 2014-07-01 CI bot * Releasing 7.90+14.10.20140701.2-0ubuntu1 (e394e078b) 2014-07-01 Didier Roche * switch the default theme to suru Fixes: 1246688 (bad7b5139) 2014-07-01 Albert Astals * Merge (cafd35d20) 2014-07-01 Michael Zanetti * fix undefined reference (b69bcf1ca) 2014-07-01 Albert Astals * Some more applying of the customization (154757796) 2014-07-01 Rodney Dawes * Fix the test to work under C locale for jenkins. (d01d02f31) 2014-07-01 Albert Astals * ["page-header"]["logo"] support (3ef193383) * Implement foreground-color customization (with TODO) (d39234231) 2014-07-01 Michał Sawicz * paintedWidth deprecated. (d792ced9f) 2014-07-01 Albert Astals * Add support for "background-color" customization (914adf4d6) 2014-07-01 Michael Zanetti * fix phone right edge when there's only one app running (9eacc365b) 2014-07-01 Michał Sawicz * Use actions, too. (08bada315) 2014-07-01 Antti Kaijanmäki * merge upstream. (e22bf8918) * indicators: Add ModemInfoItem (ac0478988) 2014-07-01 Michael Terry * Disable emergency call button on wider devices (tablets) (5f4766ef0) 2014-07-01 Michał Sawicz * Drop old tests. (d3b5d09dc) 2014-07-01 Albert Astals * Merge (a89d74fac) 2014-07-01 Michael Zanetti * merge trunk (f43209ce7) * merge trunk (e4584ad57) * merge trunk (6894ac0fa) * merge trunk (e788d3dd7) * merge trunk (a547d49f5) * merge trunk (a3ed06b75) 2014-07-01 Michał Sawicz * Use StatusIcon from settings components. (bc4a6a4f3) 2014-07-01 Albert Astals * Fix valgrind warning by not emitting reset on model destructor (4034bbc5b) 2014-07-01 Nick Dedekind * more activecallhint tests (90ac2779d) 2014-07-01 Michael Zanetti * animate a bit further, to make sure we leave the screen before disappearing (ed4e7bf78) 2014-06-30 Leo Arias * Implemented the click application launcher icon. (0725b0214) * Added a test for clicking the app icon on the launcher. (a2c5ac93e) 2014-06-30 Michael Terry * Add some tests (f6767c9c8) 2014-06-30 Michael Zanetti * fix app's drop shadow margins (492818cd3) * reset the spreadview when we close the last app (039dd6641) * add support for the topMarginProgress to Tablet mode too (bbebd2e6f) * fixes for the tablet stages (0c779a68e) 2014-06-30 Michael Terry * Rename mock phone-app to dialer-app, to match modern usage and this branch's hard-coding of the name for the dialer (d4c4cb103) 2014-06-30 Michal Hruby * Hook up with QNetworkConfigurationManager (e15bd647a) 2014-06-30 Albert Astals * After some discussion, 0 makes for a better initializing value (a34997fdc) * Initialize members (b239c948a) 2014-06-30 Rodney Dawes * More fixes per review. (d3c8d3d1f) * Add implicit height/width back to the widget. Clean up the qml unit tests and make them work. Add another test for the text value of the button. Fix the mock to default to sending an error when no item id is found. (ee847d590) 2014-06-30 Michał Sawicz * Add support for wide icons. (d04b7fb3b) 2014-06-30 Michael Terry * Merge in show-greeter-dbus (a668bad4f) 2014-06-30 Nick Dedekind * phone-app -> dialer-app (aaa94eba5) 2014-06-30 Michael Terry * Merge from trunk (6321cc14a) 2014-06-30 Michał Sawicz * Fix merges in build.sh and debian/control. (d59c11780) 2014-06-30 Michael Zanetti * cleanup Stages folder (09fb98cd7) * ApplicationManager now appends newly added apps. Focus them using the focus animation (ed8da11c4) 2014-06-30 Michal Hruby * Merge lp:~saviq/unity8/cache-network-data (82f700e32) 2014-06-30 Michał Sawicz * Merge trunk. (50b6fe0f7) 2014-06-30 Michael Zanetti * also allow entering the spread with only one running app (df32b4071) * don't close the spread when we close the focused app (c69ade059) * drop some obsolete code and bring back the appSwitchingAnimation (570e86f1b) 2014-06-30 Nick Dedekind * Fixed Panel tests (3e5d92a49) * merged with trunk (795e53c2b) 2014-06-29 Michael Terry * Disable panel and launcher too when in emergency mode (e85a7f661) * Add missing import (b32988915) 2014-06-28 Leo Arias * Added an autopilot helper to click a scope item. (e768f04ad) 2014-06-28 Renato Araujo Oliveira Filho * Removed empty lines. (9febf4326) 2014-06-27 Michael Terry * First pass at ShowGreeter support (b93ab2ac1) * Merge from trunk (983dbc6fa) 2014-06-27 Rodney Dawes * Fix MockPayments.h header comment. (2f7b59ea6) * Add requested tests. (1c08635b8) 2014-06-27 Renato Araujo Oliveira Filho * Create IndicatorsLight.qml component used to control indicator led. (5b8c50f13) 2014-06-27 Michael Zanetti * drop debug print (ba7c78ad7) * drop commented line (60028d91e) * drop search part from panel tests. (2b8741229) * update GenericScopeView tests (473d1915e) * drop artwork not used any more (66e793b39) * drop obsolete PageHeaderLabel (623844d99) * update HUD to use this the new PageHeader instead of PageHeaderLabel (a0b06107d) * update/add more tests for PageHeader, rename from PageHeaderLabel (a1ab52fe0) 2014-06-27 Rodney Dawes * Fix the license headers. (4670c3687) * More cleanup for review. (22f138cf1) 2014-06-27 Michael Zanetti * rewrite PageHeader.qml (6c9d92e05) 2014-06-27 Rodney Dawes * Cleanups from review. (b9dd4e275) * Drop the private qt5 ui includes in the cmake. (ed28e0cc1) * Add pay-service to install_dependencies in build.sh. (f863268f9) * [ Michael Terry ]; Fix path in launcher mock after moving our mock icons, to avoid a lot of "icon not found" warnings during qmluitests.; Fix the testMultiGreeter qmluitest. Incoming method variables are apparently read-only in Qt5.3. (LP: #1332488) [ CI bot ]; Resync trunk [ Michał Sawicz ]; Adapt scope mock to new api and quiet unused variable warnings.; Fix dynamic overlay height. (LP: #1334879); Don't center items in CardVerticalJournal, kind of beats the purpose... Also don't bind unnecessarily. [ Ying-Chun Liu ]; Fix LP:1330957 Fix some failed test cases. (LP: #1330957) [ Albert Astals . Don't seem to need this waitForRendering And makes test fail in 5.3 [ Alberto Aguirre ]; Update Powerd plugin and Shell.qml to accommodate changes in the display power state notification. (7eb41076c) 2014-06-27 Mirco Müller * Merged again with trunk and solved merge-conflicts. (cc55bedcb) 2014-06-27 Nick Dedekind * use x-canonical-extra-label (841eb4f0d) 2014-06-27 Leo Arias * Merged with prerequisite. (6699f459a) 2014-06-27 Michał Sawicz * Merge trunk. (edeb5b1fb) 2014-06-27 Leo Arias * Fixed the print error. (86235e0dc) 2014-06-27 Gerry Boland * Merge trunk (2133dde79) 2014-06-27 Leo Arias * More flake8 fixes. (9821ade13) * Merged with trunk. (570ac2d02) 2014-06-27 Nick Dedekind * fixed tests (30bfc5a65) 2014-06-27 CI bot * Releasing 7.89+14.10.20140627-0ubuntu1 (9ecb67cd5) 2014-06-27 Michał Sawicz * Don't center items in CardVerticalJournal, kind of beats the purpose... Also don't bind unnecessarily. (525995e4e) * Fix dynamic overlay height. Fixes: 1334879 (c9748a67e) 2014-06-27 Michael Terry * Fix the testMultiGreeter qmluitest. Incoming method variables are apparently read-only in Qt5.3. Fixes: 1332488 (65fc57053) 2014-06-27 Albert Astals * Don't seem to need this waitForRendering (0eb1d759b) 2014-06-27 Ying-Chun Liu * Fix LP:1330957 Fix some failed test cases. Fixes: 1330957 (4d044fc48) 2014-06-27 Michael Terry * Fix path in launcher mock after moving our mock icons, to avoid a lot of "icon not found" warnings during qmluitests. (ea623d873) 2014-06-27 Michał Sawicz * Adapt scope mock to new api and quiet unused variable warnings. (4c71a8a4f) * Bump libunity-api-dev B-D. (6460bf8f6) * Avoid unused variable warnings. (bc53b33bc) * Adapt mock to new api. (e5182f202) 2014-06-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5454d2a44) 2014-06-26 Michał Sawicz * Don't center items in CardVerticalJournal, kind of beats the purpose... Also don't bind unnecessarily. (df8b846dc) 2014-06-26 CI bot * Resync trunk (85544a4b3) 2014-06-26 Nick Dedekind * use app focus for dialer hint (4a6be79d5) * line length (1bc84fcd9) 2014-06-26 Michael Zanetti * update testDash to new implementation (2a144c663) * update to latest changes in uitk (2b596561d) * update to changes in UITK api (e987e6c15) 2014-06-26 Nick Dedekind * updated transfer actions (88c1c97e5) 2014-06-26 Michael Zanetti * Use new header with integrated search action, dropping the search entry from the panel (19a118988) 2014-06-26 Nick Dedekind * merged with lp:~nick-dedekind/unity8/move-indicator-qml (8c5986a27) 2014-06-26 Michał Sawicz * Merge move-indicator-qml. (62fce2f70) 2014-06-26 Nick Dedekind * moved qml to root plugin dir. moved IndicatoBase to Panel/Indicators (2d4caa603) 2014-06-26 Michał Sawicz * Merge manual-qmltypes. (125e63353) * Do not generate qmltypes for the duplicate plugin. (43ec45af6) * Add the generated .qmltypes file. (8c86fa3c7) * Merge manual-qmltypes (769caa7ab) 2014-06-26 Rodney Dawes * Generate the qmltypes files without a full path being stored inside them. (16d28a9ed) 2014-06-26 Michał Sawicz * Check in .qmltypes files. (e942de27a) * Only generate .qmltypes files manually, no need to do it build-time. (d554ebb0f) 2014-06-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1dc408f4d) 2014-06-26 Leo Arias * Fixed pep8. (ec664cda8) * Finish the test_click_dash_icon_must_unfocus_application. (2f76b9844) * Typo (4c4ef3816) * Typo (fea5a9d3d) * Made get_launcher private. (b68f7d73c) * Fixed the swipe to the left. (652ca3647) * Fixed the test. (6b5b77e5b) * Added tests for open and close launcher. (30aaba0a3) * Made the test pass. (18a1a1788) 2014-06-25 Leo Arias * Fixed the test. (e31e70432) * Fixed the test. (1e98ea2bf) * Added test_open_launcher_with_launcher_opened_must_do_nothing. (c2321db56) * Fixed the test. (27d6c4943) * Added a test for open launcher. (ef7610d54) 2014-06-25 Rodney Dawes * Remove an incorrect authored by line. (5d61a5548) * [ Ying-Chun Liu ]; Add logout support. Reviewed by: Daniel d'Andrada (LP: #1302213) [ Michał Sawicz ]; Make so that fixedArtShapeSize actually fixes artShapeSize. [ Albert Astals ]; Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467); Make so that fixedArtShapeSize actually fixes artShapeSize. [ Mirco Müller ]; Added the frontend-part of sound-hint support for notifications with updated QML-tests.; New rebuild forced (de9a894c3) 2014-06-25 Michael Terry * Raise lockscreen immediately on launcher clicks instead of waiting for app focus (c16c66aa7) 2014-06-25 Leo Arias * Merged with trunk. (65a6b130a) 2014-06-25 Michael Zanetti * implement swipe to close in spread (a5c39f182) 2014-06-25 Nick Dedekind * fix animation (87cf8e79a) 2014-06-25 Ying-Chun Liu * Revert tst_Card.qml changes. (5ed503f9a) 2014-06-24 Michael Terry * First pass at dialer-above-greeter (e50ae7308) 2014-06-24 Daniel d'Andrada * Fix InputMethod display (316ca48ab) 2014-06-24 Michael Terry * Merge from trunk (7d8c5d57b) 2014-06-24 Michał Sawicz * Fix changelog. (3b179636a) 2014-06-24 CI bot * Releasing 7.89+14.10.20140624.1-0ubuntu1 (31f1c468f) 2014-06-24 Alberto Aguirre * Update Powerd plugin and Shell.qml to accommodate changes in the display power state notification. (7e2ea99b7) 2014-06-24 Michał Sawicz * Bump UITK dep even more. (109ec0e76) * Merge trunk. (c4868974f) 2014-06-24 Alberto Aguirre * merge trunk again... (c1924f581) 2014-06-24 Michael Zanetti * fix scaling of fullscreen vs non-fullscreen apps in spread and their drop shadow (04b954c90) 2014-06-24 Michał Sawicz * Fix dynamic overlay height. (aafe3c075) 2014-06-24 Michael Zanetti * drop debug print (67f6d253d) * merge prerequisite branch (915647523) * update launcher highlight graphics as requested by design (45384567c) 2014-06-24 CI bot * Releasing 7.89+14.10.20140624-0ubuntu1 (ad0a13f8e) 2014-06-24 Ying-Chun Liu * Add logout support. (625c3242d) 2014-06-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a44e6824b) 2014-06-23 Michael Terry * Use proper hashing for passwords (6e1bdb877) 2014-06-23 Rodney Dawes * More cleanup. (0368a496e) 2014-06-23 Gerry Boland * Disable rotation temporarily to workaround crash (030cf625d) 2014-06-23 Rodney Dawes * Refactor the pay button a bit to follow pay-service expectations better. (7add60a2f) 2014-06-23 Nick Dedekind * removed unused test function (66344cf63) * fixed tests (b2d121a77) * reverted url dispatcher (7b084d92a) * fixed activate (1b1911785) 2014-06-23 Mirco Müller * Tighten up anchors code a bit. (3f75838ca) 2014-06-23 Nick Dedekind * use url-dispatcher (ce76a49a4) * removed some old api (5a22b8107) * single line active call hint (cdc76fd6d) * merged with trunk (e01825cd7) 2014-06-23 Mirco Müller * Use a regular expression instead of two custom JavaScript-functions for the icon-label split of the action-label. (073268b2d) * Merged with trunk. (a5b70600e) 2014-06-23 Michael Zanetti * make launcher items live (6ba2ce754) * make the launcher drag'n'drop target indicator more prominent (9a18b67fa) 2014-06-23 CI bot * Releasing 7.89+14.10.20140623.1-0ubuntu1 (5717f640a) 2014-06-23 Michał Sawicz * Make so that fixedArtShapeSize actually fixes artShapeSize. (d232e39cb) 2014-06-23 Albert Astals * Add VerticalJournal integration to Dash/scopes/QML Fixes: 1326467 (3acc19448) 2014-06-23 Mirco Müller * Added the frontend-part of sound-hint support for notifications with updated QML-tests. (e990826b7) 2014-06-23 Michael Zanetti * update launcher home button design (b6322dfe2) * change working in quicklist menu (f71debcc0) * drop spacing between launcher items (ed7338659) 2014-06-23 Michał Sawicz * Merge lp:~aacid/unity8/dashviews_integration. (9fa62d635) * Merge trunk. (4639d843e) 2014-06-22 Michael Terry * Merge from trunk (fd2a8313c) 2014-06-20 Michael Terry * Fix tst_MultiGreeter.qml (6747b5366) 2014-06-20 Alberto Aguirre * merge trunk (48b7a1496) 2014-06-21 Ying-Chun Liu * Add back quit signal connect. (aea520f1b) 2014-06-20 Gerry Boland * Bad trunk merge, unity-mir not wanted, removing (69310f1a8) 2014-06-20 Michael Zanetti * fade out launcher in place instead of animating to the left in some circumstances (e96f0deec) 2014-06-20 Gerry Boland * Merge trunk (da5b7008b) 2014-06-20 Nick Dedekind * use call hint visibility api from telephony (d03a6a070) 2014-06-20 Mirco Müller * More cleanup and fixes from MP-comments. (dd02f390a) * Further fixes from MP-comments. (100f3008c) 2014-06-20 Nick Dedekind * merged with lp:~nick-dedekind/unity8/move-menu-item-factory (e430dd593) * updates to transfer items (39e63c87b) * Moved MenuItemFactory & MessageMenuItemFactory from Unity.Indicators (6776991fd) 2014-06-20 Ying-Chun Liu * Rename variables. (b23050a43) 2014-06-20 Mirco Müller * The even newer Design wants flat colors. But the ubuntu-ui-toolkit does not offer those yet. Thus I'll stick with these hard-coded values for the time being. I'll change the notification-code once the newer themed flat colors become available in our SDK. (fa4019558) 2014-06-20 Albert Astals * Account for special behaviour of VJ expandable attribute not being set on load but after (0ec6371b8) * Only animate height when told to (0713febd4) * Seems doxygen needs 4 spaces in front to be told not to join lines (3a70aa863) * Don't seem to need this waitForRendering (c8440cd74) * Merge upstream (e1e431fdb) 2014-06-19 Rodney Dawes * Fix the copyright year in the Payments plug-in. (d592b92ad) * [ Albert Astals ] Departments support (LP: #1320847) (d831f8688) 2014-06-19 CI bot * Releasing 7.89+14.10.20140619.3-0ubuntu1 (e82a901eb) * No change rebuild against Qt 5.3 (9c9f03bfe) 2014-06-19 Ying-Chun Liu * compare null (1d0cbdc61) * Fix some failed test cases due to null. (5f47c41db) * Fix LP:1330957 (ec8cdcfc8) 2014-06-19 Nick Dedekind * merged with trunk (b611873ba) 2014-06-19 CI bot * Releasing 7.89+14.10.20140619.2-0ubuntu1 (3d9c981c8) 2014-06-19 Albert Astals * Departments support Fixes: 1320847 (7b29f3dad) * Remove index == departmentListView.currentIndex (0df89fadf) * TODO++ (a36505acf) * Use just one image (316df0083) * Group anchors (cbed9e713) * Use x instead of multiplication (f425c64e8) * Use anchors (c86342552) * Use anchors (439de1674) * Use a Column (2fdcd1fe3) * Some spacing here (c790b142d) * Make this chevron smaller too (e340ac911) 2014-06-18 Michael Terry * Correctly bind active property (ed6387089) 2014-06-18 Rodney Dawes * [ Pawel Stolowski ]; Extend the hack for click scope categories with the upcoming 'store' category: single-tap on results from the 'store' category should activate them, instead of requesting a preview. (LP: #1326292) [ Albert Astals ]; Drop the " Preview" suffix from Preview title As requested in https://bugs.launchpad.net/unity8/+bug/1316671 (LP: #1316671) [ Michael Terry ]; Revert split greeter for now. We will bring it back as an option for Desktop, but use a big hammer revert right now to get Touch back in shape. [ CI bot ]; Fix build problems. Reviewed by: Michael Terry (LP: #1328850) [ Michał Sawicz ]; Make lockscreen buttons translatable. [ Albert Astals . Correctly mark these functions as overrides; Remove connections to non existant signal; Better test nam. Improvements for headerless categories LVPWH: No section name -> no header LVPWH: New hasSectionHeader context property for delegates GSV: Add topMargin if no hasSectionHeader (LP: #1326415); Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid work again [ Michael Zanetti ]; Don't crash when we get an invalid app from ApplicationManager (LP: #1309162) [ Andrea Cimitan ]; Workaround for lp1324159 (LP: #1322233, #1324159) [ CI bot ]; Resync trunk [ Florian Boucault ]; Application startup: changed splash rectangle to be black instead of white and added a neat little animation. (LP: #1124265) [ Michael Terry ]; Bump version so ubuntu-touch-session can reference this one [ CI bot ]; Resync trunk [ Michał Sawicz ]; Move env setup past session init in greeter wrapper. (LP: #1325882); no change rebuild; drop dbus-x11 dependency of unity8-greeter, it makes us end up with multiple session dbus daemons which breaks many AP tests in the lab [ Michael Terry ]; Bump version for Breaks due to unity8-greeter; In split mode, determine whether the application identifiers in AccountsService are click packages or not, so we know the correct url prefix to use.; Start logrotate in the greeter's session. (373fe1441) 2014-06-18 Michael Terry * add tests for new property (e7a428837) * First pass at IsActive property for DBus (92b45e38b) 2014-06-18 Albert Astals * Make sure we animate the height of the list only when we need to (1d213956e) * Make the chevrons a bit smaller (1024f461e) 2014-06-18 Nick Dedekind * merged with trunk (4e86d64eb) 2014-06-18 Albert Astals * test for the last leaf fix (48ca58b60) * better leaf detection (bc931cad0) * Fix the calculation of maxHeight (9087b8ae8) * Move the movement between lists faster (4202f897c) * Animate opacity of the blackRect (efd7f0baa) * Make the rowHeight be the headerHeight if we have it (0e3eeac21) 2014-06-18 Mirco Müller * Further MP-comment tweaks. (28cb8d81e) 2014-06-18 Albert Astals * Merge lp:unity8 (98fccf501) 2014-06-17 Leo Arias * Fixed style and static python errors. (be07744a1) 2014-06-17 Michael Terry * Use paths.h instead of building with TOP_SRCDIR (0d25a9dc2) 2014-06-17 Albert Astals * Unwrap lines, make _data functions simpler (9c3600940) * Typo + year fix (a6fb77d33) * Make this a real (db7c9c722) * Small fixes: (952e11ac9) 2014-06-17 Mirco Müller * Rather use onOpacityChanged() than onVisibleChanged() to trigger playing of notification-sound. (48481d423) * Merge with trunk. (243492ddd) 2014-06-17 Albert Astals * rename afterLineChildItem, name wasn't great (1129e290c) * todo++ (c8292ecc7) * We need the Dash departments in the temp scope too (2af907c5c) * hardcode colors in labels like we do everywhere (d3205bf1f) 2014-06-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cbf1d544b) 2014-06-16 Alberto Aguirre * merge trunk (93c12156a) * tests: fix Powerd constant name (3ee2afda3) * Hook auto brightness to unity screen instead of powerd (00dd2417f) 2014-06-16 Daniel d'Andrada * No black rectangle on right-edge drag with no apps running (cba872c3a) * Remove duplicate files. (ee997ab63) 2014-06-16 Alberto Aguirre * merge trunk (90de5294d) 2014-06-16 CI bot * Releasing 7.89+14.10.20140616.1-0ubuntu1 (2248fa87d) 2014-06-16 Albert Astals * Drop the " Preview" suffix from Preview title (5f06da06d) 2014-06-16 Pawel Stolowski * Extend the hack for click scope categories with the upcoming 'store' category: single-tap on results from the 'store' category should activate them, instead of requesting a preview. Fixes: 1326292 (847b5126e) 2014-06-16 Mirco Müller * Enforce dependency on 0.1.2 version of notification-plugin to reflect newly supported max. number of snap-decision actions. (eeea6cfbe) * White space fixes. (d77f71265) 2014-06-16 Daniel d'Andrada * Merge latest lp:unity8 (trunk) (c4e227044) 2014-06-16 Mirco Müller * Fixed issues from MP-comments. (dac7e6729) 2014-06-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (266bfda3b) 2014-06-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8f3910129) 2014-06-13 Ying-Chun Liu * clean CMakefile.txt again (53c0167a1) * Remove unnecessary lines (f40b7a5a9) * Merge trunk (5bba2cab8) 2014-06-13 Albert Astals * Check fixedArtShapeSizeAspect (235945e03) * and the tests (42079617d) * != -1 → > 0 (8f2114795) * c&p mistake found by Cimi (849ae541f) * Add test for fixedArtShapeSize (f782fac9e) 2014-06-13 CI bot * Releasing 7.89+14.10.20140613-0ubuntu1 (51117c555) * Fix build problems. Reviewed by: Michael Terry Fixes: 1328850 (2ade84198) 2014-06-13 Michael Terry * Revert split greeter. This gives us back the integrated greeter for Touch images, to reduce the level of regressions we are seeing. (90a3940ec) 2014-06-13 Albert Astals * update pot (3be5a30c3) * Merge ~mterry/unity8/unsplit/ (3453aa822) * And now make it syntactically correct (afed06b20) * Drop the " Preview" suffix from Preview title (8a18cc286) 2014-06-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fbb99be64) 2014-06-12 Michael Terry * Use same clock object path as rest of unity8 (0f324ece5) 2014-06-12 Albert Astals * Merge (05af436cc) 2014-06-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (24a3d5955) 2014-06-11 Daniel d'Andrada * Provide com.canonical.Unity.Shell service to publish the rotation angle (9f964060a) * Fix build (db4d37495) * Fix build (6d7ca1e27) 2014-06-11 Michael Terry * Bump version (4078317c7) * First pass at reverting split greeter (657321bf5) 2014-06-11 Ying-Chun Liu * merge trunk (7dacae9fc) 2014-06-11 Pawel Stolowski * Merged trunk. (f73ae16e3) 2014-06-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f98122608) 2014-06-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (253e81f7a) 2014-06-09 Daniel d'Andrada * Polishing the rotation animation (b30d79157) * Implement 180 degrees' rotation transitions (13e745b22) * Implement rotation animations to/from all adjacent angles (9649c3a60) * Desperate hack to fix QML error (d03fbe879) 2014-06-09 Gerry Boland * No rotation animations on startup (81d32160d) 2014-06-09 Pawel Stolowski * Extend the hack for click scope categores with 'store' category, until the real fix for https://bugs.launchpad.net/unity-scopes-shell/+bug/1326292 is ready. (d70b44e46) 2014-06-09 Daniel d'Andrada * WindowScreenshot.qml: fix trailing whitespace and add copyright header (f97553c5c) 2014-06-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (151d6ba67) 2014-06-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7e60a008f) 2014-06-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7de82e6a5) 2014-06-06 Daniel d'Andrada * Add a crossfading orientation animation (61396242e) * Add a crossfading orientation animation (eed79c658) 2014-06-06 Michael Zanetti * add a background for the side stage and move the drag handle into the correct z ordering (34af59282) 2014-06-06 Ying-Chun Liu * Merge upstream. (49e5760eb) 2014-06-06 Gerry Boland * Splash needs to block mouse events (2b782a210) 2014-06-06 Michael Zanetti * fix Drag area direction (77cfe74e3) 2014-06-06 CI bot * Releasing 7.88+14.10.20140606-0ubuntu1 (4283b5d0b) 2014-06-06 Michael Zanetti * Don't crash when we get an invalid app from ApplicationManager Fixes: 1309162 (117f17e37) 2014-06-06 Albert Astals * Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid work again (9d7ac1859) * Improvements for headerless categories (4c9ae7700) * Better test name (a980ea027) 2014-06-06 Andrea Cimitan * Workaround for lp1324159 Fixes: 1322233, 1324159 (bdbee9ead) 2014-06-06 Michał Sawicz * Make lockscreen buttons translatable. (0d26b86e2) 2014-06-06 Albert Astals * Remove connections to non existant signal (a29553571) 2014-06-06 Florian Boucault * Application startup: changed splash rectangle to be black instead of white and added a neat little animation. Fixes: 1124265 (de035fa55) 2014-06-06 Albert Astals * Correctly mark these functions as overrides (fe54ab3e4) * Fix test expectations (5aca790aa) * Make so that fixedArtShapeSize actually fixes artShapeSize (a60fe7f15) 2014-06-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1067acde7) 2014-06-06 Gerry Boland * Splash screen support (0f0d5ae3e) * AppMan supplies proper model now, use it. Splash screen works better now (7ab33aaaa) 2014-06-05 Daniel d'Andrada * use ApplicationManaget.empty instead of SurfaceManager.empty (c9f4dde5b) 2014-06-05 Michael Zanetti * fix phone stage snapping (17e290ebb) 2014-06-05 Albert Astals * Better doc of what it does (231420c32) * docu fix (33cc0b38f) * We don't really need to specify maximumNumberOfColumns (aa0810563) 2014-06-05 Gerry Boland * Add delay before removing splash, masks surface resize glitching (ce8caa46c) 2014-06-05 Albert Astals * Make CardVerticalJournal a proper DashRenderer (bc529822a) 2014-06-05 Gerry Boland * What I have so far (1e319e9fc) 2014-06-05 Michael Zanetti * hide dropshadow when not in spread (8a0809da4) 2014-06-05 Gerry Boland * remove some debug comments and duplidates (4c569edaf) 2014-06-05 Michael Zanetti * disable the side stage drag handle while in spread (247b1c96f) * fix stacking order when dragging in the SS and comitting to full spread in one gesture (affd15325) * sync fixes from trunk (67fd44248) 2014-06-05 Albert Astals * Make tryResponsiveVerticalJournal start again (11def82b2) * Merge lp:~aacid/unity8/makeTryVJHJOGwork (ddc69fddb) * Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid work again (5743a90db) 2014-06-05 Gerry Boland * Set maximizedAppTopMargin for tablet, fix apps always being full-height (9177ca271) * Work so far (37457f29f) 2014-06-05 Albert Astals * Bring changes over from lp:~unity-team/unity8/new-scopes-vj-integration (cf10c753e) * Improvements for headerless categories (f481e940e) 2014-06-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f9c04e294) 2014-06-04 Daniel d'Andrada * InputMethod stays in front of notifications or behind the launcher (444b23cb1) 2014-06-04 CI bot * Resync trunk (2cc8728b2) 2014-06-04 Daniel d'Andrada * Work around the bug where Dash changed currentIndex when resize (097c24055) * Work around the bug where Dash changed currentIndex when resize (ccac19f66) 2014-06-04 Michael Zanetti * sync fixes from trunk (c11e9a7ca) 2014-06-04 Daniel d'Andrada * Merge with lp:unity8 revision 932 (50da7a71c) * Remove unused orientationAngle properties (1844ea15b) 2014-06-04 Michael Zanetti * fix easingcurve, adjust animation speed (8fc0f86a6) 2014-06-04 Michał Sawicz * Merge trunk. (6f8457e3e) 2014-06-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6efb4eb50) 2014-06-03 CI bot * Releasing 7.88+14.10.20140603.1-0ubuntu1 (94ef91867) 2014-06-03 Michael Terry * Bring back dbus-x11 to fix dbus usage in user session more properly. (c5c4dbd0c) * Manually start dbus-daemon to avoid pulling in dbus-x11 after all (3054e8e7b) 2014-06-03 Daniel d'Andrada * Resize input method surfaces to match the Shell size (2628b443d) * Resize input method surfaces to match the Shell size (0f863ba0a) 2014-06-03 Michael Zanetti * make it work better when only side stage apps are around (45cd840fb) 2014-06-03 Michael Terry * Bump version (4f83e917a) * Undo wrapper changes too (1c819884b) 2014-06-03 Michael Zanetti * sync progress for tablet right edge from trunk (28eaf6c88) 2014-06-03 Michael Terry * Add back dbux-x11 for greeter (e53654582) 2014-06-03 Michael Zanetti * damn version check (3ca11a0ab) * properly bump changelog (e08f346a9) * bump version (fd59fbd86) * more progress on the tablet right edge (c392e3c81) 2014-06-03 Gerry Boland * Fix orientation on manta (5555897a1) 2014-06-03 CI bot * Releasing 7.87+14.10.20140603.1-0ubuntu1 (a4297fe10) 2014-06-03 Michał Sawicz * Move env setup past session init in greeter wrapper. Fixes: 1325882 (e04ee39cc) * Resync direct distro uploads. (e0f5d2203) 2014-06-03 Oliver Gravert * Simpler session path passing. (6655fcfe3) 2014-06-03 Oliver Grawert * Also manually start dbus. (8ac2b4b70) 2014-06-03 Michał Sawicz * Move env setup past session init. (2ff532c73) * Resync direct distro uploads. (683d2ec15) 2014-06-03 Michael Zanetti * really fix interaction while in spread mode (a0d4ccec5) 2014-06-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (234d596ef) 2014-06-02 Albert Astals * More renames... (69342cbc0) * Better names here too (0403ee6c0) * Better test name (f3b4d7707) * need new api (9354405b5) * Merge (c73f9733c) 2014-06-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c379980ef) 2014-06-01 CI bot * Resync trunk (f166ea504) 2014-06-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (469a3efc2) 2014-05-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (970314971) 2014-05-30 Michael Zanetti * fix interaction when in spread (49d56213d) * don't collide states (130e8e7e5) 2014-05-30 Ying-Chun Liu * Only eats release events on specified keys. (0cca6c2dc) 2014-05-30 Michael Zanetti * sync TabletStage changes from work on trunk (35fa70491) * fix import (85e5aa0dc) 2014-05-30 CI bot * Releasing 7.87+14.10.20140530.1-0ubuntu1 (2211b0c8d) 2014-05-30 Michael Terry * Start logrotate in the greeter's session. (0635f31a7) * In split mode, determine whether the application identifiers in AccountsService are click packages or not, so we know the correct url prefix to use. (53527e208) * Split the welcome screen into its own executable and allow it to be a proper LightDM greeter. (65045afad) * remove whitespace changes (cf40464d6) * Simplify logic (ee9d7a614) * Make method more robust in the face of weird inputs (e0441d6e7) 2014-05-30 Daniel d'Andrada * Remove debug leftover (b60abebaf) * Make sure it's a binding (34ef4970b) * Some more s/SurfaceManager/ApplicationManager clean up (086cccef2) 2014-05-30 Michael Zanetti * some more progress on making the tablet right edge work (c9d806cb7) 2014-05-30 Daniel d'Andrada * Use ApplicationManager as the model instead of SurfaceManager in the stage (6586a0bfe) 2014-05-30 Gerry Boland * Fix orientation to landscape for Flo (6e9724631) * Whitespace fix (0f8e500e3) 2014-05-29 Michael Terry * Fix appId parsing (5c6b4a78c) * Add missing commits (0905b5f71) 2014-05-29 Mirco Müller * Cheat a bit (329506cda) * Start adapting the notification autopilot test for snap-decisions with ComboButton. (a75768775) 2014-05-29 Rodney Dawes * [ Andrea Cimitan ]; Passes to make tryCommand -qmljsdebugger=port:3768 to enable debug/profiling test apps; Fixes carousel shadow [ Michał Sawicz ]; Use dpkg-architecture, not gcc, to determine the machine triplet. [ Ying-Chun Liu ]; Fix ZoomableImage test failure. (LP: #1317254) [ Albert Astals ]; We don't need iconutils in this mock; Don't reserve space for mascot if no mascot is specified (LP: #1319343); CardHeader is no more, remove stale line in CMakeLists.tx. GenericScopeViewTest: Wait a bit more Otherwise sometimes we end getting up the wrong delegate (maybe one that will be garbage collected?) (LP: #1322279); Fix crash in organicgridtest [ Daniel d'Andrada ]; Remove Shell's underlay background image as it cannot be seen anymore Now that the Dash has its own, opaque, background, the underlay's background image can no longer be seen. So it's just a waste of resources to have it. [ Michael Terry ] * Use the same animation when dismissing a greeter slide from the launcher as from a normal greeter drag. (LP: #1316513) [ Michael Zanetti ]; enhance lockscreen add a retry indication label (e.g. 3 attempts left). add an additional label (e.g. phone number for multi sim). add a infoPopup (e.g. to display a warning for last retry). add min and max limit values. add tests for the above (LP: #1302050) (57aac5bbd) * Remove extra whitespace. (3c32ec8c9) 2014-05-29 Michael Terry * Merge from split (7b7ed209b) * More reliably mark greeter as re-enabled (acf0ab7a2) * undo accidental commits (70e3a15bd) 2014-05-29 Albert Astals * Tablet mode (ccb9c9b00) 2014-05-29 Rodney Dawes * Add dependency for libpay1-dev and pay-service. (ff6868937) 2014-05-29 Mirco Müller * Adapt notification qmltest to reflect the new layout of snap-decisions with the ComboButton. (c1725b977) 2014-05-29 Michael Terry * Compile fixes (de9fe6dd2) * Add method to mock (13d410290) 2014-05-29 Rodney Dawes * Make the plug-in work and send the data back. (0d7c80827) 2014-05-29 Michael Terry * Handle short appIds in launcher data (08b3c3b74) 2014-05-29 Ying-Chun Liu * Add power dialog (ec7d52020) 2014-05-29 Albert Astals * missed this one (5365ece42) * Adapt to api changes (8b72bb062) 2014-05-29 Ying-Chun Liu * change hold timer to 2 sec. (b3e57175f) 2014-05-29 Albert Astals * A test for departments (8d1fce8f0) * Small fixes here and there (b3088f844) 2014-05-29 Mirco Müller * Get rid of commented out code. (3d5c63ff4) * Added two JavaScript-functions that extract icon-name and label from additional actions meant to populate the ComboButton. (e15b84f13) 2014-05-29 Ying-Chun Liu * Add dbus interface test. (5668b5e79) 2014-05-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (87a790035) 2014-05-28 Alejandro J. Cura * Note that the observer will be called in a different thread (8fc8a8f20) 2014-05-28 Mirco Müller * Work around ComboButton bug/feature makeing content flickable by default. Fixing height-calculation for comboList-content. (bd298023c) 2014-05-28 Albert Astals * don't need these (ddee42497) * add override (32159ced9) * no need to remove this (90daa6a92) * Use the new unity-api (90b9f85b2) 2014-05-28 Andrea Cimitan * Workaround for LP 1324159 (7b9f66456) 2014-05-28 Mirco Müller * Rename id-names and clean up code a bit. (4c8b4c825) 2014-05-28 Albert Astals * Improve condition (ba99bef62) * Show the "all" button if you are on the root with a leaf selected (c1f85bab0) 2014-05-28 Ying-Chun Liu * Add poweroff key catching. (369c47f6c) 2014-05-28 Mirco Müller * Hook up main button of the ComboButton, skip ComboButton if there are less than 4 actions passed. (b42c017e1) 2014-05-28 Alejandro J. Cura * Use libpayto start the purchase (ffedb92f8) 2014-05-28 Albert Astals * sourceSize for svn + tick as png (7d7c622b0) * We have an isRoot property in departments now (a277802ba) 2014-05-28 Michael Terry * Merge from split (e6716d944) * Merge from trunk (49c02bd74) 2014-05-28 Ying-Chun Liu * [ Albert Astals ]; Use Interface classes from unity-api [ Ubuntu daily release ]; New rebuild forced [ Albert Astals . Use the new displayMargin feature Also port our DashViews to use same naming and behaviour + update tests [ Ying-Chun Liu (PaulLiu) ]; Add logout/reboot/shutdown dialog and methods (d85f493c8) 2014-05-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (39afe1f66) 2014-05-27 Michał Sawicz * Merge trunk. (edd1e52c0) 2014-05-27 Ying-Chun Liu * Add reboot/shutdown (c9cffcb6f) 2014-05-27 Mirco Müller * Some more margin-tweaks. (aa3da79cd) 2014-05-27 Nick Dedekind * changed standard menu to use Ubuntu.Settings.Menus.StandardMenu (0c789de16) 2014-05-27 Mirco Müller * Some more layout tweaks. (96f65c8bf) * Vertically align the text to the icon. (30e8b6919) * Don't use a Row element. (75729fd3d) 2014-05-27 Alejandro J. Cura * Use the Payments API (156aa46ab) 2014-05-27 Daniel d'Andrada * Use ApplicationManager.topmostApplication instead of SurfaceManager.topmostSurface (703805798) 2014-05-27 Albert Astals * Fix "" being a a valid department (i.e. the root) (beb9977cb) 2014-05-27 Michał Sawicz * Make lockscreen buttons translatable. (44bdd4e35) 2014-05-27 Daniel d'Andrada * Use ApplicationManager as the model instead of SurfaceManager in the stage (56e73113b) * Use ApplicationManager as the model instead of SurfaceManager in the stage (21f803aca) 2014-05-27 Gerry Boland * Fix orientation to landscape for Flo (e608fc9f8) 2014-05-27 Michał Sawicz * Implement a caching network access manager to cache images. (401fc4481) 2014-05-27 Albert Astals * Animate a bit (665a167db) 2014-05-27 Ying-Chun Liu * Merge upstream [ Albert Astals ]; Use Interface classes from unity-api [ Ubuntu daily release ]; New rebuild forced [ Albert Astals ]; Use the new displayMargin feature Also port our DashViews to use same naming and behaviour + update tests (d00cdf71c) 2014-05-27 Albert Astals * There's no countChanged signal anymore (26a78975a) * Merge (74d447261) 2014-05-27 Ying-Chun Liu * Rename destination. (08b5d8808) 2014-05-27 Albert Astals * Initial implementation of departments, needs polishing (f395e4029) 2014-05-27 Mirco Müller * Started adding support for the ComboButton SDK-element being used for snap-decisions using more than 2 actions. (ebe3c657e) 2014-05-27 CI bot * Releasing 7.86+14.10.20140527-0ubuntu1 (8478dbadb) 2014-05-27 Albert Astals * Fix crash in organicgridtest (86f5ac9b2) 2014-05-27 Michał Sawicz * Use dpkg-architecture, not gcc, to determine the machine triplet. (f764924f7) 2014-05-27 Albert Astals * GenericScopeViewTest: Wait a bit more (7ab23b4e1) * CardHeader is no more, remove stale line in CMakeLists.txt (5333890f8) 2014-05-27 Daniel d'Andrada * Remove Shell's underlay background image as it cannot be seen anymore (3bf825f23) 2014-05-27 Andrea Cimitan * Fixes carousel shadow (e7bd92dff) 2014-05-27 Michael Zanetti * enhance lockscreen (ae0e95181) 2014-05-27 Albert Astals * Don't reserve space for mascot if no mascot is specified Fixes: 1319343 (f60499150) * We don't need iconutils in this mock (ae51921bc) 2014-05-27 Michael Terry * Use the same animation when dismissing a greeter slide from the launcher as from a normal greeter drag. Fixes: 1316513 (5576c8efa) 2014-05-27 Andrea Cimitan * Passes to make tryCommand -qmljsdebugger=port:3768 to enable debug/profiling test apps (3ee398f13) 2014-05-27 Ying-Chun Liu * Fix ZoomableImage test failure. Fixes: 1317254 (f5521b02f) 2014-05-27 Michael Zanetti * mre upstream (9ba435cc5) * initial import of the TabletStage (dbadcb75c) 2014-05-27 Michael Terry * Start logrotate in split greeter mode (20e907e0c) 2014-05-27 Nick Dedekind * updated copywrite date (7d36c8e6c) 2014-05-26 Gerry Boland * Whitespace fix (a7f4ee31e) 2014-05-26 Ying-Chun Liu * remove generated seq number in header. (0aca848be) 2014-05-26 Daniel d'Andrada * Work around wrong (outdated) snapshot image size indicated by mir (b350ef20a) * Update app thumbnail to the surface resize strategy (44de1976d) 2014-05-26 Florian Boucault * Fixed coding style. (80335fbaa) * Application startup: changed splash rectangle to be black instead of white and added a neat little animation. (1edd2b9b3) 2014-05-26 Albert Astals * Correctly mark these functions as overrides (73ede07e1) 2014-05-26 Daniel d'Andrada * We now resize and rotate app surfaces instead of letting then rotate themselves (845d86565) 2014-05-26 Michael Terry * Use qt5.3-proof comparison (72d1a4bbf) 2014-05-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (50e450a04) 2014-05-23 Michał Sawicz * Use dpkg-architecture, not gcc, to determine the machine triplet. (c8f7ab3c9) 2014-05-23 Michael Terry * Fix notification margins (924481a48) 2014-05-23 Ying-Chun Liu * Fix indent. (c3a634af8) 2014-05-23 Michael Terry * Merge from trunk (593dcb248) 2014-05-23 Ying-Chun Liu * Fix ZoomableImage test fail. Use relative scale. Fix PreviewZoomableImage fail. (5a05593c8) 2014-05-23 Michael Zanetti * merge with trunk (67d9b8a02) 2014-05-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d2ac2005c) 2014-05-23 Michał Sawicz * Bump changelog to allow Breaks. (0f0aacb35) 2014-05-23 Albert Astals * Wait a bit more (31f2f3976) 2014-05-23 Michał Sawicz * Bump components dependency. (b8061ae6a) * Abuse EventMenu instead of StandardMenu to use the same icon size. (26e853e21) * Resync branch. (c7d4654a6) * Merge trunk. (855960ade) 2014-05-22 CI bot * Releasing 7.86+14.10.20140522-0ubuntu1 (fed3e2acd) 2014-05-22 Albert Astals * Use Interface classes from unity-api (c7548f532) 2014-05-22 Daniel d'Andrada * Make shell respect supported orientations of focused application (401988e3f) 2014-05-22 Albert Astals * CardHeader is no more (454cdd86a) 2014-05-22 Ying-Chun Liu * Merge trunk [ Michal Hruby ]; Updated scope tool to create proper config files after recent libunity-scopes-api changes. [ Michał Sawicz ]; Refactor export_qmlfiles and export_qmlplugins to be more generic and clean up installed mocks. [ Albert Astals ]; Remove empty dir. Set the tabbarmodel index as we do on real code It works better :D (LP: #1317255) [ Thomi Richards ]; Use new import location for ProcessSearchError in process_helpers script. [ Andrea Cimitan ]; Adds shadow for the carousel [ Daniel d'Andrada ]; Remove Revealer component It's not used anywhere anymore. It's been replaced by DragHandle. [ Andy Doan ]; unlock_device: support more complex reboot/wait cycles Currently this script only allows you to override how to "wait" on the device. This changes the logic to also support how you go about rebooting the device. This is handy for the ubuntu-emulator because adb-reboot is not currently supported. However, we also have a more sophisticated, fool-proof way we reboot/wait in the CI lab that would be nice to take advantage of: http://bazaar.launchpad.net/~ubuntu-test-case-dev/ubuntu-test- cases/touch/view/head:/scripts/reboot-and-wait [ CI bot ]; Resync trunk [ Michael Zanetti ]; support appid:// entries in gsettings schema and make findDesktopFile work with short-appid (LP: #1239750) [ Antti Kaijanmäki ] * Indicators/RootActionState: use g_variant_iter_loop to extract icons. [ Andrea Cimitan ]; Improve padding in Text preview widget. (LP: #1316683) [ CI bot ]; Resync trunk [ Nick Dedekind ]; Removed binding loop from Unity.Indicators.MenuContentActivator Change handler for QMLListProperty used by MenuContent.qml: menuActivator.content[index].active If we're already asking for the index, we know it exists already. No need to send a changeNotification on an implied creation. [ Josh Arenson ]; Implements usage-style documentation for unity8 executable. Fixes lp:1269282 (LP: #1269282) [ Albert Astals ]; Create specialized Card code in Javascript instead of having various copied&pasted files (LP: #1297197) [ Michał Sawicz ]; Remove HUD from the bottom edge. Again. (b24037d93) 2014-05-22 Albert Astals * Fix crash and test (83382c53f) 2014-05-22 Michael Zanetti * add a check for a valid application (576de940e) 2014-05-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1564e331b) 2014-05-21 Michael Terry * Hide indicators as well as launcher when session becomes inactive (5a3bdf145) 2014-05-21 Daniel d'Andrada * Remove loosely-related unused function from test_Shell.qml (8aca6a0e4) 2014-05-21 Michael Terry * Make launcher available in tablet mode again (2489f1fe2) 2014-05-20 Alberto Aguirre * Fix missing #endif (f450dd47b) * Keep hook to powerd auto-brightness (459fa41a3) * merge trunk (82823654c) * Update to use display power state change reason (70a5ad18d) 2014-05-20 Daniel d'Andrada * Fix indicators bar show/hide behavior when stages come and go (c0b380be3) * And remove an unused autopilot helper function that refers to it (6e379a1a2) 2014-05-20 Michael Terry * Fix background for sim lockscreen (4d6d28b63) 2014-05-21 Ying-Chun Liu * Fix FTBFS (ea33f948a) 2014-05-20 Daniel d'Andrada * Remove Shell's underlay background image as it's now cannot be seen anymore (0eeeb5688) 2014-05-20 Albert Astals * Fix the pageheaderlabel test (62b732b47) 2014-05-20 Daniel d'Andrada * Remove Shell's underlay background image as it's now cannot be seen anymore (bf7678843) 2014-05-20 Albert Astals * adapt test (8be70fd34) * Remove the count function (0f2543190) * remove Scope::setName (83b21d823) * remove unneded signal (7d285ba7b) * Remove unused setProcessingAction (01fd6d07f) 2014-05-20 Daniel d'Andrada * Show/hide stages according to ApplicationManager events (35cec567c) 2014-05-20 Michael Zanetti * the reviewer wants this explicitly (87fe2ae26) * change the retry label to accept arbitrary text (7c1c6db6a) * improve some colors after having a chat with design, add disabled state for Done button (b41b8885c) * add a signal to inform the caller when the infoPopup is closed some more fixes/improvements for the wrongPlaceholderText tests (91548de3f) * add incorrect password text while shaking, fix plurality in retry label (f287dbedf) 2014-05-20 Albert Astals * Merge (bfdd07abf) 2014-05-20 Andrea Cimitan * Add test (0534124b9) 2014-05-20 Michael Zanetti * fix comment (1b3589889) 2014-05-19 Michael Terry * Move alpha-setting down so we don't show some extra frames with transparency (9fdde2be0) * Set locale as well as language when starting greeter (059b6d476) 2014-05-19 Daniel d'Andrada * Fix app thumbnails on rotated Shell (9e775f28b) 2014-05-19 Michael Terry * Animate away the tablet greeter when clicking Tap to Unlock (48d0262fa) 2014-05-19 Michael Zanetti * merge trunk (060c8c9e3) * enhance lockscreen (ba4f0be83) 2014-05-19 Andrea Cimitan * Fix warnings (7c045b516) 2014-05-19 Ying-Chun Liu * Merged upstream again. (ed8f0a147) 2014-05-19 Daniel d'Andrada * Support shell rotation (784c06215) 2014-05-19 Michael Zanetti * Update dep from unity-mir to qtmir (171d0dc31) * make right edge animation work, dropping all the screenshot crazyness (80737c6e9) 2014-05-19 Daniel d'Andrada * Changes to make it work on "Qt compositor" mode (6f37b4cee) 2014-05-19 Albert Astals * Adapt to new api (e671b827f) * Merge (9edb42b80) * Merge (ce6263d55) 2014-05-19 CI bot * Releasing 7.86+14.10.20140519-0ubuntu1 (bf3016e99) 2014-05-19 Albert Astals * Use the new displayMargin feature (a174c26bb) 2014-05-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bcb22f47e) 2014-05-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (69276a75b) 2014-05-17 Michael Terry * Remove unneeded Revealer, especially since the Revealer class is dead (931d4357e) * Merge from trunk (eea702cd9) * Workaround bug in logind not telling us when a session becomes inactive, and also hide launcher when that happens (3d77c8a82) 2014-05-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7a1855566) 2014-05-16 Michael Terry * Whoops, requestHomeShown support must have gotten lost in a merge (3565abc74) 2014-05-16 CI bot * Releasing 7.86+14.10.20140516.5-0ubuntu1 (04b12fc29) 2014-05-16 Michał Sawicz * Refactor export_qmlfiles and export_qmlplugins to be more generic and clean up installed mocks. (113c4c9fc) 2014-05-16 Thomi Richards * Use new import location for ProcessSearchError in process_helpers script. (93503fa30) 2014-05-16 Andy Doan * unlock_device: support more complex reboot/wait cycles (3a15adc6d) 2014-05-16 Daniel d'Andrada * Remove Revealer component (f48e8344f) 2014-05-16 Andrea Cimitan * Adds shadow for the carousel (a44f357db) 2014-05-16 Albert Astals * Set the tabbarmodel index as we do on real code (96b920ecc) * Remove empty dirs (8d1715987) 2014-05-16 Michal Hruby * Updated scope tool to create proper config files after recent libunity-scopes-api changes. (53ded4093) 2014-05-16 CI bot * Releasing 7.86+14.10.20140516.2-0ubuntu1 (87a275183) 2014-05-16 Michael Zanetti * support appid:// entries in gsettings schema and make findDesktopFile work with short-appid Fixes: 1239750 (9c9a13b0b) 2014-05-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (62a23f66a) 2014-05-15 Michael Terry * Specify USC_SOCKET in lightdm's init session, so anyone that wants to can find USC (like the welcome wizard (c113da719) * Drop unneeded QScreen include (ec95238a2) * Merge from trunk (b75190638) 2014-05-15 Michał Sawicz * Duplicate the non-mir Application plugin target. (8d4d9da9e) * Respect BINARY_DIR for targets in export_qml*. (d60d86070) 2014-05-15 Albert Astals * Use the new displayMargin feature (32aac45c7) 2014-05-15 Andrea Cimitan * Fix tests (acf78dba5) 2014-05-15 CI bot * Resync trunk (6354081b1) 2014-05-15 Andrea Cimitan * Added semicolon (c0ec99d3e) 2014-05-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (acfa55b0c) 2014-05-15 Thomi Richards * Reorder imports, and start importing ProcessSeachError from the correct location in autopilot. (4fc5117c3) 2014-05-14 Michael Terry * Review fixes (5499c3f63) 2014-05-14 Andy Doan * unlock_device: support more complex reboot/wait cycles (817af07b9) 2014-05-14 Andrea Cimitan * Add shadow asset and remove bordersource default value - WIP REQUIRES OPTIMIZATION (58b1711b1) 2014-05-14 Ying-Chun Liu * Merge Trunk (e35eb2748) * make closeAllApps as separate function. (b1c04020d) 2014-05-14 Daniel d'Andrada * Remove Revealer component (8bf1f3fc6) 2014-05-14 CI bot * Releasing 7.86+14.10.20140514.1-0ubuntu1 (155fdade5) 2014-05-14 Antti Kaijanmäki * Indicators/RootActionState: use g_variant_iter_loop to extract icons. (2ebf8dae0) 2014-05-14 Albert Astals * Do not hold space for the mascot image if there is no mascot image (a485c92a2) 2014-05-14 Michał Sawicz * Merge trunk. (f2d60db15) 2014-05-14 Albert Astals * We don't need iconutils.cpp in this mock (825c53348) * Use chained constructors (8952dae44) 2014-05-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (567936817) 2014-05-14 Antti Kaijanmäki * merge upstream (ae6ae1f78) 2014-05-13 Alberto Aguirre * Use new display power state DBus interface (31cd76f15) 2014-05-13 Michael Terry * Merge from trunk (39d1fe1b3) 2014-05-13 Albert Astals * rolenames come from interface (2d052652d) 2014-05-13 Michael Zanetti * drop some more debug prints (724cd3e00) * drop dome debug prints (eba8c6761) * some more debugging (b0e9756d4) * merge (2a02f6d94) * merge (3d5644993) 2014-05-13 Andrea Cimitan * Add newline in js (2cddc6909) * Removed file (32dde39ef) 2014-05-13 CI bot * Releasing 7.86+14.10.20140513-0ubuntu1 (f4d808561) 2014-05-13 Albert Astals * Create specialized Card code in Javascript instead of having various copied&pasted files Fixes: 1297197 (d9c988c91) 2014-05-13 Andrea Cimitan * Improve padding in Text preview widget. Fixes: 1316683 (d4155c8dc) 2014-05-13 Nick Dedekind * Removed binding loop from Unity.Indicators.MenuContentActivator (7e5039f70) 2014-05-13 Josh Arenson * Implements usage-style documentation for unity8 executable. Fixes lp:1269282 Fixes: 1269282 (9cb5e34cc) 2014-05-13 Albert Astals * Fix tst_PageHeaderLabel.qml (11dfaf4b5) * Merge fix for test (90026e4f9) * Set the tabbarmodel index as we do on real code (46ab87fe5) 2014-05-12 Andrea Cimitan * Renamed variable (b8c40392c) * Merged albert branch (da005e16a) 2014-05-12 Albert Astals * Fixes (f4852da97) * Use headers from unity-api (86529e665) 2014-05-12 Michael Terry * Use same animation when dismissing greeter slide from launcher as from a greeter drag (c244861e8) 2014-05-12 Andrea Cimitan * temp (f2ac07bf0) 2014-05-12 Antti Kaijanmäki * merge upstream. (004e97a64) 2014-05-12 Albert Astals * Remove empty dirs (de0817f4d) 2014-05-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4ab3b3b1e) 2014-05-09 Michael Terry * Consolidate unity8-greeter session upstart scripts (dbf6315a7) * Add back darkener-rectangle for infographic use (0fd30cfc1) 2014-05-09 Andrea Cimitan * Fix testPreview (1742cf87e) 2014-05-09 Michal Hruby * Merge trunk (21a944dcb) * Adjust the server config (a43d1b604) 2014-05-09 Michael Terry * Just launch ofono-setup; it's what session does now and ofonod doesn't use its upstart job anymore apparently (9009d7cc7) 2014-05-09 Michael Zanetti * preserve aspect ration and crop icons in the launcher (de2e4bcc0) 2014-05-09 Mirco Müller * Improved QML-test for sound-hint support in notifications. (d69bc88e9) 2014-05-09 Michael Zanetti * merge trunk (75f817046) 2014-05-08 Michael Terry * Merge from trunk (640361fb6) * Disable ofono using pulseaudio (0fda459b9) 2014-05-08 CI bot * Resync trunk (cae7d3f4d) 2014-05-08 Antti Kaijanmäki * merge tests from nick. (20fed82b5) 2014-05-08 Nick Dedekind * updated root action state test (c30d285f3) * merged with indicator-root-state-icons-fix (4e1c2b663) * Added icon serialising test (00c0b4c9b) 2014-05-08 Michal Hruby * Despite what the docs say QTemporaryFile handles templates that have Xs in middle just fine, so do that (93b8346cd) 2014-05-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7d2c56a4c) 2014-05-07 Michael Terry * Fix syncing of stored launcher items (8a832cb24) 2014-05-07 Antti Kaijanmäki * merge upstream. (a3edb30b6) 2014-05-07 Michael Terry * Stop the swipe hint animation when greeter is swiped away (9fdb46304) 2014-05-07 Ying-Chun Liu * Fix zoomableImage test. (d12445cc0) 2014-05-07 Albert Astals * Don't use the .y to calculate height, otherwise we end up in loops here (7bec496bd) 2014-05-07 Ying-Chun Liu * Remove type string. Remove construct with parent. (1f4ce2528) 2014-05-07 Nick Dedekind * merged with trunk (dc654b41d) * Split panel (b2c705956) 2014-05-07 Albert Astals * Remove line that creates warnings (6208d8672) 2014-05-07 Andrea Cimitan * Added test for height (892f1843a) 2014-05-07 Albert Astals * document and narrow the rest of substitutions (95a3764b3) 2014-05-07 Michael Terry * Fix autopilot tests (d6a3d71d2) 2014-05-07 Michal Hruby * Update registry spawner to work with scopes-api 0.4.4 (dcfd3074c) 2014-05-07 Albert Astals * Document summaryLabelCode substitutions (bb88dd474) * Document and limit what you can do with subtitleLabelCode substitutions (619df75cc) * Document and narrow what you can do with the arg replacement in headerColumnCode (172c89838) * Document and simplify the %1 replacements of artShapeHolderCode (869d64b42) 2014-05-07 CI bot * Releasing 7.86+14.10.20140507.3-0ubuntu1 (1d3b1e0a0) 2014-05-07 Michał Sawicz * Remove HUD from the bottom edge. Again. (eed2028d1) * Argh. (0ef5cceaa) * Drop the Bottombar from .install file, too. (286276e8e) * Drop Bottombar, too. (c940683ac) 2014-05-07 Michael Zanetti * Remove HUD from the bottom edge. (9606c9b80) 2014-05-06 Michael Terry * Completely remove fade-in animations for now; this removes the last visual change in the split greeter (1f6dfc340) * Specify minimum version of liblightdm needed (c835e400b) * Mark as resettable before connecting to LightDM (bd150f4b3) 2014-05-06 Albert Astals * Rework header row/column creation (f66f9d364) * Move big chunks of boilerplate out of the main function (cdd97dbc4) 2014-05-06 Ying-Chun Liu * Add more comments (ac626e780) * Add Session logout. (578bc3383) 2014-05-06 Albert Astals * no need for a variable here (c88ea0ab3) * Better variable name (db87b6881) * Add newlines, makes debugging the code when it fails easier (01b778c6c) * One with overlay (1ad655b74) * eol (7ce88e921) * Add some "well known" card creator input->output (c7482d059) * Check more carefully (88c8163e4) * renamed (cbc6363f3) * don't set left anchor margin twice (2f2147f47) * move the code that sets headerHeight a bit (fd487f221) * Comment on why the hardcoded size and its sillyness (4201b338f) * 8.625 -> 7.625 (79bd69e21) * Merge (e0838133d) 2014-05-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8d8db7d55) 2014-05-05 Josh Arenson * Refactored ApplicationArguments constructor(s) (465d64ee7) 2014-05-05 Michael Terry * Fix debian/changelog (2c30c894e) * Merge from trunk (567f2a35f) 2014-05-05 Albert Astals * split the card generating code to a different function (e121fe0c7) * whitespace pedanticness (1b0ce5ba5) * just one pragma and missing (C) (c367fa8d4) 2014-05-05 Michael Terry * Merge from trunk (0ec5075f9) * Remove fade in animations for now (770dee02f) 2014-05-05 Albert Astals * Adapt to Card changes (dcc07f67f) * remove all these a a a a a (b1987f545) 2014-05-05 Mirco Müller * Added the frontend part for the sound-hint support. (e04a2ff11) 2014-05-05 CI bot * Releasing 7.86+14.10.20140505-0ubuntu1 (657fdca15) 2014-05-05 Michał Sawicz * Adapt to Debian Qt package renames and drop unneeded Dee plugin dependency. (92555f7d9) * Suffix .sh to our scripts and clean up debian/rules. (3d6165841) 2014-05-05 Andrea Cimitan * Make progressbas in preview widget big as the button (12c26d587) 2014-05-05 Albert Astals * Remove support for Qt <= 5.2.1 (f21378d0d) 2014-05-05 Michał Sawicz * Pass env variables to initctl start. (a7377a8f5) 2014-05-05 Ted Gould * Provide a dbus interface for setting the count and countVisible properties. Fixes: 1301400 (4eba34365) 2014-05-05 Mirco Müller * Implemented feature-request from Design for modal snap-decision notifications on the phone. See LP #1285712 Fixes: 1285712 (5c25f7849) 2014-05-05 Ying-Chun Liu * Add Zoomable Image for Preview widgets. (7caaf0495) 2014-05-05 Albert Astals * make testCard pass (caf23d819) 2014-05-05 Michał Sawicz * Two more run_on_device. (27f633b6e) * Suffix .sh to our scripts and clean up debian/rules. (01c31fe60) 2014-05-05 Albert Astals * Merge (30c9fc606) 2014-05-05 CI bot * Resync trunk (2e6d4b45c) 2014-05-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6e49a6ad1) 2014-05-03 Michał Sawicz * Fix wrong copy/paste. (2141d6d22) * Convert three more plugins to use the refactored macro. (ca8e75e5c) * Adapt Unity.Test to the refactored macros. (53cece67b) * Use the refactored macros in mocks. Only remaining installed mocks: Unity, Unity.Application, and LightDM. (b6e654ab9) * Refactor export_qmlfiles and export_qmlplugins to be more generic. (0ed938e1c) 2014-05-02 Albert Astals * Some fixes for the tst_card, more to come (b198f9b3e) 2014-05-02 CI bot * Releasing 7.86+14.10.20140502.6-0ubuntu1 (f8b62f5e3) 2014-05-02 Tim Peeters * Adapt to new TabBar (4ff107671) 2014-05-02 Albert Astals * Merge CardHeader into PreviewHeader (5932bfeb8) 2014-05-02 Tim Peeters * merge trunk (e1ce33ec7) 2014-05-02 Albert Astals * Adapt the benchmark (d09c2a74e) * remove Card.qml && fix tst_CardTool (c391ae340) * cleanup (5491ccbb9) * eol (2180c103d) * Some overlay height fixes (c4bfea47c) * Make the card carousel use the card creator (ecb7a6542) * Improve overlay and horizontal stuff (b3b78472a) 2014-05-02 Nick Dedekind * touches (c42322836) 2014-05-01 Andrea Cimitan * Fix animation (7a4ba7cc4) * Different approach (3eb774eb3) 2014-05-01 Michael Terry * Merge from trunk (39cfda5c1) 2014-05-01 Andrea Cimitan * Changed animation (d6b5a9ffd) * More fixes (d536bede9) * Fixes (4e1cb587b) * More work on column (beea01ef8) 2014-05-01 Nick Dedekind * merged with trunk (7265b3808) 2014-05-01 Andrea Cimitan * Modified anchor (22924320a) 2014-05-01 Nick Dedekind * whitespace (e7030e951) 2014-05-01 Andrea Cimitan * Fix tests (621c2116c) * (b0cc75e07) * using column (ec6ec1046) 2014-05-01 Nick Dedekind * various fixes (1eb2938e4) * Added deps (251b2b9c4) 2014-05-01 Andrea Cimitan * Remove seeMore widget from text summary height when not visible (22c8e52d6) 2014-05-01 Nick Dedekind * removed emit from implied creation (33acbc0eb) 2014-05-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (db5700ca1) 2014-04-30 Nick Dedekind * No need for actualOffset with animation duration bounding (a7899cd72) 2014-04-30 Michael Terry * Merge from trunk (5452aee30) 2014-04-30 Nick Dedekind * Added ActiveCallHint tests (91f62af0a) * Use PathView for label cycling (cad0962c3) 2014-04-30 Albert Astals * not change mascot possition vs when it has no mascot (a7fcaa01d) * Better handling of mascot + title but no subtitle (4c0dea113) * Make sure the subtitle is hAligned as the title (44c7e7b01) * account for horizontal and no mascot (8c028a270) * fix tryCard first item when removing the art (6872b5800) * This gets most of the cards used nowadays in the scopes on the desktop to work (b50c0471e) 2014-04-30 Ying-Chun Liu * [ Andrea Cimitan ]; Update upstart job to reflect latest unity-mir changes; Fix locale in qml tests and fixtimeformattertest (LP: #1301038); Fix 1309135 (LP: #1309135) [ Michał Sawicz ]; Split out unity8-common package; Don't wait for indicator services to start, and drop Scope Tool's .desktop file. (LP: #1310172) [ Michael Terry ]; Stop clock from hiding when the 'show dash' button is pressed in greeter. (LP: #1308139); Make swipe teases in the greeter more helpful and obvious (LP: #1267623) [ Nick Dedekind ]; Fixed datetime indicator appointment colour (LP: #1307048) [ Albert Astals ]; Improve Card creation time by adding loaders that make sure only what's needed is loaded (LP: #1297197); CategoryDelegateRange: Fix condition for detecting overshooting; Make xvfbtests work in the DashView plugins; Fix binding loop in FilterGrid height [ Victor R. Ruiz ]; Move autopilot notification code to a helper method. [ Albert Astals ]; Fix last item X position Fixes clicking on the last item sometimes not working (LP: #1301871); Use upstart in ./run Makes it so that you can use the lock button on the device without getting that nasty hwc crash; Remove AnimationControllerWithSignals.; Use the correct delegate base item for the Carousel test; Some simplification in DashContent Kill the ScopeDelegateMapper in favour of a simple if (that will eventually go away). Removal of all the fake scopes in the tests that added nothing of value to the tests. Removal of movementEnded signal that was unused. Removal of movementStarted and positionedAtBeginning signals that were being used as function calls. Rework DashContent tests so they what the function does what it is supposed to do instead of just making sure QML signals work .; Improve Card creation time by adding loaders that make sure only what's needed is loaded In my computer it goes from RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 3.217 msecs per iteration (total: 3,218, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.647 msecs per iteration (total: 1,648, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.514 msecs per iteration (total: 1,515, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.471 msecs per iteration (total: 1,471, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 1.447 msecs per iteration (total: 1,448, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 1.276 msecs per iteration (total: 1,276, iterations: 1000) to RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 2.916 msecs per iteration (total: 2,917, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.504 msecs per iteration (total: 1,504, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.060 msecs per iteration (total: 1,061, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.052 msecs per iteration (total: 1,053, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 0.727 msecs per iteration (total: 728, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 0.817 msecs per iteration (total: 818, iterations: 1000) (LP: #1297197) [ Allan LeSage ]; DashApps emulator get_applications should return a list ordered by visible y, x. [ Andrea Cimitan ]; Workaround for lp1301309 until fixes for palette in ui toolkit (LP: #1301309) [ Leo Arias ]; Reverted the change that returns application cards instead of titles. [ Nick Dedekind ]; Indicator services started by unity8 upstart configuration rather than manual emmision from indicator manager. [ Mirco Müller ]; Fix notification ap-test assertions. [ Michael Terry ]; Use new tablet and phone backgrounds from Design. [ Michael Zanetti ]; workaround the QTestLogger assertion issue with make tryXyz and our custom uqmlscene [ Michael Terry ]; When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo. (LP: #1227753) [ Leo Arias ]; Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails.; Test application life cycle with fake apps, instead of messaging and address book. (b2d436edd) * Fix strange drag out of bound. (5389b7a52) 2014-04-30 Andrea Cimitan * Use same dimensions and placement of button (bbd2cf5fa) 2014-04-30 Michał Sawicz * Undo qtmultimedia rename, not there yet. (16efa0eb0) 2014-04-30 Albert Astals * DashViews plugin -> Dash plugin (be592b2f5) * make tryCard work again (93a9b7646) 2014-04-30 Nick Dedekind * merged with trunk (7c3ece774) 2014-04-30 Albert Astals * Merge (0f0e55485) * Fix typo (6f8c9a4aa) 2014-04-30 Mirco Müller * Merged with trunk and resolved merge-conflicts. (743e7334c) 2014-04-30 Michał Sawicz * Merge trunk. (a4550c506) 2014-04-30 Albert Astals * wops (eb0321ebc) * Merge (443260da8) 2014-04-29 Ted Gould * Making the test class a friend so that we can make the functions protected (e0a1f8a0e) 2014-04-29 Josh Arenson * Handle windowgeometry argument with new argument parsing scheme. (0cb120674) 2014-04-29 Ted Gould * Some tabs snuck in (267a16bc2) * Only make functions that need testing public when we're doing a test build of the binary (16a592dd0) * { braces } (8008dfb2f) 2014-04-29 Albert Astals * reorganize and account for horizontal with no art (affce2e6f) 2014-04-29 Ted Gould * Warn a bit more (c27da6377) * Applied disk-space vs. readability trade-off (8cc891dac) * Use value to ensure that an entry isn't inserted into the hash (ea57167af) 2014-04-29 Albert Astals * fix clicked (c461eb3d2) 2014-04-29 CI bot * Releasing 7.86+14.10.20140429.2-0ubuntu1 (e1ea44bca) 2014-04-29 Victor R. Ruiz * Move autopilot notification code to a helper method. (802803f53) 2014-04-29 Michał Sawicz * Don't wait for indicator services to start, and drop Scope Tool's .desktop file. Fixes: 1310172 (bffe12b5d) 2014-04-29 Andrea Cimitan * Fix 1309135 Fixes: 1309135 (53ed0b9f2) 2014-04-29 Michał Sawicz * Introduce unity8-common for shared resources, and wrap-and-sort. Fixes: 1304548 (5cf9c62a7) 2014-04-29 Andrea Cimitan * Uses UNITY_MIR_EMITS_SIGSTOP according to https://code.launchpad.net/~cimi/unity-mir/unity-mir.stop-server_wizard Cleans also MIR env vars after stopping the upstart job (2e3badc4c) 2014-04-29 Albert Astals * Fix binding loop in FilterGrid height (a14b4bb6f) 2014-04-29 Michael Terry * Make swipe teases in the greeter more helpful and obvious Fixes: 1267623, 1308475, 1308477 (a6f2b2dc6) 2014-04-29 Andrea Cimitan * Fix locale in qml tests and fixtimeformattertest Fixes: 1301038 (5fe767a9a) 2014-04-29 Michael Terry * Stop clock from hiding when the 'show dash' button is pressed in greeter. Fixes: 1308139 (dd6e99483) 2014-04-29 Nick Dedekind * Fixed datetime indicator appointment colour Fixes: 1307048 (1e40ab7e0) 2014-04-29 Albert Astals * Make xvfbtests work in the DashView plugins (5285851be) * CategoryDelegateRange: Fix condition for detecting overshooting (ec0a69d80) * Improve Card creation time by adding loaders that make sure only what's needed is loaded Fixes: 1297197 (c2125ec0a) * some fixes here and there (434f5ea4c) 2014-04-29 Michał Sawicz * Wrap-and-sort. (22fa86392) * Make autopilot rely on exact same version of unity8 and -fake-env. (47c702cfb) 2014-04-29 Nick Dedekind * Added ActiveCallHint (c71e68414) 2014-04-29 Ted Gould * Add a test to ensure getItem returns null on being unable to find the desktop file (345f2387c) 2014-04-29 Albert Astals * No need to clip here (6b726d6a0) * Introduce the card creator cache (ff90c011d) 2014-04-29 Tim Peeters * merge trunk (134a2f534) 2014-04-29 Ted Gould * Ensure that on DBus both Unity and Launcher are uppercase (030b5bde8) 2014-04-29 Michał Sawicz * Ensure removal of unity8-common on unity8 downgrade. (25c87c376) * Merge lp:~cimi/unity8/unity8.upstart_unity-mir_variables (51f20d9d8) * Merge trunk (b7eefec5f) 2014-04-29 Albert Astals * missing ; (6471f4f18) * First attempt at dynamic creation of specialized cards (ae928c65a) 2014-04-29 Andrea Cimitan * unreleased (4eac437f6) * New versions (5199f362a) 2014-04-28 Josh Arenson * Added windowgeometry to argument list (9d4075b18) 2014-04-28 Andrea Cimitan * Enable port for qml debugging on make tryCommand (ddd5f118f) 2014-04-28 Victor R. Ruiz * Strip tags (800d73ab2) 2014-04-28 Albert Astals * Merge split-common (aa05c4bb3) 2014-04-28 Michał Sawicz * Drop old dee plugin dependency. (e0e51f47b) * Adapt to Debian Qt package renames. (de7203f70) * Merge make-common. (b8b5f33c9) 2014-04-25 Michael Terry * Use new resettable support in lightdm (7f731581b) 2014-04-25 Josh Arenson * Merged https://code.launchpad.net/+branch/~aacid/unity8/killqt51 (1573b2cb0) 2014-04-25 Ying-Chun Liu * Fix weirdness centering. (47a18f4f9) 2014-04-25 Michael Terry * Remove testing code that slipped in (fe50a4a1a) 2014-04-25 Albert Astals * up the version here too (6873fcbe4) 2014-04-24 Josh Arenson * Removed whitespace errors (97d84ce74) 2014-04-24 Michał Sawicz * Pass env variables to initctl start. (3efeafda2) 2014-04-24 Albert Astals * Remove support for Qt <= 5.2.1 (49c9053bf) 2014-04-24 Andrea Cimitan * Edited comment (69b7c9a62) 2014-04-23 Michael Terry * Fix indicators not coming up in split session (ebc6a484a) * Test (4d4ae0943) 2014-04-23 Mirco Müller * Only bump the run-time dependency regarding the unity-notifications. (de6ed96ae) 2014-04-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ba7182239) 2014-04-22 Josh Arenson * Removed QCoreApplication::translate() as options will always be english (fb9fd693a) 2014-04-22 Ying-Chun Liu * fix whitespace (42c5593cc) * re-factor (c3ac55ad4) * Merge upstream [ Albert Astals ]; Fix last item X position Fixes clicking on the last item sometimes not working (LP: #1301871); Use upstart in ./run Makes it so that you can use the lock button on the device without getting that nasty hwc crash; Remove AnimationControllerWithSignals. Use the correct delegate base item for the Carousel tes. Some simplification in DashContent Kill the ScopeDelegateMapper in favour of a simple if (that will eventually go away). Removal of all the fake scopes in the tests that added nothing of value to the tests. Removal of movementEnded signal that was unused. Removal of movementStarted and positionedAtBeginning signals that were being used as function calls. Rework DashContent tests so they what the function does what it is supposed to do instead of just making sure QML signals work .; Improve Card creation time by adding loaders that make sure only what's needed is loaded In my computer it goes from RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 3.217 msecs per iteration (total: 3,218, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.647 msecs per iteration (total: 1,648, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.514 msecs per iteration (total: 1,515, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.471 msecs per iteration (total: 1,471, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 1.447 msecs per iteration (total: 1,448, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 1.276 msecs per iteration (total: 1,276, iterations: 1000) to RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 2.916 msecs per iteration (total: 2,917, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.504 msecs per iteration (total: 1,504, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.060 msecs per iteration (total: 1,061, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.052 msecs per iteration (total: 1,053, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 0.727 msecs per iteration (total: 728, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 0.817 msecs per iteration (total: 818, iterations: 1000) (LP: #1297197) [ Allan LeSage ]; DashApps emulator get_applications should return a list ordered by visible y, x. [ Andrea Cimitan ]; Workaround for lp1301309 until fixes for palette in ui toolkit (LP: #1301309) [ Leo Arias ]; Reverted the change that returns application cards instead of titles. [ Nick Dedekind ]; Indicator services started by unity8 upstart configuration rather than manual emmision from indicator manager. [ Mirco Müller ]; Fix notification ap-test assertions. [ Michael Terry ]; Use new tablet and phone backgrounds from Design. [ Michael Zanetti ]; workaround the QTestLogger assertion issue with make tryXyz and our custom uqmlscene [ Michael Terry ]; When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo. (LP: #1227753) [ Leo Arias ]; Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails.; Test application life cycle with fake apps, instead of messaging and address book. [ Didier Roche ]; Resync trunk with previous revert upload [ Michał Sawicz ]; Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Albert Astals ]; Take into account the originY when specifying the delegate ranges Fixes bug #1300302 (LP: #1300302) [ CI bot ]; Resync trunk [ Allan LeSage ]; Swiping open an indicator must show its correct title--protect against lp:1253804 . (LP: #1253804) [ Alexander Sack ]; Fix TypeError: issue seen in system_integration autopilot test on image 279. (LP: #1303685) [ Bill Filler ]; Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Leo Arias ]; Added a search autopilot helper. [ Michael Terry ]; Provide a all-in-one script for getting a device to an unlocked state. Revert to previous version as it's linked to latest sdk change which is making gallery-app AP tests failing on the CI dashboard [ Albert Astals ]; Adapt to new TabBar [ Michael Terry ]; Re-enable test_networkmanager_integration autopilot test on phone platforms [ CI bot ]; Resync trunk [ Leo Arias . Reverted the open_preview autopilot helper to return a Preview object. [ Albert Astals ]; If not running in Mir load the "fake" application manager (LP: #1301547. Remove unused properties from DashRenderer [ Michael Zanetti ]; Fix tests after right edge merge. Drop old stages tests. Fix right edge tests if someone doesn't have the GRID_UNIT_PX exported. make GenericScopeView test more robust that broke because the ordering changed * add "make xvfbtestSomething" target to run qml tests in xvfb; make the "make test" commit hook work again [ Michał Sawicz ]; Bump version to ensure incompatibility with previous Unity.Application implementations.; We'll only have the unity-mir and mock Ubuntu.Application plugins now, no need for mangling the import paths. [ Michal Hruby ]; Remove the albumart image provider. (LP: #1262711); Don't reset search string after 2 seconds. (LP: #1297246) [ James Henstridge ]; Remove the albumart image provider. (LP: #1262711) [ Albert Astals . Carousel: Add test to make sure we only create the needed delegates and not more; LVWPH: Remove processEvents() call from updatePolish() It causes some reentrancy issues and in some times you end up in polishItems() with items that have been deleted because you called processEvents() This means i need a small tweak in itemGeometryChanged to not reposition items if we are inside a setContentHeight call and two small tweaks to tests since now things happen in a different order and numbers are different (though equivalent) (LP: #1297240. Card.qml binding loops are gone. hooray \o/ Also made the aspect properties readonly [ Mirco Müller ]; A potential fix for "Cannot read property 'state' of null"-failure on Jenkins with the VisualSnapDecisionsQueue QML-test of notifications. [ Michael Terry ]; Pass user's preference for auto-brightness on to powerd. (LP: #1273174) [ Michael Zanetti ]; Registers a dummy QObject as QTestRootObject in uqmlscene in order to fix make trySomething with Qt 5.2.; For now, have libunity-private depending on libunity-core-6.0-9 as the gsettings schema is here. The dependency wasn't direct and dropped from Touch image #271. Consequently, unity8 didn't start (gsettings segfaulting). Proper strategy will be to include the schema in another package to only pull it. (7d8a67655) 2014-04-22 Michał Sawicz * Don't install a .desktop file for unity-scope-tool, SDK deals with it. (55116c99d) * Don't wait on indicator startup. (6f5959f48) 2014-04-22 Andrea Cimitan * Coding style (a8da32681) * Update tests (f2ec35b52) * Fix 1309135 (df6c8d7f0) * removed line (1e1841e32) 2014-04-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b8551f580) 2014-04-21 Josh Arenson * Revert argument change to run script (05a57d96a) * Make parser treat single dash argumens the same as double dash arguments (358de217a) * Implemented support for all requested cli options (50572adf4) * Command line parser works for mousetouch, and frameless (8b34afbf1) * Command line parser works for fullscreen option (2b30e6edd) 2014-04-18 Michael Terry * Pretend that the greeter session is an ubuntu-touch session, so that indicator-network will start (f6d6e2c53) * And update qmluitest (e90533604) * Drop clock active property (194251233) * Merge from greeter-ux-fixes (2d6804801) 2014-04-17 Ying-Chun Liu * Connect signals (899ab6398) 2014-04-17 Michael Terry * Merge from trunk (4f64c2d7d) 2014-04-17 Ying-Chun Liu * Add logout (c3d275f51) 2014-04-17 Albert Astals * Merge (d5adae9be) 2014-04-17 Andrea Cimitan * [ Albert Astals ]; Fix last item X position Fixes clicking on the last item sometimes not working (LP: #1301871); Use upstart in ./run Makes it so that you can use the lock button on the device without getting that nasty hwc crash; Remove AnimationControllerWithSignals.; Use the correct delegate base item for the Carousel test; Some simplification in DashContent Kill the ScopeDelegateMapper in favour of a simple if (that will eventually go away). Removal of all the fake scopes in the tests that added nothing of value to the tests. Removal of movementEnded signal that was unused. Removal of movementStarted and positionedAtBeginning signals that were being used as function calls. Rework DashContent tests so they what the function does what it is supposed to do instead of just making sure QML signals work .; Improve Card creation time by adding loaders that make sure only what's needed is loaded In my computer it goes from RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 3.217 msecs per iteration (total: 3,218, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.647 msecs per iteration (total: 1,648, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.514 msecs per iteration (total: 1,515, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.471 msecs per iteration (total: 1,471, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 1.447 msecs per iteration (total: 1,448, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 1.276 msecs per iteration (total: 1,276, iterations: 1000) to RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 2.916 msecs per iteration (total: 2,917, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.504 msecs per iteration (total: 1,504, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.060 msecs per iteration (total: 1,061, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.052 msecs per iteration (total: 1,053, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 0.727 msecs per iteration (total: 728, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 0.817 msecs per iteration (total: 818, iterations: 1000) (LP: #1297197) [ Allan LeSage ]; DashApps emulator get_applications should return a list ordered by visible y, x. [ Andrea Cimitan ]; Workaround for lp1301309 until fixes for palette in ui toolkit (LP: #1301309) [ Leo Arias ]; Reverted the change that returns application cards instead of titles. [ Nick Dedekind ]; Indicator services started by unity8 upstart configuration rather than manual emmision from indicator manager. [ Mirco Müller ]; Fix notification ap-test assertions. [ Michael Terry ]; Use new tablet and phone backgrounds from Design. [ Michael Zanetti ]; workaround the QTestLogger assertion issue with make tryXyz and our custom uqmlscene (bfa0c0f01) 2014-04-17 Albert Astals * Merge (cf638dfc5) 2014-04-17 Andrea Cimitan * merge trunk (954613aaf) * hi (99a55f6fc) 2014-04-17 Albert Astals * property rename (abadfcf80) * Merge (d31b0c91d) 2014-04-17 Michał Sawicz * Merge trunk. (0a9e4a77e) 2014-04-16 Victor R. Ruiz * Autopilot: Style fixes (534d489e7) 2014-04-16 Albert Astals * don't need the id anymroe (de921159a) 2014-04-16 Andrea Cimitan * Hopefully will work this time (32736dd08) 2014-04-16 Albert Astals * reorg++ (d31e7c668) * reog++ (d57547edb) * A bit more of reog (46f012dc6) * Fix the previous fix ^_^ (2fc6eded7) * Fix test (3a2d99fb9) * Merge (62dd80735) * Fix binding loop in FilterGrid height (3d3a8ccf9) * Pass ARGN down (d4ff69ff6) 2014-04-16 Andrea Cimitan * this was added by mistake (0aaafd5b2) * new cmake (500e12083) 2014-04-16 Michael Terry * Re-enable launcher in tablet greeter (353af5487) 2014-04-16 Mirco Müller * Make sure build depends on unity-notifications-impl-3 (unity-api 0.1.3). (848eab1b2) * Make sure to depend on unity-notifications-impl-3. (017bdd889) 2014-04-16 CI bot * Releasing 7.85+14.04.20140416-0ubuntu1 (a07cba743) 2014-04-16 Albert Astals * Improve Card creation time by adding loaders that make sure only what's needed is loaded (ab4e43d69) 2014-04-16 Michael Zanetti * workaround the QTestLogger assertion issue with make tryXyz and our custom uqmlscene (b24110ebf) 2014-04-16 Michael Terry * Use new tablet and phone backgrounds from Design. (d536bf992) 2014-04-16 Albert Astals * Some simplification in DashContent (fc2a5b6eb) * Use the correct delegate base item for the Carousel test (3cc94f697) * Remove AnimationControllerWithSignals. (e8ed8d019) * Use upstart in ./run (0a8cb52d2) 2014-04-16 Nick Dedekind * Indicator services started by unity8 upstart configuration rather than manual emmision from indicator manager. (3116599d1) 2014-04-16 Andrea Cimitan * Workaround for lp1301309 until fixes for palette in ui toolkit Fixes: 1301309 (c1e2778c7) 2014-04-16 Albert Astals * Fix last item X position (f2bd4e195) 2014-04-16 Allan LeSage * DashApps emulator get_applications should return a list ordered by visible y, x. (2f2698da4) 2014-04-16 Michael Terry * After finishing hiding, put the greeter back on the left for reliably showing (42f496c9d) 2014-04-16 Leo Arias * Reverted the change that returns application cards instead of titles. (239513514) 2014-04-16 Mirco Müller * Fix notification ap-test assertions. (fd0cfea4c) 2014-04-16 Andrea Cimitan * New cmake (bcd891ad9) 2014-04-16 Albert Astals * make the iterations a parameter (6ed5060df) 2014-04-16 Andrea Cimitan * [ Michael Terry ]; When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo. (LP: #1227753) [ Leo Arias ]; Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails.; Test application life cycle with fake apps, instead of messaging and address book. [ Didier Roche ]; Resync trunk with previous revert upload [ Michał Sawicz ]; Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Albert Astals ]; Take into account the originY when specifying the delegate ranges Fixes bug #1300302 (LP: #1300302) [ CI bot ]; Resync trunk [ Allan LeSage ]; Swiping open an indicator must show its correct title--protect against lp:1253804 . (LP: #1253804) [ Alexander Sack ]; Fix TypeError: issue seen in system_integration autopilot test on image 279. (LP: #1303685) [ Bill Filler ]; Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Leo Arias ]; Added a search autopilot helper. [ Michael Terry ]; Provide a all-in-one script for getting a device to an unlocked state. Revert to previous version as it's linked to latest sdk change which is making gallery-app AP tests failing on the CI dashboard (fc1dec768) * Update variable (0701b9de3) * Updated variable (7f6377858) * more quotes (ec77e3d24) 2014-04-16 Albert Astals * Fix some warnings (ee56217e6) * Get rid of some warnings (7a8d538d8) 2014-04-16 Andrea Cimitan * More (87e6f533a) 2014-04-16 Albert Astals * Fix autopilot test (164cbbe0a) 2014-04-16 Andrea Cimitan * Fix timeformattertest test with different locales (eb68a6a68) 2014-04-16 Albert Astals * aestetic changes (2f0b72b6e) * Merge (d08ddb5c5) 2014-04-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8981abaab) 2014-04-15 Allan LeSage * Stripping tags per Saviq's request. (ff6c93952) 2014-04-15 Michael Terry * Don't care about enabled status when determining to show clock time (ac7aa1f1a) 2014-04-15 Andrea Cimitan * Fix autopilot localised tests (69b3541a9) 2014-04-15 Mirco Müller * Make sure input is also blocked for apps when snap-decisions show up. (85727f575) 2014-04-15 Albert Astals * Add ; (b5b03cd00) 2014-04-15 CI bot * Releasing 7.85+14.04.20140415.2-0ubuntu1 (8e5c66dcc) 2014-04-15 Michael Terry * When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo. Fixes: 1227753, 1267624, 1307489 (e6288442c) 2014-04-15 Leo Arias * Test application life cycle with fake apps, instead of messaging and address book. (5b2405282) * Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails. (c5cc48efd) 2014-04-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (450b36d0b) 2014-04-14 Ted Gould * Dbus interface testing (690519cbe) 2014-04-14 Michael Terry * Merge in ~elopio/unity8/use_fake_instead_of_messaging (295ab579b) 2014-04-14 Ted Gould * Now unicode happy (4abf59360) * Upper case hex (d1a0d9509) * More tests (544fe286b) * Dbus encode/decode test (89023c3cc) * Making the functions static to make testing them easier (ef92825c0) 2014-04-14 Michael Zanetti * merge Alberts fix in here (c050661a4) * workaround the QTestLogger issue with make tryXyz and our custom uqmlscene (4d1f3baa1) 2014-04-14 Michael Terry * Add back darkening (a640892a3) * Whoops, didn't realize I left a .THIS file (9da964961) 2014-04-14 Mirco Müller * Changed the test_modal_sd_with_greeter() AP-test to avoid a collision with mterry's greeter-ux-fixes branch... no longer using the launcher-reveal to verify interaction is still possbible, but using the swiping of the greeter itself. (60536fc7a) 2014-04-14 Michael Terry * Use full size versions (25d5aff14) 2014-04-14 Albert Astals * Add windowShown so that make tryGenericScopeView works again (664ef9344) 2014-04-14 Michael Terry * Use required instead of visible to determine shadow visibility (8022b450f) 2014-04-14 Nick Dedekind * Fixed appointment colouration (a24f43e95) 2014-04-14 Victor R. Ruiz * Autopilot: Helpers for notifications (e8376ff13) 2014-04-14 Albert Astals * Don't need this addition (e63c1a385) 2014-04-14 Michael Terry * Set language after starting upstart job to let customization do it's thing (4fbb90842) * Merge from trunk (d48475a1d) 2014-04-14 Albert Astals * Some simplification in DashContent (518e3e1b8) 2014-04-14 Michael Terry * Merge from trunk (8cea9e862) 2014-04-14 tpeeters * re-do the changes of r820 which was reverted (48e4c6635) 2014-04-14 Mirco Müller * Undid a fix, which slipped in from another branch to avoid merge-conflicts. (06b86281d) 2014-04-14 Albert Astals * Merge lp:~aacid/unity8/carouselLastItemClick (3be0f91b8) * Obey documentation (cff0a2ce2) * remove AnimationControllerWithSignals (d0ccb55b2) * Use initctl (d6509f7cb) 2014-04-14 Michał Sawicz * Add Notifications to common, too. (9e24f6768) * Add misc:Depends to unity8-common. (07313216a) 2014-04-12 Ted Gould * Fleshing thest test out some (4624bccc5) * Bootstrap count tests (569a6304c) * Isolate this test with dbus-test-runner now that it exports to dbus (e05b395e2) 2014-04-11 Ted Gould * Cleaning up hash syntax and putting some debug messages in (79269eabb) * Truth is hard (92d0b1af8) 2014-04-11 Leo Arias * Merged with prerequisite branch. (46e08ae0b) * Merged with trunk. (b8d6e6053) 2014-04-11 Mirco Müller * Argl... wrong object-names used. (2253b7fb1) 2014-04-11 Albert Astals * wait is evil (5e9410218) 2014-04-10 Ted Gould * Magic variant unpacking (d0edf4e19) * Change usage of arg so that it actually works (a5ed19d9d) * Switching who we show (911be18a5) * Pulling some common code into a helper function (924875142) * Switching to return a list (23d6b5449) * Make sure to register as a virtual object (e5446251d) * Fixing object paths (45148f647) * Forgot to plug in our getters and setters (716849035) * All of the set and get stuff (b668264a8) 2014-04-10 Albert Astals * Just bail out if unity8 is running (5d1935068) * Don't get the previous log, it's confusing (251128e3d) * Use upstart in ./run (048dee817) 2014-04-10 Michael Terry * Add new string to pot (bdb6c0293) * Make it look better when logging in via launcher swipe (67edc4971) * Merge from greeter-ux-fixes (6f2b997ef) * Make background look right for a launcher-drag too (365c2f3cb) 2014-04-10 Mirco Müller * Put property-definition and value-binding in one line. (75772ee49) 2014-04-10 Albert Astals * Make xvfbtests work in the DashView plugins (d47b7f84e) 2014-04-10 Andrea Cimitan * Updated upstart and autopilot test (436e25307) * Tweaks to upstart job (77aa03107) 2014-04-10 CI bot * Releasing 7.85+14.04.20140410.1-0ubuntu1 (9c61eb864) 2014-04-10 Leo Arias * Added a search autopilot helper. (0b9b1925b) 2014-04-10 Albert Astals * Take into account the originY when specifying the delegate ranges (0aac34881) 2014-04-10 Alexander Sack * Fix TypeError: issue seen in system_integration autopilot test on image 279. Fixes: 1303685 (f7af8d944) 2014-04-10 Michael Terry * Provide a all-in-one script for getting a device to an unlocked state. (d466fe95a) 2014-04-10 Bill Filler * Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (7fd0ee7cf) 2014-04-10 Allan LeSage * Swiping open an indicator must show its correct title--protect against lp:1253804 . (f36472482) 2014-04-10 CI bot * Resync trunk with previous revert upload; Revert to previous version as it's linked to latest sdk change which is making gallery-app AP tests failing on the CI dashboard (72958b049) 2014-04-10 Didier Roche * add a commit message (67b483ed9) 2014-04-10 Michał Sawicz * Fix whitespace. (7f4d47f6d) 2014-04-10 Didier Roche * add another changelog entry to get a simplier version for the next release (249242546) * Revert to previous version as it's linked to latest sdk change which is making gallery-app AP tests failing on the CI dashboard (c1c327964) 2014-04-09 Michael Terry * Add unity8-greeter-starting emission so we can start the wizard that way if we want (ddb0c6e4b) * Move the unity8-greeter-started upstart event into src/main.cpp where maliit will be ready to go instead of just crashing (b6fd5626f) * Make dropshadows invisible if greeter is (9f6ce9e6c) 2014-04-09 Alexander Sack * fix issue seen during image testing in system_integration test: 'TypeError: Can't convert 'bytes' object to str implicitly' (7a11663f4) 2014-04-09 Leo Arias * Cleanup. (1ec4c6537) * Launch the fake app with upstart. (48b4e9660) 2014-04-09 Allan LeSage * Correct super invocation oops. (9dd07fe28) * Skip indicator-bluetooth on manta. (fc0cab323) * Merged trunk. (f5d16bd8b) 2014-04-09 Nick Dedekind * removed upstart from indicator manager (1d9cdaf6b) * added indicator-services-start emit to unity8 upstart conf (643bc1f73) 2014-04-09 Ying-Chun Liu * Add zoom-out unit test (6c81aeac5) 2014-04-09 Bill Filler * merge with trunk (3c22aecac) * added a TODO comment (e1cdf50cd) 2014-04-09 Oliver Grawert * make indicators start earlier by emitting indicator-services-start from a post-start script in unitys upstart job (32a908b5a) 2014-04-09 Michał Sawicz * Not binary, source version. (690cc7307) * Fix thumbnailer dep and drop tool recommends. (0073b0966) * Wrap-and-sort. (3865e00fb) * Introduce unity8-common for shared resources. (4917ab3ed) 2014-04-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7d03ee94d) 2014-04-08 Ted Gould * DBus, lots of DBus (c8082f9c9) 2014-04-08 Michael Terry * Merge from greeter-ux-fixes (cc2ca6073) 2014-04-08 Ted Gould * Introspection data (f313567da) 2014-04-08 Michael Terry * Merge from trunk (2fef0bb1a) 2014-04-08 Ted Gould * We's be on dee bus (686d6e61f) 2014-04-08 Michael Terry * Try to make test more robust (388cba7dd) 2014-04-08 Andrea Cimitan * Workaround for lp 1301309 (f37bba109) 2014-04-08 Michael Terry * Merge from trunk (224705921) 2014-04-08 Albert Astals * Fixes (0be225119) * More overshoot check fixes (b1d46d58d) * Merge lp:~aacid/unity8/delegateRangeNeedsOriginY (f64a686c5) * Take into account the originY when specifying the delegate ranges (e45494cd7) 2014-04-08 Ying-Chun Liu * Fix some unit test. (a38264597) * Fix PinchArea and tests. (360a272bc) 2014-04-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1f21178d9) 2014-04-07 Leo Arias * Fixed flake8 errors. (aee4a5406) 2014-04-07 Ted Gould * Make sure initialize the values (b050452c9) * Getting a count and a visible marker in the per item object (4b25f3909) * Relating us with the virtual object (c54b124a3) 2014-04-07 Leo Arias * The tests only work on devices, so no need for device emulatios scenarios. (957f324df) * Forgot to call the super set up. (6f014026f) * Moved more common things to the base test case. (c453c879d) * Removed the unneeded qml. (2b286629c) * Remove the usage of address book and the rest of messaging app. (0f38e63ec) * Move the duplicated assertion to the base test case. (4916d87be) * Use a fake application on the autopilot test_can_launch_application. (5aebfad6f) 2014-04-07 CI bot * Resync trunk (e7f1040e7) 2014-04-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e9ab82281) 2014-04-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (279cbaeb3) 2014-04-04 CI bot * Releasing 7.85+14.04.20140404-0ubuntu1 (effe97726) 2014-04-04 Albert Astals * Adapt to new TabBar (eeab218d3) * Fix last item X position (f62d7f4d3) * [ Michael Terry ]; Re-enable test_networkmanager_integration autopilot test on phone platforms [ CI bot ]; Resync trunk [ Leo Arias ]; Reverted the open_preview autopilot helper to return a Preview object. [ Albert Astals . If not running in Mir load the "fake" application manager (LP: #1301547); Remove unused properties from DashRenderer [ Michael Zanetti ]; Fix tests after right edge merge. Drop old stages tests. Fix right edge tests if someone doesn't have the GRID_UNIT_PX exported. make GenericScopeView test more robust that broke because the ordering changed; add "make xvfbtestSomething" target to run qml tests in xvfb; make the "make test" commit hook work again (ade823fd9) * fix wrong merge ^_^ (aa864a1c3) * Merge (36c97da8a) * Make the Card be inside an async loader (6de26e4e9) 2014-04-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6a856b6a8) 2014-04-03 Ying-Chun Liu * Add testing mouse wheel and flickable width and height. (7d716728e) 2014-04-03 CI bot * Releasing 7.85+14.04.20140403.1-0ubuntu1 (8504106a7) 2014-04-03 Michael Zanetti * make the "make test" commit hook work again (a09d45236) 2014-04-03 Michael Terry * Re-enable test_networkmanager_integration autopilot test on phone platforms (8873e78c4) 2014-04-03 Albert Astals * Remove unused properties from DashRenderer (576fd2d25) 2014-04-03 Leo Arias * Reverted the open_preview autopilot helper to return a Preview object. (011c277a3) 2014-04-03 Michael Zanetti * add "make xvfbtestSomething" target to run qml tests in xvfb (9a27cd373) * Fix tests after right edge merge. (048bb880b) 2014-04-03 Albert Astals * If not running in Mir load the "fake" application manager Fixes: 1301547 (6b82fd1b6) * Merge (931499a9e) * Need this fix in the scope tool too (cab4d9ce9) 2014-04-03 Michael Zanetti * drop stage.qml. not used any more (ac9b523ba) 2014-04-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2faa73d99) 2014-04-02 Allan LeSage * Per elopio's suggestion, combine get_applications length and visible tests. (23b322865) * No sleeping pls. (3599a75f5) * Much clearer visual sorting. (42f4dc984) * Merge elopio's revert_get_applications, fixing tests. (c288e83e8) * Merged trunk. (ce3dd1de8) 2014-04-02 Mirco Müller * Needed to update the SortFilterProxyModel because the Role-enum was moved to unity-api away from unity-notifications. (5b965bd6d) * Merged with trunk (841bc0acc) 2014-04-02 Michael Zanetti * fix tryCompare in tst_Shell (21f4a8767) * make sure we always have the same starting conditions (d25dde7ff) * fall back to 8 px/gu if GRID_UNIT_PX doesn't define anything meaningful (0e5864992) 2014-04-02 Michael Terry * Merge from greeter-ux-fixes (aad7bab92) 2014-04-02 Michael Zanetti * also drop this (0a3bfa880) * revert unwanted change (95ec4235e) * also drop it from CMake (80a831c39) * remove tsts_Stage. Stage is not more. (a8fac2f05) 2014-04-02 Albert Astals * fix tests (45d87c3bf) 2014-04-02 Leo Arias * Merged with trunk. (b154d72cf) * Merged with trunk. (311146f73) * Merged with trunk. (24871a099) * Merged with trunk. (9dd5d4f66) 2014-04-02 Michael Terry * Merge from trunk (0f46dde46) 2014-04-02 Michael Zanetti * merge trunk (66635f7c7) 2014-04-02 Albert Astals * lp:~aacid/unity8/application_manager_install_fix (a6bf43e90) * Merge (982ebfb8d) * need to install stuff too (4ee235a41) * If not running in Mir load the "fake" application manager (a566d716c) 2014-04-02 CI bot * Resync trunk (67dedce92) 2014-04-02 Leo Arias * Reverted the open_preview autopilot helper to return a Preview object. (7790ae3d3) 2014-04-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a07680aa7) 2014-04-01 CI bot * Releasing 7.85+14.04.20140401.3-0ubuntu1 (98ff6057e) 2014-04-01 Albert Astals * Card.qml binding loops are gone. hooray \o/ (a8baaadae) 2014-04-01 Mirco Müller * A potential fix for "Cannot read property 'state' of null"-failure on Jenkins with the VisualSnapDecisionsQueue QML-test of notifications. (62557ed50) 2014-04-01 Michal Hruby * Don't reset search string after 2 seconds. Fixes: 1297246 (cb489c179) 2014-04-01 Michael Zanetti * Registers a dummy QObject as QTestRootObject in uqmlscene in order to fix make trySomething with Qt 5.2. (2bf8e425a) 2014-04-01 James Henstridge * Remove the albumart image provider. Fixes: 1262711 (8e2a4cbeb) 2014-04-01 Albert Astals * LVWPH: Remove processEvents() call from updatePolish() (94098fef1) 2014-04-01 Michael Terry * Pass user's preference for auto-brightness on to powerd. Fixes: 1273174 (b93410590) 2014-04-01 Michał Sawicz * We'll only have the unity-mir and mock Ubuntu.Application plugins now, no need for mangling the import paths. (b54923156) 2014-04-01 Albert Astals * Carousel: Add test to make sure we only create the needed delegates and not more (f69160aeb) 2014-04-01 Michael Zanetti * Implement the right edge app switching with an App Spread. (091e17668) 2014-04-01 Didier Roche * For now, have libunity-private depending on libunity-core-6.0-9 as the gsettings schema is here. The dependency wasn't direct and dropped from Touch image #271. Consequently, unity8 didn't start (gsettings segfaulting). Proper strategy will be to include the schema in another package to only pull it. (396541249) 2014-04-01 Antti Kaijanmäki * Indicators/RootActionState: use g_variant_iter_loop to extract icons. (b83e87e16) 2014-04-01 Bill Filler * merge (d6a05d1a9) 2014-04-01 Michael Zanetti * drop newline (5c0b84fab) * merge (a2a117564) * don't immediately focus a newly started app (90ce43c13) 2014-04-01 Michał Sawicz * Reduce diff. (589e772bf) 2014-04-01 Leo Arias * Reverted the change that returns application cards instead of titles. (48bb47549) 2014-04-01 Allan LeSage * Adjust input import. (8a742461e) * Privatize get_indicator_widget and get_indicator_page. (b2a5e153a) * Removing an unused/tested 'close_indicator_page' function. (66de87229) 2014-04-01 Michal Hruby * Add a dummy qml (a194d10f7) * Add mock Thumbnailer (d65952ccd) 2014-04-01 Albert Astals * whitespaaaaaaaace (a09211cc4) * Fix carousel (833210ada) 2014-04-01 Michael Terry * Add -w argument to specify settle command (0acff0163) 2014-04-01 Albert Astals * Merge + fix test (0075b54ec) 2014-04-01 Michael Zanetti * register a dummy QTestRootObject to make "make trySomething" work again (375c90576) 2014-04-01 Michał Sawicz * Fix deps. (f52ae8854) 2014-04-01 Albert Astals * Benchmark various card models (d482a3e61) * Only create an image if we have one (2de1a6fff) 2014-04-01 Michal Hruby * Adjust the deps (e774aec99) * Merge trunk (01653d31a) 2014-04-01 Albert Astals * Do not create subtitle if not needed (57e3f5ea3) 2014-04-01 Didier Roche * For now, have libunity-private depending on libunity-core-6.0-9 as the gsettings schema is here. The dependency wasn't direct and dropped from Touch image #271. Consequently, unity8 didn't start (gsettings segfaulting). Proper strategy will be to include the schema in another package to only pull it. (c58e89f15) 2014-04-01 Albert Astals * Save 0.2 msec on headers without mascot shape (f0632f592) 2014-04-01 Michał Sawicz * Break ubuntu-touch-session << 0.107 for surfaceflinger incompatibility. (d3a831d51) 2014-04-01 Albert Astals * Fix the optimization ^_^ (11c518894) * Don't create a header if we don't need it (d45da6fde) 2014-03-31 Allan LeSage * Correct a fixtures title. (f50756dbd) * Year amendment for indicators autopilot tests. (7b599ebff) * Autopilot wait for indicator to be fullyOpened. (c267f2aa3) 2014-03-31 Leo Arias * Take into account the status in nexus10. (c660627d1) 2014-03-31 Michał Sawicz * Fix indentation and drop unity8-private providing unity-application-2, since it doesn't. (ed6d0d8b6) 2014-03-31 Albert Astals * Optimize Card by not creating an invisible ShaderEffect when unneeded (6b42dda45) * Run the benchmark 1000 times (399bfec71) * Optimize Card by not creating an invisible UbuntuShape when unneeded (cb32e9492) 2014-03-31 Michael Zanetti * clean out libuntuy-mir1. It'll be pulled by shlibs now (ea95bfdde) * drop the apps killing workaround again that came in handy while developing (cd5572c52) 2014-03-31 Michał Sawicz * Bump version to ensure incompatibility with previous Unity.Application implementations. (f68d8b333) 2014-03-31 Michael Zanetti * drop pulling in qtubuntu for Unity.Application. It doesn't provide it any more (0d99adb90) 2014-03-31 Mirco Müller * Merged with trunk and fixed resulting merge-conflict in qml/Notifications/Notifications.qml. (305c6ffba) 2014-03-31 Albert Astals * Merge lp:~aacid/unity8/lvwphnoprocessevents (a28d49bd8) * Merge lp:~aacid/unity8/removeUnusedDashRendererProperties (67edfcccd) * Merge lp:~aacid/unity8/categoryDelegateRangeFixOvershootDetection (8534d2aaa) * Merge lp:~aacid/unity8/test_carouselNoNoSizeDelegates (4365af1a0) 2014-03-31 Michael Zanetti * unity-private doesn't provide Unity.Application... it's libunity-mir1! (6365874e7) 2014-03-31 Michael Terry * Merge in greeter-ux-fixes (e77120ded) 2014-03-31 Michael Zanetti * add missing comma (6dba311c4) 2014-03-31 Michael Terry * Merge from trunk (14ca31086) 2014-03-31 Michael Zanetti * also depend on application-impl (without specific version) (25dd90d5f) * pull in application-impl-2 (0c1eb4320) 2014-03-31 James Henstridge * Make sure Ubuntu.Thumbnailer is imported so that image providers are available. (8270697ec) 2014-03-31 Albert Astals * Match the other ifs structre (30065ae60) * Fix the bindings (d75641d58) 2014-03-31 James Henstridge * Depend on thumbnailer QML binding and D-Bus service. (d5a53d98e) 2014-03-31 Michal Hruby * Add one more test (d00e55182) 2014-03-31 Albert Astals * Card.qml binding loops are gone. hooray \o/ (7080a5bcc) 2014-03-31 Michael Zanetti * move sidestage out of the way when the focused app changes (ffdd705da) 2014-03-31 Mirco Müller * Potential fix for a jenkins-related issue with VisualSnapDecisionsQueue QML-test. (a775bd9e3) 2014-03-31 Albert Astals * Make test work both under xvfb and non xvfb (8a6773acd) * Merge (8a9960098) 2014-03-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (32b080918) 2014-03-30 Albert Astals * whitespace (229919207) 2014-03-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1dda64da4) 2014-03-28 Leo Arias * Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails. (1ebf23dfb) 2014-03-28 Allan LeSage * Correct dash emulator from dashSectionHeader to dashCategory. (d8de86eef) * Merge trunk. (650fd7576) 2014-03-28 Leo Arias * Merged with trunk. (cbcd43cfd) 2014-03-28 Albert Astals * Remove processEvents() call from ListViewWithPageHeader::updatePolish (f12d80634) 2014-03-28 Michael Zanetti * oops. wrong one :D (87b834de3) * bring back some comment (10d478027) * merge (c7c028589) * revert some changes in AP which are not required any more (6aac81674) 2014-03-28 Ying-Chun Liu * Test scale factor. (fcef272b7) * merge trunk (b13bf6333) 2014-03-28 Michał Sawicz * Only enable sideStage on >= 100 GU wide devices. (05f11f6e2) * We'll only have the unity-mir and mock Ubuntu.Application plugins now, no need for mangling the import paths. (9641a015f) 2014-03-28 Michael Zanetti * make autopilot work *again* (8ed8c76c7) 2014-03-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (183a83406) 2014-03-27 Allan LeSage * Restore platform import (cursing pyflakes), sphinxify a return in main_window emulator. (fc906907c) 2014-03-28 Michał Sawicz * Merge trunk. (e7358c196) 2014-03-27 Allan LeSage * Remove emulator, preferring main_window opening of indicator. (53a2287a0) 2014-03-27 Leo Arias * Added a search autopilot helper. (e747c8744) 2014-03-27 Michael Terry * Merge greeter-ux-fixes again (0a229a5de) * Fix calculation of showProgress (578fb4962) * Merge in greeter-ux-fixes branch (66a405cd1) * Remove comment (1268c36e3) * Merge from trunk (db244d43c) * Handle needing to wait for ofonod on first boot (ce2f370b5) 2014-03-27 Albert Astals * reviews (21953ca48) * Test we only create the items we need and not more (59057ee99) 2014-03-27 Michael Terry * Depend on schemas (46b354bfa) 2014-03-27 Ying-Chun Liu * Fix PreviewZoomableImage unit test. (4fa93a0d7) 2014-03-27 CI bot * Releasing 7.84+14.04.20140327.1-0ubuntu1 (fe8ee39e5) 2014-03-27 Michał Sawicz * Increase kill timeout so that crashes are not truncated. (f9305fda5) 2014-03-27 Michael Terry * Pass user's preference for auto-brightness on to powerd. Fixes: 1273174 (2d174c4d8) 2014-03-27 Albert Astals * Make "Recent" translatable and update pot file (744ff0acb) * Make geometry calls for autopilot work again (1e13602df) 2014-03-27 Ying-Chun Liu * Fix a small typo in LazyImage: scale -> scaleTo (f702e5d02) 2014-03-27 Mirco Müller * Make visual queue of (up to five) snap-decisions contract and expand according to visual design-spec. (cc7ba8130) 2014-03-27 Michael Zanetti * allow executing a single test function (e3fd62221) 2014-03-27 Albert Astals * != -> > (99ca11d4e) * Do not start creating delegates until we have a size for them (eb3a19a29) 2014-03-27 Michał Sawicz * Increase kill timeout so that we get working crash reports. (53a371d1b) 2014-03-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aad075ce4) 2014-03-26 Allan LeSage * Move getting the indicator page to main_window emulator. (c0c316dd3) * Reconcile with ancient MP, removing extraneous pointer. (8be00cd00) * Brush up indicator page title test; pyflakes and pep8 improvements. (6f9a2337d) 2014-03-26 Michael Terry * Review nits (6840d4f42) * Lazily start indicators, and only once unity8 is ready to receive them (f4ede851d) 2014-03-26 Allan LeSage * Merged trunk, resolving main_window emulator conflict. (38e32425c) 2014-03-26 Michael Terry * Depend on dbus-x11 for dbus-launch (7dc7c2925) * Pass user's gsettings value for auto-brightness on to powerd (356dfe1ea) 2014-03-26 Albert Astals * Fix condition for detecting overshooting (d273fd4f0) * Fix the tests (2c2225f28) 2014-03-26 Allan LeSage * Visible ordering for dash_apps. (83742ab87) 2014-03-26 Albert Astals * Remove unused properties from DashRenderer (95ba07899) 2014-03-26 Ying-Chun Liu * Merge trunk (a20bb334d) 2014-03-26 Michael Terry * Keep infographic animations same speed (59b2bb1c1) 2014-03-25 Michael Terry * Use new backgrounds from design (f6bd4264f) * Merge from trunk (a3161f71e) * Workaround accountsservice bug with system user data (166b6d6b2) * Only use ubuntu-touch-session if available (cc17e1333) * Edge demo fixes (f549c4c12) 2014-03-25 Albert Astals * Make "Recent" translatable and update pot file (465768329) 2014-03-25 Michael Terry * Drop dbus-x11 dep (we use gdbus now) and ubuntu-touch-session dep (it will depend on us, not the other way) (03de968f8) * Hide lockscreen that might appear behind greeter until greeter finishes fading in (28f9d9069) * Move lockscreen files to Components so that notifications can use them (b00693c6d) 2014-03-25 Michał Sawicz * Bump SDK dependency version. (dde65cb41) 2014-03-25 Michael Zanetti * more improvements, still not working (7a6d21b5b) 2014-03-25 Michał Sawicz * Merge trunk (480e948d7) 2014-03-25 Michael Terry * Fix some review nits (9d4200b53) 2014-03-25 Michael Zanetti * make it a bit better, still broken tho :/ (f341dc3c6) 2014-03-25 Michael Terry * Fade in different components as design wants (f91fa3ce9) 2014-03-25 Michal Hruby * Remove the albumart image provider (bc995ada0) 2014-03-25 Michael Terry * Add back accidentally remove input filter area (92f617de6) 2014-03-25 Michael Zanetti * fix autopilot tests after merge (1e754923f) * bring back the paper background that accidentally got dropped in the last merge (325a5bb14) 2014-03-25 Michal Hruby * Fix test (1303d2aa5) * Don't reset search string after 2 seconds (e9b881c0b) 2014-03-25 Michael Zanetti * set LD_LIBRARY_PATH conditionally, depending on the availability of gcc (5fd948e20) * merge trunk (83d9e1e5a) * bump required unity-api version (c7c4fce6e) 2014-03-25 Albert Astals * Merge (4f6e05483) 2014-03-24 Michael Terry * Merge from trunk (2321df6ab) 2014-03-24 Mirco Müller * Replaced onAdd/onRemove functions with SortFilterProxyModel-based binding to prevent potential race-conditions. (09f6ad666) 2014-03-24 Michael Zanetti * make the make test commit hook work again (8475241cd) * fix newline at EOF (7565df8bd) 2014-03-24 CI bot * Releasing 7.84+14.04.20140324.4-0ubuntu1 (05d4a3396) 2014-03-24 Albert Astals * LVWPH: cull lost items (7dc5cc417) 2014-03-24 Michał Sawicz * Switch to new scope backend and apply required visual adaptations. Fixes: 1294294 (687ce26de) 2014-03-24 Michal Hruby * Change and extend the way non-installed scopes are started with the scope-tool. (5319a47d1) 2014-03-24 Michał Sawicz * Fix rating input action to always be "rated", not dynamic. (326a4f17c) 2014-03-24 Ying-Chun Liu * Remove the tests which are already in ZoomableImage's test. (974e2aca0) 2014-03-24 Michael Terry * Ship script in autopilot package (ed4d40c5a) 2014-03-24 Ying-Chun Liu * Rewrite the zoomable image code. (b09b5b41d) 2014-03-24 Albert Astals * test todo++ (28ebca095) * cull lost items (e38a04e98) 2014-03-24 Michael Zanetti * make AP work again (136225827) 2014-03-24 Michael Terry * Set language for greeter environment if user has set one (da9f5b8ac) * Make script look prettier (91dc27cdd) 2014-03-24 Albert Astals * Only set x if different than the value we want (17117538f) 2014-03-24 Michał Sawicz * Drop onlinemusic scope. (a64560c2e) * Drop scope recommends generator. (bf362f7d3) 2014-03-24 Albert Astals * Close the overlay scope when manually setting a new scope for the dash content (4283f67e3) 2014-03-24 Michał Sawicz * Depends → Recommends scopes (be90e4f0d) 2014-03-21 Michael Zanetti * increase splash timer a little, add todo (607a0aade) * bring back workaround for unlocking the greeter when an app is started "somehow" (93e7096a5) 2014-03-21 Michael Terry * Fix qmluitests (710f89213) 2014-03-21 Michael Zanetti * some improvements in the sidestage (0a18b0c6a) * add splash screen to tablet stuff (89f9de399) 2014-03-21 Michael Terry * Merge from trunk (45cab7a4a) * Use unittest.skipIf (24a102b83) * Add unlock-device script for jenkins' benefit (84162b7aa) 2014-03-21 Mirco Müller * Fix notification ap-test assertions. (e2e456585) 2014-03-21 Ying-Chun Liu * Merge mzanetti's test cases. (86fa95c8a) 2014-03-21 Michael Zanetti * make it a bit more generic (4c6c8ed04) * abstract binary qml test targets into add_binary_qml_test macro (2064fe65e) * always add NO_ADD_TEST to xvfb target (98be68849) * added a test, and slightly improve sourceSize calculation in LazyImage "fit" format (82fd6e49f) 2014-03-20 Allan LeSage * Merge trunk, demo test for swiping indicator. (288b094bb) 2014-03-20 Michael Zanetti * improve test a bit (bc655003e) * added a test to check for correct fullscreen behavior (c81ca0a43) * hide the SS drag handle when SS is outside of the screen (8ac244e58) * don't dismiss the SS if the user starts a MS app (ed035eb08) * hide stage if no focused app is around any more (abec38ce1) * fix hiding of recent apps section when there's not app running (ccb6b3367) * fix runningapplicationsgrid tile width, fix dash not intaractive when side stage overlaying (654f70be2) 2014-03-20 Michael Terry * Merge from trunk (0f741ad89) 2014-03-20 Michael Zanetti * drop ApplicationManagerWrapper & Co (22c040faf) * add tests for the new select() function (dda4fe1ed) * add possibility to select an app from the spread from the outside. (826aca609) * get rid of src -> source mapping for mainScreenshotImage and with that the fixme for the PropertyAction not working (02fa0f348) * fix animation issue with focusing a running app when there's no focused app (22537042d) * don't hide the launcher when the stages are locked and user does the long left edge swipe (5b5bec200) * update year in copyright header (7df4e4d51) * tiny cleanup as requested by review (9729f6587) * only change app's status to running after some timeout (25084e649) * drop some debug prints from mocked applicationmanager (f7114ad8e) 2014-03-19 Michał Sawicz * Merge trunk (61a2b2bfa) 2014-03-19 Michael Terry * Adjust to new UGSB api (8e9a17617) 2014-03-19 Michael Zanetti * some more minor fixes (a6eaa8c13) 2014-03-19 Michael Terry * Move upstart launching to wrapper script (37dc525f1) 2014-03-19 Michael Zanetti * more docs (a0cdb35d1) * cleanup (53b5d27be) * fix tests (bdd08ca99) 2014-03-19 Michael Terry * And add left-shadow (1f7b8c3d8) * Move dropshadow file (6345ddc81) * Add drop shadow (using Hud's image, should clean that up (dab0d5b9d) 2014-03-19 Michael Zanetti * drop unnecessary line (d889c315e) * some more commenting (3e9d536f0) 2014-03-19 Michael Terry * Make tease font light (bfaa1c6e7) 2014-03-19 Michael Zanetti * seems there's more leftover :D (e0f57e547) 2014-03-19 Michael Terry * Eat press and holds (803a0408d) * And fade out black background to greeter (b8b0c0ffe) 2014-03-19 Michael Zanetti * remove leftover (fdc9f5745) 2014-03-19 Michael Terry * Make swipe hint pulse in opacity (b7eee0caa) 2014-03-19 Michael Zanetti * add a break for future proveness (f722438a6) * rename stage to phase to avoid the obvious naming collision (3856e15ca) * add some comments (3f99a87a4) 2014-03-19 CI bot * Releasing 7.84+14.04.20140319.1-0ubuntu1 (09499debc) 2014-03-19 Michał Sawicz * Work around bug #1293478 - make sure to send ints, not doubles for volume control. Fixes: 1293478 (4960f8c88) 2014-03-19 Nick Dedekind * Fixed binding being cleared when manually changing slider value (lp#1283191). Fixes: 1283191 (e0a213995) 2014-03-19 Albert Astals * LVWPH: Make sure m_firstVisibleIndex is correctly set on removeNonVisibleItems (fb68af0e5) * Fix indicators highlight position on 5.2 (d37765f18) 2014-03-19 Michael Zanetti * fix stuff from review (a5f8994c0) 2014-03-19 Nick Dedekind * Use tags for labels (a4561580e) * Fixed actionState = 0. Added test (bbcf3ad20) 2014-03-19 Albert Astals * Fix geometry passing to our binaries (6db9e9d86) 2014-03-19 Michael Zanetti * make some props readonly (9af7d9eb0) * use existing property instead of doing the function call again (d5076b056) 2014-03-19 Michael Terry * Add dark screen behind greeter and show tease on drags (99b92e64a) 2014-03-19 Ying-Chun Liu * Fix a small typo in LazyImage: scale -> scaleTo. (b21bc6bf4) 2014-03-19 Michael Zanetti * fix nasty issue that appeard with Qt 5.2 (was bad code already, just happened to work for 5.0) (4d201fdf0) 2014-03-19 Michał Sawicz * Make props readonly. (564fce45b) 2014-03-19 Mirco Müller * Using the fill-model function from the interactive test. (6c9d5dbca) 2014-03-19 Michał Sawicz * Fix indent and add TODO. (5e00afa7e) 2014-03-19 Mirco Müller * Add the five test Snap-Decisions for the visual-queue test in one go. (2f4bc3760) 2014-03-19 Michał Sawicz * Work around bug #1293478 - make sure to send ints, not doubles. (d67d72c60) 2014-03-19 Albert Astals * Fix infinite loop in test (16a1e83ad) 2014-03-19 Michael Zanetti * added missing ; at imperative line endings (503fad125) * add comment and link to bug report (ca4d78840) 2014-03-18 Michał Sawicz * Merge lp:~unity-team/unity8/new-scopes-cleanup/ (67768f99d) 2014-03-18 Michael Zanetti * merge single test function branch as a prereq (9e161486e) 2014-03-18 Mirco Müller * Possible fix for segfault in notification-qmltest (79f6467e7) 2014-03-18 Albert Astals * LVWPH: Make sure m_firstVisibleIndex is correctly set on removeNonVisibleItems (5387f6bc3) 2014-03-18 Mirco Müller * Forgot to also use the renamed test in the cmakefile. (232be98a5) 2014-03-18 Nick Dedekind * Added test for undefined state change (cca14a0b8) 2014-03-18 Ying-Chun Liu * Merge trunk. (a61d385f2) * Move ZoomableImage to Components. Add more unit tests. (2fc0157b9) 2014-03-18 Michael Zanetti * add xvfb as a dep to ./build (468fdb92a) 2014-03-18 Michael Terry * Merge from trunk (32b71128d) 2014-03-18 Michael Zanetti * fix flakyness in tst_LazyImage with xvfb (4ade452ba) 2014-03-18 Michael Terry * Merge from trunk (0d3e495a5) 2014-03-18 Michael Zanetti * apply same to tests not added by that macro (45af6fed8) * use long options, add auto-servernum, only add xvfbtest to qmluitests (a68674a1f) * add "make xvfbtestSomething" target to run qml tests in xvfb (6860e758e) 2014-03-18 Nick Dedekind * Use undefined for invalid value (c92d42a58) 2014-03-18 Mirco Müller * Rather use implicitHeight then height to get the correct value. (2be48d1b9) 2014-03-18 Albert Astals * And now make it compile ^_^ (8fbff0cf8) * Turn this into a fuzzy compare too (60f4a591d) 2014-03-18 Mirco Müller * That didn't really help either. (2676266e3) * This second waitForRendering() seems to help fix the issue. (4471b5ae3) * Added another WaitForRendering() to make the test pass again... most of the time :/ (b239d6678) * Got rid of the last wait(), but now have to fight the initialHeight assertion again... :/ (ea0adb16a) 2014-03-18 Albert Astals * Merge (c5a345019) * Make the text for the previewheader grey (855dac699) 2014-03-18 Michael Zanetti * merge trunk (c53c7ebd3) 2014-03-18 Michał Sawicz * Fix rating input action to always be "rated", not dynamic. (94fab89be) 2014-03-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fa3fb5290) 2014-03-17 Michael Terry * Move OSKController to end of shell files, so that input is grabbed appropriately (7ada6f1b4) * Merge from trunk (7a9f31cd2) 2014-03-17 Mirco Müller * Merged mzanetti's wait()-crushing power :) (7f7e5aec6) 2014-03-17 Michael Zanetti * get rid of one of the waits (40a1ef7ad) 2014-03-17 CI bot * Releasing 7.84+14.04.20140317.2-0ubuntu1 (5d950c7b2) 2014-03-17 Michał Sawicz * Revert disable-hud, we weren't ready to land it yet. (04a844d83) 2014-03-17 Mirco Müller * The snap-decision AP-test for "incoming call"-case used the wrong objectName "notification0". It has to be "notification1". (98ee2f761) 2014-03-17 Michał Sawicz * Revert r767, it wasn't ready yet. (ccf24a25e) 2014-03-17 Mirco Müller * Typo (f1926b270) * Rename qml-test for visual snap-decision queue to make it more obvious what it is about. (4126d90e5) * Fixing more MP-comments... moving more control to bindings. (760fea8d1) 2014-03-17 Michael Terry * Merge from trunk (e538b27f6) 2014-03-17 Mirco Müller * More MP-comment fixes. (f4201033d) * Fixed the first set of issues from the MP-comments. (c02b9fb0f) 2014-03-17 Michał Sawicz * Drop two more places where resolveIconTheme() was used. (eddaee799) 2014-03-17 Michael Zanetti * enable it only for Unix Makefiles instead of disabling it for ninja (b41d17a4e) 2014-03-17 Albert Astals * Merge (09b4fd0be) 2014-03-17 Michael Zanetti * make it case insensitive (06c5ff075) 2014-03-17 Michał Sawicz * Drop unnecessary direct dep. (2c688ae41) 2014-03-17 Michael Zanetti * merge trunk, make it work with ninja too (6381eb495) 2014-03-17 Michał Sawicz * UITK overrides the icon theme anyway, so drop code handling that in unity8. (5b78fa60a) * Merge trunk (b9bc8a3e3) 2014-03-17 Nick Dedekind * Fixed slider manual update clearing value binding (a576f0bed) 2014-03-17 Michał Sawicz * Merge new-scopes-clean-to-trunk (e78f220a1) * Merge trunk (20bf711fc) * Don't add margins to Indicators, only to IndicatorRow instead. (80f8f3a36) 2014-03-17 CI bot * Resync trunk (df0623c2b) 2014-03-17 Michael Zanetti * merge trunk (d906c2d39) 2014-03-17 Albert Astals * DashFilterGrid -> CardFilterGrid in the tests (b0a3f988a) * Merge DashFilterGrid.qml to CardFilterGrid.qml (eef2f2567) 2014-03-17 Michał Sawicz * Merge trunk (74fb2f977) 2014-03-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1faf5accb) 2014-03-16 Michael Terry * Merge from trunk (c5a18d413) 2014-03-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d8617a0b1) 2014-03-14 Michal Hruby * Change and extend the way non-installed scopes are started with the scope-tool (c80783fc7) 2014-03-14 CI bot * Releasing 7.84+14.04.20140314-0ubuntu1 (98d4ab497) 2014-03-14 Albert Astals * Workaround compiz/unity7 behaviour change/bug (776611a1e) 2014-03-14 Michael Zanetti * Disable HUD from the bottom edge. (f0f522c4e) 2014-03-14 Andrea Cimitan * Adds carousel dynamic switch (691e9b2f4) 2014-03-14 Michał Sawicz * Only allow searching when preview isn't open. Fixes: 1282475 (9880f6964) * Add back the workaround for not being able scroll the image gallery (dd0bb6edc) * Bring Cards closer to design (7e8f39a76) * CardHeader improvements depending on background. Also drop prices, they need to be reworked into attributes. (378050fe8) 2014-03-14 Leo Arias * Update the url dispatcher test to use the fake app fixture from the toolkit. (37259c5db) 2014-03-14 Michael Zanetti * Fix tests under Qt 5.2. (7ee0a6d79) 2014-03-14 Albert Astals * Let's see if this helps the test pass (594348948) 2014-03-14 Michał Sawicz * Merge 5.2 fixes (91d9f956f) 2014-03-14 CI bot * Resync trunk (5ff23708e) 2014-03-14 Michael Zanetti * merge (f3e5c4a99) 2014-03-14 Andrea Cimitan * More merge (b63ffea36) * Merge el trunko (7ac291a7c) 2014-03-14 Michael Zanetti * do not hardcode any pixels (472f11af3) 2014-03-14 Albert Astals * Merge fix-5.2-tests (e0e8547a2) * Fight against zeros not being zeros (aabfc419b) 2014-03-14 Michael Zanetti * revert removal of DragHandle tests (95533c429) * seems listView.flick() behaves evern worse in 5.2 when listview snapping is enabled use positionViewAt*() instead of flick() to position the view for testing (d0e967a07) 2014-03-14 Mirco Müller * Fixed white-space issue. (08a89bd09) * Completed the AP-tests for the new modal snap-decision notifications. (cc008fc22) 2014-03-13 Michael Terry * clear greeter mir socket on greeter start (7a6c9d818) 2014-03-13 Mirco Müller * Start of AP-tests for modal snap-decision notifications. (bcdd69ca2) 2014-03-13 Michael Zanetti * Disabling DDA when Spread is in stage 2, now that DDA can handle being disabled while being dragged (def081de6) * enable antialiasing on spread tiles (7b08115dc) 2014-03-13 Mirco Müller * Best attempt sofar to "identify" if running on phone and restrict modal snap-decision notifications to this type of device. (809daa9b5) * Don't apply modal behaviour of snap-decision notifications, if the Greeter is shown. (b6dd4dfe8) 2014-03-13 Michael Terry * Start maliit-server in greeter (86621152f) * Move hideIndicatorMenu to be shared between greeter and shell, as both have indicators that want to call it (37ab689a8) 2014-03-13 Michael Zanetti * fix panel not always hiding when it should (d2b4ff8f0) * some fixes if apps are activated from outside the spread while we're in spread mode (3aae9257e) * fix tiny animation mismatch after adjusting the topMargin scaling to do an easingcurve instead of being linear (eb520835e) * drop print (188446efb) 2014-03-13 Albert Astals * Merge lp:~unity-team/unity8/new-scopes-cleanup/ (90a0c1607) 2014-03-13 Michael Zanetti * fix home button not working while in spread mode (450608dcf) 2014-03-13 Albert Astals * Click on the correct tile (12668a6c9) 2014-03-13 Michał Sawicz * Revert FIXME for starting scope registry. (c80c0b2bd) 2014-03-13 Michael Zanetti * make the topMargin follow the same easing curve as the rest (ee5c51027) 2014-03-13 Andrea Cimitan * Merged (df0cd2391) 2014-03-13 Michael Zanetti * resume app immediately when the user starts moving the greeter, otherwise it won't paint anything (c1f3657e9) * don't disable the spread for 2 running apps (fe57a2adf) * remove unused leftover property (0c442f4fc) * reenable workaround timer (867cff5fd) 2014-03-13 Mirco Müller * Restrict use of modal tinted background to snap-decision notifications. (4e20d8693) 2014-03-13 Michael Zanetti * activateApplication -> requestFocusApplication as per unity-api definition (b9c99f5a8) * make it initialize correctly (6f6d0ef54) * get rid of another wanring that may happen in some certain circumstances (1441aef49) * get rid of warning in case there is no fullscreen app (44cf7c3cf) * merge trunk (dca7d5164) * add some comments to EasingCurve (011a915af) 2014-03-13 Mirco Müller * Add input-blocking shade beneath notifications... still needs to be restricted to snap-decisions only. (ac43dfe6e) 2014-03-12 Bill Filler * set the Qt.ImhNoPredictiveText flag on wifi password field (d030accd0) 2014-03-12 Michael Terry * Drop unused code (ef00e3888) * Bump version for breaks, since 7.84 came out already (d882638d3) * Some autopilot fixes (eab45d33c) 2014-03-12 Mirco Müller * Merge with lp:~macslow/unity8/fix-object-name-of-notification-ap-test (3726f36ce) 2014-03-12 Michael Terry * Merge from trunk (dcfa9471c) 2014-03-12 Michał Sawicz * Merge lp:~unity-team/unity8/themeing-font-and-mascot. (f338585fb) * Fix comment. (833f794e4) 2014-03-12 Mirco Müller * snap-decision AP-test used wrong objectName causing failure with newer notification-backend branch. (8f277806b) 2014-03-12 Michał Sawicz * Use .dp instead of .gu. (0872594b2) * Add TODO to PreviewListView.qml color. (213596405) * Use palette instead of straight color. (76213d390) * Merge lp:~unity-team/unity8/no-search-on-preview (17a516493) * Merge lp:~unity-team/unity8/gallery-workaround (12689c0bc) * Merge lp:~unity-team/unity8/newscopes-design-tweaks (4bd83a10b) * Merge lp:~unity-team/unity8/carouselTool (6beb1fc5d) * Merge lp:~unity-team/unity8/themeing-font-and-mascot (bbe004985) * Use grey instead of lightgrey, and Light in PreviewAudioPlayback.qml subtitle. (a7c2b9201) * Fix comment in RunningApplicationTile.qml (edf775817) * Merge lp:~unity-team/unity8/no-search-on-preview (3a4be8eca) * Merge lp:~unity-team/unity8/gallery-workaround (ca5781ef6) * Merge lp:~unity-team/unity8/newscopes-design-tweaks (dd466ff7d) * Merge lp:~unity-team/unity8/carouselTool (6239b89ed) * Merge lp:~unity-team/unity8/themeing-font-and-mascot (df249c772) * Use "grey" instead of lightgrey, and Light in PreviewAudioPlayback.qml subtitle. (20f384c9e) * Drop prices from CardHeader, they need to be reworked. (df03adcf7) * Fix comment in RunningApplicationTile.qml (fbb994bc3) 2014-03-12 Albert Astals * Childrens have moved again (9d9d1490f) * The button needs to be non totally transparent before we can click on it (4a3c1c6a5) 2014-03-11 Albert Astals * Adapt to new TabBar (86408551b) 2014-03-12 Ying-Chun Liu * Use LazyImage instead of AnimatedImage (3b3788125) 2014-03-11 Andrea Cimitan * Merged cleanup and 5.2 (26758dc6d) 2014-03-11 Michael Terry * Drop shading box (345aa762b) 2014-03-11 Albert Astals * And need cardTool. here too (af1bc864e) * Access the proper template variable (3bde05b3d) * Merge (43ad863f9) * Adds carousel dynamic switch (87a12999d) 2014-03-11 Andrea Cimitan * Merged and fixed (e9ffb1e24) 2014-03-11 Albert Astals * This should help with the DashContent::test_showPreviewCarousel failure in CI (1f535fd3d) * Merge (83ce0613d) 2014-03-11 Michał Sawicz * Temporarily force scope-registry to start. (dce713d20) 2014-03-11 Albert Astals * We don't need this code (a4ded3249) 2014-03-11 Michael Zanetti * fix whitespace tests (5ab3d3b6d) 2014-03-11 Albert Astals * Revert this change against trunk (64d466539) 2014-03-11 Michael Zanetti * also update launchertest's mocked appmanager to the new api (47c78e10c) * update according to latest unity-api changes (413fdc9f8) 2014-03-11 Albert Astals * Assign to the non read only variable of the alias (a0f5a4f03) * This looks like a better workaround (83c06a1dd) * better scope name (842eb58fd) * this change is not needed (25ff6db41) * Fix this test (b06b1991d) 2014-03-10 Albert Astals * Make the last tests i had marked as non passing pass (7e36abeda) * Don't fail (378296398) * Fix unity8.shell.tests.test_emulators.DashAppsEmulatorTestCase.test_get_applications_should_return_list_with_names (71582d762) 2014-03-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a31b6854f) 2014-03-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a4c95435b) 2014-03-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1f8a11bce) 2014-03-07 Michael Terry * First pass at new greeter teasing (c868dfc8f) * Remove some unneeded profile management and fix apps appearing white by making color be transparent (9a5fa7b81) 2014-03-07 Albert Astals * Merge new-scopes (040ddfce5) * Merge lp:~aacid/unity8/vjog_compiz_workaround (cb4e415c9) 2014-03-07 Andrea Cimitan * Merged (0dec0b3c2) 2014-03-07 Albert Astals * New name for scopes scope (3e20ecd3c) * Merge new-scopes-clean-to-trunk (110fc6c24) 2014-03-07 Andrea Cimitan * Fix GenericScopeView test (950aa3879) 2014-03-07 CI bot * Releasing 7.84+14.04.20140307-0ubuntu1 (7a4eec74f) * No change rebuild against Qt 5.2.1. (b4010da96) 2014-03-07 Albert Astals * a comment on the new code (66faee75d) * and the same workaround for the DDA test (3f742a416) * Child number changed (f335c70bc) * Workaround compiz/unity7 behaviour change/bug (3b6eb674a) * Merge new-scopes-clean-to-trunk (ee0293ec0) * Merge new-scopes (ea438a7d8) * Merge lp:unity8 (1733269a5) * build on 5.0 (6740fb18e) 2014-03-06 Michael Terry * Merge from trunk (b81b329bb) 2014-03-06 Andrea Cimitan * Unwanted changes (2f797dcbc) * Carousel dinamic (ff0ff3036) 2014-03-06 Albert Astals * Some fixes for the tests (61687ce4c) 2014-03-06 CI bot * Releasing 7.84+14.04.20140306-0ubuntu1 (032ca4dff) 2014-03-06 Michael Zanetti * Just disable HUD tests, without really disabling the HUD itself (50c036303) 2014-03-06 Bill Filler * Convert gallery and camera to click (8b4c8f61a) 2014-03-06 Michał Sawicz * Revert DashRenderer.qml change, too. (a25216597) * Simplify tests. (9a2762481) * More declarative luminance. (693ae8910) * Use tryCompare to wait for the result. (9963fab84) * Revert changes to GenericScopeView.qml and tests. (3c509d1c8) * Drop unneeded type defs in docs. (0cc810ccf) * Add mascotShape test. (2cf686f5b) * Add luminance test. (e5ccd3e82) 2014-03-06 Michael Zanetti * merge upstream branch (def438f02) 2014-03-06 Michał Sawicz * Emit scope-ui-starting to make sure scope-registry is running. (b096bcb99) 2014-03-06 Michael Zanetti * just disable the HUD AP tests without actually disabling the HUD itself (4e8068957) 2014-03-06 Andrea Cimitan * Removed property (e3730ec5e) 2014-03-06 Michał Sawicz * Fix cleanup(). (3565fce64) 2014-03-06 Andrea Cimitan * Changes to docs (0ede231be) * CardTool carousel (c9bc64224) 2014-03-06 Michał Sawicz * Merge lp:~mzanetti/unity8/disable-hud (edb9da488) * Merge new-scopes. (f5c9430e7) * Merge lp:~aacid/unity8/new-scopes_do_not_request_previews_on_activate (f13e25ddb) * Merge lp:~unity-team/unity8/new-scopes-clean-to-trunk (3f81874ab) * Revert r671. (78f8baa08) * Only allow searching when preview isn't open (ebb2d8ba6) 2014-03-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8851f0e3f) 2014-03-05 Albert Astals Cid * Add back the workaround for not being able scroll the image gallery (197ee67cb) 2014-03-05 Michał Sawicz * Fix broken merge. (be7954338) 2014-03-05 Michal Hruby * More tweaks (e903cd517) * Bring things closer to design (21c510839) 2014-03-05 Michał Sawicz * Merge trunk. (f7d8b1d2f) * revert lp:~dandrader/unity8/sideStage_lp1281088_take2 (c836a4822) * Revert lp:~gerboland/unity8/sidestage-fix-sidestage-popping-out (e15b97eb5) * Revert lp:~gerboland/unity8/sidestage-unlock-sidestage-appears (aa445b53d) * Revert lp:~gerboland/unity8/launcher-greeter-reenable (c6fce1c0c) 2014-03-05 Albert Astals * Merge (34bee63d2) 2014-03-05 Michael Zanetti * remove leftover Rectangle (8ce00cfb0) 2014-03-05 Michał Sawicz * Merge new-scopes. (43985b8c7) * Bring gradients back into DashRenderer, where they belong. (68f87615c) * Revert see-through-dash. (a9b1f3d0b) 2014-03-05 Michael Zanetti * merge trunk (9ae866215) * make it start up in phone form factor again (11820bc80) 2014-03-05 Michał Sawicz * Revert shell rotation. (00b6d215d) 2014-03-05 Michael Zanetti * also drop the bottombarvisiblitycommunicatorshell (5494fb607) 2014-03-05 Albert Astals * Merge new-scopes (3f2582e43) 2014-03-05 Michael Zanetti * ooops. Add missing files (4bc5a30ac) 2014-03-05 Michał Sawicz * Merge trunk. (e908bd426) 2014-03-05 Albert Astals * Fix highlight position on 5.2 (2012c4900) 2014-03-05 Michał Sawicz * Merge trunk. (2c2804906) 2014-03-04 Michael Terry * Merge from trunk (090a35c3d) 2014-03-04 Michael Zanetti * add missing copyright headers (d3b9d7315) * completely drop Hud and Bttombar from Shell.qml (8f02a4bae) * disable hud and its tests. Not deleting any code yet as we don't know how it will come back. (a0bfdec02) * drop prints()s in StageWithSideStage (4c313de6e) * drop old sidestage code (9f6114e05) * add missing copyright headers (91e832058) 2014-03-04 CI bot * Releasing 7.84+14.04.20140304-0ubuntu1 (21adca27a) 2014-03-04 Nick Dedekind * Remocked IndicatorModel to fix qt5.2.1 changes. (0aa9a7ec0) 2014-03-04 Albert Astals * import Ubuntu.Components so we can use UbuntuAnimation (32fc23aef) 2014-03-04 Michael Zanetti * drop print()s (e56118835) 2014-03-04 Michael Terry * Ensure that the selected() signal is emitted by the greeter on startup, fixing the background on startup for the first user in tablet mode. (4afa8d154) 2014-03-04 Albert Astals * Initialize m_distance Fixes: 1285385 (e02da4b4d) 2014-03-04 Michael Zanetti * require and expose unity-application-impl-2 (bbca3e835) * merge trunk (7dc71a039) * merge latest phonestage fixes (449a1559d) * small fix (02b3eac20) 2014-03-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e4e8a68b8) 2014-03-03 Albert Astals * First pass of autopilot updates for new scopes. (20166868d) 2014-03-03 Michal Hruby * Fix missing line (045c18911) 2014-03-03 Michael Zanetti * support appid:// entries in gsettings schema and make findDesktopFile work with short-appid (dd3b31a63) 2014-03-03 Michał Sawicz * Improve comments. (336c00373) * Merge lp:~nick-dedekind/unity8/indicator-tests-qt5.2.1. (d1fae99b7) 2014-03-03 Michal Hruby * Merge trunk (528955e69) 2014-03-03 Nick Dedekind * comments to plugin cpp (3fc27526e) * removed unnecessary includes (536699acc) * Fixed indicator model mock + tests. (53b142d96) * IndicatorItem as Loader (0428e3de1) 2014-03-03 Michał Sawicz * Fix PreviewZoomableImage test. (10c6acfca) * Drop incorrect tests from PreviewVideoPlayback. (370c37a6d) * Fix GenericScopeView test. (64f9dc0d2) * Fix GenericPreview tests. (ee986632c) * Fix CardHeader test. (200409686) * Skip unstable LVWPH tests. (fca47802e) 2014-03-02 Leo Arias * Updated the get_applications_grid method. (7c193a62f) * updated GenericScopeViewEmulatorTestCase.. (50a33fda9) 2014-03-01 Leo Arias * Updated the page header. (4808e46f7) * Fixed the test to open scope to the right. (2cb54456a) * Update the test to open an unexisting scope. (32fef5c2d) 2014-03-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0d7adc07f) 2014-03-01 Leo Arias * Last update of the applications scope. (1a482a3b9) * Updated DashEmulatorTestCase. (40453ed33) * A little cleanup. (80d0c9081) * Removed the test_greeter_background, because now the backgrounds are not necesarily the same. (ce73852bc) * Replace the calls to home scope for calls to clickscope. Updated the scope_id string. (a85616f8e) * Merged with trunk. (d6b3cbf40) 2014-02-28 Michał Sawicz * Merge trunk. (4d2ac0dc0) * Fix Stage, as ScriptAction isn't a function. (be7bfd443) * Fix LazyImage tests. (003e3fbb8) * Introduce a findChildIn method, as some objects are not to be found in either children or data. (4be451741) * Fix Shell tests. (74aee800d) 2014-02-28 Albert Astals * import Ubuntu.Components so we can use UbuntuAnimation (219f81f0f) * Initialize m_sceneDistance (85b0b449f) 2014-02-28 CI bot * Releasing 7.84+14.04.20140228-0ubuntu1 (b8b0c820b) 2014-02-28 Nick Dedekind * Added ability to change indicator profile in shell (env UNITY_INDICATOR_PROFILE) (ab8853187) 2014-02-28 Daniel d'Andrada * DirectionalDragArea: Reset status if disabled while dragging Fixes: 1276122 (92f1da81b) 2014-02-28 Andrea Cimitan * Adds PreviewRatingDisplay (d23d5ffe1) * Rename PreviewRating to PreviewRatingInput (05d8ae80d) 2014-02-28 Michał Sawicz * Delete stale sockets. Fixes: 1285215 (f79f0e1f9) * Fix CardHeader title font weight. (69812eae1) 2014-02-28 Albert Astals * Cleanup DashContent (f4d6fad91) 2014-02-28 Michał Karnicki * Take it easy on the logging. (fc9312c77) 2014-02-28 Dimitri John Ledkov * Ship python3 autopilot modules. (278fdb08f) 2014-02-28 Michał Sawicz * Merge trunk. (ecc17793f) 2014-02-27 Michał Sawicz * Simplify and fix socket removal. (83245eb38) * Only try to touch DEFAULT_MIR_SOCKET if UNITY_MIR_SOCKET is empty. (0ccd3a319) * Merge trunk. (ffc6e5ac2) 2014-02-27 Michael Terry * Fix new AP test to use refactored code (919fb3ca0) 2014-02-27 Nick Dedekind * Added ability to change indicator profile in shell (bcfe0ce46) 2014-02-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (13dafc389) 2014-02-26 Michael Terry * Merge from trunk (90f3f1e26) 2014-02-26 Michael Zanetti * add tests for the spread (9e2fd3420) 2014-02-26 Albert Astals * Saviq's gradient improvement (66491bf59) * whitespace (c433755da) 2014-02-25 Albert Astals * This makes qmluitests pass here (5974f543c) 2014-02-25 Ying-Chun Liu * fix whitespace error. (038eabe04) 2014-02-25 Dmitrijs Ledkovs * Add explicit python[3]-autopilot dependencies, instead of relying on transitive dependencies. (f3b2acbd4) 2014-02-24 Sergio Schvezov * changing test app to webbrowser (bb5541829) * Fixing appid for camera and gallery (10820d712) 2014-02-24 Leo Arias * Back out the commented code. (c646febab) 2014-02-24 Michał Sawicz * Add 1GU margins, 1GU spacing in indicators and use Icon to colourize them. (433558b02) 2014-02-24 Dimitri John Ledkov * Fix print statement in create_interactive_notification.py (00b184034) 2014-02-24 Daniel d'Andrada * DirectionalDragArea: Reset status if disabled while dragging (7c8f6fbb8) * Regression test for LP#1276122 (a7b64d9b3) 2014-02-24 Albert Astals * Move to Unity 0.2 (be6822b71) * Another test that works on old files (d7ec8968b) 2014-02-24 Michael Terry * Merge from trunk (1b4f4f30d) 2014-02-24 Albert Astals * Remove tests for dead files (854d060c9) * Remove unused RatingStars (5afde4ece) * Remove old Previews Reviews (c5b9fcb58) * Remove old Previews Header (f719f4354) 2014-02-24 Ying-Chun Liu * Fix coding style. (dde6dc2dc) * Add zoomable image (2fd65f261) 2014-02-24 Albert Astals * SearchableResultModel is not used anymore (90f3a701d) * Tile and TileStyle are not used either (58b1f397b) * OpenEffect is not used anywhere either (f3b7d292c) * Unused stuff with new-scopes (7928b349f) * typo (013e9d375) * Fix previews being requested when calling activate (a21122817) 2014-02-24 Michał Karnicki * Merge trunk. (4cabcfb11) * Change string. (31d863054) 2014-02-24 Albert Astals * Remove a few signals more and rework tests (afd3cd7a4) * Merge (b56f366d3) 2014-02-23 Dimitri John Ledkov * Fix whitespace (dc35fae0a) * More universal_newlines (37ae5d822) * Do python3 friendly range compat. (d442554bd) 2014-02-22 Michał Sawicz * Spurious logs... (b6cff45c6) * Add gradient to RunningApplicationsGrid, too, as it's not a DashRenderer... (5321f9775) * Merge fix in lp:~unity-team/unity8/unity8-category-gradients. (b9347b5a2) 2014-02-22 Michał Karnicki * Make gradients not break FilterGrid. (bab628f89) 2014-02-22 Michał Sawicz * Fix edge demos. (924f5f7d9) * Revert r690, 'cause it's racy. (c9353c4c4) 2014-02-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b792470a0) 2014-02-21 Leo Arias * Update the url dispatcher test to use the fake app fixture from the toolkit. (ee8e53b2a) 2014-02-22 Dimitri John Ledkov * correct python3 build-dep (163c59469) * Ship python3 autopilot modules. (c6369c154) 2014-02-21 Michał Sawicz * Fix activity indicator. (44e1bd079) 2014-02-21 Michael Zanetti * Keep aspect ratio of app screenshots and crop them square. (03c30f9a8) 2014-02-21 Michał Sawicz * Fix broken mereg. (69a0d2179) * Fix whitespace. (750386a0e) 2014-02-21 Michał Karnicki * This is whitespaceeeee. (0d5048333) 2014-02-21 Michał Sawicz * Revert r695, 'cause LazyImage gets confused with some images. (8968a7ccb) 2014-02-21 Michał Karnicki * Don't show gradient in last category. (c6342b7f4) 2014-02-21 Michał Sawicz * Merge trunk. (9206b3f06) 2014-02-21 Michał Karnicki * No dark gradient in last category. (bf264a953) * Add top/bottom gradients. (f56dce458) 2014-02-21 Michał Sawicz * Merge lp:~mhr3/unity8/design-tweaks . (eeb1bcff0) 2014-02-21 Michal Hruby * More tweaks (ea5d42a3a) 2014-02-21 Michał Karnicki * Dont change source width. (eebdfc5d3) * Typo. (0c8868347) * Review fixes. (1981e3209) * Add category gradients. (8fcc0185f) 2014-02-21 Michael Zanetti * make it square (6905e3e2b) 2014-02-21 Michal Hruby * Bring things closer to design (4c40dd858) 2014-02-21 Albert Astals * Merge lp:~aacid/unity8/new-scopes-dash-preview-fullscreen. (695490546) * fix open vs onScreen for the previewlist (9f814789f) * Fix condition for unloading the scope and fix condition for previewlist visibility (695814cb3) * Preview comes from the right (1c2fb1998) 2014-02-21 Michał Sawicz * Fix PageHeader centering. (b4ba3adf8) * Update category chevrons. (aba37cb8e) 2014-02-21 Gerry Boland * Prevent sidestage from popping out incorrectly when app launched indirectly (fbe3fd3b3) 2014-02-21 Albert Astals * bring ready back, i need it :D (08ee0a6c5) * Merge (0c8b85ca8) * Make Dash Preview Fullscreen (7790024bf) 2014-02-21 Michał Sawicz * Merge lp:~aacid/unity8/new-scopes-show-dash-app-running (760833502) 2014-02-21 Albert Astals * don't show hud button when on dash+hidden sidestage app scenario (4263dd3cb) 2014-02-21 Mirco Müller * That didn't work... and would not have been approved anyway. (19920689b) 2014-02-21 Albert Astals * Better (373ff40a5) * Merge (f9806f91a) * hide/show improvements for sidestage+dash (66e0bd00a) 2014-02-21 Mirco Müller * Trying to avoid the segfault in waitForRendering() when qmltest is run on jenkins. (67f322a1c) 2014-02-21 Michael Zanetti * keep aspect ratio of app screenshots (d726dcabf) 2014-02-21 Andrea Cimitan * Added tests for preview widget factory (98bd6e9f4) * Last rename (c62f41715) 2014-02-21 Michał Karnicki * Fix CardHeader title font weight. (8032128a9) 2014-02-21 Michał Sawicz * Improve visuals and close preview on home button press. (f9bf55bf7) 2014-02-21 Andrea Cimitan * Added widget and tests (bcf7498fa) 2014-02-21 Michał Karnicki * Fix card title font weight. (e634da866) 2014-02-21 Michał Sawicz * Make sure activity indicator is only on screen when preview available, and make image widget fit on screen. (0c0d525f2) 2014-02-21 CI bot * Releasing 7.84+14.04.20140221-0ubuntu1 (1dcb2dd76) 2014-02-21 Michał Sawicz * Increase the sidestage threshold. (d70c6a282) 2014-02-21 Jussi Pakkanen * Move downloads to their own threads so they don't muck about with the parent thread's event loop. Fixes: 1240408 (c6ca9db21) 2014-02-21 Michał Sawicz * Add card background support. (80b2c3549) 2014-02-21 Albert Astals * Merge (4aa36b8d9) 2014-02-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a61bf6fcd) 2014-02-20 Michael Terry * Merge lp:~mterry/unity8/ensure-selected-greeter. (f6c6891d0) * Ensure that the selected() signal is emitted by the greeter on startup, fixing the background on startup for the first user in tablet mode (7ce0bebb2) 2014-02-20 Michał Sawicz * Do not enable multi-user greeter in portrait. (344ba27c6) 2014-02-20 Albert Astals * Merge (be736b26b) 2014-02-20 Michał Sawicz * Add preview activity indicator and fix subsequent preview input. (48bc3b891) 2014-02-20 Andrea Cimitan * WIP PreviewRatingDisplay (e070112e6) 2014-02-20 Gerry Boland * [tablet] enable launcher in greeter when allowed (d344dfc1f) * Disable launcher if Greeter locked (273089247) 2014-02-20 Andrea Cimitan * Renamed PreviewRating to PreviewRatingInput (30770e225) 2014-02-20 Michał Sawicz * Fix default background. (d16ed8f7e) 2014-02-20 Albert Astals * Enable the sidestage handle to close the sidestage even if there's no main stage app (b4384f6c9) 2014-02-20 Gerry Boland * [tablet] Re-enable launcher on greeter (de3bc2e82) 2014-02-20 Albert Astals * Saviq suggested darkening instead of half scaling/opacity (eb00131e5) * logs-=3 (f7199c3b0) 2014-02-20 Gerry Boland * [sidestage] hide side stage if all side stage apps are closed (e2245de25) * [sidestage] hide side stage if all side stage apps are closed (2ad85ee5d) 2014-02-20 Daniel d'Andrada * When focus is requested by the app manager, only call the correct stage. (127371f88) 2014-02-20 Michał Sawicz * Merge lp:~unity-team/unity8/themeing-font-and-mascot. (6f4607d3e) 2014-02-20 Michał Karnicki * Make inOverlay false by default. (c6d94b1be) * Dont call getFontColor twice. (bec8db4f4) * Don't show mascot shape in overlay. (7c3d9ac86) 2014-02-20 Daniel d'Andrada * When focus is requested by the app manager, only call the correct stage. (5cedaf512) 2014-02-20 Albert Astals * Show the Dash when only a sidestage app is running (281ec3efe) 2014-02-20 Michał Sawicz * Merge trunk (af316a83f) 2014-02-20 Michał Karnicki * Merge trunk. (b3ea58c85) * Properly toggle mascot depending on background visibility. (9baa86e74) * Add missing inOverlay binding. (23231339a) * Hide private properites. Don't break sumamry when inOverlay. (f501f034f) 2014-02-20 Jussi Pakkanen * Move downloads to their own threads so they don't muck about with the parent thread's event loop. (9993f6da1) 2014-02-20 Michał Karnicki * Review fixes. (c7c5a1fa6) 2014-02-20 Albert Astals * MouseArea -> AbstractButton to get haptics (303781428) 2014-02-20 Michał Sawicz * Add preview columns support, fix spacing, clipping and cacheBuffer in previews. (48e274c59) * Make sure SEARCH goes away when in previews. (9316aa3be) 2014-02-20 Albert Astals * MouseArea -> AbstractButton to get haptics (3a3c073a9) 2014-02-20 Michał Sawicz * Resync. (c4097b5eb) * Cache images in cards. (8d2514dd8) * Clip dash when temporary visible. (73c8be5fd) 2014-02-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6b3f12421) 2014-02-20 Gerry Boland * Rework rotation of shell to be simpler, helps unity-mir calculate rotated InputAreas correctly (0fea3d116) 2014-02-19 Michał Sawicz * Merge card-background. (a6c34be2f) 2014-02-19 Michał Karnicki * Font color based on background. (39fa28884) 2014-02-19 Michał Sawicz * Implement collapsed-rows support. (e48dbd144) 2014-02-19 Michał Karnicki * Conditionally toggle mascot shape. (5ca5084e0) 2014-02-19 Gerry Boland * Broke Manta, this fixes it (e74a5b977) 2014-02-19 Albert Astals * Hotfix Dash header positioning (1cec71b31) 2014-02-19 Michał Sawicz * Increase sidestage threshold to 100. (eafd3b3f1) 2014-02-19 Gerry Boland * Replace OrientationHelper as it seems to confuse Qt's internal geometry calculations (ccf5cfe45) 2014-02-19 Albert Astals * qDebug-- (a2b89c4da) * Hotfix header positioning (d379263a8) 2014-02-19 Mirco Müller * Trying to make the qmltest for notification-renderer pass on jenkins. (2d9bc1b15) 2014-02-19 Michał Sawicz * Directly activate scopes, too. (c8818744f) * Fix header colours and chevrons. (baed89cd9) 2014-02-19 Michał Karnicki * Change 'Running Apps' to 'Recent'. (06d24e863) 2014-02-19 Albert Astals * Back button improvements (80c989130) 2014-02-19 Michał Karnicki * Update category label font color. (873bc3350) * Update category font color to match designs. (6c76598fe) 2014-02-19 Mirco Müller * Use more symbolic icons. (5c74ee38f) * Use symbolic icons from the ubuntu-mobile icon-set. (62968f98d) 2014-02-19 Albert Astals * Move the back button to the header itself so it will be shown when the search is out too (f67baaf08) * Add back the workaround for not being able scroll the image gallery (c729a1642) * Make the back clicking area bigger (e6d219f08) * Add back the workaround for not being able scroll the image gallery (4fe5d4eb8) 2014-02-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9b32a3ee5) 2014-02-18 Michał Sawicz * Depend instead of Recommend the scopes, to make the image build work. (1cf4b95d0) * Merge lp:~unity-team/unity8/new-scopes-scope-activation (018d029d2) * Fix running apps font. (d1d393507) * Merge lp:~saviq/unity8/card-background (f82fccf2b) * Drop unnecessary check. (e6999adf4) * Suppress warning about assigning undefined to bool. (e40e2cc32) * Merge trunk. (5c1075e71) * No margin when no summary. (120efa6a6) * Fix margins with background. (6a04e33eb) * newlines++ (6548a0859) 2014-02-18 Scott Sweeny * temporary fix for 'See more' and 'See less' text color in previews (ae3bb338a) 2014-02-18 Michał Sawicz * Make Click scope the default. (7fcc20a6c) * Add card background support. (f66bc618d) 2014-02-18 Michael Terry * remove unused unittest import (293c05c1b) * Re-enable test_networkmanager_integration autopilot test on phone platforms (ef3b234b4) 2014-02-18 Albert Astals * Scope activation support (8fde101bc) 2014-02-18 Jussi Pakkanen * Move downloads to their own threads so they do not screw up the parent thread's event loop. (b23532389) 2014-02-18 Michael Zanetti * close the spread when an app is launched while in spread mode (f1e24fdda) * don't allow swiping away the spread (69020cdd1) 2014-02-18 Albert Astals * Remove unused contentProgress property (38a5a3012) 2014-02-18 Didier Roche * switch the default theme to suru (7eecbc65e) 2014-02-18 CI bot * Releasing 7.84+14.04.20140218-0ubuntu1 (cc8b93040) 2014-02-18 Albert Astals * Show the loading indicator of the screenshot in video playback (1667d307d) * Remove unused signals from DashContent (e0fac3c93) 2014-02-18 Andrea Cimitan * Adds rating preview widget. Work on the rating widget (a10ecd91f) 2014-02-18 Albert Astals * LWPH Fix crash from bug 1279434 Fixes: 1279434 (de98e2b39) 2014-02-18 Leo Arias * Prepare unity8 to the _uinput refactors in autopilot. (d245b9fab) 2014-02-18 Daniel d'Andrada * Make DirectionalDragArea work when rotated (8142dd43a) 2014-02-18 Albert Astals * Progress Preview Widget (a57f52bc1) 2014-02-18 Michał Sawicz * Center-align title when it's alone in the header. (b4e41b505) 2014-02-18 Albert Astals * Merge lp:~unity-team/unity8/unity8-mascot-res-workaround (289f103af) 2014-02-17 Michał Sawicz * Tweak recommended scopes. (ad9d0a2f2) 2014-02-17 Andrea Cimitan * Adjust implicit height (d5f4b6750) 2014-02-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c9a7bb3de) 2014-02-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (af5132253) 2014-02-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8af158027) 2014-02-14 Scott Sweeny * temporary fix for 'See more' and 'See less' text color in previews (27d32eec3) 2014-02-14 Bill Filler * merge from trunk (6524263fc) 2014-02-14 Albert Astals * Merge lp:~aacid/unity8/show_video_playback_screenshot_loading_indicator (106ece627) 2014-02-14 Andrea Cimitan * Fix implicit height (58d6e9521) 2014-02-14 Albert Astals * Show the loading indicator of the screenshot in video playback (c96e6c01c) * Merge lp:~aacid/unity8/new-scopes-dash-background-opacity (a5cfe891d) * Remerge lp:~unity-team/unity8/rotate-n7 (cf4a47853) * Move the wallpaper out to the Shell again (f5ee37c60) 2014-02-14 Andrea Cimitan * Renamed and moved to textarea (82996dfcb) 2014-02-14 Daniel d'Andrada * OSKController should not be rotated. (9f11428a2) 2014-02-14 Gerry Boland * Unrotate ApplicationScreenshot - unity-mir rotates snapshot for us now (e297c21c3) 2014-02-14 Michal Hruby * Re-merge lp:~unity-team/unity8/unity8-preview-summary-color (d7a66e020) * Merge lp:~aacid/unity8/misc_previewlist_fixes (3cfb2ca78) 2014-02-14 Gerry Boland * Have PrimaryOrientation as default, not Portrait. Fixes orientation while testing on desktop (5c7346a60) 2014-02-14 Albert Astals * we need to adjust the openeffect and not the contenty too when the view is bigger than the content (57ffa2c23) 2014-02-14 Andrea Cimitan * Added implicitHeight (ed6082875) 2014-02-14 Michael Zanetti * merge trunk (6b4e728d6) * don't import SideStage, its not used any more (1b2e1b619) 2014-02-14 Andrea Cimitan * Readded test (d11266520) * Readded old component (59127cf56) * Fix compatibility layer (fbac9ca6a) 2014-02-14 Albert Astals * Misc previewlist fixes (1aff3e15e) 2014-02-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c1b4622f7) 2014-02-13 Kevin Gunn * merge in lp:~unity-team/unity8/rotate-n7 which is not to productized (b3e6180ff) * merge update from trunk (lp:unity8) (710a8de2d) 2014-02-13 Michał Karnicki * Also fix PreviewAudioPlayback font colors. (7fa8b80ad) 2014-02-13 Michal Hruby * Fix the condition (f9fed9f8a) * Don't override scope list if already specified (8df1214b8) * Merge lp:~unity-team/unity8/unity8-preview-summary-color (8757ace19) 2014-02-13 Michał Karnicki * Workaround to fix preview summary text. (6f209f47b) 2014-02-13 Andrea Cimitan * Updated potfile (31402f414) * Added compatibility layer with old RatingStars (870a50c12) 2014-02-13 Michal Hruby * Remove blending rectangle, so previews aren't grey (a6b1924d3) 2014-02-13 Andrea Cimitan * Added to widget factory (1416c03b8) * Merged trunk (578d8c18f) * Added comments (2d3c8dc8c) * Tests (56f8ab53d) 2014-02-13 Albert Astals * Merge lp:~aacid/unity8/new-scopes-preview-sometimes-disappears (1a212a67c) * Add a comment as requested by mhr3 (820c9a536) * Merge lp:~aacid/unity8/lvwph_resize_item_bug (5cb5e70f4) * Fix preview disappearing sometimes (9b80cc830) 2014-02-13 Michael Zanetti * merge trunk (e9ba09d5c) 2014-02-13 Albert Astals * Merge lp:~aacid/unity8/new-scopes-header-fix (5fc664115) * Michael wants some more stuff into the test name (cae8a1f32) 2014-02-13 Gerry Boland * Add ShellOrientator.qml to debian/unity8.install file (24e4c0cce) * I hate you whitespace checker (31da1f613) 2014-02-13 Michal Hruby * Use PreviewStack and per-column widget models (5ccacb111) 2014-02-13 Albert Astals * Merge lp:~aacid/unity8/fix-new-scopes-tab-name-missing (df486fc75) * Merge lp:~aacid/unity8/new-scopes-carousel-as-grid (95f181e84) * Fix/Workaround first tab name not showing (98bb16051) * Safer fix (02bf242f8) * Fix the carousel converted to grid scenario (291d4b4a9) * LWPH Fix crash from bug 1279434 (4541c19d9) * Merge lp:~unity-team/unity8/new-scopes-fix-header-font (fa758b23c) 2014-02-13 Michał Karnicki * Add mascot resolution workaround. (8472c2892) 2014-02-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d496b758b) 2014-02-12 Leo Arias * Missed one. (743c3c38b) * Made the forward compatible so we can continue landing improvements on autopilot to then get back and remove the ugly code in unity. (15d8c4bc3) * Merged with trunk. (56372c63f) 2014-02-12 Bill Filler * convert gallery and camera to click (af2d92eb6) 2014-02-12 Michał Karnicki * Add todo to pull from Palette. (72424ab26) * Make header font readable. (f86b6a8b6) 2014-02-13 Albert Astals * Merge lp:~aacid/unity8/preview_progress (e660dca16) * Merge lp:unity8 (5806a576b) 2014-02-12 Daniel d'Andrada * tst_DragHandle: test it also rotated (c8eb9ebf6) 2014-02-12 Kevin Gunn * update from trunk (07d404701) * whitespace update (68780d3a5) 2014-02-12 Daniel d'Andrada * Final rotation fixes for DragHandle and DirectionalDragArea (61b6ac4a7) * DragHandle - convert distance into a proper axis position (cf12ebec4) * Fix DirectionalDragArea::sceneDistance() when the DDA is rotated (868434422) * Test for DirectionalDragArea::sceneDistance (e6e5920c9) 2014-02-12 Gerry Boland * Rotate application screenshot to compensate for shell rotation. Fixes window management animations (586efb4e5) 2014-02-12 Daniel d'Andrada * Add "rotate" button to tst_DragHandle (6982cb78c) 2014-02-12 Albert Astals * Merge lp:~aacid/unity8/activate_local_clickscope (60ea363b6) * Activate the local stuff of the clickscope (c8a1c2604) * fix test name (ae231fc60) * Cimi is scared total may be <= 0 (b77f4d484) * fixlets (e02edb88a) 2014-02-12 Kevin Gunn * merge in lp:~gerboland/unity8/sidestage-handle-input-area (20d555463) * merge in lp:~gerboland/unity8/sidestage-unlock-sidestage-appears (9750ad527) 2014-02-12 Albert Astals * Fix error in CardHeader (7c95598de) 2014-02-12 Kevin Gunn * merge in lp:~gerboland/unity8/sidestage-unlock-sidestage-appears (55786ea7e) 2014-02-12 CI bot * Releasing 7.84+14.04.20140212-0ubuntu1 (81598a984) 2014-02-12 Andrea Cimitan * Preview widget for video playback (68d90ed1c) 2014-02-12 Albert Astals * Link the pageheader scope with the current scope (fe450bbf8) 2014-02-12 Andrea Cimitan * Add PreviewImage (d046bb6cd) 2014-02-12 Albert Astals * Scopes guys want the data back (3f4295c3b) * Fix tst_Preview.qml (7a7a17909) 2014-02-12 Leo Arias * Added a test to swipe out an application started by url-dispatcher. (711c6936a) 2014-02-12 CI bot * Add overlay to card.; Fix implicit card height. (d42832ddf) 2014-02-12 Albert Astals * PreviewHeader (6da783bf9) 2014-02-12 Nick Dedekind * Fixed issue importing plugin qml files into qtcreator (c66f5014c) 2014-02-12 Albert Astals * Add overlay to card.; Fix implicit card height. (490e714cb) 2014-02-12 Leo Arias * On the autopilot helper to open a scope, wait for the dash content list to stop moving. Fixes: 1277591 (a82401642) 2014-02-12 Gerry Boland * Add InputFilterArea to sidestage handle to block input to mainstage app while moving sidestage Fixes: 1275732 (0de771bcc) 2014-02-12 Nick Dedekind * Added a "-profile" option to the indicator-client to switch between indicator service profiles. (2bed569a6) 2014-02-12 Albert Astals * Don't move the list contentY unless there's a preview to show Fixes: 1271676 (071ea3bab) * Fix test_previewCycle (a04046c97) 2014-02-12 Andrea Cimitan * merge (3e4f3573d) 2014-02-12 Gerry Boland * Fi indicators content being rotated again. Added a nativeOrientationAngle property to the SDK that can be configured (741d478bb) * Fix typo, now Shell should load (89d21c470) * Rotate shell is landscape mode specified with "NATIVE_ORIENTATION=landscape" env var (cc8051f66) 2014-02-12 Daniel d'Andrada * Use new ApplicationManager API (919a2128e) * Make DirectionalDragArea work when rotated (37a0c6879) 2014-02-12 Michal Hruby * Re-merge lp:~unity-team/unity8/unity8.preview_video (1bb5e06f3) 2014-02-12 Andrea Cimitan * Set implicitHeight (af97ede8e) * Merges (b3b2a0350) 2014-02-12 Albert Astals * Link the pageheader scope with the current scope (29cb66dc0) 2014-02-12 Andrea Cimitan * Merges (b6de26942) 2014-02-12 Albert Astals * whitespacing (4cfe7e397) * Some explanation of what are we doing in the test (727fc1565) * Actually commit the test file ^_^ (017960902) * Merge (cc25a33d0) * Progress Widget (9fcfc21bd) 2014-02-12 Andrea Cimitan * wip (2f4b8436a) * Merged and fixes (3f50430c9) * Merged and fixed (e067065fb) 2014-02-12 Michal Hruby * Merge lp:~unity-team/unity8/unity8.preview_video (39b88df8a) 2014-02-12 Andrea Cimitan * Merged, alphabetical order for switches, tests for video thumnbailer and video thumbnailer (4e0f75111) 2014-02-12 Michael Zanetti * fix whitespace (add60e3ad) 2014-02-12 Michal Hruby * Merge lp:~aacid/unity8/preview_header (7e719a6c9) 2014-02-12 Albert Astals * files i forgot (482034197) 2014-02-12 Michal Hruby * Merge lp:~aacid/unity8/apps-special-category (42e723178) * Re-merge lp:~unity-team/unity8/unity8.preview_image (fbc09df49) * Merge trunk (4ecb4d013) 2014-02-12 Albert Astals * Make the cacheBuffer be gu based (c92143a78) * Scopes guys want the data back (816a65656) * improve the TODO (a016445f1) * Simplify DashApps count/fake models (cbbcda3a2) * Merge (b1ddcfbb0) 2014-02-12 Andrea Cimitan * Merged trunk and added remaining switch case to preview widget factory (db4181598) 2014-02-12 Albert Astals * Fix tst_Preview.qml (afebe57d8) * Merge lp:~aacid/unity8/new-scopes-preview-fixes (1733e4ae8) 2014-02-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (084e2ebcd) 2014-02-12 Leo Arias * Merged with trunk. (21d558e6a) 2014-02-12 Albert Astals * Merge++ (af8ec4ba8) * Merge (bab64f3dc) * Make the index changing works (772e8c4d3) 2014-02-11 Michal Hruby * Merge trunk (da5838920) 2014-02-11 Daniel d'Andrada * Make DirectionalDragArea work when rotated (6872f778d) * Added test for rotated DirectionalDragAreas (d90aba390) 2014-02-11 Michal Hruby * Merge lp:~unity-team/unity8/unity8.preview_image (36d647ab2) 2014-02-11 Michał Karnicki * Merge newscopes-new-dash-look. (5f8e54e5e) 2014-02-11 Albert Astals * we don't need an activit indicator since we get stuff immediately (3c432c4ef) 2014-02-11 Daniel d'Andrada * Refactor tst_DirectionalDragArea::calculateInitialTouchPos() (a73885389) 2014-02-11 Albert Astals * Make tests pass a bit more (09ed56155) 2014-02-11 Andrea Cimitan * Simple test for preview video playback (23c5045cd) 2014-02-11 Michael Zanetti * bring in correct app when stages are not shown and a mainstage app is focused (0b17812a2) 2014-02-11 Andrea Cimitan * Merged (919c73c76) * changed anchors (38bcd9d5b) * wip (48ea61166) * Renamed preview image (b354215d7) 2014-02-11 Michael Zanetti * fix issues found by kevin (ca925faf4) 2014-02-11 Andrea Cimitan * Merged imagegallery branch and added tests for the previewimage (778cf037e) * wip (e1193e21a) 2014-02-11 Albert Astals * log-- (2f4a3f6a7) * Use addSpecialCategory for apps scope (1e80a6628) 2014-02-11 Mirco Müller * Fix trailing whitespace issue. (eb045de32) 2014-02-10 Michael Terry * Merge from trunk (4f2dddb49) 2014-02-10 Michael Zanetti * install stages (0c9f70e0f) 2014-02-10 Michal Hruby * Pipe through stdout and stderr of the scopes (b6f5b31f0) 2014-02-10 Michael Zanetti * also update mainstage screenshot when pressing the sidestage draghandle (3ebb5c4e5) * some fixes to the app startup phase (a095a88e4) * remove blue rectangle (1f285961c) * fix build with ninja (6ba8c673c) * fix focusing a main stage app if the last opened app was a side stage app (c878ff0f5) * fix resetting overlayOverride (bd7f59bc3) * try to get the sidestage on tablet working as before (1cd43133e) 2014-02-10 Michal Hruby * Display only top-level scopes when running on the device (646d8ddda) 2014-02-10 Albert Astals * Merge lp:~unity-team/unity8/unity8-card-overlay again (8ae74328a) * And obviously we need gu here (b2ca6ab3d) * set a view width (63a0b38de) * lp:~aacid/unity8/no_readonly_headerheight (824de02b0) * Do not make headerHeight readonly (428777a35) 2014-02-07 Mirco Müller * Able to eliminate one wait() call. (6c82909c9) * Made the Notifications QML-test work again... (38237dc02) 2014-02-07 Michał Karnicki * Fix header color font. (9a5433969) * This is used to SET fixed header height when in overlay mode. (c182df768) * Clean-up conflict. (584195850) * Merge new-scopes. (a6ab6f4c2) * Merge prerequisite. (2c889f325) * Fix font colors before Theme palette is updated to match new designs. (3f4627b49) 2014-02-07 Leo Arias * On the autopilot helper to open a scope, wait for the dash content list to stop moving. (4b5b24fa8) 2014-02-07 Michał Sawicz * lp:~unity-team/unity8/newscopes-preview (b781598cd) 2014-02-07 Andrea Cimitan * Empty file (e2127ac8b) 2014-02-07 Michał Sawicz * Drop placeholder. (5115bba1b) * Initial preview integration. (8eeaf75d7) * Adapt to scopes_ng. (eda8d5834) * lp:~unity-team/unity8/newscopes-card-overlay (d8c12f10d) * lp:~unity-team/unity8/new-scopes-title-alignment (5b8a3e608) * lp:~unity-team/unity8/header-alignment (2e2882b3b) * lp:~unity-team/unity8/unity8-card-overlay (1edc6e9e1) * lp:~saviq/unity8/new-preview (e8910c4af) * lp:~unity-team/unity8/action_preview_widget (50ca2900c) * lp:~ted/unity8/on-the-screen (0546c3986) * lp:~aacid/unity8/image_gallery_preview_widget (bafeccb56) * lp:~unity-team/unity8/unity8.previews_textSummary (4b6851cb2) * lp:~unity-team/unity8/unity8.previews_audioPlayer (5ffeeabeb) * lp:~mterry/unity8/demo-users (024c01324) * lp:~saviq/unity8/card-tool (c47c217ee) * lp:~saviq/unity8/fix-indicator-tests (364ab590d) 2014-02-07 Michał Karnicki * Proper title alignment. (4bb54614c) 2014-02-07 Andrea Cimitan * Work on the Rating widget (ce161c0fb) 2014-02-07 Albert Astals * review tweaks (82dac67b1) * remove unneded import (35a35f3b6) * PreviewHeader (433185d78) 2014-02-07 Mirco Müller * Make code of test tighter. (ac4b82196) 2014-02-07 Michał Sawicz * Merge trunk header-alignment. (5c77bf165) 2014-02-07 Michał Karnicki * Center-align title when it's alone in the header. (383bfc2b6) 2014-02-07 CI bot * Releasing 7.84+14.04.20140207.1-0ubuntu1 (491e0f750) 2014-02-07 Michał Sawicz * Add overlay to card.; Fix implicit card height. (4301b3286) * Add Preview for new generation scopes. (62e07dd94) * Actions Preview Widget (e44a203a1) 2014-02-07 Ted Gould * You can't tap anywhere (a3aed0d53) 2014-02-07 Albert Astals * Basic ImageGallery widget for Previews (40e804e96) 2014-02-07 Andrea Cimitan * Adds TextSummary preview widget (8d0de43f5) * First audio player widget for previews, with tests (2f342e496) 2014-02-07 Michael Terry * Expand greeter demo support to include listing multiple users and specifying individual passwords and names. (aae00eaa3) 2014-02-07 Michał Sawicz * Add CardTool to determine category-wide card properties based on the category template. (76db39d11) * Wait for the indicator to appear. (265cbea12) * Merge card-tool. (9fb61f5e6) * Add test that ensures correct widget mapping. (55dc2dd12) * Drop spurious imports. (ae18247b8) * Add more tests and fix review comments. (8fa3cc424) * Fix and add test for processingMouseArea. (20c47f37e) * Introduce Preview.qml, along with tests. (a85cdbacf) * Type and id are not available in widgetData, only as roles from the model. (67cc46dee) * Add widgetId property and triggered signal to PreviewWidget. (89c35e7d2) * Add PreviewWidgetFactory. (fab08c44c) * Add test case. (c8125a365) 2014-02-07 Leo Arias * Fixed the expected application name. (2ad46e70e) 2014-02-07 Michał Sawicz * Add overlay mode to tst_Card.qml. (ba2263b20) * Use palette. (267739162) * Use an alias. (0bc44b0b2) 2014-02-07 Michał Karnicki * Bring change from new-scopes. (c1abb3458) 2014-02-07 Leo Arias * Fixed the call to os.path.basename. (bf50afb8e) * Fix class method. (673918375) 2014-02-06 Leo Arias * Added the ubuntu ui toolkit autopilot helpers as a dependency. (ec855af74) * Replaced the camera with a fake application. (8366c806c) * Kill the camera process after the test. (5d23db58f) * Just swipe until the end to make it bullet proof. (6414ab023) * Moved the patch data dirs to launch unity. (c1cea2b5f) 2014-02-06 Michał Karnicki * Fix CardTool tests. (4bb3ca048) * Scale the header down in carousel. (a212df82b) * s/titleAlignment/headerAlignment (7b5f1b2c5) * Merge new-scopes. (fd5d95f3a) * Merge prerequisite. (2cf57fe53) * Silence: file:///home/karni/src/canonical/unity8/unity8/qml/Dash/GenericScopeView.qml:290: TypeError: Cannot read property 'category' of null (f8fbab928) * Make titleAlignment readonly. (1208f42fe) * Move titleAlignment from within card to CardTool. (46599add2) * /s/titleHorizontalAlignment/titleAlignment (a5364c4ae) 2014-02-06 Michael Zanetti * fix testRunningApplicationsGrid (fcd72d081) 2014-02-06 Michał Karnicki * Set proper overlay height. (2b53c5bc4) * Merge prerequisite. (e2d36f649) * Expose card header height for overlay height needs. (8c9ad6314) 2014-02-06 Mirco Müller * Merge with trunk. (27d3afb47) * Removed AP-test and replaced with QML-test to verify correct behaviour of visual snap-decision queue. (2e68a7726) 2014-02-06 Andrea Cimitan * Grab the updated ratingstars widget I wrote months ago, branching textSummary preview branch too (fc277e5ff) 2014-02-06 Michał Sawicz * Merge audioPlayer. (133fc2270) 2014-02-06 Albert Astals * more tweaking suggested by saviq (cc2a2dd2a) * better width setting (18d7b5e22) * typo-- (65c957306) * color instead of gradient (2db6dd018) 2014-02-06 Michael Zanetti * fix testResponsiveFlowView (45716b370) * introduce ApplicationManager.suspended and make use of it when the Greeter is locked (9911d2206) 2014-02-06 Albert Astals * The button sizing comes from the parent (9513e2559) 2014-02-06 Andrea Cimitan * Merge (8486b8a79) 2014-02-06 Albert Astals * move clear into cleanup (099d220ca) * Wait for the height animation to finish (55cdd2ba1) * Animate height of the combo (f346a423b) * Saviq doesn't want to see two anchors. one after the other (cd3b4882b) 2014-02-06 Leo Arias * Updating the copyright year. (02ea58b40) * Make it optional to use the mock data dirs. (243d542ef) 2014-02-06 Albert Astals * The condition makes more sense in topMargin than in spacing (3990d3f5a) * Right align and make the width implcitWidth (047f3c5b6) * Hide "actions" from the outside users (ed7c300d6) * better docu-comment (9fc57661a) * One line less! (b8ab15a0b) * Missing ; (fbe06791c) * Use PreviewActionButton in PreviewActionCombo (889ebbd2c) * longer name (37d3e2bfb) * Buttons just pass their id up, not the whole data (a05f78e2a) 2014-02-06 Michael Zanetti * some small tweaks and make more tests pass (ef23f09f7) 2014-02-06 Albert Astals * Unit tests (8e6a8115e) 2014-02-06 Nick Dedekind * Added TODO for profile (afb75cf57) 2014-02-06 Andrea Cimitan * review stuff (1200739ca) 2014-02-06 Nick Dedekind * Fixed profile argument parsing (b5db70521) 2014-02-05 Leo Arias * Fixed errors pointed out by mterry. (6c9636a8f) 2014-02-05 Michał Sawicz * Merge card-overlay. (6bcba6902) * Bring changes from newscopes. (0d2862a84) * Move margins into CardHeader.qml. (180a1636f) 2014-02-05 Michał Karnicki * d'uh (7b94488d1) * Use one animation. (644c0adbe) * Use explicitlyScaled for current item instead. (b70da4d06) * Show overlay on current item only. (b99b54d9a) * Make overlay height dynamic. (2de49c75a) 2014-02-05 Leo Arias * Typo. (eac6a7734) * Typo. (d99b29f70) * Added a test to swipe out an application started by url-dispatcher. (20d4a3d08) 2014-02-05 Michael Zanetti * allow executing a single test function (fd5451670) 2014-02-05 Michał Karnicki * Change title and subtitle font color in overlay. (db0dfc199) 2014-02-05 Michael Zanetti * ooops (9ddec94f4) * don't allow restarting the animation if the user manages to reach the EdgeDragArea by overshooting the flickable out of the view. (7694b628b) 2014-02-05 Andrea Cimitan * Moar fixes (0ba0a56b3) 2014-02-05 Michael Zanetti * don't react to clicks when stage is not 2 (bdfef9b51) * reduce dropshadow opacity to .4 (2f2333068) * prevent tile 0 from moving to the right. (9f8afb7e4) 2014-02-05 Albert Astals * PreviewActions Widget (c251e139a) 2014-02-05 Michael Zanetti * hide stages if current app is unfocused (e.g. closed) (7f7534870) 2014-02-05 Ted Gould * Updating the PO file to get the change (e10ed624b) 2014-02-05 Andrea Cimitan * As review (dfc8753e9) 2014-02-05 Albert Astals * Play a bit with the styling (33da324b1) 2014-02-05 Michael Zanetti * calculate dragged distance based on flickable movement, not on DDA's distance property (8167701b5) 2014-02-05 Michał Sawicz * Wait for the indicator to appear. (8e44ecd5f) 2014-02-05 Andrea Cimitan * Fixed things in review, added test for NAN (658f97b6b) 2014-02-05 Albert Astals * PreviewImageGallery (023ec207d) * Merge (d2377d4aa) * Merge (8e4f2b9f8) 2014-02-05 Michael Zanetti * merge trunk (47a05f6bb) 2014-02-04 Michael Zanetti * use FastDuration everywhere (09b9892e8) 2014-02-04 Michał Sawicz * Apply font scale. (5e48a5d63) * Merge card overlay. (e9d4b51e1) * Support font scale and improve margins. (75c2b5e41) 2014-02-04 Michael Zanetti * some commenting and cleanup (7a8b36a4e) 2014-02-04 Michał Karnicki * Fix card height. (3771b9a61) * Add card overlay. (c7fbd0114) 2014-02-04 Michael Zanetti * limit the right edge animation to stage < 2 if there are only 2 apps running (73a8cbd07) * fix mock appmanager to not re-activate a focused app (eb73d5f5b) * fix fullscreen in certain corner cases, disable right edge if only one app running (ef7bab51d) * rework/simplify how stages are revealed in Shell.qml. (8df8725a1) 2014-02-04 Michał Sawicz * Disable Card in CardCarousel to not eat any input. (caeabdfd9) * Disable Card in CardCarousel to not eat any input. (41ac441f1) * Use CardTool in CardFilterGrid and CardCarousel. (9c3020bbf) 2014-02-04 Andrea Cimitan * Changes according to review (fd362a4e5) 2014-02-04 Michał Sawicz * Merge trunk. (6d35bebf1) 2014-02-04 Andrea Cimitan * Added comments to seemore and moved variable (7ef493499) 2014-02-04 Michał Sawicz * Do not expose "priv" in CardTool.qml. (0da5e4061) 2014-02-04 Andrea Cimitan * Modified unity8 pot file (d5d49582d) * Removed unused dep (653639e71) * Removed unused dep (c1564f7a7) * More renamings (8865696e7) * More renamings (fdf142ac4) 2014-02-04 Michał Karnicki * Add tests. (c1362017b) 2014-02-04 Andrea Cimitan * Merged audioplayer branch (408f00ceb) * Renamings (ae5ff2d9b) * Renamings (ee2b67dec) 2014-02-04 Michael Terry * Make foreach loop work on const strings (dc8086130) 2014-02-04 Andrea Cimitan * Moved end of comment to new line (9ac9560c9) * Put comment end in new line (6535be51e) * Changed paths to not existing (827457563) 2014-02-04 CI bot * Releasing 7.84+14.04.20140204-0ubuntu1 (c87b241e1) 2014-02-04 Michał Sawicz * Don't treat scope as active when preview open to inhibit model updates and reset processing on previewData changes. Fixes: 1275832 (461f112d0) * Move upstart kill timeout to the unity8 job itself. (103809391) * Add CardTool to determine category-wide card properties based on the category template. (d7e5175d2) * Add doxygen-based documentation generator. (beb705ad1) * Improve Card and CardHeader layouts: - anchor summary to art when no header - don't indent header when no mascot - reduce header and summary font sizes and weights - increase art shape radius (9d03f1986) 2014-02-04 Michael Terry * Disable NM integration test, jenkins has a problem with it because logind isn't configured (c33980690) 2014-02-04 Michał Karnicki * CardHeader mascot improvements. (717bc2a4a) 2014-02-04 Michał Sawicz * Add ubuntu-settings-components to build script. Revert workaround for bug #1268578, got fixed upstream. Drop GenericName from unity8.desktop. (b09affaaf) 2014-02-04 Leo Arias * Added the DashPreview autopilot helper. (ea44f8c35) 2014-02-04 Michael Zanetti * fix occasional lack of animation when doing very quick swipes (ca2e8f505) 2014-02-04 Andrea Cimitan * Further tweaks (1e727489e) 2014-02-04 Michał Karnicki * Remove not needed line. (1c389013b) * Fix CardHeader title alignment. (005391e5b) 2014-02-04 Michael Zanetti * align panel and right edge animation speed (makes the panel hide animation a little wee faster) (f7875dd66) * animate panel earlier (4ae044a94) * keep on moving tile 0 when snapping to tile 1 in stage 0 or 1 (853451c1b) * fixes and improvements according to todays design meeting (005733dd5) 2014-02-04 Andrea Cimitan * Added dot at end of comment (dade1d2e3) * Added comment (8d7fa99d4) * Added another test and comments (4f87ed051) 2014-02-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (59b41bbc7) 2014-02-03 Andrea Cimitan * moved code (c1a901917) * More robust test (21db4b073) * Added tests (2adef63c2) 2014-02-03 Michael Zanetti * only show the animation when the gesture is recognized. simplify code (72b5f59a1) 2014-02-03 Andrea Cimitan * Merged audioplayer (21c631356) * More work (41a639854) * Changed test bg color (fadec9854) 2014-02-03 Michał Sawicz * Don't treat scope as active when preview open to inhibit model updates and reset processing on previewData changes. (854696721) 2014-02-03 Michael Zanetti * fix animation when snapping to first app (65b6a9141) 2014-02-03 Gerry Boland * Delay hiding screenshots a touch so Mir has definitely acted upon the focus request and is showing the app. (09bbe14e1) 2014-02-03 Michael Zanetti * restore animation speed (3eab733f0) * shift flickable contents to avoid scrolling back to the beginning (b5ffd72f5) 2014-02-03 Gerry Boland * On Greeter lock, only save focus state of side stage app if side stage shown (a2cd7047b) * SideStage: add InputFilterArea to sidestage handle to block input to mainstage app while moving sidestage (350eca41a) 2014-02-03 Michael Zanetti * drop whitespace (fc96ca350) * make app 0 fade out on short backswipes too (ac8a7b624) * simplify code (a57ff95df) * don't move other tiles any more when an app is selected (a84c35bf9) * increase the angle of the first tile when snapping to stage1 (4f909e2ad) * improve comment (3e744276a) * don't switch apps in the middle of the animation... it breaks the animation (2eb12a391) 2014-02-03 Andrea Cimitan * continue work (2e3727ee7) * Removed style from text (e1b2e3b28) 2014-02-03 Michał Sawicz * Add readonly to some properties. (4a28a9e9d) * Add \brief where there's only one line doc. (053c6b666) 2014-01-31 Michał Sawicz * Replace wallpaper with static dash background and adapt styles to match design closer. (8e013a484) * Fix CardCarousel. (db5e8b7ba) * Make cards visible actually. (80efd73ba) * Use CardTool to configure CardFilter and CardCarousel. (af9535f9d) * Merge card-tool (0bf39e2ff) * Implement support for carousel. (a383ae68d) * Add missed test. (074e84758) * Include sources. (a5f54169e) 2014-01-31 Andrea Cimitan * Merged (290fc89ca) * Use !== instead != (2804eea35) * Merged preview widget branch (61fb69691) 2014-01-31 Michał Sawicz * Add more test configurations. (5916fe60e) * Move default layout and fullMapping into helpers. (7290e0336) 2014-01-31 Andrea Cimitan * Add tests for time formatter (1c1a0715d) 2014-01-31 Michał Sawicz * Fix documentation style. (c8146ffe4) * Add tests for CardTool. (7b9114b0d) * Clean up test configurations. (c31812b60) 2014-01-31 Andrea Cimitan * removed brief (2efff0db7) * remove empy lines (308828a5c) * Better implement interface (24ebe8399) 2014-01-31 Michał Sawicz * Merge trunk. (286ee5a32) * Make doc installation OPTIONAL. (f6de9fa73) * No need for v8 in the end - assume SDK release PPA. (96b4b442d) 2014-01-31 Michal Hruby * Enable taps, pass correct params to preview and activate (7281c48dd) 2014-01-31 Andrea Cimitan * Remove root id (2cf5d1799) * Add interface (37a7f5b11) 2014-01-31 Michał Sawicz * Fix stripping from inc. (8dca4ad57) * Do not build docs every time. (29ad6450b) 2014-01-31 Andrea Cimitan * Added textsummary preview widget, no tests required (8beb2494e) 2014-01-31 Michael Zanetti * improve transitions between stages (a8eb86058) 2014-01-31 Michał Sawicz * Add docs. (c8c5ca734) 2014-01-31 Michael Zanetti * add short flick gesture to quickly switch between the 2 topmost apps (4031f8dcb) 2014-01-31 Michał Sawicz * Move doc list to CMakeLists.txt from Doxyfile.in and unhide undocumented members. (f1e13fe12) 2014-01-30 Michał Sawicz * Check for doxyqml, too. (c8439fa3b) * Add graphviz to enable doc generation. (3dbc5b196) 2014-01-30 Michael Zanetti * don't clip the shadow (7ae47fa41) 2014-01-30 Michał Sawicz * Add initial doxygen support and build the unity8-doc package. (c82c475bb) 2014-01-30 Michael Zanetti * add scaling of apps to compensate difference between fullscreen and regular apps some more fixes (0ccba8f71) 2014-01-30 Michał Karnicki * Typo. (3a4fda4d3) * Remove tests, per discussion on IRC with Saviq. (064c8dce4) 2014-01-30 Michał Sawicz * Merge improve-header-layout. (39ffbf413) * Make summary "small". (9f3468cdf) * Merge improve-header-layout. (076e19882) * Work around QML not laying out invisible items. (2dc832569) * Change font size and weights. (1905c1a68) * Improve Card layout: anchor summary to art when no header. (7a5e8cef6) * Improve CardHeader layout: don't indent header when no mascot. (119a21d62) 2014-01-30 Michael Terry * Only make background transparent in greeter mode, in case it matters (b98b649a7) 2014-01-30 Michał Sawicz * Add initial CardTool. (1bd3afd4f) 2014-01-30 Michael Terry * Drop unneccessary variable (ddbecbe31) * Use fancier unittest.skip method of disabling (b430e9cfb) 2014-01-30 Nick Dedekind * profile parameter to use correct name (850e8ec2d) * Added missing load parameter (3e26fabbe) * Better indicator profile support (17befd65a) 2014-01-30 Michał Karnicki * Fix whitespace. (bf015345f) 2014-01-30 Michael Terry * Disable system integration test until we can examine failure in jenkins (7ae3ed2de) 2014-01-30 CI bot * Releasing 7.84+14.04.20140130-0ubuntu1 (03841250b) 2014-01-30 Michał Sawicz * Bring back libunity-mir1, it's dlopen'ed, so not linked to unity8, so not in shlibs. (9d670e30e) 2014-01-30 Michał Karnicki * Merged trunk. (b28462ffc) 2014-01-30 Michał Sawicz * Fix dep. (e8ff0612d) 2014-01-30 Michał Karnicki * Add tests. (14a542066) 2014-01-30 Michał Sawicz * Bring back libunity-mir1, it's dlopen'ed, so not linked to unity8, so not in shlibs. (2c1f34220) 2014-01-30 Michał Karnicki * Fix mascot size and Image properties. (4f7ad5131) 2014-01-30 Michael Zanetti * fix selecting of tiles, improve performance, kill a binding loop (c055fc2e8) 2014-01-30 Andrea Cimitan * Fixed comment (ae28f386d) * Fixes tests and coding style (ad2ed3f91) * Added artist label (3ca75207b) 2014-01-30 Albert Astals * Merge (6d327f545) * Make tests be gentler to the next test (775d0023a) * Don't click twice (ca881391b) * Merge (7853e607c) * This makes the tests pass here, let's see if CI is happy? (d7a19d2f0) * Merge (fd24643b2) 2014-01-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (515e5bdd4) 2014-01-29 Leo Arias * Prepare unity8 to the _uinput refactors in autopilot. (3e13f6ef6) 2014-01-29 Andrea Cimitan * Format date time (a38136309) 2014-01-29 Ted Gould * You can't tap anywhere (96b0b7dff) 2014-01-29 Michael Zanetti * fix selecting/switching to app (6c54360ce) 2014-01-29 Michał Sawicz * Add ubuntu-settings-components to build script. (4e7e060c8) * Build-depend on libqt5v8-5-private-dev for Qt < 5.2. Needed for saucy, where it's not a dependency of qtdeclarative-private-dev. (ec5656640) * merge trunk (340d35248) 2014-01-29 Michael Terry * Allow specifying whole name for demo users (96e3cc1fa) * Allow specifying list of demo users (7182161d0) 2014-01-29 Michał Sawicz * Merge trunk. (48aa0968e) 2014-01-29 Nick Dedekind * Fixed plugin qml import into qtcreator (b36059bde) 2014-01-29 Albert Astals * wait for it to be there (e44567399) * Merge trunk (d26a12be3) * Don't break other tests that use expect the apps scope to be somewhere else (a91da8592) 2014-01-29 Andrea Cimitan * Drop dividers (959f4c588) * works with tryAudioPlayer and changed length format from string to seconds, uri to source (5ec9ae817) * Added tests for audio player widget (d13ce37d4) 2014-01-29 CI bot * Releasing 7.84+14.04.20140129-0ubuntu1 (2276f60d3) 2014-01-29 Nick Dedekind * Ported indicators to using ubuntu-settings-components (280438d31) 2014-01-29 Michał Karnicki * Fix FilterGrid rendering issues. (52119c1d7) 2014-01-29 Mirco Müller * Fixed the failure of notification autopilot-test test_sd_incoming_call. (551c7080e) 2014-01-29 Michał Karnicki * Don't display artShape when artImage source not set. (604e7843f) 2014-01-29 Albert Astals * Call updateDelegateCreationRange when it's needed (e065d70e9) 2014-01-29 Andrea Cimitan * Add AP test for policykit/network manager, which was causing issues with nested mir (fcb543b63) 2014-01-29 Albert Astals * Prepend /sbin/ to initctl calls (7c39e4591) 2014-01-29 Nick Dedekind * Added Panel/VisibleIndicatorsModel for use with both indicator row & menuContent. (9dcab0116) 2014-01-29 Michał Karnicki * Minimum number of items in the carousel is 5. (decf7f33e) 2014-01-29 Nick Dedekind * removed FIXME (90c1598ba) 2014-01-29 Michał Karnicki * Merge new-scopes. (a3c70face) 2014-01-29 Michał Sawicz * Merge trunk. (879ac0ec8) 2014-01-29 Michał Karnicki * Fix one tag. (eafde5b13) 2014-01-29 Michael Zanetti * fix selecting an app animation (00dfebd2d) 2014-01-29 Michał Karnicki * Refactor. (e57a85038) * Revert one spacing value. (275e4b82c) * Merge trunk. (92e8963a0) * Add tags. (5da5b3b11) * Return plain array. (6bda75fad) * Collapse lines. (1c991c255) * Introduce init and cleanup. (b1f4c0fae) * Fix extra space. (8d92913b9) 2014-01-29 CI bot * Resync trunk (886ef4127) 2014-01-29 Michael Zanetti * code improvements (1d3b58e3a) 2014-01-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (34b2b8d27) 2014-01-29 Michał Karnicki * Remove unused code. (52f9815f6) * Because FilterGrid doesn't like LimitProxyModel. (b4bc0473e) 2014-01-28 Michael Terry * Use upstart launching for more of the app focus tests; it is more realistic (6ced7b159) 2014-01-28 Michael Zanetti * finetune scaling (e3f9656b1) * convert it to not flip the first two covers (7ffaa00c7) 2014-01-28 Michał Karnicki * Merged trunk. (164304c83) * Remove wait. (7a31376c8) * Shrink artShape when artImage not set. (bf51e0892) 2014-01-28 Michael Terry * Use upstart to re-focus app, rather than calling it directl. better test of fix (5ea1eca1e) 2014-01-28 Mirco Müller * Use more robust way to grab graphics-assets in the notification autopilot-tests. (ecd25db05) 2014-01-28 Albert Astals * console.log -= 2 (da2114c4a) 2014-01-28 CI bot * Releasing 7.84+14.04.20140128-0ubuntu1 (b649d0ebe) 2014-01-28 Mirco Müller * Fixed the failure of notification autopilot-test test_sd_incoming_call. (641878c40) 2014-01-28 Bill Filler * disable predictive text in Dash search field as it interferes with built-in search Fixes: 1273643 (ce2f3a128) 2014-01-28 Michał Karnicki * Add test for minimum number of items in a carousel. (db57a9cf7) 2014-01-28 Daniel d'Andrada * DragHandle: Never restart hinting animation while still pressed Fixes: 1269022 (e9862c770) 2014-01-28 Albert Astals * Better fix for tests for the old bug and for a new one introduced by the previous fix (fd9dd23d8) 2014-01-28 Leo Arias * On autopilot helpers, wait for the scope category to appear. (dbafc165a) 2014-01-28 Mirco Müller * Missed a change to commit. (7f1d8cf8c) * Fixed the failure of notification autopilot-test test_sd_incoming_call. (f8f1c855c) 2014-01-28 Leo Arias * Merged with trunk. (e74d03a84) 2014-01-28 Michał Karnicki * Removed unused id. (dea95300a) 2014-01-28 Albert Astals * Merge testCyclePreviewBroken (145ccaec5) * Fix test_previewCycle (faa5e87d5) 2014-01-28 Michał Karnicki * Hide artShape when artImage not set. (2287a8b43) * Minimum number of items in the carousel is 5. (f014c5985) 2014-01-28 Albert Astals * don't change spaces (22d12ea82) * log-- (0acb1ccb9) * Don't move the list contentY unless there's a preview to show (88ffb54a3) 2014-01-28 Michał Karnicki * Remove unnecessary 'var'. (2e087e086) * Leave carousel fallback value, we'll tweak in new-scopes. (09222b2ad) 2014-01-28 Michal Hruby * Merged trunk (d8085267d) 2014-01-28 Michał Sawicz * Fix CardHeader and Card heights (empty Label does have non-zero height apparently). (be2d48544) 2014-01-28 Michał Karnicki * Fix grid view column count. (1b4cec4c1) 2014-01-28 Albert Astals * Call updateDelegateCreationRange when it's needed (0c88c2fb4) 2014-01-28 Michał Sawicz * Merge trunk. (d8fc42a2f) 2014-01-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (eba474250) 2014-01-28 Michał Karnicki * Pay attention to the spec. (2943ee243) * Fix carousel grid fallback model size. (24d839bb5) * Add tests. (de29d178c) * Fix typo. (2d17e646e) 2014-01-27 Michał Sawicz * Improve readability. (6e2fe79f6) * Add one more comma. (3430278f7) * Improve InitTestCase robustness and add trailing commas to reduce diffs later. (405f43bf5) * Fix CardHeader height with no attributes. (971892c41) * Make sure summary is 0-high when empty. (e51a13712) 2014-01-27 Michał Karnicki * Rename. (e798da0f9) * Limit collapsedRowCount based on model item count. (3ec2a17b8) 2014-01-27 Bill Filler * disable predictive text on Dash search field (3a0bc2b94) 2014-01-27 Michał Karnicki * Fix grid column count. (a684e1c15) 2014-01-27 Andrea Cimitan * Remove assert (b6414d9a3) * Initial Audio Player preview widget (edb5cde24) 2014-01-27 Nick Dedekind * Removed Message menu enable comment (d2750558a) 2014-01-27 Michael Terry * Point DBus-activated processes at unity8's MIR_SOCKET rather than the system socket. (74639554a) 2014-01-27 Nick Dedekind * Merged with trunk (79c6580ff) 2014-01-27 Michał Sawicz * Merge trunk. (5906727fb) 2014-01-27 Andrea Cimitan * Use subprocess (cdc537da3) 2014-01-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2308f33af) 2014-01-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9f060e211) 2014-01-24 Andrea Cimitan * Fix the test (1526af554) * Remove whitespace (b22d70928) * Renamings (554b79710) * Added test for nested mir (6e52ae626) 2014-01-24 Michael Zanetti * fix snapping (5e7fcc9e2) * reimplemented right edge to be exactly like the prototype (4551efc29) 2014-01-24 Albert Astals * Prepend /sbin/ to initctl calls (0e43d81fd) 2014-01-23 Mirco Müller * Fixed the overlapping of snap-decision notifications during animation, if they are stacked on screen and one is removed from the model. (2c7d55a03) 2014-01-23 Leo Arias * Added the missing file. (ecd66c225) 2014-01-23 Mirco Müller * Fixed the spacing depending on fullscreen notification or stacked snap-decisions being shown. (df73bd54d) 2014-01-23 Michael Zanetti * rename progressmarker1 as its in fact marker no 2 (e0fb2d6be) 2014-01-23 Leo Arias * Updated the copyright year. (6405b9f1c) * Added the DashPreview autopilot helper. (8d2c328f6) 2014-01-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6bd49e1ef) 2014-01-22 Michael Terry * And add another autopilot test for re-focusing an app while in greeter (7f71e9d10) 2014-01-22 Leo Arias * Merged with trunk. (f37c39c18) 2014-01-22 Michael Zanetti * shift apps by 4 dp each (97b7865f0) * reintroduce a way to determine if the sidestage is enabled (bcc1ff93d) * shrink app tiles a little to make 3 of them fit into one row again (5e93d9ad9) * slow down scrolling a bit and fix the flickables contentWidth to roughly reflect the app's positions (4e62a6840) 2014-01-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4442366cf) 2014-01-21 Leo Arias * On autopilot helpers, wait for the scope category to appear. (fbf95afbb) 2014-01-21 Michael Terry * Also set MIR_SOCKET to point at unity8 for DBus-activated processes (e563cac44) 2014-01-21 Mirco Müller * Fixed bottom-margin/edge issue with stacked SDs, but top margin for fullscreen/simunlock notification still off... (6b263d1f1) 2014-01-21 Daniel d'Andrada * DragHandle: Never restart hinting animation while still pressed (b968169a1) * Regression test for LP#1269022 (527b9c339) 2014-01-21 Michael Zanetti * added a dropshadow (8e838d67d) 2014-01-21 Mirco Müller * Fixed MouseArea size, fixed expansion on click for SDs. (53fadbd37) 2014-01-20 Michael Zanetti * fix hiding the stage when the app is killed (3a4ef7396) * more progress on the fake application manager (3570b4af6) 2014-01-20 Michal Hruby * Update Unity plugin version req in PreviewListView.qml (1580d93b6) 2014-01-20 Mirco Müller * Merged with trunk, solved merge conflicts. (a1737534b) 2014-01-20 Leo Arias * Added autopilot helpers for the app scope and the app preview. Install the fake scopes in order to use them on the tests. Fixes: https://bugs.launchpad.net/bugs/1269114. (f8124452e) 2014-01-20 Albert Astals * Misc journal fixes (d3c71aa01) 2014-01-20 Michael Zanetti * added missing files (c96915738) * some work on bringing the fake application plugin up to date with the new api (a2c47a60a) 2014-01-20 Albert Astals * Organic Grid for the Dash View. (8c3fa908d) 2014-01-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e867fa68f) 2014-01-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c7090b8bc) 2014-01-17 Leo Arias * Reverted the changes on CODING. (7df12b2d0) 2014-01-17 Albert Astals * Tests and some small fixes (e88c20498) 2014-01-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9d389b555) 2014-01-17 Michał Sawicz * Move upstart kill timeout to the unity8 job itself. (85698b48e) 2014-01-16 Michael Terry * Whoops, fix typo (05e99dc24) 2014-01-16 Leo Arias * Added scopefakes to the unity8-fake-env. (757f8c06d) * Updated the copyright years. (33926e0d1) * For now, use the fakes only on the app scope tests. (767023865) * Fixed the install, updated the README. (9bf340414) * Fixed pep8. (45a2aab41) * Install the scope fakes. (3b9fd008b) 2014-01-16 Michael Terry * Add autopilot test for greeter hiding when app opens (c5219df65) 2014-01-16 Michael Zanetti * add a point of no return (d8f6d1a2d) 2014-01-16 Michał Sawicz * Merge trunk. (91a700335) 2014-01-16 Albert Astals * Adapt to findChild return value changes . (ef3205543) * fix whitespace (3322dfe82) 2014-01-16 Nick Dedekind * Fixes visible indicator misalignment in indicator items/menus (lp#1264678). Fixes: https://bugs.launchpad.net/bugs/1264678. (0e7091da8) * Added missing formatting (a8cb70b9e) * Removed newline. (35393db55) 2014-01-16 Michael Zanetti * merge trunk (9f1b06157) * drop unused file (316262b81) 2014-01-16 Albert Astals * Adapt to findChild return value changes (6a6793e71) 2014-01-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (59e849e0e) 2014-01-15 Leo Arias * Check that the returned preview is the current one. (071ece5d0) * Added fixtures to the autopilot deb package dependencies. (9797fbe5a) * Show the AppPreview on the fake scope. (b0ebe6dd0) * Fixed whitespaces. (032768b48) 2014-01-15 Michael Zanetti * make fake application scope use the application preview (cf5e636a2) * fix selected animation (be428f289) 2014-01-15 Michael Terry * When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo (157b78609) 2014-01-15 Leo Arias * Properly implemented the get_applications test case using the fake scopes. (05af30905) 2014-01-15 Albert Astals * positionItem -> addItemToView (8c7c7ca18) 2014-01-15 Nick Dedekind * fixed findChild !== null rather than undefined (575a5ad28) * merged with parent (f85b6c413) 2014-01-15 Albert Astals * Don't init *modelIndex to INT_MAX (c027a90ef) * Don't refill if height() < 0, that gives bad ranges for from/to and the code gets confused (1059f9ba7) 2014-01-15 Nick Dedekind * Fixed tests (a394547b6) * Fixed tests for change to findChild (f612b65e4) * merged with trunk (2c9da6694) * merged with trunk (a4c01dd24) 2014-01-15 Michael Zanetti * cleanup (2e2f62f08) * make flicking AND clicking work (e48b96b91) * make it look nicer if there are only 3 running apps (354cdc927) * fix glitch with focusing the right app when moving backwards, after having already passed progressmarker1 (cc0e3a258) 2014-01-15 Michał Sawicz * Return null instead of undefined from findChild and findInvisibleChild. (09de2edf0) 2014-01-15 Michael Zanetti * improved the whole animation a lot (44f7ef579) 2014-01-15 Albert Astals * Daniel agrees we don't need the warning here (b4e34badc) * introduce aux itemsPerRow (a9b898c9b) * Some docu about layouting (704eeef36) * Merge (c0ebc228e) 2014-01-15 Michał Sawicz * Merge trunk. (3541cb77c) * Merge trunk. (86a23ffb2) * Fix tests to expect null instead of undefined. (c5fb6816a) * trunk (873ba5965) 2014-01-15 Michael Terry * Fix failure to build when using the ./build script with ninja-build installed. Fixes: https://bugs.launchpad.net/bugs/1268525. (c88c02e85) 2014-01-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d8b7fd53d) 2014-01-15 Leo Arias * Fixed long line. (edc66d97f) * Added app scope helpers for autopilot tests. (61477c907) 2014-01-14 Michael Terry * Add some missing cmake dependencies (543f859a5) 2014-01-14 Nick Dedekind * renamed VisibleIndicatorsModel (bb67fb3f9) * fixed tests (4bf584d67) 2014-01-14 Michał Sawicz * Drop unnecessary version dependencies. (7acc54124) 2014-01-14 Nick Dedekind * Using visibleindicatorsmodel to source filtermodel for both row & menuContent (09e39276d) 2014-01-14 Michał Sawicz * Revert workaround, got fixed upstream. (24ec27b7e) * merge trunk (25f7f0a99) * Drop unnecessary version dependencies. (89b0f15fa) 2014-01-14 Albert Astals * Some people are never happy with naming (c78b47f2b) * remove one whitespace... (530aaa2e8) * Merge (730e254bf) * Make organicgrid and journals share code (789c6720a) * tests and try targets for the organicgrid (295355ba7) 2014-01-14 Michael Zanetti * reworked animation (240add3ec) 2014-01-13 Allan LeSage * Merged trunk. (8cabcb0b5) 2014-01-13 Michael Terry * Merge from trunk (86b6774e7) 2014-01-13 Nick Dedekind * merged with parent (39385823b) * Better visibility tests for indicators (118426654) * Fixed currentIndex indicator removal causing misalignment (ea717a0b0) 2014-01-13 Michał Sawicz * Work around bug #1268578. (ccacdf0d3) * Work around bug #1268578. (d4166750a) 2014-01-13 Nick Dedekind * Added inidcator tests for page & item factories. (0918abcb9) * merged with trunk (1fd10cbd9) 2014-01-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (af4e7bc4a) 2014-01-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fb31cd163) 2014-01-10 Albert Astals * Fixes to the journal cmake tests code (c86e52985) 2014-01-10 Nick Dedekind * Fixed panel navigation bugs (73a76783b) 2014-01-10 Albert Astals * First version of the OrganicGrid (023665a9b) * Adapt to the real name of the tests (ba31e238f) 2014-01-10 Leo Arias * Added methods to scroll to other scopes on autopilot tests. (93a38dbe4) 2014-01-10 Albert Astals * output to the correct filename for the test (1addaa883) * We don't output stuff from the tryXYZ targets (09b5a8c9b) 2014-01-10 Michał Sawicz * Merge trunk. (30f57b908) * Bring Card and CardHeader over from new-scopes. (11ac636fb) 2014-01-10 Allan LeSage * Add stubs for indicators autopilot tests. (1663e5cd4) 2014-01-10 Michał Sawicz * Merge trunk. (dc32dd939) * Use full DashContent, not just GenericScopeView in ScopeTool.qml. (eb43f0e24) 2014-01-10 Albert Astals * Add some more documentation about tests to the CODING file. (9d3a007bb) * If there are no items m_firstVisibleIndex has to be -1 . (52b3bbfc5) 2014-01-10 Leo Arias * Close the Touch devices after the tests. Fixes: https://bugs.launchpad.net/bugs/1267600. (057f9a247) 2014-01-10 Michał Sawicz * Bring Card and CardHeader over from new-scopes. (3142c9745) 2014-01-10 Michał Karnicki * Horizontal Card layout. (9bb2f3504) 2014-01-10 Michał Sawicz * Fix category overriding. (0e9c4cd8d) 2014-01-10 Michael Zanetti * merge trunk (8c220a213) * update screenshots before starting right edge animation (2b5e5ca09) 2014-01-10 Nick Dedekind * merged with alignment branch (6bb8faa8c) 2014-01-10 Michał Sawicz * Use full DashContent, not just GenericScopeView in ScopeTool.qml. (c17b2c55e) 2014-01-10 Albert Astals * Document you need LC_ALL=C for tests (7f51dca1f) * explain why the install is needed (2da4f892e) * Just document the locale thing for now (c7fde7e7e) 2014-01-09 Leo Arias * Unlock using the process helper, to get retries. (216c5e33f) * Merged with prerequisite. (af4c64b0d) * Close the Touch devices after the tests. (8ab4fa876) 2014-01-09 Michael Zanetti * also add qml files in tests directory. (040e106bb) 2014-01-09 Albert Astals * If there are no items m_firstVisibleIndex has to be -1 (9cc45d66d) 2014-01-09 Michał Karnicki * Test art size in horizontal as well as art width in vertical layout. (5ba60490f) * Verify art size against the spec. (e9cdb26e1) 2014-01-09 Leo Arias * Use the emulator pointing device on the Greeter. (3e8e186db) 2014-01-09 Michał Karnicki * Improvements from Saviq. (4ca7114d4) * Merged new-scopes. (f7ff4cd9e) 2014-01-09 Albert Astals * Make the test when your locale is not the locale the test expects (29a72aeb3) 2014-01-09 Michael Zanetti * improve mouse interaction with CoverFlip (e7794e30a) 2014-01-09 Albert Astals * Make the autopilot target work (9adcdead0) * Add some info about autopilot tests (efc28e771) 2014-01-09 Michał Sawicz * Add name to tst_CardHeader.qml. (4d7d30013) * Merge trunk (9bff68e1c) 2014-01-09 Michael Zanetti * include file types explicitly to avoid adding mocks etc to the unity8 target (51258fc24) * include everything, not just qml and js (7618d45a0) 2014-01-09 Michał Sawicz * Add copyright headers. (b6c0d8c93) 2014-01-09 Leo Arias * Merged with trunk. (a5e5a2b8a) * added the missing x. (250c999ec) 2014-01-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dc8aa4d58) 2014-01-09 Michał Karnicki * Merged new-scopes. (7f068d967) * Fixes from Saviq. (08a6e4357) 2014-01-08 Michał Sawicz * Fix indentation, add name to the Card test suite. (bee3fc931) 2014-01-08 Michał Karnicki * Review fixes. (1bb088026) * Horizontal Card layout. (d72234a9e) 2014-01-08 Michael Zanetti * make it actually switch apps (5c60a3c7c) * added a bit of scaling. not matching spec yet (c3628b916) * also add qml files in tests directory (bf248f849) 2014-01-08 Leo Arias * Typo. (6d1e048dc) 2014-01-08 Nick Dedekind * Fixed indicator item/menu misalignment. (b00f979a5) 2014-01-08 Leo Arias * Do not use indexes. (8fa8eeb88) 2014-01-08 Michael Zanetti * make it interactive (9946b0e0c) * initial try on the right edge animation (ee1c49556) 2014-01-08 Albert Astals * Introduce the HorizontalJournal. (dbb3aabc6) 2014-01-08 Michał Sawicz * Initial Carousel integration. (f5431968d) * Get components from the scope. (8eeec8fca) * Get layout from category template. (72a07f815) 2014-01-08 Michael Zanetti * import qml files into cmake, drop qmlproject. (fe5f1aa84) * import qml files into cmake, drop qmlproject (ebd5d11a4) 2014-01-08 Leo Arias * Use the header border instead of the bottom panel. (55f8a31ff) 2014-01-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a6bf7e615) 2014-01-07 Leo Arias * Merged with trunk. (fba528be8) 2014-01-07 Albert Astals * Add TabBar to the Dash header navigation (99cc5b529) * fix the test (7f38d224e) * make sure there's a pageHeader before setting stuff into it (90e992f0e) * Remove the signals (e24481590) * remove these console.log i forgot (1855b1d70) * add newline (fbae623c0) * Increase the narrow mode up to 80 as per Saviq's suggestion (c239a7090) * Merge (2be1452d1) * comment the if (d831ee86f) 2014-01-07 Nick Dedekind * Visual updates for indicator panel highlight and opening opacity. (04de85dc1) 2014-01-07 Albert Astals * Merge (5387384d2) * Make test_filter_expand_expand less unstable in CI VMs (098aeabf3) * Make sure header0 is the header0 we want to click (1146e6114) 2014-01-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1916f6cb9) 2014-01-06 Allan LeSage * Merged trunk. (d4de49db1) 2014-01-06 Michal Hruby * Bump module import version in scope tool (b285bb319) * Merged trunk (4f10c02a8) 2014-01-06 Michał Sawicz * Added unity-scope-tool, which will help when developing scopes. (91db876b5) 2014-01-06 Nick Dedekind * Fixed file path (33862fb6d) 2014-01-06 Leo Arias * Fixed pep8. (782ae2f54) * Merged with trunk. (d34eed801) 2014-01-06 Nick Dedekind * merged with parent (602b912f5) * removed commented tests (8bec5bd3e) * merged with trunk (f6303fa09) * merged with trunk (a136bc36e) * Made animation of tabs more explicit (a185a18bb) * Fixed code style (9d2229b5f) * Fixed test messages (656b044e0) 2014-01-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (34b8737a6) 2014-01-03 Leo Arias * Reverted to working version. (956965d42) * Scroll on the header. (5e1964d5b) * Fixed order. (acfe1fdb7) * Fixed copyright date. (f6ccd7d0d) * Added methods to scroll to other scopes on autopilot tests. (7f2f0bacc) 2014-01-03 Andrea Cimitan * Avoid input falling through notifications onto surfaces below, thus fixing LP: #1257312. Fixes: https://bugs.launchpad.net/bugs/1257312. (f80112b9a) 2014-01-03 Michał Sawicz * Simplify current item data extraction. (a04462310) 2014-01-03 Albert Astals * make the test/try targets depend on the plugin (9d90030d4) 2014-01-03 Michał Sawicz * Make the textarea read-only. (560537c37) 2014-01-03 Andrea Cimitan * Input is always filtered on notifications (0014ef1fe) 2014-01-03 Michał Sawicz * Fix argv. (c40d296c4) * Drop GenericName from unity8.desktop. (2e1bfbb42) * Drop GenericName from .desktop file. (6d7b40400) 2014-01-03 Albert Astals * Add an assert here (64f6e3c63) * Add Y to the end of some methods parameter names (213669509) * Long lines -= 2 (37a3326a3) * Don't steal QClassName from Qt (7554dc748) 2014-01-02 Michał Sawicz * Merge trunk. (2f840ea4f) 2014-01-02 Albert Astals * Position correctly the pointer of the search history box . (0d78a8a68) * whitespace (2205d5143) * Fix comments (0984241b6) * Adjust signature (6d00e7002) * Merge (3d5310940) * Merge (969dc7c22) 2013-12-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e5ca57b31) 2013-12-23 Michael Zanetti * clean up fullscreen notifications code. (f9aeabeaa) 2013-12-23 Nick Dedekind * Standardise indicator item opacity animation (2b9e8a2a6) * tweaked offset values (231d50fac) 2013-12-22 Albert Astals * Do not assert if the item we are removing was not created yet (because e.g. it's not in the viewport). (a4d04ad1d) 2013-12-21 Bill Filler * fix for lp:1259294, turn off auto capitalization for wifi password field. Fixes: https://bugs.launchpad.net/bugs/1259294. (0def2e874) 2013-12-21 Michał Sawicz * Add missing copyright. (03ec5180a) 2013-12-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (5c33e38be) 2013-12-20 Albert Astals * Abstract class for Journals (88916dd11) 2013-12-20 Michal Hruby * Tiny fixes (da685df33) * Cherrypick the unity-scope-tool (ab63f8e65) 2013-12-20 Michael Terry * Merge from trunk (1274c6610) 2013-12-20 Automatic PS uploader * Releasing 7.84+14.04.20131220-0ubuntu1 (revision 603 from lp:unity8). (58c9a3c9b) 2013-12-20 Michael Zanetti * more fixes and cleanup (05e451d24) 2013-12-20 Nick Dedekind * Merged with trunk (8ff19dd75) 2013-12-20 Michael Zanetti * merge trunk (978911821) 2013-12-20 Albert Astals * Merge (14a8afc94) * syntax (65194a365) 2013-12-19 Michael Terry * Use pkill rather than killall, since pkill is installed by default (2a3d6b4c1) 2013-12-20 Automatic PS uploader * Releasing 7.84+14.04.20131220-0ubuntu1, based on r603 (94909907a) 2013-12-19 Daniel d'Andrada * Update CODING with instructions on how to run tests. (51ec53ab1) 2013-12-19 Allan LeSage * Merged trunk. (928655fe9) 2013-12-19 Albert Astals * Merge (7c80d8fcd) * HorizontalJournal "finished" (0a4b90bb7) 2013-12-19 Michal Hruby * Merge trunk (7d7dbbf34) 2013-12-19 Albert Astals * improve comment (a335a4768) * Do not assert if the item we are removing was not created yet (because e.g. it's not in the viewport) (12239e001) * Add code and tests for incremental inserting/removing from the end. (7b4530703) * wording (e721c26e0) 2013-12-19 Michael Zanetti * merge trunk (b8e26ab45) 2013-12-19 Daniel d'Andrada * More info on the build directory (f3465229a) 2013-12-19 Albert Astals * Merge (5bfc6f0d9) * Merge (f923ea641) 2013-12-18 Michael Zanetti * Change the default behaviour of the Lockscreen to have a variable PIN length, requiring the user to confirm with OK. (5a3f9f421) 2013-12-18 Michał Sawicz * Clean up root project file. Introduce include/ and qml/ and move files around to be where they fit, also adapt everything else to match. (f324b9ce5) 2013-12-18 Nick Dedekind * Added alarm/event tests. Fixed TimeFormatter (c54542c7b) * merged with trunk (31656ee11) 2013-12-18 Albert Astals * Merge (9d3992bf3) 2013-12-18 Michael Zanetti * application switching animation fixed (e9630e05c) 2013-12-18 Albert Astals * Vertical journal (9d637cdae) 2013-12-18 Nick Dedekind * Added parser for strftime in TimeFormatter. Moved TimeFormatter to Utils plugin. (b997e6609) 2013-12-18 Michael Zanetti * cleanup fullscreen notifications code (498ef9517) 2013-12-18 Nick Dedekind * Fixed tests & regressions (2274059c3) 2013-12-18 Albert Astals * Merge (a2cfc4762) * Code+Test for the insert/remove at the end (c43037ee1) 2013-12-18 Nick Dedekind * Added indicator highlight drag offset (2700f8bad) 2013-12-18 Michał Sawicz * Don't put all .h in /include, only leave paths.h in there, as it's the only one that really matters there. (54449b970) 2013-12-18 Albert Astals * Test for reset (c3b324804) * Merge (d247be5d9) 2013-12-18 Nick Dedekind * Fixed MessageMenuItemFactory tests (4a45d3da2) 2013-12-17 Michał Sawicz * Use Qt.resolvedUrl() for image paths. (f6f3e9388) * Simplify getting SRCDIR in runtests.sh, we're not supporting in-source builds anyway. (44f42fc9d) 2013-12-17 Michael Zanetti * make mocks compile (aefad3f56) * fix left edge swipe again (286cadb1c) 2013-12-17 Nick Dedekind * Fixed whitespace (efc5b6035) 2013-12-17 Michael Zanetti * initial rework of the applicationswitching - require for being able to properly work on the right edge implementations (ab506bea0) 2013-12-17 Albert Astals * rename tests (494d49c09) * Add a tryVerticalJournal were you can add/remove items (4abbad46b) 2013-12-17 Michał Sawicz * Introduce a qml directory, move all QML, JS and assets, under it, adapt the rest to match. (931f76249) 2013-12-17 Albert Astals * We don't need this, remove before anyone gets confused (dda0506c7) * Don't use our verticaljournal but the one that comes from the plugin (1e42ca4c5) 2013-12-17 Michał Sawicz * Move headers into include, sources into src and adapt everything else to match. (8932f6619) 2013-12-17 Albert Astals * Register the VerticalJournal (8ffb26d14) 2013-12-17 Michał Sawicz * Move .desktop file to data/. (bb4101040) 2013-12-17 Albert Astals * Merge (db3f0609c) * go with qreal and proper min/max (f260fe79c) 2013-12-17 Christopher Lee * Make use of helpers in all tests. (LP: #1260860). Fixes: https://bugs.launchpad.net/bugs/1260860. (209d0129f) 2013-12-17 Albert Astals * relayouting means we need to calculate the height too most probably (318063446) * add a compare here for the width (d82907c07) * Rename v/hSpacing to row/colSpacing (993d3baa0) * This dangerous whitespace was about to make the program crash! (1825c13af) * Make the lines shorter (25214adf3) * Move the code to a function (e08f5cadf) * No need to calculate the nColumns here (f110847f3) 2013-12-17 Daniel d'Andrada * Add a note regarding lack of tryFoo targets for some classes (4ca4af2e7) 2013-12-17 Albert Astals * Added example (3a0ca4c77) * wops, this function did not exist :D (5e8672360) * Extract common code to a function (a6e2355b4) * Bring the { up (2b37a9c82) 2013-12-17 Christopher Lee * Make use of helpers in all tests (52d688ebb) 2013-12-16 Daniel d'Andrada * Update CODING with instructions on how to run tests (a4ed75947) 2013-12-16 Albert Astals * Fix the nColumns calculation (cdea66aac) * Remove silly ifdef (11d85b7cf) * Change name from testverticaljournal to testVerticalJournal (b6bf1bb1f) * Wrap the Q_PROPERTIES (74a9cefcf) * First version of the horizontal layout (0404034e0) 2013-12-13 Nic * Added kill time 30 to unity8 override. Added install path. Fixes: https://bugs.launchpad.net/bugs/1260379. (2f4ac8e98) * Added install path. (111f97d2a) 2013-12-13 Nick Dedekind * Updated tests for media items (b8fe2b3fd) * Added CheckableMenu (f9a875bd0) * removed instance of FramedMenuItem (e497842ee) * removed indicator menu items (8f8e0fd6c) * Added qtdeclarative5-ubuntu-settings-components dep (be276ecc0) * Updated Factories for usc (14500fc36) 2013-12-13 Albert Astals * split (7271d002a) 2013-12-13 Dimitri John Ledkov * Fix cross-compilation. (66d3c9f3f) 2013-12-13 Albert Astals * typo-- and a bit more of explanation (02b2ade43) 2013-12-13 Nic * Removed description and author. (80137a80b) 2013-12-13 Albert Astals * some docu (a34e5b36f) 2013-12-13 Nick Dedekind * added todo (c111dcc4d) * Added missing file (b0c4323ea) 2013-12-13 Michael Hall * Update CODING to reflect the fact that only 14.04 is supported currently. (6b80e0a49) 2013-12-13 Albert Astals * Forgot to rename this one (197a7c3df) 2013-12-13 Nic * Added timeout script and install path. (e1f4dbeb5) 2013-12-13 Albert Astals * arm compile++ (315606708) 2013-12-13 Nick Dedekind * merged with trunk (22208df61) * Fixed indicator page test links (4bc01d01e) 2013-12-13 Mirco Müller * Support fullscreen for special-case extended snap-decision of the pin-unlock dialog. (91ccb6c8d) 2013-12-13 Albert Astals * And another (c) header (02634124e) * Forgot some (c) headers (0fc93121d) * rename the files now that not only LVWPH is here (fce2b82df) * Vertical journal (72271436e) 2013-12-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fac11533b) 2013-12-13 Automatic PS uploader * Releasing 7.84+14.04.20131212-0ubuntu1 (revision 590 from lp:unity8). (793f1bcfc) 2013-12-13 Dimitri John Ledkov * Fix cross-compilation (5b13468ba) 2013-12-12 Automatic PS uploader * Releasing 7.84+14.04.20131212-0ubuntu1, based on r590 (4a7fa0786) 2013-12-12 Nick Dedekind * Fixed up connections for changes to model data. Fixes: https://bugs.launchpad.net/bugs/1253810. (22a15ee88) * Fixed warning for model object being assigned undefined (98e447ca8) 2013-12-12 Michał Sawicz * Reduce code duplication and clean up CMakeLists and includes in indicator tests. (a0dd24ccc) 2013-12-12 Nick Dedekind * fixed test name (88669751e) 2013-12-12 Albert Astals * rename the LVWPH plugin to DashViews in preaparation for the verticalJournal (2365cae3d) 2013-12-12 Nick Dedekind * fixed bad whitespace (addbdd304) * Added tests for page, MenuItemFactory & MessageMenuItemFactory (739f81012) * merged with parent (bbacdf74f) * added group message enable (17f97d508) * merged with parent (f67eb6943) * fixed separator menu creation (04290a028) * merged with parent (7ee50b8c5) * fixed sliderMaxIcon (3c42531e7) * merged with parent (b94da26a6) * Changed menuIndex to int (cfc2288dd) * merged with parent (2633478c3) * Fixed property bindings to menuData (56077190a) 2013-12-12 Michał Sawicz * merge trunk (8f4a9dd74) * Reduce code duplication and clean up CMakeLists and includes in indicator tests. (3f1caf50b) 2013-12-12 Nick Dedekind * Prettied up with property abstraction (406e6148b) * fixed indent (68322e626) * renamed extAttrib to extendedData (4dfc20f7a) 2013-12-12 Michał Sawicz * Retry unlocking the greeter three times. (39186f6af) 2013-12-12 Nick Dedekind * Moved all IndicatorPage/Widget code to default impls (78ee59a79) 2013-12-12 Albert Astals * A more resilient way to find the item (1729f76b6) * add a tryCompareFunction to get the button, seems it's too slow in the CI systems (a21270666) 2013-12-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9d8eac98f) 2013-12-12 Michał Sawicz * Add PyDev project files for autopilot tests. (b05ea09bf) * Fix whitespace. (79c4aecfe) * Add comment and bug ref. (f30478ef4) 2013-12-12 Albert Astals * Add some debugs, try to find out why it's crashing (d7f5fb07c) 2013-12-11 Michał Sawicz * Retry unlocking the greeter in case it failed. (e7f549115) 2013-12-11 Michael Terry * Install wrapper for greeter that cleans up init process for us (13d4d902c) 2013-12-11 Albert Astals * Make the test more reliable (93f32357f) 2013-12-11 Nick Dedekind * renamed menuItem->menuData (86d8183d2) * Merged with trunk (b984f95d7) * Fixed up MenuItem names & bindings (b6d73b677) 2013-12-11 Michal Hruby * Merged trunk (de5d9f7a3) 2013-12-11 Albert Astals * Merge (bf744631a) 2013-12-11 Nick Dedekind * Indicators close when menu items are activated. Fixes: https://bugs.launchpad.net/bugs/1238182. (4f3b20042) 2013-12-11 Albert Astals * Press the button directly, instead of guessing where it is (2892bd58c) * Fix filtering colllapsing/expanding again (d2a9bc104) * Make sure at least the tabbar index is changing... (3be5c5fe0) * Make sure the loader has loaded the thing (a0d02ee76) * rework the test a bit, let's see if CI likes it more (cb9f4fedb) * Merge (c6b0f3899) * There's lots of "delegate0", one for each grid, so specify which grid we want it from (aff040a2a) 2013-12-10 Michael Terry * Merge from trunk (b020c522e) 2013-12-10 Albert Astals * dashItemSelected -> showDashHome (7e7264acd) 2013-12-10 Nick Dedekind * Replaced indicator page dynamic menuSelected binding with Connection to listview selectedIndex property. Fixes: https://bugs.launchpad.net/bugs/1243146. (5411ba97c) 2013-12-10 Michael Hall * Update CODING to reflect the fact that only 14.04 is supported currently (1bf5d706e) 2013-12-10 Albert Astals * Does a try compare help? (7cd287d98) * Fix filtering colllapsing/expanding again (f8cf7c6b9) 2013-12-10 Nick Dedekind * merged with trunk (969e21156) 2013-12-10 Albert Astals * Merge (36fffbd1c) 2013-12-10 Nick Dedekind * Changed to fromUtf8 (ff095abcd) 2013-12-10 Albert Astals * Fix carousel test (04da464a4) 2013-12-10 Michał Sawicz * Introduce the Card and integrate with the new plugin. (b9a4eab28) * 38/2 != 18.5, 38/2 == 19 !! (a3e784d45) 2013-12-10 Albert Astals * Merge (d48a27e93) 2013-12-09 Bill Filler * set proper hint for password field so it's not autocapitalized (d988b7abf) 2013-12-09 Michał Sawicz * Do not use quarters of GUs. (5a5032d24) * No dynamic maxLineCount. (195fe0348) * Get rid of FIXME for icon vs. art (04547d9aa) 2013-12-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (98a3fda16) 2013-12-06 Mirco Müller * Correct passed height, use placeholderText. (b48b4f90f) 2013-12-06 Allan LeSage * Implemented suggested style fixes, removed assertIsNotNone. (39a420ef2) 2013-12-06 Automatic PS uploader * Releasing 7.84+14.04.20131206.1-0ubuntu1 (revision 579 from lp:unity8). (114138a28) 2013-12-06 Mirco Müller * Get rid of the boolean expandedNotification and use currentIndex instead. (54533207c) 2013-12-06 Michał Sawicz * ;-- (7bb0169d4) * Use hasOwnProperty instead of != undefined. (c7ee98759) * Fix header width. (c5fce112a) * s/avatar/mascot/ (6bd97f8ba) * Add FIXME for sourceSize. (767338a59) 2013-12-06 Michael Terry * Enable notifications in greeter (252389255) 2013-12-06 Michał Sawicz * merge trunk (bf4f7eacf) 2013-12-06 Automatic PS uploader * Releasing 7.84+14.04.20131206.1-0ubuntu1, based on r579 (aee719580) 2013-12-06 Albert Astals * Fix collapsing of categories not working and the expansion/collapsing animation (d506e7a7d) 2013-12-06 Mirco Müller * Only check for click-through for an interactive notification. (17ae0f1a7) 2013-12-06 Albert Astals * make sure the searchHistory is there (71ea3b07a) 2013-12-06 Michael Terry * Launch upstart and with it, indicator services and ofono (210aff0ca) 2013-12-06 Michael Zanetti * make the lockscreen using 4 digits again (529db5ef5) 2013-12-06 Mirco Müller * Fixed failing autopilot notification-tests to look for a Notifications object instead of a QQuickListView one, as added properties caused notificationList to be of type Notifications now. (67fc3339f) 2013-12-06 Albert Astals * Merge (44cd05643) 2013-12-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e08a6606a) 2013-12-05 Albert Astals * Add a test for the carousel showing the preview when being clicked . (3be056098) 2013-12-05 Allan LeSage * thomi-suggested gutting of test docstring; title is sufficient. (3cdb7e6c7) * Trip whitespace. (d551766f6) 2013-12-05 Michael Zanetti * check if variant is valid to avoid asserting in debug mode when the connection to AccountsService doesn't work for some reason . (2ce782b85) 2013-12-05 Albert Astals * Do not start apps or go to dash on demo (8911cefb3) 2013-12-05 Mirco Müller * Use an external proxy for the single default-state notification. (b76309f80) 2013-12-05 Albert Astals * Add a test to show the carousel shows preview when getting clicked on (5a7806789) 2013-12-05 Michał Sawicz * Return null instead of undefined from findChild and findInvisibleChild. (9a5016f01) * Integrate Card with scopes-ng and introduce CardFilterGrid.qml. (967bf5387) 2013-12-05 Michael Zanetti * Enable teasing of the phone greeter even though we have a lockscreen. (d88ed68e9) 2013-12-05 Michał Sawicz * Use unity-shipped TestCase. (4b9f0c7e2) * Add initial Card.qml and CardHeader.qml, with tests. (3bbd42891) 2013-12-05 Albert Astals * Do a trycompare instead of a wait (6c454b6b5) 2013-12-05 Michael Zanetti * also check if the variant can be converted to a QDBusArgument (97cd4d9fc) * check if variant is valid to avoid asserting in debug mode when the connection to AccountsService doesn't work for some reason (997211219) * enable teasing on the Phone even if we have a lockscreen (b25e0e9e9) 2013-12-05 Albert Astals * != -> > (a67b0cbd7) * Hacky way to test there's actually an animation going on (626d3a0b1) 2013-12-05 Mirco Müller * Merged with trunk. (f8822eb3d) 2013-12-05 Michael Zanetti * change default behavior of lockscreen to have a variable pin length (45c58c140) 2013-12-05 Albert Astals * Unbreak height animation (59a3a2053) * Fix collapsing of categories not working (7333f3d61) 2013-12-05 Timo Jyrinki * qtdeclarative5-private-dev 5.0.2-6ubuntu5 now depends directly on Qt V8 private headers. The remaining "qtdeclarative5-private-dev" dependency is enough now both when compiling against 5.0.2 or 5.2. (0b5080eed) 2013-12-05 Michael Terry * Install unity8-greeter.conf into /usr instead of /etc (7e9f51c45) * Merge from trunk (36a7f2950) 2013-12-04 Michael Terry * Add the DBus greeter API from the desktop greeter into the unity8 greeter. (5846fb5fd) * Add URLDispatcher intercepter (965723a9b) 2013-12-04 Timo Jyrinki * Revert unwanted changelog changes. (f299c0e84) * qtdeclarative5-private-dev 5.0.2-6ubuntu5 now depends directly on Qt V8 private headers (be24dc4af) 2013-12-04 Albert Astals * dashItemSelected -> showDashHome (67326dcd0) * Do not start apps or go to dash on demo mode (b30bf5d7b) 2013-12-04 Michal Hruby * Merge trunk (80ba1bd01) 2013-12-03 Allan LeSage * Explicitly import model, eliminate phantom self.model. (b1a7ba36a) * Stylistic cleanups. (996643d6f) * Re-enabled all indicator scenarios. (ae2c02fd1) * Corrected DefaultIndicatorWidget inheritance, other swiping fixes. (411ed2926) * Correction to a CustomEmulatorBase import. (bca556a36) * Implement veebers' suggested changes, need his review. (168cf1cc4) 2013-12-03 Pete Woods * Handle optional parameterized action properties. Fixes: https://bugs.launchpad.net/bugs/1256258. (9c958f51f) 2013-12-03 Albert Astals * Remove icons we don't use . (419c08289) 2013-12-03 Michael Terry * And handle proper DBus signals for our properties too (5e8e0f5ff) * Make test be a qmluitest (7b0c62ae4) * Some naming nits from review (8b4d6255c) * Use a different name for test and binary (02af4af55) * Whoops, add missing include path (480ed3757) * Add DBus interface from desktop greeter to unity8 greeter; add tests for same (6d5a5bba1) 2013-12-03 Timo Jyrinki * Depend on either Qt 5.2 or libqt5v8-5-private-dev. (2195036ea) 2013-12-03 Mirco Müller * Merge with trunk. (c4c6b3ad2) 2013-12-02 Albert Astals * Use deelistmodel's conversion method (e30aefdf5) * Position correctly the pointer of the search history box (45bb81eed) * Remove icons we don't use (7f02aec50) * use deelistmodel's conversion method (74a7555fa) * Use a dark chevron for the tabBar (3e61bb2ca) * Remove the need for the wait (a376e0584) * fix test (41b324674) 2013-12-02 Mirco Müller * Merge with trunk (cd0a47dd9) 2013-12-02 Albert Astals * merge fix (7f5c00cae) * Merge (aed4dd8d7) 2013-12-02 Timo Jyrinki * Depend on either Qt 5.2 or libqt5v8-5-private-dev (d5093ceb8) 2013-12-01 Michael Terry * Whoops and fix an old instance of SHELL_PRIVATE_LIBDIR (bcf629ec8) * Merge from trunk (a9f25c363) 2013-12-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7a330146e) 2013-11-30 Andrea Cimitan * Implement an 'interface' for Dash Renderers. (e39cdcea0) 2013-11-30 Daniel d'Andrada * Dash: disable close mode when you click outside app thumbnails (b26ce7339) 2013-11-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fdd14dc33) 2013-11-30 Michael Zanetti * unhardcode launcher's search paths for .desktop files. (9f77254bc) 2013-11-29 Allan LeSage * Reinstating identifier property, leaving undefined. (e3998e49a) 2013-11-29 Michael Zanetti * rename some parameters from desktopFile to appId as scopes are now changed to give us the appId. (3bf071078) 2013-11-29 Michał Sawicz * Don't generate build-deps .deb twice and allow overriding QML2_IMPORT_PATH in ./run. (a6483df3d) 2013-11-29 Albert Astals * Remove unused Applications/ folder . (63e575a37) 2013-11-29 Allan LeSage * Initial implementation of veebers' comments, more to do. (4c919e559) * Reverting removal of identifier property. (4c0576b32) 2013-11-29 Michal Hruby * Merge trunk (0e5d29b03) * Ensure DashContent's ListView's currentItem is set if the model is not empty. (2297b8bae) 2013-11-29 Pete Woods * Fix whitespace (5201c19be) 2013-11-29 Michael Zanetti * Added music preview. (25523bd6d) 2013-11-29 Michal Hruby * Bump the import statements to use Unity 0.2 (5ddbf5703) 2013-11-29 Daniel d'Andrada * Add a Q_ASSERT to state that we really don't expect it to be null (a3341511c) 2013-11-29 Michael Zanetti * unhardcode launcherbackend's search paths for .dekstop files (552d304a7) * revert change in launcherbackend as it's not related (87f70c993) * rename some parameters from desktopFile to appId as scopes are now changed to give us the appId (976d829e5) 2013-11-29 Daniel d'Andrada * Put canEnableTerminationMode stuff back (91af41f41) 2013-11-29 Albert Astals * Make applications really be gone (9ee0777e0) 2013-11-28 Automatic PS uploader * Releasing 7.84+14.04.20131128.2-0ubuntu1 (revision 556 from lp:unity8). (8e6ce6553) * Releasing 7.84+14.04.20131128.2-0ubuntu1, based on r556 (df88e7222) 2013-11-28 Michael Zanetti * merged lp:~saviq/unity8/tweak-run-scripts (99f3f0e5c) 2013-11-28 Michał Sawicz * Oh yeah, and export it. (51604c510) * Source /etc/environment in the run script to work around missing import path. (c2ef8909a) 2013-11-28 Mirco Müller * Merge with trunk (bcebd0282) 2013-11-28 Michał Sawicz * Expect stop in upstart job and raise in case of surfaceflinger. Fixes: https://bugs.launchpad.net/bugs/1239876. (5073f26b8) 2013-11-28 Albert Astals * Remove unused Applications/ folder (0d83f90d8) 2013-11-28 Michał Sawicz * Depends:, not Build-depends: needs libunity-mir1 >= 0.2 (36fa9d66b) 2013-11-28 Michal Hruby * Add one more test (4aa8de8e0) * Act on review comments (f10d865da) 2013-11-27 Allan LeSage * Add autopilot tests to assert indicator page title matches widget. (29047e480) * Saviq-recommended removal of superfluous assign-undefined-to-string. (17b635086) 2013-11-27 Michal Hruby * Ensure currentItem is set if the model is not empty (39350c9a8) 2013-11-27 Mirco Müller * Don't use an extra hint to trigger the fullscreen-ing of the pin-pad notification... make it implicit. (7436a9304) 2013-11-27 Albert Astals * booo (a1d63b7cb) 2013-11-27 Michał Sawicz * Delete stale sockets. (9aec39e96) 2013-11-27 Pete Woods * Gracefully handle optional parameters in the slider data (7398d95ba) 2013-11-27 Michał Sawicz * Drop now-unnecessary default path. (53b1f33fd) 2013-11-27 Albert Astals * The new tabbar code mandates a get function to exist so that it can check roles that it needs are there, provide one (0290ded8a) 2013-11-27 Andrea Cimitan * Merged trunk (d5c06e29b) 2013-11-27 Michał Sawicz * merge trunk (2bef734ac) * Support overriding QML2_IMPORT_PATH in run script. (e6ec0cb28) * merge trunk (b10721bb6) 2013-11-27 Andrea Cimitan * Removed unused file (c8ab82fe8) 2013-11-27 Michael Zanetti * merge trunk (6285a747e) 2013-11-27 Albert Astals * Merge (262fb79cf) * Fix the last failing test (1540f4ce6) 2013-11-27 Allan LeSage * Remove a duplicate swipe. (976dccfc4) 2013-11-26 Allan LeSage * Correct a super invocation for IndicatorTestCase, switch to helpers, pep8 fixes. (9f9641dcb) * Merged trunk, resolving conflict in tests/autopilot/unity8/shell/emulators/main_window.py. (9b06d1675) * SkipIf the setUp for Desktop instead of test itself. (a3474adaa) 2013-11-26 Albert Astals * No need to adjust Y on index change if there's just one row (21cec270c) 2013-11-26 Daniel d'Andrada * Remove dead code from Utils plugin (4d4c90e80) 2013-11-26 Mirco Müller * Merged with trunk and fixed conflicts. (8229c285e) 2013-11-26 Michał Sawicz * Use plugindir from unity-shell-api.pc. (a886c6b84) * Wait for DashHome to be available in tst_Shell. Fixes: https://bugs.launchpad.net/bugs/1254898. (807dcec2d) * Wait for dashHome to be available, too. (047e16240) 2013-11-26 Albert Astals * real thing in here too (057614a23) 2013-11-25 Michał Sawicz * Bring back json defs. (11ff4cc04) * Drop obsolete build deps. (23d0b8c8a) * Use plugindir from unity-shell-api.pc. (8ed5041f5) 2013-11-25 Albert Astals * no rectangle :D (aa1a6b92c) * Fix genericscopeview test (c6881fbbf) 2013-11-25 Michał Sawicz * Fix whitespace++. (5df12c2f6) 2013-11-25 Albert Astals * Fix merge (7f72b53bd) 2013-11-25 Michael Zanetti * only show time and progress bar when the length is actually set (7a468ba77) 2013-11-25 Albert Astals * Fix merge (44319ca8e) 2013-11-25 Michael Zanetti * merge with trunk (moves changes in scope to lp:unity-scopes-shell) (a072b35bb) 2013-11-25 Michał Sawicz * Wait for unity8 to terminate, kill if needed. (74fddf848) 2013-11-25 Albert Astals * Merge (f4e17640a) 2013-11-25 Michał Sawicz * SIGTERM, don't SIGKILL. (79a23b2ec) 2013-11-25 Albert Astals * New tabbar from sdk (8189f0a7e) 2013-11-25 Michał Sawicz * Fix whitespace. (3d7074116) 2013-11-24 Michael Terry * Add back accidentally dropped InputFilterArea in Shell.qml (4287065ad) 2013-11-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fcb9f53c5) 2013-11-23 Michael Terry * Merge from trunk (bdc0f7657) 2013-11-22 Daniel d'Andrada * Remove dead code from Utils plugin (03b2b1b6e) * Refactor Ubuntu.Gesture tests to share common logic (36f751dab) 2013-11-22 Mirco Müller * Avoid hard-coded dimensions. (1c4ab8187) 2013-11-22 Andrea Cimitan * Merged trunk and fixed conflicts (e7ad7f60c) 2013-11-22 Daniel d'Andrada * Dash: disable app termination mode on click outside thumbnails (39095c197) * Some string-related improvements (2cef79a41) 2013-11-22 Michal Hruby * Remove code that's now part of lp:unity-scopes-shell. (2be9b5662) 2013-11-22 Mirco Müller * One way to make the pinpad flash to the bottom-edge. (368c7df65) 2013-11-22 Daniel d'Andrada * More GestureTest and tst_DirectionalDragArea refactoring (1bd33d83d) 2013-11-22 Michael Zanetti * drop percentage calculation and use progress instead (853615a75) 2013-11-22 Michał Sawicz * Bump libunity-api dependency. (11848a2a5) 2013-11-22 Daniel d'Andrada * Refactor Ubuntu.Gesture tests to share common logic (6a3ca33a2) 2013-11-22 Michał Sawicz * Add unity-plugin-scopes to build scripts. (28be4be67) 2013-11-21 Michael Terry * Add Replaces/Breaks lines for plugins that have moved to new package (134beb846) 2013-11-21 Mirco Müller * Fixes bug #1200569. Fixes: https://bugs.launchpad.net/bugs/1200569. (d7a2fd9c0) 2013-11-21 Michal Hruby * Merge trunk (31c9689b2) 2013-11-21 Lars Uebernickel * Allow setting different indicator positions for different profiles. (9b2a564e5) 2013-11-21 Michael Zanetti * drop all references to LighDM from the Lockscreen (9802b8195) 2013-11-21 Albert Astals * Don't do stuff if our parent context is gone (c15bc467b) 2013-11-21 Mirco Müller * Get rid of skipBackground flag... use background again... make pinpad flush to the screen-edges... bottom-edge still to be done (3ee3c50f6) 2013-11-21 Albert Astals * Add a more checks to see if we fidn what's wrong (1066315bc) 2013-11-21 Nicolas d'Offay * Search history is now persistent across all scopes and remains in QML. Fixes: https://bugs.launchpad.net/bugs/1226221. (16cade2da) 2013-11-21 Omer Akram * make the non working code in the screen unlocker helper work. (53781ffa2) 2013-11-21 Albert Astals * Try to make this more reliable on slow machines (12e5d0cf8) 2013-11-21 Andrea Cimitan * Test with carousel (cfd256a0c) * More work... (3be26893b) 2013-11-21 Albert Astals * Don't do stuff if our parent is gone (81eda2b30) 2013-11-21 Michael Zanetti * merge trunk (91c5d7fab) 2013-11-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (512af88f7) 2013-11-20 Albert Astals * Do not include the QtQml megaheader (e0490d6f9) 2013-11-20 Michael Terry * Tell indicators whether we're in greeter or phone mode according to a compile-time define (55298669e) * Merge from trunk (3934179f9) 2013-11-20 Omer Akram * bring back fix (cec0c9c22) * merge trunk (5bb28643f) * revert (a3defa23a) 2013-11-20 Mirco Müller * Only use one Image-item for the shaped-icon feature, improved shaped-icon visibility-tests. (a520b9e98) * Merged with trunk again. (d106d175d) 2013-11-20 Nick Dedekind * merged with trunk. bump (c2ea39775) * merged with trunk. bump (a1389c0a7) 2013-11-20 Christopher Lee * Unity8 tests now make use of the helper functions (added in the pre-req branch) so that the helper functions are tested as part of daily business. (03c4f5f88) 2013-11-20 Daniel d'Andrada * Add right-edge drag hinting to Greeter (a60fcd212) 2013-11-20 Albert Astals * Remove unused Time.js and its test . (f0e05ce7a) * Fix header getting lost as per bug 1245824. Fixes: https://bugs.launchpad.net/bugs/1245824. (b84e4df0e) 2013-11-20 Andrea Cimitan * First approach to refactor the renderers. Two bugs: indicator triangle does not move with preview open, carousel preview does not close correctly (ecef8359f) 2013-11-19 Michael Zanetti * small launcher tweaks (799a299af) 2013-11-20 Christopher Lee * Fix issues raised in MR; removed un-needed function, fixed docstring, fix typo for universal_newlines (69c36ae59) * Fix typo in args string (3252018dd) * Merge Trunk (dab7f3e76) 2013-11-19 Albert Astals * Do not include the QtQml megaheader (75ba6a4ed) 2013-11-19 Nicolas d'Offay * Merged trunk. (f35cd953c) 2013-11-19 Michael Zanetti * fix album artwork containing / in the name. Fixes: https://bugs.launchpad.net/bugs/1237829. (024b6c71c) * fix preview background positioning (e0ae96b38) 2013-11-19 Albert Astals * Remove unused Time.js and its test (f8364bcf1) * Merge unity8 (a6564ae3c) 2013-11-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f67edecad) 2013-11-19 Albert Astals * Unify ScopeView and GenericScopeView . (a5682baa5) * Kill unused ApplicationsFilterGrid.qml . (7ef50f74a) 2013-11-19 Nick Dedekind * Fixed a race condition causing search history popup to show up when it shouldn't. Fixes: https://bugs.launchpad.net/bugs/1249369. (677390ce6) 2013-11-19 Albert Astals * Remove unused AppInfo and VideoInfo files . (cf5942bd8) 2013-11-18 Nick Dedekind * Indicator re-select by dragging from top when fully opened. Fixes: https://bugs.launchpad.net/bugs/1213164. (f557b4e16) 2013-11-18 Michal Hruby * Act on review comments (77bc48632) 2013-11-18 Michael Zanetti * merge trunk (14c997889) 2013-11-18 Daniel d'Andrada * Add right-edge drag hinting to Greeter (6cae4f4ae) 2013-11-18 Michał Sawicz * Add PyDev project files for autopilot tests. (af71f300f) * Depend on newer unity-mir for SIGSTOP support. (ed7f7da30) * Add upstart integration tests. (e246ab587) 2013-11-18 Michael Zanetti * fix launcher wording for pinning actions. Fixes: https://bugs.launchpad.net/bugs/1240891. (95427df53) 2013-11-18 Michał Sawicz * merge trunk (9a01f13a3) 2013-11-18 Michael Zanetti * add FIXME comment linking the bug for Button + transparent (5888cd130) 2013-11-18 Albert Astals * merge lp:unity8 (cd1f0fd59) * LVWPH: Fix header going bad when setContentHeight ends up moving the viewport (d4653996d) * Dash renderer signals: No need to pass the model up and down (aec7f637f) 2013-11-18 Michal Hruby * Move the BottomBar* DBus communicator to the Utils plugin. (b5757e7eb) 2013-11-17 Michael Terry * Explicitly set MIR_SOCKET for other upstart jobs, rather than relying on the default socket, since that won't work once we move to a nested Mir. (3d42da9f9) 2013-11-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (08d013566) 2013-11-15 Michael Zanetti * create a binding to ListView.isCurrentItem in onLoaded (adb71df5b) * use a button and make contents transparent (ede29e3e7) * use an AbstractButton instead of an Item and a MouseArea (dd6b06307) * revert rev 505 as ListView.isCurrentItem doesn't work indeed in this case (65e27d3d0) 2013-11-15 Mirco Müller * First working part of state-changes for visually queued snap-decisions. (7c2e9683a) 2013-11-15 Michał Sawicz * Don't mk-build-deps in run_on_device as build does it later anyway. (88f920519) 2013-11-15 Albert Astals * Remove unused AppInfo and VideoInfo files (fbf656ae9) 2013-11-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (60cba983d) 2013-11-15 Christopher Lee * Cleanup logging and print output. (f7ef3ee55) 2013-11-14 Michael Terry * Save MIR_SOCKET for later use (5a1ee8830) 2013-11-14 Albert Astals * Poors man solution to the crash (9f02dd307) 2013-11-14 Michael Zanetti * improve Audio mock, drop testfiles (b7306c7fe) * update test to new api (76547e712) * mock QtMultimedia Audio element (d7359667b) * remove ignoreUnknownSignals again (8bb0e3f9a) * drop unneeded stuff from test (60b2e4935) * don't run testlistviewwithpageheaderqml with "test" target (14c3ed21c) * replace sectionHeaderHeight context property with stickyHeaderHeight listview property (1087cbad6) 2013-11-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0252f4837) 2013-11-14 Christopher Lee * Merge Trunk (01fff82dc) * Change check for str/basestring (8811130ce) 2013-11-13 Michael Terry * Only set variables if in nested mode (8a91f142f) 2013-11-14 Christopher Lee * Fix use of empty lists and add better docstrings. (65366855b) * Merge Trunk (f4d3ff03a) 2013-11-13 Michael Terry * Move env setting into a pre-start stanza (8c54292da) * use --global for set env and exec for unity8 (e5c716213) 2013-11-13 Michael Zanetti * add dep to qtmultimedia (559945b88) * remove bad newline (5770d4df3) * use anchors instead of width (07ac1d56b) * improve determination of playing item (7356cfa78) * cosmethical changes (6830b5438) * use console.warn instead of print for warning message (3541a2d8e) * use ListView.isCurrentItem instead of our own binding (89b8ca4de) * export sectionHeaderHeight from LVWPH instead of hardcoding the size (aa4f77180) * add missing artwork (2048ac15d) * fix preview background positioning (86ff26f58) 2013-11-13 Michal Hruby * Update deps, bump version (f7c36b158) 2013-11-12 Michael Terry * Point other upstart jobs at our Mir socket explicitly, instead of explicitly (9b59de048) 2013-11-12 Michal Hruby * Remove scopes plugin from the tree, use the dependency instead (72bf53b0f) 2013-11-12 Michael Zanetti * typo (9b0a2e309) * fix typo in tests (33f513b27) * improve testing (6a80c0d82) * drop whitespace (299deb9ba) * add a comment why unsetting the uri (2feedbe8a) * only instantiate one Audio element per preview. (040c3627f) * merge trunk (569531703) * adjust tests (c7725262f) * merge trunk (bbb7ed040) * add tests (bc0a41036) 2013-11-12 Omer Akram * unlocked: make the non working code work (cbbcfdddb) 2013-11-12 Michal Hruby * Move BottomBarVisibilityThing to Utils plugin (24ea541d8) 2013-11-12 Michael Zanetti * remove duplicate newline at EOF (8dec5c7fc) * fix issues from reviews, finetune progress bar design (3ef6e9846) 2013-11-12 Christopher Lee * remove overzealous type setting (03a5787a7) 2013-11-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b097fabc9) 2013-11-11 Mirco Müller * Added copyright-comment header. (6a63f6811) 2013-11-11 Albert Astals * No need to pass the model up and down (28d3c57b2) 2013-11-11 Nick Dedekind * Added popoverShouldClose. Only set popoverShouldOpen/Close=true during state change. (e0d193f3c) 2013-11-11 Nicolas d'Offay * Added FIXME to alias in DashApps. (f6c8e2576) 2013-11-11 Albert Astals * Fix tests (694640fd9) * Merge lp:unity8 (f46936208) 2013-11-11 Christopher Lee * Simple fixes to make compatible with py3 (and stay compatible with py2.7) (754b6d1f9) * Introduce tox (132751266) 2013-11-08 Andrea Cimitan * Removes Math.js and its usage. Use SDK ones. (c3793e5ab) 2013-11-08 Nicolas d'Offay * Pushed up the z order of the clock in GreeterContent. Fixes: https://bugs.launchpad.net/bugs/1233146. (8e1a8063f) 2013-11-08 Albert Astals * Make Dash::test_show_scope_on_load more robust (342a5515f) * Skip restMaximizeVisibleAreaMoveUpAndShowHeader, it's causing too many failed runs (a291b1163) 2013-11-08 Nick Dedekind * Added test for popup (ea55c7454) * Fixed search popup appearing when switching scopes after a search (9290a031e) 2013-11-08 Albert Astals * Test that the dash hswipe is disabled while the inner stuff is moving . (a99723b83) 2013-11-08 Mirco Müller * Merged with trunk again. (87b85eb96) * Merge with trunk and resolve conflicts. (dec32efc7) 2013-11-08 Nick Dedekind * Round indicator widget icon/label width up to closest gu for alignment. Fixes: https://bugs.launchpad.net/bugs/1236267. (aebbd1171) 2013-11-08 Albert Astals * Kill unused ApplicationsFilterGrid.qml (3e31859d0) * Make ApplicationsFilterGrid be a GenericFilterGrid (e17c31e3b) * Skip another test, it's causing too many failed runs (40f97ff03) * print-- (302134ec2) * Unity ScopeView and GenericScopeView (955ccf3ad) 2013-11-08 Nick Dedekind * Added UnityMenuModel submenu row removal awareness in UnityMenuModelStack. (47a67e932) 2013-11-08 Nicolas d'Offay * Moved clock down render order. (48c88bf9f) 2013-11-08 Michael Terry * Make EdgeDemoOverlay test more reliable by testing for what we really care about, not an indirect indicator of it. Fixes: https://bugs.launchpad.net/bugs/1248232. (03ec1297c) 2013-11-08 Albert Astals * Make test_show_scope_on_load more robust (469fb819c) 2013-11-08 Andrea Cimitan * Merge el trunko (9c181e493) 2013-11-08 Albert Astals * Merge (7cdc91ccd) 2013-11-08 Michael Terry * Make EdgeDemoOverlay test more reliable by testing for what we really care about, not an indirect indicator of it (52b4b9380) 2013-11-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a6883d5fa) 2013-11-08 Andrea Cimitan * Dinamically load the Carousel/Filtergrid with more than 6 items. Fixes: https://bugs.launchpad.net/bugs/1226288, https://bugs.launchpad.net/bugs/1234105. (2707450d6) * Shifts wallpaper rendering for greeter lockscreen to be inline with shell. Fixes: https://bugs.launchpad.net/bugs/1231731. (defe713cb) 2013-11-08 Michael Zanetti * allow SIM PIN entry to have a variable pin length (by adding a done-button). Fixes: https://bugs.launchpad.net/bugs/1240561. (fb1d1ffde) 2013-11-07 Daniel d'Andrada * Improve DirectionalDragArea (ed260eb63) 2013-11-07 Andrea Cimitan * Switch to application scope when a dash swipe is taking place and an app is on foreground. Fixes: https://bugs.launchpad.net/bugs/1231996. (56e5cc72d) 2013-11-07 Michael Zanetti * don't add margins to RunningApplicationTile's label. Fixes: https://bugs.launchpad.net/bugs/1245482. (312df59fd) 2013-11-07 Mirco Müller * Added checkbox for toggling between echo-modes of password-entryfields in ext. snap-decisions. (196f12e9b) 2013-11-07 Gerry Boland * DragHandle: javascript argument name clashes with local variable. Yes it works, but is a little unsafe. (e232f1cf7) 2013-11-07 Albert Astals * Position list at the beginning to make sure delegate0 is on screen (75f9c2a29) 2013-11-07 Nicolas d'Offay * Fixed Z order of infographic. (bfa7a8f63) 2013-11-06 Nicolas d'Offay * Removed test. (400ec85e6) 2013-11-06 Nick Dedekind * Added test for redrag indicator. (c21f08c7e) * Fixed clock test imports (af1b6c53b) 2013-11-06 Automatic PS uploader * Releasing 7.83+14.04.20131106-0ubuntu1 (revision 500 from lp:unity8). (b74a24a62) 2013-11-06 Nicolas d'Offay * Added test for persistent search history. (a4325c344) 2013-11-06 Nick Dedekind * Merged with trunk (c619dc80c) 2013-11-06 Albert Astals * Fix time test in Qt 5.2 (d0bfd16ce) 2013-11-06 Automatic PS uploader * Releasing 7.83+14.04.20131106-0ubuntu1, based on r500 (4b5aea224) 2013-11-06 chris.gagnon * Update to autopilot 1.4. (ea5f26e70) 2013-11-05 chris.gagnon * update debian control (03e1f8464) 2013-11-05 Automatic PS uploader * Releasing 7.83+14.04.20131105.1-0ubuntu1 (revision 495 from lp:unity8). (05ac6130b) 2013-11-05 Omer Akram * test: make sure the search indicator hides when an app has focus. (97f9de860) 2013-11-05 Mirco Müller * Made "Show password"-message translatable and updated .pot file. (bc4e71fa1) 2013-11-05 Albert Astals * Better (ad557822e) * Merge (bec1ca441) * Add TabBar to the Dash header navigation (7b1a85f3c) 2013-11-05 Andrea Cimitan * merged trunk (1bff46843) 2013-11-05 Allan LeSage * Merged trunk. (176620d91) 2013-11-05 Nicolas d'Offay * Instantiated SearchHistoryModel in PageHeader test. (be8285c53) * Fresh branch of QML searchHistory. (c516c708b) 2013-11-05 Nick Dedekind * Fixed indicator slider menu item alignment to label field and icon. Fixes: https://bugs.launchpad.net/bugs/1240756. (71e8dd4a2) 2013-11-05 Andrea Cimitan * Place ShaderEffectSource of UbuntuShapeForItem under the Shape Item. Fixes: https://bugs.launchpad.net/bugs/1239317. (ed0838997) 2013-11-05 Automatic PS uploader * Releasing 7.83+14.04.20131105.1-0ubuntu1, based on r495 (8d018d172) 2013-11-05 Andrea Cimitan * Threshold to activate the left edge swipe to reveal dash is now 26 GU. Fixes: https://bugs.launchpad.net/bugs/1236286. (78a10e395) 2013-11-05 Daniel d'Andrada * Trying to make tst_Shell.initTestCase() less hacky and more robust (f22c71d81) 2013-11-05 Albert Astals * And finally the test that shows why the fix is needed (de076edf8) 2013-11-05 Daniel d'Andrada * Clean up tests. Following Albert's suggestion. (2a111a18d) 2013-11-05 Albert Astals * Better to update the minyextent often (cb4594365) * Merge lp:unity8 (5c8f2efd3) * Merge lp:unity8 (f3d9c43ce) 2013-11-04 Daniel d'Andrada * Reorder things a bit (a98318fd9) 2013-11-04 Michael Zanetti * don't trigger the greeter teasing during a movement of the greeter. (a7cab4c9a) * Implement switching between previews by swiping. Fixes: https://bugs.launchpad.net/bugs/1088572, https://bugs.launchpad.net/bugs/1220651. (0ccfea6b7) 2013-11-04 Albert Astals * Modify the test, fails more obviously (832d15eb1) 2013-11-04 Michael Zanetti * added MusicPreview (698ed616b) 2013-11-04 Albert Astals * Make it an array instead of a object/dict (aadedd4e7) 2013-11-04 Daniel d'Andrada * Fix/update qml tests (cbdd17911) 2013-11-04 Gerry Boland * DragHandle: javascript argument name clashes with local variable. Yes it works, but is a little unsafe (0f7ab28a3) 2013-11-04 Andrea Cimitan * Allow drag over bounds, but not overshoot. Fixes: https://bugs.launchpad.net/bugs/1204300. (00ef0e658) 2013-11-04 Albert Astals * Make the new test i just added pass (4bf19f0ce) * Add new test that moves up/down a bit more (62c4c24f7) * Enable the check later? (a749d40ea) * Fix header getting lost as per bug 1245824 (9ba807f3a) 2013-11-04 Michael Zanetti * merge switching-previews (3d87e5b26) 2013-11-04 Albert Astals * booo (24893f010) * Merge lp:unity8 (9c3448d09) * Merge lp:unity8 (c59371201) 2013-11-02 Albert Astals * Don't use deprecated Panel methods. (0152889e4) 2013-11-01 Albert Astals * Fix a few warnings in DashContent.qml on shutdown (7a856d9e4) 2013-11-01 Lars Uebernickel * Indicators: add TimeFormatter and use it in the messaging menu (edefcc17e) 2013-11-01 Nick Dedekind * Faster loading of indicator menus. Fixes: https://bugs.launchpad.net/bugs/1226650. (6f78d6e8d) 2013-11-01 Michael Zanetti * replace the launcher quicklist's Popover with an own quicklist implementation (b238a9d4b) 2013-11-01 Christopher Lee * Adds an easy to consume function that attempts to unlock the unity greeter. Fixes: https://bugs.launchpad.net/bugs/1240261. (9a5069c23) 2013-11-01 chris.gagnon * don't use wait_select single everywhere. (a7e3e9c25) 2013-11-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (41584d6f0) 2013-10-31 chris.gagnon * sync with update that fixes random crashes (3bc700178) 2013-11-01 Albert Astals * Make sure we have ssh started when we need it . (f47d6878b) 2013-10-31 Automatic PS uploader * Releasing 7.83+14.04.20131031-0ubuntu1 (revision 482 from lp:unity8). (4c6a4612d) * Releasing 7.83+14.04.20131031-0ubuntu1, based on r482 (802f00bbf) 2013-10-31 Michał Sawicz * Use setenv as early as possible to avoid setenv and getenv clashing in multi-threaded situations. Fixes: https://bugs.launchpad.net/bugs/1240866. (649b7dd5c) 2013-10-31 Nick Dedekind * Don't check for shown (e46cde869) * Added test for hideIndicatorMenu (728f04cca) 2013-10-31 Michael Zanetti * cleanup (0705c47b8) * add tests for switching previews (c56048979) 2013-10-31 Mirco Müller * Added checkbox for toggling between echo-modes for password-entryfields in ext. snap-decisions. (2974f21f8) 2013-10-31 Michał Sawicz * Use setenv as early as possible to avoid setenv and getenv clashing in multi-threaded situations. (fdb8af9ed) 2013-10-31 Mirco Müller * Oops... forgot to remove a commented-out line. (68719e680) * Merged with trunk. (6358d5e61) * Completed support for non-shaped icon hint, added qmltest. (68f5dac90) 2013-10-31 Michael Zanetti * enable mocked previews (65323c5d1) 2013-10-31 Albert Astals * Test that the dash hswipe is disabled while the inner stuff is moving (305cae077) 2013-10-30 Michael Terry * Merge from trunk (2b5d9df3e) * Some various cleanups and code moves (5f4597181) 2013-10-30 Allan LeSage * Remove 'model' prefix from IndicatorItem objectName. (445fc06c7) * Alphabetize indicator scenarios. (8fd011144) 2013-10-30 Andrea Cimitan * Added comment (c95cb9e4f) * Fix 1239317 (dcd1775c2) 2013-10-30 Michael Zanetti * fix album artwork containg / in the name (8f8cbc380) 2013-10-30 Mirco Müller * Use the the properties margin and fullHeight also in the qmltest. (4d8996897) 2013-10-30 Michael Zanetti * drop debug print (96f539996) 2013-10-30 Albert Astals * Fix header going bad when setContentHeight ends up moving the viewport (cc828c330) 2013-10-29 Michael Terry * Test (8884c5863) 2013-10-29 Allan LeSage * Adjust order of imports. (ef0984060) * Correct indicator-messaging to indicator-messages. (39ce3b4cb) * Skip indicators tests on Desktop profile due to lack of introspection. (49a62f41e) * Remove breaking IndicatorType import. (10edf660d) 2013-10-29 Michael Terry * Make background of shell window transparent (aa49fd300) 2013-10-29 chris.gagnon * autopilot 1.4 update (15b2b3445) 2013-10-29 Allan LeSage * Switch indicators emulator to picking new widget objectName by indicator name. (2fd9712d6) * Add proper widget objectNames. (ea18cc4bc) 2013-10-29 Nick Dedekind * Use image.status for visibility (8b04822c4) 2013-10-29 Michael Zanetti * improve comments (582a8c663) 2013-10-29 Mirco Müller * Fix bottom-margin and hiding of buttons of non-expanded snap-decisions. (3e6b250b4) 2013-10-29 Michael Zanetti * drop call to stopPreviewSpinner() when an item is activated (b296ebd36) 2013-10-29 Mirco Müller * Merged with trunk. (0a6ea4d79) * Work around spacing added by PlaceHolder item at top of ListView. (50c369b57) 2013-10-29 Automatic PS uploader * Releasing 7.83+14.04.20131028.1-0ubuntu1 (revision 480 from lp:unity8). (ea020596a) 2013-10-28 Automatic PS uploader * Releasing 7.83+14.04.20131028.1-0ubuntu1, based on r480 (8ce51ead6) * Releasing 7.83+14.04.20131028-0ubuntu1 (revision 479 from lp:unity8). (bc65375b5) 2013-10-28 Nick Dedekind * Close menus on indicator item activate (e6e131f5d) * Fixed slider alignment to label and icon. (ddb19d744) * Added qtbug link (4087c8812) * Added DefaultIndicatorWidget width test (01d442307) 2013-10-28 Andrea Cimitan * revert previous commit (f1c608bb8) 2013-10-28 Mirco Müller * Still trying to get topMargin to be flush to the panel for fullscreen notifications, but only the first ever works. (e2c7f177e) 2013-10-28 Andrea Cimitan * Use starCount as harmattan (7c8e98350) * renames... (204c9faa2) * Use single mouse area, make starCount writable (6a8c4c792) 2013-10-28 Michael Zanetti * don't add margins to RunningApplicationTile's label (8c81f183b) 2013-10-28 Andrea Cimitan * Adds interactive property to RatingStars, accepts user interaction, adds tests (41f43186d) 2013-10-28 Automatic PS uploader * Releasing 7.83+14.04.20131028-0ubuntu1, based on r479 (e333b206c) 2013-10-27 Nick Dedekind * merged with indicator-reinit (1536b003b) * Added indicator base/widget to Unity.Indicatos mock (5b3e4b94e) 2013-10-25 Michael Terry * Drop -fullscreen to greeter, it's not needed in Mir mode and -f is now used to specify a filename for the socket (0a08455f0) 2013-10-25 Andrea Cimitan * Remove Math.js, use MathUtils from SDK (Ubuntu.Components) (aad714043) * Delete tags (0a9e02f59) * Delete tags (21aad504f) * Delete tags (e3f4c109b) * Delete tags (423bd2e21) * Fix Lockscreen background and add test (3769f12eb) 2013-10-25 Omer Akram * revert siliness (2a08cb8df) * no need for cleanup (e4fef19a2) * add cleanup to kill the app before running next test, add a new test to make sure search indicator is not shown while greeter is visible. (ed02cff39) 2013-10-25 Mirco Müller * Still trying to fix top- and bottom margin issues... added skipBackground property to Lockscreen to allow better blending with the notification styling when used with the extended snap-decision. (e5db9726c) 2013-10-25 Andrea Cimitan * Test the apps scope switching (e220ccdf7) 2013-10-25 Mirco Müller * Fix set of fixes for the margins. (1322cfa7c) * Made notification-background adjust to new fullscreen-hint... margins still need to be zero'ed for the fullscreen-case. (cd8058813) 2013-10-25 Omer Akram * its sping (3c8bc14e8) * give it a bit time for app tile to vanish (ba54ecc95) * add test for search indicator visibility (3d8681f7b) 2013-10-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a8b869d5f) 2013-10-24 Allan LeSage * Just use strings to identify indicators by name. (1ddb1143d) 2013-10-24 Andrea Cimitan * Updated tests (86c42a008) 2013-10-24 Nick Dedekind * Added TODO (d5ae05ee0) * removed default override (71c20ceda) * strftimeformatter -> gdatetimeformatter (d8f3dfe60) 2013-10-23 Andrea Cimitan * Fix 1236286 (ce1162d47) * Fix 1231996 (f1682cc27) 2013-10-23 Michael Zanetti * don't trigger teasing during a movement of the greeter (df36525b5) 2013-10-23 Nick Dedekind * Updated TimeFormatter plugin (dd635561c) * Moved time formatter to utils. Added StrFTimeFormatter (8f6afefab) 2013-10-23 Daniel d'Andrada * Fix and refactor DirectionalDragArea::ActiveTouchesInfo (4bdd3ee40) * Pass SharedTimeSource by const reference instead of by value (ed2e6b144) * Add a TODO regarding s/qDebug/qCDebug (a5c2b9832) 2013-10-22 Daniel d'Andrada * Remove trailing whitespace (6a2122edd) 2013-10-22 Allan LeSage * Implement veebers' corrections. (3548c1c3f) 2013-10-22 Andrea Cimitan * Added property for backgroundTopMargin (bd18e2bd8) * Added test for greeter wallpaper, changed some names from wallpaper->background (adb89cf48) 2013-10-22 Daniel d'Andrada * Make DirectionalDragArea more robust (a943b0ae4) 2013-10-22 Michael Zanetti * style (406a7a6fb) * update pot (d9bf6996e) * fix wording for launcher pinning (16392bcc2) 2013-10-22 Nick Dedekind * re-added accidental removal of objectname binding. (2f9ea9ed4) * Fixed segfault when deleting indicator messages (2feef8d5a) 2013-10-21 Allan LeSage * Establish indicators dir, shuffle tests accordingly. (5935c3612) * Establish Indicator emulator under shell main_window emulator class. (5dd0d2e8c) * Remove indicators test-files obviated by new scenarios scheme. (f018eb153) * Temporarily set aside an extraneous import. (7e7f7c946) * Add generic indicator-getting function to main_window emulator. Add scenario-based test for existence of indicator by name. (ccd145590) * Corrected name of messaging indicator test. (21d320f25) * Minor correction to indicator-location test-class name. (02a7f361b) * Add emulators and stub tests for most indicators. (10f1878e6) 2013-10-21 Andrea Cimitan * Fixes 1204300 (e2fddcdb0) 2013-10-21 Albert Astals * Don't use deprecated property (1bade8121) 2013-10-21 Michael Zanetti * merge trunk (349587ac4) 2013-10-21 Albert Astals * start/stop maliit-server as suggested by Saviq (b840119ac) 2013-10-21 Michael Zanetti * drop all references to LighDM from the Lockscreen (bdb07c63a) * drop print from test (23800928f) 2013-10-21 Nick Dedekind * Added TODO (f4e24412c) 2013-10-21 Albert Astals * Fix a few warnings in DashContent.qml on shutdown (b1355fe36) * Merge (7fa5bfa7d) 2013-10-21 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f2920dd76) 2013-10-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c7c79d2e7) 2013-10-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0f8141c82) 2013-10-18 Michael Zanetti * hide OSK (unfocus search) when opening a preview fix issue if ScopeView.height > ScopeView.contentHeight (d5f8ac278) 2013-10-18 Albert Astals * Merge (a7b4d04a4) 2013-10-17 Andrea Cimitan * [ Loïc Minier ]; Merge ~lool/unity8/drop-setcap-conf. Drop unity8-setcap.conf as this breaks desktop installs (no boot-hook event is emitted, boot stalls); add maintscript snippet to rm_conffile on upgrades; this boot-hook is now shipped under a different name in lxc-android- config. [ Michał Sawicz ]; Ship a camera-app.desktop file and use a custom XDG_DATA_DIRS for testing. [ Ubuntu daily release ]; Automatic snapshot from revision 472 [ Diego Sarmentero ]; Disable Preview interaction until the scope responds. [ Albert Astals . Hide placeholder notification. [ Ubuntu daily release . Automatic snapshot from revision 469 [ Loïc Minier ]; Add upstart job to copy unity8 to a new tmpfs, setcap it, and bind- mount it back; this is an ugly hack to set CAP_SYS_RESOURCE until we have a root-helper for it. [ Michal Hruby ]; Enable definition of scope back references in overridden results. [ Ubuntu daily release ] * Automatic snapshot from revision 466 [ Michał Sawicz . Replace ubuntu-touch-session's unity8.conf upstart job. Revert r440 that made the dash collapse animation worse, rather than better. [ om26er@ubuntu.com ]; close the app only when the close button is tapped, not the entire thumbnail [ Nick Dedekind ]; Added missing Unity.Indicator mock objects causing qmltests to fail. Approved by: Michał Sawicz. [ Christopher Lee ]; Launch unity8 for autopilot with upstart, and bring unity8 session over from session-manager-touch. [ Pawel Stolowski ]; Temporarily disable category_order changed signal handling. [ Daniel d'Andrada ]; OSKController area shouldn't cover the indicators' bar Since ubuntu- keyboard surface area doesn't cover the indicators' bar, OSKController should follow suit. Otherwise the OSKContoller's internal InputFilterArea (and others) wouldn't perfectly overlap the graphical keyboard rendered by ubuntu-keyboard (i.e. the opaque part of ubuntu-keyboard's surface). [ Michael Zanetti . Initialize initialHeight/Width to height/width depending on scaleTo add checks for initialWidth/Height in the tests change sizes in tests to something else than the default for initialWidth/Height in order to catch failures there more easily [ Omer Akram ]; Only show search indicator while the Dash is focued.; Add 2dp left margin for music and video tiles' title. [ Nicolas d'Offay ]; Changed Infographics to use Ubuntu font. [ Ubuntu daily release ]; Automatic snapshot from revision 463 [ Michał Sawicz ]; Work around Mir not delivering input to shell after restart, if the device isn't reinitialized. [ Albert Astals ]; Remove unused DashMusic/DashVideos. Don't let the user change between scopes if the current one is moving up/down.; Fix two uninitialized variable uses reported by valgrind ==17988== Conditional jump or move depends on uninitialised value(s) ==17988== at 0x13839F3A: AccountsService::updateDemoEdges() (AccountsService.cpp:74) ==17988== by 0x13839DA5: AccountsService::setUser(QString const&) (AccountsService.cpp:45) ==17988== by 0x1383F67B: AccountsService::qt_metacall(QMetaObject::Call, int, void**) (moc_AccountsService.cpp:192) ==17988== by 0x496143D: StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*, v8::Handle) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2) ==17988== ==17988== Conditional jump or move depends on uninitialised value(s) ==17988== at 0x1383A0F6: AccountsService::updateStatsWelcomeScreen() (AccountsService.cpp:92) ==17988== by 0x13839DB1: AccountsService::setUser(QString const&) (AccountsService.cpp:47) ==17988== by 0x1383F67B: AccountsService::qt_metacall(QMetaObject::Call, int, void**) (moc_AccountsService.cpp:192) ==17988== by 0x496143D: StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*, v8::Handle) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2); Fix unitialized variable in Scope ==18457== Conditional jump or move depends on uninitialised value(s) ==18457== at 0x15AD1FD6: Scope::setActive(bool) (scope.cpp:165) ==18457== by 0x15B0023D: Scope::qt_metacall(QMetaObject::Call, int, void**) (moc_scope.cpp:478) ==18457== by 0x48B709F: QQmlPropertyPrivate::write(QObject*, QQmlPropertyData const&, QVariant const&, QQmlContextData*, QFlags) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2); Fix crash on the phone For some reason i'm getting v8 crashes without this when shuting down unity-mir [ Gerry Boland ] * Use focusRequested signal from AppManager. WM: AppManager has new signal to ask shell to request focus for app - use it to properly animate and focus the app. If app wants to be side stage, but no side stage available, override the application stage. [ Nick Dedekind ]; Only use the root action state as a unitymenumodel ActionStateParser when needed. [ Andrea Cimitan ]; Move the close app icon on top left.; The header of category list is already on screen after unlock [ Michael Zanetti ] * Make the greeter's clock update in sync with the indicators. [ Omer Akram ]; Increase dash header height to 5gu. [ Nicolas d'Offay ]; Standardised expansion speed in scopes. [ Ubuntu daily release ]; Automatic snapshot from revision 449 [ Michał Sawicz ]; Fix frequent application IDs and drop old AppsAvailableForDownload model.; Unrevert r388 now that we have fixed the infinite loop it was causing in Qt. [ Steve Langasek ]; Don't keep a long-lived connection open to upstart when we only use it for two events, one at load time and one at unload time. [ Lars Uebernickel ]; VolumeControl: use 'volume' instead of 'scroll' action The volume action doesn't show a notification. [ Michael Terry ]; Disable DragHandle on right side of screen while the greeter is animating [ Marcus Tomlinson ]; Added missing "enabled" property to "progressMenu" component in the menu item factory. [ Michael Zanetti ]; Add scaleTo: "fit" mode support to LazyImage [ Andrea Cimitan ]; Add music and video renderers; Use shell.edgeSize for BottomBar's EdgeDragArea, detecting gestures only when they are within the edgeSize. [ Nick Dedekind ]; Removed greeter "toHome" animation (LP#1092976) (LP: #1092976); Only show Snap Decision notification actions when available. [ Albert Astals ]; Dash: Set delegate creation range for inner itemviewss If it's above the list viewport we set it to the end of the list to precache the last items It it's below the list viewport we set it to the beginning to precache the first items Otherwise we set it to the part of the viewport in the view Approved by: Michał Sawicz. [ Ubuntu daily release ]; Automatic snapshot from revision 435 (2e87cc1bc) 2013-10-17 Michael Terry * Need to keep Qml Phone Shell name, unity-mir uses it to find shell (e23aa29c0) 2013-10-17 Andrea Cimitan * Add fixme (74e2d72d9) 2013-10-17 Michael Zanetti * add test for the new backspace button (962f4ac53) * allow variable pin length for SIM PIN lockscreen (7f29b041b) 2013-10-17 Automatic PS uploader * Releasing 7.83+13.10.20131016.2-0ubuntu1 (revision 472 from lp:unity8). (d86d62347) 2013-10-17 Nick Dedekind * Removed clock tests from build tests (247b25934) 2013-10-17 Andrea Cimitan * Fix 1195349 by counting drawbuffer on the newContentX logic of the carousel (6e1371b35) 2013-10-17 Christopher Lee * Checks both then env and upstart env for the currently set XDG_DATA_DIRS so they can be set correctly for the test. (39d6b5e40) * Merge pre-req fixes fix (1e27d665d) * Fix path mistakes (a6277a9ab) * Merge pre-req fix (4109ed959) * Update tests to use new helpers (969d9a3dc) * Grab xdg_data_dir from upstart env if needed. (cac7bcc04) * Use the helper function to restart unity (103b8e923) * Merge pre-req branch (cd12f08fe) 2013-10-16 Automatic PS uploader * Releasing 7.83+13.10.20131016.2-0ubuntu1, based on r472 (0d5d6cbe2) 2013-10-17 Loïc Minier * Merge lp:~ps-jenkins/unity8/latestsnapshot-7.83+13.10.20131016.1-0ubuntu. changelog update. (2ccff6a1c) * Merge ~lool/unity8/drop-setcap-conf. (1a5672eaf) * Drop unity8-setcap.conf as this breaks desktop installs (no boot-hook event is emitted, boot stalls); add maintscript snippet to rm_conffile on upgrades; this boot-hook is now shipped under a different name in lxc-android-config. (008242649) 2013-10-17 Michał Sawicz * Ship a camera-app.desktop file and use a custom XDG_DATA_DIRS for testing. (2f1d7f121) 2013-10-16 Michał Sawicz * Fix paths. (ce3c4b46f) 2013-10-16 Lars Uebernickel * Add simple test for TimeFormatter (b778dca02) * Remove utils.js: it's not used anymore (385b0aa6d) * Indicators: add TimeFormatter and use it in the messaging menu (b2fed3bb0) 2013-10-16 Automatic PS uploader * Releasing 7.83+13.10.20131016.1-0ubuntu1, based on r469 (3fd99af3f) 2013-10-16 Didier Roche * Releasing 7.83+13.10.20131016-0ubuntu1 (revision 466 from lp:unity8) (4bf4f0436) 2013-10-16 Andrea Cimitan * Fix lp 1195349 (7e3c79fc9) 2013-10-16 Nick Dedekind * Better handling of rootMenuType for synchronous creation of menu items. (f1113a708) 2013-10-16 Diego Sarmentero * Disable Preview interaction until the scope responds. (0294f7593) * changing visible for enabled (9af639d42) * removing rectangle, just leaving mouse area (71269bbe4) 2013-10-16 Albert Astals * Hide placeholder notification. (33eb6bef1) 2013-10-16 Michał Sawicz * Install the data mocks... (0769df120) 2013-10-16 Albert Astals * autopilot fixes ++ (601103ce7) 2013-10-16 Andrea Cimitan * Fixes lp: 1231731 (40296e937) 2013-10-16 Nick Dedekind * merged with trunk (f058ddf1c) 2013-10-16 Michael Zanetti * fix inversion (1f8b178e1) * replace the QuickList's Popover with an own implementation (c51540fad) 2013-10-16 Albert Astals * Fix autopilot tests (58701ab8c) 2013-10-16 Michał Sawicz * Use XDG_DATA_DIRS instead. (b116735e1) * Ship a camera-app.desktop file and use a custom XDG_DATA_HOME for testing. (d8a5acde1) 2013-10-16 Albert Astals * Don't show PlaceHolder notifications for now (ef47ba7f8) 2013-10-16 Michael Zanetti * small launcher tweaks (39b3b3511) 2013-10-16 Automatic PS uploader * Releasing 7.83+13.10.20131016-0ubuntu1, based on r466 (e2993c81e) * Releasing 7.83+13.10.20131015.4-0ubuntu1 (revision 463 from lp:unity8). (ba32a88af) 2013-10-16 Nick Dedekind * Align icons/labels to gu. Preserve icon aspect. (994a5f87f) 2013-10-16 Michał Sawicz * comment++ (b5b8ab4b1) 2013-10-16 Christopher Lee * Minor docs change. (425790abf) * Move around again. (bb726e273) * Move to a better place (ba18468ff) * MR comment changes, docstrings, order of imports and copyright header. (c7b13539b) * Added function that restarts unity with testability (6f1473a5f) * attach bug fixes (11750e731) * Add initial emulator that will unlock the greeter (if unity has been started with testability) (f05fbd712) 2013-10-16 Michal Hruby * Enable definition of scope back references in overridden results. (a2059d14e) 2013-10-15 Michael Terry * Merge from trunk (e7bca7e6e) 2013-10-15 Michal Hruby * Add a tiny comment (092148e3f) 2013-10-15 Michał Sawicz * Only raise if $UPSTART_JOB == "unity8". (354ff2636) * comment++ (12581d5f5) * Expect stop in upstart job and raise in case of surfaceflinger. (26602ce1f) 2013-10-15 Loïc Minier * Add upstart job to copy unity8 to a new tmpfs, setcap it, and bind-mount it back; this is an ugly hack to set CAP_SYS_RESOURCE until we have a root-helper for it. (b6b64c930) * Add upstart job to copy unity8 to a new tmpfs, setcap it, and bind-mount it back; this is an ugly hack to set CAP_SYS_RESOURCE until we have a root-helper for it. (9847e0372) 2013-10-15 Michal Hruby * Add unit tests (0e92f125b) 2013-10-15 Michael Zanetti * ooops. bring back the loading of the new preview (71b66819f) 2013-10-15 Nick Dedekind * merged with trunk (c87a39edc) 2013-10-15 Michael Zanetti * merge (8192a5eca) * warnings-- (8533b0d88) * use SmoothedAnimation to move the arrow (b9b3c3ea3) * cleanup (bfd939cea) * fix positioning of context (fe249d384) * merge trunk (6b3d47bad) 2013-10-15 Michal Hruby * Move the parse method to variantutils (24e9e1400) 2013-10-15 Automatic PS uploader * Releasing 7.83+13.10.20131015.4-0ubuntu1, based on r463 (725c78272) 2013-10-15 Michał Sawicz * Revert r440 that made the dash collapse animation worse, rather than better. (b47688912) * newline-- (336b8a9d3) * Revert r440 that made the collapsing transition worse instead of better... (08d0d57ff) * Replace ubuntu-touch-session's unity8.conf upstart job. (f24b0a320) * Replace ubuntu-touch-session's unity8.conf upstart job. (d26ae5486) 2013-10-15 Christopher Lee * Launch unity8 for autopilot with upstart, and bring unity8 session over from session-manager-touch. (9d6fd4b02) 2013-10-15 Michał Sawicz * merge trunk (3bb2d9938) * 0 !== undefined. (55aeee2af) 2013-10-14 Omer Akram * Add 2dp left margin for music and video tiles' title. (5b1ac22fd) 2013-10-14 Michael Zanetti * Initialize initialHeight/Width to height/width depending on scaleTo (6ed646cfa) 2013-10-14 Daniel d'Andrada * OSKController area shouldn't cover the indicators' bar (c18e7f16a) 2013-10-14 Omer Akram * Only show search indicator while the Dash is focued. (1ad306d81) 2013-10-14 Pawel Stolowski * Temporarily disable category_order changed signal handling. (a0e4f200a) 2013-10-14 Michał Sawicz * Bring back patch_environment for GRID_UNIT_PX. (dcbf6080e) * Suppress output from initctl and add logging on unity8 startup. (eb83b8780) * Do not patch environment form import and library paths - just pass them to initctl. (eeed6d56b) 2013-10-14 Omer Akram * only show the search indicator when dash is focused (db8054c95) 2013-10-14 Michal Hruby * Support metadata fields (9e524e41f) 2013-10-14 Michał Sawicz * Upstart takes care of starting / stopping maliit for us. (09cdaa477) * Suppress more stderr, move logging a bit. (6c67fd9fa) 2013-10-14 Michal Hruby * Send preview requests from overridden results to proper scopes (d1ffeba49) 2013-10-14 Daniel d'Andrada * OSKController area shouldn't cover the indicators' bar (0fd5f3cb2) 2013-10-14 om26er@ubuntu.com * close the app only when the close button is tapped, not the entire thumbnail (19d902749) 2013-10-14 Michael Zanetti * init initialHeight/Width to height/width depending on scaleTo (5364782d1) 2013-10-14 Pawel Stolowski * Added fixme. (461c453a9) 2013-10-14 Nick Dedekind * Added copywrite (8b4b70788) 2013-10-14 Omer Akram * rename existing test to represent what its really about (38746e019) * remove empty line (2d0d552f8) * add a test to make sure tapping on the closeIcon closes the app (47f315e42) * merge 1238837 branch (1c0e98653) 2013-10-14 Michael Zanetti * merge trunk (6c7b4d5da) * only darken the background (3fddeacc6) * merge trunk (eac5106dc) 2013-10-14 Omer Akram * remove old cruft (b38f4d92b) * its not good to use gu in float value. rather use dp (4af26b477) 2013-10-14 Michał Sawicz * Ugh. (5bbc913c2) 2013-10-14 Omer Akram * remove crap (456abf2d0) 2013-10-14 Pawel Stolowski * Disable category_order changed signal. (25aec66e5) 2013-10-14 Omer Akram * add a 0.2gu left margin for the Music and Video tile text (5b032137d) 2013-10-14 Nick Dedekind * fix tests (38b113ff7) 2013-10-14 Omer Akram * merge (b66fdc247) 2013-10-14 Michał Sawicz * Add FIXMEs. (912092d85) * Fix exec. (a9b20e4d7) * Suppress stderr. (ef3b39898) * No need to restart maliit, the upstart job will handle. (284f38f66) * Use readable options and _patch_environment for QT_LOAD_TESTABILITY, too. (d86f63719) 2013-10-14 Nick Dedekind * merged with trunk (9e5c11460) 2013-10-14 Michał Sawicz * Add an error message on failed initctl status unity8. (2f1ab95b3) * Move unity8.conf to data/ and simplify it. (8a28b59cd) 2013-10-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (daa342a00) 2013-10-14 Christopher Lee * Separation of concerns, leave environment setup to those that own the environment. (req. that unity8 is stopped before running tests.) (8adfc696f) * Commit on workaround code and pep8 cleanup. (9de554ced) * Merge trunk, resolve conflict (f0a7486c1) * Make sure maliit-server doesn't break 'stopping unity8' and ensure it's running for 'starting unity8' (441f0b0d2) * Patch GRID_UNIT_PX as it's used elsewhere too. (0acd7aa6f) * Update packaging. (861bfbaa9) * Passing arguments to unity8 (8fe81417e) * Add unity8.conf to lp:unity8 (0ec58157b) 2013-10-13 Omer Akram * fix the test hopefully. we still need a test to verify that close button really closes the app (37fc0546f) 2013-10-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (653e8dc5b) 2013-10-12 Omer Akram * fix things (870059630) 2013-10-12 PS Jenkins bot * Releasing 7.82+13.10.20131011.2-0ubuntu1 (revision 449 from lp:unity8) (78f1f587f) 2013-10-11 Nick Dedekind * Added missing Unity.Indicator mock objects causing qmltests to fail. (c36c66545) 2013-10-11 Lars Uebernickel * Indicator tests: adjust for the menuObjectPaths test (7d4daf7fe) * Panel/Indicators/client/IndicatorsTree.qml: stop using menuObjectPaths (48886e9fb) 2013-10-12 Omer Akram * simplify (61b18b7fe) 2013-10-11 Nicolas d'Offay * Changed Infographics to use Ubuntu font. (c5b339239) 2013-10-12 Omer Akram * fix app activation (7fa60b5f5) 2013-10-11 Nick Dedekind * Added missing Unity.Indicator mock objects (41302a41d) 2013-10-11 Omer Akram * only close the app when the close button is tapped, not the entire thumbnail (3fd49a629) 2013-10-11 Automatic PS uploader * Releasing 7.82+13.10.20131011.2-0ubuntu1, based on r449 (6f63cd5f2) 2013-10-11 Robert Bruce Park * Releasing 7.82+13.10.20131011.1-0ubuntu1 (revision 435 from lp:unity8) (76c06df60) 2013-10-11 Nick Dedekind * Fixed QMenuModel mocking (8301d36dc) * merged with trunk (025c8a6be) 2013-10-11 Michael Zanetti * OpenEffect only live when not expanding animation in progress (093c5466d) 2013-10-11 Nicolas d'Offay * Infographics now use Label to use Ubuntu font. (e74bed9ca) 2013-10-11 Albert Astals * Fix crash on the phone (d802be890) 2013-10-11 Nick Dedekind * Only use the root action state as a unitymenumodel ActionStateParser when needed. (879cf9e6f) 2013-10-11 Albert Astals * Fix crash on the phone (fd41a7d49) 2013-10-11 Nick Dedekind * fixed style (501fa53e3) 2013-10-11 Gerry Boland * Use focusRequested signal from AppManager. (273c20f03) 2013-10-11 Andrea Cimitan * The header of category list is already on screen after unlock (1b70d066b) 2013-10-11 Nick Dedekind * Only use the parser when needed. (bd301e777) 2013-10-11 Michael Zanetti * fix content/effect movement calculation when switching row (04a625feb) * Make the greeter's clock update in sync with the indicators. (015502224) 2013-10-11 Nick Dedekind * merged with trunk (456368d8a) * Added test for rootactionstate (79cb062c3) * Added catch for model destroy (c0738cff4) 2013-10-11 Omer Akram * Increase dash header height to 5gu. (5170bdf9b) 2013-10-11 Diego Sarmentero * [ David Callé ]; Small logic change in preview descriptions line breaks. Multiple new lines are now replaced by multiple br tags. [ Nick Dedekind ]; Use indicator identifier for indicators-client list item label.; Make sure overflow indicators are hidden and not the search label. [ Mirco Müller ]; Tweaks to notifications to improve spec-compliance. - updated notifications-qmltest to reflect the use of a variant-map for the hints - made text-fields as heigh as buttons - made the summary align horizontally to the icon - updated button-height and bubble- background. [ Pawel Stolowski ]; Handle category_order_changes signal from scopes (used in Home only) and reorder categories accordingly. Implementation of albumart image provider for audio content. [ Michael Terry ]; Hide the greeter when an app is focused, fixing snap decisions launching an app in the greeter (like receiving a call). [ Michael Zanetti . Launcher - remove support for pinning items in the backend After the latest design changes, recent apps is everything that is contained in the ApplicationManager. So no need for storing anything else than pinned apps in the config. [ Michał Sawicz ]; Remove the mir socket before starting unity8 during autopilot tests. [ Ubuntu daily release ]; Automatic snapshot from revision 420 [ Michal Hruby ]; Add Scope::isActive property and corresponding tests. (LP: #1230352) [ Daniel d'Andrada . Move OSKController to the front as it will now also block input meant to the OSK That's in the unity-mir implementation. The SurfaceFlinger one is still an empty noop. Currently, when the OSK is up, both shell and OSK get user input, thus we need the OSKController to shield our shell components from them. (LP: #1236773) [ Michał Sawicz ]; Add Scope::isActive property and corresponding tests. (LP: #1230352); Force focus back on shell in case it loses it for some reason. [ Ubuntu daily release . Automatic snapshot from revision 409 [ Michał Sawicz . update previews to match design. (LP: #1224555); Add an InputFilterArea in Notifications. (LP: #1233411, #1235215) [ Ying-Chun Liu ]; update previews to match design. (LP: #1224555) [ Albert Astals ]; Unrevert 376 by reverting r395 and a small fix to fix the cpu hogging issue . (LP: #1124567) [ Michael Terry ]; Add Showable.showNow() method and use it in Shell to immediately show greeter when we blank the screen rather than animating it. (LP: #1233564) [ Michael Zanetti ]; update previews to match design. (LP: #1224555) [ Diego Sarmentero ]; update previews to match design. (LP: #1224555) [ Ubuntu daily release ]; Automatic snapshot from revision 404 (5cf4e1685) 2013-10-11 Albert Astals * Fix unitialized variable in Scope (f11ec7dfa) * Fix two uninitialized variable uses reported by valgrind (61093c8be) * Fix two uninitialized variable uses reported by valgrind (affab640b) 2013-10-11 Nicolas d'Offay * Standardised expansion speed in scopes. (a166127f4) 2013-10-11 Michał Sawicz * Work around Mir not delivering input to shell after restart, if the device isn't reinitialized. (321d1b8e2) 2013-10-11 Nicolas d'Offay * Removed duration. (4718b04d6) 2013-10-11 Michael Zanetti * make the greeter's clock update in sync with indicators (4cd6ded1d) 2013-10-11 Omer Akram * increase header height to 5gu per design (bdb06dd2e) 2013-10-11 Gerry Boland * Revert comment change (d85199729) 2013-10-11 Andrea Cimitan * Show page header when greeter is shown... that way, on unlock, the header is already on screen (0e24dc6ef) 2013-10-11 Gerry Boland * Update Mock AppManager to match (8af1c4ecc) 2013-10-11 Andrea Cimitan * Move the close app icon on top left. (1aee86fb9) 2013-10-11 Gerry Boland * Better solution is to override starting application's stage, if it wants to be sidestage and there is no sidestage (e98e92d5b) 2013-10-11 Diego Sarmentero * removing debug prints (e696c90d4) 2013-10-11 Omer Akram * merge (6da3b2512) 2013-10-11 Albert Astals * Don't let the user change between scopes if the current one is moving up/down. (d25c015df) 2013-10-11 Gerry Boland * Disable stage checking if sidestage not being used (06a38329a) * WM: AppManager has new signal to ask shell to request focus for app - use it to properly animate and focus the app (80a45c786) 2013-10-11 Albert Astals * Remove unused DashMusic/DashVideos. (bfec158c3) * Remove unused DashMusic/DashVideos (648937d47) * Don't let us change between scopes if the current one is moving up/down (250408201) 2013-10-11 Christopher Lee * Work around Mir not delivering input to shell after restart, if the device isn't reinitialized. (63320822d) 2013-10-11 Automatic PS uploader * Releasing 7.82+13.10.20131011.1-0ubuntu1, based on r435 (9bc0bb237) 2013-10-11 Albert Astals * Dash: Set delegate creation range for inner itemviewss (cee3cecad) 2013-10-11 Nick Dedekind * merged with trunk (7c68bd9c7) 2013-10-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cd1018296) 2013-10-11 Christopher Lee * Minor pep8 fixes (9181b78c4) * Move stopping/starting original Unity to be class startup/teardown (bf08b076d) * Initial rough-cast (2ced3adc7) 2013-10-10 Steve Langasek * Don't keep a long-lived connection open to upstart when we only use it for two events, one at load time and one at unload time. (89bbd7250) 2013-10-10 Diego Sarmentero * removing testing code (a173401d4) * trigger jenkins (c706b5730) 2013-10-10 Steve Langasek * Whoops, initialize our pointer before use... (1e3264e96) 2013-10-10 Marcus Tomlinson * Added missing "enabled" property to "progressMenu" component in the menu item factory. (138c474dc) 2013-10-10 Steve Langasek * Don't keep a long-lived connection open to upstart when we only use it for two events, one at load time and one at unload time. (0b96624bc) 2013-10-10 Andrea Cimitan * Fix lp bug #1238141 (e27c6bf75) 2013-10-10 Michał Sawicz * Added missing "enabled" property to "progressMenu" component in the menu item factory. (a7b1d56c6) 2013-10-10 Andrea Cimitan * Dinamically load Carousel / Filtergrid (c43158da8) 2013-10-10 Lars Uebernickel * indicator: support per-profile positions (04462d083) * Move profile selection from IndicatorBase.qml to indicatorsmanager.cpp (ff0498a7f) 2013-10-10 Albert Astals * We don't need this (8d6c3d9b1) 2013-10-10 Diego Sarmentero * tests fixed (1db270fd3) 2013-10-10 Nick Dedekind * Only show Snap Decision notification actions when available. (8293d5613) * Removed greeter "toHome" animation (LP#1092976) (b8d332c01) 2013-10-10 Mirco Müller * Initial support for noshape-icon hint, which allows to have an icon not masked with an UbuntuShape. (c5af87346) 2013-10-10 Michael Zanetti * Add scaleTo: "fit" mode support to LazyImage (0bc56631c) 2013-10-10 Andrea Cimitan * Use shell.edgeSize for BottomBar's EdgeDragArea, detecting gestures only when they are within the edgeSize. (2eee0c19b) * gesture to show hud button must be within 2gu from edge size (1a276b0ca) * Add music and video renderers (2c4d77495) 2013-10-10 Nick Dedekind * removed console debug (815d553b3) * Removed greeter launcher home animation (805247461) 2013-10-10 Marcus Tomlinson * Added missing "enabled" property to "progressMenu" component in the menu item factory. (85cb325cb) 2013-10-10 Michał Sawicz * Unrevert r388 now that we have fixed the infinite loop it was causing in Qt. (1660c32b5) 2013-10-10 Andrea Cimitan * Deal with wrap (51c4af997) * Should work better on tablet (5b96edee1) 2013-10-10 Michał Sawicz * Fix frequent application IDs and drop old AppsAvailableForDownload model. (986fefb34) 2013-10-10 PS Jenkins bot * Releasing 7.82+13.10.20131010-0ubuntu1 (revision 420 from lp:unity8) (11941a735) 2013-10-10 Michał Sawicz * s/facebook/gmail/ (44db70ef2) 2013-10-10 Lars Uebernickel * VolumeControl: use 'volume' instead of 'scroll' action (27d3fdce6) 2013-10-10 Michael Terry * Disable DragHandle on right side of screen while the greeter is animating (d0a793027) 2013-10-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4ad1134fb) 2013-10-10 Automatic PS uploader * Releasing 7.82+13.10.20131010-0ubuntu1, based on r420 (dad5b7eab) 2013-10-10 Lars Uebernickel * VolumeControl: use 'volume' instead of 'scroll' action (5e8f95f4b) 2013-10-10 Michael Terry * Hide the greeter when an app is focused, fixing snap decisions launching an app in the greeter (like receiving a call). (c9648b7a8) 2013-10-09 Michael Terry * Rename setFocused (879cc165b) 2013-10-09 Michał Sawicz * Remove the mir socket before starting unity8 during autopilot tests. (e4a75c608) * Remove /tmp/mir_socket even if XDG_RUNTIME_DIR is set. (9af4407de) 2013-10-09 Pawel Stolowski * Implementation of albumart image provider for audio content. (11b8d32f6) 2013-10-09 Andrea Cimitan * Should fix the test (bd75424df) 2013-10-09 Michael Terry * Use verify() rather than tryCompareFunction() (16c9eb324) 2013-10-09 Michał Sawicz * Fall back to /tmp if XDG_RUNTIME_DIR not set. (3dc250455) 2013-10-09 Nick Dedekind * Fixed entryEnabled (298d310ed) * Added entryEnabled and pinLength (2decbf12e) * Only show buttons when actions are available (7f8d291be) 2013-10-09 Diego Sarmentero * emit signal on preview ready (3b29ce76f) 2013-10-09 Andrea Cimitan * Little bit more of padding... (58c81b182) 2013-10-09 Diego Sarmentero * close the spinner if we have a preview (3d8592271) 2013-10-09 Andrea Cimitan * Align video text to left (9eaf6939f) * Add 0.5 more padding (69f6a60fc) 2013-10-09 Pawel Stolowski * Fixed compilation errors. (f780fdb0c) * Catch potential exception when registering albumart image provider. (c812b1514) 2013-10-09 Andrea Cimitan * Added asset for Video renderer (27acd97c0) 2013-10-09 Michael Zanetti * Launcher - remove support for pinning items in the backend (e878ba09a) 2013-10-09 Pawel Stolowski * Use const. (15f0ee5c9) * Handle category_order_changes signal from scopes (used in Home only) and reorder categories accordingly. (cc21ad59d) 2013-10-09 Nick Dedekind * Make sure overflow indicators are hidden and not the search label. (df672615e) 2013-10-09 Pawel Stolowski * Merged main branch. (0cd696097) * Use g_strcmp0. (c286c675a) 2013-10-09 Nick Dedekind * Use indicator identifier for indicators-client list item label. (e4ef5aaf6) 2013-10-09 David Callé * Small logic change in preview descriptions line breaks. Multiple new lines are now replaced by multiple br tags. (37a775269) 2013-10-09 Michal Hruby * One more test (cb7f9b6c3) * Add some tests for the transformations (4d043d775) 2013-10-09 Michał Sawicz * Be more persistent for removing the socket. (2825a3c04) * Remove the mir socket when starting tests in case it's left over. (5bd8f8609) 2013-10-09 Andrea Cimitan * Added code for music and video tiles, but video tiles waiting asset (015f5f0b6) 2013-10-09 Michał Sawicz * Drop AppsAvailableForDownloadModel.qml. (e33abf24e) * Fix application ids for web apps. (2e5b4caca) 2013-10-09 Michael Terry * Disable DragHandle on right side of screen while the greeter is animating (695d513e5) 2013-10-09 Diego Sarmentero * Disable the UI and show spinner until the scope responds (fc0771f1b) 2013-10-09 Automatic PS uploader * Releasing 7.82+13.10.20131008.1-0ubuntu1 (revision 409 from lp:unity8). (bb0fc137b) 2013-10-09 Pawel Stolowski * Support nested content in Home. (3ac13d333) 2013-10-09 Lars Uebernickel * indicators: unregister rootactionstate from the menu (1bfad409b) 2013-10-09 Pawel Stolowski * Merged main branch. (95db08b25) * Check if unity lens schema exists. (a0b455ee3) * Clear category order vector on categories model reset. (02c8f40d8) * Fixed beginMoveRows. (86eccccca) * Fixed RoleRendererHint index. (c7482c535) * Act on review commetns. (ae5475486) 2013-10-09 Jussi Pakkanen * Removed unneeded #includes. (f4abdf59f) * Use Qt file operations and be more pedantic on returned value. (ee4c29f3f) 2013-10-09 Pawel Stolowski * Merged trunk. (c69e4e56e) * Removed unneeded include. (ee40ec7aa) 2013-10-09 Albert Astals * remove extra d (53e220e24) 2013-10-09 Jussi Pakkanen * Free resource in case of exceptions. (dcbcea205) * Merged trunk. (b4ca0c434) * Use Qt's temporary file facilities. (6e003b395) 2013-10-09 Pawel Stolowski * Act on review comments. (4cbc62dbe) 2013-10-09 Albert Astals * Set delegate creation range (22d094560) 2013-10-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d763a69a2) 2013-10-08 Michael Terry * Fix suspend qmltest (36e46125f) 2013-10-08 Mirco Müller * Tweaks to notifications to improve spec-compliance. (c876845ce) 2013-10-08 Michael Terry * Add back a comment I accidentally removed (0b90ce117) * move connection into greeter (44c375109) 2013-10-08 Automatic PS uploader * Releasing 7.82+13.10.20131008.1-0ubuntu1, based on r409 (6f028b41e) 2013-10-08 Daniel d'Andrada * Move OSKController to the front as it will now also block input meant to the OSK (31bb5ed32) 2013-10-08 Michael Terry * Don't unfocus apps on display-wake, but rather on greeter-hide (2bda15ea5) * Hide greeter on incoming call (ca78ba978) 2013-10-08 Pawel Stolowski * remote-content-search key is string, not bool... (bd6307718) * Look for album artist in "content" hash. (bd8a4c5bd) 2013-10-08 Michał Sawicz * Force focus back on shell in case it loses it for some reason. (52c37adcf) 2013-10-08 Nicolas d'Offay * Changed to grid units. (572bc6862) 2013-10-08 Pawel Stolowski * Better warning message. (ee5863af4) 2013-10-08 Nick Dedekind * Changed title to identifier (86c1ca29a) 2013-10-08 Omer Akram * merge trunk (3b3ebb23c) 2013-10-08 Nicolas d'Offay * Used velocity instead of duration. (21874033f) 2013-10-08 Pawel Stolowski * Return default album art in error cases. (7df5f8b98) 2013-10-08 Albert Astals * Remove debug code (217e85abf) 2013-10-08 Michał Sawicz * Force focus back on shell in case it loses it for some reason. (e18633011) 2013-10-08 Albert Astals * Unrevert r388 (03a01e581) 2013-10-08 Pawel Stolowski * Fixed whitespace. (946820e1a) 2013-10-08 Michał Sawicz * Add Scope::isActive property and corresponding tests. Fixes: https://bugs.launchpad.net/bugs/1230352. (93221a703) 2013-10-08 Pawel Stolowski * Added glib build dep. (a5a48841e) 2013-10-08 David Callé * Tweak the regex for line breaks replacing in generic previews descriptions (e422f09fa) 2013-10-08 Pawel Stolowski * Add libqt5xmlpatterns5-dev dependency. (cb2fb4652) 2013-10-08 Mirco Müller * Get rid of unused code. (0083ebf04) 2013-10-08 Daniel d'Andrada * Move OSKController to the front as it will now also block input meant to the OSK (4444e9d5b) 2013-10-08 Pawel Stolowski * Depend on gio. (158e1c6be) 2013-10-08 Michał Sawicz * Make sure termination mode is only available when Apps scope is current. (3059be904) * Leave isCurrent alone for autopilot tests. (c65790414) 2013-10-08 Michal Hruby * Revert icon theme modification (35defb2fa) 2013-10-08 Pawel Stolowski * Merged Wellark's branch. (90cc6b831) * Check gsettings for remote-content-search. (a93fb7024) 2013-10-08 Mirco Müller * Fix/Update notifications-qmltest to reflect the use of a variant-map for the hints. (493d16a33) 2013-10-08 Pawel Stolowski * Remove gstreamer bits, make mediaartcache use artist/album passed with the uri. (80582155d) 2013-10-08 Antti Kaijanmäki * Discard the last.fm fallback image. (1c2761a78) 2013-10-08 Pawel Stolowski * Use percent encoding for albun/artist. (50c1267e4) 2013-10-08 Jussi Pakkanen * Eradicate gstreamer. (4b4fada8a) 2013-10-08 Pawel Stolowski * Pass album and artist to albumart image provider. (b89e21f55) * Return fallback image on album fetching failure. (9e79b6e7a) 2013-10-08 Mirco Müller * Doh... it "undefined" not "null". (f0a3731b7) 2013-10-08 Automatic PS uploader * Releasing 7.82+13.10.20131008-0ubuntu1 (revision 404 from lp:unity8). (00ff8e2f2) 2013-10-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b789f8773) 2013-10-08 Automatic PS uploader * Releasing 7.82+13.10.20131008-0ubuntu1, based on r404 (9bd623ae8) 2013-10-08 Michał Sawicz * Add an InputFilterArea in Notifications. Fixes: https://bugs.launchpad.net/bugs/1233411, https://bugs.launchpad.net/bugs/1235215. (81ef49080) 2013-10-07 Michal Hruby * Find pkgs first (5ea16e09f) * Added albumart image provider (a6bd0858a) 2013-10-07 Ying-Chun Liu * update previews to match design. Fixes: https://bugs.launchpad.net/bugs/1224555. (6abd10cd0) 2013-10-07 Albert Astals * echo-- (c3d1969f5) * various fixes after speaking with Michał (79af43821) * bring back id_rsa, this was a local change only (45450687c) 2013-10-07 Mirco Müller * Make text-fields as heigh as buttons... make the summary align horizontally to the icon, if there's an icon but no body-text... avoid stating default values for items. (35eea2965) 2013-10-07 Albert Astals * Make sure we have ssh started when we need it (92b788656) * bring back id_rsa, this was a local change only (0f50b4aa5) 2013-10-07 Nick Dedekind * merged with trunk (106133c0b) 2013-10-07 Michael Terry * Add Showable.showNow() method and use it in Shell to immediately show greeter when we blank the screen rather than animating it. Fixes: https://bugs.launchpad.net/bugs/1233564. (64e5148c0) 2013-10-07 Automatic PS uploader * Releasing 7.82+13.10.20131007-0ubuntu1 (revision 399 from lp:unity8). (3011d564e) 2013-10-07 Nick Dedekind * fixed some calculations (e907199b2) 2013-10-07 Michał Sawicz * Simplify and streamline Tiles and FilterGrids. (beafe3a32) 2013-10-07 Mirco Müller * Update button-height and bubble-background depending on feedback from Design. (7b61e35cc) 2013-10-07 Nick Dedekind * Fixed typo (fd167575a) * set showAll animation when setting a indicator item to visible (b5b9eaea4) * opacity change on search hide (2449ea3d9) 2013-10-07 Michal Hruby * Merge trunk (ea4947bbf) 2013-10-07 Albert Astals * Unrevert 376 by reverting r395 and a small fix to fix the cpu hogging issue . Fixes: https://bugs.launchpad.net/bugs/1124567. (660620bda) 2013-10-07 Michał Sawicz * Merge fix-genericpreview (616b1ef0a) * merge trunk (492e5adc6) * Use skip() instead of commenting tests out. (1b26115d7) * Update translation template. (0d661b663) * Don't multi-line subtitle. (c7d6ea90c) 2013-10-07 Albert Astals * Drop searchField on mhr3 and Saviq suggestion (86b0bbf95) * don't have the activity indicator running if there's no scope (ea9233ff1) * Revert r395, unreverting r37Revert r395, unreverting r3766 (4367272be) 2013-10-07 Automatic PS uploader * Releasing 7.82+13.10.20131007-0ubuntu1, based on r399 (ab97fc5ce) 2013-10-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fec22fa19) 2013-10-05 Automatic PS uploader * Releasing 7.82+13.10.20131005-0ubuntu1 (revision 396 from lp:unity8). (d6b77172c) 2013-10-05 Michał Sawicz * Respect pre-set import and library paths and prevent segfault in startShell. (38bcdf4d0) 2013-10-05 Automatic PS uploader * Releasing 7.82+13.10.20131005-0ubuntu1, based on r396 (bd9364b78) 2013-10-05 Loïc Minier * Merge changelog of revert upload 7.82+13.10.20131004.2-0ubuntu1. (5ccd88c52) * Merge changelog of revert upload 7.82+13.10.20131004.2-0ubuntu1. (bc4074b0d) 2013-10-05 Michał Sawicz * Revert r376 that caused constant CPU usage due to the ActivityIndicator. (ec2e17445) * Revert r376 that caused constant CPU usage due to the ActivityIndicator. (ac50b851e) 2013-10-05 Michael Zanetti * better code grouping (43623163f) * optimize (58bae589f) * drop comment (35ca06ff9) * adds "fit" mode to LazyImage. (e77c275af) 2013-10-04 Albert Astals * Revert r388. Fixes: https://bugs.launchpad.net/bugs/1235268. (9cb0c29b5) 2013-10-04 Michael Zanetti * cleanup (61a491e6f) * merge with prerequisite branch (41c158fa2) * merge trunk (b064b8da6) * merge trunk (ac3780dd5) * that shouldn't have gone in (726c6648f) * properly fixed the carousel (fbede75a2) 2013-10-04 Michał Sawicz * Add an InputFilterArea in Notifications. (7f58d5825) * Merge trunk. (5110110bd) * Append, don't prepend - and maintain order in main.cpp. (b59908349) 2013-10-04 Albert Astals * Revert r388 (e8e77a324) 2013-10-04 Michał Sawicz * Fix and log the new path. (ebf2cc910) * Respect pre-set import paths and prevent segfault in startShell. (5e9076928) 2013-10-04 Nick Dedekind * Removed indicators-client autopilot tests. Fixes: https://bugs.launchpad.net/bugs/1234736. (b2a6f28b6) 2013-10-04 Pawel Stolowski * Fixed whitespace. (d4c8a11d7) * Merged trunk. (332ca777e) * Minor cleanups, removed debugging code. (58c9ea5cf) 2013-10-04 Automatic PS uploader * Releasing 7.82+13.10.20131004.1-0ubuntu1 (revision 390 from lp:unity8). (13476640b) 2013-10-04 Michael Zanetti * increase threshold for narrowmode decision (90f260f86) * movie preview test robustness and naming (5011ad3e1) 2013-10-04 Christopher Lee * Removes passing -fullscreen to unity8 when on the device (as per bug #1235065). Fixes: https://bugs.launchpad.net/bugs/1235065. (995aadedf) 2013-10-04 Automatic PS uploader * Releasing 7.82+13.10.20131004.1-0ubuntu1, based on r390 (b6e1592fa) 2013-10-04 Michał Sawicz * Drop network agents now that they're in indicator-network instead. (c2e135e2d) 2013-10-04 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f658bc0ac) 2013-10-04 Andrea Cimitan * Make Tile themeable, add renderers for Dash Plugins and weather. Fixes: https://bugs.launchpad.net/bugs/1231948. (b1e5abcdc) 2013-10-04 Michal Hruby * Expose rendererHint to shell. (0be01836d) 2013-10-04 Gerry Boland * WM: ensure focusedApplicationWhenUsingScreenshots reset when unused, and only used when set. Fixes window focus conflict between shell and ApplicationManager. (a1c9f9a31) 2013-10-03 Michał Sawicz * Bump version to indicate support for extended snap decisions. (bf4d5eda7) 2013-10-04 Christopher Lee * No longer pass -fullscreen when launching unity on the device (ab2537be0) 2013-10-03 Michał Sawicz * Drop unneeded bindings. (d21ad0e48) * Simplify the Tiles. (9f9ab4c93) * Simplify FlatTileStyle.qml. (1c8293c4a) * Adapt to changes in CategoryResults and change opacity of disabled in FlatTileStyle.qml. (b16093afc) * merge expose-renderer-hints (4da7de709) 2013-10-03 Michal Hruby * Added rendererHints (2d839af33) 2013-10-03 Nick Dedekind * removed indicator_client autopilot. (180a1fe26) 2013-10-03 Andrea Cimitan * Add fixme (fe67fc395) * Fix disabled scopes and add weather renderer (f58f482cf) 2013-10-03 Nick Dedekind * Fixed QMenuModel::submenu bug (70a7d39f1) 2013-10-03 Michał Sawicz * merge version bump (9fc16bb9a) * Add Breaks: for indicator-network, so that we don't end up with no password agent on upgrade. (deeb6345c) * Depend on notifications-impl-2. (e968525de) * Bump to indicate support for extended snap decisions. (8fd4ad684) 2013-10-03 Albert Astals * Enable/disable running apps height animation in a less error prone way. (abc9e6941) 2013-10-03 Andrea Cimitan * Removed debug (8748fa0a6) * Theme dash plugin differently (ffff55611) 2013-10-03 Michał Sawicz * One more unneeded line. (7bfddc235) 2013-10-03 Andrea Cimitan * Add behaviours to the hud reveal. Fixes: https://bugs.launchpad.net/bugs/1224480, https://bugs.launchpad.net/bugs/1224633. (5623a7056) 2013-10-03 Michał Sawicz * One more cleanup. (8f0372e5b) 2013-10-03 Omer Akram * Make the volume/brightness slider changes realtime. Fixes: https://bugs.launchpad.net/bugs/1227595. (6984ac6a9) 2013-10-03 Michał Sawicz * merge trunk (8bd7d1e8b) 2013-10-03 Michael Terry * Listen to the system setting StatsWelcomeScreen, which tells us whether to show user-specific infographic data in the greeter. Fixes: https://bugs.launchpad.net/bugs/1207857. (b8d722a09) 2013-10-03 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aca9b064a) 2013-10-03 Albert Astals * Do not crash on positionAtBeginning if the list is empty . (4bf2e442f) 2013-10-03 Nick Dedekind * Moved indicator page titles to the root action state of menu model. Fixes: https://bugs.launchpad.net/bugs/1223635. (7b1c72f66) 2013-10-03 Michael Terry * Don't crash if we only ever set an empty username in our mock libusermetrics (44a26d214) 2013-10-03 Mirco Müller * Added rendering- and interaction-support for the first three extended snap-decision dialog-cases password-entry, user-authentication and simunlock. (747f6c631) 2013-10-03 Nicolas d'Offay * Added an indicator which is displayed in the search bar whenever a search is in progress. Added accompanying test in tst_PageHeader. (1e440dac9) 2013-10-03 Michal Hruby * Use the thumbnailer image provider for scope results that don't specify icon as well as for previews. (e5d5e71db) 2013-10-02 Michael Zanetti * Drop useStorage argument and use exising LAUNCHER_TESTING define for this decision. (8e05f3286) 2013-10-02 Gerry Boland * WM: ensure focusedApplicationWhenUsingScreenshots reset when unused, and only used when set. Fixes window focus conflict between shell and ApplicationManager (8b1ac82c7) 2013-10-02 Michael Zanetti * fix typo in moviepreviewtest (80e388215) * fix height issues with LazyImage and Loader (e0752da02) 2013-10-02 Nicolas d'Offay * Made transition reversible. (35f340a54) 2013-10-02 Nick Dedekind * merged with trunk (3745d3d49) 2013-10-02 Michael Zanetti * fix inserting into quicklistmodel. (fd2f17e01) 2013-10-02 Michael Terry * Merge from trunk (72994a109) 2013-10-02 Michael Zanetti * adjust initialHeight's of previews (54c61a528) * increase cacheBuffer in AppPreview's screenshot list to avoid weirdness when dragging with overshoot (28c8dc407) * make MoviePreview use the LazyImage too (5bc842105) 2013-10-02 Nicolas d'Offay * Modified fade durations. (c05ede96f) 2013-10-02 Michael Zanetti * added a placeholder image if an app doesn't deliver any screenshot (635077dae) * make sure appPreview is fully loaded before starting tests (632153349) 2013-10-02 Nicolas d'Offay * Fixed transitions. (79a26979f) 2013-10-02 Michael Zanetti * add tests for gnericPreview (62b4defd8) 2013-10-02 Andrea Cimitan * Merged michal branch (e0f5a6885) 2013-10-02 Michal Hruby * Remove debug (a7de3cf54) 2013-10-02 Nicolas d'Offay * Some amendments to the state/transitions. (f784f7b04) 2013-10-02 Michal Hruby * Fix wrong conflict solution (00bb97c7a) 2013-10-02 Albert Astals * Do not crash on positionAtBeginning if the list is empty (86ec803cf) 2013-10-02 Nick Dedekind * Added actionState parser to the indicators-client text printer so that we get the icon. (034bf6e25) 2013-10-02 Michal Hruby * Expose rendererHint to shell (1b907af07) 2013-10-02 Michael Zanetti * move the openeffect position around instead of overscroll the listview don't try to cancel any previewActions if the preview hasn't been loaded yet (b5e6cf263) 2013-10-02 Nick Dedekind * flow up (db48541b8) 2013-10-02 Michael Zanetti * drop useStorage argument and use exising LAUNCHER_TESTING define for this decision (2e84f9a2a) 2013-10-02 Albert Astals * harmonize (addd978a6) 2013-10-02 Michael Zanetti * fix inserting into quicklistmodel (fb2aaeee6) 2013-10-02 Albert Astals * Less ugly (54a5c4136) 2013-10-02 Omer Akram * makes the slider changes live i.e. screen brightness and volume change (52760dc7d) 2013-10-02 Michal Hruby * Remove newline (296db28d6) 2013-10-02 Nicolas d'Offay * Switched indicator display to use sequential animations and states/transitions. (acc5b0c8b) 2013-10-02 Albert Astals * Less ugly uglyness (5716fa958) 2013-10-02 Michael Zanetti * make use of LazyImage in previews (cb27c5007) 2013-10-02 Mirco Müller * Fixed failing LockScreen autopilot-tests due to PinLockscreen.qml being moved around wrongly. (3a0ec6d26) 2013-10-02 Nick Dedekind * removed debug log (d317d8630) * Added root state parsing to indicators-client actionState (14a4d61d9) 2013-10-02 Andrea Cimitan * Create class DragMixin and import it to share code for _drag function (6755c6453) 2013-10-02 Albert Astals * Do the enable/disable height animation in a different way (17bf1b9f7) 2013-10-02 Michael Zanetti * also cancel any pending actions (9bdae0bbd) 2013-10-02 Andrea Cimitan * Revert to 330 (c87239029) 2013-10-02 Daniel d'Andrada * Revert the reversion of r304 since it doesn't seem to crash anymore (42f731751) 2013-10-02 Albert Astals * Only enable the animation when the item is on screen (i.e. !culled) . Fixes: https://bugs.launchpad.net/bugs/1200374. (301e6adc1) 2013-10-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f33b10240) 2013-10-02 Nicolas d'Offay * Fixed black colour on the first of the month due to division. Fixes: https://bugs.launchpad.net/bugs/1233657. (a96385ba8) 2013-10-02 Michael Terry * Load testability driver when QT_LOAD_TESTABILITY is set. Fixes: https://bugs.launchpad.net/bugs/1226234. (16fd5bf91) * Use a chevron after 'Skip intro' and drop the underlining. (8b2d56f2d) 2013-10-02 Michal Hruby * Differentiate generic and music carousels. (e14ba1915) 2013-10-01 Albert Astals * Update pot file. Fixes: https://bugs.launchpad.net/bugs/1232374. (552e15ea8) 2013-10-01 Michal Hruby * Merge lp:~nicolas-doffay/unity8/search-indicator (c0728c488) * Merge trunk (6b4d52f42) 2013-10-01 Michał Sawicz * merge trunk (ae3bb0b6a) * merge trunk (a19e26d56) 2013-10-01 Michael Terry * Add Showable.showNow() method and use it in Shell to immediately show greeter when we blank the screen rather than animating it (ea5503036) 2013-10-01 Nick Dedekind * Removed deprecated Unity.IndicatorsLegacy plugin. (047ec1b82) 2013-10-01 Michael Zanetti * update tests (31ab38861) * drop ratings from generic preview header (553929ec0) * fix header (c4f0dc176) * move buttons to GenericPreview, clean them up (c7b2c491f) * fix buttons in AppPreview (196037b0a) 2013-10-01 Andrea Cimitan * Moved _drag function in shared place (293b1a366) 2013-10-01 Michal Hruby * Use thumbnailer for previews as well (94bccab02) 2013-10-01 Andrea Cimitan * Grouping functions differently (07e8c09c6) 2013-10-01 Michael Zanetti * always use Qt to launch the movie preview (c413c3206) * always show play button (c1bf9c5bd) * cancel any pending preview activations when closing the preview (2867297e2) 2013-10-01 Michal Hruby * Request images from thumbnailer for local results if icon_hint is left empty (fe05f00ce) 2013-10-01 Michael Zanetti * merge trunk (e4d23031b) 2013-10-01 Andrea Cimitan * Should hide the hud button when the launcher is revealed (7297faf56) * Should finally fix autopilot tests... (37532e610) 2013-10-01 Nicolas d'Offay * Fixed colour bug. (9ff170c04) * Removed typing from searchIndicator test. (8de2ed015) 2013-10-01 Ying-Chun Liu * Add logic to open the video. Make sure it doesn't divide by zero. (fcd0b2849) 2013-10-01 Andrea Cimitan * Latest fixes for tests (a8a0901fa) 2013-10-01 Albert Astals * fixme++ (e2b8b01a4) 2013-10-01 Pawel Stolowski * Merged trunk. (808987a0d) 2013-10-01 Omer Akram * merge (dfe2bbf92) 2013-10-01 Diego Sarmentero * add publisher information to App's header. Disable rating completely (including star rating) (48f63b925) 2013-10-01 Albert Astals * fix undefined check (7200639d7) 2013-10-01 Nick Dedekind * fixed warning (9b86d9d51) 2013-10-01 Albert Astals * Only enable the animation when the item is on screen (i.e. !culled) (4e4dafa8d) 2013-10-01 Michael Zanetti * merge trunk (4f6d35efa) * drop video preview, replaced by movie preview (db80e6629) 2013-10-01 Albert Astals * Update pot (eba6e5f5f) 2013-10-01 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bfc301c82) 2013-10-01 Michał Sawicz * Clean up debian/control. (f4a37a869) 2013-09-30 Michael Zanetti * some more cleanup and tweaks to match design (13e6008f1) 2013-09-30 Michał Sawicz * Remove old Network Indicator code. (e805de903) * Ext. SDs (1344ba37c) 2013-09-30 Michael Terry * Prevent overlapping animations (afe6f5582) 2013-09-30 Michael Zanetti * more cleanups in Previews (4564d3da3) 2013-09-30 Nick Dedekind * Always populate root model pages, but not menu items (7ba9ef36b) * Fixed network indicator not displaying (cd18e8f5d) 2013-09-30 Michael Terry * Merge from trunk (d17fd663e) 2013-09-30 Mirco Müller * Fix include. (16c4b5000) 2013-09-30 Daniel d'Andrada * Revert the reversion of r304 since it doesn't seem to crash anymore (b2a49847f) 2013-09-30 Mirco Müller * Fixed suggestions from MR-comments. (ea9dc25d3) 2013-09-30 Michael Zanetti * merge Movie preview branch in here (7b3ee91ec) 2013-09-30 Michal Hruby * Differentiate generic and music carousels (e82caeb16) 2013-09-30 Nicolas d'Offay * Added test for search indicator. (64d37498c) 2013-09-30 Michael Zanetti * update AppPreview and GenericPreview to changes in DashPreview (3222e0cae) 2013-09-30 Nick Dedekind * merged with trunk (9a785073a) 2013-09-30 Michael Zanetti * adjust DashPreview to have 3 columns and the sections required by design (526899bd2) 2013-09-30 Nicolas d'Offay * Started writing test for search indicator. (eb5de7fe6) 2013-09-30 Michael Zanetti * reset after completely messing up merging (e390a8414) 2013-09-30 Nicolas d'Offay * Added scope to PageHeader qmluitest. (4d5bcae07) 2013-09-30 Michal Hruby * Merge trunk (366698dc5) * Merge trunk (fbeb490e1) 2013-09-30 Andrea Cimitan * Merged trunk (9ece4a1ef) 2013-09-30 Nicolas d'Offay * Added search indicator. (1ddc0e4be) 2013-09-30 Nick Dedekind * Updated unitymenumodelstack tests (5e74b3d91) 2013-09-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a5a966b75) 2013-09-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (71280d466) 2013-09-27 Michael Terry * Use units.dp instead of hardcoding 12 (8b8c85a2b) * Use a chevron after 'Skip intro' and drop the underlining (f51850555) 2013-09-27 Nick Dedekind * removed dbus in favour of mocking (ef3201dca) * merged with trunk (d8b257a1a) 2013-09-27 Automatic PS uploader * Releasing 7.81.3+13.10.20130927.3-0ubuntu1 (revision 358 from lp:unity8). (a710c62ed) * Releasing 7.81.3+13.10.20130927.3-0ubuntu1, based on r358 (212aa478f) 2013-09-27 Pawel Stolowski * Cancel previous actions and previews on new activation / preview. Expose previewed data row in Preview object. (ad32a9766) 2013-09-27 Michael Terry * Also load testability library if QT_LOAD_TESTABILITY is set (6e60748cf) 2013-09-27 Ying-Chun Liu * Add Displaying the infoHints. (f2ee9e500) * Fix app preview. (97e108f1e) 2013-09-27 Nick Dedekind * Added unitymenumodelstacktest (d6f59efb8) * Added count to unitymenumodelstack (9bb8e82ce) 2013-09-27 Michał Sawicz * Fix Qt 5.1 FTBFS and suppress some build warnings. (f72075f13) 2013-09-27 Pawel Stolowski * Ouch... fix merging with trunk where I removed cancellable... (1380a39d2) 2013-09-27 Michał Sawicz * Add a LazyImage component that shows an activity spinner for long-loading images and handles aspect ratio properly. (fb3e09005) 2013-09-27 Pawel Stolowski * Added a comment. (d8dd84d17) 2013-09-27 Michał Sawicz * Fix Qt 5.1 FTBFS. (fb7bd1910) * Mark unused in fake Preview::actions. (065835e98) 2013-09-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (0be851f29) 2013-09-26 Albert Astals * Fix showHeader in an edge case of notShownByItsOwn (a9858ca77) 2013-09-26 Nick Dedekind * Brought messaging indicator inline with UnityMenuModel & UnityMenuAction. Fixes: https://bugs.launchpad.net/bugs/1217676, https://bugs.launchpad.net/bugs/1217678. (85f94d35e) 2013-09-26 Michael Terry * Merge from trunk (00a39ec22) 2013-09-26 Diego Sarmentero * - Remove "Reviews and Comments" section from Application Preview until the feature is ready (BUG: #1226632) - Detect when the keyboard is being shown to allow the user to scroll the Preview even more if necessary to interact with the components at the bottom of that preview, and don't leave those components obscured behind the keyboard (BUG: #1226638). Fixes: https://bugs.launchpad.net/bugs/1224717, https://bugs.launchpad.net/bugs/1226632, https://bugs.launchpad.net/bugs/1226638. (f82055e22) 2013-09-26 Nick Dedekind * fixed remove row connection (c7dde77c4) 2013-09-26 Diego Sarmentero * resolve conflict (e2838eec6) 2013-09-26 Andrea Cimitan * Remove the timeout, causing failures on slow hardware (b739064f8) 2013-09-26 Diego Sarmentero * - Handling error signal from the DownloadTracker plugin (BUG: #1229744). Fixes: https://bugs.launchpad.net/bugs/1229744. (81f0882d8) 2013-09-26 Nick Dedekind * Added model submneu re-initialisation on disconnected proxy. (a788c1f2b) 2013-09-26 Michał Sawicz * Make SHOW_DASH and HIDE_DASH close the current preview. Fixes: https://bugs.launchpad.net/bugs/1231404. (392b68620) 2013-09-26 Pawel Stolowski * Updated libunity-core dependency. (860bfa37a) * Fixed whitespace. (71df37edd) 2013-09-26 Albert Astals * Fix showHeader in the edge case of notShownByItsOwn (429685a46) * Remember the expanded categoryId and not the expanded index (e323b4206) 2013-09-26 Diego Sarmentero * not skipping test (f663b35be) * removing unnecesary test (9450bc278) * adding test for auto scroll (bd275056a) 2013-09-26 Ying-Chun Liu * Fix the buttons. A new variable to control the max width of buttons. So it looks better on wide screens. (3f15cca9b) 2013-09-26 Michał Sawicz * Make SHOW_DASH and HIDE_DASH close the current preview (e571bb964) * Introduce "scaleTo" property instead of abusing sourceSize. (16545fd50) 2013-09-26 Nick Dedekind * Fixed background (4ce1adb31) * Fixed menu selection on initial add. (3c079c0c1) 2013-09-26 Albert Astals * Use the categoryId, not the item.objectName, they have the same contents but objectName feels a bit wrong to use (9edbf3bb6) * Remember the expanded categoryId and not the index (795022997) 2013-09-26 Pawel Stolowski * Merged trunk. (9538b1f7a) 2013-09-26 Mirco Müller * Got rid of blank newlines at end of file. (b0fb8f243) * Satisfy the UnityMenuModel symbol in the QMenuModel mock, so the notification qmltest passes again. (686154e8b) 2013-09-25 Michał Sawicz * One more missing copyright... (1b0eb8d79) * Add missing copyright header. (020cc6b88) 2013-09-25 Michal Hruby * Convince cmake that we really want unity-core>=7.1.1 (6db14c8ca) 2013-09-25 Diego Sarmentero * adding tests for progressBar in AppPreview and tracker signals (a5f50bb52) 2013-09-25 Andrea Cimitan * Remove empty new line at end of file (fdd593cfa) 2013-09-25 Michal Hruby * Merge test fix (01cd5d949) * Remove debug (19256d2aa) * Re-query scopes when results are invalidated (8c0896af7) 2013-09-25 Pawel Stolowski * Support cancellation for preview actions. (9a3ba832d) * Use unity::glib::Cancellable. (105cfb00e) 2013-09-25 Michał Sawicz * Try settling UI before tests. (6753a2b79) * Add tests for LazyImage. (85be72551) 2013-09-25 Pawel Stolowski * Support for action cancellation. Added Q_INVOKABLE methods to cancel preview / action. (d7c7b8894) 2013-09-25 Ying-Chun Liu * Move Title under Icon. Make title as a component in DashPreview so the previews can customize it. (4c43d6e26) 2013-09-25 Michal Hruby * Correctly handle image URI scheme in results. (c0075cb59) 2013-09-25 Nick Dedekind * removed redundant property (ab11b4cf2) * fixed up messaging icons (671adbf2c) 2013-09-25 Andrea Cimitan * Finish the autopilot tests (28989c34a) 2013-09-25 Michal Hruby * Correctly handle image URI scheme in results (d7324bb98) 2013-09-25 Albert Astals * LVWPH: Make sure we always overshoot vertically. Fixes: https://bugs.launchpad.net/bugs/1229851. (aa1e99eea) * assert we are actually testint contentHeight == height case (2a8a13e1d) * LVWPH: Make sure we always overshoot vertically (17b1d0215) * Make sure we always have least have one column in the gridview. Fixes: https://bugs.launchpad.net/bugs/1225391. (1d068db93) 2013-09-25 Michael Terry * Increase the "Skip intro" clickable area, making dismissing the edge demo intro feel more natural. Fixes: https://bugs.launchpad.net/bugs/1220632. (9daf05f56) 2013-09-25 Michał Sawicz * Add LazyImage for greceful loading of remote images. (49900ee1c) 2013-09-24 Michael Terry * Only enable the Bottombar when the HUD is available. Fixes: https://bugs.launchpad.net/bugs/1220306. (6195e893c) * Merge from trunk (e8ce05299) * Use anchors.margins instead of modifying height/width; make extra margin smaller (but still big) (ebc518ba6) * Merge from trunk (d8b2c6316) 2013-09-24 Michael Zanetti * drop our CrossFadeImage in favor of the SDK one. Fixes: https://bugs.launchpad.net/bugs/1227783. (28f4b33b3) 2013-09-24 Pawel Stolowski * Support canned search queries returned by Home Scope. (a4c2f97c8) 2013-09-24 Automatic PS uploader * Releasing 7.81.3+13.10.20130924.2-0ubuntu1 (revision 340 from lp:unity8). (532f1a77c) * Releasing 7.81.3+13.10.20130924.2-0ubuntu1, based on r340 (fa243d578) 2013-09-24 Pawel Stolowski * Added test for result property of preview. (f455f2ae0) 2013-09-24 Diego Sarmentero * Handling error signal from the DownloadTracker plugin. (df1ebb6d1) 2013-09-24 Pawel Stolowski * Expose result as variant. (0e8d0a075) 2013-09-24 Michael Zanetti * debug-- (bac609428) * drop our own CrossFadeImage in favor of the SDK one (d2f547421) 2013-09-24 Pawel Stolowski * Added result property to the preview. (bf799c58e) 2013-09-24 Andrea Cimitan * Some changes to the interaction of the hud (approved by oren), plus work on autopilot (82166a471) 2013-09-24 Pawel Stolowski * Check results model ptr returned by GetResultsFromCategory method from UnityCore. Fixes: https://bugs.launchpad.net/bugs/1211595, https://bugs.launchpad.net/bugs/1228097. (4d3d2ac5f) 2013-09-24 Michal Hruby * Merge the scope-isactive branch (22e43a1fc) * Merge trunk (655839d7b) 2013-09-24 Nick Dedekind * Fixed indicator model test (4d86fb793) 2013-09-24 Michał Sawicz * Add misplaced function call. (0732ea584) * Add missing import path. (0a0e79c4f) * Hide Dash if not shown and set isActive on scopes to false accordingly. (e0fa5311c) * Add Scope::isActive. (99425429f) 2013-09-24 Pawel Stolowski * Removed unused signal handler. (9c511335e) 2013-09-24 Michał Sawicz * Test that dash shown changes correctly. (4bded4dc3) 2013-09-24 Pawel Stolowski * Don't connect to results model change signal. (7802645a6) 2013-09-24 Albert Astals * LVWPH: Update the section header on list change events. (d8abd847f) 2013-09-23 Nick Dedekind * Re-enable MenuContentActivator in Indicators. (1006d3ba2) 2013-09-23 Michael Zanetti * use less auto variables, align coding style, constify and Qt'ify API in AccountsService plugin. (398f2dd0f) 2013-09-23 Michal Hruby * Fix the signal prototypes on music grid renderer. Fixes: https://bugs.launchpad.net/bugs/1228390. (0d94ceb43) 2013-09-23 Pawel Stolowski * Cancel previous preview request on new preview call. (36437554d) 2013-09-23 Albert Astals * Make sure we always have least have one column in the gridview (a5d8cd6c3) 2013-09-23 Pawel Stolowski * Fixed type in variable name. (20f9687a2) * Check pointer returned by GetResultsForCategory from UnityCore. Suscribe to change of results model of the scope and reset categories if it happens. (ed85b03f5) 2013-09-23 Diego Sarmentero * Ensure item is visible when keyboard is shown (890ba3a6d) 2013-09-23 Albert Astals * Merge (da6049ecf) 2013-09-23 Michal Hruby * Fix signal prototypes on music grid renderer (83e934175) 2013-09-20 Andrea Cimitan * Added some silence time to wait for slow gestures... (1a274aeeb) 2013-09-20 Nick Dedekind * merged with trunk (59f6b4d42) 2013-09-20 Mirco Müller * Merged with trunk, fixed text-field width of extended snap-decisions, removed unused code from snap-decisions. (cc25fa3e7) 2013-09-20 Andrea Cimitan * Extra part of the gestures... (a7faf6f4d) 2013-09-20 Michael Terry * Don't use auto (46bb91f51) 2013-09-20 Michal Hruby * Add the new property also to mocks (1b437b854) * Don't unnecessarily check no-results-hint (71e7a2779) 2013-09-20 Diego Sarmentero * working with ensureVisible (a0a970a99) 2013-09-20 Nick Dedekind * Fixed buffer usage in re-drag (38899ddba) 2013-09-20 Pawel Stolowski * Do activation instead of preview for canned queries. (bf6f7ec85) 2013-09-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (6fe2f9bf7) 2013-09-19 Michael Terry * Only enable the bottombar when the hud is available (662988e9c) 2013-09-19 Automatic PS uploader * Releasing 7.81.3+13.10.20130919.3-0ubuntu1 (revision 333 from lp:unity8). (9fb02c250) 2013-09-19 Michael Terry * Make function naming match unity8 style (e395fbff1) * Merge from trunk (f2f690767) 2013-09-19 Michael Zanetti * remove support for pinning items in the backend. After the latest design changes, recent apps is everything that is contained in the ApplicationManager. So no need for storing anything else than pinned apps in the config. (6cf88c2ac) * also adjust mocks (803652973) 2013-09-19 Andrea Cimitan * Final... (2edc3e89a) 2013-09-19 Pawel Stolowski * Added a comment. (0556cda56) 2013-09-19 Michael Zanetti * use auto variables, align coding style, Qt'ify API (78f579555) 2013-09-19 Pawel Stolowski * Bind scope's searchQuery property to searchQuery of pageHeader, so that Scope can programatically search string in the UI. (42cea9d4e) * Handle PERFORM_SEARCH activation reply (canned query). (a755a5456) 2013-09-19 Automatic PS uploader * Releasing 7.81.3+13.10.20130919.3-0ubuntu1, based on r333 (1b9f3a7c3) 2013-09-19 Michal Hruby * Remove debug warning (e29dfcf23) * Add new searchInProgress property (376dd2033) 2013-09-19 Andrea Cimitan * First work on fixing the plugin for communicating with the sdk (9a1c59acb) 2013-09-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (9cc9b7441) 2013-09-18 Michael Terry * Merge from trunk (b1fc0acf9) 2013-09-18 Christopher Lee * Addition of initial autopilot tests for the application lifecycle. (86d8f81a5) 2013-09-18 Michael Terry * Add a tiny SessionBroadcast plugin that listens to unity-greeter-session-broadcast for the ShowHome signal. (0f9cc704a) 2013-09-18 Nick Dedekind * removed backgrounY property (75c090917) * Ensure search panel label is not overflowed by indicator icons (1c015ae04) 2013-09-18 Michal Hruby * Add support for music grid renderer to GenericScopeView. (fe1a102cf) 2013-09-18 Ying-Chun Liu * Fix testing. Remove qtmultimeida dependencies. (1a428634b) 2013-09-18 Nick Dedekind * Added re-drag for indicator selection when already opened (61b5de0f6) 2013-09-18 Michael Zanetti * collapse any open preview when programmatically switching current dash index. Fixes: https://bugs.launchpad.net/bugs/1221137. (174fa523a) 2013-09-18 Daniel d'Andrada * Make MouseTouchAdaptor work with multiple QWindows. (94e120e55) 2013-09-18 Lars Uebernickel * VolumeControl: use action of the new indicator (2024df2b0) 2013-09-17 Michael Zanetti * fix an issue with removing a running app from the launcher and always store pinning to the config. (acc304f89) 2013-09-17 Diego Sarmentero * test and code improved, remove comments and add visible=false, also use bottomMargin instead of increasing contentHeight (ab88cc444) * Fixing tests (43285a8f5) 2013-09-17 Michal Hruby * Add support for music grid renderer to GenericScopeView (7605515f2) 2013-09-17 Michael Zanetti * revert unused change (cd5b8d398) * new solution (36fd3426d) * collapse any open preview when programmatically switching current dash index (0d9d9d811) 2013-09-17 Diego Sarmentero * extending the scrollable area if the keyboard is present (628cad6dd) * Removing Rates and Comments section from the UI until the feature is ready (0eb380d78) 2013-09-17 Michael Terry * Merge from trunk (d196328dd) * Merge from trunk (9500bbd0c) 2013-09-17 Ying-Chun Liu * Remove QtMultimedia. (e2c09ddff) * Fix ratings. (b546fb625) * Remove video playing. (9e81c8fd8) 2013-09-17 Nick Dedekind * removed old data (1632f9fab) * indicator title moved to root action state (09cdf7910) * merged with trunk (e21028b80) * Fixed the removal of messaging widget due to incompatible action state. Fixes: https://bugs.launchpad.net/bugs/1225017. (6a74c5767) 2013-09-16 Daniel d'Andrada * Remove obsolete, unused graphics. (e83ce71a6) 2013-09-16 Michael Terry * Merge from trunk (a4777e4e9) 2013-09-16 Automatic PS uploader * Releasing 7.81.3+13.10.20130916-0ubuntu1 (revision 320 from lp:unity8). (9d57bcd6f) 2013-09-16 Michael Zanetti * fix another comment (d9d197d79) * fix comments (51a57a6c1) * fix issue with removing running app and storing pinned apps in config (51b408ef3) 2013-09-16 Michael Terry * Set bottom edge demo to sit above the indicator drag handle, because (A) I believe that's closer to what design wanted and (B) it prevents our clickable area from interfering with the drag handle (c5ec78524) * Make edge demo click label larger, making it feel easier to dismiss (fe12c96ce) * When AccountsService.backgroundFile is unset/invalid, have the greeter fall back to whatever the shell background is. (51792d540) 2013-09-16 Daniel d'Andrada * Make MouseTouchAdaptor work with multiple QWindows (56a43a2ea) 2013-09-16 Michael Zanetti * change how icons are searched (29181afd5) 2013-09-16 Ying-Chun Liu * Fix Movie preview aspect ratio. Re-factor test. (3f08adb0e) 2013-09-16 Automatic PS uploader * Releasing 7.81.3+13.10.20130916-0ubuntu1, based on r320 (d4d71f51a) 2013-09-16 Andrea Cimitan * Merged trunk (cbe1706bb) 2013-09-16 Nick Dedekind * merged with trunk (ebf4a8a21) * merged with trunk (032654ba4) 2013-09-15 Michael Terry * Run greeter through ubuntu-touch-session (9b42f992d) 2013-09-13 Michael Terry * Ship SessionBroadcast plugin in unity8-private (428ff55f9) * Ship SessionBroadcast plugin in unity8-private (a2a3f8eb3) * Merge from trunk (0cd9b5ee4) 2013-09-13 Christopher Lee * Made the qml properties slightly less ugly (40027af59) * Add fix so mocking isn't used when running applications, fixes lock_screen tests. (2d3820376) * Changes as per MR (934ca9e51) 2013-09-13 Nick Dedekind * Removed incompatible action state from legacy default indicator page. (85967fc00) 2013-09-13 Michael Zanetti * ssh is now installed per default, but it's set to manual in the ssh.override. (d1296e385) 2013-09-13 Andrea Cimitan * [ Michael Zanetti ]; add support for finding icons from click package apps in the launcher.; update to latest launcher API for better integration with the AppManager. [ Ricardo Mendoza ]; Fixes problems related to image 20130912.0, amongst:; Fix autopilot tests by preventing blocking of input during HUD button animations, only when fully visible; Fix loading of unity-mir library, major version wasn't specified so unless the dev package was there it would fail. [ Ubuntu daily release . Automatic snapshot from revision 316 (5be4c5fa0) 2013-09-13 Michael Terry * If AccountsService.backgroundFile is unset, fallback to the background in gsettings (c1b8bc70f) 2013-09-13 Michael Zanetti * Don't hide the launcher on changes in the stages. (047d78206) 2013-09-13 Christopher Lee * Minor docstring clarification (cc36dec06) 2013-09-13 Michael Zanetti * ssh is now installed per default, but it's set to manual in the ssh.override (4378dee7d) 2013-09-13 Christopher Lee * Commit trunk (231cfd67b) * Back out un-baked merge from earlier (641530284) 2013-09-13 Ying-Chun Liu * Use image://theme (5c9b38dc3) 2013-09-13 Christopher Lee * Cleanup launching default apps. (16b843635) * Clarify use of property (ccce83fa2) 2013-09-13 Ying-Chun Liu * Fix GridView interactive problem. Let the buttons flow when we have more width. Clean-up unused code. (aadff5b00) 2013-09-13 Andrea Cimitan * Changes for HUD 2.0, behaviour... (e858a5ae0) 2013-09-12 Christopher Lee * Initial tests using default installed apps not qmlscene (as it's not showing up anymore). (536be7bbd) * Add properties to allow introspecting current focused app. (c468e0d76) 2013-09-12 Michael Zanetti * allow left edge gesture to minimize apps even when launcher is already visible. (0df711c98) 2013-09-12 Michael Terry * Listen to unity-greeter-session-broadcast for ShowHome requests (1bdc113bf) 2013-09-12 Michael Zanetti * add missing icon for testing (48a51f64c) * change how icons are searched (6b89b8408) 2013-09-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130912-0ubuntu1 (revision 316 from lp:unity8). (bd368ff23) 2013-09-12 Mirco Müller * Added Nick's UnityMenuModelPaths extension (0bd68a7ec) * Added Nick's MenuItemFactory-adaptation of the additional UI-elements needed for extended snap-decisions. (ba59aae67) * Use UnityMenuModel for defining extended snap-decisions. (6b0d31454) 2013-09-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130912-0ubuntu1, based on r316 (fe640cbf3) 2013-09-12 Ricardo Mendoza * Fixes problems related to image 20130912.0, amongst: (eaeb1804f) 2013-09-12 Michael Zanetti * update to latest launcher API for better integration with the AppManager. (a4d069996) * fix pkgconfig check for right api (ce999dc3a) * merge ap fixes into this branch as we need to tackle both fixes in one merge (bd77ed6a1) 2013-09-12 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7c94ed895) 2013-09-12 Michael Zanetti * bump dependencies too (3b72bd1e2) * bump required launcher api version to 3 (c23a551e0) 2013-09-12 Ricardo Mendoza * Mir loading fixes and AP test breakage (c619b020a) 2013-09-11 Michael Zanetti * fix mocks for ui testing (ff1a9d0e8) 2013-09-11 Christopher Lee * Merge trunk (9ce7f4e19) * Merge non-mock stuff and going to add applicationmanager stuff (3c803555c) 2013-09-11 Automatic PS uploader * Releasing 7.81.3+13.10.20130911.1-0ubuntu1 (revision 311 from lp:unity8). (799aff208) 2013-09-11 Michael Zanetti * qDebug--, comments++ (dca7299a8) * adjust tests and added some more (4cb1dd68c) * add support for finding icons from click package apps in the launcher. (8fbf399b5) 2013-09-11 Automatic PS uploader * Releasing 7.81.3+13.10.20130911.1-0ubuntu1, based on r311 (3d613d721) 2013-09-11 Christopher Lee * WIP (1cb0f02e7) 2013-09-11 Gerry Boland * Remove InputFilterArea for bottom edge swipes, as applications also listen for such swipes for Toolbar reveal. (d154848a2) 2013-09-11 Michael Zanetti * update to latest launcher API for better integration with the AppManager (1e47f42d4) 2013-09-11 Michael Terry * Switch from deprecated image://gicon/ to new image://theme/. (c33e7527e) 2013-09-11 Gerry Boland * Remove InputFilterArea for bottom edge swipes, as applications also listen for such swipes for Toolbar reveal (ea4585665) 2013-09-11 Ricardo Mendoza * Select the backend to use dynamically on runtime according to the QPA selected by the system. (6b8b30be3) 2013-09-11 Gerry Boland * Add OSKController so shell can control OSK correctly on Mir. (2270629e7) 2013-09-11 Automatic PS uploader * Releasing 7.81.3+13.10.20130911-0ubuntu1 (revision 306 from lp:unity8). (e0e666e97) * Releasing 7.81.3+13.10.20130911-0ubuntu1, based on r306 (e163c890f) 2013-09-10 Gerry Boland * Convert to new ApplicationManager API. (a954cc546) * Add missing file (b548752a4) * Add a OSKController to mock Unity.Application (788de8f66) * Merge u8-newAppAPI2 (d47d01633) 2013-09-10 Michael Zanetti * explicitly use waitForApplicationWindowIsFullyHidden instead of implying that in waitForUiToSettle (331dca1a3) * remove unused call to cleanup() (3feccfb23) 2013-09-10 Mirco Müller * Make Notification-frontend use the QVariantMap-based hints now. (1f452eb0d) 2013-09-10 Michael Zanetti * added tests for leftEdgeDrag, with and without launcher (845953d99) 2013-09-10 Gerry Boland * Remove fillMode from RunningApplicationTile, should fix running apps list on Mir (298ac6d62) 2013-09-10 Michael Zanetti * allow left edge gesture to minimize apps even when launcher is already visible (474b70008) * don't make changes in the dash hide the launcher. (f8137a998) * revert revision 304 as it makes the Shell crash. (8b02a3bbb) * revert Daniels commit as it makes the Shell crash (5eaf63aed) 2013-09-09 Ricardo Mendoza * Use unity-mir instead of full path; Make comments more clean about unity-mir dynamic loading (65486da52) 2013-09-10 Gerry Boland * Small fix for hud input area to maintain existing behaviour (1445c84e1) * Adjust input handling to suit both SF and Mir (9da513411) 2013-09-09 Ricardo Mendoza * Drop unity-mir hard-link and dynamically load according to the environment used, to prevent the wrong platform-api symbols ending up in the global linkage namespace (dc3b578dd) 2013-09-09 Daniel d'Andrada * Remove obsolete, unused graphics. (c8e7a85b7) * Reset apps scope when returning from app to dash (LP #1193419) (a02032136) 2013-09-09 Lars Uebernickel * VolumeControl: use action of the new indicator (179ef6cfa) 2013-09-09 Michael Terry * Listen to changes in the "show edge demo" AccountsService setting. (3e4d2a7b0) 2013-09-09 Michael Zanetti * qDebug-- (7e8832ed1) * add support for finding click package icons in launcher (6ed3ed909) 2013-09-09 Michael Terry * Merge from trunk (302c8b4d7) * Merge from trunk (9e8474ece) * Merge from trunk (74dbdb8bf) 2013-09-09 Daniel d'Andrada * Bring back the desperate measure (768933bb8) 2013-09-09 Michael Terry * Have the greeter use AccountsService to determine its background. Fixes: https://bugs.launchpad.net/bugs/1218402. (897050378) 2013-09-09 Gerry Boland * Shell focuses the app, do not do it in startApplication (93696ed56) * Fix mock applicationmanager visuals (fd308dc74) * Remove unneeded function, which if used would create problem for click packages (eec3f12f0) * No need to signal twice (f0bf5a373) * Mock ApplicationManager: add application only after deciding its stage (3efba525b) * Change in unity-api means no need to copy enum definition (0c63f823a) * make ApplicationsModelStageFiltered logic use the model parameter (7f4e505d8) * Remove unneeded layoutChanged signal from QSortFilterProxyModel (bb3e94393) * Small syntax change (758a19592) * Remove debug statements (47f567a91) 2013-09-09 Nick Dedekind * removed Unity.IndicatorsLegacy (d1da2c028) * merged with parent (1f5dae659) * Moved Unimty.IndicatorsLegacy messaging resources to Unity.Indicators (84344890d) * removed references to IndicatorsLegacy (d870f413d) 2013-09-09 Gerry Boland * Slightly better comment (2ea870526) * Remove fixme hack as ApplicationManager better behaved now (a2f764ea4) * Fix test killApps method (4a1024dc4) 2013-09-09 Nick Dedekind * merged with trunk (d3b225c2e) 2013-09-08 Gerry Boland * Merge trunk (c32d603b0) 2013-09-07 Nick Dedekind * Indicator visibility based on connection with backend service. (6fca69233) * Updated access point design as per spec. (fd712e464) 2013-09-07 Michal Hruby * Hide all gicon strings from the shell and use the image://theme icon provider that was recently added to the SDK. (25e8b4798) 2013-09-07 Michael Zanetti * shrink size of area for revealing the HUD button and make it disappear on release again. (85caf4c68) 2013-09-06 Michael Terry * Don't show background on lock screen; show greeter when powerd is pressed (87e5093ad) * Merge from wallpaper branch (3609dc04f) * Move common wallpaper code to BasicShell (c2da3c7f2) * Merge from trunk (39dc6f627) 2013-09-06 Gerry Boland * Merge trunk (a27b13b17) * Fix mock ApplicationManager to actually update its model correctly. (13f2fe3a2) 2013-09-06 Ricardo Mendoza * Remove trailing whitespaces (cddf513e9) 2013-09-06 Nick Dedekind * merged with trunk (df569d777) 2013-09-06 Ricardo Mendoza * Fix running on desktop, only set up Mir server for already-Mir scenarios (e4c01b596) 2013-09-06 Daniel d'Andrada * Finish things up. (aa7ce91df) 2013-09-06 Ricardo Mendoza * Add unity-mir dep (ceffce7e3) 2013-09-06 Michal Hruby * Move authors to bottom of the header (dfe2ac779) * Merge trunk (0783d15f0) 2013-09-06 Gerry Boland * Add OSKController (daa0d0de3) 2013-09-06 Michal Hruby * Add author to copyright header (4ca9c78af) * Rename icon string conversion method, use QLatin1String (0781bdc75) 2013-09-05 Ricardo Mendoza * Fix build errors (c0e29793f) 2013-09-05 Michael Terry * Merge from wallpaper branch (1000459d4) 2013-09-05 Albert Astals * Dash: Make assignments bindings (56827d428) 2013-09-05 Ricardo Mendoza * Selective run unity8 either as standalone or as a Mir server depending on the QPA plugin in use. (aab2c8a6b) 2013-09-05 Michael Terry * Merge from wallpaper branch (cee0dab52) * Rename classes (7417ab0cd) 2013-09-05 Ricardo Mendoza * If using a QPA different than ubuntu (SF) then setup the environment for Mir (897fb5312) 2013-09-05 Michael Terry * Merge from trunk (09fab63e5) * Pay attention to StatsWelcomeScreen setting and disable infographic on greeter if requested (e6dbf005b) 2013-09-05 Gerry Boland * Test should not depend on ApplicationManager directly to mock it. Fixing tst_RunningApplicationsGrid.qml test which was failing (2bdbff730) 2013-09-05 Michael Terry * Allow testers to set custom password or pin in demo mode, rather than hardcoding them. (58a96512f) 2013-09-05 Michael Zanetti * whitespace-- (f410d89f9) * include ~/.local/share/applications in launcher's .desktop file search path. (e7e5dcf00) 2013-09-05 Gerry Boland * replace stopProcess with stopApplication (808e09978) 2013-09-05 Daniel d'Andrada * Update fake/mock plugins so that "./run --fake" works well again (2139c25f9) 2013-09-05 Gerry Boland * Merge trunk (20f9d0fc1) * Silence undefined warning (fc480e929) * Remove useless lines (d122d36f0) * Fix up Shell AP test to use new AppMan API (98f1c54a4) 2013-09-05 Michael Zanetti * adds support for highlighting the currently focused application in the launcher, adds tests. (286fefd14) 2013-09-05 Automatic PS uploader * Releasing 7.81.3+13.10.20130905.2-0ubuntu1 (revision 291 from lp:unity8). (12a88eed9) 2013-09-05 Gerry Boland * Update mock ApplicationManager APIs to use that defined in unity-api (febd47520) 2013-09-05 Ying-Chun Liu * Fix ftbfs again. (8d0d15c69) 2013-09-05 Michal Hruby * Add tests (9e3d77f11) 2013-09-05 Automatic PS uploader * Releasing 7.81.3+13.10.20130905.2-0ubuntu1, based on r291 (c09e84991) 2013-09-05 Gerry Boland * Merging lp:~mzanetti/unity8/launcher-focused-highlight to fix build errors (6a3d0df9a) * Merge trunk (e2c239f72) 2013-09-05 Michal Hruby * Hide gicon strings from the shell (621f7dbd7) 2013-09-05 Michael Zanetti * Integrate Launcher with AppManager. (b64ae7df9) 2013-09-05 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e52014c9f) 2013-09-05 Gerry Boland * side/mainStageFocusedApplication now being determined correctly (6667b30da) 2013-09-05 Michael Zanetti * add qmltests for focused overlay (0b0282c14) * add launchermodeltests (cf3f1c79b) 2013-09-04 Michael Zanetti * remove debug prints, add a comment (81cfa93fb) * add support for highlighting the currently focused app (4a9640b24) * ~/.local has higher priority than /usr (8ab61c39c) * remove debug prints (965df0e40) * include ~/.local/share/applications/ in .desktop file search path (88403d241) * merge appmanager integration branch (9185530ef) 2013-09-04 Michael Terry * Allow turning on/off the edge demo live (4887058a6) 2013-09-04 Gerry Boland * Need to expand capability of QSortFilterProxyModelQML to explicitly emit signal on any row manipulations. With this can fix much behaviours in shell. The main & side stage focused apps are now working (d835e2a0f) 2013-09-04 Michael Terry * Let tester set password or pin value in demo mode (3598eb627) * Merge wallpaper branch (9f3920f2f) * Merge from trunk (a4cbac43e) * Use Q_UNUSED (3cb455dcd) * Merge from trunk (611329ad6) 2013-09-04 Michael Zanetti * merge launcher-appmanager branch (98fb59f33) * further improve test (80f5359b7) * adjusted comment for test (4b8da9da8) * adjust hud button test to also check if it correctly disappears when releasing outside the button (b613cc64d) 2013-09-04 Michael Terry * Don't use guint for no reason (bf53eacf9) 2013-09-04 Gerry Boland * Updates for ApplicationManagerWrapper for new api (527a6cab7) * Using Unity.Application instead of old Ubuntu.Application. Moved fake plugin (not updated it yet) (82f546b16) 2013-09-04 Michael Zanetti * fix bug 1219035 (1af5b579a) * add applicationFocused to mock (bf1243b6f) * remove empty line (19e7a2839) * remove debug preints (0be779f4c) * fix bad merge (ad59a5df9) * merge trunk (2babb2870) * adjust tests (7ce17f4cb) * support appIds and and .dekstop files in findDesktopFile() (a1187e49b) * remove debug prints (216b5d61c) 2013-09-04 Nick Dedekind * Added modelIndex to UnityMenuAction (efa5c31e2) 2013-09-04 Automatic PS uploader * Releasing 7.81.3+13.10.20130904.1-0ubuntu1 (revision 287 from lp:unity8). (58e3cb6bf) 2013-09-04 Michael Zanetti * merge trunky (787fcde5f) 2013-09-04 Nick Dedekind * Removed FIXME from slider int->double conversion. (b818c06c9) 2013-09-04 Automatic PS uploader * Releasing 7.81.3+13.10.20130904.1-0ubuntu1, based on r287 (905a99a22) 2013-09-04 Nicolas d'Offay * Switched infographic background at design's request. (4f5821a7f) 2013-09-04 Automatic PS uploader * Releasing 7.81.3+13.10.20130904-0ubuntu1 (revision 285 from lp:unity8). (1e06c3e33) * Releasing 7.81.3+13.10.20130904-0ubuntu1, based on r285 (43abfb022) 2013-09-04 Albert Astals * Remove unneeded role. (cc4e57219) 2013-09-04 Nick Dedekind * Multiple icon/label support for indicators. (aee304ff6) 2013-09-04 Jussi Pakkanen * Use CCache if it is installed. (24765088d) 2013-09-04 mhall119 * Add a little bit of text to the last step of the tour telling the user how to end it and get to their phone. (cec643368) 2013-09-03 Michael Zanetti * load launcher default config from existing dconf key. (f01d24081) 2013-09-03 Lars Uebernickel * Fall back to "ubuntu-mobile" icon theme if $UBUNTU_ICON_THEME is unset. (cff7a4664) 2013-09-03 Michael Zanetti * Use MouseAreas in DashBar to enable clicking again. (948263bec) 2013-09-03 Michael Terry * Switch from image://gicon to image://theme (ea43c0b2e) 2013-09-03 Michael Zanetti * merge trunk (3d752be8f) * make our tests work again with the new Panel (eab0a92cd) 2013-09-03 Nick Dedekind * added unref for icon (7e80e756e) 2013-09-03 Michael Terry * Merge in wallpaper branch again (a2a6340c9) 2013-09-03 Nick Dedekind * fixed up some old variables (cbc4ca370) 2013-09-03 Michael Terry * Add a user property instead of a setUser method (6d2672c29) 2013-09-03 Nicolas d'Offay * Switched background of infographic. (b1efd50f7) 2013-09-03 mhall119 * Add alias to allow hiding the skip link on the Edge Demo, hide it for the final step in the tour (a2293716b) 2013-09-03 Lars Uebernickel * Remove ubuntu-mobile-icons dependency (9e55a7c9e) 2013-09-03 Nick Dedekind * Use MenuContentActivator in tabs menu content (de63196f6) 2013-09-03 Lars Uebernickel * Move ubuntu-mobile-icons to Recommends (3ff19848b) * Fall back to "ubuntu-mobile" icon theme if $UBUNTU_ICON_THEME is unset (1da95d470) 2013-09-03 Nick Dedekind * Fixed typo (b271c0bdf) * Fixed typo (0506e29c8) * increased checkbox size (59bc692cc) 2013-09-03 Automatic PS uploader * Releasing 7.81.3+13.10.20130903.1-0ubuntu1 (revision 277 from lp:unity8). (913bd7577) * Releasing 7.81.3+13.10.20130903.1-0ubuntu1, based on r277 (78ed1a0c4) 2013-09-02 Daniel d'Andrada * Update fake/mock plugins so that "./run --fake" works well again (040db367b) 2013-09-02 mhall119 * One more wording change, recommended by Tingting (df0d0842a) 2013-09-02 Michael Zanetti * fix issues from review (bc6b8f224) 2013-09-02 Pawel Stolowski * Fix the dataChanged index. (deafa96ea) 2013-09-02 Michael Zanetti * debug prints -- (ab2455f52) * workaround quicklist text color. (9f9a1d0a9) * fix bad if (cce46a773) 2013-09-02 Albert Astals * Files i forgot (9622e10b7) * Dash: Make assignments bindings (3004fcc3c) * remove debug (88d88eb6d) * Update the section header on list change events (572c1b9ac) 2013-09-02 Jussi Pakkanen * Use ccache only if compilers are not explicitly set. (34ac336c1) 2013-09-02 Nick Dedekind * removed indicator service files deb install (2a6f2750b) * Removed fixme for slider int->double conversion (4e8dc16d7) 2013-09-02 Albert Astals * Fix the dataChanged index (9a8777507) 2013-09-02 Michael Zanetti * reenable setUser, but only allowing doing that in the greeter session (0fd4b67da) 2013-09-02 Albert Astals * Remove unneeded role (6160492e2) 2013-09-02 Michael Zanetti * remove my name from the tests copyright as I didn't really add anything (3ae5f76e8) * remove more debug prints (772c2e30d) * workaround quicklist text color (96c1a8d44) 2013-09-02 Nick Dedekind * Network access point design changes (b852cc719) 2013-09-02 Michael Zanetti * remove debug output (9b3e5daf5) * update tests (44eced403) * make the launcher backend read it's defaults from dconf (4af43579e) 2013-09-02 Nick Dedekind * fixed indicator tests (a510c7f64) * Added VisibleIndicatorsModel for indicator visibility filter (f5c835369) 2013-08-31 Michael Terry * Add edgeDemoForCurrentUser property to be more qml-like than edgeDemoForUser() (ba246d216) 2013-08-30 Michael Terry * Fix some tests; add a mock SessionManager plugin to avoid actually switching sessions during a test (5a1e855df) * Add support for launching apps from split launcher (b28871573) * First cut at unity-greeter-session-broadcast support, to launch apps from the greeter (a7fd827b8) * Merge in wallpaper branch (8688555f7) * Merge from trunk (78ccb79af) 2013-08-31 Ying-Chun Liu * fix FTBFS. (6496c256a) 2013-08-30 Nick Dedekind * Added reply/activate enabled. (f9d592ed8) 2013-08-30 mhall119 * Tweaks to the wording as recommended on the MP (b5313eab9) 2013-08-30 Ying-Chun Liu * Add B-D to qtmultimedia5. (bb5feb3d2) 2013-08-30 Automatic PS uploader * Releasing 7.81.3+13.10.20130830-0ubuntu1 (revision 275 from lp:unity8). (a81cbd778) 2013-08-30 Nick Dedekind * Merged with trunk (8d0601f12) 2013-08-30 Ying-Chun Liu * some minor fixes. (62f2aeca6) * Fix subtitle. And use Video Component. (7fea47eaf) 2013-08-30 Automatic PS uploader * Releasing 7.81.3+13.10.20130830-0ubuntu1, based on r275 (46e50e908) 2013-08-30 Pawel Stolowski * Implement a virtual 'All' filter option. (65edd41a9) 2013-08-30 Nick Dedekind * reverted unitymenumodel aware VisibleModel (1832ace0a) 2013-08-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ab87cf437) 2013-08-29 mhall119 * Add text to indicate how to end the tour (08ebccf88) 2013-08-29 Michael Terry * Merge from wallpaper branch (350076248) * Have the greeter listen to AccountsService for its background file (f26ddf0bd) * Have AccountsService plugin expose a more Qml-friendly object (b0f36417b) 2013-08-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130829.2-0ubuntu1 (revision 272 from lp:unity8). (c1c8e2e14) * Releasing 7.81.3+13.10.20130829.2-0ubuntu1, based on r272 (0c4cdc919) 2013-08-29 Michael Terry * Implement launcher item backend via AccountsService. (33445d41b) 2013-08-29 Nick Dedekind * Moved cached menu model from indicator to visibleunitymenumodel (1aca4287a) 2013-08-29 Pawel Stolowski * Some more debug. (3277d0486) * Added a comment. (eea38b55d) * Testing. (8658165f2) 2013-08-29 Nick Dedekind * Added cachedunitymenumodel reference counting (54f4d73b5) 2013-08-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130829.1-0ubuntu1 (revision 270 from lp:unity8). (5aeae06d6) 2013-08-29 Nick Dedekind * Indicator visibility moved to VisibilityModel. (db61a4cd8) 2013-08-29 Michael Terry * Merge from trunk (77f8d9c09) 2013-08-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130829.1-0ubuntu1, based on r270 (35d5ea8a9) 2013-08-29 Pawel Stolowski * Merged trunk. (5616be6b5) 2013-08-29 Michael Terry * Make sure greeter and lockscreen backgrounds are always defined, even if the wallpaper preference string is bogus. Fixes: https://bugs.launchpad.net/bugs/1208889, https://bugs.launchpad.net/bugs/1208894. (66f63848a) 2013-08-29 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (cb6d2b208) 2013-08-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130829-0ubuntu1 (revision 267 from lp:unity8). (15e622b34) * Releasing 7.81.3+13.10.20130829-0ubuntu1, based on r267 (08a982c28) 2013-08-29 Bill Filler * add new telephony apps (dialer, messaging, contacts) to launcher and Home scope. (fba59b4d2) 2013-08-28 Michael Terry * Implement edge demos on first boot. (69aaebe2c) * Merge from trunk (00ec39566) * Fix a few enabled/available tweaks (e75661a6d) * Don't allow dragging right edge of dash when demo is active (d1dd86c44) * Add back user variable lost through a bad merge from trunk (1d6a09c2f) 2013-08-28 Michael Zanetti * merge launcher-items (c47c68bfc) 2013-08-28 Jussi Pakkanen * Use CCache if it exists. (4e09b7220) 2013-08-28 Pawel Stolowski * Actually pass show_all_button value from UnityCore when creating filter options. (fd4e062c3) * Updated tests. (da4d7dbd6) 2013-08-28 Andrea Cimitan * Streamline some new HUD interactions to be more consistent with the Unity Launcher. (c3755ee63) 2013-08-28 Automatic PS uploader * Releasing 7.81.3+13.10.20130828.1-0ubuntu1 (revision 262 from lp:unity8). (afd417e71) 2013-08-28 Michael Zanetti * initial work to get the appmanager integrated with the launcher (81d910bb3) * setting the launcher's extensionSize delayed to position the view correctly at the beginning . (e0b237a6e) 2013-08-28 Automatic PS uploader * Releasing 7.81.3+13.10.20130828.1-0ubuntu1, based on r262 (da571583f) 2013-08-28 Michał Sawicz * Raise the exception if typing failed in autopilot. (e74a25122) 2013-08-28 Andrea Cimitan * Filter area fullscreen (1713a8b92) 2013-08-28 Michael Zanetti * enable test for this issue again and add a more detailed comment (676932dfc) 2013-08-28 Pawel Stolowski * Merged trunk. (8287c22f8) 2013-08-28 Nick Dedekind * merged with trunk (8ba4976e3) 2013-08-27 Michael Zanetti * setting the launcher's extensionSize delayed to position the view correctly at the beginning (a52da90b1) 2013-08-27 Michael Terry * Merge from demo branch (508d51d83) * Merge from trunk (e17f083b1) 2013-08-27 Andrea Cimitan * Hide the LauncherPanel when it's really hidden, by changing visible to false. (d9fa8daaf) 2013-08-27 Michael Terry * Some minor nits (bbe4a36bd) * Drop unnecessary include directories (9125ddd30) * Drop a couple unnecessary public: statements (a1b9b1ba4) 2013-08-27 Nick Dedekind * merge with trunk (4ce2a5bf0) 2013-08-27 Andrea Cimitan * Improve logic of hiding launcher (c2256a82e) 2013-08-27 Michael Zanetti * increase minimal dragging width for dismissing apps with left edge (086dd11fe) * increase minimal dragging width for dismissing apps with left edge (5e9176a40) 2013-08-27 Pawel Stolowski * Fix crash on option adding. (4278fbe23) 2013-08-27 Michael Terry * Add readonly 'running' property to EdgeDemoOverlay to try to make tests more reliable (aef1362df) 2013-08-27 Pawel Stolowski * Fixes. (4399b292b) 2013-08-27 Nick Dedekind * Added location indicator defaults. (ca2a2be45) 2013-08-27 Ying-Chun Liu * fix white space. (573dc2316) 2013-08-27 Automatic PS uploader * Releasing 7.81.3+13.10.20130827.1-0ubuntu1 (revision 256 from lp:unity8). (8080737f0) 2013-08-27 Gerry Boland * Fix sidestage applications - they were being ignored in the show-application-surface logic. Fixes: https://bugs.launchpad.net/bugs/1210079, https://bugs.launchpad.net/bugs/1217027. (db537b111) 2013-08-27 Automatic PS uploader * Releasing 7.81.3+13.10.20130827.1-0ubuntu1, based on r256 (299136a29) 2013-08-27 Nick Dedekind * pixel boundary respacing. (fa82bacbf) * Added location indicator defaults (3c45ba706) * Updated indicator widget/source to new indicators (d31ae8c5a) 2013-08-27 Michael Zanetti * unset model in quicklist before closing it. (a54679cf1) * merge trunk (69850dd5c) 2013-08-27 Automatic PS uploader * Releasing 7.81.3+13.10.20130827-0ubuntu1 (revision 254 from lp:unity8). (5ff94b97f) * Releasing 7.81.3+13.10.20130827-0ubuntu1, based on r254 (c3aecfa9a) 2013-08-26 Michael Zanetti * Theme the Quicklist Popover. (474555182) 2013-08-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130826.5-0ubuntu1 (revision 251 from lp:unity8). (63973ecac) 2013-08-26 Albert Astals * Apply expandedIndex on delegate creation (94d920565) 2013-08-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130826.5-0ubuntu1, based on r251 (36a6d73fd) * Releasing 7.81.3+13.10.20130826.4-0ubuntu1 (revision 249 from lp:unity8). (9e78f331a) 2013-08-26 Gerry Boland * Fix sidestage applications - they were being ignored in the show-application surface logic (4d4c3bd42) 2013-08-26 Michael Terry * Merge from trunk (999041492) 2013-08-26 Michael Zanetti * tweak launcher folding and visuals according to feedback from design: (a4557f4ba) 2013-08-26 Bill Filler * revert order of launcher icons to original order (6e3ef3eec) 2013-08-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130826.4-0ubuntu1, based on r249 (3bf04698e) 2013-08-26 Michael Terry * Fix another instance of Q_INVOKABLE/Q_SLOTS mixup (1e1ea542f) 2013-08-26 Pawel Stolowski * Compilation fixes. Generate ShowAllFilterOption ids automatically. (6b468235f) * Merged trunk. (cb1f96e5b) 2013-08-26 Bill Filler * add new telephony apps (dialer, messaging, contacts) to launcher and Home scope. Reverse order of launcher icons so most frequent are at top so they are visible by default (9f6b7de02) 2013-08-26 Michael Terry * Fix stupid typo with usage of Q_INVOKABLE (9db915480) 2013-08-26 Pawel Stolowski * Added ShowAllFilterOption. (6240b0216) 2013-08-26 Nick Dedekind * Abstraction of indicator menu item properties prior to move into common components library. (22ae3c3b9) 2013-08-26 Christopher Lee * Added autopilot-tests for ephemeral, interactive and snap-decision notifications. (5de492862) 2013-08-26 Pawel Stolowski * Bugfixes. (2c12ffae1) 2013-08-26 Michał Sawicz * Add module entry in HudClient's qmldir. (f568fe035) 2013-08-26 Jussi Pakkanen * Let Ninja parallelize itself. (7072cef19) 2013-08-26 Michael Zanetti * only search visible children in findChild, add findInvisibleChild for others. (51035b7f9) 2013-08-26 Albert Astals * Apply expandedIndex on delegate creation (7645fa82f) 2013-08-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130826.2-0ubuntu1 (revision 243 from lp:unity8). (08700b446) * Releasing 7.81.3+13.10.20130826.2-0ubuntu1, based on r243 (ca0b129a4) 2013-08-26 Albert Astals * Don't include QtQML (bdd5cca27) 2013-08-26 Jussi Pakkanen * Let Ninja parallelize itself. (fcb764759) 2013-08-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130826.1-0ubuntu1 (revision 241 from lp:unity8). (0b5c9b507) * Releasing 7.81.3+13.10.20130826.1-0ubuntu1, based on r241 (b4075f6d5) * Releasing 7.81.3+13.10.20130826-0ubuntu1 (revision 240 from lp:unity8). (2e48ade7b) * Releasing 7.81.3+13.10.20130826-0ubuntu1, based on r240 (58436e2c3) 2013-08-25 Michael Terry * Merge from trunk (3720cd3ba) 2013-08-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (aa468a328) 2013-08-23 Michael Terry * Use a special marker to note the defaults list instead of an empty list (1e92c4c2e) * Save pinned status too, switch data type to be a list of dictionaries rather than a list of strings (047528f06) 2013-08-23 Nick Dedekind * respaced icons (d63867c32) 2013-08-23 Michael Zanetti * fix dnd test (1ba7ec9b3) * merge trunk (cfda37055) 2013-08-23 Andrea Cimitan * Rewrite the if (1ee72414f) 2013-08-23 Michael Terry * Always save stored apps list to storage, rather than just when a pinned app is turned off -- apps may have just changed order (b700d05d5) 2013-08-23 Andrea Cimitan * This is better, otherwise it's always enabled apart when you drag... (4880a7db1) * Enable the InputFilterArea only when the dragarea is not being dragged (easier logically than the timer), don't break the binding with mouseOver (51093ade1) * Enable the input filter area only when the timer is running (so the swipe ended) (cc14230f3) * Block underneath input when hud button is visible (85bed56c1) * Visually react on hud click (7f390c74b) 2013-08-23 Michael Terry * Merge fromt trunk (148c58f37) 2013-08-23 Andrea Cimitan * Really hide the launcher when hidden (d6c379fa6) 2013-08-23 Ying-Chun Liu * add Movie preview. (bf461a21f) 2013-08-23 Andrea Cimitan * 1. HUD button now persistent on screen for 5 seconds 2. HUD button now appears with a longer drag (units.gu(8)) 3. HUD button disappears touching outside it 4. HUD button responds on clicks 5. HUD button is now centered on phones and small tablet (till Nexus 7 for example) (e45b29725) 2013-08-23 Pawel Stolowski * Changed the type of setActive argument from QVector::size_type to unsigned int. (a8ae7fdb8) 2013-08-23 Albert Astals * Don't include QtQML (230e9589d) 2013-08-23 Nick Dedekind * removed line (25dbef40f) * removed redundant code (c053af463) * merged with trunk (616dc46db) 2013-08-23 Michael Zanetti * add count and progress overlay information to real model too. (127a1d7d3) 2013-08-23 Pawel Stolowski * Make index int. (7dd1fe094) 2013-08-23 Nick Dedekind * removed UnityMenuModelCache refing code. (113177bc6) 2013-08-23 Michael Zanetti * add empty setUser to allow compiling in jenkins again until the branch that matches unity-api is ready to land. . (e04bddb4c) 2013-08-23 Pawel Stolowski * Merged trunk. (3d1456b8c) 2013-08-23 Michał Sawicz * Raise the exception when typing failed 5 times. (577eaad88) 2013-08-22 Michael Terry * Avoid iterating using indexes where possible (577fe5b6e) * Don't require that apps be stored to look up information about them (6c4f4d631) * Whoops, take out testing line (1916441d7) * Move display power checking out of the EdgeDemoOverlay class into the shell (fe2b26918) * Fix debian build, move hardcoding of CMAKE_INSTALL_LOCALSTATEDIR to debian/rules (5997e63e8) * Fix tests, add one for the none case (35d7b3ff9) 2013-08-22 Nick Dedekind * removed FIXMEs (5d70a98a9) 2013-08-22 Michael Terry * Move all edge demo logic into a new component that handles the flow and creates objects dynamically (a31fbb6ed) 2013-08-22 Michael Zanetti * add empty setUser to allow compiling in jenkins again until the branch that matches unity-api is ready to land. (2fbd7fff3) 2013-08-22 Nick Dedekind * merged with lp:~mzanetti/unity8/findInvisibleChild (4216fadd6) * merged with trunk (14857379a) * More visibility changes. Visibility test. (6048b2524) 2013-08-22 Michael Zanetti * only search visible childs in findChild, add findInvisibleChild for others (57b698bef) 2013-08-22 Michael Terry * Drop __-prefixed private properties, moving them into a QtObject (7040db078) 2013-08-22 Pawel Stolowski * Use unsigned int as index for setActive argument. (c077fabde) 2013-08-22 Michael Zanetti * delay move operations if the start dragging operation is running (691883c5d) 2013-08-22 Michael Terry * Fix a bunch of review nits (1c4480159) * Use Ubuntu official orange (e6e431b17) * Use aliases for labels instead of defining new properties (1dbd9171e) 2013-08-22 Michael Zanetti * merge trunk (a983f0273) 2013-08-22 Michael Terry * Add new strings to pot file (408540a0b) 2013-08-22 Nick Dedekind * Moved Messaging to current indicators. (f932c2ce6) 2013-08-22 Michael Zanetti * protect us against crashes if the backend emits signals for apps we don't know (d7f22acd9) 2013-08-22 Michał Sawicz * Add module entry in HudClient's qmldir. (38c71033e) 2013-08-22 Michael Zanetti * connect signals from backend (1c0c70d08) 2013-08-22 Pawel Stolowski * Handle category order change. (e14c73611) 2013-08-22 Michael Zanetti * add count and progress overlay information to real model (0b425d1c3) * add missing copyright (b8ce254f6) * revert unwanted change (3dcad5a75) * fix it (79ac3e596) * merge quicklist theming branch (7d9da7176) * unset model before closing quicklist (a08d42102) * added quicklist popover's arrow asset (f404864a8) * decrease folding area height by one gu (5252824aa) * cleanup (3dfabbd03) * add a test to drag vertically only to trigger this codepath in the test (c1e34fd9a) 2013-08-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (bbab3cec4) 2013-08-22 Automatic PS uploader * Releasing 7.81.3+13.10.20130821.2-0ubuntu1 (revision 233 from lp:unity8). (50862a499) 2013-08-22 Michael Zanetti * delay move operations if the start dragging operationis running (cacf19f84) 2013-08-21 Automatic PS uploader * Releasing 7.81.3+13.10.20130821.2-0ubuntu1, based on r233 (f1e7a15bb) 2013-08-21 Michael Terry * Fix tst_Shell.qml (5d2fe148a) * Fix tst_DemoOverlay.qml to match latest changes (f1bbb50af) * Merge from trunk (9d9c33816) 2013-08-21 Nick Dedekind * Moved all of the menumodel specific code from MenuItems to MenuFactory components. (dc81012fb) 2013-08-21 Michael Terry * Listen to display-power-changed rather than system-power-changed signals when showing the greeter; ignore such signals when the proximity sensor is active. Fixes: https://bugs.launchpad.net/bugs/1214477. (09b6c6de5) * Turn off animation when display is off (3c8fd5f29) * Merge proximity branch (58964f602) * Fix indentation on Status enum (4f68d7090) * Show final edge demo a smidge faster (46b25c588) * Use UbuntuAnimation durations (dfc21ec0b) * Make launcher demo transitions smoother (cac9b5925) * Merge from trunk (cf44c4702) 2013-08-21 Automatic PS uploader * Releasing 7.81.3+13.10.20130821.1-0ubuntu1 (revision 230 from lp:unity8). (dde0fa0b9) 2013-08-21 Michael Terry * Depend on lightdm (8fe17f957) 2013-08-21 Pawel Stolowski * Added a role for accessing progress-source property of categories. (74c685c74) 2013-08-21 Michael Zanetti * fix count emblem width (5da3acb62) 2013-08-21 Michael Terry * Fix racy start of AccountsService (7d72d31d6) 2013-08-21 Michael Zanetti * update according to the changes in the prerequisite branch (d597ba25c) * merge trunk (f7ce8478e) * reenable launcher hiding (682da6a9a) 2013-08-21 Automatic PS uploader * Releasing 7.81.3+13.10.20130821.1-0ubuntu1, based on r230 (d76754505) 2013-08-21 Michael Zanetti * remove the helper lines again (428407bad) * add some more workarounds regarding the dropping at the of the list (831b06d6f) * dim less when folding (57a3ca204) 2013-08-21 Albert Astals * Fix insertions/removals on the qlimitproxymodel . Fixes: https://bugs.launchpad.net/bugs/1213959. (5d43ac0c0) 2013-08-21 Nick Dedekind * Added/Updated legacy network indicator components to use with new indicator backend. (9847f82ca) 2013-08-21 Albert Astals * space-- (dc12ab706) 2013-08-21 Michał Sawicz * Update runtime deps in the build script. (e7141ee18) 2013-08-21 Automatic PS uploader * Releasing 7.81.3+13.10.20130821-0ubuntu1 (revision 224 from lp:unity8). (2694e658a) 2013-08-21 Michael Zanetti * add some checks if we actually clicked an item or in the spacing between them (0849e97cc) * fix comment (c6e6476f1) * temporary commit: more tweaks to match design closer (098b0df0e) 2013-08-21 Nick Dedekind * removed chewie network references (5d8953310) 2013-08-21 Michael Zanetti * allow testing at 11:13. Old code failed because the text actually says "11:13 AM". (6cb758195) * allow testing at 11:13. Old code failed because the text actually says "11:13 AM" (33280899f) * theme quicklist popover. requires: https://code.launchpad.net/~mzanetti/ubuntu-ui-toolkit/themable-popover/+merge/181078 (c2fa19f39) 2013-08-21 Automatic PS uploader * Releasing 7.81.3+13.10.20130821-0ubuntu1, based on r224 (4dbd34937) 2013-08-21 Michael Zanetti * remove home icon size by half a gu (89677a3d9) * remove highlight on pressed (d07a47e09) * increase dragged item's opacity to 90 percent (e077c5547) * small fixes (2113423ec) * simplify (f0edcaacb) * tweak launcher folding according to feedback from design: (9e104711c) 2013-08-21 Michał Sawicz * Don't require a particular version of notifications-impl. (077a46eaf) * Fix runtime dependencies in build script. (58534a146) 2013-08-20 Michael Terry * Whoops, fix argument name to match the Qml plugin (78ec46036) 2013-08-20 Gerry Boland * Typo fix in FrequentlyUsedAppsModel. (c348b710b) 2013-08-20 Ted Gould * Mark indicators-client as providing an indicator-renderer. (66167c605) 2013-08-20 Michael Terry * Use enums in test too (480076288) * Add a Status enum (8accd3e3c) 2013-08-21 Gerry Boland * Typo fix in FrequentlyUsedAppsModel (c5d63c0bb) 2013-08-20 Michael Terry * And update suspend qmltest (3c5f8cd94) * Update mock Powerd too (c7b1ddb66) * Listen to display-power-changed rather than system-power-changed signals when showing the greeter; ignore such signals when the proximity sensor is active (d777ec617) 2013-08-20 Ted Gould * Merge trunk (05cc937c4) * Move to the Unity 8 package (7997d5c2c) 2013-08-20 Nick Dedekind * Added network components for new indicators (acff48e96) 2013-08-20 Michael Terry * Update author info (8db3b1347) * Merge from demo branch (cc911b975) * Merge from trunk (61173c70b) * Add tests for launcher backend (0bac48847) 2013-08-20 Michael Zanetti * added support for count emblems and progress overlays on the launcher. (78832edf6) 2013-08-20 Nick Dedekind * Renamed indicator-messaging to indicator-messages. (5e839a441) 2013-08-20 Albert Astals * Merge (13e3d9076) * Explain the code a bit (503eb2c97) 2013-08-20 Pawel Stolowski * Add role for getting filter options model. Add method to activate option based on index or id. (bf287c2a2) 2013-08-20 Nick Dedekind * Renamed indicator-messaging -> indicator-messages (322ca1a40) 2013-08-20 Albert Astals * Fix insertions/removals on the qlimitproxymodel (d5f8aefde) 2013-08-20 Nick Dedekind * Added flatmenuproxymodel pass-through signals from qmenumodel. (0cc812710) 2013-08-20 Michael Terry * Prevent non-lightdm users from reading launcher item list (98a09ce6f) 2013-08-20 Michael Zanetti * make the count emblem font bold, move progress bar down half a gu (19b9e9b4b) 2013-08-20 Pawel Stolowski * Allow setting active flag based on option id. (c62924793) 2013-08-20 Michael Zanetti * remove debug print (da199191d) * fix broken release handler (153ca5d25) * add some checks if we actually clicked an item or in the spacing between them (f1f4370ff) * revert last commit (f1459fbfc) * don't sample too many pixels :) (3c9e12ff7) * cleaner clipping (17ebfaa6d) 2013-08-20 Automatic PS uploader * Releasing 7.81.3+13.10.20130820.2-0ubuntu1 (revision 217 from lp:unity8). (0b6e87743) 2013-08-20 Michael Zanetti * keep count and progress while dragging (bfda2b6b5) * small ui tweaks after feedback from design (befc788f7) * tweaks (4883e4110) 2013-08-20 Pawel Stolowski * Added setActive method to the GenericOptionsModel to allow changes to 'active' flag of filter option. (09ee339e9) 2013-08-20 Automatic PS uploader * Releasing 7.81.3+13.10.20130820.2-0ubuntu1, based on r217 (6a4a50650) 2013-08-20 Michael Zanetti * initial support for quicklists (25632536d) 2013-08-20 Automatic PS uploader * Releasing 7.81.3+13.10.20130820-0ubuntu1 (revision 215 from lp:unity8). (a18a18877) 2013-08-19 Michael Terry * Fix some nits, making the branch mostly work (90611f54f) 2013-08-20 Automatic PS uploader * Releasing 7.81.3+13.10.20130820-0ubuntu1, based on r215 (08d527e4f) 2013-08-19 Michael Terry * Allow switching the launcher user (dda4ff511) 2013-08-19 Michal Hruby * Hide rating widgets when scope provides rating set to < 0.0. Also fallback to regular preview image if there are no more_screenshots specified. (2d8a97d20) 2013-08-19 Michael Zanetti * update rendering layer when something changes (a5f693852) * adjust sizes (bde9c1183) * added support for count emblems and progress overlays (a8c472ca5) 2013-08-19 Pawel Stolowski * Bump required version of libunity. (3c01aab42) 2013-08-19 Michal Hruby * Add a test for hiding components when rating is negative (3b35a59cc) * Fix broken layout (f9f23fb26) 2013-08-19 Pawel Stolowski * Added "options" role to the Filters model. (a5b29faa3) 2013-08-19 Michael Zanetti * remove unrelated whitespace change (4457f39f5) * hasAction -> clickable to reflect changes in unity-api (43894d4b0) * remove obsolete check for non-clickable item (2dd4fdf19) * first support for quicklists (bb154016a) 2013-08-19 Pawel Stolowski * Added RoleProgressSource to Categories model. (84d7c6488) 2013-08-19 Michael Zanetti * Add Drag'n'drop support to Launcher (fc62c980b) 2013-08-19 Nick Dedekind * check for valid label (ccbe32057) * merged with trunk (4b718698a) 2013-08-19 Michal Hruby * Remove the override for Apps available for download, click scope provides these now. (357f9a5a8) 2013-08-19 Michael Zanetti * disable dragging of items with an angle > 20 degrees add an animation for dragging of items with an angle > 0 and < 20 remove foldingMouseAreas as they are not needed any more after all the other dnd changes (2ec9e8483) 2013-08-19 Andrea Cimitan * Implement background changing through gsettings. Make sure it does fallback to default background when needed. (22f302ede) 2013-08-19 Michael Zanetti * cleanup (a02fbf826) * only apply flicking when in postDragging state (6eb618c08) * also make dropping at the second last position smoother (36450c247) * make dropping at the end of the listView more smooth (f5beb8b6c) 2013-08-19 Albert Astals * Make sure minYExtent is updated before setting the new content height (9925da6dd) 2013-08-19 Michal Hruby * Remove the override for Apps available for download, click scope provides these now (dd7fd3183) 2013-08-18 Michael Terry * First cut at launcher-items support (0ee222d1b) 2013-08-17 Michael Zanetti * invert it again (b74113329) 2013-08-16 Michael Zanetti * fix relasing before dragging, improve test (635ca9726) * use new launcher background asset (94cff97aa) * take originY into account for progressiveScrolling (63f9794f1) 2013-08-16 Nick Dedekind * left+right indicator labels (817b7c3d3) 2013-08-16 Albert Astals * Adding+Removing items should not change our contentY (d732470e8) 2013-08-16 Michał Sawicz * Fix generic preview wrapping and force rich text parsing. (dc9fcf92d) 2013-08-16 Michal Hruby * Move all review related items into a single group (dc488a7b7) * Fix tests (262499049) 2013-08-16 Michael Zanetti * add whitespace (b1f0d3005) 2013-08-16 Automatic PS uploader * Releasing 7.81.3+13.10.20130816.3-0ubuntu1 (revision 208 from lp:unity8). (2f7359930) 2013-08-16 Michael Zanetti * use properties instead of common calculations (ef91685e0) 2013-08-16 Michal Hruby * Don't introduce extra prop (239e0a34a) 2013-08-16 Michael Zanetti * group anchors (629e0d07b) * drop empty line (9037a1245) * handle dropIndicator's state in the other states too (31ef59503) 2013-08-16 Ted Gould * Provide the indicator-renderer so that indicator packages don't give warnings about not having one (fb49d65ab) 2013-08-16 Michael Zanetti * use UbuntuNumberAnimation where appropriate (6158ea9ae) * limit drag area size to avoid brakage when dragging far outside the window (d46e63973) * fix comment (f63fd90c9) * remove unneeded listview layoutdireaction property (6c7af660e) 2013-08-16 Michal Hruby * Hide rating widgets when rating is < 0 (2d6685046) 2013-08-16 Michael Zanetti * LauncherListDelegate -> FoldingLauncherDelegate (1a3556e7c) * make folding after dragging sequential to expanding to avoid weird jumpiness (4e1109b4c) 2013-08-16 Albert Astals * Update tests (e2c98055a) * Make sure minYExtent is updated before setting the new content height (1a695db05) 2013-08-16 Michael Terry * Merge from demo branch (23382982d) * Merge from trunk (4dc4c0c89) 2013-08-16 Nick Dedekind * Fixed indicator spacing (ca52a0404) * merged with trunk (d9d262c2a) 2013-08-16 Automatic PS uploader * Releasing 7.81.3+13.10.20130816.3-0ubuntu1, based on r208 (0c82f63c8) 2013-08-16 Nick Dedekind * multi-icon panel indicators (d2f03754b) * Remove time & battery indicator service info. (d2a521656) 2013-08-16 Michael Zanetti * remove debug print (3db6f6a85) 2013-08-16 Nick Dedekind * Fixed network indicator password dialog not appearing. Fixes: https://bugs.launchpad.net/bugs/1212730. (28c614022) 2013-08-16 Michael Zanetti * remove duplicate dummy items again (15c255cff) * added drag'n'drop tests (890f0e076) 2013-08-16 Nick Dedekind * removed sound indicator (9a3a66fa1) * Fixed network indicator password dialog (cab25dc4b) 2013-08-16 Michał Sawicz * Drop TODOs for s/\n/
/g. (98f0260e8) * Replace newlines with
for RichText. (a7caea99e) * Work around QTBUG-33020 - force re-layout of RichText on width change. (c2da3aca0) * merge trunk (8bcb15482) 2013-08-16 Michael Zanetti * cleanup (ffcb7534a) * reenable non-live rendering of delegates, fix update on icon change (ff421f6c5) * reenable hiding of the panel, fix panel.moving condition (cb1a954d9) * fix itemCenterY offset, invert for phone again (409bafb46) * drop quicklist as it doesn't do what we need yet (2837e9c63) * fix max contentY when doing progressive scrolling (a7ea6aa8e) * transitions now match design (d9ef42ce9) 2013-08-15 Michael Zanetti * adjust darkening of shell when launcher is shown (aee618311) * fix transitions (796909a88) * various fixes: (5c06467b1) 2013-08-15 Nick Dedekind * Removed battery & time indicators (f7a2e7e13) * Indicator visibility based on connection state with backend. Filter invisible indicators from tab model. (9149a617f) * Added mapToSource mapFromSource (f4717ef84) * Introduced indicator visibility & model::setData (5e49afc32) 2013-08-15 Michael Zanetti * make entering text in lockscreen tests more robust. Fixes: https://bugs.launchpad.net/bugs/1212580. (ed4a2a7d9) * dnd seems to do quite well now :) (8493506b8) * adjust aspect ratio of icons (d441dd6aa) * fix undefined property (be85892ed) * more fixes (7d7e75dec) * small fixes (8a08d3376) * make entering text a bit more robust (30f72f865) * enable clipping on unfoled list while dnd (0e2d5259d) 2013-08-15 Michał Sawicz * Wait for activeFocus before typing in autopilot tests. Fixes: https://bugs.launchpad.net/bugs/1212580. (3b27ffa36) 2013-08-15 Michael Zanetti * coding style (f15835d33) * merge trunk (c9cbd4d7c) 2013-08-15 Michał Sawicz * Wait for activeFocus before typing. (c473d2c3e) 2013-08-14 Albert Astals * Fix crash in the shell test (8c1f69131) 2013-08-14 Pawel Stolowski * Bindings for filters. (252a1a36b) 2013-08-14 Michal Hruby * Implement overrideResults() method, which allows us to seamlessly combine real scope data with mocked data. (5dfb0c640) 2013-08-14 Automatic PS uploader * Releasing 7.81.3+13.10.20130814.3-0ubuntu1 (revision 197 from lp:unity8). (dfc7ab0f6) 2013-08-14 Albert Astals * Dash category expansion. (137f3fe72) 2013-08-14 Michael Terry * Add a test for the Powerd plugin shell support. (f4fead7cf) * Define the 'build' target as PHONY so make doesn't get confused by our 'build' script. (af1b56265) 2013-08-14 Michael Zanetti * reenable folding while dnd (c9a45ae68) 2013-08-14 Automatic PS uploader * Releasing 7.81.3+13.10.20130814.3-0ubuntu1, based on r197 (3799f1938) 2013-08-14 Pawel Stolowski * Don't store roles in Filters. (96ff3d1db) * Removed *changed() notifications for Filter properties and marked them CONSTANT. (0431d6004) * Don't keep roles hash, just create it on the fly in roleNames(). (995ff0836) * Make ctor of AbstractFilterOption protected. (a532274dd) 2013-08-14 Michael Terry * Enumerate safe end-states for wallpaper (2f04183fe) 2013-08-14 Nick Dedekind * Transition Unity.Indicators to UnityMenuModel. (3fe825bac) 2013-08-14 Michal Hruby * Add a TODO (368695a57) * Remove a few unneeded imports (b26da1a0e) * Remove preview-related stuff from DashApps, should be part of GenericScopeView (7d7daeab0) * Merge trunk (cba228a55) 2013-08-14 Albert Astals * Fix crash in the shell test (cc8113da0) * comment on duration and easing (229856efb) 2013-08-14 Andrea Cimitan * Removed duplicated cmakelist entries (b29b39bb8) 2013-08-14 Albert Astals * Don't crash in non created indeces (f24a89670) * Make sure noone is passing us "bad" item heights (291e27a16) * Remove empty comments (953242938) 2013-08-14 Nick Dedekind * Replaced indicator menu listView with tabs view. (bc86943c7) 2013-08-14 Ted Gould * Upstart signals to control indicator services. (e54fd9733) 2013-08-14 Nick Dedekind * Copy/Move Indicators to IndicatorLegacy, modify Indicators to work with new backend. (82f844dfa) 2013-08-14 Automatic PS uploader * Releasing 7.81.3+13.10.20130814.1-0ubuntu1 (revision 193 from lp:unity8). (f690181f7) 2013-08-14 Michal Hruby * Re-enable the isCurrent binding (932c82baf) 2013-08-14 Automatic PS uploader * Releasing 7.81.3+13.10.20130814.1-0ubuntu1, based on r193 (2b39a6a19) 2013-08-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dcb0a4d30) 2013-08-13 Michael Terry * Make sure greeter and lockscreen backgrounds are always defined, even if the wallpaper preference string is bogus (d54ad8150) * Add back a test for the plugin itself, now that I got it to work (36b8dfa14) 2013-08-14 Michal Hruby * Use path if authority returns empty string (4f1a863c3) 2013-08-13 Michael Terry * Only try to connect to the dbus DisplayManager if we have a defined XDG_SESSION_PATH (11fb893b1) * Mark the 'build' debuild target as PHONY, since we have a build script with same name (ae349a5b9) * Have unity8-greeter.desktop not rely on ubuntu-touch-session, make it just a normal desktop greeter (fdb447421) 2013-08-13 Ted Gould * Making a qWarning() (15d463a5f) 2013-08-13 Andrea Cimitan * Merged mzanetti edit (4993aef1b) 2013-08-13 Michał Sawicz * Add AppPreview. (439068376) 2013-08-13 Andrea Cimitan * Moved GSettings mock dir (a97561096) 2013-08-13 Albert Astals * Do the maximizeVisibleArea animation at the same time that the unfilterIne (bb6f147bc) * Animate the growing of height if on screen (d90fbf758) 2013-08-13 Automatic PS uploader * Releasing 7.81.3+13.10.20130813.1-0ubuntu1 (revision 189 from lp:unity8). (d1fc0b81c) 2013-08-13 Nick Dedekind * Use key from indicator service file to source indicator positions. (a2f71c19d) 2013-08-13 Michael Zanetti * dropped empty line (42e483c28) * improve comment (d39606145) 2013-08-13 Nick Dedekind * Added theme (e82ecc998) 2013-08-13 Automatic PS uploader * Releasing 7.81.3+13.10.20130813.1-0ubuntu1, based on r189 (f5905e133) 2013-08-13 Michał Sawicz * Fix wrapping in generic preview and force richtext formatting. (b0bf184b3) * Add debug logging to passphrase entry. (c67a52ebe) * Add some debug logging to autopilot passphrase entry. (8a5c44d74) 2013-08-13 Michael Zanetti * bring back the dummy image to check if wallpaper is valid (ead6a9f59) 2013-08-13 Andrea Cimitan * Correct test... (0609c2311) * Extend test for background (3685b2362) 2013-08-13 Albert Astals * Merge (f44966575) 2013-08-13 Andrea Cimitan * Removed stuff from the greeter, don't needed, made shell.background reaonly alias of crossfadeimage used in the shell (1f87791a4) 2013-08-13 Nick Dedekind * merged with trunk (2cbd0287f) 2013-08-13 Albert Astals * Remove unneeded stuff from CMakelists.txt (6e377d617) 2013-08-13 Nick Dedekind * Review fixes (3ef9c7e93) 2013-08-13 Pawel Stolowski * Don't use std::string in Filter's signals. (6f5e21854) 2013-08-13 Michał Sawicz * Merge trunk. (9bf2db8ea) * The toolkit has a progress label now. (b9f25c736) 2013-08-13 Pawel Stolowski * Various minor cleanups. (865b871c2) 2013-08-13 Andrea Cimitan * Merged trunk (f15e5a1e1) 2013-08-13 Albert Astals * Remove unneeded stuff from CMakelists.txt (4bf9816a4) 2013-08-13 Michael Zanetti * merge trunk (0329f7840) 2013-08-13 Michał Sawicz * Don't use i18n in tests, we're not loading any catalogs anyway. (e58b09d6b) * Use initializer list to initialize m_active. (fcbade529) * Initialize m_adaptor and fix a potential crash. (e5bc2cf00) * Clean up CMakeLists.txt files. (77a7480ca) 2013-08-13 Michael Zanetti * don't scale the EARLY ALPHA warning text bigger than the screen is. (c1bcd80cb) 2013-08-13 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (ce4c599a1) 2013-08-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130812.1-0ubuntu1 (revision 184 from lp:unity8). (f43008a4e) * Releasing 7.81.3+13.10.20130812.1-0ubuntu1, based on r184 (f22a37fcc) 2013-08-12 Michael Terry * Drop no-longer needed build-deps (4ac95dfe6) * Fix copyright headers (353a44d5a) * We don't install typeinfo for the mock plugin (67c9c83fd) * Fade out overlay when skipped (358e25497) * If edge is 'none', allow a skip-click anywhere on the overlay (99a07405d) * Fix accounts-service/policykit interaction (e88422363) 2013-08-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130812-0ubuntu1 (revision 182 from lp:unity8). (40e3d5df7) 2013-08-12 Michael Zanetti * don't scale the EARLY ALPHA warnign text bigger than the screen is (5bdeaf86b) 2013-08-12 Andrea Cimitan * Removing debug... (8de198b6a) * Add test for the wrong bg... (99eff3905) 2013-08-12 Pawel Stolowski * Merged trunk. (c3e124df3) * Basic test for dataChanged signal. (76f5c0221) * Custom roles start from Qt::UserRole. Support Qt::DisplayRole. (80c687874) * Use proper models for filter options: created GenericOptionsModel and UnityOptionsModel + RatingOptionsModel. Removed CombinedFilterOption. Lots of other refactorings. (066af9414) 2013-08-12 Michael Zanetti * preserve lockscreen's background wallpaper's aspect ratio. Fixes: https://bugs.launchpad.net/bugs/1208892. (0bfda689e) * load defaultBackground if the setting is empty (309ebd33f) 2013-08-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130812-0ubuntu1, based on r182 (b233c835e) 2013-08-12 Andrea Cimitan * Still binding loop (83fd0fabb) 2013-08-12 Albert Astals * Fix uses of uninitialized values reported by valgrind. (94d749c23) 2013-08-12 Michael Zanetti * preserve lockscreen's background wallpaper's aspect ratio (ec83aacc9) 2013-08-12 Andrea Cimitan * Added remaining files (9f951d6cb) * More mistakes (66f01ad25) * Ugly code pushed somewhere (e8d32a0d2) 2013-08-12 Michał Sawicz * Make infoHintsHash const. (87ed2b0c7) * Allow setting empty path and service. (f67d04733) * Make some members/arguments const and add serviceReadyChanged signal. (97ef592b1) * Fix MockDownloadTracker. (127ad931f) 2013-08-12 Michal Hruby * Fix AP tests (d327fc10f) 2013-08-11 Michal Hruby * Allow searching in mocked models (a0a7e1f7f) * Tiny fixes (7850c2006) 2013-08-10 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (c7affa32c) 2013-08-09 Michal Hruby * Make running apps work again (a28375382) * Use proper uri in mocked desktop file models (faa1ae65d) 2013-08-09 Michael Terry * Merge from trunk (fbbd0a01a) 2013-08-09 Nick Dedekind * Indicator position moved to service files. (217e58e49) 2013-08-09 Automatic PS uploader * Releasing 7.81.3+13.10.20130809.1-0ubuntu1 (revision 179 from lp:unity8). (a90e4a0e1) * Releasing 7.81.3+13.10.20130809.1-0ubuntu1, based on r179 (495a3917c) 2013-08-09 Michal Hruby * Merge trunk (56e764e33) 2013-08-09 Michael Terry * Fix some review issues (6ee8d3c40) 2013-08-09 Michal Hruby * Throw away references if override model is destroyed (d8f94b0aa) * Set phone form factor for scope requests. (15882de41) * Update count when overridden model count changes (98cdd9527) * Actually fix the activation (956eaba04) 2013-08-09 Michał Sawicz * Make the grid of buttons non-interactive. (5e385bbf0) * Add support for plurals and update the translation template. (c2dc269d3) 2013-08-09 Michal Hruby * Fix application activation (d6c3f9dbc) 2013-08-09 Michał Sawicz * Update translation template. (66647ae65) * merge support-plurals (1277de9b6) * Simplify AppPreview tests. (ce9c47be5) * Fix VideoPreview.playable. (ce9ef7267) * There's no support for clicking on image in GenericPreview.qml, also fix aspect ratio in video preview. (0390ee64f) * Remove wrong TODO. (e67fcd3e6) * Undo a color change in DashPreview.qml. (cde4ee668) * Undo unrelated changes. (7e7a60cf1) * Use anchors instead of sizes. (246fa3a1f) * Tweak style and reorder PropertyChanges to match. (2a720487c) 2013-08-09 Michal Hruby * Revert the timer removal (6067a4640) 2013-08-09 Michał Sawicz * Use anchors instead of sizes. (16cbb60cf) * Crop screenshots, remove leftovers and tweak style. (2e9d61710) * Only enable the InverseMouseArea when editing and add some FIXMEs around it. (b266b3a7c) * Suppress warnings, clear the call array in cleanup(). (2de0d76f3) * Rename files, fix some includes and add a FIXME in DownloadTracker (64aad43ab) * Fix DownloadTracker's style. (2a7bec911) * Fix DownloadTracker properties. (eb081ff05) * Disambiguate "item". (d5e1bfa4a) * Add support for plurals and update the translation template. (9ee24f3dd) 2013-08-09 Albert Astals * Fix test (0b2c935ed) 2013-08-09 Michał Sawicz * merge trunk (8182fb8e9) * Merge app-preview (64b865895) 2013-08-09 Automatic PS uploader * Releasing 7.81.3+13.10.20130809-0ubuntu1 (revision 176 from lp:unity8). (0b48d4e92) * Releasing 7.81.3+13.10.20130809-0ubuntu1, based on r176 (c210d5b91) 2013-08-08 Michael Terry * Use a lightdm.conf.d file to enable unity8-greeter rather than postinst/prerm stanzas (3ac071cf5) * Fix syntax of execute_process to only use one COMMAND at a time (b6829c28e) 2013-08-08 Michał Sawicz * Prepare unity8 for cross-building. (963a51843) 2013-08-08 Michael Terry * Drop accidental 'Finish' label on the first demo screen (ce8246508) * Merge from trunk (5f72b85ff) 2013-08-08 Michał Sawicz * Require :any python versions. (a30533ae6) * Only build .qmltypes if not cross-compiling. (12d30bf98) 2013-08-08 Michael Terry * Use when installing symlink (d16c696f1) 2013-08-08 Automatic PS uploader * Releasing 7.81.3+13.10.20130808-0ubuntu1 (revision 174 from lp:unity8). (8e8d35869) 2013-08-08 Michal Hruby * Fix whitespace (1cc7367d7) 2013-08-08 Albert Astals * sectionDelegates get the delegateIndex first as -1 and then to the correct value (f580988c3) * Test for the layout() call in there (e72ae6629) 2013-08-08 Automatic PS uploader * Releasing 7.81.3+13.10.20130808-0ubuntu1, based on r174 (df05dac2c) 2013-08-08 Albert Astals * Implement+test the maximizeVisibleArea function (2074cdae3) * asset by design (3c679befd) 2013-08-08 Michael Terry * Install AccountsService plugin and related files (c75754774) * Remove AccountsService plugin test for now. Can't get it to work in chroot, will try again at a later time. (b8a17596b) 2013-08-08 Albert Astals * merge ifs (cbbf8169e) 2013-08-08 Michael Terry * Test powerd plugin in tst_Shell.qml (3eb3738db) 2013-08-08 Albert Astals * Make readonly (84b5cd520) 2013-08-08 Nick Dedekind * Workaround for non-deletion of indicator page menu items. Fixes: https://bugs.launchpad.net/bugs/1183065, https://bugs.launchpad.net/bugs/1206991. (dbafbfa70) 2013-08-08 Albert Astals * Simplify a bit the toggle expanded logic (3ebd18261) 2013-08-08 Pawel Stolowski * Support Filter's roles in Filters model. (dc77e47cb) 2013-08-08 Nick Dedekind * Added comment to queuedconnections. (658be487c) 2013-08-08 Albert Astals * LVPWH: Fix regression handling the sticky top section culling (d15c4c297) * Don't change this file at all (202453c21) 2013-08-08 Nick Dedekind * QTBUG-32859 workaround (47d1c18f3) 2013-08-08 Albert Astals * Make the Header text cut again (c23aae02b) 2013-08-08 Michał Sawicz * Re-enable battery slider test. (3ffbc5b33) 2013-08-08 Pawel Stolowski * Merged trunk. (a83983a5a) 2013-08-08 Michal Hruby * Add missing switch case (ab6cfbc2f) * Rename overrideCategory to overrideResults (4a3183d02) * Make DashHome use GenericScopeView (0650a2741) * Clean up a little (9eb4c2997) 2013-08-08 Albert Astals * Merge lp:~aacid/unity8/lvwph_maximizeVisibleArea (4c48c20dc) * Merge lp:~aacid/unity8/fix_lvwph_topsectionitemculling_regression (069001552) * whitespace (77c168ac7) 2013-08-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (f7b0c6359) 2013-08-07 Ted Gould * Being anal about whitespace (2a8f51895) 2013-08-07 Michal Hruby * Derive apps scope from GenericScopeView (373a2c218) 2013-08-07 Ted Gould * Use the sync command so that we don't need a main loop (9a5c18840) * Only emit if we can connect to upstart (2535deb16) * Lie about the type some to trick the compiler (b1c8ba482) 2013-08-07 Albert Astals * Account for non first items of a section having to move down a bit more to not underlap the section sticky item (57ba5c12c) * whitespace (d0e9e79e7) 2013-08-07 Ted Gould * Emitting the signals based on what state we're changing to. (6f2eb617e) 2013-08-07 Albert Astals * Take into account the case where the header is half shown (8f13ac5b8) 2013-08-07 Ted Gould * Put the data in the wrong object (78f0d77ad) * Clean up when we're destroyed (e5e440dd6) * Get the upstart proxy in the private data (9a701bc44) * Move the pkg check deeper down the stack (960f4f075) * Adding in the build deps needed (9fc5775a7) * Find the libupstart libs needed (8ed01a692) 2013-08-07 Albert Astals * Merge lp:~aacid/unity8/fix_lvwph_topsectionitemculling_regression (18769b857) * LVPWH: Fix regression handling the sticky top section culling (ce0d54256) 2013-08-07 Michal Hruby * Remove the formFactor binding (d1bfec6ff) * Make sure search is re-trigered after changing form-factor (8aa3b3aa0) * Remove the scope timer (e859cf6f7) 2013-08-07 Diego Sarmentero * removing not existing tests from cmake (2f501a885) 2013-08-07 Albert Astals * Add a bool saying if we tried to do something or not (6dd0eb62f) * it's more handy to use the property (773559a75) * First attempt at showing the arrow (626730703) 2013-08-07 Michal Hruby * Add overrideCategory method to Categories (bd3b453df) 2013-08-07 Michał Sawicz * Re-enable battery slider test. (8e8074a95) 2013-08-07 Automatic PS uploader * Releasing 7.81.3+13.10.20130807-0ubuntu1 (revision 168 from lp:unity8). (a97b1baa5) * Releasing 7.81.3+13.10.20130807-0ubuntu1, based on r168 (73a839e11) 2013-08-06 Michael Terry * Merge from trunk (43df35add) * Add final demo page (b3a4c1506) 2013-08-06 Michał Sawicz * Revert revision 161 that causes issues with invalid background. (2a526c6b9) * Drop ppa:ubuntu-unity/next. (78e4629d1) 2013-08-06 Michael Terry * Allow setting 'none' as a demo edge and specifying the skip text (133424aef) 2013-08-06 Michał Sawicz * Revert revision 161 that causes issues with invalid background. (049823869) 2013-08-06 Albert Astals * Make sure items are layouted before using their y (8c9c1ed39) * Handle expandedIndex only in toggleCollapse, easier to understand (fb8f5143e) * There can only be one... expanded category (07d670e07) * Remove duplicate function declaration (70b4d5fc3) 2013-08-06 Michael Terry * Some minor cleanups (9719a304b) 2013-08-06 Albert Astals * Fix uses of uninitialized values reported by valgrind (b45756c0a) 2013-08-06 Michał Sawicz * Fix some words. (9d9fb8202) 2013-08-06 Albert Astals * Fix off by one in the culling condition (4e99cb2ea) * Merge lp:~aacid/unity8/lvwph_maximizeVisibleArea (a3e77fa14) * Implement+test the maximizeVisibleArea function (ba8318916) * Fix off by one in the culling condition (36a8fb088) 2013-08-06 Automatic PS uploader * Releasing 7.81.3+13.10.20130806-0ubuntu1 (revision 164 from lp:unity8). (66bebdda5) * Releasing 7.81.3+13.10.20130806-0ubuntu1, based on r164 (40a4c320b) 2013-08-05 Automatic PS uploader * Releasing 7.81.3+13.10.20130805-0ubuntu1 (revision 162 from lp:unity8). (030b3c98f) 2013-08-05 Albert Astals * Move to work on GenericScopeView.qml (203cf6952) 2013-08-05 Diego Sarmentero * adding DownloadDaemonListener mock (9ec527657) 2013-08-05 Michal Hruby * Set phone form factor for requests from unity8 (for now) (370973e48) 2013-08-05 Albert Astals * Merge (035d9de21) * Only maximize the viewing area if we are not filtering (5719a184e) 2013-08-05 Mirco Müller * Merged with trunk, fixed failing autopilot-tests again. (852b6a507) 2013-08-05 Michael Terry * Show the greeter when powerd tells us to, not just whenever we press the power key. Fixes: https://bugs.launchpad.net/bugs/1186256. (5da4ba450) 2013-08-05 Nick Dedekind * replaced old listview indicator menus with tab menus. Fixed tests (ca7aa6d4f) * Merge with trunk (0868a6b5b) * updated for new tab interface (a67c059c1) 2013-08-05 Mirco Müller * Improved doc-string explaining snap-decision test and added an exception to catch any unknown device-options. (000d9d0a2) 2013-08-05 Automatic PS uploader * Releasing 7.81.3+13.10.20130805-0ubuntu1, based on r162 (2c0d7e91c) 2013-08-02 Michael Terry * Merge from trunk (4bba3542d) * Streamline visible/enable handling by introducing readonly active property of DemoOverlay (4a11c1f32) * Fix class name and some compile warnings (d08666f8c) * Show greeter when powerd tells us too, not just everytime we press the power key (8359d298a) * Watch powerd signals to notice a sleep and unfocus current app when that happens. (b754d9f7a) * install plugin (62d3a0a51) * Rename plugin to Powerd (01db1e7c8) 2013-08-02 Michael Zanetti * Read background from GSettings or fallback to default_background. (b1011f2c4) 2013-08-02 Michael Terry * Add Power plugin to watch powerd signals (4f6ff6993) * Fixes the lockscreen and swiping on the greeter still being possible even when in tablet mode. Fixes: https://bugs.launchpad.net/bugs/1204984. (0c3439013) 2013-08-02 Albert Astals * First quick unfinished stab at the category expansion (a6d169ba2) 2013-08-02 Michael Terry * Make sure launcher is available when greeter is not shown (b231ffdac) 2013-08-02 Albert Astals * Fix tryCompare call (d548a3177) 2013-08-02 Michael Terry * Merge from trunk (4fb7d68fc) 2013-08-02 Mirco Müller * Improved robustness of assertion in snap-decision test to hopefully fix the failure on jenkins. (e34be15eb) 2013-08-02 Albert Astals * Fix tryCompare call (d32967421) 2013-08-02 Mirco Müller * Ok, that didn't fix it :/ (583c08540) * Trying to fix failing test_sd_incoming_call() on jenkins (7fbeac54b) 2013-08-02 Michael Zanetti * make findChild also find invisible childs (6554deae8) 2013-08-02 Mirco Müller * Make it easier to just select one type of form-factor to run test on (de3f915b5) * Removed sleep(..) calls, which don't break tests. (1b73dd944) * Removed sleep() from and added additional assertion to snap-decision test. (96f089917) * Don't use the size-marker in icon-filenames. (4f961c970) 2013-08-02 Albert Astals * Make LVWPH provide a delegateIndex for sectionHeaders (1fbfcd71f) 2013-08-02 Automatic PS uploader * Releasing 7.81.3+13.10.20130802-0ubuntu1 (revision 155 from lp:unity8). (6dccd0eb6) * Releasing 7.81.3+13.10.20130802-0ubuntu1, based on r155 (935685759) 2013-08-01 Albert Astals * Only update the "section" if we are not culling the item (d8e5d9ae2) 2013-08-01 Michael Zanetti * fix testLockscreen after new findChild is so fast that it reveals a timing problem (79f9c30e6) 2013-08-01 Michael Terry * Make hud autopilot tests more reliable by fixing how it calculates relative coordinates. (5dc028886) 2013-08-01 Michał Sawicz * Drop the remaining ppa from build scripts. (d30a233f0) 2013-08-01 Michael Terry * Make the hud autopilot tests more reliable by fixing a use of relative coordinates (effdca0f7) 2013-08-01 Automatic PS uploader * Releasing 7.81.3+13.10.20130801.1-0ubuntu1 (revision 152 from lp:unity8). (691a5d1df) 2013-08-01 Michael Zanetti * remove also the last debug print (a256adb04) * remove debug prints again (1d6877961) * make findChild also find invisible childs (4f73ec790) 2013-08-01 Albert Astals * Make LVWPH provide a delegateIndex for sectionHeaders (ad9274611) * Only update the "section" if we are not culling the item (49b22cd4f) 2013-08-01 Automatic PS uploader * Releasing 7.81.3+13.10.20130801.1-0ubuntu1, based on r152 (9a48c6b0f) 2013-08-01 Michael Terry * Merge from trunk (ed761d57a) 2013-08-01 Michał Sawicz * Add a disclaimer for the fake applications plugin. (634896533) 2013-08-01 Michael Zanetti * extend findChild to also search invisible items (like animations) (9a7d0b453) 2013-08-01 Michał Sawicz * "cast" the .fake for the real plugin (b4e1ebd38) 2013-08-01 Pawel Stolowski * Minor cleanups. (424d37bdc) 2013-08-01 Nick Dedekind * Removed animations from fake indicator pages. (d9848f6dc) * merged with trunk (daae0cfaa) * removed animation from fake indicator pages (dbc9768bd) 2013-08-01 Michał Sawicz * Add a disclaimer in the fake applications plugin. (a3429de77) 2013-08-01 Mirco Müller * Made summary- and body-text of interactive notification more meaningful. (03a7b9b7e) * Merged Chris' branch making the notification ap-tests more robust for jenkins (a95e396c9) 2013-08-01 Automatic PS uploader * Releasing 7.81.3+13.10.20130801ubuntu.unity.next-0ubuntu1 (revision 149 from lp:unity8). (ed36ffa35) 2013-08-01 Christopher Lee * Updated asserts to use eventually, updated get_notification lambda to be more specific. (db5b4ce77) 2013-08-01 Automatic PS uploader * Releasing 7.81.3+13.10.20130801ubuntu.unity.next-0ubuntu1, based on r149 (38ed95e6d) 2013-08-01 Christopher Lee * Fixed script call to use python interpreter. (40b97effb) * Merge Mircos changes (8e38d4d9d) 2013-08-01 Mirco Müller * Fixed typo in summary-string. (c6a2cd0f3) 2013-07-31 Nick Dedekind * Added a text tree representation of the qmenumodel to the indicators-client application. (a5441c3c1) 2013-07-31 Michael Terry * Merge from trunk (e85ca5701) * Don't mark rightEdgeDemo as visible unless we're enabling it (61990fe3d) * Only change demo visibility if demo is enabled (195fdb90b) * Merge from trunk (80acc01dc) * Drop some excess whitespace (8e32c0650) 2013-07-31 Albert Astals * Don't need deelistmodel here. (fb25d1937) 2013-07-31 Mirco Müller * Got rid of not needed preexec_fn=os.setsid as this is causing the interactive tests to fail on jenkins. (92ff7a8c6) 2013-07-31 Albert Astals * Don't need deelistmodel here (19ccd2b29) 2013-07-31 Nick Dedekind * separate actions by new line (b1e8d4eac) 2013-07-31 Daniel d'Andrada * Add a desperate measure (a3e28689c) 2013-07-31 Michael Zanetti * implemented new Lockscreen design. (aec6c0568) 2013-07-31 Mirco Müller * Added missing copyright-header (545909584) 2013-07-31 Michał Sawicz * Fix mock VideoPreview to use the string categoryId as well. (1f2bfd835) 2013-07-31 Michael Zanetti * fix opacity value for pin; (9b15d30ae) * fix opacity for emergency call button (d7ede589e) 2013-07-31 Mirco Müller * Merged Chris' branch (and trunk), added comments to the notification ap-test and split up the updating-notification ap-test into two separate tests (89ba48a3a) 2013-07-31 Michał Sawicz * Fix mock VideoPreview to use the string categoryId as well. (52de4fed2) 2013-07-31 Nick Dedekind * review comments (ea0f6a52d) 2013-07-31 Christopher Lee * re-breakup tests into cleaner classes etc. (361be387b) * Remove last remains of using temp dbus server. (ec2f09ed0) 2013-07-31 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (01c86a586) 2013-07-31 Christopher Lee * Remove un-needed decorators. (0d72c1850) * Merge trunk (dfeaa0f03) * Fix custom dbus issue for device runs. (ce1995d23) * Added comment and slight pep8 cleanup (0cb545aa8) * Update copyright header (ab8a5f949) * First move to starting/ending dbus server in tearUp/DownClass methods. (52dfd2869) 2013-07-30 Michael Terry * Add a mock AccountsService that always returns false, to avoid confusing autopilot tests (68f514d6c) * Merge from trunk (46cee69d6) * Add qmltest for DemoOverlay (cedbc3f50) * Add tests for AccountsService plugin (447982b01) 2013-07-30 Daniel d'Andrada * Make test survive severe slowness in the execution (e.g. Jenkins). (bbf9b64cc) 2013-07-30 Michael Terry * Hook up AccountsService; fix top and left skip buttons not working (889e2a550) 2013-07-30 Michael Zanetti * fix those autopilot tests (63bdf760d) * fix formatting issues (07cd494dd) * reworked lockscreens as per new design (650f3063f) 2013-07-30 Automatic PS uploader * Releasing 7.81.3+13.10.20130730ubuntu.unity.next-0ubuntu1 (revision 143 from lp:unity8). (2b9fb07c1) 2013-07-30 Christopher Lee * pep8/pyflakes fixes (9a114b675) * Another test cleanup (340ea9d4c) * fix syntax errors (53b01a820) * Further test clean up, remove some sleeps, pep8 getting better. (984fa65de) * Slight fix for interactive tests. (ba982c4ec) * Cleanup script cleanup and launch_unity dbus (21e39aeb8) 2013-07-30 Automatic PS uploader * Releasing 7.81.3+13.10.20130730ubuntu.unity.next-0ubuntu1, based on r143 (e16d585b4) 2013-07-30 Christopher Lee * Cleanup and move around of unused code and restructure. (768c61d94) * Re-enable scenarios (595fb72b4) * Remove unused code (449f6ce57) * Remove unused code (39a8d95ca) 2013-07-29 Michael Terry * Re-enable swiping for tablets if the password isn't needed; fix some autopilot issues (f78969586) 2013-07-30 Christopher Lee * Fix the snap decisions hint (c618038bc) * Testing and only start custom dbus on the desktop (a6e88e303) 2013-07-29 Michael Terry * Merge from trunk (1263a72f1) 2013-07-29 Mirco Müller * Trying to fix the non-interactive notification-test again... without much luck sofar (3c8ff57d5) 2013-07-29 Albert Astals * Adapt to Qt 5.1. (a7c3d5270) 2013-07-29 Michael Terry * Fix unity8-greeter.desktop file to work with latest lightdm/mir (a40c1fe8d) 2013-07-29 Albert Astals * These are the ones i wanted to make guiless (e0ff3c2dd) * These are not the tests i wanted to make guiless... (29b0bfece) * Make tests explicitely guiless (2f315782a) * Merge (914a2cc8c) * Some extra code in the qobject->qquickitem conversion (0b53b033f) 2013-07-29 Mirco Müller * Made test_notifications.py pep8-compliant apart from the 79-character-per-line limit (0b77733f1) * Merged changes form Chris to make use of updated autopilot (dfdbc370d) 2013-07-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130729ubuntu.unity.next-0ubuntu1 (revision 141 from lp:unity8). (ba5eb2f49) 2013-07-29 Christopher Lee * Patch to use updated autopilot testcase and update killing the dbus server. (f786642a4) 2013-07-29 Nick Dedekind * Merged with trunk (f62e3c89f) 2013-07-29 Automatic PS uploader * Releasing 7.81.3+13.10.20130729ubuntu.unity.next-0ubuntu1, based on r141 (c0127bef3) 2013-07-28 Michael Terry * Remove extra whitespace (ad203194d) 2013-07-28 Gustavo Pichorim Boiko * Add entries to the new applications resulted from the split of the phone-app. (dd41cd4c2) 2013-07-27 Michal Hruby * Remove the variant conversions methods as they were moved to dee-qt. (984d92649) 2013-07-27 Michał Sawicz * Use the new string categoryIds in custom video and music scope views. Fixes: https://bugs.launchpad.net/bugs/1199322. (2186b2fb4) * Fix DashApps.qml, too. (bcc60455c) * Deambiguate "id" in Categories. (cc3af39ce) 2013-07-26 Michael Terry * Install qmlfiles for AccountsService (862b2da5f) * Fade in demo pages (51acc46fb) 2013-07-27 Michał Sawicz * Use the new category ids in custom music and video scopes views. (acdeafdbc) 2013-07-26 Michael Terry * Don't allow swiping greeter when in tablet mode; fix lockscreen autopilot tests to use tablet prompt when appropriate (c612a9fca) 2013-07-26 Gustavo Pichorim Boiko * Add entries to the new applications resulted from the split of the phone-app. (08efb1121) 2013-07-26 Michael Terry * Separate greeter from shell; use real system liblightdm; add SessionManager plugin (608f9335c) 2013-07-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130726ubuntu.unity.next-0ubuntu1 (revision 135 from lp:unity8). (a8097210a) 2013-07-26 Mirco Müller * Use custom dbus-session for notification autopilot-tests (7cbf1637c) 2013-07-26 Michał Sawicz * Add copyright headers. (e06be4db1) 2013-07-26 Diego Sarmentero * screenshots fixed (a63652634) 2013-07-26 Michał Sawicz * Merge app-preview. (16720bcb0) 2013-07-26 Andrea Cimitan * Removed unused include (79b5193cd) * Simplify plugin (701d44d12) * Add import of GSettings module (d9609901a) 2013-07-26 Christopher Lee * re-instate scenarios (e4befa1aa) * Added a notification creation script and updated a test to use it as an example (1fc91bdf9) 2013-07-26 Andrea Cimitan * Should be good now (10e47164e) * Remove another bit that was added during merge (cc7295f0f) * Merge trunk and fix conflicts (01061252f) * Added tests for background image (ccedc8a53) 2013-07-26 Michał Sawicz * Re-enable passphrase tests under UInput. (f2c2cdb60) 2013-07-26 Nick Dedekind * Behavioural changes for indicators - Part 1 (bc65d02b0) 2013-07-26 Andrea Cimitan * added empty function (b9c6b583e) 2013-07-26 Michael Zanetti * merge veeber's branch and simplify it a bit (02023c225) 2013-07-26 Nick Dedekind * active header (aa1385eeb) 2013-07-26 Christopher Lee * Remove old commented out code for readability, added a new testing test to attempt to debug issue. (b5ffdcebb) 2013-07-26 Automatic PS uploader * Releasing 7.81.3+13.10.20130726ubuntu.unity.next-0ubuntu1, based on r135 (6f54f110d) 2013-07-26 Nick Dedekind * merged with parent (f45415dd8) * Use set*Index for menu & item indexes (5339fb6bf) * fixed code style (97f190730) * Added test comment. (a57c00b66) 2013-07-26 Thomi Richards * Test uptess, do demonstrate the new code. (7938c263c) * Fix code that checks for results. (8cb7bcf04) * Set urgency on notifications. (7cc83dd9c) * Remember to call task_done after popping a task off the queue. (4a4bee86f) * Adding notifications context manager. (e24d3e906) 2013-07-25 Michal Hruby * Provide fallbacks for default renderer. (4e663be7f) 2013-07-25 Daniel d'Andrada * Regression test for bug LP #1193419 (3dbe6ab73) 2013-07-25 Michal Hruby * Expose real category ids and not just indices. (25a94b794) 2013-07-25 Michał Sawicz * Re-enable passphrase tests under UInput. (3aba4b68e) 2013-07-25 Daniel d'Andrada * Reset apps scope when returning from app to dash (LP #1193419) (420d999bc) 2013-07-25 Michael Zanetti * simplify (ad4743ed7) * register the controller as a singleton (9c6c81314) 2013-07-25 Daniel d'Andrada * Give a visual feedback on right-edge drag with no running apps (LP: #1116207). Fixes: https://bugs.launchpad.net/bugs/1116207. (b7fee027d) 2013-07-25 Andrea Cimitan * More work on the plugin (ae9aab368) 2013-07-25 Michal Hruby * Provide fallbacks for default renderer (e02c1547f) 2013-07-25 Diego Sarmentero * screenshots fixed (e70cc46cc) 2013-07-25 Michal Hruby * Remove the variant conversions methods as they were moved to dee-qt (e6e70a152) 2013-07-25 Daniel d'Andrada * Make Shell test a bit more robust (cfdd25f4f) 2013-07-25 Michał Sawicz * Fix review entry height and bring back tests. (387b944f9) 2013-07-25 Daniel d'Andrada * Update DashContent test (7c348aa99) 2013-07-25 Mirco Müller * Still trying to get the ap-tests for interactive- and snap-decision-notification working (61c915c96) 2013-07-25 Daniel d'Andrada * Update Dash tests (371f269d6) 2013-07-25 Diego Sarmentero * not integrating app preview in dash apps yet (4e0fd6e4f) 2013-07-25 Michael Zanetti * remove some old unused code (e32461535) 2013-07-25 Albert Astals * Update m_firstVisibleIndex if there's no visible items anymore (fa5060694) 2013-07-25 Diego Sarmentero * opening preview on press and hold (3e29964df) 2013-07-25 Automatic PS uploader * Releasing 7.81.3+13.10.20130725ubuntu.unity.next-0ubuntu1 (revision 129 from lp:unity8). (9995d943c) 2013-07-25 Christopher Lee * Tests now use a default lightdm mock if not decorated. Fixes: https://bugs.launchpad.net/bugs/1204772. (296538c8b) 2013-07-25 Nick Dedekind * added vertical velocity check test (03b48b91b) * Fixed review comments (f86eb5bc8) 2013-07-25 Andrea Cimitan * more work on the fake plugin (doesn't work) (5900ed62c) 2013-07-25 Christopher Lee * Removed need to specifically decorate test for lightdm mock, now defaults to use 'single'. (caee0baf7) 2013-07-25 Automatic PS uploader * Releasing 7.81.3+13.10.20130725ubuntu.unity.next-0ubuntu1, based on r129 (eacb36b4e) 2013-07-24 Diego Sarmentero * fixing cmake (61752eb68) 2013-07-24 Michael Terry * Add initial AccountsService plugin, to record whether we've demo'd the edges yet (a3b84e7ba) 2013-07-24 Daniel d'Andrada * Fix whitespace issue. (177495058) 2013-07-24 Michał Sawicz * Hide the Unity launcher during autopiloting and skip battery tests if unavailable. (c28d978e8) 2013-07-24 Michael Zanetti * simplify (f6ecb84ea) 2013-07-24 Diego Sarmentero * fixing test (e39d01968) * Connection data to the UI (77121cfa5) 2013-07-24 Michał Sawicz * Add FIXMEs. (1ed82fff7) * Recommend gi for unity8-autopilot. (7d9b1ee19) 2013-07-24 Daniel d'Andrada * Make right-edge drag on dash more thorough. (004ae520d) 2013-07-24 Diego Sarmentero * fixing tests (ce14f1115) 2013-07-24 Michał Sawicz * Skip indicator-battery tests if not found. (df76e4be2) * Hide Unity launcher for testing. (b80243410) 2013-07-24 Michael Zanetti * expand all the items when dragging starts (ed32b9131) 2013-07-24 Daniel d'Andrada * Shell test: mock applicationArguments context property (38c37fbf3) * Make ApplicationArguments context property mockable from within QML code (919e19698) 2013-07-24 Michael Zanetti * initial try on progressive scrolling while dragging (d980c29d3) 2013-07-24 Nick Dedekind * fixed qmltests (5ab40fbe5) * Opacity change for indicator item locking animation (3f11c5743) 2013-07-24 Mirco Müller * Keep Notify.init()/uninit() within each notification ap-test. That fixes some of the earlier failures, but not all yet. (0652c1ac2) 2013-07-24 Michael Zanetti * bring back clicking functionality and fix inverted animation (55d26b9e6) * quicklist pinning and removing working (10da5713f) 2013-07-24 Mirco Müller * Made notification ap-tests work again with the new refactored autopilot, but only the first executed notification ap-test works, any subsequent test fails with a DBus-error. (fb6757351) 2013-07-24 Daniel d'Andrada * No need to install the Notifications plugin mock (340b05f55) 2013-07-24 Nick Dedekind * merged with trunk (29bcfcf74) * velocity detector more sensitive. bottom drag hint more prominent. (af6ff9e5d) 2013-07-24 Mirco Müller * Added the lightDM mock and corresponding decorators to notification ap-tests... windows and contents are rendered again... but notifications still don't show up (b56f757c7) 2013-07-23 Mirco Müller * Merged with trunk after autopilot-refactoring landed... first set of updates of notification ap-tests to make them work again. (a1a659afa) 2013-07-23 Diego Sarmentero * some fixes in send button and review text field size (f972e8e5c) * fix invert mouse area (b2b090407) 2013-07-23 Christopher Lee * Refactoring and cleanup of the Unity8 Autopilot tests. (84d9ad2cd) 2013-07-23 Diego Sarmentero * adding comments on compare (6ea67a2da) * couple of fixes requested and adding some tests (8ca8eb81b) 2013-07-23 Michael Zanetti * speed up expanding of the list to avoid overlapping of unfolding icon with others (78a518687) 2013-07-23 Michał Sawicz * Drop newline. (4866412cc) 2013-07-23 Michael Zanetti * split up LauncherDelegate into a reusable item and ListView specific folding parts to be able to reuse it for the fakeDragItem Add folding animation to dropping items (bd09d7614) 2013-07-23 Michał Sawicz * Clean spurious TODOs and move _get_hud_button_swipe_coords to the hud emulator. (16f482747) * Fix indicators_client geometry. (0a301ae5e) 2013-07-23 Diego Sarmentero * fixing button send state (565b3ed61) 2013-07-23 Michał Sawicz * Drop "8" from all the docstrings and copyright. (34e252bc0) 2013-07-23 Nick Dedekind * Added back button (f7e72c4c8) 2013-07-23 Michał Sawicz * Clean up debug logging. (2813ff629) 2013-07-23 Michael Zanetti * merge trunk (db432c90c) 2013-07-23 Michał Sawicz * Some more logging and a cry-for-help timeout bump. (20556c1d7) 2013-07-23 Andrea Cimitan * Merged daniel branch and started working on the test (fa641c471) 2013-07-23 Christopher Lee * Added extra logging to deal with VM CI (ef1c115d6) * Cleanup of new dash home scope checking (7b31b2be9) * First changes to check for dash/home scope loaded. (a465ea879) 2013-07-22 Diego Sarmentero * merge (8dea20703) 2013-07-22 Michael Terry * Initial implementation of edge demo pages (260287ada) 2013-07-23 Michał Sawicz * Use ubuntu-mobile icon theme in autopilot targets. (8fe2b7b0f) * Run autopilot under C locale. (8bd7c9b72) 2013-07-22 Michał Sawicz * Tweak the CMake autopilot module. (559efae4e) * Use the helper to find indicators-client binary path. (a43a33170) * Skip slider due to bug #1203808 and add change skip reason for passphrase entry - bug #1203788 (ea6bddc6e) 2013-07-22 Nick Dedekind * removed gradient theme. Created binding loop in MainView (4700fae1c) 2013-07-23 Christopher Lee * Update i_c so it's not setting the grid_unit_px on the device. (8378f4dd7) * Update indicator_client tests so it doesn't overwrite GRID_UNIT_PX (1b6112924) 2013-07-22 Christopher Lee * Made launch_unity have a huge timeout for testing on infrastructure VMs (see lp bug: 1203715) (8747ff904) 2013-07-22 Michael Zanetti * initial take on drag and drop and quicklists (e7019dd08) 2013-07-22 Albert Astals * Update m_firstVisibleIndex if there's no visible items anymore (740e43735) 2013-07-22 Michal Hruby * Expose real category ids and not just indices (e04653c72) 2013-07-22 Nick Dedekind * merged with parent (de2a0dbba) * merged with trunk (072a8125c) 2013-07-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (57720afe2) 2013-07-22 Christopher Lee * pep8 compliance (fe3c605e7) * Removed old unused code. (daccaf4fc) * Added logging, looking at timing on VMs etc. (80ea1a524) * Merge Michałs' whitespace fixe. (05e6f0841) * add very specific check that GRID_UNIT_PX has been set. (377787a0a) * Merge Trunk. (9d197a108) * Re-include libusermetrics into the fold. (d28e01759) * Changes to paths to use builddir/install for mocks on desktop. (f918aa226) 2013-07-20 Michał Sawicz * Added heeding and qmltest for button-tint hint. (6bc361da3) 2013-07-20 Diego Sarmentero * Adding tests (91530f05c) 2013-07-20 Michał Sawicz * Fix whitespace. (5d91227e6) * Use verify() to compare gradients. (ef4743c5a) 2013-07-20 Nick Dedekind * Add ApplicationArguments to know the geometry from start. (1900bd021) 2013-07-19 Daniel d'Andrada * Regression test for bug LP #1193419 (dd84c4953) 2013-07-19 Nick Dedekind * Added ApplicationArguments context property to pass gemoetry to shell. (db6b43ad1) * Menus for indicators is now created prioritised by distance from current item to speed up user experience. (dd94a6600) 2013-07-19 Daniel d'Andrada * Reset apps scope when returning from app to dash (LP #1193419) (b43f06928) 2013-07-19 Diego Sarmentero * adding fixes before the tests (64239263a) 2013-07-19 Michał Sawicz * Move to using upstart in run_on_device. (d9a773ca1) 2013-07-18 Michal Hruby * Fix adding items into an empty LVWPH. (44444ad85) * Clean up the tests (b3534be56) 2013-07-18 Diego Sarmentero * GenericPreview and Video fixed (8e12b3691) 2013-07-18 Michal Hruby * Change order (5cc363e93) * Fix adding items into an empty LVWPH (f7c9d16d2) 2013-07-18 Diego Sarmentero * Several fixes requested. (b943b84ba) 2013-07-18 Michał Sawicz * Move to using upstart in run_on_device. (9709a2924) 2013-07-18 Nick Dedekind * Added passthrough signals. (b150f7351) * fixed accidental removal of connection (b798fa3b5) * review changes (5c91cac07) * merged with trunk (5cf367a33) 2013-07-18 Diego Sarmentero * Lot of fixes based on the reviews (8f4c32df1) * adding new ui (8e937f64d) 2013-07-18 Daniel d'Andrada * Don't install QMenuModel mock (65ed7965b) * Don't install QMenuModel mock (e3227b972) 2013-07-18 Ying-Chun Liu * Let GenericScope support loading different renderers. (212a1db14) 2013-07-18 Nick Dedekind * Removed overview from indicators. (3d0f95b38) 2013-07-18 Mirco Müller * Merged with trunk (8265a5110) * Use Ubuntu-brand gradients for the buttons in snap-decision notifications (0d255ad35) 2013-07-18 Automatic PS uploader * Releasing 7.81.3+13.10.20130718ubuntu.unity.next-0ubuntu1 (revision 118 from lp:unity8). (18a69f479) 2013-07-18 Michał Sawicz * Whitespace fix. (ffdcd0e22) 2013-07-18 Automatic PS uploader * Releasing 7.81.3+13.10.20130718ubuntu.unity.next-0ubuntu1, based on r118 (2f11c1c64) 2013-07-18 Christopher Lee * Merge trunk. (adeee0476) 2013-07-18 Thomi Richards * code cleanup. (da3337802) 2013-07-18 Ying-Chun Liu * Don't include .moc in previewbindingstest.cpp. (19f37e02f) 2013-07-18 Omer Akram * fix the calendar icon in the launcher. Fixes: https://bugs.launchpad.net/bugs/1201905. (f063d1209) 2013-07-18 Nick Dedekind * Export indicator plugin symbols using Q_DECL_EXPORT. (935a68f50) 2013-07-17 Nick Dedekind * merged with parent (82b6d261f) * merged with parent (cef510995) * merged with trunk (1751d23dc) * ; (b43eafa56) * Indicator menus using tabs. (7acf41522) 2013-07-18 Ying-Chun Liu * Add semi-colon to javascript code. (c6a706ddf) 2013-07-17 Nick Dedekind * Added vertical velocity detector to guard accidental indicator left to right swipes. (bf91bc9c6) * better handling of indicator current item. (a869d33c6) 2013-07-17 Andrea Cimitan * Add support for the colour palette. (7c4b34d29) 2013-07-17 Nick Dedekind * fixed tests for r117 (22d7190a1) * Fixed up reveal states. Removed pin/unpin states from indicators (f08940776) 2013-07-17 Mirco Müller * Added heeding and qmltest for button-tint hint (364d6ea0b) 2013-07-17 Nick Dedekind * search bar animation less obvious (ffca0a3fa) * Made panel heights a bit more easy to understand. (3673b8a0a) * Use standard animations (74598dcfe) * cleaned up overview removal (fa24e917d) 2013-07-17 Daniel d'Andrada * Add a mock for QMenuModel module (used by VolumeControl) (70db4ab92) * Add a mock for QMenuModel module (used by VolumeControl) (924f659cd) 2013-07-17 Nick Dedekind * Removed overview (11b682eec) 2013-07-17 Andrea Cimitan * Resolve conflicts and merge trunk (b963df672) * Added palette colours for panel where applicable (8228ad5b4) 2013-07-17 Nick Dedekind * removed multiple new lines (940f47f5d) * Initial sequential menu activator (b644619d8) 2013-07-17 Mirco Müller * Merged with trunk and fixed failing autopilot-tests for notifications (b96356c5e) 2013-07-17 Nick Dedekind * Export indicator symbols using Q_DECL_EXPORT (9da9b679a) 2013-07-17 Mirco Müller * Merged with trunk and fixed failing autopilot-tests for notifications (eca6669c7) 2013-07-17 Andrea Cimitan * Require new API for gsettings (01da8f650) 2013-07-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (b620e36a3) 2013-07-17 Christopher Lee * Revert local testing changes. (d91ca3818) * Merge Trunk (5d9ff5fde) * Minor pep8 fixes. (ec8ce9ca0) * Add get_grid_size for use in emulators. (6d154f196) * Make addition for big screen test, there might be a better way to do this. (78e0bc908) * Further cleanup and test update. (24ff9a927) 2013-07-17 Ying-Chun Liu * fix comments (4478f35ab) 2013-07-17 Automatic PS uploader * Releasing 7.81.3+13.10.20130717ubuntu.unity.next-0ubuntu1 (revision 112 from lp:unity8). (688526399) 2013-07-17 Christopher Lee * Added desktop nexus 10 scenario details. (0d0f28a4a) * Added scenarios for hud tests, further cleanup. (1a74d99d2) 2013-07-17 Automatic PS uploader * Releasing 7.81.3+13.10.20130717ubuntu.unity.next-0ubuntu1, based on r112 (c61889ebf) 2013-07-16 Daniel d'Andrada * Copy mock Unity.Notifications to binary dir (1279937c1) * Copy mock Unity.Notifications to binary dir (1fd5a92ec) 2013-07-17 Christopher Lee * Removed helpers.py (e22679954) 2013-07-16 Daniel d'Andrada * Test for right-edge drag with no running apps (b087b7cf5) * Test for right-edge drag with no running apps (bd24ae292) 2013-07-17 Christopher Lee * Cleanout helpers. (084ae64dc) * Cleanup (c5baa0a74) 2013-07-16 Nick Dedekind * Split Plugins export macro into export_qmlfiles and export_qmlplugins. (7f2b03b22) 2013-07-16 Daniel d'Andrada * Give a visual feedback on right-edge drag with no running apps (LP: #1116207) (b74dfe086) * Give a visual feedback on right-edge drag with no running apps (LP: #1116207) (7242ba38d) 2013-07-16 Nick Dedekind * added refresh buttom to tree output (827f9f9b2) * merged with trunk (031898fa2) 2013-07-17 Omer Akram * fix dead calendar launcher icon (a6196a186) 2013-07-16 Mirco Müller * Skip the ap-test for interactive and snap-decision notifications until the proper main-loop support in autopilot is in place, thus action-callback will work correctly. (99616f703) 2013-07-16 Daniel d'Andrada * Remove dead code: Showable::showWithoutAnimation. (a841ebd9e) 2013-07-16 Mirco Müller * More refactoring and elimination of repetitive code (5f99ecdfa) 2013-07-16 Ying-Chun Liu * Use IconUtil for Carousel. (2382acf99) * rename video -> generic (ac1850447) * Modify Filter grid to rectangle. Add Potrait filter grid for videos. (32ef136e2) * Let GenericScope supports loading different renderers. (d6b88d241) 2013-07-16 Andrea Cimitan * coding style (8e91eb762) * Save memory (49346311a) * Fix sourceSize thanks to Saviq (8f3c26311) * More works on the sourceSize (e39795fd8) 2013-07-16 Christopher Lee * Actually add the added emulators (3062d1d81) * Grid size is scaled too with display geo, still needs work. (5436ae311) 2013-07-16 Andrea Cimitan * Use PreserveAspectCrop (a64332623) * Modified deps (9f00b437d) * Read background from GSettings (5eb6bce17) 2013-07-16 Ying-Chun Liu * Don't include .moc in previewbindingstest.cpp (124626ce8) 2013-07-16 Christopher Lee * Comment and docstring cleanup. (8f87949a7) 2013-07-16 Nick Dedekind * merged with trunk (5c58f8cf9) * fixed documentation (d4d5454e6) 2013-07-16 Christopher Lee * Test re-org and cleanup (54f26b9d8) * Remove comments/deadcode and move helper methods. (aece6dc1f) * Created Hud,Dash,Launcher emulators. Fixing up Hud tests. (a918cebcd) 2013-07-16 Automatic PS uploader * Releasing 7.81.3+13.10.20130716ubuntu.unity.next-0ubuntu1 (revision 109 from lp:unity8). (5a4e31764) * Releasing 7.81.3+13.10.20130716ubuntu.unity.next-0ubuntu1, based on r109 (91f781935) 2013-07-16 Michał Sawicz * Fix the Network page to provide the correct token. Fixes: https://bugs.launchpad.net/bugs/1201529. (6f75d2f42) 2013-07-16 Christopher Lee * Merge in new building script et. al (814a6b632) 2013-07-15 Pete Woods * Rename the demo user "single" to "phablet" (0bd7a8f52) 2013-07-15 Michał Sawicz * Fix network page for providing the right token to authenticate. (49cd5941a) 2013-07-15 Daniel d'Andrada * Remove unused Showable::showWithoutAnimation (28999818a) 2013-07-15 Pete Woods * Update demo username to match runtime username on the device (78788c694) 2013-07-15 Michał Sawicz * Do not recommend indicator-power and indicator-sound. (78ba9f07d) * Only use ppa:ubuntu-unity/next and clean build scripts and CODING, accordingly. (875d451c2) 2013-07-15 Andrea Cimitan * Uncomment a line (06a0a7137) 2013-07-15 Christopher Lee * Merge trunk (d029535dc) 2013-07-15 Thomi Richards * Use new greeter unlock code. (4a8c66acb) * moved greeter unlock code to a greeter emulator. (b928412a2) * renamed testhud to test_hud. (2a00398e6) * remove unused code. (7fb8cd288) * Cleaned up screen alignment test cases. (cbf9b9aab) * renamed alignment tests. (77733f0ab) * removed old test file. (66470ac37) * Cleaned up imports. (1d7f901d0) * All the lock screen tests are done. (b9d791640) * Added second (desktop only) test. (25e1ab81a) * Make with_lightdm_mock decorator more strict about trying to patch for non-existant mocks. (d341616bb) * First lock screen test finished. (4bd2c55f3) * fix typo. (4c48c2968) * test adding the with_lightdm_mock wrapper. (895388968) 2013-07-14 Automatic PS uploader * Releasing 7.81.3+13.10.20130714ubuntu.unity.next-0ubuntu1 (revision 104 from lp:unity8). (6bad20d06) * Releasing 7.81.3+13.10.20130714ubuntu.unity.next-0ubuntu1, based on r104 (15bcd68bb) 2013-07-13 Michał Sawicz * Do not recommend indicator-power and indicator-sound. (f285402b8) 2013-07-12 Andrea Cimitan * First approach to themeing, following color palette of SuruGradient (56e55687f) 2013-07-12 Mirco Müller * Got rid of dependency on Gtk (thus X11) for the event-loop. Eliminated a bit of code by making it more modular. (6d5ea2382) 2013-07-12 Pawel Stolowski * Added comment. (174fe91f0) * Use gettext. (83e9c9c88) 2013-07-12 Michael Terry * Change Ok to OK. Fixes: https://bugs.launchpad.net/bugs/1131842. (3c0460f4f) 2013-07-12 Pawel Stolowski * Removed unused signal. (64d29003e) * Added TODOs, renamed addOption to addObject in GenericListModel. (9db4f2004) * .moc / header guards cleanups. (4a2c80107) 2013-07-12 Michael Terry * Change Ok to OK (33e15822f) 2013-07-12 Pawel Stolowski * Don't use signal forwarding n FilterOption / CombinedFilterOption classes, use private handlers for UnityCore signals and convert string type to QString on Q_EMIT. (2a98e93f4) * Some fixes after review. (bb6329c0a) * wrap-and-sort -abt (6ac0b6793) * Merged trunk. (6cd384041) * Ouch.. forgot about actually providing Filters instance in the Scope. (71f1e58a2) 2013-07-12 Thomi Richards * Seems to work. (3f5d08ffc) 2013-07-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130712ubuntu.unity.next-0ubuntu1 (revision 102 from lp:unity8). (a0b6ad96a) 2013-07-12 Thomi Richards * Now patches environemtn variables. (b379400ea) * More changes around how the shell is started. (c5bb6a5e5) * import subprocess. (0aa17311a) * (8b3a9a0dc) 2013-07-12 Automatic PS uploader * Releasing 7.81.3+13.10.20130712ubuntu.unity.next-0ubuntu1, based on r102 (e35d499e4) 2013-07-12 Thomi Richards * Fix launch logic. (e9eae63f6) 2013-07-11 Nick Dedekind * Moved indicators-client code into unity8. Fixes: https://bugs.launchpad.net/bugs/1191132, https://bugs.launchpad.net/bugs/1191822. (33fdf7c3d) 2013-07-11 Michał Sawicz * merge indicators-client (29591cfc5) * Add ppa:ubuntu-unity/next instead. (486111d1f) * Adapt to Qt 5.1. (f10d0d467) 2013-07-11 Mirco Müller * Added ap-test for append-hint and notification-updating. Improved urgency/queue-order ap-test. (00a3f54f2) 2013-07-11 Nick Dedekind * merged with trunk (44ebdc352) 2013-07-11 Michał Sawicz * Issue wrap-and-sort -abt on debian/. (102d15323) 2013-07-11 Nick Dedekind * wrap-and-sort -abt (a7dbc08bd) 2013-07-11 Michał Sawicz * Issue wrap-and-sort -abt. (bb54b94a1) 2013-07-11 Nick Dedekind * fixed debian/control alternatives (48c61a94b) 2013-07-11 Pawel Stolowski * One more nullptr. (156d4fe57) * Merged ratings filter changes (flattening). (11172870c) * Merged filters branch. (e6bb3a20e) * Merged trunk. (c3f467b21) 2013-07-11 Nick Dedekind * merged with trunk (923cd36db) 2013-07-11 Pawel Stolowski * More NULL/0 vs nullptr cleanups. (c78fa17d2) 2013-07-11 Michael Zanetti * Make use of the launcher API defined in unity-api and separate the model from the backend. (8639e99e1) 2013-07-11 Pawel Stolowski * Removed FIXMEs (nothing to fix). (255c3790e) 2013-07-11 Automatic PS uploader * Releasing 7.81.3+13.10.20130711ubuntu.unity.next-0ubuntu1 (revision 98 from lp:unity8). (b77fc1cb9) * Releasing 7.81.3+13.10.20130711ubuntu.unity.next-0ubuntu1, based on r98 (19aaeaf26) 2013-07-10 Nick Dedekind * removed unnecessary imports (93eb03ac0) 2013-07-10 Ying-Chun Liu * Add Generic Preview. Modify GenericScopeView to support activate and preview. (e10f7aae4) 2013-07-10 Nick Dedekind * added autopilot import. removed indicators_client from unity8-autopilot install (eff30c799) 2013-07-10 Michael Zanetti * move pkgconfig check for launcher api back to plugins (dc764fc67) 2013-07-10 Pawel Stolowski * Cleanups (copyrights, NULL vs nullptr). (9149655c2) * Handle i18n tr for combined filter name. (3657461e1) * Don't compile qsortfilterproxymodel. (e2ddba7ca) * Don't use Q_INVOCABLE. (9a1dfa0ff) * Cleanups, added test for ratings filter bindings. (31a0aceed) 2013-07-10 Michael Zanetti * only check once for launcher (5d5dd230f) 2013-07-10 Nick Dedekind * shell and indicators AP test suites now reside in parent unity8 suite. (5f02b49f1) 2013-07-10 Pawel Stolowski * Flatten and export RatingsFilter options. (1448d73c1) 2013-07-10 Nick Dedekind * added split autopilot targets (c045f607d) 2013-07-10 Mirco Müller * Still trying to get the interactive and snap-decision notifications working with autopilot-tests (f5ae26ad7) 2013-07-10 Ying-Chun Liu * fix bug. (452de20bb) 2013-07-10 Michael Zanetti * pkgconfig-check for launcher version =2 (04475cb3b) 2013-07-10 Ying-Chun Liu * Fix coding style. Fix tapping outside of the preview. Fix private properties. Fix switching to adjacent dash. Fix import Generic. (f51316221) 2013-07-10 Nick Dedekind * maximum slider value cannot be smaller than minimum (85ca33835) 2013-07-10 Michał Sawicz * Make the OpenEffect non-live by default to improve performance. Fixes: https://bugs.launchpad.net/bugs/1124584. (5993b186a) 2013-07-10 Michael Zanetti * invert the home button too in case the whole panel is inverted. Fixes: https://bugs.launchpad.net/bugs/1199622. (e646c82c0) * merge prerequisite branch (af0265e25) * removed .moved direcotry from merge (2c052a0e7) 2013-07-10 Pawel Stolowski * Merged trunk. (b776bbc4b) 2013-07-10 Michael Zanetti * invert the home icon too in case the panel is inverted (73e0ae415) 2013-07-10 Nick Dedekind * reordered installs alphabletically (21527efdc) * added qmenumode-qml to build (b8e28d0be) * removed deps from build. (e8c0b7424) 2013-07-10 Automatic PS uploader * Releasing 7.81.3+13.10.20130710ubuntu.unity.next-0ubuntu1 (revision 94 from lp:unity8). (bb7eaf1ff) * Releasing 7.81.3+13.10.20130710ubuntu.unity.next-0ubuntu1, based on r94 (89569ed0e) 2013-07-10 Michał Sawicz * Do not add PPAs anymore and clean up build scripts and CODING accordingly. (d0bff464d) 2013-07-10 Albert Astals * Disable -pedantic on the private Qt headers . (967321ec9) 2013-07-10 Michał Sawicz * merge trunk (80a7d99c9) 2013-07-09 Michał Sawicz * Fix fetching data from scopes in the custom scope pages. Fixes: https://bugs.launchpad.net/bugs/1199322. (1165c2368) 2013-07-09 Michael Zanetti * fix bad merge (6a4311ab8) 2013-07-09 Michał Sawicz * Fix test. (2cb3f4206) 2013-07-09 Albert Astals * Fix showHeader animation when the header is half shown at top . (bde28f10b) 2013-07-09 Mirco Müller * Action-callbacks still not triggered upon simulated tap. (0665cb09a) 2013-07-09 Albert Astals * Disable -pedantic on the private Qt headers (3559fa3f8) 2013-07-09 Michał Sawicz * Make the OpenEffect non-live by default to improve performance. (f4d69f99c) 2013-07-09 Ying-Chun Liu * Fix references to scope data. Fixes: https://bugs.launchpad.net/bugs/1199322. (39bacface) 2013-07-09 Mirco Müller * Using pynotify now. Added more tests for ephemeral notifications. Added snap-decision and interactive tests. (5d79aba9c) 2013-07-09 Albert Astals * QSKPI instead of comment (1aef4e8f1) * Fix showHeader animation when the header is half shown at top (0cf541735) 2013-07-09 Michael Zanetti * don't install the mock launcher backend. its only used for local test runs (af46006fc) 2013-07-09 Albert Astals * Fix showHeader animation when the header is half shown at top (888e546cc) 2013-07-09 Pawel Stolowski * Bindings for SocialPreview. (c15365873) * Don't leak combined filter options. (ef246e1f1) * Don't connect to itemAdded/itemRemoved signals, just rely on options.changed. (27c40fcf1) 2013-07-09 Michael Zanetti * removed unused old file ShortcutsContainer.qml. (a2f3eb3ef) 2013-07-09 Pawel Stolowski * Minor cleanups. (19d4f7d61) * Added build-dependency on libsigc++. (68feb2600) * Added SignalsList convienience class and use it to disconnect Unity's signals. (356dc315e) 2013-07-09 Michał Sawicz * Drop unneeded imports. (0f1ebe1e6) * Fix fetching data from mock scopes. (16aaf3fbf) 2013-07-09 Ying-Chun Liu * More fixing. (42848ee19) 2013-07-09 Nick Dedekind * more robust indicator-client AP tests. (549dee1e5) 2013-07-09 Pawel Stolowski * Merged trunk. (f2191cbad) 2013-07-09 Nick Dedekind * Added geometry to indicators client setup (d147b7f53) 2013-07-09 Pawel Stolowski * More cleanups. (ab6fa7c84) * Some more tests. (ec6ad0c08) 2013-07-09 Ying-Chun Liu * Fix video lens. (79ed75b9f) 2013-07-09 Pawel Stolowski * Some cleanups. (13f2a52db) 2013-07-09 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (2dca232d6) 2013-07-09 Automatic PS uploader * Releasing 7.81.3+13.10.20130709ubuntu.unity.next-0ubuntu1 (revision 86 from lp:unity8). (09153bf23) * Releasing 7.81.3+13.10.20130709ubuntu.unity.next-0ubuntu1, based on r86 (60f91bad4) 2013-07-09 Michael Zanetti * runtime depend on the launcher, not builddepend on it (524ada0c6) 2013-07-08 Michael Zanetti * remove old, unused file (a56c72017) * indent case labels (c334b7ec7) * add missing newline (e38ae4070) 2013-07-08 Pawel Stolowski * Fixed style. (490021c6e) * Added tests for multi range filter. (c2d862725) 2013-07-08 Michael Zanetti * fix implementation of pin() according to the change of the API definition (bf37b1894) 2013-07-08 Nick Dedekind * Split Plugins export macro into export_qmlfiles and export_qmlplugins. Added qmltypes to indicators plugin. (274fad2c3) * reverted changes for qmltypes (972288a6c) 2013-07-08 Ying-Chun Liu * rebase to trunk. (6139af78a) 2013-07-08 Nick Dedekind * Split Plugins export macro into export_qmlfiles and export_qmlplugins. Added qmltypes to indicators plugin (8ef502a45) 2013-07-08 Michael Zanetti * use export_plugin macro instead of copying stuff around manually (8b9e14c9c) * make temporary maps static to save some CPU cycles (805b451f4) * unify copyright headers (eee594c63) 2013-07-08 Nick Dedekind * merged with trunk (8ff6a0238) 2013-07-08 Michael Zanetti * merge trunk (dd024c800) * remove unused include paths (113a11d92) * quickListIndex -> actionIndex as changed in unity-api (1e491d565) 2013-07-08 Nick Dedekind * Added plugin cmake procedure for qmltypes files. (1e59aa172) 2013-07-08 Michael Zanetti * fix providing/depending versions (8ef032cbe) * update to latest fixes in unity-api (68b30f36c) 2013-07-08 Nick Dedekind * merged with parent (99aa1a898) * renamed power ap tests to battery to ensure desktop tests run (ffd8a3691) 2013-07-08 Michal Hruby * Implement CategoryResults based on DeeFilterModel. (2268f70e2) 2013-07-08 Nick Dedekind * merge with trunk (72a084faf) * wrap and sort (11b6ffcec) * updated debian control to recommend indicators for install (f5827888f) 2013-07-08 Michael Zanetti * adjust model to follow fixes in unity-api (18dce5952) 2013-07-08 Nick Dedekind * fixed inconsistent documentation. (bb1fce6fc) 2013-07-08 Automatic PS uploader * Releasing 7.81.3+13.10.20130708ubuntu.unity.next-0ubuntu1 (revision 83 from lp:unity8). (400dc9229) * Releasing 7.81.3+13.10.20130708ubuntu.unity.next-0ubuntu1, based on r83 (292d00b20) 2013-07-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (174fa1870) 2013-07-05 Nick Dedekind * Added fallback imports to indicators_client (e6de78926) 2013-07-05 Mirco Müller * First working set of autopilot-tests for notifications (d46c5e893) 2013-07-05 Michael Zanetti * fix depending unity-api version (513acf79b) * depend on new unity-api version (541483010) * adjust inter-dependencies between unity8 and unity8-private (57ea423c4) 2013-07-05 Nick Dedekind * removed icelandic po file (85d36235d) * flipped incorrected show password logic (ad786f6fd) * Added textual representation of menu model to indicators-client app (423e7153e) * update Plugins.cmake documentation (d89a274ef) 2013-07-05 Albert Astals * Remove workarounds for Qt bug 28403 . (d7e32fdee) 2013-07-05 Michael Zanetti * fix warning and copyright header (ccaa671e6) 2013-07-05 Michael Terry * Ensure the past circle animations complete (7bac1d596) 2013-07-05 Michal Hruby * Fix a typo (7d8fa6de4) 2013-07-05 Michael Zanetti * merge trunk (cb8ee6270) * update to next, upcoming version of unity-api (4ecd038df) * improve launcher flicking bahavior (1af70709d) 2013-07-05 Pawel Stolowski * Merged trunk. (925013ed7) 2013-07-05 Michael Zanetti * revert some unneeded change to shrink the diff and remove some debug stuff (3d9e5dc7e) * remove snapping workaround as we have a proper fix for ListView in the queue (4249c625a) 2013-07-05 Pawel Stolowski * Merged trunk. (d210c2314) * Emit previewChanged() from GenericPreview. (e6da59957) 2013-07-05 Ying-Chun Liu * Add Generic Preview (a4e4266ec) 2013-07-04 Pawel Stolowski * Added some more checks. (eaa1b6429) 2013-07-04 Nick Dedekind * fixed up some plugin paths (3edbd368a) 2013-07-04 Pawel Stolowski * Added SocialPreview classes. (690885a39) 2013-07-04 Nick Dedekind * merged with trunk (a426cc5c5) * merged with trunk (d9d659e43) 2013-07-04 Automatic PS uploader * Releasing 7.81.3+13.10.20130704ubuntu.unity.next-0ubuntu1 to ubuntu. (584cf0592) 2013-07-04 Nick Dedekind * eh (a10478331) 2013-07-04 Automatic PS uploader * Releasing 7.81.3+13.10.20130704ubuntu.unity.next-0ubuntu1, based on r78 (f09c5db46) 2013-07-04 Michael Zanetti * merge trunk (3114d70e2) 2013-07-04 Michał Sawicz * Use AbstractButtons instead of Button { color: "transparent" } that doesn't work. (b86111f30) 2013-07-04 Michal Hruby * Few more fixes (c74ed712e) * Fix issues brought up in review (740f52bb4) 2013-07-04 Nick Dedekind * Added missing Indicator.Network plugin install target (6d8de4e58) 2013-07-04 Michael Zanetti * remove some qdebug (f4703920f) * Packaging cleanup for unity 8: - install arch-deps binary libraries in a private lib directory - cleanup debian/control, rules, and install - complete debian/copyright - ship missing license files - install the python (autopilot) part using a setup.py - consolidate mocks - drop qml-phone-shell transitional packages and references. (c7eed8ae1) 2013-07-04 Nick Dedekind * Added remote autopilot app starter for indicators-client (7356f327d) * Use macro for exporting a plugin. (3f853a3a9) 2013-07-04 Michał Sawicz * Use AbstractButtons instead of Button { color: "transparent" } that doesn't work. (acc9c3c49) 2013-07-03 Michał Sawicz * Fix Vcs references in debian/control. (9af6ecf56) * Fix environment for autopilot tests. (af1699429) 2013-07-03 Nick Dedekind * merged with trunk (b85dc9b49) * Use targets for qmldir. Added dep to qmldir target for qmltypes target (1757cd1e1) 2013-07-03 Michal Hruby * Merge trunk (1b817d4b6) 2013-07-03 Michael Terry * Fix infographic display of older months (10d782aa7) 2013-07-03 Nick Dedekind * Merged with trunk (f3837eefd) 2013-07-03 Mirco Müller * Added support and tests for expanding snap-decisions with more than 2 actions passed in. (5e8d7e4cf) 2013-07-03 Michael Zanetti * dafuq (5939f9dd9) 2013-07-03 Nick Dedekind * Fixed up some indicators cmake deps (79e5c5368) 2013-07-03 Pawel Stolowski * Bindings for preview and activation requests. (c3c1984f7) 2013-07-03 Nick Dedekind * ApplicationPaths singleton (95deeb95c) * use custom target for service files (b8b4e788c) 2013-07-03 Michał Sawicz * Fix installation of libusermetrics mocks. (9687163e0) 2013-07-03 Nick Dedekind * single line elses (fee59e9c7) 2013-07-03 Albert Astals * Add some const & (f9e9a803b) 2013-07-03 Nick Dedekind * switched TextMenuItem to Network/PasswordTextField. (25fae73be) 2013-07-03 Daniel d'Andrada * Make Panel use DragHandles instead of a Revealer (ca1adb1e3) 2013-07-03 Michael Terry * Delete builddir/ when running "debuild clean". (098d83f42) 2013-07-03 Michael Zanetti * remove a duplicate empty (e7d10ccd0) * add some semicolons to keep the guideline happy (9ab0a04e4) * added tests for the clickFlick feature (46f863c78) 2013-07-03 Pawel Stolowski * Merged trunk. (115060e08) 2013-07-03 Michał Sawicz * Drop old LD_LIBRARY_PATH for autopilot. (8b130d8b2) * merge trunk (544dec40c) 2013-07-03 Albert Astals * Fix bug when setting the same model twice to a QLimitProxyModelQML. (dc805565e) 2013-07-03 Michael Zanetti * revert to pin() and introduce remove() (cbf87e3fd) 2013-07-03 Nick Dedekind * removed old style (0ffbca7ad) * Fixed menu model status (14dd9308c) 2013-07-03 Didier Roche * add missing dep (5275b557d) 2013-07-03 Nick Dedekind * Removed _ prefixes. (9fa879e14) 2013-07-03 Michael Terry * Use libusermetrics to provide infographic data. (a0517bf59) 2013-07-03 Michal Hruby * Fix whitespace (bc2a7bd70) 2013-07-03 Michael Zanetti * distinguish between appId and desktopFile (1a631512a) * fix typos (613c8d508) * revert changes in .po files (d8ecddf9d) 2013-07-03 Albert Astals * The objectName is used by the autopilot tests (c1c1c805e) 2013-07-03 Michael Zanetti * add missing copyright header (37f1dac7e) 2013-07-03 Nick Dedekind * renamed a few things in menuAction (68669d9d7) 2013-07-03 Michael Zanetti * merge prerequisite branch (d03381048) 2013-07-03 Michał Sawicz * Fix window name. (bbe71a732) 2013-07-03 Mirco Müller * Removed the commented/unused timer from the test. (10fcc11b1) 2013-07-03 Daniel d'Andrada * Update tst_Indicators.test_fully_open() (ddab291a0) 2013-07-03 Michael Zanetti * use real unity-api api also for tests (d146c55e1) 2013-07-03 Albert Astals * LVWPH: Do not crash on showHeader if we don't have a header . (826c2edf8) 2013-07-03 Nick Dedekind * renamd MenuItemAction[Value] to MenuAction[Binding] (dbc9718f1) 2013-07-02 Michael Terry * Clean builddir when building debian packaging (3cd1b81a0) 2013-07-02 Daniel d'Andrada * Add a TODO notice (734cff602) * Fixes various issues encountered during review (ca4490221) * Remove unused showAnimationProgress (eca0bce7a) * Only call reset() if the indicator plugin has it (9e6c6cd6b) 2013-07-02 Michael Zanetti * that shouldn't have gone it (f2c6713b2) * improve launcher bahavior (d99d6b867) 2013-07-02 Michał Sawicz * Fix LVWPH installation path. (8afbe69e4) 2013-07-02 Albert Astals * Remove workarounds for qtbug 28403 (46e79925e) * Merge lp:~aacid/unity8/qlimitproxyfiltersetsamemodeltwice (bc55d282e) * Fix bug when calling setModel twice with the same model (39fd092c1) 2013-07-02 Michał Sawicz * Merge trunk (03be7ae92) 2013-07-02 Nick Dedekind * Added indicators-client to AP tests (23ed9deed) 2013-07-02 Michael Zanetti * find unity-shell-launcher instead of libunity-api (5395fe8a6) * remove debug print from cmakelists.txt (c49428616) 2013-07-02 Daniel d'Andrada * Make Panel use DragHandles instead of a Revealer (679389747) 2013-07-02 Michael Zanetti * fix loading of items (cff11ab9d) * fix bad merge (b46e4cb44) * more merging (741221079) * merge trunk (3a040ccb9) * merge upstream (53f0da8ab) * add libunity-api-dev to builddeps (de0ec8884) * use proper cmake find for libunity-api (cdbe6169a) * some more work on pinning and storing the app list (10fc9e5fa) * rename favoriteApps to storedApps in backend api (15b29efa5) * add pin() function (89de1816e) 2013-07-02 Pawel Stolowski * Emit only one signal for changes. (6ad9a9afe) 2013-07-02 Daniel d'Andrada * DragHandle: fix hinting (e37e13c78) 2013-07-02 Nick Dedekind * added eof new lines. (6a9399ba1) 2013-07-02 Michael Zanetti * get rid of the applicationmodel. not needed any more (f598fb9d8) * add backend (2fd0bb0f0) * some more work on the launcher backend (b1d8d0f87) 2013-07-02 Albert Astals * test for the showHeader without header crash (23ccca634) 2013-07-02 Nick Dedekind * Added qmltypes files for plugins (04c326a7d) 2013-07-02 Albert Astals * LVWPH: Do not crash on showHeader if we don't have a header (90ced63b3) 2013-07-02 Pawel Stolowski * Added FIXMEs. (24fca3104) 2013-07-02 Nick Dedekind * merged with trunk (826156513) 2013-07-02 Pawel Stolowski * Merged trunk. (62f34aea6) 2013-07-02 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7e20e476b) 2013-07-01 Daniel d'Andrada * DragHandle: fix hinting (e3d41c9e1) 2013-07-01 Michal Hruby * Merge trunk (40c7650fc) * Add more result set fields (c3d8114f0) 2013-07-01 Michael Zanetti * edge hinting tweaks (d89488676) 2013-07-01 Daniel d'Andrada * DragHandle: add stretch and hintDisplacement properties. (8ba498c58) 2013-07-01 Michael Zanetti * improve the bzr commit hook (e5bf7c6d7) 2013-07-01 Michał Sawicz * merge lp:unity8 (d81d6dedf) 2013-07-01 Albert Astals * ListViewWithPageHeader implementation in C++. Fixes: https://bugs.launchpad.net/bugs/1171918. (7e142171e) 2013-07-01 Daniel d'Andrada * DragHandle: add stretch and hintDisplacement properties (a7f600faf) * Choose more appropriate values for edge-drag gestures (LP: #1194150) (7c443336c) 2013-07-01 Michal Hruby * Make things safe (527a91e4d) 2013-07-01 Pawel Stolowski * Use dynamic_cast instead of typeid checks when creating previews. (a9fab83cf) * Delete and clear hints and actions array on new preview. (23acef354) 2013-07-01 mhall119 * Fix build script error from extra blank line. Fixes: https://bugs.launchpad.net/bugs/1196322. (3c3f22b6a) 2013-07-01 Michal Hruby * Clean up unnecessary methods (aa2134a70) 2013-07-01 Albert Astals * Add comment in the .h about the double async as suggested by Gerry (f12dfb36a) * Add a few const & to params of functions (5b999d932) 2013-07-01 Nick Dedekind * removed debug log (b1b5ac0b3) * review comments - heights (c858d1427) 2013-07-01 Pawel Stolowski * Fixed indentation. Return QString() instead of "". (9d31cb0ac) 2013-07-01 Nick Dedekind * grouped anchors. (9e6ce1f63) * changed parseRootElement function to rootMenuType property (369daae76) * merged with trunk (77cebb065) * Updated Indicator model roles for fixing test suite. (c042d1553) 2013-07-01 Albert Astals * Merge (52ee82ad9) * Remove the async from ScopeListView delegates (6c75c2e7c) * contentHeight is dirty after an item is created (6ea3dbac0) 2013-07-01 Pawel Stolowski * Fixed whitespace. (12a8a4bcc) 2013-06-30 mhall119 * Fix build script error from extra blank line (a15dcf91e) 2013-06-30 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (99d28f4a1) 2013-06-29 Mirco Müller * Deleted bad whitespace. (6f632967c) 2013-06-28 Michael Zanetti * adjust old print (6f4acb59f) * improve the bzr commit hook (4e9819369) 2013-06-28 Daniel d'Andrada * update CODING instructions for building & running. (417b196ad) * Choose more appropriate values for edge-drag gestures (LP: #1194150) (2be7d2521) * DirectionalDragArea: emit draggingChanged() on direct recognition (dc9964e8e) 2013-06-28 Michal Hruby * Fix column references (c86850283) * Make qmltests compile again (553eef831) 2013-06-28 Michał Sawicz * Support the simplified theming from ubuntu-ui-toolkit. (1d88b3102) 2013-06-28 Michael Zanetti * better names for tests (10acd0a37) 2013-06-28 Pawel Stolowski * Implementation of bindings for activation and previews. (b696e5ce0) 2013-06-28 Michael Zanetti * make the guideline happy (d6ee15321) 2013-06-28 Daniel d'Andrada * DirectionalDragArea: emit draggingChanged() on direct recognition (44fd2a5f4) 2013-06-28 Michal Hruby * Implement CategoryResults based on DeeFilterModel (0a01fee98) 2013-06-28 Daniel d'Andrada * DirectionalDragArea: add touchSceneX, touchSceneY, and sceneDistance properties. (1ecc4df76) 2013-06-28 Pawel Stolowski * Fixed preview construction that resulted in duplicated actions for generic preview. (5d7c85e21) 2013-06-28 Mirco Müller * Added support and tests for expanding snap-decisions with more than 2 actions passed in. Switched to UbuntuAnimation and got rid of custom timing.js (b4a83d196) 2013-06-28 Nick Dedekind * Refitted DBusActionState to allow activation. Renamed to MenuItemAction & MenuItemActionValue. Now used in buttons as well. (d88d55696) 2013-06-28 Didier Roche * recommends phone scopes for now generated from libunity-scopes-json-def-phone (7684ca73c) 2013-06-28 Pawel Stolowski * Added build dependency on libunity-dev (needed for tests). (2e263ce60) * Merged trunk. (bc9f5cd1a) * Keep lists of actions and info hints in the preview. (7b0e4a2cb) 2013-06-28 Michael Zanetti * shorten line (98305551f) * improve tags for test data (7b7a3318c) * add a test that makes sure the greater doesn't tease when locked (640379b6f) 2013-06-28 Pawel Stolowski * Added additional check for app preview test. (0e5c24fb0) * Cleaned up test includes. (fbf3e3600) * Added some basic tests for preview bindings. (f9664327a) 2013-06-28 Michał Sawicz * Fix Notifications import paths. (225391225) * When installed, we should only use fallbacks, not override anything system-wide. (493aed1a1) 2013-06-28 Michael Zanetti * make sure launcher does not show when calling tease() but it is !available (ef5628137) 2013-06-28 Michał Sawicz * Drop newline (b5d938513) 2013-06-28 Michael Zanetti * test the launcher teasing (e61f5f8e7) 2013-06-28 Michał Sawicz * Bring back UbuntuShapeForItem.qml (bff9fafe1) * fix tst_ScopeView import paths (c9cc77426) 2013-06-28 Michael Zanetti * edge hinting tweaks (90ada3c77) * merge (74da756c4) * remove autopilot import path settings. they should be found by the binary itself now (3623bf72f) 2013-06-28 Nick Dedekind * Moved Network/Messaging qml to respective Indicator subfolders. CMake shadow builds use custom target for copying qml files. (db20921cd) * added DBusActionState action group property. variant -> var. removed spaces before properties. (3623cdc9d) 2013-06-28 Michał Sawicz * depend on qtubuntu-shell and make fake-env provide it (4c2b3ae42) * clean up import paths (c927ff679) 2013-06-28 Michael Zanetti * merge follow-unity-api branch (959d96751) * merge more (ad5368c0c) * merge (3e4155ef8) * fix license header for setup.py (ca130cefd) 2013-06-28 Michał Sawicz * merge trunk (e4e62e870) 2013-06-28 Albert Astals * Need a QTRY_ here since the last change (461e92cfd) 2013-06-28 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3cdae1430) 2013-06-27 Kevin Gunn * use trunk for suggested dir name & indent fixes (1ab80f9c6) 2013-06-27 Michael Zanetti * As requested by design, decreasing wobblyness in the WrongPasswordAnimation. (7718edc4c) 2013-06-27 Michael Terry * Fix "Tap to Unlock" text not appearing when in tablet greeter mode with only one user. (819c66206) 2013-06-27 Daniel d'Andrada * DirectionalDragArea: add touchSceneX, touchSceneY, and sceneDistance properties (58614986a) 2013-06-27 Michael Terry * Make sure to tell libusermetrics to finish loading data (7024fc685) 2013-06-27 Daniel d'Andrada * Make Greeter and Stage use the new DragHandle component. (05cc5ab59) 2013-06-27 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e93978fe1) 2013-06-27 Albert Astals * delay the contentheight dirty to when the animation finishes (2455cb5b4) 2013-06-27 Nick Dedekind * removed implicit height (be81ccf68) 2013-06-27 Kevin Gunn * update the build to install "recommends" for unity8 (12ea651fa) * Update of CODING to reflect new unity8 & some user feedback (b612e2500) * merge from lp:~kgunn72/unity/8_CODING_updates (497e8d471) 2013-06-27 Michael Zanetti * merge (8ccd0409a) * revert dependency change for qtubuntu (0d030a4c9) 2013-06-27 Didier Roche * rebump changelog version and adjust bootstrap commit (4c10d1978) 2013-06-27 Albert Astals * implement this binding in qml so it's easier to override (721aac92a) 2013-06-27 Michael Terry * Greeter: Fix 'tap to unlock' not appearing on startup (763189146) 2013-06-27 Nick Dedekind * Renamed indicator menus to menu items. (e50771072) 2013-06-27 Michael Zanetti * removed unused include (0d8018dcc) * dropped qml-phone-shell from run_on_device too (3c3200273) 2013-06-27 Albert Astals * foreach -> Q_FOREACH (ffd9bbb4f) * isolate the buffertoratio to one single place (efc8969c6) 2013-06-27 Michał Sawicz * Drop the theme workaround. (deb1f8d75) * Drop UbuntuShapeForItem.qml and use a temporary workaround in RunningApplicationTile.qml. (c3b9479bf) * borderSource: ItemStyle.style.borderPressed → borderSource: "radius_pressed.sci" (72a85d658) 2013-06-27 Nick Dedekind * Renamed DefaultActionState to ActionState. (b512b1736) 2013-06-27 Michał Sawicz * class: "transparent-button" → color: "transparent" (3801309f8) 2013-06-27 Albert Astals * Add TODO at Gerry's suggestion (df8f8c686) * Clip the running apps grid (e0a8a0606) 2013-06-27 Nick Dedekind * removed plugin naming. replaced with inidicator (a6ea4dc77) 2013-06-27 Michael Zanetti * only wobble for 1 gu instead of 2 (db5e51cf5) * dropped qml-phone-shell transitional packages (f731078d0) * remove whitespace (399039952) * remove duplicate cmake statement (377893a0c) * merge fake/mock qml plugins as we don't really distinguish between mocks and fakes correctly and this separation was just confusing (73354fd26) 2013-06-27 Daniel d'Andrada * Coding style (692ed7e24) 2013-06-27 Pawel Stolowski * Minor fixes. (0bfbf81f8) * Handle value conversion of PreviewInfoHint. (b44b2f0d3) * Copied QVariantFromGVariant function for libdee-qt. (1ec8ee514) * Register PreviewInfoHint metatype. (1e71a8a67) 2013-06-27 Albert Astals * Hardcode the v8 dir a bit less (847c3630f) 2013-06-27 Pawel Stolowski * Added preview info hints. (8ecf3e043) 2013-06-27 Michael Zanetti * drop mocked DeeVariantText as we its not used any more after removing the people lens (2dfded70d) * adjust paths.h to match new install paths (4d290f28a) 2013-06-27 Albert Astals * Do not refill or layout if we are layouting (a0e1e0cfd) 2013-06-27 Nick Dedekind * Fixed indicator header title (e0c01f449) 2013-06-27 Michael Zanetti * merge trunk (f41a5dc0e) 2013-06-27 Pawel Stolowski * Added some missing properties of base preview. (de9b8b757) 2013-06-27 Albert Astals * Rework the allowedOverlapCase for LVWPH sections (9ae41b6a6) 2013-06-27 Pawel Stolowski * Some more property stuff. (8cafd1203) 2013-06-27 Nick Dedekind * more javascript semi-colons. (7e71b7d05) * more javascript semi-colons. (9d4a11753) 2013-06-27 Albert Astals * Calculate heightToClip correctly for non first items of a section chain (5602cfa2f) 2013-06-27 Nick Dedekind * Changed shellImportPath to return a list of paths. Added prependImportPaths and changed appendImportPaths to check for duplicates. (a6fea5cae) 2013-06-27 Albert Astals * Fix crash when inserting items (9f40510e5) 2013-06-26 Michał Sawicz * Fix unity8.pot file. (fca0dc50e) * Fix unity8.pot file. (19fdb02a2) * Release 7.81.2 (7815f2be4) 2013-06-26 Michael Zanetti * launcher revealing tweaks (4f8c534d3) * reworked launcher folding. (29b90fe4e) 2013-06-26 Daniel d'Andrada * adhere to the project's coding style (648e4f295) * Make AxisVelocityCalculator::setTimeSource() more robust. (9cb758a93) * AxisVelCalc: Put updateIdleTime() inside calculate() (d27a58264) 2013-06-26 Michał Sawicz * Update changelog. (051db2e97) 2013-06-26 Pawel Stolowski * Changed Preview::actions() to return QVariant, which is the QList and contains action objects; this works as a model in QML. (f649207be) 2013-06-26 Nick Dedekind * updated qml file authors. (1cc5c816c) * more review changes. plugin renaming (6b9d8f58d) 2013-06-26 Daniel d'Andrada * Remove unused property (d96921ef2) 2013-06-26 Nick Dedekind * review comments (2e1beb4f3) 2013-06-26 Pawel Stolowski * Use QVariantList for actions property. (1e5f74194) * Notify about ApplicationPreview property changes. (ad2923ebd) 2013-06-26 Nick Dedekind * fixed installed app AP includes (384164eb8) * removed debug (e6ddac944) 2013-06-26 Daniel d'Andrada * Removed unnecessary semicolon (dfbcd44c9) 2013-06-26 Michael Zanetti * remove commented code (8237bc2fa) * fix anchors (3d33c985b) * switch launcher plugin to implement the launcher API in unity-api (029cbb74e) 2013-06-26 Michael Terry * Merge from trunk (c56021378) 2013-06-26 Albert Astals * set the heightToClip property from the beginning (183438ada) 2013-06-26 Nick Dedekind * Added prependPaths. shellImportPaths returns a list. (8cbd93454) * refix for module import. Do not add multiple. Prepend module + plugin import paths (808799f32) 2013-06-26 Michael Zanetti * coding style fix (411fc4d89) 2013-06-26 Pawel Stolowski * Added property notification for base preview attributes. (36c4013a5) 2013-06-26 Michael Zanetti * launcher revealing tweaks (28ba7db69) 2013-06-26 Pawel Stolowski * Fix return values. (62263d270) * Fixed previewReady. Some more checks around preview properties. (e37517804) 2013-06-26 Didier Roche * install the mock in the right dirs and clean lintian warnings by not inspecting those packages. Multiarch them as well (819c8c04d) 2013-06-26 Michael Zanetti * merge with launcher-new-folding (7527d5e15) 2013-06-26 Didier Roche * move some files to a private lib directory (31aa5c37c) 2013-06-26 Michael Zanetti * merge trunk (47b308d65) * first changes for the backend using unity-api (3ab712c02) 2013-06-26 Albert Astals * Don't remove items when overshooting (0a59ac870) 2013-06-26 Didier Roche * make the packages binNMUable (7a11dceef) * don't build-dep on libc6-dev, it's part of build-essentials (6bf1e4175) * prepare debian/changelog (32f16fa2b) * install python autopilot tests using a real python installation (needed if we transition from one python version to another) (f684183d5) 2013-06-26 Michael Zanetti * update the shader effect source when the highlight border changes (b47391891) 2013-06-26 Didier Roche * regular debian/*install syntax (4c4b70ef1) * simplify debian/rules (6a025113a) * first pass at cleaning debian/control (9c9d87c23) * ship required license files (e2097c077) * fix debian/copyright (54a725b96) 2013-06-26 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (7386fbbaa) 2013-06-25 Kevin Gunn * updates to the CODING file for building & running (1b3933b54) 2013-06-25 Michal Hruby * Add content_type property to category models. (32db1ea2c) 2013-06-25 Daniel d'Andrada * Update CODING (45dbde891) 2013-06-25 Michał Sawicz * Support flipped image in run_on_device. (01d32bf3f) 2013-06-25 Michal Hruby * Eh, 4 spaces, not 2 (b28d91318) * Adjust line wrapping (dff251b0f) 2013-06-25 Pawel Stolowski * Added tracks model to music preview. (2be4be193) 2013-06-25 Michal Hruby * Add content_type property to category models (4a23d806a) 2013-06-25 Michael Zanetti * move listView property into priv object (fd6dcb005) 2013-06-25 Albert Astals * Explanation about heightToClip (d22667e44) * Fix issues when resizing the list (4462ed503) 2013-06-25 Michael Zanetti * take listView's originY into account (f60e86fe3) * group anchors (719b008c5) * tune comments a bit more (07a982286) 2013-06-25 Pawel Stolowski * Removed confusing warning. (a17fe53af) 2013-06-25 Michael Zanetti * calling flick() onCompleted to correctly position the view. (d9a825314) 2013-06-25 Daniel d'Andrada * Remove unrelated code from test function (d23453fbc) 2013-06-25 Pawel Stolowski * Some more action/preview handling code. (036496b59) 2013-06-25 Michael Zanetti * correctly rotate divider depending on the whole panel rotation (853c3479b) * remove some empty lines (f8eb5903b) * add sourceSize to deleage images (71b01da2f) * fix opacity and actually make it non-live (b86f28b2f) * tune comments (4831387ab) * make listView property readonly (ebdabddb3) * added a property for the listView to not have to reach out of scope (da63a1d2d) * some optimisations (ae1a2e5a1) * thread flicking the same as moving for the launcher (96d5289d6) 2013-06-25 Albert Astals * spacing (46b72d98c) * Fix position being wrong on some createItems (f879da8cf) 2013-06-25 Pawel Stolowski * Initial cut at preview action handling. (d60660864) 2013-06-25 Albert Astals * Merge (a2e2fbc22) 2013-06-25 Pawel Stolowski * Compilation fixes. (dc8f17e4b) 2013-06-25 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e97365daa) 2013-06-24 Michael Zanetti * don't clear lockscreen directly after login, its still visible in the fading animation. Clear it when it is requested to be shown instead (fda294526) 2013-06-24 Michał Sawicz * Support annotated icons in ApplicationsFilterGrid.qml. (af5d2441b) 2013-06-24 Pawel Stolowski * Smore more preview handling. Handle other activation responses. (b47b4d3f2) 2013-06-24 Michael Zanetti * remove some empty lines (ce0da6306) 2013-06-24 Michał Sawicz * As per pstolowski's "yeah, 0 is a valid number ;)" (a1af2b9f2) * Fix re (3518af545) 2013-06-24 Michael Zanetti * whitespace... (5c35408c0) 2013-06-24 Michał Sawicz * Fixing the regex. (5a23870a2) 2013-06-24 Michael Zanetti * fix warning (9abdb4619) 2013-06-24 Pawel Stolowski * Added some basic classes and code for previews bindings. (ea9229536) 2013-06-24 Michael Zanetti * add comment to the reset() function (8688a2a05) 2013-06-24 Michał Sawicz * Support annotated icons in the ApplicationsFilterGrid.qml. (6018ede5e) 2013-06-24 Michael Zanetti * invert launcher again (b818fc02a) * remove empty line (5910f1128) * remove unused import (686dbb1a4) * revert change that never hides the panel (for easier testing) (97258e035) * update tests (a9e774ec3) * only clear the lockscreen when it is requested, not directly after entering (f56dd66ca) * convert launcher to be a flickable. (4166f7204) 2013-06-24 Michał Sawicz * Support flipped image in run_on_device. (8258bacc4) 2013-06-24 Michael Zanetti * cleanup comments (c51562b7b) * some cleanup (5c197f1d7) 2013-06-24 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (41efc9c14) 2013-06-23 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (fba58e9e1) 2013-06-22 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (8c33dcbe3) 2013-06-21 Michał Sawicz * Release 7.81.1 (2a69b6330) 2013-06-21 Pawel Stolowski * Convert and populate hints column (requires fix to dee-qt). (616120557) 2013-06-21 Nick Dedekind * fixed imports (2ecaad27d) 2013-06-21 Albert Astals * Allow for the pageHeader to grow when overshooting (b5e4e1589) 2013-06-21 Michał Sawicz * Don't limit apps, update changelog and release. (ada7d2cd3) 2013-06-21 Pawel Stolowski * Merged trunk. (b806e0e52) * Added variant conversion function. (4fc00e9d7) 2013-06-21 Michael Zanetti * some more dirty hacks to get some more perspective into it (f30b35900) * experiment with perspective (74b953a6a) 2013-06-21 Albert Astals * Stop listening for changes once we scheule it for removal (631e7100b) * Qt 5.0 crashes if we release the items just after itemCreated (57fa3efdb) 2013-06-21 Nick Dedekind * merged with trunk (f131a473b) * removed lockscreen AP tests. not working. (74d731ae0) 2013-06-21 Albert Astals * We sometimes need a refill here (534d7d46a) * Merge (cff589bbe) 2013-06-20 Michael Terry * Merge from trunk (4cffa8c5c) 2013-06-20 Michał Sawicz * Drop build_unity that's not needed anymore and clean up build/run scripts. (a4f7dfc36) 2013-06-20 Michael Terry * Merge from trunk (bd11362a9) * Add missing Build-Depend on libusermetrics (ec68c6eb2) 2013-06-20 Michał Sawicz * Pre-optimize PNGs to speed up builds. (00a30959b) 2013-06-20 Michael Zanetti * minor adjustment to brighness calculation and invert launcher again (dc6808ef1) * fix size of items (c5d2e653e) 2013-06-20 Daniel d'Andrada * Bottombar: s/Revealer/DirectionalDragArea + refactoring. (1e359e231) 2013-06-20 Pawel Stolowski * Changed signature of activate(). (9d56445a3) 2013-06-20 Albert Astals * showHeader at bottom bugfix + test (c5e376f38) 2013-06-20 Daniel d'Andrada * Fix typo in comment (8134bba66) 2013-06-20 Michał Sawicz * Pre-optimize PNGs to speed up builds. (fc656c63b) 2013-06-20 Albert Astals * Don't need the processEvents calls (ab1237b32) 2013-06-20 Michał Sawicz * add some readability (2de7e3b5d) * Drop build_unity that's not needed anymore and clean up build/run scripts. (4a0910435) 2013-06-20 Michael Zanetti * cleanup (b1b4fee08) * some more work to speed it up (514d6aee1) 2013-06-20 Pawel Stolowski * Merged trunk. (543a6dacb) * Added abstract filter class. (5a62ce35b) 2013-06-20 Albert Astals * adjustMinYExtent more often (d53037472) 2013-06-20 Pawel Stolowski * Make sure only one option is selected in check option filter. Some changes to combined filter. (ab1ed52cb) 2013-06-20 Albert Astals * refill asap in case the geometry change means we need to fetch more items (93d1eb44e) 2013-06-20 Nick Dedekind * merged with trunk (574bbde3d) 2013-06-20 Michael Zanetti * merge trunk (4761d4ed8) * made the height of the folding area configurable (d38563644) 2013-06-20 Albert Astals * Fix Merge (4739ab9b2) * Merge (db30c38f4) * Does adding the processEvents help? (40354d763) * Fix last todo in the test section (5fc7ed6b9) 2013-06-20 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e90dbab0b) 2013-06-20 Michał Sawicz * Release 7.81.0 (3d62c2b3b) * Merge trunk. (bea33a52a) * Make 60GUs the "wide" mode for notifications. (af2495d83) 2013-06-19 Pawel Stolowski * First cut at porting phablet code to the new scopes API. (8cbde4bd0) 2013-06-20 Michał Sawicz * Fix notification width. (201437e19) * Add changelog entry. (184b87572) * Move Notifications to front. (62667b848) 2013-06-19 Michał Sawicz * merge new-libunity (f7a2387b9) * Fix the column id of desktop files. (859dfd9c0) 2013-06-19 Mirco Müller * Integrate notifications. (a467fa83f) 2013-06-19 Michał Sawicz * Add a FIXME about reordering scopes. (eba0e3326) * Transition to using real scope icons. (6a12b9f91) * Avoid conflicting Notifications name. (287e74f32) * merge trunk (66d7349c7) * Update translation template file. (32fd687fe) 2013-06-19 Pawel Stolowski * Some initial work for flattening multi-range filter. (1c851d680) 2013-06-19 Mirco Müller * Make sure the button does have a defined actionId (a63733961) * Put virtual package dependency closer to real dependency for readability (c906d963e) * Use signal instead of property for clicked-action test, be more verbose with the model-name, try to reuse the repeater element for the interactive notification (973af8628) 2013-06-19 Michał Sawicz * Update unity8.pot file. (e6cf67eb8) 2013-06-19 Albert Astals * Really build now ^_^ (60e58029c) * Make it build (5595e8ffd) * better name (2eea08bf0) * whitespace (0c91e5b42) * Merge (cbc31344b) 2013-06-19 Daniel d'Andrada * Bottombar: s/Revealer/DirectionalDragArea + refactoring (76356918f) 2013-06-19 Albert Astals * LVWPH section tests (d1084829b) * Small refactor (3bc276997) 2013-06-19 Mirco Müller * Fix import path and filename (2bfccfbfd) 2013-06-19 Nick Dedekind * Better API for indicator menu select activation (de24225bd) 2013-06-19 Mirco Müller * Added Copyright-comment-header (ea4e08292) 2013-06-19 Daniel d'Andrada * Tests for DragHandle + some refactoring to make it possible (6bfa4a0eb) * Make Greeter and Stage use the new DragHandle component. (9fe18e8ec) 2013-06-19 Mirco Müller * Update dependencies... make Notification-qmltest not depend on the real backend, but use a fake one instead. (e8f886d3a) 2013-06-19 Daniel d'Andrada * Added uqmlscene tool and tryFoo targets for manual testing (782b71b50) 2013-06-19 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3996077d9) 2013-06-18 Nick Dedekind * moved indicator cpp source to src folder. (12909553f) * updated indicator enums (1004a152a) 2013-06-18 Michael Zanetti * new folding implementation (efc149e96) 2013-06-18 Mirco Müller * Don't keep debug-output around (0815a0113) * Use a different way to test clicks on buttons and interactive-areas (b7b5af84c) 2013-06-18 Daniel d'Andrada * Remove redundant cmake code. (715039c6c) 2013-06-18 Albert Astals * Shuffle layout calls a bit (6efc13b4b) * Update m_minYExtent more often and make it have more "accurate" values (24ffcc6b5) 2013-06-18 Mirco Müller * Notification-backend changed the model name... so we need to adapt (31777a260) 2013-06-18 Daniel d'Andrada * Move tryFoo code into a separate macro, add_manual_qml_test (907a14f8e) 2013-06-18 Nicolas d'Offay * Changed infographic gradient colours. (8864a314b) 2013-06-18 Nick Dedekind * Added libqmenumodel-dev to local build deps (84c634185) 2013-06-18 Albert Astals * Add debug here, trying to find out why this still fails on CI (da029e187) * remove this loops (e923c406b) 2013-06-18 Nick Dedekind * updated deps in build file (74d9eb41c) * Merged with trunk (e715db56c) * Fixed Indicator install path (f86761118) 2013-06-18 Albert Astals * remove debugs and uncomment the rest of tests (9feabaf10) * Add some explicit layout() calls (ff326f55f) 2013-06-18 Pawel Stolowski * First cut at filters support - added filter classes from Unity-2d. (ffba04ddd) 2013-06-18 Albert Astals * Bring changes from the lvwph branch (9dc0f9c5c) 2013-06-18 Nicolas d'Offay * Changed colour constructors. (f5e4a6788) 2013-06-18 Albert Astals * More debugs to try to find the error in CI (482a031c3) 2013-06-18 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (d628dcd7e) 2013-06-17 Albert Astals * Make the silly whitespace checker happy (7135715a1) 2013-06-17 Daniel d'Andrada * Move Direction enum out of DirectionalDragArea (3b92eca37) 2013-06-17 Albert Astals * Comment all the tests except one that fails, will make it easier to get the debug output (8b287b292) * Uncomment some more debugs to try to find out what's going wrong with CI (0b609d7a6) * Increment the i ^_^ (90e24ca24) 2013-06-17 Daniel d'Andrada * Make Direction.isHorizontal and isVerticall callable from QML (856e0c303) 2013-06-17 Nick Dedekind * Fixed MenuContent test (eaa733999) 2013-06-17 Albert Astals * More debug to help with CI (e71f2dbbd) 2013-06-17 Nick Dedekind * fixed test resources (0f11c84cb) * 3rd review changes set. (fa0ad6079) 2013-06-17 Michael Terry * Make demo user a bit configurable as a stop-gap measure for Design until lightdm support lands. (829af88b7) 2013-06-17 Albert Astals * Add some debug to try to find out why test fails (429fe7166) 2013-06-17 Nick Dedekind * more review fixes (c0252302c) * renamed IndicatorIcon -> IndicatorWidget. javascript ; (d4bcf25e7) 2013-06-17 Albert Astals * revert naming change and remove old test (41889c767) * Add a try compare to help slow CI (d9a088347) 2013-06-17 Nick Dedekind * s/iconQml/widgetSource & s/pageQml/pageSource. Renamed indicator icons to widgets. (f943e0c38) 2013-06-17 Albert Astals * Fix output filename (4aab0c20a) 2013-06-17 Nick Dedekind * merge with trunk (bfe6afc27) * renamed IndicatorsClient to Unity.Indicators (7da7d3b75) 2013-06-17 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (1e6991925) 2013-06-16 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (3e6a90c2b) 2013-06-15 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (863a16188) 2013-06-14 Michał Sawicz * update column and category ids (c61aa9caa) 2013-06-14 Mirco Müller * Got rid of signal actionInvoked in frontend and related tests... now 3 of 8 tests failing again (815a6dcdf) 2013-06-14 Michael Terry * Use libusermetrics; consolidate test usage of that library into a single mock (4811d692f) 2013-06-14 Daniel d'Andrada * Added uqmlscene tool and tryFoo targets for manual testing (7331e5635) * Move Direction enum out of DirectionalDragArea (41f64be6d) 2013-06-14 Mirco Müller * All test work again (afaf01288) * Make all tests pass again (10113e972) 2013-06-14 Michał Sawicz * even more lens → scope renames (c4f013ad7) * update .pot file (1af5a4cd8) * More of lens → scope renaming (adfdb38cc) * Drop People lens. (0adb9c5d4) * Recommend unity-scope-home and unity-lens-applications. (0d44e917d) * Bump version and drop the Conflicts that doesn't really help. (6d28492d4) 2013-06-14 Albert Astals * Make tests more stable in Qt 5.0 (a17a20f87) * No need for the classname (7e59aff1c) * Convert this to a try compare to try to fix slow CI?¿ (cb8b3c76b) * Install the LVWPH plugin (6f158b3f3) * Merge (23a7332d2) * Copyright + remove key handling (673e1c36b) 2013-06-14 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (564054249) 2013-06-13 Michael Terry * Make demo user a bit configurable as a stop-gap measure for design until lightdm lands (2f8dfa99d) 2013-06-13 Michael Zanetti * Added right edge hinting to greeter. (d9a076c5c) * shorten lines a bit (acf896ecf) 2013-06-13 Nicolas d'Offay * Changed gradient colours. (3a80e1c3b) 2013-06-13 Albert Astals * Run the test on qmluitests (7b47f47d4) * Fix whitespace (51458f22d) 2013-06-13 Pawel Stolowski * Fixed broken test based on dednick's input. (d319da76c) 2013-06-13 Albert Astals * Merge (1d36f18cf) * Docu + misc stuff (44f91cc70) 2013-06-13 Michael Zanetti * updated tests to match new teasing area functionality (36d8ae7f3) 2013-06-13 Pawel Stolowski * Forgot to rename some variables. (ed9f1a606) 2013-06-13 Michał Sawicz * Update CODING after unity8 rename. (aa1c06768) 2013-06-13 Mirco Müller * Use the real backend and real notification-type now... test still broken due to missing backend-mocks (e9fe9d865) 2013-06-13 Pawel Stolowski * Merged dependency change. (4c95d0c46) * Fixed delegate mapping names. (8e7fd7e18) 2013-06-13 Michał Sawicz * fix libunity-core Depends (040d6fff6) * merge trunk (75277868e) * add temporary libunity-core dependency (7c4453fe0) 2013-06-13 Nick Dedekind * removed dynamic insert/remove. replaced with model reset (4787a4f4f) 2013-06-13 Mirco Müller * Rename NotificationRenderer's ListView... only pass notification object to delegate for invoking actions (f4e77415f) 2013-06-13 Michael Zanetti * added edge hinting to greeter (652fa308e) 2013-06-13 Pawel Stolowski * Commented some more unused arguments. (b5414b58c) * Commented out unused argument. (78cc29b97) 2013-06-13 Albert Astals * Merge (050141c3a) 2013-06-13 Pawel Stolowski * Obey schema in fake scope. (89dc9ad66) * Added a copy of Home scope icon, so that it matches real home scope. (a4a914ac2) 2013-06-13 Albert Astals * Test for the showHeader bug i just fixed (16002957c) 2013-06-13 Pawel Stolowski * Added temporary Conflicts rule. (1da2a3d87) 2013-06-13 Mirco Müller * Trigger actions via Notification's invokeAction() and not through NotificationModel's triggerAction(). (beaf4f41c) 2013-06-13 Pawel Stolowski * Fixed whitespace. (d4a6cae26) * Merged trunk changes. (b5bbc36d0) 2013-06-13 Albert Astals * Make showHeader not break scrolling back to the top (ee7bd542f) * Different showheader animation (32c643b74) * Set flick velocity and decelearation based on height like old LVWPH (625af9ac9) 2013-06-12 Pawel Stolowski * Implemented onScopesReordered handler, fixed onScopeRemoved. (04e6eb643) 2013-06-12 Nick Dedekind * Added Dash tests. (fe7ed4214) 2013-06-12 Pawel Stolowski * Implementation of onScopeRemoved. (552b10deb) 2013-06-12 Albert Astals * Bring back force non clip for previews (5af755cc4) 2013-06-12 Pawel Stolowski * Updated activate TODO. (a6b356f46) * One more occurence of globalResults.. (e0bc11f96) 2013-06-12 Mirco Müller * Try to trigger action via notification object directly (e53e2a0e5) 2013-06-12 Pawel Stolowski * Removed ViewType. (87faa27e5) * More lens - scope renaming in tests. (4c9df2cae) * Use correct schema in fake lens. (7f3f18f2c) 2013-06-12 Nick Dedekind * added modules to QML import path (a725b2402) 2013-06-12 Pawel Stolowski * Bumped libunity. (d854340aa) 2013-06-12 Albert Astals * Wops, forgot to commit this :D (4d332de32) * showHeader animation (c1506a797) 2013-06-12 Pawel Stolowski * Removed unneeded include. (f977c1722) * More renaming. (d828b9235) 2013-06-12 Nick Dedekind * merged with trunk (d56c53d06) * moved test IndicatorsClient to modules folder (d7ed79d93) 2013-06-12 Pawel Stolowski * More renaming. (e12ee10e0) 2013-06-12 Albert Astals * Rework the Base.qml clipping to work on the new ListViewWithPageHeader (52f8f3251) 2013-06-12 Nick Dedekind * removed old resources (42b1bfcf2) * new line (6f5d19dc6) * new lines. indicators service files install (db9327fc3) 2013-06-12 Michał Sawicz * Revert focus stealing prevention for new apps. Fixes: https://bugs.launchpad.net/bugs/1190155. (76e391629) 2013-06-12 Daniel d'Andrada * DirectionalDragArea: added minSpeed and maxSilenceTime constraints. (0ffb04f3c) 2013-06-12 Michał Sawicz * Don't prevent bringing new apps to the front. (ee9de0ba0) 2013-06-12 Michael Zanetti * Add Lockscreens (320fda29e) 2013-06-12 Nick Dedekind * merged with trunk (dea0163da) * removed chewie test plugin (1a125976f) 2013-06-12 Albert Astals * Merge (3234320ba) * Is this the best place to put the clip? (9d6f11cd0) * Fix some culling to make it more accurate (8d8d03321) 2013-06-12 Michael Zanetti * fix whitespaces rename autopilot tests to match what they do (479deda9c) 2013-06-11 Daniel d'Andrada * s/DirectionalDragAreaTest/testDirectionalDragArea (ffa9e4ae7) * Make DirectionalDragArea::setRecognitionTimer() more robust (eee503454) 2013-06-11 Pawel Stolowski * Moved from_gicon function to IconUtil.js. (d83cab97d) * Merged trunk. (06b64060f) * Use mockmusicmaster / mockvideosmaster scopes. (1425cd0b4) 2013-06-11 Albert Astals * Bring the section headers (bb95d9619) 2013-06-11 Daniel d'Andrada * Improve documentation of minSpeed (7c0cc2712) 2013-06-11 Michael Zanetti * added autopilot tests for lockscreens (bc971cd61) 2013-06-11 Mirco Müller * Use the type Notification defined by the notification-backend plugin (e9ea2e449) 2013-06-11 Michael Zanetti * fix starting of lockscreen (9d8c22ee5) 2013-06-11 Daniel d'Andrada * Stage: code cleanup (fe163634c) 2013-06-11 Mirco Müller * Enable notifications (c916fbee6) 2013-06-11 Albert Astals * Merge (08388db22) 2013-06-11 Daniel d'Andrada * Stage: code cleanup (4a231669c) 2013-06-11 Nick Dedekind * moved IndicatorsClient to modules. Fixed debian/control&install for indicators-client (bd55217b4) 2013-06-11 Pawel Stolowski * Fixed unity core dependency. (4cd62a3f3) 2013-06-11 Nick Dedekind * merged with trunk (fa42372ee) 2013-06-11 Pawel Stolowski * More lens -> scope renaming. (baac7ed5e) 2013-06-11 Nick Dedekind * Fixed code styling (dbcb48ce9) 2013-06-11 Michael Zanetti * revert removal of PIN user from full plugin again as its required for the tests (127756e28) 2013-06-11 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (a9e5def9a) 2013-06-11 Daniel d'Andrada * Remove edge-drag hint animations. (9916819fb) 2013-06-10 Daniel d'Andrada * Remove empty function (a16662840) 2013-06-10 Günter Schwann * Bring back ListView'ed Carousel now that Qt is fixed. (289eb1db0) 2013-06-10 Daniel d'Andrada * Remove edge-drag hint animations. (f9b0f2b6b) 2013-06-10 Michał Sawicz * Support git-backed checkout in run_on_device. (84aae6abc) 2013-06-10 Nick Dedekind * Fixed whitespace. (0cf21bed3) 2013-06-10 Michael Terry * Show login list when not in narrow mode, instead of only when we have multiple users. (d7014ef0a) 2013-06-10 Albert Astals * Merge (6396c0494) * Fix resizing of items before the viewport that are not the first item moving the viewport (5de03b084) 2013-06-10 Michał Sawicz * Add some new and temporary translations. (5122efd87) 2013-06-10 Albert Astals * merge (1a82fd649) * Delete files (d759fdd31) * Comment this too (053c42e31) 2013-06-10 Michael Zanetti * also remove the user itself, not just the handlers (aeaedee22) * remove has-pin user from full mock plugin again (d4015b3f1) 2013-06-10 Nick Dedekind * merged with trunk. Fixed indicator tests (cddaf4437) 2013-06-10 Albert Astals * Remove old test (87204f303) 2013-06-08 Michał Sawicz * Add some temporary translations. (b51e4519d) * Add more translatables and update pl translation. (3b1886c74) 2013-06-08 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (4480b87ca) 2013-06-07 Daniel d'Andrada * Remove trailing whitespace (a2a2eb048) * DirectionalDragArea: added minSpeed and maxSilenceTime constraints. (60de064ed) 2013-06-07 Michał Sawicz * merge trunk (509bd3378) 2013-06-07 Albert Astals * We don't need this change now that pageHeader is a QQuickItem and not a QQmlComponent in LVWPH (333868668) * Compile in platforms where 0. is not a qreal (6079ff611) * Explain the weird construct (5c284885f) * Remove extra debug (23c75e8c8) 2013-06-07 Michał Sawicz * Support git-backed checkout in run_on_device. (c8f0cef23) 2013-06-07 Albert Astals * My test battery (7b60b940e) * Depend on the private qt things (bbace0d77) * Start to use the C++ ListViewWithPageHeader (0896483ac) 2013-06-07 Michał Sawicz * Drop people lens from local build and fix build scripts. (65a5c7da6) 2013-06-07 Nick Dedekind * moved indicator service files to Panel/Indicators/servicefiles (0c23a5b83) * phone device (dc0c11882) * renamed Panel/indicatorsclient -> Panel/Indicators/client (23b0a430e) * Removed debug output (cb7cbfeab) * updated to new indicator file format (bdfbe6546) * more shuffling around. fixed tests (faa9e8d94) * removed/removed extra data (60d489600) * Indicator Icon Widgets (e2b019b09) * few indicator client fixes (f0634500a) * better handling of indicator menu factory object creation. (f5a8ec74d) * Added some missing files (7109ca3f3) * Started simplification of indicators client (fa8535551) * removed mock battery image (054523853) * Updated debian/control dependencies (37b882347) * export .indicators files from unity (331bab55e) * unit tests for IndicatorsClient (a4713ffb6) * More AP testing (2ecb97bb4) * More autopilot for indicators (8c60ce99f) * Added indicators client + autopilot test suite basics. (4c4b83e71) * Moved chewie ui (indicators-client) into unity. renamed. (81d8ab24e) 2013-06-07 Michał Sawicz * Only build the depends package if the control file is newer. (66db144d7) * And even more fixes. (98231cd25) * Also kill qml-phone-shell. (82f3e0471) * Fix run_on_device issues. (a670dfb97) * Check for qml-phone-shell in /etc/device-services, too. (430817947) * fix run_on_device for raring (496bb7a0e) * Shadow-build libunity and drop people lens from local builds. (e91ea0724) * Improve build scripts error reporting and interactivity. (09ab175a9) 2013-06-07 Nick Dedekind * Added Dash tests. (1fe83ec61) 2013-06-07 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (dc7b34f1c) 2013-06-06 Pawel Stolowski * Added a comment. (58710d749) * Removed commented code. (1099b0b3f) * build script cleanup. (d23f92aa7) * Some more cleanups. (bc0e8b689) * Depend on libunity-core-6.0-dev (<7.80). (84132df97) 2013-06-06 Michał Sawicz * Add Lockscreens (c704d5e43) 2013-06-06 Michael Terry * Add a comment explaining future plans for narrowMode (32f07dd0d) * Use narrowMode to determine if we show login list instead of multiUser (6de651163) 2013-06-06 Pawel Stolowski * Removed mock-setup C++ code. All this is now set up by demo-assets gsettings schema override. (c4d05cae0) * Minor fixes. (72af57c86) * Renamed lens/lenses files to scope/scopes. (684866db0) * Renamed Lens/Lenses to Scope/Scopes. (38257fa3e) * Some cleanups. (5fbee09ff) * Removed some commented code. (89e178b94) * Implemented a quick hack to get some gicons working, and fallback to base icons for annotated ones. Proper global solution needs to be implemented. (063b956ba) * First cut at port to new UnityCore and libunity 7.0. (0b01bee6e) 2013-06-06 Günter Schwann * bring back ListView Carousel from r478 now that Qt is fixed (6f40eabc4) 2013-06-06 Launchpad Translations on behalf of unity-team * Launchpad automatic translations update. (e8b206a3f) 2013-06-06 Michał Sawicz * Update CODING for unity8 rename. (fa8ca6e63) * Inital unity8 commit. (c5c1ff404) lomiri-0.2.1/LGPL_EXCEPTION.txt000066400000000000000000000022431455512424300157300ustar00rootroot00000000000000Digia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that: (i) the header files of the Library have not been modified; and (ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and (iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1. Moreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to (i) numerical parameters; (ii) data structure layouts; (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length. Furthermore, you are not required to apply this additional permission to a modified version of the Library. lomiri-0.2.1/README.md000066400000000000000000000071651455512424300143020ustar00rootroot00000000000000# Lomiri Lomiri is the operating environment for everywhere. It is able to span the gaps between touch, mouse, and keyboard; between phones, tablets, and workstations; and look good doing it. This repository contains the new version of Lomiri which powers Ubuntu Touch based on Ubuntu 20.04 and serves as the upstream for packaging Lomiri outside of Ubuntu Touch. Most of the time, you'll want to contribute to the version of Lomiri on Ubuntu Touch based on Ubuntu 16.04, available on [GitHub](https://github.com/ubports/unity8). Changes there will be merged back into this repository from time to time. Lomiri has been renamed from Unity8. Most of the software on-device in Ubuntu Touch based on Ubuntu 16.04 is still called `unity8`. ## Developing Lomiri on Ubuntu Touch Lomiri can be built and its test suite run using [`clickable`](https://clickable-ut.dev). This is a convenient method to try out most graphical changes to Lomiri without an annoying redeployment process. If you wish to test your changes on your device or make changes that are more difficult to test without real hardware, check out [Making changes and testing locally on the UBports documentation](https://docs.ubports.com/en/latest/systemdev/testing-locally.html). If not, read on. Before you start, [install Clickable](https://clickable-ut.dev/en/latest/install.html). Now, clone this repository to your computer: `git clone https://gitlab.com/ubports/development/core/lomiri.git` Move into this directory: `cd lomiri` Now you can use the full suite of tools provided by this repository's [clickable.yaml](clickable.yaml). For example: * `clickable ide qtcreator` will open QtCreator with this repository open as a project. You can edit and build the project this way, but running the tests will be a bit difficult. * `clickable build --libs --debug` will build Lomiri in the same environment as it would receive in Ubuntu Touch. * `clickable test --libs` will run the entire Lomiri test suite. This test suite includes graphical tests (which are run on a virtual, invisible desktop) and non-graphical unit tests. These tests make sure Lomiri functions as prescribed and prevents new bugs from being added. You should run them before you create a PR on this repository. This command takes about 7 minutes on an Intel i7-8550U, so plan your time accordingly and use the next two options to reduce the number of times you need to run the whole test suite... * `clickable ide 'cd build/x86_64-linux-gnu/lomiri/ && make tryShell'` and similar commands that replace the `Shell` with another test target defined in [tests/qmltests/CMakeLists.txt](tests/qmltests/CMakeLists.txt) allow trying out some Lomiri components in a mock environment. You can use this to try out your changes to Lomiri as you develop. * `clickable ide 'cd build/x86_64-linux-gnu/lomiri/ && make xvfbtestShell'` and similar commands that replace the `Shell` with another test target defined in [tests/qmltests/CMakeLists.txt](tests/qmltests/CMakeLists.txt) allow running a single TestCase. You can remove the `xvfb` part of the make target to run the test case graphically, which might help you see what is causing the test to fail. For testing as a debian package locally, see https://docs.ubports.com/en/latest/systemdev/testing-locally.html ## i18n: Translating Lomiri into your Language You can easily contribute to the localization of this project (i.e. the translation into your language) by visiting (and signing up with) the Hosted Weblate service: https://hosted.weblate.org/projects/lomiri/lomiri The localization platform of this project is sponsored by Hosted Weblate via their free hosting plan for Libre and Open Source Projects. lomiri-0.2.1/build.sh000077500000000000000000000041241455512424300144510ustar00rootroot00000000000000#!/bin/sh # # Copyright (C) 2017 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # SETUP=false CLEAN=false NUM_JOBS=$(( `grep -c ^processor /proc/cpuinfo` + 1 )) CODE_DIR=$( dirname `readlink -f $0` ) usage() { echo "usage: build [OPTIONS] [BUILD_TYPE]\n" >&2 echo "Script to build the shell. If BUILD_TYPE is not specified, it defaults to \"debug\".\n" >&2 echo "OPTIONS:" >&2 echo " -c, --clean Clean the build tree before building" >&2 echo >&2 exit 1 } ARGS=`getopt -n$0 -u -a --longoptions="setup,clean,help" -o "sch" -- "$@"` [ $? -ne 0 ] && usage eval set -- "$ARGS" while [ $# -gt 0 ] do case "$1" in -c|--clean) CLEAN=true;; -h|--help) usage;; --) shift;break;; esac shift done [ $# -gt 1 ] && usage BUILD_TYPE="debug" [ $# -eq 1 ] && BUILD_TYPE="$1" mk_build_deps() { if [ ! -f control -o $CODE_DIR/debian/control -nt control ]; then sed 's/\:native//g' $CODE_DIR/debian/control > control mk-build-deps --install --root-cmd sudo control fi } if [ -f "/usr/bin/ccache" ] ; then if [ "x$CC" = "x" ]; then export CC='ccache gcc' fi if [ "x$CXX" = "x" ] ; then export CXX='ccache g++' fi fi if [ -f "/usr/bin/ninja" ] ; then GENERATOR="-G Ninja" # Ninja does not need -j, it parallelizes automatically. BUILD_COMMAND="ninja" else GENERATOR= BUILD_COMMAND="make -j$NUM_JOBS" fi if $CLEAN; then rm -rf builddir; fi mkdir -p builddir cd builddir mk_build_deps cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE $CODE_DIR ${GENERATOR} || exit 6 ${BUILD_COMMAND} || exit 7 lomiri-0.2.1/clickable.yaml000066400000000000000000000072421455512424300156140ustar00rootroot00000000000000--- builder: custom build: echo Run \'clickable build-libs --debug\' to build && false restrict_arch: amd64 libraries: lomiri: builder: cmake src_dir: "${ROOT}" test: make xvfballtests -j${NUM_PROCS} dependencies_host: - android-headers - cmake - cmake-extras - dbus-test-runner - debhelper - dh-apparmor - doxyqml - g++:native - gdb - graphviz - lomiri-schemas - libandroid-properties-dev - liblomiri-connectivity-qt1-dev - libevdev-dev - libgeonames-dev - libgl1-mesa-dev - libgl1-mesa-dri - libgles2-mesa-dev - libglib2.0-dev - libgnome-desktop-3-dev - libgsettings-qt-dev - libhardware-dev - liblightdm-qt5-3-dev - libpam0g-dev - libpulse-dev - libqmenumodel-dev - libqt5sql5-sqlite - libqt5svg5-dev - libqt5xmlpatterns5-dev - libqtdbusmock1-dev - libqtdbustest1-dev - liblomirisystemsettings-dev - libubuntu-app-launch3-dev - liblomiri-download-manager-common-dev - liblomirigestures5-dev - liblomirigestures5-private-dev - libudev-dev - liblomiri-api-dev - libusermetricsoutput1-dev - libx11-dev - libxcb1-dev - libxi-dev - pkg-config - python3-all:any - python3-setuptools:native - qml-module-qt-labs-folderlistmodel - qml-module-qt-labs-settings - qml-module-qtmultimedia - qml-module-qtqml-statemachine - qml-module-qtquick-layouts - qml-module-qtquick-xmllistmodel - qml-module-qtquick2 - qml-module-qttest - qml-module-lomiri-components - qml-module-lomiri-layouts - qml-module-lomiri-settings-components - qml-module-lomiri-test - qtbase5-dev - qtbase5-dev-tools - qtbase5-private-dev - qtdbustest-runner - qtdeclarative5-dev - qtdeclarative5-dev-tools - qtdeclarative5-private-dev - qtdeclarative5-ubuntu-content1 - fonts-ubuntu - lomiri-wallpapers - xvfb - qtmir - qml-module-qtmir - libqtmirserver-dev - liblomiri-app-launch-dev - libdeviceinfo-dev - mirtest-dev - qml-module-lomiri-settings-menus dependencies_target: - android-headers - cmake - cmake-extras - dbus-test-runner - debhelper - dh-apparmor - doxyqml - g++:native - gdb - graphviz - lomiri-schemas - libandroid-properties-dev - liblomiri-connectivity-qt1-dev - libevdev-dev - libgeonames-dev - libgl1-mesa-dev - libgl1-mesa-dri - libgles2-mesa-dev - libglib2.0-dev - libgnome-desktop-3-dev - libgsettings-qt-dev - libhardware-dev - liblightdm-qt5-3-dev - libpam0g-dev - libpulse-dev - libqmenumodel-dev - libqt5sql5-sqlite - libqt5svg5-dev - libqt5xmlpatterns5-dev - libqtdbusmock1-dev - libqtdbustest1-dev - liblomirisystemsettings-dev - libubuntu-app-launch3-dev - liblomiri-download-manager-common-dev - liblomirigestures5-dev - liblomirigestures5-private-dev - libudev-dev - liblomiri-api-dev - libusermetricsoutput1-dev - libx11-dev - libxcb1-dev - libxi-dev - pkg-config - python3-all:any - python3-setuptools:native - qml-module-qt-labs-folderlistmodel - qml-module-qt-labs-settings - qml-module-qtmultimedia - qml-module-qtqml-statemachine - qml-module-qtquick-layouts - qml-module-qtquick-xmllistmodel - qml-module-qtquick2 - qml-module-qttest - qml-module-lomiri-components - qml-module-lomiri-layouts - qml-module-lomiri-settings-components - qml-module-lomiri-test - qtbase5-dev - qtbase5-dev-tools - qtbase5-private-dev - qtdbustest-runner - qtdeclarative5-dev - qtdeclarative5-dev-tools - qtdeclarative5-private-dev - qtdeclarative5-ubuntu-content1 - fonts-ubuntu - lomiri-wallpapers - xvfb - qtmir - qml-module-qtmir - libqtmirserver-dev - liblomiri-app-launch-dev - libdeviceinfo-dev - mirtest-dev - qml-module-lomiri-settings-menus lomiri-0.2.1/cmake/000077500000000000000000000000001455512424300140725ustar00rootroot00000000000000lomiri-0.2.1/cmake/modules/000077500000000000000000000000001455512424300155425ustar00rootroot00000000000000lomiri-0.2.1/cmake/modules/EnableCoverageReport.cmake000066400000000000000000000164141455512424300226100ustar00rootroot00000000000000# - Creates a special coverage build type and target on GCC. # # Defines a function ENABLE_COVERAGE_REPORT which generates the coverage target # for selected targets. Optional arguments to this function are used to filter # unwanted results using globbing expressions. Moreover targets with tests for # the source code can be specified to trigger regenerating the report if the # test has changed # # ENABLE_COVERAGE_REPORT(TARGETS target... [FILTER filter...] [TESTS test targets...]) # # To generate a coverage report first build the project with # CMAKE_BUILD_TYPE=coverage, then call make test and afterwards make coverage. # # The coverage report is based on gcov. Depending on the availability of lcov # a HTML report will be generated and/or an XML report of gcovr is found. # The generated coverage target executes all found solutions. Special targets # exist to create e.g. only the xml report: coverage-xml. # # Copyright (C) 2010 by Johannes Wienke # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU General # Public License as published by the Free Software Foundation; # either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # INCLUDE(ParseArguments) FIND_PACKAGE(Lcov) FIND_PACKAGE(gcovr) FUNCTION(ENABLE_COVERAGE_REPORT) # argument parsing PARSE_ARGUMENTS(ARG "FILTER;TARGETS;TESTS" "" ${ARGN}) SET(COVERAGE_RAW_FILE "${CMAKE_BINARY_DIR}/coverage.raw.info") SET(COVERAGE_FILTERED_FILE "${CMAKE_BINARY_DIR}/coverage.info") SET(COVERAGE_REPORT_DIR "${CMAKE_BINARY_DIR}/coveragereport") SET(COVERAGE_XML_FILE "${CMAKE_BINARY_DIR}/coverage.xml") SET(COVERAGE_XML_COMMAND_FILE "${CMAKE_BINARY_DIR}/coverage-xml.cmake") # decide if there is any tool to create coverage data SET(TOOL_FOUND FALSE) IF(LCOV_FOUND OR GCOVR_FOUND) SET(TOOL_FOUND TRUE) ENDIF() IF(NOT TOOL_FOUND) MESSAGE(STATUS "Cannot enable coverage targets because neither lcov nor gcovr are found.") ENDIF() STRING(TOLOWER "${CMAKE_BUILD_TYPE}" COVERAGE_BUILD_TYPE) IF(CMAKE_COMPILER_IS_GNUCXX AND TOOL_FOUND AND "${COVERAGE_BUILD_TYPE}" MATCHES "coverage") MESSAGE(STATUS "Coverage support enabled for targets: ${ARG_TARGETS}") # create coverage build type SET(CMAKE_CXX_FLAGS_COVERAGE ${CMAKE_CXX_FLAGS_DEBUG} PARENT_SCOPE) SET(CMAKE_C_FLAGS_COVERAGE ${CMAKE_C_FLAGS_DEBUG} PARENT_SCOPE) SET(CMAKE_CONFIGURATION_TYPES ${CMAKE_CONFIGURATION_TYPES} coverage PARENT_SCOPE) # instrument targets SET_TARGET_PROPERTIES(${ARG_TARGETS} PROPERTIES COMPILE_FLAGS --coverage LINK_FLAGS --coverage) # html report IF (LCOV_FOUND) MESSAGE(STATUS "Enabling HTML coverage report") # set up coverage target ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_RAW_FILE} COMMAND ${LCOV_EXECUTABLE} -c -d ${CMAKE_BINARY_DIR} -o ${COVERAGE_RAW_FILE} WORKING_DIRECTORY ${CMAKE_BINARY_DIR} COMMENT "Collecting coverage data" DEPENDS ${ARG_TARGETS} ${ARG_TESTS} VERBATIM) # filter unwanted stuff LIST(LENGTH ARG_FILTER FILTER_LENGTH) IF(${FILTER_LENGTH} GREATER 0) SET(FILTER COMMAND ${LCOV_EXECUTABLE}) FOREACH(F ${ARG_FILTER}) SET(FILTER ${FILTER} -r ${COVERAGE_FILTERED_FILE} ${F}) ENDFOREACH() SET(FILTER ${FILTER} -o ${COVERAGE_FILTERED_FILE}) ELSE() SET(FILTER "") ENDIF() ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_FILTERED_FILE} COMMAND ${LCOV_EXECUTABLE} -e ${COVERAGE_RAW_FILE} "${CMAKE_SOURCE_DIR}*" -o ${COVERAGE_FILTERED_FILE} ${FILTER} DEPENDS ${COVERAGE_RAW_FILE} COMMENT "Filtering recorded coverage data for project-relevant entries" VERBATIM) ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_REPORT_DIR} COMMAND ${CMAKE_COMMAND} -E make_directory ${COVERAGE_REPORT_DIR} COMMAND ${GENHTML_EXECUTABLE} --legend --show-details -t "${PROJECT_NAME} test coverage" -o ${COVERAGE_REPORT_DIR} ${COVERAGE_FILTERED_FILE} DEPENDS ${COVERAGE_FILTERED_FILE} COMMENT "Generating HTML coverage report in ${COVERAGE_REPORT_DIR}" VERBATIM) ADD_CUSTOM_TARGET(coverage-html DEPENDS ${COVERAGE_REPORT_DIR}) ENDIF() # xml coverage report IF(GCOVR_FOUND) MESSAGE(STATUS "Enabling XML coverage report") # filter unwanted stuff SET(GCOV_FILTER "") LIST(LENGTH ARG_FILTER FILTER_LENGTH) IF(${FILTER_LENGTH} GREATER 0) FOREACH(F ${ARG_FILTER}) SET(GCOV_FILTER "${GCOV_FILTER} -e \"${F}\"") ENDFOREACH() ENDIF() # gcovr cannot write directly to a file so the execution needs to # be wrapped in a cmake file that generates the file output FILE(WRITE ${COVERAGE_XML_COMMAND_FILE} "SET(ENV{LANG} en)\n") FILE(APPEND ${COVERAGE_XML_COMMAND_FILE} "EXECUTE_PROCESS(COMMAND \"${GCOVR_EXECUTABLE}\" -x -r \"${CMAKE_SOURCE_DIR}\" ${GCOV_FILTER} OUTPUT_FILE \"${COVERAGE_XML_FILE}\" WORKING_DIRECTORY \"${CMAKE_BINARY_DIR}\")\n") ADD_CUSTOM_COMMAND(OUTPUT ${COVERAGE_XML_FILE} COMMAND ${CMAKE_COMMAND} ARGS -P ${COVERAGE_XML_COMMAND_FILE} COMMENT "Generating coverage XML report" VERBATIM) ADD_CUSTOM_TARGET(coverage-xml DEPENDS ${COVERAGE_XML_FILE}) ENDIF() # provide a global coverage target executing both steps if available SET(GLOBAL_DEPENDS "") IF(LCOV_FOUND) LIST(APPEND GLOBAL_DEPENDS ${COVERAGE_REPORT_DIR}) ENDIF() IF(GCOVR_FOUND) LIST(APPEND GLOBAL_DEPENDS ${COVERAGE_XML_FILE}) ENDIF() IF(LCOV_FOUND OR GCOVR_FOUND) ADD_CUSTOM_TARGET(coverage DEPENDS ${GLOBAL_DEPENDS}) ENDIF() ENDIF() # This gets rid of any stale .gcda files. Run this if a running a binary causes lots of messages about # about a "merge mismatch for summaries". ADD_CUSTOM_TARGET(clean-coverage COMMAND find ${CMAKE_BINARY_DIR} -name '*.gcda' | xargs rm -f) ENDFUNCTION() lomiri-0.2.1/cmake/modules/FindLcov.cmake000066400000000000000000000017201455512424300202500ustar00rootroot00000000000000# - Find lcov # Will define: # # LCOV_EXECUTABLE - the lcov binary # GENHTML_EXECUTABLE - the genhtml executable # # Copyright (C) 2010 by Johannes Wienke # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU General # Public License as published by the Free Software Foundation; # either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # INCLUDE(FindPackageHandleStandardArgs) FIND_PROGRAM(LCOV_EXECUTABLE lcov) FIND_PROGRAM(GENHTML_EXECUTABLE genhtml) FIND_PACKAGE_HANDLE_STANDARD_ARGS(Lcov DEFAULT_MSG LCOV_EXECUTABLE GENHTML_EXECUTABLE) # only visible in advanced view MARK_AS_ADVANCED(LCOV_EXECUTABLE GENHTML_EXECUTABLE) lomiri-0.2.1/cmake/modules/Findgcovr.cmake000066400000000000000000000017021455512424300204650ustar00rootroot00000000000000# - Find gcovr scrip # Will define: # # GCOVR_EXECUTABLE - the gcovr script # # Uses: # # GCOVR_ROOT - root to search for the script # # Copyright (C) 2011 by Johannes Wienke # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU General # Public License as published by the Free Software Foundation; # either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # INCLUDE(FindPackageHandleStandardArgs) FIND_PROGRAM(GCOVR_EXECUTABLE gcovr HINTS ${GCOVR_ROOT} "${GCOVR_ROOT}/bin") FIND_PACKAGE_HANDLE_STANDARD_ARGS(gcovr DEFAULT_MSG GCOVR_EXECUTABLE) # only visible in advanced view MARK_AS_ADVANCED(GCOVR_EXECUTABLE) lomiri-0.2.1/cmake/modules/ParseArguments.cmake000066400000000000000000000034061455512424300215070ustar00rootroot00000000000000# Parse arguments passed to a function into several lists separated by # upper-case identifiers and options that do not have an associated list e.g.: # # SET(arguments # hello OPTION3 world # LIST3 foo bar # OPTION2 # LIST1 fuz baz # ) # PARSE_ARGUMENTS(ARG "LIST1;LIST2;LIST3" "OPTION1;OPTION2;OPTION3" ${arguments}) # # results in 7 distinct variables: # * ARG_DEFAULT_ARGS: hello;world # * ARG_LIST1: fuz;baz # * ARG_LIST2: # * ARG_LIST3: foo;bar # * ARG_OPTION1: FALSE # * ARG_OPTION2: TRUE # * ARG_OPTION3: TRUE # # taken from http://www.cmake.org/Wiki/CMakeMacroParseArguments MACRO(PARSE_ARGUMENTS prefix arg_names option_names) SET(DEFAULT_ARGS) FOREACH(arg_name ${arg_names}) SET(${prefix}_${arg_name}) ENDFOREACH(arg_name) FOREACH(option ${option_names}) SET(${prefix}_${option} FALSE) ENDFOREACH(option) SET(current_arg_name DEFAULT_ARGS) SET(current_arg_list) FOREACH(arg ${ARGN}) SET(larg_names ${arg_names}) LIST(FIND larg_names "${arg}" is_arg_name) IF (is_arg_name GREATER -1) SET(${prefix}_${current_arg_name} ${current_arg_list}) SET(current_arg_name ${arg}) SET(current_arg_list) ELSE (is_arg_name GREATER -1) SET(loption_names ${option_names}) LIST(FIND loption_names "${arg}" is_option) IF (is_option GREATER -1) SET(${prefix}_${arg} TRUE) ELSE (is_option GREATER -1) SET(current_arg_list ${current_arg_list} ${arg}) ENDIF (is_option GREATER -1) ENDIF (is_arg_name GREATER -1) ENDFOREACH(arg) SET(${prefix}_${current_arg_name} ${current_arg_list}) ENDMACRO(PARSE_ARGUMENTS) lomiri-0.2.1/cmake/modules/QmlTest.cmake000066400000000000000000000445331455512424300201460ustar00rootroot00000000000000# If you need to override the qmlscene or qmltestrunner executables, # create the corresponding executable target. # These functions respect the global STDOUT_LOGGER and ARTIFACTS_DIR variables. # You can use those with cmake_parse_arguments # if you need to wrap and mangle arguments. set(QMLTEST_OPTIONS ADD_TEST CACHE INTERNAL "") set(QMLTEST_SINGLE ITERATIONS ARG_PREFIX CACHE INTERNAL "") set(QMLTEST_MULTI ARGS ENVIRONMENT DEPENDS IMPORT_PATHS TARGETS CACHE INTERNAL "") # import_executables(name1 [name2 [...]] # [OPTIONAL] # continue when not found # ) # # This will find the named executables and import them # to an imported target of the same name. function(import_executables) cmake_parse_arguments(QMLTEST "OPTIONAL" "" "" ${ARGN}) foreach(NAME ${QMLTEST_UNPARSED_ARGUMENTS}) if(NOT TARGET ${NAME}) add_executable(${NAME} IMPORTED GLOBAL) find_program(${NAME}_exe ${NAME}) if(NOT QMLTEST_OPTIONAL AND NOT ${NAME}_exe) message(FATAL_ERROR "Could not locate ${NAME}.") elseif(NOT ${NAME}_exe) message(STATUS "Could not locate ${NAME}, skipping.") else() set_target_properties(${NAME} PROPERTIES IMPORTED_LOCATION ${${NAME}_exe}) endif() endif() endforeach() endfunction() # add_qml_test(path component_name # [...] # ) # # Add test targets for ${component_name} under ${path}. It's assumed # that the test file is named ${path}/tst_${component_name}.qml. # # This function wraps add_manual_qml_test and add_qml_unittest, # see below for available arguments. function(add_qml_test PATH COMPONENT_NAME) cmake_parse_arguments(QMLTEST "${QMLTEST_OPTIONS}" "${QMLTEST_SINGLE}" "${QMLTEST_MULTI}" ${ARGN}) mangle_arguments() add_qml_unittest(${ARGV}) add_manual_qml_test(${ARGV}) endfunction() # add_qml_test_data(path component_name # [...] # ) # # Install file called ${component_name} (or ${component_name}.qml) under # ${path}. function(add_qml_test_data PATH COMPONENT_NAME) cmake_parse_arguments(TEST "" "DESTINATION" "" ${ARGN}) set(filename "${CMAKE_CURRENT_SOURCE_DIR}/${PATH}/${COMPONENT_NAME}") if (IS_DIRECTORY "${filename}") # As a convenience, allow specifying a directory and we will install # all files in the dir. We do it this way rather than passing # DIRECTORY to install() because we want to process any qml files. file(GLOB subfiles RELATIVE "${filename}" "${filename}/*") foreach(subfile ${subfiles}) add_qml_test_data("${PATH}/${COMPONENT_NAME}" "${subfile}") endforeach() return() endif() if (NOT EXISTS "${filename}") set(filename "${filename}.qml") set(COMPONENT_NAME "${COMPONENT_NAME}.qml") endif() if ("${filename}" MATCHES "\\.qml$") file(READ "${filename}" contents) string(REGEX REPLACE "(\"[./]*)/qml(/|\")" "\\1\\2" contents "${contents}") # this is for (at least) cardcreatortest which pulls in an architecture-specific # import into the plugins directory (which is a 'qml' once installed). string(REGEX REPLACE "(import \"[./]*)/plugins(/|\")" "\\1/qml\\2" contents "${contents}") set(filename "${CMAKE_CURRENT_BINARY_DIR}/${PATH}/${COMPONENT_NAME}") file(WRITE "${filename}" "${contents}") endif() if (TEST_DESTINATION) set(DESTINATION "${TEST_DESTINATION}") else() file(RELATIVE_PATH relcurpath "${CMAKE_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}") set(DESTINATION "${SHELL_APP_DIR}/${relcurpath}/${PATH}") endif() install(FILES "${filename}" DESTINATION "${DESTINATION}") endfunction() # add_qml_unittest(path component_name # [...] # ) # # Add test targets for ${component_name} under ${path}. It's assumed # that the test file is named ${path}/tst_${component_name}.qml. # # This function wraps add_executable_test, see below for available arguments. function(add_qml_unittest PATH COMPONENT_NAME) import_executables(qmltestrunner) add_executable_test(${COMPONENT_NAME} qmltestrunner ${ARGN} ARGS -input ${CMAKE_CURRENT_SOURCE_DIR}/${PATH}/tst_${COMPONENT_NAME}.qml ${QMLTEST_ARGS} ) if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${PATH}/tst_${COMPONENT_NAME}.qml") add_qml_test_data("${PATH}" "tst_${COMPONENT_NAME}.qml") endif() endfunction() # add_manual_qml_test(path component_name # [...] # ) # # Add manual test targets for ${component_name} under ${path}. It's assumed # that the test file is named ${path}/tst_${component_name}.qml. # # This function wraps add_manual_test, see below for available arguments. function(add_manual_qml_test PATH COMPONENT_NAME) import_executables(qmlscene) cmake_parse_arguments(QMLTEST "${QMLTEST_OPTIONS}" "${QMLTEST_SINGLE}" "${QMLTEST_MULTI}" ${ARGN}) add_manual_test(${COMPONENT_NAME} qmlscene ${ARGN} ARGS ${CMAKE_CURRENT_SOURCE_DIR}/${PATH}/tst_${COMPONENT_NAME}.qml ${QMLTEST_ARGS} ) if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${PATH}/tst_${COMPONENT_NAME}.qml") add_qml_test_data("${PATH}" "tst_${COMPONENT_NAME}.qml") endif() endfunction() # add_executable_test(target component_name # [...] # see doc for add_manual_qml_test for common arguments # [ADD_TEST] # whether to add to the "test" target # [ARG_PREFIX arg_prefix] # prefix logging arguments with this string # [ARGS] arg1 [arg2 [...]] # pass these arguments to the test executable # [TARGETS target1 [target2 [...]]] # make the listed targets depend on this test # # if a corresponding xvfbtarget1, xvfbtarget2 etc. exists, # # this test running under xvfb will be added as a dependency # # of those targets # [ITERATIONS count] # run this test as a benchmark for ${count} iterations # ) # # Logging options in the standard form of "-o filename,format" # will be appended to the arguments list, prefixed with ARG_PREFIX. # XUnitXML files will be stored in current binary dir. # # Three targets will be created: # - test${component_name} - Runs the test # - xvfbtest${component_name} - Runs the test under xvfb # - gdbtest${component_name} - Runs the test under gdb function(add_executable_test COMPONENT_NAME TARGET) import_executables(gdb xvfb-run OPTIONAL) cmake_parse_arguments(QMLTEST "${QMLTEST_OPTIONS}" "${QMLTEST_SINGLE}" "${QMLTEST_MULTI}" ${ARGN}) mangle_arguments() file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) set(file_logger -o ${CMAKE_CURRENT_BINARY_DIR}/test${COMPONENT_NAME}.xml,xunitxml) bake_arguments("${QMLTEST_ARG_PREFIX}" args ${iterations} ${file_logger} ${STDOUT_LOGGER}) set(qmltest_command $ ${QMLTEST_ARGS} ${args} ) add_qmltest_target(test${COMPONENT_NAME} ${TARGET} COMMAND ${qmltest_command} ${depends} ENVIRONMENT QML2_IMPORT_PATH=${imports} ${QMLTEST_ENVIRONMENT} ${add_test} ${targets} ) if(TARGET xvfb-run) add_qmltest_target(xvfbtest${COMPONENT_NAME} ${TARGET} COMMAND $ --server-args "-screen 0 1024x768x24" --auto-servernum ${qmltest_command} ${depends} ENVIRONMENT QT_QPA_PLATFORM=xcb QML2_IMPORT_PATH=${imports} ${QMLTEST_ENVIRONMENT} TARGETS ${xvfb_targets} ) endif() if(TARGET gdb) add_qmltest_target(gdbtest${COMPONENT_NAME} ${TARGET} COMMAND $ -ex run -args ${qmltest_command} ${depends} ENVIRONMENT QML2_IMPORT_PATH=${imports} ${QMLTEST_ENVIRONMENT} ) endif() endfunction() # add_manual_test(target component_name # [DEPENDS target1 [target2 [...]]] # make this test depend on the specified targets # [IMPORT_PATHS import_path1 [import_path2 [...]] # use these QML import paths # # (they're searched first to last) # [ENVIRONMENT var1=value1 [var2=value2 [...]]] # set these environment variables # ) # # Two targets will be created: # - try${component_name} - Runs the test for manual interaction # - gdbtry${component_name} - Runs the test under gdb function(add_manual_test COMPONENT_NAME TARGET) import_executables(gdb OPTIONAL) cmake_parse_arguments(QMLTEST "${QMLTEST_OPTIONS}" "${QMLTEST_SINGLE}" "${QMLTEST_MULTI}" ${ARGN}) mangle_arguments() bake_arguments("${QMLTEST_ARG_PREFIX}" args -qmljsdebugger=port:3768,3800) set(qmltry_command $ ${QMLTEST_ARGS} ${args} ) add_qmltest_target(try${COMPONENT_NAME} ${TARGET} COMMAND ${qmltry_command} ${depends} ENVIRONMENT QML2_IMPORT_PATH=${imports} ${QMLTEST_ENVIRONMENT} ) if(TARGET gdb) add_qmltest_target(gdbtry${COMPONENT_NAME} ${TARGET} COMMAND $ -ex run -args ${qmltry_command} ${depends} ENVIRONMENT QML2_IMPORT_PATH=${imports} ${QMLTEST_ENVIRONMENT} ) endif() endfunction() # add_meta_test(target) # # Adds a test target that will run one of our "meta" test targets, like # xvfbuitests. This script will run the specified suite of tests on an # installed system. function(add_meta_test TARGET_NAME) cmake_parse_arguments(TEST "SERIAL" "" "DEPENDS" ${ARGN}) add_custom_target(${TARGET_NAME}) set(filename "${CMAKE_BINARY_DIR}/tests/scripts/${TARGET_NAME}.sh") if(TEST_SERIAL) file(WRITE "${filename}" "#!/bin/sh\n\n") else() file(WRITE "${filename}" "#!/usr/bin/parallel --shebang --no-notice\n\n") endif() add_meta_dependencies(${TARGET_NAME} DEPENDS ${TEST_DEPENDS}) # else we will write the rest of the script as we add cmake targets install(FILES "${filename}" PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ DESTINATION "${SHELL_PRIVATE_LIBEXECDIR}/tests/scripts" ) endfunction() ################### INTERNAL #################### function(install_test_script TARGET_NAME) cmake_parse_arguments(TEST "" "" "COMMAND;ENVIRONMENT" ${ARGN}) # Now write the above test into a shell script that we can run on an # installed system. set(script "#!/bin/sh\n\nset -x\n\n") foreach(ONE_ENV ${TEST_ENVIRONMENT}) set(script "${script}export ${ONE_ENV}\n") endforeach() set(script "${script}export LOMIRI_TESTING_DATADIR=\"${CMAKE_INSTALL_PREFIX}/${SHELL_APP_DIR}\"\n") set(script "${script}export LOMIRI_TESTING_LIBEXECDIR=\"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}\"\n") set(script "${script}\n") set(script "${script}XML_ARGS=\n") set(script "${script}if [ -n \"\$ARTIFACTS_DIR\" ]; then\n") set(script "${script} XML_ARGS=\"@XML_ARGS@\"\n") set(script "${script} mkdir -p \"@XML_DIR@\"\n") set(script "${script} touch \"@XML_FILE@\"\n") set(script "${script}fi\n") set(script "${script}\n") foreach(ONE_CMD ${TEST_COMMAND}) set(script "${script}'${ONE_CMD}' ") endforeach() set(script "${script}\"\$@\"") # Allow passing arguments if desired set(filename "${CMAKE_BINARY_DIR}/tests/scripts/${TARGET_NAME}.sh") # Generate script to file then read it back to resolve any generator # expressions before we try to replace paths. file(GENERATE OUTPUT "${filename}" CONTENT "${script}" ) # Do replacement at install time to save needless work and to make sure # we are modifying file after generate step above (which doesn't happen # immediately). We can't use a custom-defined function or macro here... # So instead we use a giant ugly code block. # START OF CODE BLOCK -------------------------------------------------- install(CODE " file(READ \"${filename}\" replacestr) # Now some replacements... # tests like to write xml output to our builddir; we don't need that, but we do want them in ARTIFACTS_DIR string(REGEX MATCH \"( '--parameter')? '-o'( '--parameter')? '[^']*,xunitxml' \" xmlargs \"\${replacestr}\") string(REGEX REPLACE \"( '--parameter')? '-o'( '--parameter')? '[^']*,xunitxml' \" \" \\\$XML_ARGS \" replacestr \"\${replacestr}\") string(REGEX REPLACE \"'[^']*/tests/\" \"'\\\$ARTIFACTS_DIR/tests/\" xmlargs \"\${xmlargs}\") string(REGEX REPLACE \".*'([^']*),xunitxml'.*\" \"\\\\1\" xmlfile \"\${xmlargs}\") string(REGEX REPLACE \"(.*)/[^/]*\" \"\\\\1\" xmldir \"\${xmlfile}\") string(REGEX REPLACE \"'\" \"\" xmlargs \"\${xmlargs}\") # strip single quotes string(REGEX REPLACE \"@XML_ARGS@\" \"\${xmlargs}\" replacestr \"\${replacestr}\") string(REGEX REPLACE \"@XML_DIR@\" \"\${xmldir}\" replacestr \"\${replacestr}\") string(REGEX REPLACE \"@XML_FILE@\" \"\${xmlfile}\" replacestr \"\${replacestr}\") # replace build/source roots with their install paths string(REPLACE \"${CMAKE_BINARY_DIR}/libs\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBDIR}\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/plugins\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_INSTALL_QML}\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/libs\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}/tests/libs\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/mocks\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_INSTALL_QML}/mocks\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/plugins\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}/tests/plugins\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/qmltests\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}/tests/qmltests\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/uqmlscene\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_BINARY_DIR}/tests/utils/modules\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_INSTALL_QML}/utils\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_SOURCE_DIR}/tests/plugins\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_APP_DIR}/tests/plugins\" replacestr \"\${replacestr}\") string(REPLACE \"${CMAKE_SOURCE_DIR}/tests/qmltests\" \"${CMAKE_INSTALL_PREFIX}/${SHELL_APP_DIR}/tests/qmltests\" replacestr \"\${replacestr}\") file(WRITE \"${filename}\" \"\${replacestr}\") ") # END OF CODE BLOCK -------------------------------------------------- install(FILES "${filename}" PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ DESTINATION "${SHELL_PRIVATE_LIBEXECDIR}/tests/scripts" ) endfunction() function(add_meta_dependencies UPSTREAM_TARGET) cmake_parse_arguments(TEST "" "" "DEPENDS" ${ARGN}) foreach(depend ${TEST_DEPENDS}) add_dependencies(${UPSTREAM_TARGET} ${depend}) # add depend to the meta test script that we will install on system set(filename "${CMAKE_BINARY_DIR}/tests/scripts/${UPSTREAM_TARGET}.sh") if (EXISTS "${filename}") file(APPEND "${filename}" "${CMAKE_INSTALL_PREFIX}/${SHELL_PRIVATE_LIBEXECDIR}/tests/scripts/${depend}.sh \"\$@\" 2>&1\n") endif() endforeach() endfunction() # add_qmltest_target(target_name target # COMMAND test_exe [arg1 [...]] # execute this test with arguments # [...] # see above for available arguments: # # ADD_TEST, ENVIRONMENT, DEPENDS and TARGETS # ) function(add_qmltest_target TARGET_NAME TARGET) cmake_parse_arguments(QMLTEST "${QMLTEST_OPTIONS}" "${QMLTEST_SINGLE}" "COMMAND;${QMLTEST_MULTI}" ${ARGN}) mangle_arguments() # Additional arguments string(TOLOWER "${CMAKE_GENERATOR}" cmake_generator_lower) if(cmake_generator_lower STREQUAL "unix makefiles") set(function "$(FUNCTION)") endif() add_custom_target(${TARGET_NAME} env ${QMLTEST_ENVIRONMENT} ${QMLTEST_COMMAND} ${function} DEPENDS ${TARGET} ${QMLTEST_DEPENDS} ) install_test_script(${TARGET_NAME} ENVIRONMENT ${QMLTEST_ENVIRONMENT} COMMAND ${QMLTEST_COMMAND} ) if(QMLTEST_ADD_TEST) add_test( NAME ${TARGET_NAME} COMMAND ${QMLTEST_COMMAND} ) foreach(ENV ${QMLTEST_ENVIRONMENT}) set_property(TEST ${TARGET_NAME} APPEND PROPERTY ENVIRONMENT ${ENV}) endforeach() set_property(TEST ${TARGET_NAME} APPEND PROPERTY DEPENDS ${TARGET}) foreach(DEPEND ${DEPENDS}) set_property(TEST ${TARGET_NAME} APPEND PROPERTY DEPENDS ${DEPEND}) endforeach() endif() foreach(UPSTREAM_TARGET ${QMLTEST_TARGETS}) add_meta_dependencies(${UPSTREAM_TARGET} DEPENDS ${TARGET_NAME}) endforeach() endfunction() # mangle_arguments(${ARGN}) # # Verify there were no unparsed arguments and # mangle the known ones for further processing. macro(mangle_arguments) if(QMLTEST_UNPARSED_ARGUMENTS) message(FATAL_ERROR "Unexpected arguments: ${QMLTEST_UNPARSED_ARGUMENTS}") endif() if(QMLTEST_ADD_TEST) set(add_test ADD_TEST) endif() if(QMLTEST_IMPORT_PATHS) string(REPLACE ";" ":" imports "${QMLTEST_IMPORT_PATHS}") endif() if(QMLTEST_ITERATIONS) set(iterations -iterations ${QMLTEST_ITERATIONS}) endif() if(QMLTEST_DEPENDS) set(depends DEPENDS ${QMLTEST_DEPENDS}) endif() if(QMLTEST_TARGETS) set(targets TARGETS ${QMLTEST_TARGETS}) endif() set(xvfb_targets "") foreach(target ${QMLTEST_TARGETS}) if(TARGET xvfb${target}) list(APPEND xvfb_targets xvfb${target}) endif() endforeach() set(xvfb_targets "${xvfb_targets}" PARENT_SCOPE) endmacro() # bake_arguments(prefix output # arg1 [arg2 [...]] # ) # # If set, add the argument prefix before every passed # argument and store the result in ${OUTPUT} variable. function(bake_arguments PREFIX OUTPUT) set(args "${ARGN}") if(PREFIX) set(args "") foreach(arg ${ARGN}) list(APPEND args ${PREFIX}) list(APPEND args ${arg}) endforeach() endif() set(${OUTPUT} "${args}" PARENT_SCOPE) endfunction() lomiri-0.2.1/cmake/modules/autopilot.cmake000066400000000000000000000010141455512424300205600ustar00rootroot00000000000000add_custom_target(autopilot) function(declare_autopilot_test TEST_NAME TEST_SUITE WORKING_DIR) add_custom_target(autopilot-${TEST_NAME} COMMAND LOMIRI_TESTING=1 LANG=C QML2_IMPORT_PATH=${SHELL_INSTALL_QML}/mocks python3 -m autopilot.run run ${TEST_SUITE} WORKING_DIRECTORY ${WORKING_DIR} DEPENDS fake_install ) add_custom_target(fake_install COMMAND cmake --build ${CMAKE_BINARY_DIR} --target install ) add_dependencies(autopilot autopilot-${TEST_NAME}) endfunction() lomiri-0.2.1/data/000077500000000000000000000000001455512424300137235ustar00rootroot00000000000000lomiri-0.2.1/data/51-lomiri-greeter.conf000066400000000000000000000000501455512424300177360ustar00rootroot00000000000000[Seat:*] greeter-session=lomiri-greeter lomiri-0.2.1/data/CMakeLists.txt000066400000000000000000000037061455512424300164710ustar00rootroot00000000000000include(FindGettext) # generate desktop files configure_file(${DESKTOP_FILE_SHELL}.in.in ${DESKTOP_FILE_SHELL}.in) add_custom_target(${DESKTOP_FILE_SHELL} ALL COMMENT "Merging translations into ${DESKTOP_FILE_SHELL}..." COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --desktop --template=${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE_SHELL}.in -o ${DESKTOP_FILE_SHELL} -d ${CMAKE_SOURCE_DIR}/po ) configure_file(${DESKTOP_FILE_GREETER}.in.in ${DESKTOP_FILE_GREETER}.in) add_custom_target(${DESKTOP_FILE_GREETER} ALL COMMENT "Merging translations into ${DESKTOP_FILE_GREETER}..." COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --desktop --template=${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE_GREETER}.in -o ${DESKTOP_FILE_GREETER} -d ${CMAKE_SOURCE_DIR}/po ) configure_file(${DESKTOP_FILE_INDICATORSCLIENT}.in.in ${DESKTOP_FILE_INDICATORSCLIENT}.in) add_custom_target(${DESKTOP_FILE_INDICATORSCLIENT} ALL COMMENT "Merging translations into ${DESKTOP_FILE_INDICATORSCLIENT}..." COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --desktop --template=${CMAKE_CURRENT_BINARY_DIR}/${DESKTOP_FILE_INDICATORSCLIENT}.in -o ${DESKTOP_FILE_INDICATORSCLIENT} -d ${CMAKE_SOURCE_DIR}/po ) # install desktop files install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${SHELL_APP}.desktop ${CMAKE_CURRENT_BINARY_DIR}/${INDICATORS_CLIENT_APP}.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${GREETER_APP}.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/lightdm/greeters ) install(FILES 51-lomiri-greeter.conf DESTINATION ${CMAKE_INSTALL_DATADIR}/lightdm/lightdm.conf.d ) add_custom_target(pkgversion ALL COMMAND echo ${PROJECT_VERSION} | head -n1 > ${CMAKE_CURRENT_BINARY_DIR}/version) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/version DESTINATION ${CMAKE_INSTALL_LOCALSTATEDIR}/lib/lomiri) add_subdirectory(systemd-user) lomiri-0.2.1/data/devices.conf000066400000000000000000000024721455512424300162210ustar00rootroot00000000000000# This file can hold multiple device configs. Devices are separated by sections. # # SupportedOrientations holds a list of all enabled orientations. A standard # phone will usually have Portrait,Landcape,InvertedLandscape in order to # disable upside down usage. # # PrimaryOrientation gives the orientation the device will start up with # when there is no orientations sensor input available (yet) or lock to # when an application specifies to be locked to PrimaryOrientation. # # The other Orientation settings can be used to re-map the orientations. # A device might be used with different orientations than how the screen # is physically mounted on the hardware. # # Category can be phone, tablet, or desktop. This option determines # whether the side stage is shown (tablet) or not (phone). Using # desktop will load the shell in windowed mode. Note that the user # can override/change this by connecting input hardware or change # user settings. # # Any options not listed will default to the values of the example below. # [devicename] # SupportedOrientations=Portrait,InvertedPortrait,Landscape,InvertedLandscape # PrimaryOrientation=PrimaryOrienation # PortraitOrientation=Portrait # InvertedPortraitOrientation=InvertedPortrait # LandscapeOrientation=Landscape # InvertedLandscapeOrientation=InvertedLandscape # Category=phone lomiri-0.2.1/data/indicators-client.desktop.in.in000066400000000000000000000003541455512424300217450ustar00rootroot00000000000000[Desktop Entry] Type=Application Name=Indicators Client Comment=Application for testing the Indicators system Exec=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_BINDIR@/indicators-client Terminal=false Icon= NoDisplay=false X-Lomiri-Touch=true lomiri-0.2.1/data/lomiri-greeter-wrapper000077500000000000000000000061611455512424300202610ustar00rootroot00000000000000#!/bin/sh # -*- Mode: sh; indent-tabs-mode: nil; tab-width: 4 -*- # # Copyright (C) 2011, 2013, 2016 Canonical Ltd. # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation, version 3 of the License. # # See http://www.gnu.org/copyleft/gpl.html the full text of the license. # This wrapper merely ensures that init and friends live only as long as this # script does. Otherwise, it's very easy for some processes to not notice that # the session died. We could try to do this in-process, but we want to do this # cleanup even if the greeter aborts. trap cleanup TERM EXIT cleanup() { trap - TERM EXIT if [ -n "$CMD_PID" ]; then kill "$CMD_PID" fi exit 0 } set_greeter_var() { export "$1=$2" dbus-update-activation-environment --systemd "$1=$2" } SUB_SOCKET=$XDG_RUNTIME_DIR/mir_socket rm -f $SUB_SOCKET # clear socket in case we were hard shut down echo "DBUS_SESSION_BUS_ADDRESS=${DBUS_SESSION_BUS_ADDRESS}" >"$XDG_RUNTIME_DIR/dbus-session" # If touch session script (which sets up grid units and mir variables) is available, use it TOUCH_WRAPPER= if which lomiri-touch-session >/dev/null; then TOUCH_WRAPPER=lomiri-touch-session fi # Advertise as a lomiri session, so that indicator-network will start. export XDG_SESSION_DESKTOP=lomiri export DESKTOP_SESSION=$XDG_SESSION_DESKTOP set_greeter_var QT_IM_MODULE maliitphablet set_greeter_var QT_QPA_PLATFORM lomirimirclient # We disable ofono using pulse. It causes problems with racing with the user's # pulse. We need to come up with a better long-term fix for this, because we # eventually need the greeter to play ringtones for users that aren't logged in. set_greeter_var PA_DISABLED 1 # Define language here for phone if available. When phone user switches their # language, they expect that to affect the greeter too. But the user doesn't # have permission to switch system language, only their own. So we notice if # the phablet user exists and use their language if so. TODO: talk to design # about whether we should switch language on fly as users are selected (this # is very hard to do technically). # # Do this after lomiri-greeter-starting, in case a customization upstart job # changes language. if [ "$(id -u phablet 2>/dev/null)" = "32011" ]; then USER_LANG=$(gdbus call --system --dest org.freedesktop.Accounts --object-path /org/freedesktop/Accounts/User32011 --method org.freedesktop.DBus.Properties.Get org.freedesktop.Accounts.User Language | cut -d\' -f2) if [ -n "$USER_LANG" ]; then set_greeter_var LANGUAGE "$USER_LANG" fi USER_LOCALE=$(gdbus call --system --dest org.freedesktop.Accounts --object-path /org/freedesktop/Accounts/User32011 --method org.freedesktop.DBus.Properties.Get org.freedesktop.Accounts.User FormatsLocale | cut -d\' -f2) if [ -n "$USER_LOCALE" ]; then set_greeter_var LANG "$USER_LOCALE" set_greeter_var LC_ALL "$USER_LOCALE" fi fi # And finally actually start the greeter exec env MIR_SERVER_FILE=$SUB_SOCKET $TOUCH_WRAPPER $@ & CMD_PID=$! wait $CMD_PID CMD_PID= lomiri-0.2.1/data/lomiri-greeter.desktop.in.in000066400000000000000000000004371455512424300212620ustar00rootroot00000000000000[Desktop Entry] Type=Application Name=Lomiri Greeter Comment=The converged Lomiri shell's Greeter Exec=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_BINDIR@/lomiri-greeter-wrapper @CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_BINDIR@/lomiri --mode=greeter X-LightDM-Session-Type=mir X-Lomiri-Touch=true lomiri-0.2.1/data/lomiri-greeter.pkla000066400000000000000000000026261455512424300175300ustar00rootroot00000000000000# DO NOT EDIT THIS FILE, it will be overwritten on update # Place your local configurations under /etc/polkit-1/localauthority/ [Disable Controlling of Network Devices] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.enable-disable-network;org.freedesktop.NetworkManager.enable-disable-wifi;org.freedesktop.NetworkManager.enable-disable-wwan;org.freedesktop.NetworkManager.enable-disable-wimax; ResultActive=no ResultInactive=no ResultsAny=no [Disable Sleep and Wake] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.sleep-wake ResultActive=no ResultInactive=no ResultsAny=no [Disable WiFi Sharing] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.wifi.share.protected;org.freedesktop.NetworkManager.wifi.share.open ResultActive=no ResultInactive=no ResultsAny=no [Disable Settings Modifications] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.settings.modify.own;org.freedesktop.NetworkManager.settings.modify.system;org.freedesktop.NetworkManager.settings.modify.hostname ResultActive=no ResultInactive=no ResultsAny=no [Disable User Connections] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.use-user-connections ResultActive=no ResultInactive=no ResultsAny=no [Enable Controlling of Network Connections] Identity=unix-user:lightdm Action=org.freedesktop.NetworkManager.network-control ResultActive=yes ResultInactive=no ResultsAny=no lomiri-0.2.1/data/lomiri.desktop.in.in000066400000000000000000000002741455512424300176260ustar00rootroot00000000000000[Desktop Entry] Type=Application Name=Lomiri Comment=The converged Lomiri shell Exec=@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_BINDIR@/lomiri Terminal=false NoDisplay=true X-Lomiri-Touch=true lomiri-0.2.1/data/systemd-user/000077500000000000000000000000001455512424300163675ustar00rootroot00000000000000lomiri-0.2.1/data/systemd-user/CMakeLists.txt000066400000000000000000000015451455512424300211340ustar00rootroot00000000000000pkg_get_variable(SYSTEMD_USERUNITDIR systemd systemduserunitdir) set(MODES full-greeter full-shell greeter shell) foreach(MODE ${MODES}) set(CONFLICT_UNITS "") foreach(OTHER_MODE ${MODES}) if(NOT ${OTHER_MODE} STREQUAL ${MODE}) set(CONFLICT_UNITS "${CONFLICT_UNITS} lomiri-${OTHER_MODE}.service") endif() endforeach() string(STRIP "${CONFLICT_UNITS}" CONFLICT_UNITS) configure_file( lomiri-MODE.service.in ${CMAKE_CURRENT_BINARY_DIR}/lomiri-${MODE}.service @ONLY ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/lomiri-${MODE}.service DESTINATION ${SYSTEMD_USERUNITDIR} ) endforeach() install(PROGRAMS lomiri-systemd-wrapper DESTINATION ${CMAKE_INSTALL_FULL_LIBEXECDIR} ) install(PROGRAMS Xwayland.lomiri DESTINATION ${CMAKE_INSTALL_FULL_LIBEXECDIR} ) lomiri-0.2.1/data/systemd-user/Xwayland.lomiri000066400000000000000000000011751455512424300213770ustar00rootroot00000000000000#!/bin/bash # The intention behind this wrapper is to set the EGL_PLATFORM to "wayland" # which might be a necessity depending on the driver stack in use (mostly hybris). # Additionally it allows to selectively en-/disable certain behavior of Xwayland # using device-info config files. if [ -f /system/build.prop ]; then export EGL_PLATFORM=wayland fi # Additional arguments sourced from device-info config ARGS="" XWAYLAND_SHM=$(device-info get XwaylandShm) HAS_XWAYLAND_SHM=$? if [ "$HAS_XWAYLAND_SHM" = "0" ]; then if [ "$XWAYLAND_SHM" = "true" ]; then ARGS="$ARGS -shm" fi fi exec /usr/bin/Xwayland $@ $ARGS lomiri-0.2.1/data/systemd-user/lomiri-MODE.service.in000066400000000000000000000015171455512424300223770ustar00rootroot00000000000000[Unit] Description=Lomiri Shell - @MODE@ Requires=dbus.socket After=dbus.socket Wants=indicators-pre.target Before=indicators-pre.target Wants=ayatana-indicators.target Before=ayatana-indicators.target Conflicts=@CONFLICT_UNITS@ [Service] Type=notify SyslogIdentifier=lomiri ExecStart=@CMAKE_INSTALL_FULL_LIBEXECDIR@/lomiri-systemd-wrapper --mode=@MODE@ ExecStopPost=/usr/bin/dbus-update-activation-environment --systemd WAYLAND_DISPLAY= MIR_SOCKET= Restart=on-failure TimeoutStartSec=120 # Start this target on stop to ends all applications launched through LAL, # including those that are SIGSTOP'ed by us. Don't care about the failure # as it's not that important. Also no need to block as we only want the apps # to stop sometime before we come back up fully again. ExecStopPost=-systemctl --user start --no-block lal-application-end.target lomiri-0.2.1/data/systemd-user/lomiri-systemd-wrapper000077500000000000000000000026001455512424300227520ustar00rootroot00000000000000#!/bin/sh -ef # Copyright (C) 2021 UBports Foundation # Ensure the shell always gets unthrottled touch events, so that applications # who want full speed low-latency input can get it (LP: #1497105) and so that # apps can use QML touch compression safely (the QML touch compression # algorithm does not support nesting well - LP: #1486341, LP: #1556763 - so # must be fed by the raw input event stream from Unity8). export QML_NO_TOUCH_COMPRESSION=1 # TODO: maybe allow this to be configurable somehow? export MIR_SERVER_ENABLE_MIRCLIENT=1 export MIR_SERVER_PROMPT_FILE=1 # Unlikely under systemd, but just in case. if [ -z "$XDG_RUNTIME_DIR" ]; then XDG_RUNTIME_DIR=/run/user/$(id -u) export XDG_RUNTIME_DIR fi export MIR_SERVER_FILE="${XDG_RUNTIME_DIR}/mir_socket" rm -f "$MIR_SERVER_FILE" rm -f "${MIR_SERVER_FILE}_trusted" # TODO: maybe handle some kind of collision? export WAYLAND_DISPLAY=wayland-0 # Propegate our socket path for launching applications dbus-update-activation-environment --systemd MIR_SOCKET="${MIR_SERVER_FILE}" dbus-update-activation-environment --systemd WAYLAND_DISPLAY # Ensure that Lomiri uses the correct QPA. export QT_QPA_PLATFORM=mirserver # Allow Lomiri to assume user's logind Display session. export LOMIRI_AS_SYSTEMD_UNIT=1 export MIR_SERVER_ENABLE_X11=1 export MIR_SERVER_XWAYLAND_PATH=/usr/libexec/Xwayland.lomiri exec ${LOMIRI_BINARY:-lomiri} "$@" lomiri-0.2.1/data/test.sensors000066400000000000000000000003261455512424300163210ustar00rootroot00000000000000create light 0 10 1 create accel 0 1000 0.1 create proximity 200 proximity near 500 light 5 # simulate crash on the ground 500 accel 0.2 0.1 10 100 accel 0.2 0.2 1000 20 accel 0 0 0 10 proximity far 10 light 10 lomiri-0.2.1/debian/000077500000000000000000000000001455512424300142345ustar00rootroot00000000000000lomiri-0.2.1/debian/Jenkinsfile000066400000000000000000000002361455512424300164210ustar00rootroot00000000000000@Library('ubports-build-tools') _ buildAndProvideDebianPackage( /* isArchIndependent */ false, /* ignoredArchs */ [], /* isHeavyPackage */ true ) lomiri-0.2.1/debian/changelog000066400000000000000000010566171455512424300161260ustar00rootroot00000000000000lomiri (0.2.1) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Sat, 27 Jan 2024 07:54:26 +0100 lomiri (0.2.0) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Sat, 27 Jan 2024 07:43:34 +0100 lomiri (0.1.4) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Sun, 15 Oct 2023 01:15:56 +0200 lomiri (0.1.3) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Fri, 28 Jul 2023 02:31:44 +0200 lomiri (0.1.2) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Sun, 26 Feb 2023 18:25:40 +0100 lomiri (0.1.1) unstable; urgency=medium * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Sat, 18 Feb 2023 11:50:01 +0100 lomiri (0.1) unstable; urgency=medium [ Marius Gripsgard ] * Rename to lomiri [ UBports developers ] * Upstream-provided Debian package for lomiri. See upstream ChangeLog for recent changes. -- UBports developers Mon, 06 Feb 2023 21:26:23 +0100 unity8 (8.20+ubports) xenial; urgency=medium * Replace dependency on ubuntu-wallpapers with ubports-wallpapers -- Dalton Durst Fri, 5 Oct 2018 13:28:20 -0500 unity8 (8.17+ubports3) xenial; urgency=medium * Imported to UBports -- UBports auto importer Mon, 31 Jul 2017 03:12:43 +0200 unity8 (8.15+17.04.20170404.7-0ubuntu2) zesty; urgency=medium [ Michael Zanetti ] * Make the default store uri point to gnome software center -- Timo Jyrinki Thu, 06 Apr 2017 10:49:29 +0300 unity8 (8.15+17.04.20170404.7-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Tweak app drawer a bit (LP: #1667570) [ Josh Arenson ] * Make some small changes to the greeter's session list * Handle a user in the greeter having never selected a session better (LP: #1673199) [ Lukáš Tinkl ] * Do not occlude windows with an ongoing unmaximize transition (LP: #1666363) * Show and implement close buttons for child windows (LP: #1668053) * Sanitize the logic for pointer vs. touch menus, fixes hiding the window title in staged mode, when hovering the panel with mouse and no menus available. [ Michael Zanetti ] * Don't hide the launcher on super press if it's locked visible (LP: #1675373) * fix searchfield selection in drawer (LP: #1677259) * make sure the stage has focus when going to spread (LP: #1672053, #1672673, #1676995) * don't autostart the dash app, but show its .desktop file instead -- Michał Sawicz Tue, 04 Apr 2017 22:56:06 +0000 unity8 (8.15+17.04.20170328.3-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * mock: Remove empty property and move invokable * Tune quicklist item selection * Fix unminimizing going to the wrong position the second time (LP: #1671458) * Remove unclickable gaps on the menubar (LP: #1672722) * indicators client is a tool * Make sure we destroy the popups when the item goes away (LP: #1670338) * UnityApplicationMocks: Initialize m_state and m_requestedState * Don't use appInfo after checking it if is null * Initialize m_privateMode * Hook up aboutToShow for overflow menus (LP: #1676016) [ Daniel d'Andrada ] * Give active focus to child surface qml items (LP: #1671072) * Satellite child windows (LP: #1673415) * Tell qtmir/miral about the available desktop area [ Florian Boucault ] * WindowStateStorage: use a private QThreadPool to ensure that WindowStateStorage::saveValue always has a thread available to execute the query in. (LP: #1675424) [ Lukáš Tinkl ] * Protect against loading invalid window geometry (LP: #1674262) * Remove usage of the deprecated (and non-functional) system-image- dbus service. * Implement Ctrl+Alt+T to launch the terminal app (LP: #1673500) * Only take normal and dialog surface types into account for launcher items (LP: #1669047) * Fix the shutdown dialog after recent refactoring in DBusUnitySessionService (LP: #1676426) [ Michael Zanetti ] * drop the grey background behind icons in the drawer (LP: #1675688) [ Pete Woods ] * Fix Unity/Platform::isPC, and add tests (LP: #1670657) -- Michał Sawicz Tue, 28 Mar 2017 21:50:20 +0000 unity8 (8.15+17.04.20170321-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Signal aboutToShow (LP: #1664578) * Support Panel top level items to be disabled (LP: #1670694) * Improve Launcher ←→ touch menu interaction (LP: #1667620, #1671069) * Fix real world submenus (e.g. kate) not getting their first item selected on open (LP: #1666859) [ Daniel d'Andrada ] * Really disable the window decoration when in staged mode (LP: #1670361) * Don't let clients resize their surfaces while in staged (phone/tablet) mode (LP: #1670390) * TopLevelWindowModel: don't put hidden windows in the model (LP: #1665286) [ Lukáš Tinkl ] * Reset always-show-osk gsetting on startup to default value (false atm) * Fix the restored-to position with Miral due to the state changes being async (LP: #1669819) * Add a cursor name fallback mapping "grabbing" -> "closedhand" for Breeze * Fix unsnapping a maximized window from the panel (LP: #1671721) * Disable altDrag feature outside windowed mode [ Michael Terry ] * Don't lock the screen for guest users or users in the nopasswdlogin group. (LP: #1644237) * Support GNOME-style logout DBus API (making the Logout, Reboot, and Shutdown launcher commands work) (LP: #1673229) [ Michael Zanetti ] * Add support for closing apps from the spread with "Q" (LP: #1670327) * hide "private" launcher quicklist entries when the greeter is locked (LP: #1667649) * add surface titles to launcher's quicklist (LP: #1661668) * properly reset the drawer state when cancelling a horizontal drag (LP: #1669536) * fix the focus moving correctly between launcher and drawer (LP: #1669880) * unfocus the drawer's textfield when it is moved (LP: #1669839) [ Pete Woods ] * Fix up indicators-client after refactoring (LP: #1672797) -- Michał Sawicz Tue, 21 Mar 2017 10:58:13 +0000 unity8 (8.15+17.04.20170308-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Let's follow the keyboard order * Enable the license check (LP: #1590044) * Show a barebones error message if loading the QML doesn't work * Make sure cursor is back to normal when closing the window (LP: #1666158) * Fix small warning when sensitive is undefined * Remove unused member variable * Initialize m_msecsSinceReference * Add warning if registerService fails * Move menus Component {} out of the repeater * Add tool to browse menus of a running app [ Daniel d'Andrada ] * Drag child windows with Alt+LeftMouseButton (LP: #1664947) [ Gerry Boland ] * TopLevelWindowModel: connect to the OSK surface to know when it goes away so we can clean up after it. (LP: #1670681) [ Josh Arenson ] * Initialize sessionMode to single when mock is reset (LP: #1667463) [ Lukáš Tinkl ] * Make the menu string "Back" translatable * Let the OSK be driven by a switch in indicator-keyboard (LP: #1521518) * Disable the tutorial when there's no touchscreen (LP: #1661557) * Shell chrome fixes (LP: #1658117, #1665723, #1665724, #1669010) * Cancel the drag as soon as we're entering the spread (LP: #1668642) * Fix being unable to use window control buttons or menus with touch (LP: #1667604, #1668387) [ Michael Terry ] * Set QT_IM_MODULE in the greeter so that the OSK can come up. (LP: #1670383) * Simplify our startup handling of Mir environment variables and set the right socket path in snappy. [ Michael Zanetti ] * Cancel the home key activation if something else is pressed along with Meta (LP: #1670678) * close the drawer when something is launched from the launcher (LP: #1660367) * use a svg instead of a png for the Launcher's BFB (LP: #1668057) * change the default setting for the launcher autohiding (LP: #1670655) [ Nick Dedekind ] * Split up Shell::test_spreadDisabled to ensure initial state for each test. -- Michał Sawicz Wed, 08 Mar 2017 09:56:46 +0000 unity8 (8.15+17.04.20170221-0ubuntu1) zesty; urgency=medium * Handle ubuntu-app-launch API/ABI break -- Ken VanDine Tue, 21 Feb 2017 13:23:23 +0000 unity8 (8.15+17.04.20170216.1-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Make menus items close the menu when clicking on them (LP: #1657082, #1657399) * Clicking on an open menu closes it + test * Make the menus and submenus do not go outside the screen when popping out * Auto open submenus on hover (LP: #1657085) * Make the double click on a menu not be maximize the window below (LP: #1657079) * Make the MenuBar InverseMouseArea eat hover events when there's a popup open (LP: #1657763) * Make double click on the window decoration maximize (LP: #1657758) * Eat hover events when the launcher quicklist is open (LP: #1640776) * Remove TODO now that we require Qt > 5.5 * Serialize two make targets that want to cp to the same target file (LP: #1660576) * Remove variable that is always false (LP: #1585910) [ Daniel d'Andrada ] * Consolidate launcher API checks [ Lukáš Tinkl ] * Fixes for activating minimized windows and restoring fullscreen ones (LP: #1656808, #1658937, #1658938) [ Michael Zanetti ] * move right edge push area up some levels so it can be used on top of the indicators * fix minimizing/restoring transitions (LP: #1658936) * fix some glitches with spread positioning * fix jumpy animation when closing an item from the spread * Show the wallpaper while the focused app is moving in staged mode (LP: #1648251) * Update the tutorial to mention the app drawer instead of the dash on long left edge swipe (LP: #1658932) * prevent hiding the launcher when the mouse hover event is eaten by the EdgePushArea (LP: #1657045) * properly invalidate the whole model (LP: #1658190) * stabilize OrientedShell test (LP: #1658994) [ Nick Dedekind ] * Added overflow support to application menus. * Updated menu colors -- Michał Sawicz Thu, 16 Feb 2017 13:49:18 +0000 unity8 (8.15+17.04.20170206-0ubuntu1) zesty; urgency=medium [ Daniel d'Andrada ] * Initial support for child windows (menus, dialogs, tooltips) (LP: #1543467, #1591384, #1656727) -- Albert Astals Cid Mon, 06 Feb 2017 09:12:23 +0000 unity8 (8.15+17.04.20170131.1-0ubuntu1) zesty; urgency=medium [ Rodney Dawes ] * Remove dependencies on clickscope. -- Albert Astals Cid Tue, 31 Jan 2017 14:40:33 +0000 unity8 (8.15+17.04.20170124-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Limit tab-focus travelling on dialogs with a fence * Restore focus to where it was when our ShellDialogs get unloaded * Update current session after changing the user * Add keyboard navigation for Indicators * a window -> the current window * There's no spreadDelegate_ anymore [ Daniel d'Andrada ] * Simplify DecoratedWindow * Remove unnecessary warning message [ Josh Arenson ] * Add a test for the session chooser icon in the greeter's sessions list [ Lukáš Tinkl ] * Fix keymap not being applied on the shell itself (LP: #1626435) * Shell dialog improvements (kbd focus, mouse eater) * Start searching directly as you type, w/o having to first focus/click the search field. * Add a test for the real implementation of WindowStateStorage * Use a four finger gesture to open the drawer, much like in u7 [ Michael Terry ] * Simplify the lightdm mock to make future greeter improvements easier to test. * Add support for guest sessions in unity8-greeter. * Use a model for PAM prompts, supporting more possible interactions. * Fix grouping of autopkg output and allow optionally passing arguments to installed test scripts. * Add support for LightDM hints for manual logins and hiding normal users. [ Michael Zanetti ] * hint the launcher to indicate a successful size change to the user (LP: #1646457) * Improvements for the appdrawer (LP: #1648173) * Adjust home key to still focus the dash instead of messing with the drawer * allow 4 finger simulation with mousetouchadaptor [ Nick Dedekind ] * Added Alt+F10 shortcut to open app menus. (LP: #1656896) * Fixed menu layout width calculations. (LP: #1657050) * Skip Panel::test_drag_indicator_item_down_shows_menu -- Michał Sawicz Tue, 24 Jan 2017 07:46:58 +0000 unity8 (8.15+17.04.20170110.4-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Give focus to one of the buttons of the dialog * tst_WindowResizeArea: Use default values for mouseFlick speed and iterations (LP: #1651580) * Require Qt 5.6 & misc fixes [ Daniel van Vugt ] * Deprecate usage of Mir's input resampling, instead opting for: (LP: #1497105, #1591328) [ Josh Arenson ] * Allow the scopes list to automatically scroll when a scope is being dragged past the bounds of the screen. (LP: #1575319) [ Lukáš Tinkl ] * Fix touch window controls being unreachable when the overlay is being displayed (LP: #1648167) * Fixup paths for window state storage in snappy environment * Add Unity.Platform mock for our tests (LP: #1655336) [ Michael Zanetti ] * PreviewRatingInput: Use displayText instead of text to enable/disable the Send button (LP: #1595910) * Add a D-Bus interface to control some debug facilities on the fly * some launcher workarounds for the snapping [ Michał Sawicz ] * Nuke leftover Platform in IndicatorsManager [ Nick Dedekind ] * Added registry for application menus [ Michael Terry, Nick Dedekind ] * Run the qmluitests.sh autopkg test against the installed package. [ Michał Sawicz, Nick Dedekind ] * Application menus [ Rodney Dawes ] * Remove the payments widget and dependency on libpay as no longer needed. -- Michał Sawicz Tue, 10 Jan 2017 14:48:42 +0000 unity8 (8.15+17.04.20161215-0ubuntu2~1) zesty; urgency=medium * No change rebuild -- Timo Jyrinki Wed, 04 Jan 2017 10:54:32 +0200 unity8 (8.15+17.04.20161215-0ubuntu1) zesty; urgency=medium * Let the model deal with some window management decisions (LP: #1346633) -- Daniel d'Andrada Thu, 15 Dec 2016 16:17:29 +0000 unity8 (8.15+17.04.20161207.1-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Add the Wsuggest-override flag to gcc * Add support for compiler sanitizers via ECM * Use timeStep as delay time (LP: #1642919) * Bring back fix for 1517830 (LP: #1517830) * Fix compile warnings in mocks * Do not hide panel when launching an application if the mouse is on the panel (LP: #1591311) [ Daniel d'Andrada ] * Fix "make tryApplicationWindow" * Take save/restore functions out of WindowResizeArea [ Josh Arenson ] * Enable the greeter to remember which session the user last logged into (LP: #1631365) [ Lukáš Tinkl ] * Fix the Super key not invoking the dash scope home (LP: #1607427) [ Michael Zanetti ] * Add the ApplicationDrawer * tune right edge push (LP: #1646094) * improve close button visiblity when hovering with the mouse * Update virtual touchpad visuals and add a tutorial. (LP: #1585220) [ Pete Woods ] * MenuItemFactory: Add subtitle support to SwitchItem widget -- Michał Sawicz Wed, 07 Dec 2016 13:49:24 +0000 unity8 (8.15+17.04.20161129-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Fix PreviewProgress implicitHeight (LP: #1641943) * Adapt to dummy notification being gone * Fix autopilot test_lock_screen tests * Autopilot: Add more applications to the list for wider screens * Fix autopilot DashHelperTestCase.test_search * Also install the Screens mock * Give default value to gu-px size [ Andrea Azzarone ] * Set Mir.cursorName to "grabbing" on first mouse press on a window decoration. Don't wait for press+motion. (LP: #1618078) * Do not show a divider between each quicklist entry but just between each section, similar to how unity7 does. (LP: #1637478) [ Andrea Cimitan ] * Fix white text (LP: #1644468) * Make MascotLoader in CardCreator flat * Make the remaining UbuntuShape flat * added dropshadow from panel indicators to dash page header extra panel, so there is right shadow when the extra panel is narrow * Look up for expandable template dash category flag [ Brian Douglass ] * Added a setting to enable/disable the indicator dropdown menu. [ Daniel d'Andrada ] * There's no need for WindowDecoration to access the appDelegate [ Lukáš Tinkl ] * Enable brightness (laptop backlight) handling on desktop/laptop PCs (LP: #1595947) [ Michael Zanetti ] * disable spread interaction while locked (LP: #1641578) [ Andrea Azzarone, Michał Sawicz ] * Implement launcher tooltips. [ Olivier Tilloy ] * Remove dependency on transitional package. (LP: #1583079) -- Michał Sawicz Tue, 29 Nov 2016 09:43:33 +0000 unity8 (8.15+17.04.20161116.1-0ubuntu1) zesty; urgency=medium [ Marco Trevisan (Treviño) ] * MenuItemFactory: bind calendar backend properties to calendarMenu item Adds support for showing the calendar at the requested date, marking days with events properly and toggling the visibility of the week number. * MenuItemFactory: use Menus.RadioMenu and Menus.ButtonMenu * Bump version as USC breaks with unity8 << 8.14 [ Albert Astals Cid ] * [Hopefully] Fix infinite loop in some of the GSV tests (LP: #1599301) [ Marco Trevisan (Treviño) ] * testLauncher: use tryCompare to check launcher contentY [ Michael Zanetti ] * Stabilize OrientedShell tests -- Marco Trevisan (Treviño) Wed, 16 Nov 2016 10:44:59 +0000 unity8 (8.14+17.04.20161109-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Make more CardTool properties readonly * Make the > in Dash Section Header be after text (LP: #1508905) * Rework Dash Preview column margins * Improve LVWPH <-> GenericScopeView interaction (LP: #1508905, #1622423) * Make the PreviewButtons be of the width of the button and not half the total width * Fix first column of the preview table to be 25% [ Andrea Cimitan ] * Remove background under header pagination dots, update dots assets, remove dash paper background, update bottom edge asset * Few styling changes for cards * various tweaks to fonts inside previews * More visual tweaks [ Brian Douglass ] * Add a new setting to enable/disable the launcher [ Lukáš Tinkl ] * Stabilize test_doubleTapToMaximizeWindow() * Enable loading the main Qt catalog which in turn allows for using RTL languages * Fix the pixelated notification icon by setting sourceSize (LP: #1637712) [ Michael Terry ] * More path lookup fixes for running inside of a snap. (LP: #1629009) [ Michael Zanetti ] * Added blur and darkening to wallpaper while in spread * Fixes in the spread after design review (LP: #1637502, #1638848) * More fixes to the unified stages code (LP: #1637205, #1637249, #1637258) * Delay alt tab for tiny bit in order to avoid flickering on quick alt- tabs [ Tomás Tormo ] * Reload Infographics userdata when the day changes (LP: #1378814) -- Michał Sawicz Wed, 09 Nov 2016 15:10:32 +0000 unity8 (8.14+17.04.20161027-0ubuntu1) zesty; urgency=medium * MenuItemFactory: activate item on calendar selection change (LP: #1541125) -- Marco Trevisan (Treviño) Thu, 27 Oct 2016 12:32:25 +0000 unity8 (8.14+17.04.20161024-0ubuntu1) zesty; urgency=medium [ Albert Astals Cid ] * Make PreviewProgress be thicker again (LP: #1629382) * tst_PreviewZoomableImage: Wait for LazyImage transitions on init() (LP: #1630136) [ Andrea Azzarone ] * Remove UbuntuShapeForItem and replace its use with the more standard Ubuntu.Components.UbuntuShape. [ Lukáš Tinkl ] * Restore the double tap decoration to maximize feature (LP: #1627281) * Hide the cursor for fullscreen apps after 3 seconds of inactivity * Implement moving windows by Alt + left mouse button [ Marco Trevisan (Treviño) ] * MenuItemFactory: use more features from SlotsLayout based settings components [ Michael Terry ] * Grab launcher icon information from ubuntu-app-launch, not directly from desktop files. * Adjust root paths if we're running inside a snap. (LP: #1629009) [ Michael Zanetti ] * Merge all Stages into one single codebase. Apply new spread visuals. (LP: #1489517, #1603914, #1635800) -- Michael Zanetti Mon, 24 Oct 2016 11:37:28 +0000 unity8 (8.14+16.10.20160922-0ubuntu2) yakkety; urgency=medium * debian/control: - Drop unity-scope-mediascanner2 to a Suggests rather than a Recommends, to ease our transition to main. It's already seeded directly in Touch, so this will only affect the Desktop variant of unity8. -- Michael Terry Mon, 03 Oct 2016 10:43:25 -0400 unity8 (8.14+16.10.20160922-0ubuntu1) yakkety; urgency=medium [ Albert Astals Cid ] * LVWPH: update clipItem height when list height changes (LP: #1606935) * Put the touchdown shape inside a loader * No need for the touchdown in the card for the cardtool * Add bottom gradient to the Show Less floating button * Remove artShapeSize from non cardtool cards * LVWPH: Fix case in which header was shown incorrectly * LVWPH: Fix items cut on top in the dash (or at least some instances of it) * Reduce calls to CardCreatorCache.getCardComponent while the component is being created (LP: #1615675) * Dash::test_cardIconStyle change compare into tryCompareFunction * Make PreviewActionsTest::test_comboButton more stable * Adapt onShiftedContentXChanged to work when the content changes very abruptly * Make tryGenericScopeView show the scope correctly * Make sure the spinner does not get too close to the title text (LP: #1597392) * Show "Pull to refresh" in white when overlaid in low luminance colors (LP: #1596849) * Make test_Shell non ultra slow again (LP: #1597366) * Improve findChild calls inside tryCompareFunction. [ Andrea Cimitan ] * override some Qt Components definitions so we can have sane default values for flick speeds * Elide the label text inside recent searches panel (LP: #1611796) * Add a PreviewSingleton module to store some data for previews (LP: #1595235) * Use PreviewSingleton for PreviewRatingInput and PreviewCommentInput (LP: #1595235) * rework GenericScopeView PullToRefresh test * use mouseFlick instead touchFlick for manage_dash_move_current * add a couple of waiting tricks for a flaky dash test [ Daniel d'Andrada ] * Set progress bar indeterminate when processing signal received. (LP: #1249349) * Implement cursor confinement (LP: #1590099) [ Josh Arenson ] * Add a frontend to the sessions model and enable a session chooser in the greeter. [ Lukáš Tinkl ] * Implement edge maximizing (aka window snapping) (LP: #1602628) * On the PC platform (as opposed to running on $devices), use the "mute" action instead of silent mode * Respect Fitt's law wrt the window control buttons in panel (LP: #1611959) * Fix 2 failing color-related tests [ Marco Trevisan (Treviño) ] * Indicators, mocks: add fake indicators menuitem to populate mocks with different menu types * IndicatorsClient: use PageHeader and ListItemLayout's [ Michael Terry ] * Support launching apps inside a unity8 session from the greeter and support emergency dialing inside the greeter. * Fix tryShell to actually show appropriate backgrounds for each mock user. * Add an indicator to the greeter when a user is logged in (only shown if we have more than one user) * Hide the greeter OSK if indicators are open and don't show the edge tutorial during an emergency call. * Switch from lockscreen PIN pad to a passcode entry box that uses the OSK. * Use the default system wallpaper instead of our custom one. * Update look of infographic a bit * Make infographic bubbles white even on the default wallpaper. -- Michał Sawicz Thu, 22 Sep 2016 07:46:57 +0000 unity8 (8.14+16.10.20160831.3-0ubuntu1) yakkety; urgency=medium [ Daniel d'Andrada ] * Added implementation for MirSurfaceInterface::persistentId -- Ken VanDine Wed, 31 Aug 2016 11:56:09 +0000 unity8 (8.14+16.10.20160826-0ubuntu1) yakkety; urgency=medium * Make sure we emit sounds when taking a screenshot even after media- hub (LP: #1544477) -- Alfonso Sanchez-Beato Fri, 26 Aug 2016 08:14:14 +0000 unity8 (8.14+16.10.20160819-0ubuntu1) yakkety; urgency=medium [ Lukáš Tinkl ] * Reset topmostIsFullscreen to correctly rotate the shell when dismissing SIM PIN screen (LP: #1614070) -- Michał Sawicz Fri, 19 Aug 2016 14:16:54 +0000 unity8 (8.14+16.10.20160811.1-0ubuntu1) yakkety; urgency=medium [ Albert Astals Cid ] * Take into account carousel selectedItemScaleFactor when setting card fixedArtShapeSize (LP: #1599238) * Remove unused LimitProxyModel * Do not calculate implicitHeight for Cards in a CardGrid * Small clazy fixes [ Daniel d'Andrada ] * Remove stage property from Application [ Larry Price ] * Allow libertine-scope to show empty search result hint unmodified. (LP: #1606693) [ Lukáš Tinkl ] * Open the quicklist (context) menu also using the Menu key (LP: #1608265) * Fix incorrect SIM PIN dialog position when entering a wrong PIN (LP: #1596076) * Apply the correct keymap also on prompt surfaces (LP: #1610124) * Implement an optional system update feature during OOBE wizard (LP: #1580785) * Implement a page for choosing HW keyboard layout in OOBE wizard [ Michael Zanetti ] * Clean up some build script legacy * Add a crossbuilder_post file to make crossbuilder restart unity8 after deploying * fixes for the automatic switching between usage modes (LP: #1590944) [ Omer Akram ] * Add object names for setup wizard -- Michał Sawicz Thu, 11 Aug 2016 06:28:20 +0000 unity8 (8.14+16.10.20160803-0ubuntu1) yakkety; urgency=medium [ Albert Astals Cid ] * Fix DisabledScreenNotice::test_rotation * Make the delegate of DashNavigationList an async Loader * unity-scope-tool: Use parse instead of process * VerticalJournal improvements regarding model insertions and item height changes (LP: #1599754) * Add math.h includes for compilation in yakkety (LP: #1605502) [ Andrea Cimitan ] * Unfocus the search text field in the dash page header when requested (LP: #1590820) * Use binding for filter popover contentWidth (LP: #1595116) * Add few sourceSize for Image we forgot (LP: #1595113) * Replace Flickable with an Item inside DashPageHeader for headerContainer (LP: #1599235) [ Albert Astals Cid, Andrea Cimitan ] * Unbox the artshapeLoader [ Daniel d'Andrada ] * Fix splashscreen orientation when app rotates own contents (LP: #1586050) * tst_PreviewIconActions: Make test name match filename * Cursor: make its size grid unit based (LP: #1604014) * TouchEventSequenceWrapper: item might get deleted when touch sequence is committed (LP: #1607686) [ Lukáš Tinkl ] * Implement frontend support for running keyboard indicator * Provide window/surface close shortcuts across all the stages (LP: #1578392, #1606528) * Restart the location trust prompt service when exiting the wizard (LP: #1594430) * Implement clearing the search and closing the panel on pressing Escape key in the dash header * Fix log timestamps (LP: #1602196) * Don't display the mode switch warning dialog on tablets (LP: #1600290) [ Michael Terry ] * Fix indicator profile bug that caused sound indicator to say Mute instead of Silent Mode. (LP: #1604205) * Fix lockscreen appearing right after unlocking a locked session on the desktop. (LP: #1604374) [ Michał Sawicz ] * Add arm64 support, drop unnecessary B-D on web plugin -- Michał Sawicz Wed, 03 Aug 2016 15:56:27 +0000 unity8 (8.14+16.10.20160728-0ubuntu1) yakkety; urgency=medium [ Zoltán Balogh ] * Bump the version to secure UITK compatibility [ Albert Astals Cid ] * Pass the correct number of arguments to mapToItem (LP: #1606835) -- Michał Sawicz Thu, 28 Jul 2016 08:17:13 +0000 unity8 (8.13+16.10.20160714+fix1-0ubuntu2~1) yakkety; urgency=medium * Rebuild against Qt 5.6. * Add https://code.launchpad.net/~aacid/unity8/floor_includes/+merge/300850 -- Timo Jyrinki Fri, 22 Jul 2016 09:03:54 +0300 unity8 (8.13+16.10.20160714-0ubuntu1) yakkety; urgency=medium [ Daniel d'Andrada ] * Make use of MirSurface::inputBounds and drop UbuntuKeyboardInfo hack -- Michał Sawicz Thu, 14 Jul 2016 07:09:29 +0000 unity8 (8.12+16.10.20160711-0ubuntu1) yakkety; urgency=medium [ Josh Arenson ] * Add a SessionsModel to lightdm to support the greeter's session chooser * Add unity8-greeter package which contains a basic, but usable LightDM greeter. (LP: #1324602) [ Michael Terry ] * Make sure indicators and launcher hide when power button is pressed on greeter. (LP: #1595569) * Fix tablet greeter focus to be always-on, no longer hiding the OSK or forcing a mouse click to type a password. (LP: #1435923) -- Michael Terry Mon, 11 Jul 2016 17:24:20 +0000 unity8 (8.12+16.10.20160707-0ubuntu1) yakkety; urgency=medium [ Michael Zanetti ] * emit the correct role changed signal on count visible changed (LP: #1599925) -- Michał Sawicz Thu, 07 Jul 2016 16:49:32 +0000 unity8 (8.12+16.10.20160705-0ubuntu1) yakkety; urgency=medium [ Michael Zanetti ] * don't displace windows if the OSK is on another screen (LP: #1598917) -- Michał Sawicz Tue, 05 Jul 2016 10:00:57 +0000 unity8 (8.12+16.10.20160627.5-0ubuntu1) yakkety; urgency=medium [ Albert Astals Cid ] * Stop watching the old header item height once it's not our header anymore * LVWPH: cull the header item when not on view to save some painting * Adapt test to new mock behaviour * Don't let the mouse go outside the parentItem (LP: #1525350) * Use non deprecated package names * Mark system includes as such * Fix initialization order warning * Do not rely on deleteLater not crashing on null pointers * Add more headers of classes we use for automoc to be run * CardTool: Fix the fallback value to be a size and not an integer * CardTool: Include Ubuntu Components since we're using units.gu * Rework tst_PreviewRatingDisplayCreationRanges [ Daniel d'Andrada ] * Cursor: Let AnimatedSprite run only on animated cursors and while the display is on (LP: #1588873, #1594358) * Fix missing screenshot when orientation changes while shell rotation ongoing (LP: #1587796) [ Josh Arenson ] * Make PreviewRatingSingleDisplay visible again after editing a review. (LP: #1587097) * Correct errors in all png images to prevent libpng warnings. [ Lukáš Tinkl ] * Fix some smaller issues with OOBE wizard password pages (LP: #1590467) * Prevent mouse wheel events from going through shell elements (LP: #1536268) * Do not let mouse and wheel events pass thru the titlebar (LP: #1588424) * Hide the maximize window button based on size restrictions (LP: #1541982) [ Marco Trevisan (Treviño) ] * Unity8.conf: ensure MIR_SOCKET is set for future customers (such as the dash) * ClientIndicator: be more informative about loading failures for dynamically created objects [ Michael Terry ] * Stop unity8 from getting in a "switch-to-greeter" loop when locking on a desktop. (LP: #1593718) [ Michael Zanetti ] * set minimum window sizes on dash * displace application windows when the OSK would cover them [ Nick Dedekind ] * Force dash to always stay in the main stage. (lp:#1592404) (LP: #1592404) * Save the last surface stage on stage drop. (LP: #1579003) * Default portrait only apps to the side stage. (LP: #1573153) [ Albert Astals Cid, Andrea Cimitan, Michał Sawicz, Nick Dedekind ] * Added live video playback in dash previews -- Michael Zanetti Mon, 27 Jun 2016 18:48:59 +0000 unity8 (8.12+16.10.20160620.3-0ubuntu1) yakkety; urgency=medium [ Michael Terry, Michał Sawicz ] * Support unlocking via fingerprint, if one is registered. -- Michael Terry Mon, 20 Jun 2016 20:25:25 +0000 unity8 (8.12+16.10.20160617-0ubuntu1) yakkety; urgency=medium [ Michael Terry ] * Do not create Label/Icon if we don't need it * Fix Z-ordering of prompt surfaces (LP: #1586219) * Drop bottom edge tutorials completely and small fixes for other edges. (LP: #1565103) * Redo visuals for greeter prompt box. (LP: #1435923) * Make tutorial qmltests more robust. (LP: #1590810) * Stop showing an extra lockscreen in desktop unity8 sessions. (LP: #1582987) [ Albert Astals Cid ] * Improve dash plugin mock * Stabilize PreviewExpandableTest::test_all_widgets_height * Workaround QTBUG-53460 * Split artShape code for cardTool card and regular card * Simplify the code since fixedArtSize code is mandatory for regular cards * Desktop stage: Support rotatesWindowContents (LP: #1547481) * Turn if if else into if elseif else * Fix leaks in QInputDeviceManagerPrivate::addDevice * Do not call |= on uninitialized sigterm.sa_flags * initialize udevMonitor * Make notifier and notifierFd function local variables * Fix crash if a component that is not an Item is given to sectionDelegate * Tests: Do not use dynamic_cast if we're not going to test it anyway * Minor coverity fixes * Fix warning about anchors.fill in ProportionalShape (LP: #1590963) * Make wait in cleanup() wait for snapTo animation to have finished [ Alexandros Frantzis ] * Improve the way notifications interact with power management (LP: #1570922) [ Andrea Cimitan ] * Correctly refresh cardcreator cache on artshapestyle changes (LP: #1588335) * Same tweaks we have for click scope now for libertine * add a timer to pull to refresh to work on small windows (LP: #1589060) [ Daniel d'Andrada ] * Clean up debug leftovers * Ensure mouse and window movement are pixel-aligned (LP: #1510382) * Fix SpreadDelegate rotation animations * No point in version-controlling files that are automatically generated * Center cursor on screen when it's first shown * Custom cursor name just have to start with "custom" * Work around AnimatedSprite infinite loop bug (LP: #1588929) [ Josh Arenson ] * Disable showDash when it is already shown. (LP: #1506708) * Add a timestamp to the dash log (LP: #1580074) * Add timestamp to unity8 log (LP: #1498169) [ Lukáš Tinkl ] * Implement keyboard shortcuts info panel * Implement window controls overlay activatable with 3 fingers tap (LP: #1489020) * Select correct Chinese input method for OSK in the wizard (LP: #1588633) [ Michael Zanetti ] * Add support for the launcher surface pips displaying the correct number of surfaces * Add support for the persistent alert state. (LP: #1575147, #1584348, #1586621) * send a Alt-release event on alt+tab instead of delaying it completely and invoking it later (LP: #1565236) [ Stephen M. Webb ] * added a new upstart $SESSION for unity8-desktop-session (LP: #1376715) -- Michael Terry Fri, 17 Jun 2016 01:22:57 +0000 unity8 (8.12+16.10.20160601.1-0ubuntu1) yakkety; urgency=medium [ Pawel Stolowski ] * Added apparmor profile for unity8-dash. -- Michał Sawicz Wed, 01 Jun 2016 20:59:03 +0000 unity8 (8.12+16.10.20160527-0ubuntu1) yakkety; urgency=medium [ Albert Astals Cid ] * Activate on click for SimpleMessages (LP: #1421696) * Add override * Change the art back to the cardData value if it changes from broken to valid image (LP: #1533577) * Concierge mode generated code optimization * Don't use context properties but properties of the delegates * Listen to contentItem::widthChanged instead of Flickable::contentWidthChanged (LP: #1565763) * Make some AP code faster * Make tests a bit more stable * Make unity8 and unity8-dash handle termination signals * Remove workaround not needed anymore (LP: #1475643) * Resolve cardArtStyle on compile time * Set the theme earlier (LP: #1574048) [ Albert Astals Cid, Daniel d'Andrada ] * Remove DirectionalDragArea and libs/UbuntuGestures and port to SDK equivalents [ Andrea Cimitan ] * Hide the preview review input field when a rating is required (LP: #1541971) [ CI Train Bot ] * Resync trunk. [ Daniel d'Andrada ] * Fix DragHandle so it works in all directions * Support animated cursors * WindowInputMonitor - also map Qt::Key_HomePage to our home key * plugins/Cursor: properly register to the screen's QPlatformCursor when screen changes (LP: #1579742) [ Josh Arenson ] * Close the PageHeaderExtraPanel when a filter option is selected (LP: #1569498) * Wrap primaryFilter in a flickable to make it behave nicely. (LP: #1569492) [ Lukáš Tinkl ] * First snap decision should always be expanded, unless user decides otherwise (LP: #1580090, #1575045) * Fullscreen notification bug fixes (LP: #1583944, #1581498, #1422711) * Implement maximizing windows horizontally/vertically * Lock the session when putting the laptop into sleep (LP: #1581063) [ Lukáš Tinkl, Michael Terry ] * With a maximized window, "dragging" the panel down should restore it [ Michael Terry ] * Change some dash button colors from orange to green. (LP: #1581047) * Use PageHeader instead Ambiance's PageHeadStyle * Use new setTimeZone method to set user-friendly timezone name in the wizard. (LP: #1566295) [ Michael Zanetti ] * Remove the background dimming when the launcher is revealed by a drag (LP: #1575137) * reenable or drop disabled tests -- Michael Terry Fri, 27 May 2016 13:54:44 +0000 unity8 (8.12+16.10.20160520.1-0ubuntu1) yakkety; urgency=medium [ Lukáš Tinkl ] * Don't dim screen when the indicators are open (LP: #1564342) * Fix upcoming alarms ETA labels (LP: #1576741) * Stabilize flaky wizard tests (LP: #1582994) [ Michael Zanetti ] * fix the SIM PIN darkening after it got removed accidentally (LP: #1577147) [ Michał Sawicz, Nick Dedekind ] * Fixed saving current stage and loss of surface focus when switching stages [ Nick Dedekind ] * Fixed incorrect osk surface item resizing the surface. -- Michał Sawicz Fri, 20 May 2016 08:44:19 +0000 unity8 (8.12+16.04.20160518.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. [ Daniel d'Andrada, Michał Sawicz ] * Move prompt surfaces from MirSurface to Application -- Nick Dedekind Wed, 18 May 2016 11:20:04 +0000 unity8 (8.12+16.04.20160504.2-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Expandable Filter Widget * Pass the category correctly [ Albert Astals Cid, CI Train Bot ] * Make the previewActions react to the actions model changing (LP: #1485887) * Reload Preview Zoomable Image source if it gets updated * Update the icon also to the original one if that's what the scope wants [ Andrea Cimitan ] * Add social actions to cards [ CI Train Bot ] * Resync trunk. -- Pawel Stolowski Wed, 04 May 2016 18:09:33 +0000 unity8 (8.12+16.04.20160429.2-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. [ Daniel d'Andrada ] * Ensure shell transformations use bindings as OrientedShell can get resized * Make shell rotation animation work on multimonitor scenarios. * Refactor screenshotting code and make it work in multimonitor scenarios [ Gerry Boland, Nick Dedekind ] * Indicators: set menu height binding while fully open/closed, fixes dynamic grid unit bug. [ Michael Zanetti ] * Call the dash sizing hack when units.gu changes * Temporary means to override GUs on the internal screen * reduce some paint layers. -- Michał Sawicz Fri, 29 Apr 2016 20:07:37 +0000 unity8 (8.12+16.04.20160427.3-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Add env var to enable js debugging/profiling even if not built on debug mode * Better error message if the item does not exist * CardCreator: Remove ShaderEffectSource (LP: #1544875) * Compile with Qt 5.6 (LP: #1565632) * LVWPH: Account for contentHeight not really being "all" of the content height (LP: #1569976) * NotificationAudio: We don't need weird "ifdef" for multimedia 5.6 vs 5.0 roles anymore * See all/less -> Show all/less (LP: #1349471) * Stabilize test_superTabToCycleLauncher * Take into account that sectionItem height can change * Turn verify intro tryCompareFunction * forceLayout before calling positionViewAtIndex (LP: #1553475) * rootObject can be null for a small moment after setSource is called (LP: #1560501) [ CI Train Bot ] * Resync trunk. [ Daniel van Vugt ] * Reinstate the touch performance/smoothness fix (LP: #1486341, LP: #1556763). (LP: #1556763, #1486341) [ Josh Arenson ] * Change the color of the activity pulse to blue (LP: #1568082) * Make scope filter settings button the same color as other foreground elements (LP: #1563357) [ Lukáš Tinkl ] * Drop OOBE wizard autopilot tests * Fix labels in desktop spread * Fix upcoming event ETAs falling out of sync (LP: #1557571) * Hide the close button for dash (LP: #1550056, #1564347) * Notifications visual update, close button on mouse hover (LP: #1564343) * Shell visual update * Stabilize wizard tests * Unity8 windows now cascade instead of opening all in the top left corner (LP: #1513813) [ Michael Terry ] * Fix some unreliable test code. * Ignore Home Key presses when the greeter is up. (LP: #1565818) [ Michael Zanetti ] * Drop the rotation lock for the dash (LP: #1465331, #1574165) * improve the pin lockscreen * install devices.conf by default [ Ted Gould ] * Switch to using uid/pwdent for getting username -- Michael Terry Wed, 27 Apr 2016 15:01:28 +0000 unity8 (8.12+16.04.20160421.1-0ubuntu1) xenial; urgency=medium [ Daniel d'Andrada ] * Refactor keymap switching code * Surface-based window management * Use Item.grabToImage() instead of qtmir's ApplicationScreenshot provider [ Michael Zanetti ] * Fixes for programmatically closing Applications [ Robert Bruce Park ] * Use new bileto_pre_release_hook -- Gerry Boland Thu, 21 Apr 2016 13:48:02 +0000 unity8 (8.12+16.04.20160414.1-0ubuntu1) xenial; urgency=medium [ Michael Terry ] * Make sure that usageMode is set on startup, fixing a problem with the tutorial not noticing that it is running on a desktop. (LP: #1564351) [ Michael Zanetti ] * make the edge drag area width configurable (LP: #1559512) -- Michael Zanetti Thu, 14 Apr 2016 21:20:28 +0000 unity8 (8.12+16.04.20160401-0ubuntu1) xenial; urgency=medium * Add missing Testsuite header * Skip the failing test until we have a working solution for bug #1564571 (LP: #1564571) -- Michał Sawicz Fri, 01 Apr 2016 08:32:16 +0000 unity8 (8.12+16.04.20160330-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Use tutorialLeftLoader instead of tutorialLeft [ CI Train Bot ] * Update translation template [ Lukáš Tinkl ] * Fix the last chance popup colors/theme [ Michael Terry ] * Adjust text for desktop right edge tutorial to be accurate. (LP: #1563103) * Fix OOBE wizard not setting your name. (LP: #1562872) * Fix showing "Retry" in password prompt when turning on screen in tablet mode. -- Michał Sawicz Wed, 30 Mar 2016 07:46:51 +0000 unity8 (8.12+16.04.20160323.2-0ubuntu1) xenial; urgency=medium [ Michael Terry ] * * Fix setting OSK layout in OOBE wizard * Stop the left edge tutorial from being shown when the bottom edge tutorial wants to be shown after receiving a call. [ Albert Astals Cid ] * Filter implementation with Option Selector filter as the only filter * Get the engine from the parent context * Implement the API changes due to filters * Match design visuals for the new dash navigation/page header popup * New Dash Navigation UX * Range Input filter * Value slider filter * Workaround SDK ListItem bug [ Albert Astals Cid, Lukáš Tinkl ] * Fix various tests [ CI Train Bot ] * Resync trunk. * Update translation template [ Lukáš Tinkl, Michael Terry ] * New first-run wizard for the phone (part of the OOBE effort) (LP: #1536688, #1536617, #1543790, #1555222) [ Lukáš Tinkl, Michał Sawicz ] * Keymap switching support (LP: #1524400, #1412492, #1491340) [ Michael Terry, Michael Zanetti ] * Redesign the first-boot edge tutorial [ Michael Zanetti ] * disabling some tests that are flaky in adt but can't be made fail on our machines [ Michael Zanetti, Michał Sawicz ] * Change the behavior alond with the switch in indicator-display (LP: #1538591) [ Michael Zanetti, Michał Sawicz, Nick Dedekind ] * Add support for low shell chrome. (LP: #1535397) * Sidestage load/unload redesign (LP: #1544479) -- Michael Zanetti Wed, 23 Mar 2016 09:53:17 +0000 unity8 (8.11+16.04.20160318.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Update translation template [ Lukáš Tinkl ] * Fix notifications with the new UITK color schemes (LP: #1554616, #1556523) [ Lukáš Tinkl, Michael Zanetti, Nick Dedekind ] * more fixes for the new theme palette (LP: #1554616, #1557534) -- Michael Zanetti Fri, 18 Mar 2016 17:12:53 +0000 unity8 (8.11+16.04.20160310.4-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Add context for Re-dock as asked by translators (LP: #1534608) * Add emblem to the preview header widget (LP: #1424720) * Add haptics to ScopesListCategoryItem buttons * Audio Cards: Make some of the image loading async (LP: #1533432) * Do not create fallback code for the card tool fake card (LP: #1545865) * Fix resizing the dash bringing temp scopes size out of sync (LP: #1543130) * Minor fixes for unity-scope-tool * Resolve title alignment on card creator time instead of on runtime * Use fixedHeaderHeight only in the non cardtool cards * Use the new undeprecated connectivityqt::Connectivity * asynchronous is only false on the fake card in cardtool * clazy fixes [ Albert Astals Cid, CI Train Bot ] * click scope: Add the else branch so we reset the card size in all situations [ Andrea Cimitan ] * PreviewSharing widget now accepts both string and array of widgetData["share-data"]["uri"] (LP: #1549056) * Update AP tests for new single preview * Use Text.Wrap for body notification text (LP: #1544909) [ Andrea Cimitan, Lukáš Tinkl, Michael Zanetti, Nick Dedekind ] * some fixes for the new palette (LP: #1554616) [ CI Train Bot ] * Resync trunk. * Update translation template [ CI Train Bot, Daniel d'Andrada ] * Ensure the QML engine doesn't delete our mock MirSurfaces on its own. [ Daniel d'Andrada ] * tst_Shell: Remove unused qml items [ Josh Arenson ] * Allow the shell to blacklist input devices and force the OSK shown. (LP: #1542224) [ Lukáš Tinkl ] * Disallow resizing windows up, past the Panel (LP: #1544766) * Elide the window title not to let it overflow into the indicators area (LP: #1535767) * Enable the PIN lockscreen to be used with a HW keyboard (LP: #1550359) * Fix tiny windows when switching stages * Provide a range of ports to QML JS Debugger * Watch for launcher item icon changes (LP: #1543290) [ Michael Terry ] * Proxy more mouse and touchpad properties to USC (LP: #1540398) (LP: #1543344, #1540398) * Refactor the AccountsService plugin and make it slightly faster. * To let the user log in if a mouse is connected, hide the greeter cover page on a mouse click (but NOT a touch click). (LP: #1540497) * Watch AccountsService for changes to the user's real name. This was preventing us from noticing when the user set their name in the welcome wizard. [ Michael Zanetti ] * Allow alt+tabbing in staged mode too (LP: #1540502) * Allow invoking the staged mode spreads by mouse right edge pushes too (LP: #1540392) * Allow loading the device configuration from an external file * Implement Launcher's keyboard navigation and updated pip design * Make launcher scalable, allow it locking (LP: #1511015) * Properly parent launcher items in all cases (LP: #1495732) * Read inputMethod surface from the new property int QtMir (LP: #1545286) * Some visual updates and rotation lock for the virtual touchpad (LP: #1549087) * Visual updates for the windowed spread (LP: #1488148) * stabilize swipeAwayGreeter() [ Michał Sawicz ] * Add udev rules to make sure we have access to uinput * Make dash respawn indefinitely (LP: #1550056) * Use dpkg-architecture, not arch, to disable touch emulation [ Vesa Rautiainen ] * Fixing the vertical position of desktop spread item icon. -- Michał Sawicz Thu, 10 Mar 2016 22:44:16 +0000 unity8 (8.11+16.04.20160308-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Make these tests pass with the new SDK [ Andrea Cimitan, Nick Dedekind ] * replace selected.backgroundText with normal.backgroundText in Splash, Notifications, Wizard [ CI Train Bot ] * Update translation template [ Michał Sawicz, Nick Dedekind ] * Fixed colours palette value set. Moved ModemItem to USC. [ Michał Sawicz, Tim Peeters ] * Update headers for Dash and Splash to work properly with the new UI toolkit release. [ Zoltán Balogh, Zsombor Egri ] * Use SuruDark theme instead of the deprecated SuruGradient. -- Zoltan Balogh Tue, 08 Mar 2016 20:59:34 +0000 unity8 (8.11+16.04.20160307-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. * Update translation template [ Rodney Dawes ] * Re-enable the purchaseCancelled signal. -- Rodney Dawes Mon, 07 Mar 2016 14:12:08 +0000 unity8 (8.11+16.04.20160301-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Hook the new scope.activationInProgress property (LP: #1537132) [ Andrea Cimitan ] * Updated the Preview view to use a single PreviewModel instead old PreviewStack, using a Loader instead ListView (LP: #1541967) [ CI Train Bot ] * Resync trunk. * Update translation template [ Michał Sawicz ] * Add autopilot as DEP-8 tests added: debian/tests/autopilot.sh -- Pawel Stolowski Tue, 01 Mar 2016 10:28:52 +0000 unity8 (8.11+16.04.20160216.1-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Make the audio previews create a playlist (LP: #1540477) [ CI Train Bot ] * Resync trunk. added: po/aa.po * Update translation template -- Pawel Stolowski Tue, 16 Feb 2016 03:24:46 +0000 unity8 (8.11+16.04.20160212-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Do not use components in card creator generated code * Forward the makesurevisible signal from the inner preview widget * Make fallback also be fallback when the image is empty and not only on error (LP: #1531913) * Make the artShapeSize assignment be updated when using dynamic grid units * Visual improvements to the dash audio play cards * We don't use the unity-scope-scopes anymore (LP: #1439172) [ Andrea Cimitan ] * only request a bigger image if zoomable widget data property is true, otherwise just leave the screen size (LP: #1536814) [ CI Train Bot ] * Update translation template [ Daniel d'Andrada ] * Set initial surface size (LP: #1532974) [ Daniel d'Andrada, Michał Sawicz ] * Window Size Hints [ Florian Boucault ] * Splash screen: delay showing the ActivityIndicator by 2 seconds. [ Lukáš Tinkl ] * Replace the word "phone" with a more generic term "device" in the welcome wizard (LP: #1294732, #1543527) [ Michael Terry ] * Have the tablet greeter set appropriate OSK hints if the user has a passcode instead of a passphrase. (LP: #1544173) [ Michael Zanetti ] * Don't eat mouse events in the edgebarrer [ Michał Sawicz ] * Bump unity-api dependencies [ Nick Dedekind ] * Added support for secondary indicator actions (LP: #1398888) * Remove zombie if they're not animated. (LP: #1534541) * Removed unused panel resources [ Ted Gould ] * Start the indicators after Unity8 starts instead of before -- Michał Sawicz Fri, 12 Feb 2016 00:12:41 +0000 unity8 (8.11+16.04.20160208-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * LVWPH: Reset to initial values when list is empty (LP: #1540490) * Make LazyImage qmltest less flaky on CI [ Andrea Cimitan ] * Make LazyImage qmltest less flaky on CI [ CI Train Bot ] * Resync trunk. * Update translation template [ Michael Terry ] * Display the current user's real name on the tablet lockscreen. (LP: #1536714) -- Michał Sawicz Mon, 08 Feb 2016 09:38:00 +0000 unity8 (8.11+16.04.20160129-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Audio Preview Button: Don't gain focus on press (LP: #1517830) * Better attempt at sanitization * Better looking application scopes for wide screens * Call printSettings correctly * Card test: Limit the precision we ask for doubles to be equal * Convert while into tryCompareFunction * Do not use the same filepath parameter for all the card creator createQmlObject calls (LP: #1536379) * Fix some test shells being unstable in the armhf builders * Make revealByEdgePush more stable * More reliable compares * Move the mouse over the bfb before waiting for rendering * Remove the DDAs constrains for every test * Set the background source size to the max we'll need + new background (LP: #1539011) [ Andrea Cimitan ] * Dynamically change click scope card size according to size (LP: #1536745) * Should fix lazyimage test failures on fast machines [ CI Train Bot ] * Fix card tests on the phone * Update translation template [ Daniel d'Andrada ] * Desktop stage rotates only to follow screen orientation (LP: #1515977) [ Lukáš Tinkl ] * Hide/reveal the mouse pointer on touch/mouse events renamed: plugins/Utils/HomeKeyWatcher.cpp => plugins/Utils/WindowInputMonitor.cpp plugins/Utils/HomeKeyWatcher.h => plugins/Utils/WindowInputMonitor.h tests/mocks/Utils/HomeKeyWatcher.qml => tests/mocks/Utils/WindowInputMonitor.qml tests/plugins/Utils/HomeKeyWatcherTest.cpp => tests/plugins/Utils/WindowInputMonitorTest.cpp [ Michael Terry ] * Synchronize the mouse-cursor-speed and touchpad-cursor-speed properties with USC. (LP: #1536383) [ Michael Zanetti ] * Add InputMethod to secondary screen * Add a virtual Touchpad while external screen is connected * Make big tablets switch to windowed mode by plugging a kbd only (LP: #1535399) * Prevent alt key presses from being dispatched to the app on alt+tab (LP: #1532862) [ Michał Sawicz ] * Make qmluitests.sh more robust and allow parallel test execution * Skip SessionBackendTest::testLogin1Capabilities until we talk to a mock instead (LP: #1532112, #1532113) -- Michał Sawicz Fri, 29 Jan 2016 11:53:27 +0000 unity8 (8.11+16.04.20160122-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Fix bug #1536296 added: tests/plugins/Dash/cardcreator/10.tst (LP: #1536296) * Fix card tests on the phone [ CI Train Bot ] * Update translation template -- Michał Sawicz Fri, 22 Jan 2016 16:56:04 +0000 unity8 (8.11+16.04.20160111.1-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Clear fake item icon name as soon as it goes invisible (LP: #1531172) * Fix LVWPH test failing on Xenial (Qt 5.5) * Fix dragging so that test passes on Xenial * Fix focus on the dash page header text field with new SDK (LP: #1528178) * Make the card creator test pass again * Quit the dash communicator thread before destroying it (LP: #1508485) * Remove duplicated override_dh_auto_clean * SDK changed the name they give to the buttons, follow [ Andrea Cimitan ] * Fix a broken binding [ CI Train Bot ] * Resync trunk. * Update translation template [ Daniel d'Andrada ] * Have "make tryFoo" work with Qt 5.5 * Make DragHandle tests run again. [ Lukáš Tinkl ] * Fix dismissing the launcher when clicking/tapping outside (LP: #1531339, #1530940) * Fix panel drop shadow and click-to-focus of maximized apps (LP: #1531854) * Fix wifi access point indicator items signal strength icon on desktop [ Michael Terry ] * Guard against a couple odd timing scenarios for the too-many-failed- login-attempts lockout screen. * Skip the wizard's password screens if there is already a password set by other means. (LP: #1531268) * Stop the emergency dialer from accidentally exposing the mtp service. (LP: #1525981) [ Michael Zanetti ] * Make sure the triangle of the quicklist is in bounds (LP: #1531340) [ Pawel Stolowski ] * Changes 'shareData' and 'contentType' attributes to 'share-data' and 'content-type', to match existing naming schema. -- Michał Sawicz Mon, 11 Jan 2016 17:38:49 +0000 unity8 (8.11+16.04.20160107-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Introduce audio cards [ CI Train Bot ] * Update translation template [ Michael Zanetti ] * Introduce audio cards -- CI Train Bot Thu, 07 Jan 2016 08:04:47 +0000 unity8 (8.11+16.04.20160105.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Resync trunk. * Update translation template [ Nick Dedekind ] * Use volume-sync action to resync the volume control. (LP: #1520548) -- Xavi Garcia Tue, 05 Jan 2016 13:55:38 +0000 unity8 (8.11+16.04.20151208.1-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Allow dragging launcher items with the quicklist open (LP: #1250861) * Create ratings on demand instead of all at the same time (LP: #1519898, #1492214) * LVWPH: Process correctly section changes (LP: #1519893) * Make sure that unfavoriting a scope gives us the next one * Move images only used in tests to tests folder [ Andrea Cimitan ] * Add shadows to ubuntu store icon [ Daniel d'Andrada ] * MirSurfaceItem got a new property: fillMode (LP: #1497083) * Session can have multiple surfaces now * plugins/Cursor: Do not force loading a specific cursor size (LP: #1517878) [ Lukáš Tinkl ] * Indicators convergence: use the "phone" profile everywhere (LP: #1520492) [ Michael Terry ] * Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). [ Michael Zanetti ] * Use proper z ordering instead of app index for occlusion detection * add some debug prints to the uinput backend * drop the ignoredMice hack again (LP: #1521580) [ Michał Sawicz ] * Let qtmir know which apps are exempt from the lifecycle management. This way, it can manage its own wakelocks better (and stop preventing the system from deep sleeping). * Update .pot file in debian/clean when in train -- Gerry Boland Tue, 08 Dec 2015 15:37:58 +0000 unity8 (8.11+16.04.20151126-0ubuntu2) xenial; urgency=medium * Rebuild against Qt 5.5.1. -- Timo Jyrinki Mon, 30 Nov 2015 16:19:18 +0200 unity8 (8.11+16.04.20151126-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Initialize the image to be transparent (LP: #1517128) * Update pot file * clazy improvements [ Andrea Cimitan ] * Shadows in launcher and dash using UbuntuShapeIcon [ CI Train Bot ] * Resync trunk. [ Daniel d'Andrada ] * Cursor plugin: add scroll wheel handling (LP: #1497091) * Cursor: Add more fallback names, a blank and custom cursor support * DesktopStage: swiping from right edge shows window spread * Don't stretch application surfaces when resizing (LP: #1497083) * Mouse has to push against edges to show launcher or apps spread (LP: #1510969) [ Josh Arenson ] * Don't let IntegratedLightDM muck with the username (LP: #1497081) [ Lukáš Tinkl ] * Implement new visuals for panel and window decorations (LP: #1493066, #1511020, #1497095) * Let systemd/logind handle the lid-close action * Make saving screenshots really async [ Michael Zanetti ] * detect touchpads too, not only mice (LP: #1518395) * move screenshots out of the Dash dir -- Michał Sawicz Thu, 26 Nov 2015 13:52:00 +0000 unity8 (8.11+16.04.20151112.1-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Make cardWidth and cardHeight real * Reset instead of qFatal when removing things from the middle (LP: #1238979) * Warn we're using only the cache when not connected to the interwebs [ Andrea Cimitan ] * Add sharing widget to zoomable image and video playback [ Daniel d'Andrada ] * Cursor: properly initialize hotspot position (LP: #1510407) * Update GSettings mock in tst_OrientedShell [ Lukáš Tinkl ] * Restore windows when activating from the spread, maintain a focus stack [ Michael Terry ] * Make a few DBus calls asynchronous, for a smoother UX. [ Michael Zanetti ] * Add a warning dialog when disconnecting the external monitor. * added icon for the dash (LP: #1488146) * prevent windows to be moved under the panel (LP: #1438465) * update inputinfo api to the latest upstream snapshot * use UbuntuNumberAnimations instead of linear ones for window state transitions (LP: #1497097) -- Michael Zanetti Thu, 12 Nov 2015 20:41:02 +0000 unity8 (8.11+16.04.20151104-0ubuntu1) xenial; urgency=medium [ Albert Astals Cid ] * Add an Item that proxies for old and new audio roles (LP: #1493851) * CroppedImageMinimumSourceSize: Fix 'Binding loop detected for property "imageAspectRatio"' * Make the scope settings list scroll to text visible area (LP: #1499084) * Move to importing QtQuick 2.4 & friends * Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Andrea Cimitan ] * Add sharing widget to zoomable image and video playback * Make zoomable and video playback widgets edge to edge * Updated all 1.3 UbuntuShape to use new APIs where possible * Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ CI Train Bot ] * Resync trunk. [ Christopher Lee ] * Quick spelling fix in process control output. [ Daniel d'Andrada ] * Enable support for overriding application orientations based on device type (LP: #1478637) * Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) * Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Josh Arenson ] * Enable support for overriding application orientations based on device type (LP: #1478637) [ Michael Terry ] * Avoid showing the shutdown dialog when turning on the screen if your device is under heavy load. (LP: #1508563) * Handle lifecycle policy exceptions ourselves, instead of letting qtmir do it for us and allow non-Touch apps to opt-out of the Touch lifecycle. [ Michael Zanetti ] * Fixes for the panel buttons (LP: #1510360, #1504269, #1431566, #1443319) * Use SDK 1.3 across all files (LP: #1503498, #1508363, #1449628) [ Michał Sawicz ] * Add missing copyright to Cursor.qml * Enable support for overriding application orientations based on device type (LP: #1478637) * Support server->client visibility change to stop rendering (lp:#1475678) (LP: #1475678) [ Nick Dedekind ] * Support server->client visibility change to stop rendering (lp:#1475678) (LP: #1475678) -- Michał Sawicz Wed, 04 Nov 2015 14:58:41 +0000 unity8 (8.11+15.10.20151021-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Clazy fixes * Enable Efficient String Construction by default [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ] * Have unity8 drawing its own cursor (LP: #1488417) * Initial multi-monitor support [ Daniel van Vugt ] * Disable Qt's stuttering 'touch compression' to fix scrolling smoothness (LP: #1486341, #1488327) [ Lukáš Tinkl ] * Fix autopilot wizard test skipping the reporting page * Implement Unity.Platform plugin wrapping org.freedesktop.hostname1 (LP: #1504318) * React to window title (aka surface name) changes (LP: #1497092) * Rotate the screenshots according to the actual orientation [ Michał Sawicz ] * Fix application API dependency * Have unity8 drawing its own cursor (LP: #1488417) * Initial multi-monitor support * Rotate the screenshots according to the actual orientation [ Nick Dedekind ] * Fixed leak in UnityMenuModelStackTest * Moved time translation to SDK (LP: #1372061) -- Michał Sawicz Wed, 21 Oct 2015 11:51:53 +0000 unity8 (8.11+15.10.20151009-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Pawel Stolowski ] * Store unity8 package version in /var/lib/.../version file for fast retrieval from the shell plugin. -- Pawel Stolowski Fri, 09 Oct 2015 09:13:03 +0000 unity8 (8.11+15.10.20151008-0ubuntu1) wily; urgency=medium [ Lukáš Tinkl ] * Revert to using plaintext instead of HTML-like markup for the notifications (LP: #1504256) -- Michał Sawicz Thu, 08 Oct 2015 20:46:26 +0000 unity8 (8.11+15.10.20151002-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * Resync trunk. [ Lukáš Tinkl ] * Wizard: skip the reporting page if the system is configured not to report crashes (LP: #1494442) -- Ken VanDine Fri, 02 Oct 2015 13:24:03 +0000 unity8 (8.11+15.10.20151001-0ubuntu1) wily; urgency=medium [ Alexandros Frantzis ] * Use power state change reason SnapDecision to turn screen on when a SnapDecision arrives (LP: #1291455) [ CI Train Bot ] * New rebuild forced. -- Alexandros Frantzis Thu, 01 Oct 2015 12:04:04 +0000 unity8 (8.11+15.10.20150930.1-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Make Launcher::test_quickListMenuOnRMB stable (LP: #1500359) [ CI Train Bot ] * New rebuild forced. [ Michael Zanetti ] * Stabilize Launcher DND test -- Michał Sawicz Wed, 30 Sep 2015 10:09:33 +0000 unity8 (8.11+15.10.20150925-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Improvements from running clazy over the code [ Daniel d'Andrada ] * PhoneStage: ensure you're left in a consistent state after being reset (LP: #1476757) [ Lukáš Tinkl ] * Improve the appearance and functionality of datetime and session indicators in Unity8 desktop. * Using InputInfo, determine if we need swipe or click to dismiss the notifications (e.g. incoming phone call) [ Michael Zanetti ] * further development on the Desktop Spread (LP: #1488147) [ Michał Sawicz ] * Bump application API version * Skip bluetooth check under wily, use expectFailure to notice when it's back [ Richard Somlói ] * Fix translator comments in time formatter -- Michał Sawicz Fri, 25 Sep 2015 12:13:20 +0000 unity8 (8.11+15.10.20150922.1-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Adapt test to code changes * Add DEP-8 test for all our UI and unit tests * Keep the PreviewStack around to avoid mem leaks (LP: #1495467) [ CI Train Bot ] * Resync trunk. [ Michael Terry ] * When libusermetrics gives us an empty string, still show the infographic circle rather than hiding it. This is a follow-on to a branch [1] that changes the "no data available" label to the empty string. [ Michał Sawicz ] * Add DEP-8 test for all our UI and unit tests * Fix integrated LightDM path * Resync trunk -- Michał Sawicz Tue, 22 Sep 2015 12:57:15 +0000 unity8 (8.11+15.10.20150915-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Fix testNotifications * Make the wait longer to make tests pass in CI * New simplified CroppedImageMinimumSourceSize (LP: #1467740) * Stop animateTimer when starting the fadeOutAnimation * Use AlreadyLaunchedUpstart so that tests passes * Workaround keyboard issues and make test pass again [ Daniel d'Andrada ] * DesktopStage: Refactor focus handling * Stabilize tstShell.test_launchedAppHasActiveFocus [ Gary.Wzl ] * Add widgetData["expanded"] property for expandable widget. [ Michael Terry ] * Fix typo that caused the tutorial to tease the launcher on top of the greeter. * Fix typo that caused the tutorial to tease the launcher on top of the greeter. -- Michael Zanetti Tue, 15 Sep 2015 12:06:06 +0000 unity8 (8.11+15.10.20150907-0ubuntu1) wily; urgency=medium [ Michal Sawicz ] * Resync wily with vivid [ Albert Astals Cid ] * Accomodate header height when using a card carousel with non overlayed header (LP: #1489309) * Fix restart unity8 from inside the phone more than two times (LP: #1487946) [ Gary.Wzl ] * Move textarea up automatically when inputmethod popup. (LP: #1485947) [ Lukáš Tinkl ] * Introduce a GlobalShortcut QML component for handling global keyboard shortcuts [ Michael Terry ] * Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) * Fix the fact that a user that is locked out from their account for five minutes after entering too many wrong passwords can simply reboot to try again. (LP: #1383086) [ Michael Zanetti ] * Implement progressive autoscrolling in desktop spread * add an animation transition when invoking the spread by hitting the right edge -- CI Train Bot Mon, 07 Sep 2015 14:05:37 +0000 unity8 (8.11+15.10.20150826-0ubuntu1) wily; urgency=medium [ Michael Zanetti ] * release for wily [ CI Train Bot ] * New rebuild forced. -- CI Train Bot Wed, 26 Aug 2015 09:01:03 +0000 unity8 (8.11+15.04.20150831.2-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Accept auto repeats for the power down button if timer is not yet running (LP: #1486953, #1488927) * Add tests for Shell+Dash interaction * Make clicking on launcher buttons have haptic feedback * Make test_greeter_hides_on_app_open more stable * Move connect() to new syntax * make pot_file (LP: #1488484) [ Gerry Boland ] * [spread] avoid changing sourceSize of snapshotted apps, it causes ghost apps in the spread (LP: #1474319) [ Josh Arenson ] * Refactor the greeter to enable dynamic loading of backend plugins. * Refactor the greeter to enable dynamic loading of backend plugins. [ Lukáš Tinkl ] * Don't show the volume notification when the sound indicator is shown (LP: #1484126) [ Michael Terry ] * Unify turn-on-screen-upon-notification logic from various daemons into unity8. (LP: #1426115, #1482317) -- CI Train Bot Mon, 31 Aug 2015 10:25:39 +0000 unity8 (8.11+15.04.20150827.1-0ubuntu1) vivid; urgency=medium [ Daniel d'Andrada ] * MirSurfaceItem is now a view+controller instantiated from QML (LP: #1483752) -- CI Train Bot Thu, 27 Aug 2015 14:00:05 +0000 unity8 (8.11+15.04.20150821-0ubuntu1) vivid; urgency=medium [ Michael Terry ] * Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. * Skip the tutorial entirely when in desktop mode. This fixes the emulator not being able to pass the tutorial. -- CI Train Bot Fri, 21 Aug 2015 14:34:50 +0000 unity8 (8.11+15.04.20150817-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Drop gcc 4.9 requirement in debian/rules * Make the test more stable * Optimize scope.preview() calls (LP: #1478022) [ Alberto Mardegan ] * Set currentIndex after the model change is completed (LP: #1433442) -- CI Train Bot Mon, 17 Aug 2015 11:57:31 +0000 unity8 (8.11+15.04.20150814-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Make the test pass again after rework of appmanager * fix testPhoneStage [ CI Train Bot ] * New rebuild forced. [ Daniel d'Andrada ] * Fix and clean up InputInfo plugin [ Rodney Dawes ] * Do not call verify in the payments button code. (LP: #1468038) -- CI Train Bot Fri, 14 Aug 2015 09:53:11 +0000 unity8 (8.11+15.04.20150812-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Add a test that checks that items in an expandable are the correct size after expanding the expandable * Fix the expandable test * Replace some waitForRendering with wait(0) * Workaround for bug 1473471 (LP: #1473471) [ Gary.Wzl ] * Fix layout issue when adding audio track widget in expandable widget [ handsome_feng ] * Added indication for running apps. (LP: #1471577) * Adjust the color to highlighting indicator. (LP: #1457098) * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) [ handsome_feng<445865575@qq.com> ] * Convert the MouseArea to MultiPointTouchArea to track multiple touch points. (LP: #1445472) -- CI Train Bot Wed, 12 Aug 2015 08:41:24 +0000 unity8 (8.10+15.10.20150804-0ubuntu1) wily; urgency=medium [ Kevin Gunn ] * No change, rebuild for gcc5 [ CI Train Bot ] * Resync trunk. added: po/cy.po * Resync trunk. added: po/cy.po [ Daniel d'Andrada ] * Stages now control the "requestedState" property of applications * Stages now control the "requestedState" property of applications -- CI Train Bot Tue, 04 Aug 2015 20:56:05 +0000 unity8 (8.10+15.10.20150729-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * Resync trunk. * allow opening the manage dash area by clicking with a mouse on the arrow label (LP: #1431564) [ Daniel d'Andrada ] * TouchRegistry: remove null candidates from list of candidates (LP: #1473492) [ Lukáš Tinkl ] * Fix power dialogs on desktop * Provide DBUS compatibility with various session services (suspend/hibernate, lock/unlock, screensaver, etc) * React on PrtScr keyboard shortcut for taking screenshots on desktop (LP: #1474149) * launcher parity: close apps from quicklist (LP: #1457201) [ Michael Zanetti ] * Implement first edition for a desktop Alt+Tab spread * drop the gcc-4.9 dependency (LP: #1452348) [ Mirco Müller ] * Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. * Added corresponding tests and visual tweaks to a launcher-item's progress-overlay. * Implemented alert/wiggle feature for launcher-icons. * Implemented alert/wiggle feature for launcher-icons. [ handsome_feng ] * makes left swip reset the search string. (LP: #1413791) [ handsome_feng<445865575@qq.com> ] * Don't expand indicators when tap to return to call. (LP: #1453217) * makes left swip reset the search string. (LP: #1413791) -- CI Train Bot Wed, 29 Jul 2015 12:39:01 +0000 unity8 (8.10+15.10.20150708.2-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Make the card sizes a bit dependant on the total of gu of the dash -- CI Train Bot Wed, 08 Jul 2015 15:01:41 +0000 unity8 (8.10+15.10.20150702.2-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Save screenshots of suspended apps to disk * Set width of title label when inside the title row (LP: #1461979) * qmluitests was renamed to uitests [ CI Train Bot ] * Resync trunk. [ Daniel d'Andrada ] * Fix tst_OrientedShell and tst_Tutorial (LP: #1469761, #1466947) [ Leo Arias ] * Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Leonardo Arias Fonseca ] * Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) [ Lukáš Tinkl ] * fix PO files extraction [ Michael Zanetti ] * Make use of QInputDeviceInfo in order to automatically switch between usage modes and hide the OSK. [ Nick Dedekind ] * Fixed qtmultimedia mock which was generating errors in tests [ Richard Huddie ] * Reorganized the python test helper modules. Deprecated the unity8.shell.emulators namespace. (LP: #1306340) -- CI Train Bot Thu, 02 Jul 2015 16:09:57 +0000 unity8 (8.10+15.10.20150618-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. * Support fallback images for dash card and preview widgets (LP: #1324142) [ CI Train Bot ] * New rebuild forced. * Resync trunk. [ Daniel d'Andrada ] * Fix Shell tests [ Josh Arenson ] * Refactor greeter emulator to unlock the greeter via dbus [ Lukáš Tinkl ] * respect target window's devicePixelRatio in MouseTouchAdaptor [ Michael Zanetti ] * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ Michał Sawicz ] * Refactor QmlTest.cmake module so that all tests can go through it. Also a bit of cleanup around tests. [ handsome_feng ] * Forbid closing apps during the edge gesture. (LP: #1445572) * Removed the horizonal rule on pin unlock screen. (LP: #1368798) [ handsome_feng<445865575@qq.com> ] * Forbid closing apps during the edge gesture. (LP: #1445572) -- CI Train Bot Thu, 18 Jun 2015 19:40:06 +0000 unity8 (8.10+15.10.20150612-0ubuntu2) wily; urgency=medium * No-change rebuild against Qt 5.4.2. -- Timo Jyrinki Mon, 15 Jun 2015 12:33:07 +0300 unity8 (8.10+15.10.20150612-0ubuntu1) wily; urgency=medium [ Michał Sawicz ] * Implement full-shell rotation (LP: #1210199) [ CI Train Bot ] * New rebuild forced. * Resync trunk. [ Daniel d'Andrada ] * Implemented autopilot-test and fake-sensors for shell-rotation. [ Mirco Müller ] * Implemented autopilot-test and fake-sensors for shell-rotation. -- CI Train Bot Fri, 12 Jun 2015 16:07:47 +0000 unity8 (8.10-0ubuntu1) UNRELEASED; urgency=medium * Implement full-shell rotation (LP: #1210199) -- Michał Sawicz Wed, 15 Apr 2015 14:47:17 +0200 unity8 (8.02+15.10.20150603.1-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * New rebuild forced. * Resync trunk. [ Renato Araujo Oliveira Filho ] * Set the device led color to green. (LP: #1450894) -- CI Train Bot Wed, 03 Jun 2015 21:42:35 +0000 unity8 (8.02+15.10.20150518.1-0ubuntu1) wily; urgency=medium [ Albert Astals Cid ] * Add overrides to override functions * Implement "rating-edit" preview widget (LP: #1318144) * Make the DashContent::test_mainNavigation test more stable (LP: #1450809) * Use art height as implicitHeight when the header is overlayed and there's no summary [ CI Train Bot ] * New rebuild forced. * Resync trunk. [ Daniel d'Andrada ] * Introducing FloatingFlickable * Make Ubuntu.Gestures components install TouchRegistry by themselves [ Michael Terry ] * Fix a possible crash in our PAM threading code. (LP: #1425362) (LP: #1425362) * Fix the lockscreen becoming unresponsive after testing an app on the device from QtCreator. (LP: #1435364) [ Nick Dedekind ] * Fixed desktop stage app focus. * Fixed issue in laggy indicator autpilot tests (LP: #1446846) -- CI Train Bot Mon, 18 May 2015 23:04:39 +0000 unity8 (8.02+15.04.20150511-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Workarounds for concierge mode. [ CI Train Bot ] * New rebuild forced. * Resync trunk. -- CI Train Bot Mon, 11 May 2015 08:29:58 +0000 unity8 (8.02+15.04.20150505-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Make runtests fake a test error if make fails * Make the test more stable * Use dbus-test-runner instead of dbus-launch [ Daniel d'Andrada ] * DirectionalDragArea: improvements & API grooming (LP: #1417920) * Fix EdgeDragEvaluator when a drag can happen both ways (Direction.Horizontal) [ Josh Arenson ] * Remove panelHeight property as it is unused. [ Leo Arias ] * Initial clean up of the autopilot tests set up. Removed the touch device from the test case. Moved the restart of unity to a fixture. Removed the unused DragMixin. Updated the setUpClass to use process_helpers. Removed the workaround for bug #1238417, already fixed. Use the toolkit helper to set the testability environment variable. Fixed the indicators base class that was restarting unity twice. (LP: #1238417, #1447206) * Use the base class from the toolkit in autopilot tests. [ Michael Zanetti ] * emit application-stop when we're going down (LP: #1326513) [ Michał Sawicz ] * UNITY_SCOPES_LIST is no more [ handsome_feng<445865575@qq.com> ] * When click the favorite scope in Dash Manager , it just return to the corresponding scope page. (LP: #1447056) -- CI Train Bot Tue, 05 May 2015 14:47:24 +0000 unity8 (8.02+15.04.20150422-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Compile with Qt 5.5 (LP: #1437238) * Different way of top aligning labels when the other one in the row is multiline (LP: #1442085) * make pot_file [ Andrea Cimitan ] * Set sourceSize for DashBackground.qml Image [ CI Train Bot ] * New rebuild forced. * Resync trunk. added: po/sk.po [ Daniel d'Andrada ] * Move handling of command line options to a separate class * Refactor tst_PhysicalKeysMapper.qml [ Leo Arias ] * For autopilot tests, use the device simulation scenarios from the toolkit. [ Leonardo Arias Fonseca ] * For autopilot tests, use the device simulation scenarios from the toolkit. [ Michael Zanetti ] * Make sure dnd mode is ended properly when drag gesture is cancelled (LP: #1444949) [ Michał Sawicz ] * Fix flake8 warnings (LP: #1444170) * Move mock indicator service to unity8-fake-env, as it's a binary- dependent package. [ Nick Dedekind ] * Use asynchronous dbus requests for property updates. (LP: #1436982) -- CI Train Bot Wed, 22 Apr 2015 14:46:31 +0000 unity8 (8.02+15.04.20150409.1-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Focus the shutdown dialog (LP: #1417991) * Make url-dispatching scope activation when the dash is not on the main scopes (LP: #1364306) * We use autopilot3 now [ CI Train Bot ] * New rebuild forced. * Resync trunk. added: po/or.po [ Daniel d'Andrada ] * Make tst_PreviewListView and tst_GenericScopeView work in out-of- source builds * MouseArea that shows the indicators panel should cover the indicators bar only (LP: #1439318) * Surface gets active focus also with mouse clicks [ Josh Arenson ] * Add a mode option to unity8 for selecting greeter mode in the future * Remove PkgConfig include from Launcher plugin to fix cross-compile (LP: #1437702) [ Leo Arias ] * Fixed the check for string in the lock screen test. (LP: #1434518) [ Michael Terry ] * Make sure the edge tutorial is destroyed when we receive a call during the wizard. (LP: #1436349) * Skip parts of the edge tutorial that require a touch device (like spread and bottom edge). (LP: #1434712) [ Michael Zanetti ] * Don't hide stages just because they're empty (LP: #1439615) * [Launcher] fix bug where an item would disappear even though the app is running (LP: #1438172) [ Nick Dedekind ] * Fixed autopilot test failures related to udev input failure for power button. * Made improvements for laggy indicator backends (lp#1390136). (LP: #1390136) [ Pete Woods ] * GPS only goes active when the Dash is in the foreground (LP: #1434379) [ handsome_feng<445865575@qq.com> ] * Modified the wrong time format in ScreenGrabber (LP: #1436006) -- CI Train Bot Thu, 09 Apr 2015 14:01:11 +0000 unity8 (8.02+15.04.20150320-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Fix regression making pan not possible in Zoomable Image (LP: #1433506) * Make sure m_firstVisibleIndex is correctly set after processing changeSet.removes (LP: #1433056) * make pot_file [ Daniel d'Andrada ] * Don't show the rotating rect in "make tryFoo". [ Michael Zanetti ] * make pinlockscreen adjust better to larger displays -- CI Train Bot Fri, 20 Mar 2015 11:56:41 +0000 unity8 (8.02+15.04.20150318-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Add some context to tr calls (LP: #1431497) * Require binaries and .pc files we call from code * Test: More stubborn flick to the end [ Andrea Cimitan ] * Refactor PreviewOverlay to fix weird zoom out/in animations when previewing images from the Previews [ CI Train Bot ] * Resync trunk. [ Charles Kerr ] * Re-enable a rotation lock test now that the bug that broke that test has been fixed. (LP: #1410915) [ Daniel d'Andrada ] * Darkened area behind indicators menu should eat input until it fully disappears (LP: #1417967) * DesktopStage - fix focus switch when user taps on window (LP: #1431325) * Fix warnings when launching tutorial * Make MouseTouchAdaptor controllable from within QML * Make tst_Shell absorb tst_TabletShell [ Leo Arias ] * Changed the autopilot dependencies so they do not require qt4. (LP: #1429158) * Drop the support for python2 in autopilot tests. (LP: #1429163) * Stop using the deprecated toolkit emulators namespace in autopilot tests. (LP: #1341681) [ Michael Terry ] * Don't close wizard & edge tutorial when the unity8-dash closes (LP: #1425484) * Don't let the wizard sit indefinitely, waiting for a wizard page to finish preparing itself. (LP: #1425737) * Fix two broken qmluitest files by waiting for everything to settle before starting the tests. * Only call unlockAllModems once the wizard is done. (LP: #1425161) (LP: #1425161) * When we are locking the user out from too many login failures, notice when time passes even if the device is suspended. (LP: #1396817) (LP: #1396817) [ Michael Zanetti ] * Add a mouse area to the indicators panel so we can open them by clicking. (LP: #1417650) * fix launcher not reacting to first click when revealed by mouse hover, add tests * performance improvements (LP: #1430233, #1425087) [ Michał Sawicz ] * Remove the activity indicator from tests * Use targets instead of custom ld arguments for linking [ Mirco Müller ] * Updated the visuals of the SwipeToAct-widget for incoming-call snap- decision notifications according to new design-spec. * Updated the visuals of the SwipeToAct-widget for incoming-call snap- decision notifications according to new design-spec. -- CI Train Bot Wed, 18 Mar 2015 10:19:06 +0000 unity8 (8.02+15.04.20150302-0ubuntu2) vivid; urgency=medium * No-change rebuild against Qt 5.4.1. -- Timo Jyrinki Wed, 11 Mar 2015 10:27:23 +0200 unity8 (8.02+15.04.20150302-0ubuntu1) vivid; urgency=medium [ Albert Astals ] * Don't precache items that are outisde the 1.5*height buffering area (LP: #1410131) [ Albert Astals Cid ] * Don't precache items that are outisde the 1.5*height buffering area (LP: #1410131) [ Chris Townsend ] * Add a wrapper for handling the /org/gnome/SessionManager/EndSessionDialog DBus object used by indicator-session. This allows indicator-session to properly talk to the Unity 8 session management functions. (LP: #1392187) * Allow for proper logout session management. This uses the EndSession() Upstart DBus method on the current session bus. (LP: #1360316) * Make the Unity 8 session dialogs behave in the same fashion as Unity 7. From indicator-session: Clicking "Log Out" will now present a dialog to "Lock", "Log Out", or "Cancel". Clicking "Shut Down" will now present a dialog to "Reboot", "Shut Down", or "Cancel". (LP: #1416074) [ Daniel d'Andrada ] * Add NO_TESTS cmake option to skip tests and therefore speed up builds * Remove enums and properties that doesn't exist in the real ApplicationManager * Stabilize some Shell qml tests [ Josh Arenson ] * Create a PhysicalKeyMapper to handle all physical/hardware keys (LP: #1390393) [ Michael Terry ] * Make the draggable part of the right edge (during the tutorial) a constant size, instead of having it grow and shrink as the spread peeks out from the side. [ Michał Sawicz ] * Create a PhysicalKeyMapper to handle all physical/hardware keys (LP: #1390393) [ Robert Bruce Park ] * Launchpad automatic translations update. -- CI Train Bot Mon, 02 Mar 2015 12:11:21 +0000 unity8 (8.02+15.04.20150226-0ubuntu1) vivid; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Pete Woods ] * Only set scopes active when the screen is on (LP: #1422879) -- CI Train Bot Thu, 26 Feb 2015 19:39:54 +0000 unity8 (8.02+15.04.20150224-0ubuntu1) vivid; urgency=medium [ Albert Astals Cid ] * Dash manage hint should not be visible in previews+test (LP: #1422260) * Do not declare the hostname property twice * Fix some warnings in Mock Notifications * Make qmluittests pass with Qt 5.4 * Preserve the aspect ratio for the card attribute images (LP: #1411751) * Update qmltypes [ Andrea Cimitan ] * Add maximumLineCount for subtitle label in cards (LP: #1414870) [ Michael Terry ] * Move the gschema file to data/ and install it via cmake, not dpkg. * Refactor the greeter code to be more compartmented and isolatable. * Silence a couple qml warnings. (LP: #1423286) * Wait for libqofono to finish initializing before we decide whether to skip the wizard's SIM page or not. [ Michael Zanetti ] * enable revealing the launcher by hitting the left edge using the mouse [ Ying-Chun Liu ] * Add Autopilot Notification helper. -- CI Train Bot Tue, 24 Feb 2015 10:17:16 +0000 unity8 (8.02+15.04.20150216.1-0ubuntu1) vivid; urgency=medium [ Andrea Cimitan ] * Fix temp scopes opening temp scopes, correctly close previously opened temp scope with its preview (LP: #1410337) * Set sourcesize for scopes images in manage dash [ CI Train Bot ] * Resync trunk [ Albert Astals Cid ] * Test for bug #1316660 (LP: #1316660) * Hardcode tranlsation for internal.location field (LP: #1393438) * Make sure the height it's the height it will have [ Michael Zanetti ] * Cleanup cmake warning about missing Qt5Sql module -- CI Train Bot Mon, 16 Feb 2015 13:14:26 +0000 unity8 (8.02+15.04.20150211-0ubuntu2) vivid; urgency=medium * No-change rebuild against Qt 5.4.0. -- Timo Jyrinki Fri, 13 Feb 2015 15:17:18 +0200 unity8 (8.02+15.04.20150211-0ubuntu1) vivid; urgency=medium [ Michael Terry ] * Redesign tutorial to match latest spec (just removing obsolete pages and redesigning look, no new pages yet) * Add new right-edge and bottom-edge screens to the first-boot edge tutorial (LP: #1383297) * Support switching the indicator profile on the fly, as the greeter appears and disappears. (But don't use it yet, not until the settings panel to control this is in place.) * Clip the infographic to its bounding box, instead of letting it bleed past the welcome page (visible when dragging the welcome page to the side). [ Michael Zanetti ] * Add an AccountService based launcher model to be used with split greeter * Launcher fixes for windowed mode * save and restore window size and position * Fix resizing windows when making it smaller than minSize and then larger again. [ handsome_feng<445865575@qq.com> ] * makes the header fully reveal when tapping the search icon. (LP: #1379327) [ Mirco Müller ] * Allow swipe-to-dismiss for contracted snap-decision notifications, interactive notifications and ephemeral notifications. (LP: #1355422, #1334855) [ Daniel d'Andrada ] * Make indicators bar eat all events * Improve Launcher tests, making them more reliable * Tapping on a surface gives it active focus -- Ubuntu daily release Wed, 11 Feb 2015 17:13:16 +0000 unity8 (8.02+15.04.20150123.3-0ubuntu1) vivid; urgency=low [ Sebastien Bacher ] * Set text hint property for the messaging menus inline reply widget (LP: #1389234) [ Ying-Chun Liu ] * Added an initial set of autopilot tests for the display indicator. [ Nick Dedekind ] * Removed filtering the indicator model by visibility. [ Michael Zanetti ] * fixes left edge drag when in spread [ Albert Astals Cid ] * Fix ninja build in a different way The previous one was adding rpath to some .so that broke our tests that use LD_LIBRARY_PATH to change which one is picked up [ Leo Arias ] * Added an initial set of autopilot tests for the display indicator. -- Ubuntu daily release Fri, 23 Jan 2015 12:12:41 +0000 unity8 (8.02+15.04.20150121.2-0ubuntu1) vivid; urgency=low [ Michael Terry ] * Don't show any power dialogs while the screen is off. This is a band-aid to avoid the symptom, while we still investigate the source of why the screen doesn't turn on (and why we seem to not handle the power-button-release event). (LP: #1409003, #1410830) * Don't refocus the dialer-app when a call is started by the user. Because of how qtmir works, this would cause the dialer-app to unfocus momentarily, causing interface oddities for the user. (LP: #1413065) [ CI Train Bot ] * Resync trunk [ Albert Astals Cid ] * Build with ninja * Fixes for Table Preview Widget (LP: #1410420) [ Michael Zanetti ] * Add support for earpiece media buttons (LP: #1398427) * Add a WindowMoveResizeArea and tests for it -- Ubuntu daily release Wed, 21 Jan 2015 18:33:18 +0000 unity8 (8.02+15.04.20150113.1-0ubuntu1) vivid; urgency=low [ Andrea Cimitan ] * support background on horizontal cards with summary (LP: #1393008) [ Gerry Boland ] * DashCommunicator: replace QDBusInterface with a non-blocking simplification which does not introspect the service on creation (LP: #1403508) [ Leo Arias ] * Added an autopilot test for the edges demo. [ Albert Astals ] * Don't show the manage dash pull up arrow on temp scopes (LP: #1401869) * Remove hack, newer Qt already support keyClick(char) * Tests: Add Qt 5.5 removal TODOs * Make sure we use fPIC when compiling files for the static library too * Make sure changing a scope doesn't trigger creation/destruction of delegates until it's finished (LP: #1410122) [ Michael Zanetti ] * patch debian/control file before using it to make it work with mk- build-deps -- Ubuntu daily release Tue, 13 Jan 2015 20:58:08 +0000 unity8 (8.02+15.04.20150109.2-0ubuntu1) vivid; urgency=low [ Michał Sawicz ] * We don't need the SIGSTOP in main() any more. * Add a test to make sure the shell always starts disabled until it is enabled by a complete PAM interaction. [ Leo Arias ] * Added an autopilot test for the edges demo. [ Nick Dedekind ] * Unhook Lights interface from indicator widgets (LP: #1385331) [ Albert Astals ] * Fix going to scopes when the Manage Dash is open (LP: #1403464) * QSortFilterProxyModelQML -> UnitySortFilterProxyModelQML * Clip the Scopes List header * Fix ScopesList not being under finger * Make waitForRendering with no item fail instead of crash * Disable Dash horizontal scroll while Navigation InverseMouseArea is pressed (LP: #1403048) * Test: Make sure the mouse area is enabled before clicking into it * Test: We actually need to click on the customBackButton and not on backButton * Test: By default mouseX act on the middle [ Michael Terry ] * Don't block handling power events on loading the greeter's qml and the background image. * Show OSK above the wizard. (LP: #1401213) * Unify the name of the Greeter DBus test, make it use our standard binary test macro (which also nicely exports xml results), and make the test a little more robust against timing issues. * Add a test to make sure the shell always starts disabled until it is enabled by a complete PAM interaction. [ Martin Pitt ] * tests: Fix Notify.Notification.add_action invocation to work also with unpatched libnotify API. (LP: #1223401) [ Rodney Dawes ] * Depend on :native version of g++ to allow cross-compiling to work. (LP: #1353855) -- Ubuntu daily release Fri, 09 Jan 2015 10:43:06 +0000 unity8 (8.02+15.04.20141216.1-0ubuntu1) vivid; urgency=low [ Ubuntu daily release ] * New rebuild forced [ Albert Astals ] * Need to wait until loaded is true to use the count property * Manage Dash: Ellide properly -- Ubuntu daily release Tue, 16 Dec 2014 11:03:37 +0000 unity8 (8.02+15.04.20141215.3-0ubuntu1) vivid; urgency=low [ Albert Astals Cid ] * ScopesList: Use the default scope style for the header [ Daniel d'Andrada ] * Refactor Dialogs.qml to use proper in-scene dialogs * Make Greeter nicely handle being resized [ Albert Astals ] * Rework how we set the ranges so we get some more asynchronousity from item views (LP: #1384374) * clickscope is back to being unfavoritable (LP: #1400762) * Fix clicking on the manage dash list after having moved the current scope * Make the drag range be a multiple of the drag "rate" value. Workarounds https://bugs.launchpad.net/mir/+bug/1399690 [ Gerry Boland ] * MockAppMan: emit SIGSTOP so AP test apps are run (LP: #1394208) -- Ubuntu daily release Mon, 15 Dec 2014 22:43:16 +0000 unity8 (8.02+15.04.20141212.1-0ubuntu1) vivid; urgency=low [ Ubuntu daily release ] * New rebuild forced [ Albert Astals ] * Make Navigation work when "jumping" to the non root -- Ubuntu daily release Fri, 12 Dec 2014 12:28:10 +0000 unity8 (8.02+15.04.20141211.2-0ubuntu1) vivid; urgency=medium [ Michał Sawicz ] * Bump version due to new Manage Dash [ Gerry Boland ] * [indicators] Fix positioning on panel resize. [ Nick Dedekind ] * [indicators] Fix positioning on panel resize. [ Albert Astals ] * Fix the Dash Header hamburger menu background color * Fix tests (LP: #1400449) * Allow pulling manage dash if there's no favorite scopes (LP: #1400774) * Manage Dash: Make store button work even if you have no favorites (LP: #1400771) * Make pot_file [ CI Train Bot ] * Resync trunk [ Andrea Cimitan ] * Remove dismiss timer in Launcher (LP: #1368778) [ Michael Zanetti ] * decrease opacity changes in spread, move it to a separate surface. * Add an initial, rudimentary DesktopStage to get started * Uninvert Launcher in Desktop Mode * Add support for Wallpaper in Desktop stage * Add window control buttons to panel for fullscreen applications [ Rodney Dawes ] * Add dependency on gir1.2-notify-0.7 to unity8-autopilot package. (LP: #1400437) -- Ubuntu daily release Thu, 11 Dec 2014 13:25:44 +0000 unity8 (8.01+15.04.20141205-0ubuntu1) vivid; urgency=low [ CI Train Bot ] * Resync trunk [ Albert Astals ] * Replace Scopes Overview by the new Manage Dash (LP: #1386698, #1368670) -- Ubuntu daily release Fri, 05 Dec 2014 10:55:50 +0000 unity8 (8.01+15.04.20141204-0ubuntu1) vivid; urgency=low [ Michael Terry ] * Import wizard code from ubuntu-system-settings. * Convert the welcome wizard from a separate executable into a qml plugin (with a small C++ plugin for support). * Add tests for welcome wizard. -- Ubuntu daily release Thu, 04 Dec 2014 20:55:11 +0000 unity8 (8.01+15.04.20141202-0ubuntu1) vivid; urgency=low [ Michael Terry ] * Make sure that there is no window of opportunity for swiping away greeter before the lockscreen appears. * Don't allow dragging the greeter out from the left edge if it's hidden there. (LP: #1372952) [ Michał Sawicz ] * Move from Theme colour to direct UbuntuColors.orange for activity indicator and preview buttons [ Albert Astals ] * Use QImageReader not to load the image into memory twice (LP: #1384374) * Don't create the whole current scope delegates, just height * 3 (LP: #1384393, #1384374) * Make CroppedImageSizer async * Use ubuntu::connectivity::NetworkingStatus instead of QNetworkConfigurationManager * Compile with Qt 5.4 (LP: #1395636) [ Michael Zanetti ] * close previews and temp scopes on left edge/BFB (LP: #1391798) * make spread reversible (LP: #1368668, #1355284, #1368677) [ Andrea Cimitan ] * Different drag behaviour for not closable apps in spread (LP: #1368287) [ Daniel d'Andrada ] * Make UnityTestCase.touchFlick properly map event coordinates -- Ubuntu daily release Tue, 02 Dec 2014 09:26:49 +0000 unity8 (8.01+15.04.20141125.2-0ubuntu1) vivid; urgency=low [ Michael Zanetti ] * improve snapping after dragging * Make the launcher BFB rounded on one end (LP: #1382596) * disable swipeToClose while some snapping is happening (LP: #1378938) * increase threshold and avoid jumping in SpreadDelegate dragging (LP: #1352842, #1350803) [ Ying-Chun Liu ] * Notifications should be on right side when wide. (LP: 1379384) (LP: #1379384) [ Albert Astals ] * Fix qml warnings * Fix some qmluitests [ Lars Uebernickel ] * Use Icon instead of StatusIcon -- Ubuntu daily release Tue, 25 Nov 2014 13:54:47 +0000 unity8 (8.01+15.04.20141117-0ubuntu1) vivid; urgency=low [ josharenson ] * Return focus to the application after a tusted session overlay is closing. (LP: #1381292) [ Josh Arenson ] * Return focus to the application after a tusted session overlay is closing. (LP: #1381292) [ Albert Astals ] * Remove unused ResponsiveFlowView * Fix a few cmake warnings when running ./build.sh in a clean checkout [ Mirco Müller ] * Make sure non-square icons are not cropped. (LP: #1378417) [ Michael Terry ] * Drop the "EARLY ALPHA" scare label when running in testing mode. [ Michael Zanetti ] * unify Greeter and Lockscreen wallpaper again * hide quicklist when launcher hides (LP: #1387088) * Keep applications suspended while lockscreen is shown (LP: #1378126) * change spread background color to 111111 [ Omer Akram ] * show password when tapped on the 'Show password' label, not just the checkbox. (LP: #1389832) -- Ubuntu daily release Mon, 17 Nov 2014 13:48:33 +0000 unity8 (8.01+15.04.20141107.2-0ubuntu2) vivid; urgency=medium * No-change rebuild against Qt 5.3.2. -- Timo Jyrinki Sat, 08 Nov 2014 13:50:11 +0200 unity8 (8.01+15.04.20141107.2-0ubuntu1) vivid; urgency=low [ Michael Terry ] * Skip second SIM unlock dialog if user presses Emergency Call on first one (LP: #1387925) [ Michael Zanetti ] * fix positive/negative answer order on the new swipe notification (LP: #1358343) * Update PageHeader to use new SDK api * antialias surfaces when in spread (LP: #1351559) [ Albert Astals ] * Remove Hud [ Mirco Müller ] * Replace ComboButton in snap-decision notifications, used for additional actions (> 3 actions), with custom widget immune to accidental taps. (LP: #1384730) -- Ubuntu daily release Fri, 07 Nov 2014 14:33:02 +0000 unity8 (8.01+15.04.20141104-0ubuntu1) vivid; urgency=low [ Sebastien Bacher ] * Drop workaround, it's not needed and create issues for desktop-next (LP: #1387671) [ Albert Astals ] * Do not append integer to char * * Remove unused end() function * Update build.sh * Fix i18n [ Michael Zanetti ] * rework launcher quicklist visuals to fit new design (LP: #1368660) * Fix DBusVariant conversion for launcher emblems (LP: #1387261) * Fix desktop file encoding in launcher (LP: #1387083) * Add a hinting animation to indicate changes in the backend (LP: #1376707) [ Alberto Aguirre ] * Add audioRole to QtMultimedia mock * Add a plugin to take screenshots on vol up + vol down [ CI bot ] * Fix relative time formatter when using non-UTC timezone. (LP: #1378821) [ Leo Arias ] * Removed the tests for the alternate paths of the autopilot helpers. [ Nick Dedekind ] * Fix relative time formatter when using non-UTC timezone. (LP: #1378821) * Reset current item selection on deleted. (LP: #1378462) * Added timer to re-assert server value after indicator menu item activation. (LP: #1336715) [ Mirco Müller ] * Added dedicated swipe-to-act button for snap-decisions, which avoids accidental taps/button-presses. (LP: #1358343) [ Chris Gagnon ] * add missing unity-scope-click dependancy to unity8-autopilot package (LP: #1336276) [ Michael Terry ] * Don't lock phone if user tries to switch back to an active call. (LP: #1388156) [ Daniel d'Andrada ] * DirectionalDragArea: Update TODO comment in light of new events * TouchDispatcher: synthesize MouseButtonDblClick events [ Leonardo Arias Fonseca ] * Removed the tests for the alternate paths of the autopilot helpers. -- Ubuntu daily release Tue, 04 Nov 2014 12:56:08 +0000 unity8 (8.01+15.04.20141030-0ubuntu1) vivid; urgency=medium [ Michael Terry ] * Provide 'passphrase' as a field of Components.Lockscreen * Fix a race between Qml loading and DBus registration that caused problems when jenkins tried to unlock the phone. * Set domain explicitly for the Dialogs component because the welcome wizard wants to import it. (LP: #1381731) * When greeter or lockscreen has focus, show active call panel. (LP: #1378872) [ Ted Gould ] * Set the default OOM score for the dash (LP: #1379786) [ Michał Sawicz ] * Revert lp:~unity-team/unity8/flickables-speed-workaround to avoid risk in RTM. * Updated behaviour for zoomable image, workaround for sourcesize (LP: #1333187) [ Michael Frey ] * Added a check for Proximity to determine if we show the lock screen. (LP: #1378012) [ Ying-Chun Liu ] * Add non-interactive code into GenericScopeView. (LP: #1384441) [ Mirco Müller ] * Also use modal nature of snap-decision notifications when greeter/lockscreen is shown. This fixes LP: #1378827. (LP: #1378827) [ Michael Zanetti ] * Make the launcher update on dconf changes (LP: #1376707) * exit spread on background tap (LP: #1368261) * Use an index instead of a scope id in DashCommunicator (LP: #1376044) [ Andrea Cimitan ] * Updated behaviour for zoomable image, workaround for sourcesize (LP: #1333187) [ Daniel d'Andrada ] * Make TouchGate synthesize QMouseEvents for mouse-based target items * Don't specify a distanceThreshold as it conflicts with hintDisplacment -- Ubuntu daily release Thu, 30 Oct 2014 21:43:42 +0000 unity8 (8.00+15.04.20141030-0ubuntu1) vivid; urgency=low [ josharenson ] * Fix lp:1370240 by making stages interactive when a snap decision is dismissed. (LP: #1370240) [ Nick Dedekind ] * remove qml ownership confusion for caching unitymenumodels (LP: #1368856) * Implementation of expandable panel design (LP: #1368856) [ Albert Astals ] * CardAttributes: Specify column and row since the gridlayout gets confused sometimes (LP: #1381092) * Reset VerticalJournal until the cardTool settles (LP: #1381255) [ Mirco Müller ] * Added synchronous/confirmation notification support to unity8. (LP: #1232633) [ Michael Zanetti ] * Fix lp:1370240 by making stages interactive when a snap decision is dismissed. (LP: #1370240) * Drop all visual indication of "pinning" (LP: #1381054) [ Antti Kaijanmäki ] * Unlock all modems on boot. (LP: #1333121) -- Ubuntu daily release Thu, 30 Oct 2014 10:51:17 +0000 unity8 (8.00+14.10.20141013.2-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Don't show initial lockscreen during the edge demo. The user just set up their phone with a password, it's pointless to ask them again. (LP: #1358283) * Distinguish between incoming calls and other dialer-app opens. (LP: #1378218) (LP: #1378218) [ Andrea Cimitan ] * Fix flickable speed to be resolution independent, by subclassing components (LP: #1348557) [ Michał Sawicz ] * Fix the ShellWithPin test and some functionality. [ Albert Astals ] * Move Base.qml to DashCategoryBase * Fix first item positioning when m_clipItem->y() is not 0 (LP: #1251597) * Fix some small qml warnings [ Daniel d'Andrada ] * Add touch ownership logic on top of qt input handling -- Ubuntu daily release Mon, 13 Oct 2014 15:43:03 +0000 unity8 (8.00+14.10.20141009.4-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Rename datetime indicator in test [ Albert Astals ] * Close overview temp scope on show dash (LP: #1373819) * Enable QT_STRICT_ITERATORS * Make Base not clickable, since we don't use it in anywhere clickable (we only use it for Category delegates in the LVWPH) (LP: #1300709) * Hide preview if it was visible when going to a scope (LP: #1374548) * Remove contentScale variable [ Andrea Cimitan ] * Fix card implicitHeight when summary is declared, but its text is empty. Also fixes vertical journal height and clipping (LP: #1362160) * Redesign for pinned apps. Remove thindivider on top of ubuntu dash button (not needed anymore) (LP: #1377100) [ Ying-Chun Liu ] * Fix run_on_device.sh to let it run again. [ Nick Dedekind ] * Fixed indicator menu bindings to server toggle value broken by user interaction. (LP: #1336715) * Force rendering so we don't get stuck in "waitForRendering" loop in tests. [ Daniel d'Andrada ] * PhoneStage: focus the new topmost app after the current one closes itself (LP: #1375267) [ Michael Terry ] * Fix some security issues with the tablet greeter, which allowed the lockscreen to be bypassed. (LP: #1367715) (LP: #1367715) [ Michael Zanetti ] * scale down errorText label if necessary (LP: #1378848) -- Ubuntu daily release Thu, 09 Oct 2014 14:05:54 +0000 unity8 (8.00+14.10.20141008-0ubuntu1) utopic; urgency=low [ Michael Zanetti ] * Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Antti Kaijanmäki ] * Dual SIM pin unlocking. Hook up the UI to the backend. (LP: #1267135) [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Wed, 08 Oct 2014 09:41:32 +0000 unity8 (8.00+14.10.20141006-0ubuntu1) utopic; urgency=low [ Andrea Cimitan ] * Tweak card header to match the spec * Add preview image slideshow (LP: #1351537) [ Michał Sawicz ] * Cache more things in memory, so flicking scopes should be faster (LP: #1336724) * Tweak card header to match the spec * Save texture memory by limiting sourceSize (LP: #1338430) [ Ying-Chun Liu ] * Add attributes to Preview. (LP: #1282460) [ Albert Astals ] * Update pot * Cache more things in memory, so flicking scopes should be faster (LP: #1336724) * Save texture memory by limiting sourceSize (LP: #1338430) * Clip the settings list * Fix unlocking from the left again * Add wait_ makes tests more reliable [ Michael Zanetti ] * fix fading out the launcher instead of sliding it out on left-edge minimizing an app. * Make the DashCommunicator async and more flexible to handle a lifecycle-suspended dash (LP: #1339883) [ Michael Terry ] * Retry unlock-device script if it fails, as there is always a risk of a small race with boot-up. (LP: #1370644) * Add pull-to-refresh functionality to scopes. (LP: #1368336) [ CI bot ] * Resync trunk -- Ubuntu daily release Mon, 06 Oct 2014 08:03:23 +0000 unity8 (8.00+14.10.20140930.2-0ubuntu1) utopic; urgency=low [ Alexandros Frantzis ] * Remove stale trusted socket before starting unity8 from upstart (LP: #1371597) (LP: #1371597) [ CI bot ] * Resync trunk [ Andrea Cimitan ] * Move activity indicator on top of keyboard (LP: #1354519) [ Gerry Boland ] * Cleanup: Remove unused member and fix small syntax error in OrientationLock [ josharenson ] * Fix lp:1367894 by correcting how the minute value is calculated in the panel. (LP: #1367894) [ Nick Dedekind ] * Fixed DefaultIndicatorPage test. Fixed warnings from test. [ Ying-Chun Liu ] * Remove maxLineCount in preview. (LP: 1328513) (LP: #1328513) [ Michael Terry ] * Fix some code that accidentally landed in trunk before it got cleaned up. The current code just has some duplication to it that should be unified. * Implement latest visual designs for passphrase lockscreen. * Make it easier to use the Lockscreen component from the welcome wizard. * Limit how much memory we reserve for the greeter background image, allowing giant images to appear correctly. [ Daniel d'Andrada ] * Add gdbTestComponentName build targets -- Ubuntu daily release Tue, 30 Sep 2014 16:57:28 +0000 unity8 (8.00+14.10.20140926-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Nick Dedekind ] * Visual changes for indicator RTM polishing (LP: #1329289) [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Fri, 26 Sep 2014 19:12:39 +0000 unity8 (8.00+14.10.20140923-0ubuntu1) utopic; urgency=low [ Michael Zanetti ] * fix swiping away the launcher from the left edge * fix indicators AP test [ Florian Boucault ] * New Splash screen implementation that fakes real app [ Albert Astals ] * We need this in build-depends so that qmluitests pass in CI [ Daniel d'Andrada ] * New Splash screen implementation that fakes real app [ Michael Terry ] * Fix LC_ALL and test harder by making both manual runs of timeformattertest and the whole test suite use the same locale settings. [ CI bot ] * Resync trunk -- Ubuntu daily release Tue, 23 Sep 2014 09:26:18 +0000 unity8 (8.00+14.10.20140918.3-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Add -windowgeometry option to the Dash and drop any user-visible mentions of Dash * Dash: Fix issue when expanding a category and collapsing another one at the same time. [ Albert Astals ] * Dash: Fix issue when expanding a category and collapsing another one at the same time. * Make the categoryView invisible when we are in the preview mode (LP: #1341205) * Pixel pushing in the dash header (LP: #1365929) [ Ying-Chun Liu ] * Re-add restart button for power menu. (LP: 1358197) (LP: #1358197) [ Marcus Tomlinson ] * Don't show a preview if a null response is returned from scope.preview(result) [ Mirco Müller ] * Don't limit the number of text-lines for body-text. (LP: #1369438) [ Michael Zanetti ] * Don't hide launcher when nothing happens on long left edge swipes (LP: #1357333) * Rework LauncherBackend [ Michael Terry ] * When running qmluitests, make sure that they use LANGUAGE=C, fixing a test failure when running locally in the US. [ Daniel d'Andrada ] * Some ApplicationWindow test improvements [ Rodney Dawes ] * Check purchase state to determine if purchase was cancelled and hide progress. (LP: #1362622) -- Ubuntu daily release Thu, 18 Sep 2014 21:26:42 +0000 unity8 (8.00+14.10.20140918-0ubuntu1) utopic; urgency=low [ Michael Zanetti ] * Focus first app if there are already some running when we're starting up (LP: #1339883) [ Michał Sawicz ] * Don't play empty urls in Notification.qml [ Daniel d'Andrada ] * Improve tst_Shell * Build without any warnings * Make tst_Card work from outside the source tree (LP:1359201) (LP: #1359201) -- Ubuntu daily release Thu, 18 Sep 2014 09:44:06 +0000 unity8 (8.00+14.10.20140910.1-0ubuntu1) utopic; urgency=low [ Pete Woods ] * Disable OEM and Click scopes when system scopes are disabled [ CI bot ] * Resync trunk [ Pawel Stolowski ] * Set UNITY_SCOPES_NO_FAVORITES environment variable to make scopes plugin ignore favorite scopes and fix basic functionality of unity- scope-tool. -- Ubuntu daily release Wed, 10 Sep 2014 08:53:57 +0000 unity8 (8.00+14.10.20140908.1-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Use a single white pixel instead of the heavier checkers image. * Add support to unlock-device for the new adbd coming down the pipeline. Also fix autopilot tests and run scripts for that. * Make LVWPH non interactive while on header animation * Improve references to scope/scopeStyle in PreviewListView and PageHeader, add tests. [ Nick Dedekind ] * Support for nested prompt session. (LP: #1358388) [ Albert Astals ] * Remove unused hasAttributes variable * Disable dash overview if in temp scope preview * Block mouse events under scope overview bottombar (LP: #1362206) * Fix regression in focus handling due to SDK change * Fix warning 'Background.qml:81:21: Unable to assign bool to QUrl' * Fix launcher internationalization * Make swipe and home button press in the launcher dismiss the overview * GSV: Use proper variable since altnav renames * Fix some "Cannot read property 'luminance' of null" warnings * Make LVWPH non interactive while on header animation [ Mirco Müller ] * Implemented the needed visual updates on notifications requested by Design for RTM. (LP: #1348092) [ Michael Terry ] * Don't show greeter when screen turns off during a call, even if proximity sensor isn't active. (LP: #1347001) * Add support to unlock-device for the new adbd coming down the pipeline. Also fix autopilot tests and run scripts for that. [ Michael Zanetti ] * open the application when clicking on the title entry in the quicklist (LP: #1336380) * Don't animate x while dragging apps from the left edge (LP: #1360105) [ Diego Sarmentero ] * Reset button state on cancel (LP: #1362622) -- Ubuntu daily release Mon, 08 Sep 2014 14:16:42 +0000 unity8 (8.00+14.10.20140903.1-0ubuntu1) utopic; urgency=low [ Nick Dedekind ] * Support for nested prompt session. (LP: #1358388) -- Ubuntu daily release Wed, 03 Sep 2014 07:58:49 +0000 unity8 (8.00+14.10.20140828.1-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Reverse default for the user option "allow launcher/panel in greeter when locked." And allow that property to be controlled by an AccountsService property. (LP: #1358340) (LP: #1358340) * With recent password support, we want to be able to unlock the device even with a password set. And we need to be able to do this once the new adbd lands. So I've added a DBus command to hide the greeter. This should be secure because all apps are constrained and if you're on the local session bus unconstrained, you already have access to anything you want. -- Ubuntu daily release Thu, 28 Aug 2014 20:06:41 +0000 unity8 (8.00+14.10.20140827.2-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Implement scope header customization options * Don't ignore empty attributes in CardAttributes.qml and improve its encapsulation (LP: #1355901) * Add support for preview button color customization. Deprecate support for action icons. * Add table preview widget * Make "See Less" get stuck at the bottom of the view * Support alternative navigation in the dash. * Add scope settings UI * Add scope favoriting support * Passcode, not PIN (LP: #1361114) [ Jussi Pakkanen ] * Use nullptr instead of NULL. [ Albert Astals ] * Add table preview widget * Make "See Less" get stuck at the bottom of the view * Support alternative navigation in the dash. * Make the PageHeaderLabelTest pass under valgrind [ Benjamin Zeller ] * Add support for scope:// url in the dash (LP: #1361349) [ Marcus Tomlinson ] * Handle the openScope signal in "tempScopeItem" (ScopesOverview.qml) as is done with "scopeItem" (Dash.qml) (LP: #1356410) [ Daniel d'Andrada ] * Make "See Less" get stuck at the bottom of the view [ Andrea Cimitan ] * Fix right padding on overlay card * Add scope settings UI [ Michael Zanetti ] * use a smaller asset for the app's dropshadow (LP: #1359157) -- Ubuntu daily release Wed, 27 Aug 2014 15:37:05 +0000 unity8 (8.00+14.10.20140825.3-0ubuntu1) utopic; urgency=low [ Daniel d'Andrada ] * SpreadDelegate - properly transition between splash screen, surface and screenshot [ Michał Sawicz ] * Rename Ubuntu.Connectivity to Unity.Connectivity to avoid name clash -- Ubuntu daily release Mon, 25 Aug 2014 13:10:57 +0000 unity8 (8.00+14.10.20140822-0ubuntu1) utopic; urgency=low [ Albert Astals ] * More stable dash overview tests * PreviewExpandable: "widgets" is a model, not an array [ Alberto Aguirre ] * Proxy inactivity timeout values from gsettings into Unity.Screen (LP: #1230345) [ Gerry Boland ] * Cancel open PAM interactions on shutdown - fixes hang on logout on desktop (LP: #1353041) [ Diego Sarmentero ] * Show progress bar on payment button click The payment process has a small delay before the UI comes up which might cause confusion. Show a progress bar with unknown value to indicate activity. (LP: #1354139) [ Mirco Müller ] * Made notification qml-test pass again by using Component.onCompleted instead of onOpacityChanged for the time being. [ Michael Zanetti ] * Implement new lockscreen designs [ Michael Terry ] * Show the SIM unlock dialog immediately after booting, and enable its emergency call button. * Always keep indicator/launcher locked state in sync with whether the user is authenticated. (LP:# 1357230) (LP: #1357230) * Allow logging into a desktop or tablet session again, by properly dismissing old PAM conversations. (LP: #1350878) In a desktop or tablet, we were accidentally starting two PAM conversations in sequence on startup. Which is a small bug; it shouldn't normally be a problem, since each new PAM conversation should kill the old one.But the way we were killing the old one was subject to a thread race condition. See, a PAM conversation thread won't exit until all its prompts are answered. And what we do when we kill a PAM conversation is to answer all prompts with empty strings.But it's possible that when we want to kill a PAM conversation that it hasn't actually gotten to the point of prompting us yet. And when those prompts do come through, we were treating them as prompts for the new PAM conversation.So I've changed the PAM conversation logic to include a pam_handle and compare the handle with the current handle when being prompted. If it's an old handle, we just dismiss the prompt with an empty string response.Oh, and I fixed the bug that caused two prompts on startup in the first place. (But we still need the above logic anyway, for when you switch users quickly.) (LP: #1350878) [ Martin Pitt ] * Mark for using language packs. -- Ubuntu daily release Fri, 22 Aug 2014 09:29:41 +0000 unity8 (8.00+14.10.20140820-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Nick Dedekind ] * Fixed CachedUnityMenuModel destruction unhinging indicators. (LP: #1328646) [ Mirco Müller ] * Temporarily disable any opacity-animation for notifications to unblock the train due to LP: 1354406. (LP: #1354406) -- Ubuntu daily release Wed, 20 Aug 2014 20:03:55 +0000 unity8 (8.00+14.10.20140817-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Michał Sawicz ] * Fix dash overview test and prevent crash in mock ApplicationInfo's d'tor. tryCompareFunction didn't work because .item threw. -- Ubuntu daily release Sun, 17 Aug 2014 00:37:35 +0000 unity8 (8.00+14.10.20140815.1-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Bring dialer to front on incoming call even when device is locked (LP: #1354532) [ CI bot ] * Resync trunk [ Michał Sawicz ] * Use palette's baseText for text colour in dash. * Update qmltypes definitions * Move PageHeader out of qml/Components into qml/Dash * Reshuffle and update dependencies * Fix cardtool test and make card creator output debugging info on errors. * Support previews for scopes in overview and hook up preview processing to activity indicator. * Fix notifications indicator title * Fix horizontal list activation and add test for it. [ Ying-Chun Liu ] * Add button colors and i18n for power off dialog. (LP: #1354506) [ Mirco Müller ] * Force plain-text rendering for summary- and body-text. (LP: #1335787) -- Ubuntu daily release Fri, 15 Aug 2014 17:38:07 +0000 unity8 (8.00+14.10.20140814.1-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Add --lightdm= argument to ./run.sh that lets developers choose which lightdm backend to use. Stop letting a user that is immediately denied via PAM into the shell by fixing some assumptions that a user which was not prompted was successfully authenticated. This is not a common situation, you'd have to manually change your PAM config. Fix a small console warning . * Make wrong-password handling much nicer by showing a pretty spinner while we wait for PAM, by improving the prompt text to match designs, by forcing the user to wait five seconds after every five failed attemps, and by supporting (but not yet enabling) an opt-in "factory-reset your phone after X failed attemps" feature. [ Michael Zanetti ] * bring back network caching in dash (LP: #1355729) [ Michał Sawicz ] * Add --lightdm= argument to ./run.sh that lets developers choose which lightdm backend to use. Stop letting a user that is immediately denied via PAM into the shell by fixing some assumptions that a user which was not prompted was successfully authenticated. This is not a common situation, you'd have to manually change your PAM config. Fix a small console warning . * Fix anchor in PreviewListView.qml. * Make wrong-password handling much nicer by showing a pretty spinner while we wait for PAM, by improving the prompt text to match designs, by forcing the user to wait five seconds after every five failed attemps, and by supporting (but not yet enabling) an opt-in "factory-reset your phone after X failed attemps" feature. * Add new horizontal list category layout. (LP: #1352226) * Fix qml tests - loader around PageHeader, more retries for selecting a scope and undefined attributes in mock overview scope. [ Leo Arias ] * Added autopilot helpers and tests for the launcher and dash icon. * Added an autopilot helper to click a scope item. * Added an autopilot test for focusing an app clicking the icon on the launcher. [ Mirco Müller ] * Allow ENTER/RETURN in a TextField to accept a snap-decision notification. (LP: #1305885) -- Ubuntu daily release Thu, 14 Aug 2014 01:29:55 +0000 unity8 (8.00+14.10.20140811-0ubuntu1) utopic; urgency=low [ Andrea Cimitan ] * Add emblem support in dash cards. [ Michael Terry ] * Fix a variety of design nits with the current lockscreen: * disable indicators and launcher when locked * when reversing the direction of a greeter flick, treat it as a cancel * don't animate dots when changing the infographic data source * make cancelling a login nicer: * reduce the delay before greeter starts animating * show the greeter from the same side of the screen that it hid to * don't re- animate the infographic (LP: #1351027) [ Stephen M. Webb ] * enables the unity8 upstart job for desktop sessions (LP: #1353041) [ Albert Astals ] * Dash Overview (LP: #1317683) * GenericScopeView: On click only activate scope:// uris and clickscope items The rest of clicks result in a preview, also scope:// uris don't get a preview * Pass the scope search hint up to the search line -- Ubuntu daily release Mon, 11 Aug 2014 19:03:41 +0000 unity8 (8.00+14.10.20140808-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Nick Dedekind ] * Added application prompt surfaces to allow prompting application which have not yet created a surface. -- Ubuntu daily release Fri, 08 Aug 2014 12:15:05 +0000 unity8 (8.00+14.10.20140806.1-0ubuntu1) utopic; urgency=low [ Michal Hruby ] * Work with the scopes-v4 branch + departments->navigation renaming [ Michał Sawicz ] * Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards * Use the correct API in PageHeader. (LP: #1353048) * Refactor dash activity indicator. (LP: #1351539) [ Albert Astals ] * Dash Departments fixes Update maxHeight manually since it depends on the position of the item and its parents and it can't know when the binding has to be updated Make parent stuff non interactive when the department list is shown * PageHeader: when on search clip y-coordinates otherwise the background spills out when on search (LP: #1350398) * Dash: Implement OverlayColor support in Cards * Hardcode art shape size for click scope local and predefined categories While at it, drop the fillmode of cards * Make test_departments test more stable There's various DashDepartments on the dash, make sure we're working over the one that is on screen, otherwise clicks don't end up where they should * Work with the scopes-v4 branch + departments->navigation renaming * Fixes for dash as app Load i18n catalog Process command line options Add the posibility to have a mouse touch adaptor (LP: #1353351) * Implement the Expandable Preview Widget Now TextSummary is not expandable by itself anymore, you have to use it inside an Expandable to get the behaviour * Add test prefix to xml output, seems CI needs it [ Antti Kaijanmäki ] * Indicators: Adds new ModemInfoItem to be used with indicator-network (LP: #1329204) [ Michael Terry ] * When the edge demo is running, don't show the greeter if the screen is turned off. This avoids an odd interaction where parts of the greeter are disabled but the edge demo isn't visible until you slide the greeter away. (LP: #1283425) * Don't hardcode the phablet password in our testing script. [ Ying-Chun Liu ] * Add divider dots. [ Mirco Müller ] * Make sure the TextField of a snap-decision notification has the active focus upon creation, thus the osk shows up right away. (LP: #1346867) [ Andrea Cimitan ] * Add touchdown effect to dash cards. * Import Ubuntu.Components for preview image gallery to pick up default flicking speeds. -- Ubuntu daily release Wed, 06 Aug 2014 19:40:05 +0000 unity8 (8.00+14.10.20140805-0ubuntu1) utopic; urgency=low [ Michael Zanetti ] * Split the dash from the shell into a separate app (LP: #1232687) [ Leo Arias ] * Update the autopilot tests to work with the new dash app. [ Daniel d'Andrada ] * Split the dash from the shell into a separate app (LP: #1232687) -- Ubuntu daily release Tue, 05 Aug 2014 12:06:31 +0000 unity8 (8.00+14.10.20140731.1-0ubuntu1) utopic; urgency=low [ Gerry Boland ] * Fix the run.sh script - pretend to be running with qtmir and emit SIGSTOP at the right time [ Ying-Chun Liu ] * Implement Attribute UI. (LP: #1282460) [ Albert Astals ] * Hide search history popup as soon as you start typing As discussed with Mike and Saviq * Compile with for scopes-v3 unity-api * PageHeader: Unfocus search field when search entry is selected * Show search field if the search query changes * Test: Add a condition for art.height being > 0 means stuff has already been layouted a bit without it it can happen that we get 0 for everything at startup and tests still pass * Remove leftover in test of an old headerless implementation [ Michael Zanetti ] * Drop Recent apps category from Dash (LP: #1281092) * update launcher count emblems to match new spec (LP: #1338984) [ Bill Filler ] * disable predictive text for dash search field (LP: #1340409) [ CI bot ] * Resync trunk [ Antti Kaijanmäki ] * DefaultIndicatorPage: use Loader status to determine the visible property. (LP: #1350555) -- Ubuntu daily release Thu, 31 Jul 2014 16:51:01 +0000 unity8 (8.00+14.10.20140729.1-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Check user's pin/password using PAM, instead of a plaintext keyfile. New build dependency: libpam0g-dev for phone unlock with PAM (LP: #1234983) -- Ubuntu daily release Tue, 29 Jul 2014 23:36:30 +0000 unity8 (8.00+14.10.20140729-0ubuntu1) utopic; urgency=medium [ Gerry Boland ] [ Daniel d'Andrada ] * Re-architecture unity8 to use the QtMirCompositor library so that the Qt scenegraph renderer is used as the Mir compositor, and application surfaces are added to the QML scene as items. [ Michael Zanetti ] * Port phone right-edge spread code to use QtCompositor * Add right-edge spread animation for tablet [ Ubuntu daily release ] * New rebuild forced -- Ubuntu daily release Tue, 29 Jul 2014 15:07:32 +0000 unity8 (7.90+14.10.20140725-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Michał Sawicz ] * Fix the ap test for applications. [ Albert Astals ] * Use deleteLater instead of a direct delete We are seeing a crash in QQuickWindowPrivate::polishItems because LVWPH is deleting items to polish from it's updatePolish which means the set in QQuickWindowPrivate::polishItems may end up with some yet-to- process-but-now-deleted items. Switching to deleteLater fixes this -- Ubuntu daily release Fri, 25 Jul 2014 10:47:34 +0000 unity8 (7.90+14.10.20140724.1-0ubuntu1) utopic; urgency=low [ Michael Zanetti ] * properly parent launcher items (LP: #1347902) [ Michał Sawicz ] * Move the PyDev project files to the root, supporting .py scripts outside of tests/autopilot. Add Autopilot Run and List launch configurations to easily support debugging in Eclipse. Use add_unity8_mock macro in the Telephony plugin. * Drop FilterGrid and refactor height animations in GenericScopeView. Also implement forced category expansion. (LP: #1326470) * Move expansion button from section header to category footer. (LP: #1261300) * Fix expect-sigstop enviroment variable name. (LP: #1346819) * Make headerless categories easier Instead of having no header category (which is a bit confusing since the LVWPH code was designed so that when a category has no header it is because it shares the category with the previous one) what we have for headerless categories is a header of height 0, this way everything works as it should and results in cleaner code in the LVWPH and in GenericScopeView * Add support for header links. * Add dash PageHeader styling. [ Albert Astals ] * Make headerless categories easier Instead of having no header category (which is a bit confusing since the LVWPH code was designed so that when a category has no header it is because it shares the category with the previous one) what we have for headerless categories is a header of height 0, this way everything works as it should and results in cleaner code in the LVWPH and in GenericScopeView -- Ubuntu daily release Thu, 24 Jul 2014 20:41:29 +0000 unity8 (7.90+14.10.20140723.4-0ubuntu1) utopic; urgency=low [ thomas-voss ] * Explicitly select gcc version. -- Ubuntu daily release Wed, 23 Jul 2014 15:32:41 +0000 unity8 (7.90+14.10.20140721.1-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Allow running the dialer-app in emergency mode when the screen is locked. [ Michał Sawicz ] * Add missing nameOwner property to mock UnityMenuModel. [ Albert Astals ] * Fix name, There's nothing called pageHeader in this file -- Ubuntu daily release Mon, 21 Jul 2014 14:57:08 +0000 unity8 (7.90+14.10.20140717.3-0ubuntu1) utopic; urgency=low [ Nick Dedekind ] * Added environment variable to upstart conf for mir trusted socket * Removed indicator menu dismissal on menu activation (LP: #1337771) -- Ubuntu daily release Thu, 17 Jul 2014 16:35:52 +0000 unity8 (7.90+14.10.20140717.1-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Only generate .qmltypes files manually, no need to do it build-time. It didn't work when cross-compiling either, and required builders to have otherwise unnecessary environment. * Fix CardCreator test. It got broken with a merge that got landed along side of it. [ Ying-Chun Liu ] * Add reboot/shutdown (LP: #1234062) [ Albert Astals ] * Make the departments test more stable [ Mirco Müller ] * Fixes gap at top of sim-unlock/fullscreen notification (point 1.), fixes blocking overlay if underlying UnityMenuModel vanishes from DBus (point 2.). The third bullet-point of the bug-report, lockup of shell-UI, could not be reproduced. (LP: #1308011) [ Michael Terry ] * Expose a new greeter DBus property, IsActive, which tells apps and indicators when the integrated-greeter screen is active. Useful for switching UI modes when the screen is locked. * Allow the session to bring up the greeter/lockscreen over DBus. The emergency dialer will need this support in order to cancel bringing it up. [ Michael Zanetti ] * Fixes gap at top of sim-unlock/fullscreen notification (point 1.), fixes blocking overlay if underlying UnityMenuModel vanishes from DBus (point 2.). The third bullet-point of the bug-report, lockup of shell-UI, could not be reproduced. (LP: #1308011) -- Ubuntu daily release Thu, 17 Jul 2014 09:38:20 +0000 unity8 (7.90+14.10.20140714-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Activate all results in click scope by default. (LP: #1341262) [ Mirco Müller ] * Added support for utilization of the ComboButton SDK-element for snap-decision notifications with many actions. -- Ubuntu daily release Mon, 14 Jul 2014 18:20:25 +0000 unity8 (7.90+14.10.20140709.2-0ubuntu1) utopic; urgency=low [ Michal Hruby ] * Fix FTBFS when using latest unity-api. [ Michał Sawicz ] * Refactor carousel item activation. * Refactor ScopeItem into GenericScopeView. * Add initial support for scope customizations. * Make rating stars in PreviewReviewDisplay.qml non-interactive. (LP: #1337508) [ Nick Dedekind ] * Added active call hint A hint is displayed in the indicator panel when an call is active on the Telephony Serivce [ Albert Astals ] * We need to boostrap height also when we have 1 item ^_^ (LP: #1337408) * Add initial support for scope customizations. * CardCreator: Give a correct implicitHeight if we only have art The hasSubtitle change is really unrelated and not needed here, just sneaking it in to not create yet another review. (LP: #1330899) * Fake Scopes Plugin: Register PreviewModelInterface [ Michael Zanetti ] * make the launcher's drag'n'drop indicator more prominent (LP: #1332042) * make launcher items live having them non-live is not really required and reveals an issue in combination with UbuntuShape (LP: #1302761) * Fade out launcher in place instead of moving it to the left on long left edge swipes. (LP: #1332096) * update launcher icon glow as requested by design (LP: #1336725) * update header in dash to use the new header from the SDK (LP: #1335491) * fix testPreview with larger GRID_UNIT_PX values * clip the corner of pinned icons in the launcher as per new design * update launcher background according to latest design (LP: #1336314) * Update Launcher's home button design according to new spec. (LP: #1329331) [ CI bot ] * make launcher items live having them non-live is not really required and reveals an issue in combination with UbuntuShape (LP: #1302761) -- Ubuntu daily release Wed, 09 Jul 2014 19:46:11 +0000 unity8 (7.90+14.10.20140707-0ubuntu1) utopic; urgency=low [ Nick Dedekind ] * Added support for TransferMenu -- Ubuntu daily release Mon, 07 Jul 2014 11:40:59 +0000 unity8 (7.90+14.10.20140703.1-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Nick Dedekind ] * Moved [Message]MenuItemFacotory from Unity.Indicators plugin to qml folder. [ Albert Astals ] * EasingCurve: Initialize members * Fix valgrind warning by not emitting reset on model destructor That won't be supported until Qt 5.4 More info at https://bugreports.qt- project.org/browse/QTBUG-39780 Warning was ==16693== Invalid read of size 8 ==16693== at 0x72B19A0: QQmlContext::isValid() const (qqmlcontext.cpp:231) ==16693== by 0x736C82B: QQmlDelegateModelPrivate::emitChanges() (qqmldelegatemodel.cpp:1412) ==16693== by 0x7372AE6: QQmlDelegateModel::_q_modelReset() (qqmldelegatemodel.cpp:1463) ==16693== by 0x7397224: QQmlDelegateModel::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) (moc_qqmldelegatemodel_p.cpp:196) ==16693== by 0x739769E: QQmlDelegateModel::qt_metacall(QMetaObject::Call, int, void**) (moc_qqmldelegatemodel_p.cpp:292) ==16693== by 0x66379CC: QMetaObject::activate(QObject*, int, int, void**) (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x65AEEFD: QAbstractItemModel::endResetModel() (in /usr/lib/x86_64- linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x23461EFD: FakeIndicatorsModel::unload() (fakeindicatorsmodel.cpp:53) ==16693== by 0x23461E13: FakeIndicatorsModel::~FakeIndicatorsModel() (fakeindicatorsmodel.cpp:34) ==16693== by 0x2345C073: QQmlPrivate::QQmlElement::~QQmlElement() (in /home/tsdgeos_work/phablet/unity8/investigate_test_shell_crash/build dir/tests/mocks/Unity/Indicators/libIndicatorsFakeQml.so) ==16693== by 0x2345C0A3: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== Address 0x1862d448 is 8 bytes inside a block of size 16 free'd ==16693== at 0x4C2C2BC: operator delete(void*) (vg_replace_malloc.c:503) ==16693== by 0x72B21B8: QQmlContextData::destroy() (qqmlcontext.cpp:647) ==16693== by 0x7293458: QQmlPrivate::qdeclarativeelement_destructor(QObject*) (qqmlengine.cpp:612) ==16693== by 0x6C0CADD: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:105) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject() (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693== by 0x6C0CAE5: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) ==16693== by 0x663636B: QObjectPrivate::deleteChildren() (in /usr/lib/x86_64-linux- gnu/libQt5Core.so.5.3.0) ==16693== by 0x663F0EB: QObject::~QObject() (in /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.3.0) ==16693== by 0x6BF64B5: QQuickItem::~QQuickItem() (qquickitem.cpp:2064) ==16693== by 0x6C0CAE5: QQmlPrivate::QQmlElement::~QQmlElement() (qqmlprivate.h:106) (LP: #1332598) [ Michael Zanetti ] * drop launcher item spacing (LP: #1332022) * change wording in launcher quicklist (LP: #1332035) [ Alejandro J. Cura ] * Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Rodney Dawes ] * Initial code for a payment button widget, to handle purchasing apps from the click scope. [ Renato Araujo Oliveira Filho ] * Create IndicatorsLight.qml component used to control indicator led. A blue led will pulse if the message indicator is blue and screen is off. -- Ubuntu daily release Thu, 03 Jul 2014 14:47:46 +0000 unity8 (7.90+14.10.20140701.2-0ubuntu2) utopic; urgency=medium * debian/control: list qtdeclarative5-ubuntu-ui-toolkit-plugin-gles as an alternative choice, since provides are not versionned, should restore installability on amd64 and i386 -- Sebastien Bacher Thu, 03 Jul 2014 13:26:38 +0200 unity8 (7.90+14.10.20140701.2-0ubuntu1) utopic; urgency=medium [ Michał Sawicz ] * Adapt to suru theme. -- Ubuntu daily release Tue, 01 Jul 2014 15:10:35 +0000 unity8 (7.89+14.10.20140627-0ubuntu1) utopic; urgency=low [ Michael Terry ] * Fix path in launcher mock after moving our mock icons, to avoid a lot of "icon not found" warnings during qmluitests. * Fix the testMultiGreeter qmluitest. Incoming method variables are apparently read-only in Qt5.3. (LP: #1332488) [ CI bot ] * Resync trunk [ Michał Sawicz ] * Adapt scope mock to new api and quiet unused variable warnings. * Fix dynamic overlay height. (LP: #1334879) * Don't center items in CardVerticalJournal, kind of beats the purpose... Also don't bind unnecessarily. [ Ying-Chun Liu ] * Fix LP:1330957 Fix some failed test cases. (LP: #1330957) [ Albert Astals ] * Don't seem to need this waitForRendering And makes test fail in 5.3 -- Ubuntu daily release Fri, 27 Jun 2014 08:47:58 +0000 unity8 (7.89+14.10.20140624.1-0ubuntu1) utopic; urgency=low [ Alberto Aguirre ] * Update Powerd plugin and Shell.qml to accommodate changes in the display power state notification. -- Ubuntu daily release Tue, 24 Jun 2014 17:11:08 +0000 unity8 (7.89+14.10.20140624-0ubuntu1) utopic; urgency=low [ Ying-Chun Liu ] * Add logout support. Reviewed by: Daniel d'Andrada (LP: #1302213) -- Ubuntu daily release Tue, 24 Jun 2014 08:17:09 +0000 unity8 (7.89+14.10.20140623.1-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Make so that fixedArtShapeSize actually fixes artShapeSize. [ Albert Astals ] * Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467) * Make so that fixedArtShapeSize actually fixes artShapeSize. [ Mirco Müller ] * Added the frontend-part of sound-hint support for notifications with updated QML-tests. -- Ubuntu daily release Mon, 23 Jun 2014 11:17:12 +0000 unity8 (7.89+14.10.20140619.3-0ubuntu1) utopic; urgency=low * New rebuild forced -- Ubuntu daily release Thu, 19 Jun 2014 16:02:41 +0000 unity8 (7.89+14.10.20140619.2-0ubuntu1) utopic; urgency=low [ Albert Astals ] * Departments support (LP: #1320847) -- Ubuntu daily release Thu, 19 Jun 2014 11:17:40 +0000 unity8 (7.89+14.10.20140616.1-0ubuntu1) utopic; urgency=low [ Pawel Stolowski ] * Extend the hack for click scope categories with the upcoming 'store' category: single-tap on results from the 'store' category should activate them, instead of requesting a preview. (LP: #1326292) [ Albert Astals ] * Drop the " Preview" suffix from Preview title As requested in https://bugs.launchpad.net/unity8/+bug/1316671 (LP: #1316671) -- Ubuntu daily release Mon, 16 Jun 2014 14:43:01 +0000 unity8 (7.89+14.10.20140613-0ubuntu1) utopic; urgency=medium [ Michael Terry ] * Revert split greeter for now. We will bring it back as an option for Desktop, but use a big hammer revert right now to get Touch back in shape. [ CI bot ] * Fix build problems. Reviewed by: Michael Terry (LP: #1328850) -- Ubuntu daily release Fri, 13 Jun 2014 08:30:48 +0000 unity8 (7.88+14.10.20140606-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Make lockscreen buttons translatable. [ Albert Astals ] * Correctly mark these functions as overrides * Remove connections to non existant signal * Better test name * Improvements for headerless categories LVPWH: No section name -> no header LVPWH: New hasSectionHeader context property for delegates GSV: Add topMargin if no hasSectionHeader (LP: #1326415) * Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid work again [ Michael Zanetti ] * Don't crash when we get an invalid app from ApplicationManager (LP: #1309162) [ Andrea Cimitan ] * Workaround for lp1324159 (LP: #1322233, #1324159) [ CI bot ] * Resync trunk [ Florian Boucault ] * Application startup: changed splash rectangle to be black instead of white and added a neat little animation. (LP: #1124265) -- Ubuntu daily release Fri, 06 Jun 2014 11:38:53 +0000 unity8 (7.88+14.10.20140603.1-0ubuntu1) utopic; urgency=medium [ Michael Terry ] * Bump version so ubuntu-touch-session can reference this one -- Ubuntu daily release Tue, 03 Jun 2014 20:31:00 +0000 unity8 (7.87+14.10.20140603.1-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Michał Sawicz ] * Move env setup past session init in greeter wrapper. (LP: #1325882) -- Ubuntu daily release Tue, 03 Jun 2014 10:33:11 +0000 unity8 (7.87+14.10.20140530.1-0ubuntu3) utopic; urgency=medium * no change rebuild -- Oliver Grawert Mon, 02 Jun 2014 16:19:10 +0200 unity8 (7.87+14.10.20140530.1-0ubuntu2) utopic; urgency=medium * drop dbus-x11 dependency of unity8-greeter, it makes us end up with multiple session dbus daemons which breaks many AP tests in the lab -- Oliver Grawert Mon, 02 Jun 2014 14:50:59 +0200 unity8 (7.87+14.10.20140530.1-0ubuntu1) utopic; urgency=medium [ Michael Terry ] * Bump version for Breaks due to unity8-greeter * In split mode, determine whether the application identifiers in AccountsService are click packages or not, so we know the correct url prefix to use. * Start logrotate in the greeter's session. -- Ubuntu daily release Fri, 30 May 2014 09:29:15 +0000 unity8 (7.86+14.10.20140527-0ubuntu1) utopic; urgency=low [ Andrea Cimitan ] * Passes to make tryCommand -qmljsdebugger=port:3768 to enable debug/profiling test apps * Fixes carousel shadow [ Michał Sawicz ] * Use dpkg-architecture, not gcc, to determine the machine triplet. [ Ying-Chun Liu ] * Fix ZoomableImage test failure. (LP: #1317254) [ Albert Astals ] * We don't need iconutils in this mock * Don't reserve space for mascot if no mascot is specified (LP: #1319343) * CardHeader is no more, remove stale line in CMakeLists.txt * GenericScopeViewTest: Wait a bit more Otherwise sometimes we end getting up the wrong delegate (maybe one that will be garbage collected?) (LP: #1322279) * Fix crash in organicgridtest [ Daniel d'Andrada ] * Remove Shell's underlay background image as it cannot be seen anymore Now that the Dash has its own, opaque, background, the underlay's background image can no longer be seen. So it's just a waste of resources to have it. [ Michael Terry ] * Use the same animation when dismissing a greeter slide from the launcher as from a normal greeter drag. (LP: #1316513) [ Michael Zanetti ] * enhance lockscreen add a retry indication label (e.g. 3 attempts left). add an additional label (e.g. phone number for multi sim). add a infoPopup (e.g. to display a warning for last retry). add min and max limit values. add tests for the above (LP: #1302050) -- Ubuntu daily release Tue, 27 May 2014 07:47:11 +0000 unity8 (7.86+14.10.20140522-0ubuntu1) utopic; urgency=low [ Albert Astals ] * Use Interface classes from unity-api -- Ubuntu daily release Thu, 22 May 2014 17:59:23 +0000 unity8 (7.86+14.10.20140519-0ubuntu1) utopic; urgency=low [ Ubuntu daily release ] * New rebuild forced [ Albert Astals ] * Use the new displayMargin feature Also port our DashViews to use same naming and behaviour + update tests -- Ubuntu daily release Mon, 19 May 2014 07:35:51 +0000 unity8 (7.86+14.10.20140516.5-0ubuntu1) utopic; urgency=low [ Michal Hruby ] * Updated scope tool to create proper config files after recent libunity-scopes-api changes. [ Michał Sawicz ] * Refactor export_qmlfiles and export_qmlplugins to be more generic and clean up installed mocks. [ Albert Astals ] * Remove empty dirs * Set the tabbarmodel index as we do on real code It works better :D (LP: #1317255) [ Thomi Richards ] * Use new import location for ProcessSearchError in process_helpers script. [ Andrea Cimitan ] * Adds shadow for the carousel [ Daniel d'Andrada ] * Remove Revealer component It's not used anywhere anymore. It's been replaced by DragHandle. [ Andy Doan ] * unlock_device: support more complex reboot/wait cycles Currently this script only allows you to override how to "wait" on the device. This changes the logic to also support how you go about rebooting the device. This is handy for the ubuntu-emulator because adb-reboot is not currently supported. However, we also have a more sophisticated, fool-proof way we reboot/wait in the CI lab that would be nice to take advantage of: http://bazaar.launchpad.net/~ubuntu-test-case-dev/ubuntu-test- cases/touch/view/head:/scripts/reboot-and-wait -- Ubuntu daily release Fri, 16 May 2014 18:46:32 +0000 unity8 (7.86+14.10.20140516.2-0ubuntu1) utopic; urgency=low [ CI bot ] * Resync trunk [ Michael Zanetti ] * support appid:// entries in gsettings schema and make findDesktopFile work with short-appid (LP: #1239750) -- Ubuntu daily release Fri, 16 May 2014 12:32:40 +0000 unity8 (7.86+14.10.20140514.1-0ubuntu1) utopic; urgency=low [ Antti Kaijanmäki ] * Indicators/RootActionState: use g_variant_iter_loop to extract icons. -- Ubuntu daily release Wed, 14 May 2014 11:43:55 +0000 unity8 (7.86+14.10.20140513-0ubuntu1) utopic; urgency=low [ Andrea Cimitan ] * Improve padding in Text preview widget. (LP: #1316683) [ CI bot ] * Resync trunk [ Nick Dedekind ] * Removed binding loop from Unity.Indicators.MenuContentActivator Change handler for QMLListProperty used by MenuContent.qml: menuActivator.content[index].active If we're already asking for the index, we know it exists already. No need to send a changeNotification on an implied creation. [ Josh Arenson ] * Implements usage-style documentation for unity8 executable. Fixes lp:1269282 (LP: #1269282) [ Albert Astals ] * Create specialized Card code in Javascript instead of having various copied&pasted files (LP: #1297197) -- Ubuntu daily release Tue, 13 May 2014 08:34:02 +0000 unity8 (7.86+14.10.20140507.3-0ubuntu1) utopic; urgency=low [ Michał Sawicz ] * Remove HUD from the bottom edge. Again. -- Ubuntu daily release Wed, 07 May 2014 11:14:30 +0000 unity8 (7.86+14.10.20140505-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Provide a dbus interface for setting the count and countVisible properties. (LP: #1301400) [ Michał Sawicz ] * Pass env variables to initctl start. * Suffix .sh to our scripts and clean up debian/rules. * Adapt to Debian Qt package renames and drop unneeded Dee plugin dependency. [ Ying-Chun Liu ] * Add Zoomable Image for Preview widgets. [ Albert Astals ] * Remove support for Qt <= 5.2.1 [ Mirco Müller ] * Implemented feature-request from Design for modal snap-decision notifications on the phone. See LP #1285712 (LP: #1285712) [ Andrea Cimitan ] * Make progressbas in preview widget big as the button [ CI bot ] * Resync trunk -- Ubuntu daily release Mon, 05 May 2014 12:09:43 +0000 unity8 (7.86+14.10.20140502.6-0ubuntu1) utopic; urgency=low [ tpeeters ] * Adapt to new TabBar [ Tim Peeters ] * Adapt to new TabBar -- Ubuntu daily release Fri, 02 May 2014 16:44:52 +0000 unity8 (7.86+14.10.20140429.2-0ubuntu1) utopic; urgency=medium [ Andrea Cimitan ] * Update upstart job to reflect latest unity-mir changes * Fix locale in qml tests and fixtimeformattertest (LP: #1301038) * Fix 1309135 (LP: #1309135) [ Michał Sawicz ] * Split out unity8-common package * Don't wait for indicator services to start, and drop Scope Tool's .desktop file. (LP: #1310172) [ Michael Terry ] * Stop clock from hiding when the 'show dash' button is pressed in greeter. (LP: #1308139) * Make swipe teases in the greeter more helpful and obvious (LP: #1267623) [ Nick Dedekind ] * Fixed datetime indicator appointment colour (LP: #1307048) [ Albert Astals ] * Improve Card creation time by adding loaders that make sure only what's needed is loaded (LP: #1297197) * CategoryDelegateRange: Fix condition for detecting overshooting * Make xvfbtests work in the DashView plugins * Fix binding loop in FilterGrid height [ Victor R. Ruiz ] * Move autopilot notification code to a helper method. -- Ubuntu daily release Tue, 29 Apr 2014 15:21:33 +0000 unity8 (7.85+14.04.20140416-0ubuntu1) trusty; urgency=low [ Albert Astals ] * Fix last item X position Fixes clicking on the last item sometimes not working (LP: #1301871) * Use upstart in ./run Makes it so that you can use the lock button on the device without getting that nasty hwc crash * Remove AnimationControllerWithSignals. * Use the correct delegate base item for the Carousel test * Some simplification in DashContent Kill the ScopeDelegateMapper in favour of a simple if (that will eventually go away). Removal of all the fake scopes in the tests that added nothing of value to the tests. Removal of movementEnded signal that was unused. Removal of movementStarted and positionedAtBeginning signals that were being used as function calls. Rework DashContent tests so they what the function does what it is supposed to do instead of just making sure QML signals work . * Improve Card creation time by adding loaders that make sure only what's needed is loaded In my computer it goes from RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 3.217 msecs per iteration (total: 3,218, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.647 msecs per iteration (total: 1,648, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.514 msecs per iteration (total: 1,515, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.471 msecs per iteration (total: 1,471, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 1.447 msecs per iteration (total: 1,448, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 1.276 msecs per iteration (total: 1,276, iterations: 1000) to RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotSummaryMode l": 2.916 msecs per iteration (total: 2,917, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleMascotModel": 1.504 msecs per iteration (total: 1,504, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtSubtitleModel": 1.060 msecs per iteration (total: 1,061, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleArtModel": 1.052 msecs per iteration (total: 1,053, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardArtModel": 0.727 msecs per iteration (total: 728, iterations: 1000) RESULT : qmltestrunner::benchmark_time:"cardTitleModel": 0.817 msecs per iteration (total: 818, iterations: 1000) (LP: #1297197) [ Allan LeSage ] * DashApps emulator get_applications should return a list ordered by visible y, x. [ Andrea Cimitan ] * Workaround for lp1301309 until fixes for palette in ui toolkit (LP: #1301309) [ Leo Arias ] * Reverted the change that returns application cards instead of titles. [ Nick Dedekind ] * Indicator services started by unity8 upstart configuration rather than manual emmision from indicator manager. [ Mirco Müller ] * Fix notification ap-test assertions. [ Michael Terry ] * Use new tablet and phone backgrounds from Design. [ Michael Zanetti ] * workaround the QTestLogger assertion issue with make tryXyz and our custom uqmlscene -- Ubuntu daily release Wed, 16 Apr 2014 13:45:01 +0000 unity8 (7.85+14.04.20140415.2-0ubuntu1) trusty; urgency=low [ Michael Terry ] * When an application requests focus, handle it in Shell.qml by hiding the greeter and stopping any edge demo. (LP: #1227753) [ Leo Arias ] * Use subprocess.check_call when caling url-dispatcher, so an error will be raised if it fails. * Test application life cycle with fake apps, instead of messaging and address book. -- Ubuntu daily release Tue, 15 Apr 2014 12:47:11 +0000 unity8 (7.85+14.04.20140410.1-0ubuntu1) trusty; urgency=medium [ Didier Roche ] * Resync trunk with previous revert upload [ Michał Sawicz ] * Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Albert Astals ] * Take into account the originY when specifying the delegate ranges Fixes bug #1300302 (LP: #1300302) [ CI bot ] * Resync trunk [ Allan LeSage ] * Swiping open an indicator must show its correct title--protect against lp:1253804 . (LP: #1253804) [ Alexander Sack ] * Fix TypeError: issue seen in system_integration autopilot test on image 279. (LP: #1303685) [ Bill Filler ] * Set the Qt.ImhNoPredictiveText flag on wifi password field, fixes lp:1291575 (LP: #1291575) [ Leo Arias ] * Added a search autopilot helper. [ Michael Terry ] * Provide a all-in-one script for getting a device to an unlocked state. -- Ubuntu daily release Thu, 10 Apr 2014 10:03:31 +0000 unity8 (7.85+14.04.20140404.is.7.85+14.04.20140403.1-0ubuntu1) trusty; urgency=medium * Revert to previous version as it's linked to latest sdk change which is making gallery-app AP tests failing on the CI dashboard -- Didier Roche Tue, 08 Apr 2014 13:53:47 +0200 unity8 (7.85+14.04.20140404-0ubuntu1) trusty; urgency=low [ Albert Astals ] * Adapt to new TabBar -- Ubuntu daily release Fri, 04 Apr 2014 15:03:00 +0000 unity8 (7.85+14.04.20140403.1-0ubuntu1) trusty; urgency=low [ Michael Terry ] * Re-enable test_networkmanager_integration autopilot test on phone platforms [ CI bot ] * Resync trunk [ Leo Arias ] * Reverted the open_preview autopilot helper to return a Preview object. [ Albert Astals ] * If not running in Mir load the "fake" application manager (LP: #1301547) * Remove unused properties from DashRenderer [ Michael Zanetti ] * Fix tests after right edge merge. Drop old stages tests. Fix right edge tests if someone doesn't have the GRID_UNIT_PX exported. make GenericScopeView test more robust that broke because the ordering changed * add "make xvfbtestSomething" target to run qml tests in xvfb * make the "make test" commit hook work again -- Ubuntu daily release Thu, 03 Apr 2014 10:38:53 +0000 unity8 (7.85+14.04.20140401.3-0ubuntu1) trusty; urgency=medium [ Michał Sawicz ] * Bump version to ensure incompatibility with previous Unity.Application implementations. * We'll only have the unity-mir and mock Ubuntu.Application plugins now, no need for mangling the import paths. [ Michal Hruby ] * Remove the albumart image provider. (LP: #1262711) * Don't reset search string after 2 seconds. (LP: #1297246) [ James Henstridge ] * Remove the albumart image provider. (LP: #1262711) [ Albert Astals ] * Carousel: Add test to make sure we only create the needed delegates and not more * LVWPH: Remove processEvents() call from updatePolish() It causes some reentrancy issues and in some times you end up in polishItems() with items that have been deleted because you called processEvents() This means i need a small tweak in itemGeometryChanged to not reposition items if we are inside a setContentHeight call and two small tweaks to tests since now things happen in a different order and numbers are different (though equivalent) (LP: #1297240) * Card.qml binding loops are gone. hooray \o/ Also made the aspect properties readonly [ Mirco Müller ] * A potential fix for "Cannot read property 'state' of null"-failure on Jenkins with the VisualSnapDecisionsQueue QML-test of notifications. [ Michael Terry ] * Pass user's preference for auto-brightness on to powerd. (LP: #1273174) [ Michael Zanetti ] * Registers a dummy QObject as QTestRootObject in uqmlscene in order to fix make trySomething with Qt 5.2. -- Ubuntu daily release Tue, 01 Apr 2014 22:56:52 +0000 unity8 (7.84+14.04.20140327.1-0ubuntu2) trusty; urgency=medium * For now, have libunity-private depending on libunity-core-6.0-9 as the gsettings schema is here. The dependency wasn't direct and dropped from Touch image #271. Consequently, unity8 didn't start (gsettings segfaulting). Proper strategy will be to include the schema in another package to only pull it. -- Didier Roche Tue, 01 Apr 2014 09:52:14 +0200 unity8 (7.84+14.04.20140327.1-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Increase kill timeout so that crashes are not truncated. [ Ying-Chun Liu ] * Fix a small typo in LazyImage: scale -> scaleTo [ Albert Astals ] * Make geometry calls for autopilot work again -geometry is a internal Qt argument that only works for QWidget based apps Before it was being returned to us in -args but now it's eaten so we need to use a different one, -windowgeometry * Make "Recent" translatable and update pot file [ Mirco Müller ] * Make visual queue of (up to five) snap-decisions contract and expand according to visual design-spec. [ Michael Terry ] * Pass user's preference for auto-brightness on to powerd. (LP: #1273174) [ Michael Zanetti ] * allow executing a single test function example: make testShell FUNCTION="Shell::test_background" -- Ubuntu daily release Thu, 27 Mar 2014 12:38:21 +0000 unity8 (7.84+14.04.20140324.4-0ubuntu1) trusty; urgency=low [ Michal Hruby ] * Change and extend the way non-installed scopes are started with the scope-tool. * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) [ Gerry Boland ] * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) [ Michał Sawicz ] * Fix rating input action to always be "rated", not dynamic. Based on http://developer.ubuntu.com/api/devel/ubuntu-14.04/cplusplus/unity- scopes/previewwidgets.html#rating-input * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) [ Kevin Gunn ] * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) [ Albert Astals ] * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) * LVWPH: cull lost items lost items will be released on the next updatePolish cycle but meanwhile don't let them be visible [ Daniel d'Andrada ] * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) [ Michał Karnicki ] * Switch to new scope backend and apply required visual adaptations. (LP: #1294294) -- Ubuntu daily release Mon, 24 Mar 2014 16:10:24 +0000 unity8 (7.84+14.04.20140319.1-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Work around bug #1293478 - make sure to send ints, not doubles for volume control. (LP: #1293478) [ Nick Dedekind ] * Fixed binding being cleared when manually changing slider value (lp#1283191). (LP: #1283191) [ Albert Astals ] * Fix indicators highlight position on 5.2 We need to take into account the list originX if we're using the list delegates x outside the list itself * LVWPH: Make sure m_firstVisibleIndex is correctly set on removeNonVisibleItems -- Ubuntu daily release Wed, 19 Mar 2014 16:40:20 +0000 unity8 (7.84+14.04.20140317.2-0ubuntu1) trusty; urgency=low [ CI bot ] * Resync trunk [ Michał Sawicz ] * Revert disable-hud, we weren't ready to land it yet. [ Mirco Müller ] * The snap-decision AP-test for "incoming call"-case used the wrong objectName "notification0". It has to be "notification1". -- Ubuntu daily release Mon, 17 Mar 2014 15:54:39 +0000 unity8 (7.84+14.04.20140314-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Fix tests under Qt 5.2. * CardHeader improvements depending on background. Also drop prices, they need to be reworked into attributes. * Bring Cards closer to design * Add back the workaround for not being able scroll the image gallery Taken from AppPreview.qml (LP: #1281709) * Only allow searching when preview isn't open. (LP: #1282475) * Adds carousel dynamic switch [ Leo Arias ] * Update the url dispatcher test to use the fake app fixture from the toolkit. [ Albert Astals ] * Fix tests under Qt 5.2. * Workaround compiz/unity7 behaviour change/bug [ Michael Zanetti ] * Fix tests under Qt 5.2. * Disable HUD from the bottom edge. [ Andrea Cimitan ] * Adds carousel dynamic switch [ CI bot ] * Resync trunk [ Michał Karnicki ] * CardHeader improvements depending on background. Also drop prices, they need to be reworked into attributes. -- Ubuntu daily release Fri, 14 Mar 2014 15:46:10 +0000 unity8 (7.84+14.04.20140307-0ubuntu1) trusty; urgency=low * New rebuild forced -- Ubuntu daily release Fri, 07 Mar 2014 10:54:33 +0000 unity8 (7.84+14.04.20140306-0ubuntu1) trusty; urgency=low [ Bill Filler ] * Convert gallery and camera to click [ Michael Zanetti ] * Just disable HUD tests, without really disabling the HUD itself [ Sergio Schvezov ] * Convert gallery and camera to click -- Ubuntu daily release Thu, 06 Mar 2014 16:45:46 +0000 unity8 (7.84+14.04.20140304-0ubuntu1) trusty; urgency=low [ Michael Terry ] * Ensure that the selected() signal is emitted by the greeter on startup, fixing the background on startup for the first user in tablet mode. [ Nick Dedekind ] * Remocked IndicatorModel to fix qt5.2.1 changes. [ Albert Astals ] * Initialize m_distance (LP: #1285385) * import Ubuntu.Components so we can use UbuntuAnimation -- Ubuntu daily release Tue, 04 Mar 2014 11:43:04 +0000 unity8 (7.84+14.04.20140228-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Fix CardHeader title font weight. * Delete stale sockets. (LP: #1285215) [ Dmitrijs Ledkovs ] * Ship python3 autopilot modules. [ Albert Astals ] * Cleanup DashContent Remove unused signals and properties [ Michał Karnicki ] * Take it easy on the logging. * Fix CardHeader title font weight. [ Nick Dedekind ] * Added ability to change indicator profile in shell (env UNITY_INDICATOR_PROFILE) [ Andrea Cimitan ] * Rename PreviewRating to PreviewRatingInput * Adds PreviewRatingDisplay [ Daniel d'Andrada ] * DirectionalDragArea: Reset status if disabled while dragging (LP: #1276122) [ Dimitri John Ledkov ] * Ship python3 autopilot modules. -- Ubuntu daily release Fri, 28 Feb 2014 10:48:06 +0000 unity8 (7.84+14.04.20140221-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Add card background support. * Increase the sidestage threshold. [ Jussi Pakkanen ] * Move downloads to their own threads so they don't muck about with the parent thread's event loop. (LP: #1240408) -- Ubuntu daily release Fri, 21 Feb 2014 09:06:04 +0000 unity8 (7.84+14.04.20140218-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Center-align title when it's alone in the header. [ Leo Arias ] * Prepare unity8 to the _uinput refactors in autopilot. [ Albert Astals ] * Progress Preview Widget * LWPH Fix crash from bug 1279434 (LP: #1279434) * Show the loading indicator of the screenshot in video playback [ Andrea Cimitan ] * Adds rating preview widget. Work on the rating widget [ Daniel d'Andrada ] * Make DirectionalDragArea work when rotated The drag gesture direction is in local coordinates, not in scene coordinates [ Michał Karnicki ] * Center-align title when it's alone in the header. -- Ubuntu daily release Tue, 18 Feb 2014 11:41:58 +0000 unity8 (7.84+14.04.20140212-0ubuntu1) trusty; urgency=low [ Gerry Boland ] * Add InputFilterArea to sidestage handle to block input to mainstage app while moving sidestage (LP: #1275732) [ Leo Arias ] * On the autopilot helper to open a scope, wait for the dash content list to stop moving. (LP: #1277591) * Added a test to swipe out an application started by url-dispatcher. [ Nick Dedekind ] * Added a "-profile" option to the indicator-client to switch between indicator service profiles. * Fixed issue importing plugin qml files into qtcreator [ Albert Astals ] * Fix test_previewCycle * Don't move the list contentY unless there's a preview to show (LP: #1271676) * Add overlay to card. Fix implicit card height. . * PreviewHeader Is just a link of the widgetData with the CardHeader * Fix tst_Preview.qml * Scopes guys want the data back * Link the pageheader scope with the current scope So that the activity indicator on search works again (LP: #1279316) [ Andrea Cimitan ] * Add PreviewImage * Preview widget for video playback [ CI bot ] * Add overlay to card. Fix implicit card height. . -- Ubuntu daily release Wed, 12 Feb 2014 15:15:03 +0000 unity8 (7.84+14.04.20140207.1-0ubuntu1) trusty; urgency=low [ Ted Gould ] * You can't tap anywhere [ Michał Sawicz ] * Wait for the indicator to appear. * Add CardTool to determine category-wide card properties based on the category template. Clean up test configurations, too. * Actions Preview Widget * Add Preview for new generation scopes. * Add overlay to card. Fix implicit card height. . [ Albert Astals ] * Basic ImageGallery widget for Previews Mostly a copy of the code used in AppPreview.qml but without the MouseArea hack that I'll wait to introduce until we start using this somewhere were it is needed * Actions Preview Widget [ Andrea Cimitan ] * First audio player widget for previews, with tests * Adds TextSummary preview widget [ Michał Karnicki ] * Add overlay to card. Fix implicit card height. . [ Michael Terry ] * Expand greeter demo support to include listing multiple users and specifying individual passwords and names. -- Ubuntu daily release Fri, 07 Feb 2014 10:46:46 +0000 unity8 (7.84+14.04.20140204-0ubuntu1) trusty; urgency=low [ Michael Terry ] * Disable NM integration test, jenkins has a problem with it because logind isn't configured [ Ubuntu daily release ] * New rebuild forced [ Michał Sawicz ] * Add ubuntu-settings-components to build script. Revert workaround for bug #1268578, got fixed upstream. Drop GenericName from unity8.desktop. (LP: #1268578) * Improve Card and CardHeader layouts: anchor summary to art when no header. don't indent header when no mascot. reduce header and summary font sizes and weights. increase art shape radius . * Add doxygen-based documentation generator. * Add CardTool to determine category-wide card properties based on the category template. Clean up test configurations, too. * Move upstart kill timeout to the unity8 job itself. * Don't treat scope as active when preview open to inhibit model updates and reset processing on previewData changes. (LP: #1275832) [ Leo Arias ] * Added the DashPreview autopilot helper. [ Michał Karnicki ] * CardHeader mascot improvements. -- Ubuntu daily release Tue, 04 Feb 2014 14:09:14 +0000 unity8 (7.84+14.04.20140130-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Bring back libunity-mir1, it's dlopen'ed, so not linked to unity8, so not in shlibs. -- Ubuntu daily release Thu, 30 Jan 2014 14:00:40 +0000 unity8 (7.84+14.04.20140129-0ubuntu1) trusty; urgency=low [ Nick Dedekind ] * Added Panel/VisibleIndicatorsModel for use with both indicator row & menuContent. This removes the need to hide indicators in the row and map inicator indexes between row & content. Fixes the indicator highlight line offset not bound by listView position. * Ported indicators to using ubuntu-settings-components [ Albert Astals ] * Prepend /sbin/ to initctl calls My phablet user does not have /sbin/ in path and thus this calls fail * Call updateDelegateCreationRange when it's needed It depends on other variables than the ones we were using to call it, so need to call it if these change too Device manual test, go to apps scope, scroll down so that only part of the installed apps collapsed category is shown, expand it, see how previously some icons were not painted and now they are [ Mirco Müller ] * Fixed the failure of notification autopilot-test test_sd_incoming_call. [ Andrea Cimitan ] * Add AP test for policykit/network manager, which was causing issues with nested mir [ CI bot ] * Resync trunk [ Michał Karnicki ] * Don't display artShape when artImage source not set. * Fix FilterGrid rendering issues. -- Ubuntu daily release Wed, 29 Jan 2014 16:11:20 +0000 unity8 (7.84+14.04.20140128-0ubuntu1) trusty; urgency=low [ Michal Hruby ] * Added unity-scope-tool, which will help when developing scopes. [ Michał Sawicz ] * Added unity-scope-tool, which will help when developing scopes. * Use full DashContent, not just GenericScopeView in ScopeTool.qml. * Bring Card and CardHeader over from new-scopes. * Work around bug #1268578. (LP: #1268578) * Drop unnecessary version dependencies. * Return null instead of undefined from findChild and findInvisibleChild. * Fix CardHeader and Card heights (empty Label does have non-zero height apparently). Also improve test robustness and reduce future diffs. [ Albert Astals ] * Do not assert if the item we are removing was not created yet (because e.g. it's not in the viewport). * Position correctly the pointer of the search history box . * Make test_filter_expand_expand less unstable in CI VMs Make sure header0 is the header0 we want to click On the CI VM stuff is a bit slower than on real hw and we were clicking in the wrong place. * Add TabBar to the Dash header navigation Changes this comes with: * DashBar at the bottom is gone * PageHeader doesn't have a Label anymore, it has the childItem property where you add which thing it has to contain * New: PageHeaderLabel mimics the old behaviour of PageHeader * The header of the LVWPH of GenericScopeView is now fake and only used for positioning. There is a single global floating header in DashContent (which is a PageHeader with a TabBar as childItem) * The GenericScopeView previewLoader and OpenEffect have been also moved to the DashContent so that the openEffect includes the floating header in the "animation" . * Introduce the HorizontalJournal. * If there are no items m_firstVisibleIndex has to be -1 . * Add some more documentation about tests to the CODING file. * Fixes to the journal cmake tests code * Output to the correct filename for the test * Don't output stuff from the tryXYZ targets. * Adapt to findChild return value changes . * Organic Grid for the Dash View. * Misc journal fixes Don't init *modelIndex to INT_MAX Makes no sense since we're not doing any qMin and the calling function also accepts any index >= 0 as valid so in some cases it may end up wanting to create an index that doesn't exist Don't refill if height() < 0, that gives bad ranges for from/to and the code gets confused . [ Michał Karnicki ] * Fix grid view column count. * Add test for minimum number of items in a carousel. [ Allan LeSage ] * Add stubs for indicators autopilot tests. [ Andrea Cimitan ] * Avoid input falling through notifications onto surfaces below, thus fixing LP: #1257312. (LP: #1257312) [ Leo Arias ] * Close the Touch devices after the tests. (LP: #1267600) * Added methods to scroll to other scopes on autopilot tests. * Added autopilot helpers for the app scope and the app preview. Install the fake scopes in order to use them on the tests. (LP: #1269114) * On autopilot helpers, wait for the scope category to appear. [ Nick Dedekind ] * Visual updates for indicator panel highlight and opening opacity. * Added inidcator tests for page & item factories. * Fixes visible indicator misalignment in indicator items/menus (lp#1264678). (LP: #1264678) [ Mirco Müller ] * Fixed the failure of notification autopilot-test test_sd_incoming_call. [ Michael Zanetti ] * clean up fullscreen notifications code. * import qml files into cmake, drop qmlproject. * also add qml files in tests directory. * Added autopilot helpers for the app scope and the app preview. Install the fake scopes in order to use them on the tests. (LP: #1269114) [ Michael Terry ] * Fix failure to build when using the ./build script with ninja-build installed. (LP: #1268525) * Point DBus-activated processes at unity8's MIR_SOCKET rather than the system socket. [ Daniel d'Andrada ] * DragHandle: Never restart hinting animation while still pressed (LP: #1269022) [ Bill Filler ] * fix for lp:1259294, turn off auto capitalization for wifi password field. (LP: #1259294) * disable predictive text in Dash search field as it interferes with built-in search (LP: #1273643) -- Ubuntu daily release Tue, 28 Jan 2014 15:58:45 +0000 unity8 (7.84+14.04.20131220-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Clean up root project file. Introduce include/ and qml/ and move files around to be where they fit, also adapt everything else to match. [ Michael Hall ] * Update CODING to reflect the fact that only 14.04 is supported currently. [ Christopher Lee ] * Make use of helpers in all tests. (LP: #1260860). (LP: #1260860) [ Nic ] * Added kill time 30 to unity8 override. Added install path. (LP: #1260379) [ Nick Dedekind ] * Added parser for strftime in TimeFormatter. Moved TimeFormatter to Utils plugin. [ Mirco Müller ] * Support fullscreen for special-case extended snap-decision of the pin-unlock dialog. [ Michael Zanetti ] * Change the default behaviour of the Lockscreen to have a variable PIN length, requiring the user to confirm with OK. [ Daniel d'Andrada ] * Update CODING with instructions on how to run tests. [ Dimitri John Ledkov ] * Fix cross-compilation. [ Albert Astals ] * Vertical journal Comes from lp:~aacid/+junk/verticalJournal. * Add code and tests for incremental inserting/removing from the end. [ Ubuntu daily release ] * Automatic snapshot from revision 603 -- Ubuntu daily release Fri, 20 Dec 2013 03:23:08 +0000 unity8 (7.84+14.04.20131212-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Add PyDev project files for autopilot tests. Also tweak .bzrignore to not ignore generic Eclipse project definitions. * Retry unlocking the greeter three times. * Reduce code duplication and clean up CMakeLists and includes in indicator tests. [ Nick Dedekind ] * Replaced indicator page dynamic menuSelected binding with Connection to listview selectedIndex property. (LP: #1243146) * Indicators close when menu items are activated. (LP: #1238182) * Fixed up connections for changes to model data. (LP: #1253810) [ Albert Astals ] * dashItemSelected -> showDashHome Because we are not using the index at all in the upper layers. * Fix filtering colllapsing/expanding again Also the delegate creation range stuff flows up->down not down->up so rearrange the bindings. [ Ubuntu daily release ] * Automatic snapshot from revision 590 -- Ubuntu daily release Thu, 12 Dec 2013 21:41:19 +0000 unity8 (7.84+14.04.20131206.1-0ubuntu1) trusty; urgency=low [ Michal Hruby ] * Ensure DashContent's ListView's currentItem is set if the model is not empty. [ Michał Sawicz ] * Don't generate build-deps .deb twice and allow overriding QML2_IMPORT_PATH in ./run. [ Albert Astals ] * Remove unused Applications/ folder . * Implement an 'interface' for Dash Renderers. * Use deelistmodel's conversion method Instead of a copy of the code . * Remove icons we don't use . * Do not start apps or go to dash on demo If you are pulling the launcher out while in demo mode it doesn't make sense to let you start applications. Besides it locks you out because it starts the app and the demo is still not finished so you can't really use any of the edges to escape Bug #1233696. (LP: #1233696) * Add a test for the carousel showing the preview when being clicked . * Fix collapsing of categories not working and the expansion/collapsing animation +test. [ Timo Jyrinki ] * Depend on either Qt 5.2 or libqt5v8-5-private-dev. * qtdeclarative5-private-dev 5.0.2-6ubuntu5 now depends directly on Qt V8 private headers. The remaining "qtdeclarative5-private-dev" dependency is enough now both when compiling against 5.0.2 or 5.2. [ Pete Woods ] * Handle optional parameterized action properties. (LP: #1256258) [ Andrea Cimitan ] * Implement an 'interface' for Dash Renderers. [ Michael Zanetti ] * Added music preview. * rename some parameters from desktopFile to appId as scopes are now changed to give us the appId. * unhardcode launcher's search paths for .desktop files. * Enable teasing of the phone greeter even though we have a lockscreen. * check if variant is valid to avoid asserting in debug mode when the connection to AccountsService doesn't work for some reason . [ Michael Terry ] * Add the DBus greeter API from the desktop greeter into the unity8 greeter. [ Daniel d'Andrada ] * Dash: disable close mode when you click outside app thumbnails To leave the termination mode you can now just mouse/touch press anywhere outside the running applications' thumbnails The other way, which still works, is long-pressing a thumbnail once more. (LP: #1193414) [ Ubuntu daily release ] * Automatic snapshot from revision 579 -- Ubuntu daily release Fri, 06 Dec 2013 13:15:57 +0000 unity8 (7.84+14.04.20131128.2-0ubuntu1) trusty; urgency=low [ Michal Hruby ] * Depend on the separate scopes plugin * Move the BottomBar* DBus communicator to the Utils plugin. [ Michał Sawicz ] * Wait for DashHome to be available in tst_Shell. (LP: #1254898) * Use plugindir from unity-shell-api.pc. * Expect stop in upstart job and raise in case of surfaceflinger. (LP: #1239876) [ Albert Astals ] * Fix time test in Qt 5.2 Make factors an array instead of a object/dict Objects/dicts are unordered by definition, it happened that Qt 5.0 gave them in the orrder we wanted, but with Qt 5.2 is failing, and we don't even need the "key", so array works as well :). * Test that the dash hswipe is disabled while the inner stuff is moving . * Skip restMaximizeVisibleAreaMoveUpAndShowHeader, it's causing too many failed runs And we are confident it's failing because of the suboptimal scenegraph run in 5.0.x. * Make Dash::test_show_scope_on_load more robust If we are testing showScopeOnLoaded make sure we force a scope reload after we set it, otherwise it may just happen that the scope has already been loaded and the expectaction that we'll change the list to it is just wrong. * Dash renderer signals: No need to pass the model up and down Whoever is listening to the signal has access to the item that emits the signal and has the model right there accessible if needs it. * LVWPH: Fix header going bad when setContentHeight ends up moving the viewport How to reproduce the bug easily without the patch: * In the Dash Home, search for london * Scroll to the bottom * Start moving to the apps scope very slowly * At around 3/4 of the move you'll see the header in the home scope went to a bad position * Go back to the Dash Home. (LP: #1237942, #1246351) * Remove unused AppInfo and VideoInfo files . * Kill unused ApplicationsFilterGrid.qml . * Unify ScopeView and GenericScopeView . * Fix header getting lost as per bug 1245824. (LP: #1245824) * Remove unused Time.js and its test . * Do not include the QtQml megaheader Include only qqml.h which is what we need in these files. * Don't do stuff if our parent context is gone We'll be gone soon too (and crash probably) so don't do anything. This looks a bit like a workaround, wait for 5.2 better painting/dispatching loop to see if this is not needed anymore, we find a better way to do it, or we decide this is fine. [ Lars Uebernickel ] * Allow setting different indicator positions for different profiles. [ Mirco Müller ] * Added checkbox for toggling between echo-modes of password- entryfields in ext. snap-decisions. * Fixes bug #1200569. (LP: #1200569) [ Andrea Cimitan ] * Switch to application scope when a dash swipe is taking place and an app is on foreground. (LP: #1231996) * Shifts wallpaper rendering for greeter lockscreen to be inline with shell. (LP: #1231731) * Dinamically load the Carousel/Filtergrid with more than 6 items. (LP: #1226288, #1234105) * Removes Math.js and its usage. Use SDK ones. [ Gerry Boland ] * DragHandle: javascript argument name clashes with local variable. Yes it works, but is a little unsafe. [ Nick Dedekind ] * Added UnityMenuModel submenu row removal awareness in UnityMenuModelStack. * Round indicator widget icon/label width up to closest gu for alignment. (LP: #1236267) * Indicator re-select by dragging from top when fully opened. (LP: #1213164) * Fixed a race condition causing search history popup to show up when it shouldn't. (LP: #1249369) [ Christopher Lee ] * Unity8 tests now make use of the helper functions (added in the pre- req branch) so that the helper functions are tested as part of daily business. [ Daniel d'Andrada ] * Improve DirectionalDragArea Removed Rejected status, simplifying state machine. Added compositionTime property. Multi-finger scenarios are better handled now. Refactored TimeSource in Ubuntu.Gestures plugin. Added an easy way to debug DirectionalDragArea by having switchable debug prints. Updated tests to also simulate the passage of time. Use touch point scene coordinates for gesture recognition so that moving the. DirectionalDragArea (as in a hinting DragHandle) won't affect it. (LP: #1228336) * Add right-edge drag hinting to Greeter To match with the existing teasing animation when you tap on the right half of the Greeter. Also has the side benefit of making the code look a bit nicer. * Refactor Ubuntu.Gesture tests to share common logic Take the common part out of tst_DirectionalDragArea and put it into a separate base class, GestureTest, so that it can be shared with other, future, tests. In CMakeLists.txt, create a macro out of DirectionalDragArea build script to be used by future tests with similar requirements and structure. Also add the "m_" prefix to member variables. * Remove dead code from Utils plugin They are not being used anywhere. [ Michael Terry ] * Make EdgeDemoOverlay test more reliable by testing for what we really care about, not an indirect indicator of it. (LP: #1248232) * Explicitly set MIR_SOCKET for other upstart jobs, rather than relying on the default socket, since that won't work once we move to a nested Mir. [ Michael Zanetti ] * don't add margins to RunningApplicationTile's label. (LP: #1245482) * allow SIM PIN entry to have a variable pin length (by adding a done- button). (LP: #1240561) * fix launcher wording for pinning actions. (LP: #1240891) * fix preview background positioning don't explicitly take originY into account as it's already in there implicitly. make sure we don't split the openeffect in a place where it can be covered by the header. * fix album artwork containing / in the name. (LP: #1237829) * small launcher tweaks fix fakeDragItem's initial position to match with real item. remove UbuntuShape's border glow. . * drop all references to LighDM from the Lockscreen This should make it generic enough to allow reusing it for SIM PIN entry . [ Omer Akram ] * make the non working code in the screen unlocker helper work. [ Nicolas d'Offay ] * Pushed up the z order of the clock in GreeterContent. (LP: #1233146) * Search history is now persistent across all scopes and remains in QML. (LP: #1226221) [ Ubuntu daily release ] * Automatic snapshot from revision 556 -- Ubuntu daily release Thu, 28 Nov 2013 18:09:17 +0000 unity8 (7.83+14.04.20131106-0ubuntu1) trusty; urgency=low [ Andrea Cimitan ] * Place ShaderEffectSource of UbuntuShapeForItem under the Shape Item. (LP: #1239317) [ Omer Akram ] * test: make sure the search indicator hides when an app has focus. [ Nick Dedekind ] * Fixed indicator slider menu item alignment to label field and icon. (LP: #1240756) [ chris.gagnon ] * Update to autopilot 1.4. [ Ubuntu daily release ] * Automatic snapshot from revision 500 -- Ubuntu daily release Wed, 06 Nov 2013 03:37:02 +0000 unity8 (7.83+14.04.20131105.1-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Implement switching between previews by swiping. (LP: #1220651, #1088572) [ Nick Dedekind ] * Faster loading of indicator menus. (LP: #1226650) [ Albert Astals ] * Make sure we have ssh started when we need it . * Fix a few warnings in DashContent.qml on shutdown Dash/DashContent.qml:119: TypeError: Cannot read property 'previewShown' of null Dash/DashContent.qml:120: TypeError: Cannot read property 'moving' of null . * Don't use deprecated Panel methods. [ Christopher Lee ] * Adds an easy to consume function that attempts to unlock the unity greeter. (LP: #1240261) [ Lars Uebernickel ] * Indicators: add TimeFormatter and use it in the messaging menu This component can be used to turn a timestamp and a format string into a string with the corresponding time and format. The string will change whenever the timezone changes. (LP: #1236413) [ Andrea Cimitan ] * Allow drag over bounds, but not overshoot. (LP: #1204300) * Threshold to activate the left edge swipe to reveal dash is now 26 GU. (LP: #1236286) [ Michael Zanetti ] * replace the launcher quicklist's Popover with an own quicklist implementation The Popover probably won't ever support what the launcher needs. * Implement switching between previews by swiping. (LP: #1220651, #1088572) * don't trigger the greeter teasing during a movement of the greeter. [ Ubuntu daily release ] * Automatic snapshot from revision 495 -- Ubuntu daily release Tue, 05 Nov 2013 12:22:04 +0000 unity8 (7.83+14.04.20131031-0ubuntu1) trusty; urgency=low [ Michał Sawicz ] * Use setenv as early as possible to avoid setenv and getenv clashing in multi-threaded situations. (LP: #1240866) [ Ubuntu daily release ] * Automatic snapshot from revision 482 -- Ubuntu daily release Thu, 31 Oct 2013 20:10:56 +0000 unity8 (7.83+14.04.20131028.1-0ubuntu1) trusty; urgency=low * New rebuild forced * Automatic snapshot from revision 480 -- Ubuntu daily release Mon, 28 Oct 2013 22:42:07 +0000 unity8 (7.83+14.04.20131028-0ubuntu1) trusty; urgency=low [ Andrea Cimitan ] * Fix 1195349 by counting drawbuffer on the newContentX logic of the carousel When we changed carousel from repeater to listview, we added drawbuffer. this breaks the logic of newContentX, which was considered disabled and set to -1. The correct disabled value now has to take into account the drawbuffer. (LP: #1195349) [ Christopher Lee ] * Checks both then env and upstart env for the currently set XDG_DATA_DIRS so they can be set correctly for the test. [ Ubuntu daily release ] * Automatic snapshot from revision 479 -- Ubuntu daily release Mon, 28 Oct 2013 03:08:59 +0000 unity8 (7.83+13.10.20131016.2-0ubuntu1) saucy; urgency=low [ Loïc Minier ] * Merge ~lool/unity8/drop-setcap-conf. Drop unity8-setcap.conf as this breaks desktop installs (no boot-hook event is emitted, boot stalls); add maintscript snippet to rm_conffile on upgrades; this boot-hook is now shipped under a different name in lxc-android- config. [ Michał Sawicz ] * Ship a camera-app.desktop file and use a custom XDG_DATA_DIRS for testing. [ Ubuntu daily release ] * Automatic snapshot from revision 472 -- Ubuntu daily release Wed, 16 Oct 2013 23:15:48 +0000 unity8 (7.83+13.10.20131016.1-0ubuntu1) saucy; urgency=low [ Diego Sarmentero ] * Disable Preview interaction until the scope responds. [ Albert Astals ] * Hide placeholder notification. [ Ubuntu daily release ] * Automatic snapshot from revision 469 -- Ubuntu daily release Wed, 16 Oct 2013 17:29:36 +0000 unity8 (7.83+13.10.20131016-0ubuntu1) saucy; urgency=low [ Loïc Minier ] * Add upstart job to copy unity8 to a new tmpfs, setcap it, and bind- mount it back; this is an ugly hack to set CAP_SYS_RESOURCE until we have a root-helper for it. [ Michal Hruby ] * Enable definition of scope back references in overridden results. [ Ubuntu daily release ] * Automatic snapshot from revision 466 -- Ubuntu daily release Wed, 16 Oct 2013 11:29:52 +0000 unity8 (7.83+13.10.20131015.4-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Replace ubuntu-touch-session's unity8.conf upstart job. * Revert r440 that made the dash collapse animation worse, rather than better. [ om26er@ubuntu.com ] * close the app only when the close button is tapped, not the entire thumbnail [ Nick Dedekind ] * Added missing Unity.Indicator mock objects causing qmltests to fail. Approved by: Michał Sawicz. [ Christopher Lee ] * Launch unity8 for autopilot with upstart, and bring unity8 session over from session-manager-touch. [ Pawel Stolowski ] * Temporarily disable category_order changed signal handling. [ Daniel d'Andrada ] * OSKController area shouldn't cover the indicators' bar Since ubuntu- keyboard surface area doesn't cover the indicators' bar, OSKController should follow suit. Otherwise the OSKContoller's internal InputFilterArea (and others) wouldn't perfectly overlap the graphical keyboard rendered by ubuntu-keyboard (i.e. the opaque part of ubuntu-keyboard's surface). [ Michael Zanetti ] * Initialize initialHeight/Width to height/width depending on scaleTo add checks for initialWidth/Height in the tests change sizes in tests to something else than the default for initialWidth/Height in order to catch failures there more easily [ Omer Akram ] * Only show search indicator while the Dash is focued. * Add 2dp left margin for music and video tiles' title. [ Nicolas d'Offay ] * Changed Infographics to use Ubuntu font. [ Ubuntu daily release ] * Automatic snapshot from revision 463 -- Ubuntu daily release Tue, 15 Oct 2013 11:05:04 +0000 unity8 (7.82+13.10.20131011.2-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Work around Mir not delivering input to shell after restart, if the device isn't reinitialized. [ Albert Astals ] * Remove unused DashMusic/DashVideos. * Don't let the user change between scopes if the current one is moving up/down. * Fix two uninitialized variable uses reported by valgrind ==17988== Conditional jump or move depends on uninitialised value(s) ==17988== at 0x13839F3A: AccountsService::updateDemoEdges() (AccountsService.cpp:74) ==17988== by 0x13839DA5: AccountsService::setUser(QString const&) (AccountsService.cpp:45) ==17988== by 0x1383F67B: AccountsService::qt_metacall(QMetaObject::Call, int, void**) (moc_AccountsService.cpp:192) ==17988== by 0x496143D: StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*, v8::Handle) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2) ==17988== ==17988== Conditional jump or move depends on uninitialised value(s) ==17988== at 0x1383A0F6: AccountsService::updateStatsWelcomeScreen() (AccountsService.cpp:92) ==17988== by 0x13839DB1: AccountsService::setUser(QString const&) (AccountsService.cpp:47) ==17988== by 0x1383F67B: AccountsService::qt_metacall(QMetaObject::Call, int, void**) (moc_AccountsService.cpp:192) ==17988== by 0x496143D: StoreProperty(QV8Engine*, QObject*, QQmlPropertyData*, v8::Handle) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2) * Fix unitialized variable in Scope ==18457== Conditional jump or move depends on uninitialised value(s) ==18457== at 0x15AD1FD6: Scope::setActive(bool) (scope.cpp:165) ==18457== by 0x15B0023D: Scope::qt_metacall(QMetaObject::Call, int, void**) (moc_scope.cpp:478) ==18457== by 0x48B709F: QQmlPropertyPrivate::write(QObject*, QQmlPropertyData const&, QVariant const&, QQmlContextData*, QFlags) (in /usr/lib/arm-linux- gnueabihf/libQt5Qml.so.5.0.2) * Fix crash on the phone For some reason i'm getting v8 crashes without this when shuting down unity-mir [ Gerry Boland ] * Use focusRequested signal from AppManager. WM: AppManager has new signal to ask shell to request focus for app - use it to properly animate and focus the app. If app wants to be side stage, but no side stage available, override the application stage. [ Nick Dedekind ] * Only use the root action state as a unitymenumodel ActionStateParser when needed. [ Andrea Cimitan ] * Move the close app icon on top left. * The header of category list is already on screen after unlock [ Michael Zanetti ] * Make the greeter's clock update in sync with the indicators. [ Omer Akram ] * Increase dash header height to 5gu. [ Nicolas d'Offay ] * Standardised expansion speed in scopes. [ Ubuntu daily release ] * Automatic snapshot from revision 449 -- Ubuntu daily release Fri, 11 Oct 2013 17:26:34 +0000 unity8 (7.82+13.10.20131011.1-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Fix frequent application IDs and drop old AppsAvailableForDownload model. * Unrevert r388 now that we have fixed the infinite loop it was causing in Qt. [ Steve Langasek ] * Don't keep a long-lived connection open to upstart when we only use it for two events, one at load time and one at unload time. [ Lars Uebernickel ] * VolumeControl: use 'volume' instead of 'scroll' action The volume action doesn't show a notification. [ Michael Terry ] * Disable DragHandle on right side of screen while the greeter is animating [ Marcus Tomlinson ] * Added missing "enabled" property to "progressMenu" component in the menu item factory. [ Michael Zanetti ] * Add scaleTo: "fit" mode support to LazyImage [ Andrea Cimitan ] * Add music and video renderers * Use shell.edgeSize for BottomBar's EdgeDragArea, detecting gestures only when they are within the edgeSize. [ Nick Dedekind ] * Removed greeter "toHome" animation (LP#1092976) (LP: #1092976) * Only show Snap Decision notification actions when available. [ Albert Astals ] * Dash: Set delegate creation range for inner itemviewss If it's above the list viewport we set it to the end of the list to precache the last items It it's below the list viewport we set it to the beginning to precache the first items Otherwise we set it to the part of the viewport in the view Approved by: Michał Sawicz. [ Ubuntu daily release ] * Automatic snapshot from revision 435 -- Ubuntu daily release Fri, 11 Oct 2013 09:05:30 +0000 unity8 (7.82+13.10.20131010-0ubuntu1) saucy; urgency=low [ David Callé ] * Small logic change in preview descriptions line breaks. Multiple new lines are now replaced by multiple br tags. [ Nick Dedekind ] * Use indicator identifier for indicators-client list item label. * Make sure overflow indicators are hidden and not the search label. [ Mirco Müller ] * Tweaks to notifications to improve spec-compliance. - updated notifications-qmltest to reflect the use of a variant-map for the hints - made text-fields as heigh as buttons - made the summary align horizontally to the icon - updated button-height and bubble- background. [ Pawel Stolowski ] * Handle category_order_changes signal from scopes (used in Home only) and reorder categories accordingly. * Implementation of albumart image provider for audio content. [ Michael Terry ] * Hide the greeter when an app is focused, fixing snap decisions launching an app in the greeter (like receiving a call). [ Michael Zanetti ] * Launcher - remove support for pinning items in the backend After the latest design changes, recent apps is everything that is contained in the ApplicationManager. So no need for storing anything else than pinned apps in the config. [ Michał Sawicz ] * Remove the mir socket before starting unity8 during autopilot tests. [ Ubuntu daily release ] * Automatic snapshot from revision 420 -- Ubuntu daily release Thu, 10 Oct 2013 04:15:13 +0000 unity8 (7.82+13.10.20131008.1-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Add Scope::isActive property and corresponding tests. (LP: #1230352) [ Daniel d'Andrada ] * Move OSKController to the front as it will now also block input meant to the OSK That's in the unity-mir implementation. The SurfaceFlinger one is still an empty noop. Currently, when the OSK is up, both shell and OSK get user input, thus we need the OSKController to shield our shell components from them. (LP: #1236773) [ Michał Sawicz ] * Add Scope::isActive property and corresponding tests. (LP: #1230352) * Force focus back on shell in case it loses it for some reason. [ Ubuntu daily release ] * Automatic snapshot from revision 409 -- Ubuntu daily release Tue, 08 Oct 2013 19:14:20 +0000 unity8 (7.82+13.10.20131008-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * update previews to match design. (LP: #1224555) * Add an InputFilterArea in Notifications. (LP: #1233411, #1235215) [ Ying-Chun Liu ] * update previews to match design. (LP: #1224555) [ Albert Astals ] * Unrevert 376 by reverting r395 and a small fix to fix the cpu hogging issue . (LP: #1124567) [ Michael Terry ] * Add Showable.showNow() method and use it in Shell to immediately show greeter when we blank the screen rather than animating it. (LP: #1233564) [ Michael Zanetti ] * update previews to match design. (LP: #1224555) [ Diego Sarmentero ] * update previews to match design. (LP: #1224555) [ Ubuntu daily release ] * Automatic snapshot from revision 404 -- Ubuntu daily release Tue, 08 Oct 2013 02:57:55 +0000 unity8 (7.82+13.10.20131007-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Respect pre-set import and library paths and prevent segfault in startShell. [ Ubuntu daily release ] * Automatic snapshot from revision 399 -- Ubuntu daily release Mon, 07 Oct 2013 07:10:46 +0000 unity8 (7.82+13.10.20131005-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Revert r376 that caused constant CPU usage due to the ActivityIndicator. [ Nick Dedekind ] * Removed indicators-client autopilot tests. (LP: #1234736) [ Albert Astals ] * Revert r388. (LP: #1235268) [ Christopher Lee ] * Removes passing -fullscreen to unity8 when on the device (as per bug #1235065). (LP: #1235065) [ Ubuntu daily release ] * Automatic snapshot from revision 396 -- Ubuntu daily release Sat, 05 Oct 2013 11:45:14 +0000 unity8 (7.82+13.10.20131004.2-0ubuntu1) saucy; urgency=low * Revert 7.82+13.10.20131004.1-0ubuntu1 back to 7.81.3+13.10.20130927.3-0ubuntu1 due to CPU hogging issue with 7.82+13.10.20131004.1-0ubuntu1. -- Loïc Minier Fri, 04 Oct 2013 21:22:29 +0200 unity8 (7.82+13.10.20131004.1-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Bump to indicate support for extended snap decisions. * Make Tile themeable, add renderers for Dash Plugins and weather. (LP: #1231948) * Drop network agents now that they're in indicator-network instead. [ Michal Hruby ] * Differentiate generic and music carousels. * Use the thumbnailer image provider for scope results that don't specify icon as well as for previews. * Added an indicator which is displayed in the search bar whenever a search is in progress. Added accompanying test in tst_PageHeader. * Expose rendererHint to shell. [ Albert Astals ] * Update pot file. (LP: #1232374) * Only enable the animation when the item is on screen (i.e. !culled) . (LP: #1200374) * Do not crash on positionAtBeginning if the list is empty . * Enable/disable running apps height animation in a less error prone way. [ Michael Terry ] * Use a chevron after 'Skip intro' and drop the underlining. * Load testability driver when QT_LOAD_TESTABILITY is set. (LP: #1226234) * Listen to the system setting StatsWelcomeScreen, which tells us whether to show user-specific infographic data in the greeter. (LP: #1207857) [ Gerry Boland ] * WM: ensure focusedApplicationWhenUsingScreenshots reset when unused, and only used when set. Fixes window focus conflict between shell and ApplicationManager. [ Nick Dedekind ] * Removed deprecated Unity.IndicatorsLegacy plugin. * Added actionState parser to the indicators-client text printer so that we get the icon. * Moved indicator page titles to the root action state of menu model. (LP: #1223635) [ Mirco Müller ] * Added rendering- and interaction-support for the first three extended snap-decision dialog-cases password-entry, user- authentication and simunlock. [ Daniel d'Andrada ] * Revert the reversion of r304 since it doesn't seem to crash anymore Original commit was Reset apps scope when returning from app to dash (LP #1193419) If an app is on foreground and you perform a long left-edge swipe to minimize it, and therefore return to the dash, the dash should be in the Applications scope and showing the running/recents applications. (LP: #1193419) [ Andrea Cimitan ] * Add behaviours to the hud reveal. (LP: #1224480, #1224633) * Make Tile themeable, add renderers for Dash Plugins and weather. (LP: #1231948) [ Michael Zanetti ] * fix inserting into quicklistmodel. * Drop useStorage argument and use exising LAUNCHER_TESTING define for this decision. [ Omer Akram ] * Make the volume/brightness slider changes realtime. (LP: #1227595) [ Nicolas d'Offay ] * Fixed black colour on the first of the month due to division. (LP: #1233657) * Added an indicator which is displayed in the search bar whenever a search is in progress. Added accompanying test in tst_PageHeader. [ Ubuntu daily release ] * Automatic snapshot from revision 390 -- Ubuntu daily release Fri, 04 Oct 2013 06:55:16 +0000 unity8 (7.81.3+13.10.20130927.3-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Correctly handle image URI scheme in results. [ Michał Sawicz ] * Make SHOW_DASH and HIDE_DASH close the current preview. (LP: #1231404) * Add a LazyImage component that shows an activity spinner for long- loading images and handles aspect ratio properly. * Fix Qt 5.1 FTBFS and suppress some build warnings. [ Albert Astals ] * Make sure we always have least have one column in the gridview. (LP: #1225391) * LVWPH: Make sure we always overshoot vertically. (LP: #1229851) * Remember the expanded categoryId and not the expanded index The index can change on search, and we still want to maintain it expanded in that case. (LP: #1230216) * Fix showHeader in an edge case of notShownByItsOwn Not all the tests i've added fail without the code fix, but i've added them just to be more covered . (LP: #1230187) [ Diego Sarmentero ] * Handling error signal from the DownloadTracker plugin (BUG: #1229744). (LP: #1229744) * Remove "Reviews and Comments" section from Application Preview until the feature is ready (BUG: #1226632) - Detect when the keyboard is being shown to allow the user to scroll the Preview even more if necessary to interact with the components at the bottom of that preview, and don't leave those components obscured behind the keyboard (BUG: #1226638). (LP: #1226632, #1224717, #1226638) [ Nick Dedekind ] * Brought messaging indicator inline with UnityMenuModel & UnityMenuAction. (LP: #1217676, #1217678) [ Pawel Stolowski ] * Support canned search queries returned by Home Scope. * Cancel previous actions and previews on new activation / preview. Expose previewed data row in Preview object. [ Michael Terry ] * Only enable the Bottombar when the HUD is available. (LP: #1220306) * Increase the "Skip intro" clickable area, making dismissing the edge demo intro feel more natural. (LP: #1220632) [ Michael Zanetti ] * drop our CrossFadeImage in favor of the SDK one. (LP: #1227783) [ Ubuntu daily release ] * Automatic snapshot from revision 358 -- Ubuntu daily release Fri, 27 Sep 2013 14:13:22 +0000 unity8 (7.81.3+13.10.20130924.2-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Fix the signal prototypes on music grid renderer. (LP: #1228390) [ Michael Zanetti ] * use less auto variables, align coding style, constify and Qt'ify API in AccountsService plugin. [ Nick Dedekind ] * Re-enable MenuContentActivator in Indicators. [ Albert Astals ] * LVWPH: Update the section header on list change events. [ Pawel Stolowski ] * Check results model ptr returned by GetResultsFromCategory method from UnityCore. (LP: #1228097, #1211595) [ Ubuntu daily release ] * Automatic snapshot from revision 340 -- Ubuntu daily release Tue, 24 Sep 2013 14:40:01 +0000 unity8 (7.81.3+13.10.20130919.3-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Add support for music grid renderer to GenericScopeView. [ Nick Dedekind ] * Fixed the removal of messaging widget due to incompatible action state. (LP: #1225017) [ Christopher Lee ] * Addition of initial autopilot tests for the application lifecycle. [ Lars Uebernickel ] * VolumeControl: use action of the new indicator indicator-sound recently gained an action to increase and decrease the volume. This patch makes use of that to get rid of a bus round trip (to get the current volume) and a race (when the volume gets set between fetching the current volume and setting the new volume). (LP: #1219057) [ Michael Terry ] * When AccountsService.backgroundFile is unset/invalid, have the greeter fall back to whatever the shell background is. * Add a tiny SessionBroadcast plugin that listens to unity-greeter- session-broadcast for the ShowHome signal. [ Daniel d'Andrada ] * Remove obsolete, unused graphics. * Make MouseTouchAdaptor work with multiple QWindows. [ Michael Zanetti ] * change how icons are searched a) try to find it the Icon as is b) prepend with Path if a Path variable is given c) fall back to the image://theme/ with just the icon name . (LP: #1225186) * fix an issue with removing a running app from the launcher and always store pinning to the config. * collapse any open preview when programmatically switching current dash index. (LP: #1221137) [ Ubuntu daily release ] * Automatic snapshot from revision 333 -- Ubuntu daily release Thu, 19 Sep 2013 15:15:07 +0000 unity8 (7.81.3+13.10.20130916-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * allow left edge gesture to minimize apps even when launcher is already visible. * Don't hide the launcher on changes in the stages. * ssh is now installed per default, but it's set to manual in the ssh.override. [ Ubuntu daily release ] * Automatic snapshot from revision 320 -- Ubuntu daily release Mon, 16 Sep 2013 11:49:28 +0000 unity8 (7.81.3+13.10.20130912-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * add support for finding icons from click package apps in the launcher. * update to latest launcher API for better integration with the AppManager. [ Ricardo Mendoza ] * Fixes problems related to image 20130912.0, amongst: * Fix autopilot tests by preventing blocking of input during HUD button animations, only when fully visible * Fix loading of unity-mir library, major version wasn't specified so unless the dev package was there it would fail. [ Ubuntu daily release ] * Automatic snapshot from revision 316 -- Ubuntu daily release Thu, 12 Sep 2013 13:47:59 +0000 unity8 (7.81.3+13.10.20130911.1-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Switch from deprecated image://gicon/ to new image://theme/. [ Gerry Boland ] * Add OSKController so shell can control OSK correctly on Mir. * Remove InputFilterArea for bottom edge swipes, as applications also listen for such swipes for Toolbar reveal. [ Ricardo Mendoza ] * Select the backend to use dynamically on runtime according to the QPA selected by the system. [ Ubuntu daily release ] * Automatic snapshot from revision 311 -- Ubuntu daily release Wed, 11 Sep 2013 16:22:55 +0000 unity8 (7.81.3+13.10.20130911-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Hide all gicon strings from the shell and use the image://theme icon provider that was recently added to the SDK. [ Gerry Boland ] * Convert to new ApplicationManager API. [ Nick Dedekind ] * Updated access point design as per spec. * Indicator visibility based on connection with backend service. [ Albert Astals ] * Dash: Make assignments bindings This way if the model changes the item value also changes. [ Michael Zanetti ] * adds support for highlighting the currently focused application in the launcher, adds tests. * include ~/.local/share/applications in launcher's .desktop file search path. * shrink size of area for revealing the HUD button and make it disappear on release again. fixes 1219035. (LP: #1219035) * revert revision 304 as it makes the Shell crash. [ Michael Terry ] * Allow testers to set custom password or pin in demo mode, rather than hardcoding them. * Have the greeter use AccountsService to determine its background. (LP: #1218402) * Listen to changes in the "show edge demo" AccountsService setting. [ Daniel d'Andrada ] * Update fake/mock plugins so that "./run --fake" works well again - You can now see the thumbnails of the fake running applications once again. - You no longer get hundreds of warnings due to icons not found. * Reset apps scope when returning from app to dash (LP #1193419) If an app is on foreground and you perform a long left-edge swipe to minimize it, and therefore return to the dash, the dash should be in the Applications scope and showing the running/recents applications. (LP: #1193419) [ Ubuntu daily release ] * Automatic snapshot from revision 306 -- Ubuntu daily release Wed, 11 Sep 2013 00:54:31 +0000 unity8 (7.81.3+13.10.20130905.2-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * Integrate Launcher with AppManager. [ Nick Dedekind ] * Removed FIXME from slider int->double conversion. [ Ubuntu daily release ] * Automatic snapshot from revision 291 -- Ubuntu daily release Thu, 05 Sep 2013 10:48:02 +0000 unity8 (7.81.3+13.10.20130904.1-0ubuntu1) saucy; urgency=low [ Nicolas d'Offay ] * Switched infographic background at design's request. [ Ubuntu daily release ] * Automatic snapshot from revision 287 -- Ubuntu daily release Wed, 04 Sep 2013 07:34:57 +0000 unity8 (7.81.3+13.10.20130904-0ubuntu1) saucy; urgency=low [ mhall119 ] * Add a little bit of text to the last step of the tour telling the user how to end it and get to their phone. [ Jussi Pakkanen ] * Use CCache if it is installed. [ Nick Dedekind ] * Multiple icon/label support for indicators. [ Albert Astals ] * Remove unneeded role. [ Lars Uebernickel ] * Fall back to "ubuntu-mobile" icon theme if $UBUNTU_ICON_THEME is unset. [ Michael Zanetti ] * Use MouseAreas in DashBar to enable clicking again. * load launcher default config from existing dconf key. [ Ubuntu daily release ] * Automatic snapshot from revision 285 -- Ubuntu daily release Wed, 04 Sep 2013 03:02:57 +0000 unity8 (7.81.3+13.10.20130903.1-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * workaround quicklist text color. [ Ubuntu daily release ] * Automatic snapshot from revision 277 -- Ubuntu daily release Tue, 03 Sep 2013 06:09:36 +0000 unity8 (7.81.3+13.10.20130830-0ubuntu1) saucy; urgency=low [ Pawel Stolowski ] * Implement a virtual 'All' filter option. [ Ubuntu daily release ] * Automatic snapshot from revision 275 -- Ubuntu daily release Fri, 30 Aug 2013 12:44:40 +0000 unity8 (7.81.3+13.10.20130829.2-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Implement launcher item backend via AccountsService. [ Ubuntu daily release ] * Automatic snapshot from revision 272 -- Ubuntu daily release Thu, 29 Aug 2013 19:09:44 +0000 unity8 (7.81.3+13.10.20130829.1-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Make sure greeter and lockscreen backgrounds are always defined, even if the wallpaper preference string is bogus. (LP: #1208889, #1208894) [ Ubuntu daily release ] * Automatic snapshot from revision 270 -- Ubuntu daily release Thu, 29 Aug 2013 11:09:43 +0000 unity8 (7.81.3+13.10.20130829-0ubuntu1) saucy; urgency=low [ Andrea Cimitan ] * Streamline some new HUD interactions to be more consistent with the Unity Launcher. [ Michael Zanetti ] * setting the launcher's extensionSize delayed to position the view correctly at the beginning . [ Bill Filler ] * add new telephony apps (dialer, messaging, contacts) to launcher and Home scope. [ Michael Terry ] * Implement edge demos on first boot. Build-Depends: +dbus-test- runner, +qtbase5-dev-tools. [ Ubuntu daily release ] * Automatic snapshot from revision 267 -- Ubuntu daily release Thu, 29 Aug 2013 02:10:38 +0000 unity8 (7.81.3+13.10.20130828.1-0ubuntu1) saucy; urgency=low [ Andrea Cimitan ] * Hide the LauncherPanel when it's really hidden, by changing visible to false. [ Gerry Boland ] * Fix sidestage applications - they were being ignored in the show- application-surface logic. (LP: #1217027, #1210079) [ Michał Sawicz ] * Raise the exception if typing failed in autopilot. [ Nick Dedekind ] * Added location indicator defaults. [ Michael Zanetti ] * increase minimal dragging width for dismissing apps with left edge make it a configurable parameter and adjust animation to look like requested in the bug report . (LP: #1213153) [ Ubuntu daily release ] * Automatic snapshot from revision 262 -- Ubuntu daily release Wed, 28 Aug 2013 11:55:46 +0000 unity8 (7.81.3+13.10.20130827.1-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * unset model in quicklist before closing it. [ Ubuntu daily release ] * Automatic snapshot from revision 256 -- Ubuntu daily release Tue, 27 Aug 2013 10:49:17 +0000 unity8 (7.81.3+13.10.20130827-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * Theme the Quicklist Popover. [ Albert Astals ] * Apply expandedIndex on delegate creation bug #1213033. (LP: #1213033) [ Ubuntu daily release ] * Automatic snapshot from revision 254 -- Ubuntu daily release Tue, 27 Aug 2013 02:10:43 +0000 unity8 (7.81.3+13.10.20130826.5-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * tweak launcher folding and visuals according to feedback from design: - increase foldingStartHeight - Introduces a foldingStopHeight. Folding only happens between the foldingStartHeight and the foldingStopHeight. - Only change brightness while folding - remove highlight of pressed icon - decrease launcher's width by half a grid unit. [ Ubuntu daily release ] * Automatic snapshot from revision 251 -- Ubuntu daily release Mon, 26 Aug 2013 22:09:43 +0000 unity8 (7.81.3+13.10.20130826.4-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Add module entry in HudClient's qmldir. [ Jussi Pakkanen ] * Let Ninja parallelize itself. [ Nick Dedekind ] * Abstraction of indicator menu item properties prior to move into common components library. [ Christopher Lee ] * Added autopilot-tests for ephemeral, interactive and snap-decision notifications. [ Mirco Müller ] * Added autopilot-tests for ephemeral, interactive and snap-decision notifications. [ Michael Zanetti ] * only search visible children in findChild, add findInvisibleChild for others. * Added autopilot-tests for ephemeral, interactive and snap-decision notifications. [ Thomi Richards ] * Added autopilot-tests for ephemeral, interactive and snap-decision notifications. [ Ubuntu daily release ] * Automatic snapshot from revision 249 -- Ubuntu daily release Mon, 26 Aug 2013 18:34:44 +0000 unity8 (7.81.3+13.10.20130826.2-0ubuntu1) saucy; urgency=low [ Albert Astals ] * Don't include QtQML It includes LOTS of files we don't need. [ Ubuntu daily release ] * Automatic snapshot from revision 243 -- Ubuntu daily release Mon, 26 Aug 2013 10:08:52 +0000 unity8 (7.81.3+13.10.20130826.1-0ubuntu1) saucy; urgency=low * Automatic snapshot from revision 241 -- Ubuntu daily release Mon, 26 Aug 2013 06:08:33 +0000 unity8 (7.81.3+13.10.20130826-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * delay move operations if the start dragging operation is running This prevents items to left in wrong places when transitions clash. * add empty setUser to allow compiling in jenkins again until the branch that matches unity-api is ready to land. . * add count and progress overlay information to real model too. [ Pawel Stolowski ] * Changed the type of setActive argument from QVector::size_type to unsigned int. [ Ubuntu daily release ] * Automatic snapshot from revision 240 -- Ubuntu daily release Mon, 26 Aug 2013 02:31:42 +0000 unity8 (7.81.3+13.10.20130821.2-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Listen to display-power-changed rather than system-power-changed signals when showing the greeter; ignore such signals when the proximity sensor is active. (LP: #1214477) [ Pawel Stolowski ] * Added a role for accessing progress-source property of categories. [ Ubuntu daily release ] * Automatic snapshot from revision 233 -- Ubuntu daily release Wed, 21 Aug 2013 22:09:53 +0000 unity8 (7.81.3+13.10.20130821.1-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * allow testing at 11:13. Old code failed because the text actually says "11:13 AM". * add some checks if we actually clicked an item or in the spacing between them gets rid of some warnings printed by the launcher . [ Michał Sawicz ] * Update runtime deps in the build script. [ Nick Dedekind ] * Added/Updated legacy network indicator components to use with new indicator backend. [ Albert Astals ] * Fix insertions/removals on the qlimitproxymodel . (LP: #1213959) [ Ubuntu daily release ] * Automatic snapshot from revision 230 -- Ubuntu daily release Wed, 21 Aug 2013 15:04:59 +0000 unity8 (7.81.3+13.10.20130821-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * added support for count emblems and progress overlays on the launcher. [ Pawel Stolowski ] * Add role for getting filter options model. Add method to activate option based on index or id. [ Ted Gould ] * Mark indicators-client as providing an indicator-renderer. [ Nick Dedekind ] * Added flatmenuproxymodel pass-through signals from qmenumodel. * Renamed indicator-messaging to indicator-messages. [ Gerry Boland ] * Typo fix in FrequentlyUsedAppsModel. [ Ubuntu daily release ] * Automatic snapshot from revision 224 -- Ubuntu daily release Wed, 21 Aug 2013 08:05:13 +0000 unity8 (7.81.3+13.10.20130820.2-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * initial support for quicklists For now they support pinning and removing of items. [ Ubuntu daily release ] * Automatic snapshot from revision 217 -- Ubuntu daily release Tue, 20 Aug 2013 10:09:36 +0000 unity8 (7.81.3+13.10.20130820-0ubuntu1) saucy; urgency=low [ Andrea Cimitan ] * Implement background changing through gsettings. Make sure it does fallback to default background when needed. [ Michael Zanetti ] * Implement background changing through gsettings. Make sure it does fallback to default background when needed. * Add Drag'n'drop support to Launcher As dragging an item pins it to the launcher this also contains initial quicklist and pinning support in the plugin part. [ Michał Sawicz ] * Fix generic preview wrapping and force rich text parsing. [ Michal Hruby ] * Remove the override for Apps available for download, click scope provides these now. * Hide rating widgets when scope provides rating set to < 0.0. Also fallback to regular preview image if there are no more_screenshots specified. [ Albert Astals ] * Make sure minYExtent is updated before setting the new content height Otherwise bad things can happen in the positioning . [ Ubuntu daily release ] * Automatic snapshot from revision 215 -- Ubuntu daily release Tue, 20 Aug 2013 02:08:42 +0000 unity8 (7.81.3+13.10.20130816.3-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Implement overrideResults() method, which allows us to seamlessly combine real scope data with mocked data. [ Michał Sawicz ] * Wait for activeFocus before typing in autopilot tests. (LP: #1212580) [ Nick Dedekind ] * Fixed network indicator password dialog not appearing. (LP: #1212730) * Remove time & battery indicator service info. [ Albert Astals ] * Dash category expansion. * Fix crash in the shell test Give the item a parent, otherwise the qml engine decides to adopt it and when we do the deleteLater on them, they have been already deleted. Since we are the parents, we don't need to call the deleteLAter eiether they'll be properly deleted on our deletion. [ Michael Zanetti ] * make entering text in lockscreen tests more robust. (LP: #1212580) [ Michael Terry ] * Define the 'build' target as PHONY so make doesn't get confused by our 'build' script. * Add a test for the Powerd plugin shell support. [ Pawel Stolowski ] * Bindings for filters. [ Ubuntu daily release ] * Automatic snapshot from revision 208 -- Ubuntu daily release Fri, 16 Aug 2013 14:11:35 +0000 unity8 (7.81.3+13.10.20130814.3-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Upstart signals to control indicator services. [ Nick Dedekind ] * Replaced indicator menu listView with tabs view. * Transition Unity.Indicators to UnityMenuModel. [ Ubuntu daily release ] * Automatic snapshot from revision 197 -- Ubuntu daily release Wed, 14 Aug 2013 14:33:39 +0000 unity8 (7.81.3+13.10.20130814.1-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Add AppPreview. [ Nick Dedekind ] * Use key from indicator service file to source indicator positions. [ Diego Sarmentero ] * Add AppPreview. [ Ubuntu daily release ] * Automatic snapshot from revision 193 -- Ubuntu daily release Wed, 14 Aug 2013 06:33:14 +0000 unity8 (7.81.3+13.10.20130813.1-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * don't scale the EARLY ALPHA warning text bigger than the screen is. [ Michał Sawicz ] * Add debug logging to passphrase entry. [ Albert Astals ] * Remove unneeded stuff from CMakelists.txt set(CMAKE_AUTOMOC ON) include(FindPkgConfig) find_package(Qt5Core REQUIRED) find_package(Qt5Quick REQUIRED) Are already on the top-level CMakeLists.txt so no need to write them again Well, actually the Qt5Core wasn't and i added it, it's not really necessary since it's pulled by the others that depend on it, but it doesn't hurt to be explicit. [ Ubuntu daily release ] * Automatic snapshot from revision 189 -- Ubuntu daily release Tue, 13 Aug 2013 14:08:32 +0000 unity8 (7.81.3+13.10.20130812.1-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * preserve lockscreen's background wallpaper's aspect ratio. (LP: #1208892) [ Ubuntu daily release ] * Automatic snapshot from revision 184 -- Ubuntu daily release Mon, 12 Aug 2013 19:14:35 +0000 unity8 (7.81.3+13.10.20130812-0ubuntu1) saucy; urgency=low [ Albert Astals ] * Fix uses of uninitialized values reported by valgrind. [ Ubuntu daily release ] * Automatic snapshot from revision 182 -- Ubuntu daily release Mon, 12 Aug 2013 14:33:29 +0000 unity8 (7.81.3+13.10.20130809.1-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Set phone form factor for scope requests. [ Michał Sawicz ] * Add support for plurals and update the translation template. [ Ubuntu daily release ] * Automatic snapshot from revision 179 -- Ubuntu daily release Fri, 09 Aug 2013 15:35:06 +0000 unity8 (7.81.3+13.10.20130809-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Prepare unity8 for cross-building. [ Ubuntu daily release ] * Automatic snapshot from revision 176 -- Ubuntu daily release Fri, 09 Aug 2013 02:32:10 +0000 unity8 (7.81.3+13.10.20130808-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Re-enable battery slider test. [ Nick Dedekind ] * Workaround for non-deletion of indicator page menu items. (LP: #1183065, #1206991) [ Albert Astals ] * LVPWH: Fix regression handling the sticky top section culling r166 introduced the regression, this fixes it+tests. * Implement+test the maximizeVisibleArea function Tries to show as much possible of an index that is already shown on screen Will be used for the dash category expansion. [ Ubuntu daily release ] * Automatic snapshot from revision 174 -- Ubuntu daily release Thu, 08 Aug 2013 15:23:17 +0000 unity8 (7.81.3+13.10.20130807-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Drop ppa:ubuntu-unity/next. * Revert revision 161 that causes issues with invalid background. [ Albert Astals ] * Fix off by one in the culling condition If you are on 0 and your height is 1 and viewport starts at 1 you have to be culled since you are not visible. [ Ubuntu daily release ] * Automatic snapshot from revision 168 -- Ubuntu daily release Wed, 07 Aug 2013 02:32:00 +0000 unity8 (7.81.3+13.10.20130806-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Show the greeter when powerd tells us to, not just whenever we press the power key. (LP: #1186256) [ Ubuntu daily release ] * Automatic snapshot from revision 164 -- Ubuntu daily release Tue, 06 Aug 2013 03:43:01 +0000 unity8 (7.81.3+13.10.20130805-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Fixes the lockscreen and swiping on the greeter still being possible even when in tablet mode. (LP: #1204984) * Watch powerd signals to notice a sleep and unfocus current app when that happens. [ Michael Zanetti ] * make findChild also find invisible childs This considerably increases the amount of items to be searched up to a level where testShell didn't finish any more with searching. Hence this commit also changes findChild to do a breadth-first instead of a depth- first search. * Read background from GSettings or fallback to default_background. [ Andrea Cimitan ] * Read background from GSettings or fallback to default_background. [ Albert Astals ] * Make LVWPH provide a delegateIndex for sectionHeaders This way we can match the sectionHeader to the model easier in the qml/js side . * Fix tryCompare call The 4th parameter of tryCompare is timeout not message . [ Daniel d'Andrada ] * Read background from GSettings or fallback to default_background. [ Ubuntu daily release ] * Automatic snapshot from revision 162 -- Ubuntu daily release Mon, 05 Aug 2013 02:32:05 +0000 unity8 (7.81.3+13.10.20130802-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Make hud autopilot tests more reliable by fixing how it calculates relative coordinates. [ Albert Astals ] * Only update the "section" if we are not culling the item If the item is not shown we should not care about its section. [ Ubuntu daily release ] * Automatic snapshot from revision 155 -- Ubuntu daily release Fri, 02 Aug 2013 02:40:11 +0000 unity8 (7.81.3+13.10.20130801.1-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Add a disclaimer for the fake applications plugin. [ Nick Dedekind ] * Removed animations from fake indicator pages. [ Ubuntu daily release ] * Automatic snapshot from revision 152 -- Ubuntu daily release Thu, 01 Aug 2013 14:30:40 +0000 unity8 (7.81.3+13.10.20130801ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * implemented new Lockscreen design. [ Michał Sawicz ] * Fix mock VideoPreview to use the string categoryId as well. [ Nick Dedekind ] * Added a text tree representation of the qmenumodel to the indicators-client application. [ Albert Astals ] * Don't need deelistmodel here. [ Ubuntu daily release ] * Automatic snapshot from revision 149 (ubuntu-unity/next) -- Ubuntu daily release Thu, 01 Aug 2013 02:32:03 +0000 unity8 (7.81.3+13.10.20130730ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michał Sawicz ] * Adapt to Qt 5.1. [ Albert Astals ] * Adapt to Qt 5.1. [ Ubuntu daily release ] * Automatic snapshot from revision 143 (ubuntu-unity/next) -- Ubuntu daily release Tue, 30 Jul 2013 02:33:12 +0000 unity8 (7.81.3+13.10.20130729ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Remove the variant conversions methods as they were moved to dee-qt. [ Michał Sawicz ] * Re-enable passphrase tests under UInput. * Use the new string categoryIds in custom video and music scope views. (LP: #1199322) [ Nick Dedekind ] * Behavioural changes for indicators - Part 1 - Use standard animations. - Search bar animation less distracting. - Hinting animation shows header. - Vertical velocity detector to reduce accidental menu switches in dragging phase. [ Gustavo Pichorim Boiko ] * Add entries to the new applications resulted from the split of the phone-app. [ Ubuntu daily release ] * Automatic snapshot from revision 141 (ubuntu-unity/next) -- Ubuntu daily release Mon, 29 Jul 2013 03:41:07 +0000 unity8 (7.81.3+13.10.20130726ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Expose real category ids and not just indices. * Provide fallbacks for default renderer. [ Daniel d'Andrada ] * Give a visual feedback on right-edge drag with no running apps (LP: #1116207). (LP: #1116207) [ Albert Astals ] * Update m_firstVisibleIndex if there's no visible items anymore Also remove the check for m_visibleItems.isEmpty() on insert, the m_firstVisibleIndex == 0 already protects us against that. [ Christopher Lee ] * Tests now use a default lightdm mock if not decorated. (LP: #1204772) [ Ubuntu daily release ] * Automatic snapshot from revision 135 (ubuntu-unity/next) -- Ubuntu daily release Fri, 26 Jul 2013 07:06:08 +0000 unity8 (7.81.3+13.10.20130725ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Fix adding items into an empty LVWPH. [ Michał Sawicz ] * Move to using upstart in run_on_device. * Added heeding and qmltest for button-tint hint. * Refactoring and cleanup of the Unity8 Autopilot tests. * Hide the Unity launcher during autopiloting and skip battery tests if unavailable. [ Ying-Chun Liu ] * Let GenericScope support loading different renderers. [ Nick Dedekind ] * Removed overview from indicators. * Menus for indicators is now created prioritised by distance from current item to speed up user experience. * Add ApplicationArguments to know the geometry from start. [ Mirco Müller ] * Added heeding and qmltest for button-tint hint. [ Christopher Lee ] * Refactoring and cleanup of the Unity8 Autopilot tests. [ Thomi Richards ] * Refactoring and cleanup of the Unity8 Autopilot tests. [ Ubuntu daily release ] * Automatic snapshot from revision 129 (ubuntu-unity/next) -- Ubuntu daily release Thu, 25 Jul 2013 03:02:12 +0000 unity8 (7.81.3+13.10.20130718ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Andrea Cimitan ] * Add support for the colour palette. [ Omer Akram ] * fix the calendar icon in the launcher. (LP: #1201905) [ Nick Dedekind ] * Export indicator plugin symbols using Q_DECL_EXPORT. [ Ying-Chun Liu ] * Don't include .moc in previewbindingstest.cpp. [ Ubuntu daily release ] * Automatic snapshot from revision 118 (ubuntu-unity/next) -- Ubuntu daily release Thu, 18 Jul 2013 06:07:00 +0000 unity8 (7.81.3+13.10.20130717ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Daniel d'Andrada ] * Remove dead code: Showable::showWithoutAnimation. [ Nick Dedekind ] * Split Plugins export macro into export_qmlfiles and export_qmlplugins. Added qmltypes to indicators plugin. [ Ubuntu daily release ] * Automatic snapshot from revision 112 (ubuntu-unity/next) -- Ubuntu daily release Wed, 17 Jul 2013 03:14:49 +0000 unity8 (7.81.3+13.10.20130716ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Pete Woods ] * Rename the demo user "single" to "phablet" Fix the infographics on the device At the moment the mock lightdm backend we are using says the current user is called "single", while in reality the processes all run as the "phablet" user. [ Michał Sawicz ] * Only use ppa:ubuntu-unity/next and clean build scripts and CODING, accordingly. * Do not recommend indicator-power and indicator-sound. On device they're provided by lp:indicator-server for the time being. * Fix the Network page to provide the correct token. (LP: #1201529) [ Ubuntu daily release ] * Automatic snapshot from revision 109 (ubuntu-unity/next) -- Ubuntu daily release Tue, 16 Jul 2013 02:32:03 +0000 unity8 (7.81.3+13.10.20130714ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Change Ok to OK. (LP: #1131842) [ Ubuntu daily release ] * Automatic snapshot from revision 104 (ubuntu-unity/next) -- Ubuntu daily release Sun, 14 Jul 2013 02:31:57 +0000 unity8 (7.81.3+13.10.20130712ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * Make use of the launcher API defined in unity-api and separate the model from the backend. [ Michał Sawicz ] * Issue wrap-and-sort -abt on debian/. [ Nick Dedekind ] * Moved indicators-client code into unity8. (LP: #1191132, #1191822) [ Ubuntu daily release ] * Automatic snapshot from revision 102 (ubuntu-unity/next) -- Ubuntu daily release Fri, 12 Jul 2013 02:31:59 +0000 unity8 (7.81.3+13.10.20130711ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * invert the home button too in case the whole panel is inverted. (LP: #1199622) [ Michał Sawicz ] * Make the OpenEffect non-live by default to improve performance. (LP: #1124584) [ Ying-Chun Liu ] * Add Generic Preview. Modify GenericScopeView to support activate and preview. [ Ubuntu daily release ] * Automatic snapshot from revision 98 (ubuntu-unity/next) -- Ubuntu daily release Thu, 11 Jul 2013 03:00:53 +0000 unity8 (7.81.3+13.10.20130710ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Zanetti ] * removed unused old file ShortcutsContainer.qml. [ Michał Sawicz ] * Fix fetching data from scopes in the custom scope pages. (LP: #1199322) [ Ying-Chun Liu ] * Fix references to scope data. (LP: #1199322) [ Albert Astals ] * Fix showHeader animation when the header is half shown at top . * Disable -pedantic on the private Qt headers . [ Pawel Stolowski ] * Bindings for SocialPreview. [ Ubuntu daily release ] * Automatic snapshot from revision 94 (ubuntu-unity/next) -- Ubuntu daily release Wed, 10 Jul 2013 02:32:00 +0000 unity8 (7.81.3+13.10.20130709ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michal Hruby ] * Implement CategoryResults based on DeeFilterModel. [ Nick Dedekind ] * Added plugin cmake procedure for qmltypes files. [ Ubuntu daily release ] * Automatic snapshot from revision 86 (ubuntu-unity/next) -- Ubuntu daily release Tue, 09 Jul 2013 02:58:58 +0000 unity8 (7.81.3+13.10.20130708ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Michael Terry ] * Ensure the past circle animations complete Currently, all the animations stop as soon as the present circles are all visible. This change ensures that the animations run to completion. [ Michael Zanetti ] * improve launcher flicking bahavior - fix initial snapping - improve foldingAreas behavior - increase clickFlick speed to flick 4 items. [ Albert Astals ] * Remove workarounds for Qt bug 28403 . (LP: #28403) [ Ubuntu daily release ] * Automatic snapshot from revision 83 (ubuntu-unity/next) -- Ubuntu daily release Mon, 08 Jul 2013 02:34:23 +0000 unity8 (7.81.3+13.10.20130704ubuntu.unity.next-0ubuntu1) saucy; urgency=low [ Didier Roche ] * Clean packaging for entering saucy and following daily release guidelines * Automatic snapshot from revision 49 (bootstrap) [ Michał Sawicz ] * Fix unity8.pot file. * Support the simplified theming from ubuntu-ui-toolkit. * Use AbstractButtons instead of Button { color: "transparent" } that doesn't work. [ Albert Astals ] * ListViewWithPageHeader implementation in C++. (LP: #1171918) * LVWPH: Do not crash on showHeader if we don't have a header . * Fix bug when setting the same model twice to a QLimitProxyModelQML. * Add some const & Saves us some microseconds in copying stuff. [ Daniel d'Andrada ] * Make Greeter and Stage use the new DragHandle component. So they no longer use Revealers. Now a directional drag gesture is required to start the animation that brings back a "minimized" application when the dash is on foreground. Besides that, now they have the following feature:  - Action only completes succesfully if you drag through at least half the    screen width or if your swipe is fast enough. The shorter the swipe, the faster it has to be for the action to auto- complete. * DirectionalDragArea: add touchSceneX, touchSceneY, and sceneDistance properties. * DirectionalDragArea: emit draggingChanged() on direct recognition draggingChanged() should be emited when status change from WaitingForTouch directly to Recognized. * update CODING instructions for building & running. * DragHandle: add stretch and hintDisplacement properties. * DragHandle: fix hinting Revision 64 had a bad interaction with revision 66 (that added line was lost in the merge/rebase process). tst_DragHandle::hintingAnimation() points out the problem (fails on line 388). * Make Panel use DragHandles instead of a Revealer - A directional drag gesture is needed reveal the panel when fullscreen. - better logic for deciding when to auto-complete the show/hide animation - hinting animation to close the panel - Tapping on menu bar no longer opens nearest indicator menu - No closing with handle click. [ mhall119 ] * Fix build script error from extra blank line. (LP: #1196322) [ Nick Dedekind ] * Changed shellImportPath to return a list of paths. Added prependImportPaths and changed appendImportPaths to check for duplicates. [ Mirco Müller ] * Added support and tests for expanding snap-decisions with more than 2 actions passed in. [ Michael Zanetti ] * As requested by design, decreasing wobblyness in the WrongPasswordAnimation. * improve the bzr commit hook - don't run qmltests in here, it takes too long - don't abort commit on failed tests, its too annoying - instead, print a fat warning and backup the commit message to be reused after uncommitting and fixing the tests. * edge hinting tweaks - change edge hinting behavior to only happen on onPressed and immediately snap back - fix edge hinting to not happen if the Greeter is locked . [ Michael Terry ] * Fix "Tap to Unlock" text not appearing when in tablet greeter mode with only one user. * Use libusermetrics to provide infographic data. * Delete builddir/ when running "debuild clean". [ Pawel Stolowski ] * Bindings for preview and activation requests. [ Kevin Gunn ] * update CODING instructions for building & running. [ Ubuntu daily release ] * Automatic snapshot from revision 78 (ubuntu-unity/next) -- Ubuntu daily release Thu, 04 Jul 2013 12:44:19 +0000 unity8 (7.81.3) UNRELEASED; urgency=low * Choose more appropriate values for edge-drag gestures (LP: #1194150) -- Daniel d'Andrada Fri, 28 Jun 2013 16:28:24 -0300 unity8 (7.81.2) saucy; urgency=low * Translation updates. [ Michał Sawicz ] * Fix icons in ApplicationsFilterGrid.qml. * Support flipped image in run_on_device. [ Michael Zanetti ] * Don't clear lockscreen when it's fading out. * Reworked Launcher folding. * Tweak Launcher revealing. [ Michal Hruby ] * Add content_type property to category models. -- Michał Sawicz Wed, 26 Jun 2013 18:10:39 +0200 unity8 (7.81.1) saucy; urgency=low * Translation updates. [ Michał Sawicz ] * Don't limit installed apps. * Pre-optimize PNGs to speed-up builds. * Clean up build scripts. [ Daniel d'Andrada ] * Use DirectionalDragArea in BottomBar. -- Michał Sawicz Fri, 21 Jun 2013 17:37:02 +0200 unity8 (7.81.0) saucy; urgency=low * Translation updates. [ Michał Sawicz ] * Drop People lens. * Support git-backed checkout. * Revert focus stealing prevention for new apps. Fixes: https://bugs.launchpad.net/bugs/1190155. * Update CODING after unity8 rename. * Update translation template file. * Fix notification placement. [ Michael Terry ] * Show login list when not in narrow mode, instead of only when we have multiple users. [ Günter Schwann ] * Bring back ListView'ed Carousel now that Qt is fixed. [ Daniel d'Andrada ] * Stage: code cleanup. * DirectionalDragArea: added minSpeed and maxSilenceTime constraints. * Move Direction enum out of DirectionalDragArea. * Added uqmlscene tool and tryFoo targets for manual testing. [ Michael Zanetti ] * Add Lockscreens. * Added right edge hinting to greeter. [ Nick Dedekind ] * Added Dash tests. [ Nicolas d'Offay ] * Changed infographic gradient colours. [ Mirco Müller ] * Integrate notifications. [ Pawel Stołowski ] * New version with support for smart scopes. -- Michał Sawicz Fri, 14 Jun 2013 12:56:17 +0200 unity8 (7.80.0) saucy; urgency=low * Rename to unity8. -- Michał Sawicz Tue, 04 Jun 2013 14:45:29 +0200 qml-phone-shell (1.80) raring; urgency=low * Focus/unfocus apps on lock/unlock to make sure keyboard is hidden. -- Michał Sawicz Sat, 01 Jun 2013 00:31:03 +0200 qml-phone-shell (1.79) raring; urgency=low [ Michael Terry ] * Make greeter look like the desktop one [ Gerry Boland ] * Fix a bug where a minimized app gets focus after closing another app * Applied a workaround to reduce flickering when launching apps [ Ying-Chun Liu (PaulLiu) ] * Make the panel translatable [ Michael Zanetti ] * Limit people lens to max 50 people. More people can be found with search feature. -- Michael Zanetti Fri, 24 May 2013 17:06:05 +0200 qml-phone-shell (1.78) raring; urgency=low [ Sergio Schvezov ] * Replacing the music and ski safari mock apps with calendar and weather in the launcher (LP: #1178262). [ Daniel d'Andrada ] * Support pointer-to-touch event conversion for desktop testing. * Use DirectionalDragArea in the Launcher. * Add AxisVelocityCalculator component. * Use touch instead of pointer interaction in autopilot. [ Nick Dedekind ] * Enable indicators in greeter. * Add DashContent tests. [ Michael Terry ] * Split mock and test LightDM plugins. * Add support for more PAM/LightDM features in the greeter. [ Ying-Chun Liu (PaulLiu) ] * Add i18n support. * Add libc6-dev to Build-Depends. [ Michał Sawicz ] * Unlock onFocusRequested to unlock on incoming call (LP: #1181654). * Use device-services in run_on_device. * Filter input in greeter. (LP: #1185443). [ Albert Astals Cid ] * Remove FilterGrid dimensions bahavior. [ Ubuntu Translators Team ] * Added translations for 36 languages. Thanks! [ Michael Zanetti ] * Fix autopilot tests on devices. -- Michał Sawicz Fri, 24 May 2013 17:06:05 +0200 qml-phone-shell (1.77) raring; urgency=low [ Mathieu Trudel-Lapierre ] * debian/control: - Drop indicators-client-plugin* Depends for qml-phone-shell to Recommends. - Add/update Vcs-Browser, Vcs-Bzr and add a notice to uploaders. * debian/copyright: fix syntax. [ Michał Sawicz ] * Drop indicators-client-examples recommends altogether [ Renato Araujo Oliveira Filho ] * Renamed Media player files to match with new application name. [ Daniel d'Andrada ] * New: DirectionalDragArea component. An area that detects axis-aligned single-finger drag gestures. * Make it possible to send touch events from within QML test code. -- Mathieu Trudel-Lapierre Fri, 26 Apr 2013 11:15:00 -0400 qml-phone-shell (1.76) raring; urgency=low [ Albert Astals Cid ] * Remove QSortFilterProxyModelQML::get() to ensure per-role fetching * Highlight matching strings in the HUD [ Michał Sawicz ] * Dropped support for 12.10 [ Michael Zanetti ] * Update autopilot tests for 1.3 release [ Andrea Cimitan ] * Use SDK's Panel - enable swipe from bottom to reveal Dash bottom bar [ Michael Terry ] * Introduce a mock LightDM plugin to prepare for real switch [ Daniel d'Andrada ] * Move definition of global test targets to main tests CMakeLists file [ Mirco Müller ] * Introduce Notifications UI, currently only driven by tests -- Michał Sawicz Thu, 16 May 2013 15:52:18 +0200 qml-phone-shell (1.75) raring; urgency=low * Fix search history in the dash * Hud: No appstack anymore * Hud: Support having toolbar items enabled/disabled * Hud: remove the app quit toolbar item * Tweak to improve the switch application animation * Correctly load icons when running on the desktop * Use real enum from ApplicationInfo instead of its counterfeit local version * Added gdb debugging (-g/--gdb) run_on_device option * Drop support for quantal in build_unity script * Make out of source builds work in sibling directories * Clean up debian/control * Build with the new Qt 5.0.2 packages * Tests for: * IndicatorMenuWindow * PeopleFilterGrid -- Albert Astals Cid Thu, 09 May 2013 15:10:03 +0200 qml-phone-shell (1.74) raring; urgency=low [ Albert Astals Cid ] * Use new HUD api * Improvements to build and run scripts * Test for GenericLensView * Use -z defs for SHARED and MODULE libraries -- Sergio Schvezov Fri, 26 Apr 2013 13:14:03 -0300 qml-phone-shell (1.73) raring; urgency=low [ Albert Astals ] * No need to include lens.h in peoplepreviewdata.h * Bumping libhud dependency to use the new libhud-client2 [ Andrea Cimitan ] * Adds test for LensView [ Michael Zanetti ] * Fix execution of local autopilot tests -- Ricardo Salveti de Araujo Thu, 25 Apr 2013 13:46:23 -0300 qml-phone-shell (1.72) raring; urgency=low * bring greeter closer to desktop design * simplify SortFilterProxyModel role management * CMake and build script improvements * enable volume slider in Overview * clean up .bzrignore * flatten qmluitests and unittests into generic qmltests * split out LimitProxyModel out of SortFilterProxyModel * replace fake QML wrappers for Ubuntu.Application with a mock implementation * hide Frequent and Available categories in Apps lens during search (LP: #1170495) * add first test utilities * use fake Unity plugin for Dash tests * generate and package API docs * close applications after long-press in dash * simplify preview calculation * tests for: * bad indentation * Panel * indicators Overview * IndicatorItem * ListViewWithPageHeader * Clock * OpenEffect * FilterGrids * MenuContent * header standalone compilation -- Michał Sawicz Fri, 19 Apr 2013 21:16:50 +0200 qml-phone-shell (1.71) quantal; urgency=low * add missing python3 dependency -- Michał Sawicz Thu, 11 Apr 2013 17:11:15 +0200 qml-phone-shell (1.70) quantal; urgency=low * CMake fixes * improve HUD PeakDetector performance * initial QML coverage measurement * enable coverage analysis for C/C++ * require out-of-source builds * fix incorrect linkage in hudclient.cpp * reduce warnings * add an optional on-commit test hook * tests for: * IndicatorRow * Tile * SearchIndicator * trailing whitespace * PageHeader * SearchHistoryModel * ResponsiveFlowView * SideStage * Indicators * move tests into subdirectories * increase test setup consistency * remove some dead code * register CategoryFilter to QML * use a static python install path for autopilot * merge first stages of libunity-api * drop unneeded moc includes -- Michał Sawicz Thu, 11 Apr 2013 14:42:22 +0200 qml-phone-shell (1.69) quantal; urgency=low [ Sergio Schvezov ] * Removing mocks for calendar, clock and calculator. [ Michał Sawicz ] * Add entries needed in the .desktop file and change the name and comment. -- Sergio Schvezov Thu, 04 Apr 2013 19:32:06 -0300 qml-phone-shell (1.68) quantal; urgency=low * fix launching SideStage apps when there's no side stage * CMake cleanups * prevent breakage of local builds * added README for qmluitests -- Michał Sawicz Thu, 04 Apr 2013 02:02:27 +0200 qml-phone-shell (1.67) quantal; urgency=low * use real data in Apps lens Installed category * add --clean option in build scripts * add CODING guide * install test dependencies in build scripts * fix phone app name * Tests for: * Showable * Launcher * HUD parametrized actions -- Michał Sawicz Wed, 03 Apr 2013 00:11:00 +0200 qml-phone-shell (1.66) quantal; urgency=low * Revert Carousel changes due to crash -- Michał Sawicz Thu, 28 Mar 2013 10:51:20 +0100 qml-phone-shell (1.65) quantal; urgency=low * Modifying build dep to require python -- Sergio Schvezov Wed, 27 Mar 2013 16:07:10 -0300 qml-phone-shell (1.64) quantal; urgency=low * Rename ubuntu-gallery to gallery-app * Resetting Apps lens content position when swiping from left * Make the previews more flexible with different screen sizes * Tests for: * HUD * ResponsiveGridView -- Albert Astals Cid Wed, 20 Mar 2013 17:44:44 +0100 qml-phone-shell (1.63) quantal; urgency=low * Rename telephony-app to phone-app * notepad-qml has been renamed to notes-app * Use a ListView for the Carousel component for scalability * Make sure the greeter stays usable for smaller screens * Elide username in greeter when too long * Improve Carousel creation time * CrossFadeImage fixes * Fixed play button size * Remove unused files * Tests for: * Revealer * HUD * Greeter * FilterGrid * CrossFadeImage -- Albert Astals Cid Tue, 19 Mar 2013 17:43:21 +0100 qml-phone-shell (1.62) quantal; urgency=low * Use one SpecialItem in HUD AppStack * Remove outdated manual tests * Improve build scripts * Hook up other HUD Toolbar actions * Tests for: * HUD * Time.js * AnimationControllerWithSignals * Carousel * Autopilot test framework * Force build-dep at python2.7 * Suppress warnings -- Michał Sawicz Fri, 15 Mar 2013 16:26:22 +0100 qml-phone-shell (1.61) quantal; urgency=low * Rename ubuntu-browser to webbrowser-app. -- Olivier Tilloy Fri, 08 Mar 2013 15:55:36 +0100 qml-phone-shell (1.60) quantal; urgency=low * Fixes in sidestage * Reduce memory consumption * Introduced testing -- Michael Zanetti Thu, 07 Mar 2013 12:04:19 +0100 qml-phone-shell (1.59) quantal; urgency=low * Window management: update screenshots manually and only when an application in focus goes out out focus. * Dash apps lens: use screenshot of applications from cache when going back to dash. -- Florian Boucault Sat, 23 Feb 2013 17:48:23 +0000 qml-phone-shell (1.58) quantal; urgency=low * Sidestage: make the handle bigger to make it easier to grab. -- Florian Boucault Fri, 22 Feb 2013 23:20:16 +0000 qml-phone-shell (1.57) quantal; urgency=low * fix right-edge swipe breaking -- Gerry Boland Wed, 20 Feb 2013 14:37:25 +0000 qml-phone-shell (1.56) quantal; urgency=low * use ApplicationManager.keyboardVisible and keyboardHeight for system-wide keyboard detection -- Florian Boucault Wed, 20 Feb 2013 07:05:49 +0000 qml-phone-shell (1.55) quantal; urgency=low * fix seeing flash of previous application when launching a new one -- Florian Boucault Wed, 20 Feb 2013 06:15:01 +0000 qml-phone-shell (1.54) quantal; urgency=low * fix quitting last application again -- Florian Boucault Wed, 20 Feb 2013 03:39:17 +0000 qml-phone-shell (1.53) quantal; urgency=low * fix activation of incorrect application * fix home lens population and increase initial lens search delay * reduce the times of image reloads in carousels * reduce memory consumption by tweaking the background images * indicator visual and behaviour fixes * reduce search crash probability * fix panel over greeter when fullscreen app open * fix sidestage after quitting last mainstage app -- Michał Sawicz Wed, 20 Feb 2013 01:47:27 +0100 qml-phone-shell (1.52) quantal; urgency=low * fix launcher for password-protected users * fix ebay link for ebay web app * allow launching arbitrary apps from command line * show sidestage on sidestage app activation * add sidestage support to the HUD * disable main stage's right edge when sidestage is enabled * destroy greeter contents when hidden to save memory * fix indicators height * visual fixes to HUD * remove spotify from dash * show dash after closing last application * rename qmlproject to unity * add Lenses::loaded property to prevent acting on non-ready Lens objects -- Michał Sawicz Mon, 18 Feb 2013 17:51:34 +0100 qml-phone-shell (1.51) quantal; urgency=low * use lens data in home * increase flicking velocity in dash -- Michał Sawicz Sat, 16 Feb 2013 20:59:58 +0100 qml-phone-shell (1.50) quantal; urgency=low * New side stage feature. * Implemented support for volume control using hardware keys. * reduce the edge detection size to 2 GUs. * use mock music lens. * add an "expandable" property to FilterGrid. * Use the current time as a icon for Time&Date device menu item. Missing device menu plane and volume icons added. * decrease delegate height for those showing contact details. * adjust music and videos lens to latest design spec. -- Florian Boucault Sat, 16 Feb 2013 02:50:24 +0000 qml-phone-shell (1.49) quantal; urgency=low * fix people preview * show page headers when switching lenses -- Michał Sawicz Fri, 15 Feb 2013 11:12:37 +0100 qml-phone-shell (1.48) quantal; urgency=low * more HUD fixes * bottom bar fullscreen behavior fix * clean up stage implementation * reduce memory footprint by reducing image sizes -- Michał Sawicz Fri, 15 Feb 2013 01:49:05 +0100 qml-phone-shell (1.47) quantal; urgency=low * darken view on open indicators * design tweaks for HUD, people lens and video preview * added carousel in music lens * workaround people lens performance * add carousel in people lens and use real data in Home people carousel -- Michał Sawicz Wed, 13 Feb 2013 22:00:32 +0100 qml-phone-shell (1.46) quantal; urgency=low * new people preview * HUD fixes * fullscreen mode support * use external mock lens for videos * rework bottombar communication due to PID mismatch * improve unity build script * rename ubuntu-gallery * connect up the HUD quit button * unfocus HUD text entry on speech recognition * carousel fixes for low item count * new greeter -- Michał Sawicz Tue, 12 Feb 2013 10:24:09 +0100 qml-phone-shell (1.45) quantal; urgency=low * new people carousel * integration of voice and parametrized actions in HUD * xml-based user list for greeter * new people lens layout * refactored top panel -- Michał Sawicz Sun, 10 Feb 2013 13:06:25 +0100 qml-phone-shell (1.44) quantal; urgency=low * latest designs for greeter and video preview * initial integration with HUD service * HUD parametrized actions UI * licensing and packaging fixes * asynchronous loading in video preview to reduce delay * search support in People and Generic lens views -- Michał Sawicz Fri, 08 Feb 2013 00:34:18 +0100 qml-phone-shell (1.43) quantal; urgency=low * carousel view in dash * smarter dash categories * generic lens view * fixes to HUD * fix launching gallery * close preview when launching player * run_on_device tweaks -- Michał Sawicz Wed, 06 Feb 2013 20:34:28 +0100 qml-phone-shell (1.42) quantal; urgency=low * restore video playback -- Michał Sawicz Tue, 05 Feb 2013 23:42:07 +0100 qml-phone-shell (1.41) quantal; urgency=low * Video previews * run_on_device is tunneled through adb forward -- Michael Zanetti Tue, 05 Feb 2013 17:46:57 +0100 qml-phone-shell (1.40) quantal; urgency=low * Fix missing installed files -- Albert Astals Cid Tue, 05 Feb 2013 11:26:46 +0100 qml-phone-shell (1.39) quantal; urgency=low * HUD ui with fake data -- Albert Astals Cid Mon, 04 Feb 2013 18:48:39 +0100 qml-phone-shell (1.38) quantal; urgency=low * fix launching of notepad -- Bill Filler Fri, 01 Feb 2013 03:21:29 -0500 qml-phone-shell (1.37) quantal; urgency=low * QT_QPA_PLATFORM was renamed from hybris to ubuntu, so reflecting at the env variable to make it to work fullscreen at the devices again -- Ricardo Salveti de Araujo Fri, 01 Feb 2013 02:35:44 -0500 qml-phone-shell (1.36) quantal; urgency=low * launch real notepad app * fix launching of mock apps -- Bill Filler Thu, 31 Jan 2013 21:36:05 -0500 qml-phone-shell (1.35) quantal; urgency=low * integrate ubuntu-browser instead of snowshoe -- Bill Filler Thu, 31 Jan 2013 17:33:37 -0500 qml-phone-shell (1.34) quantal; urgency=low * Qt5-proper release -- Michał Sawicz Thu, 31 Jan 2013 17:34:06 +0000 qml-phone-shell (1.33) quantal; urgency=low * New release -- Florian Boucault Thu, 17 Jan 2013 07:39:47 +0700 qml-phone-shell (1.32) quantal; urgency=low * New release -- Michał Sawicz Fri, 21 Dec 2012 21:49:43 +0100 qml-phone-shell (1.31) quantal; urgency=low * New release -- Michał Sawicz Fri, 21 Dec 2012 02:06:37 +0100 qml-phone-shell (1.30) quantal; urgency=low * New release -- Michał Sawicz Wed, 19 Dec 2012 19:29:40 +0100 qml-phone-shell (1.29) quantal; urgency=low * New release -- Florian Boucault Wed, 19 Dec 2012 00:07:55 +0000 qml-phone-shell (1.28) quantal; urgency=low * New release -- Florian Boucault Tue, 18 Dec 2012 19:03:04 +0000 qml-phone-shell (1.27) quantal; urgency=low * New release -- Michał Sawicz Tue, 18 Dec 2012 02:22:35 +0100 qml-phone-shell (1.26) quantal; urgency=low * New release -- Florian Boucault Fri, 14 Dec 2012 18:17:40 +0000 qml-phone-shell (1.25) quantal; urgency=low * New release -- Florian Boucault Thu, 13 Dec 2012 22:51:56 +0000 qml-phone-shell (1.24) quantal; urgency=low * New release -- Florian Boucault Wed, 12 Dec 2012 21:49:50 +0000 qml-phone-shell (1.23) quantal; urgency=low * New release -- Florian Boucault Tue, 11 Dec 2012 20:38:08 +0000 qml-phone-shell (1.22) quantal; urgency=low * New release -- Florian Boucault Tue, 11 Dec 2012 00:13:16 +0000 qml-phone-shell (1.21) quantal; urgency=low * New release with fullscreen launcher fixes -- Bill Filler Fri, 07 Dec 2012 09:36:37 +0000 qml-phone-shell (1.20) quantal; urgency=low * New release -- Florian Boucault Thu, 06 Dec 2012 16:53:05 +0000 qml-phone-shell (1.19) quantal; urgency=low * enable multi-threaded render for apps -- Bill Filler Wed, 05 Dec 2012 17:34:09 +0000 qml-phone-shell (1.18) quantal; urgency=low [ Bill Filler ] * update launcher to use wk2-render (chromeless webkit) for facebook and twitter -- Florian Boucault Wed, 05 Dec 2012 12:20:50 +0000 qml-phone-shell (1.17) quantal; urgency=low * New release -- Florian Boucault Sat, 01 Dec 2012 01:18:03 +0000 qml-phone-shell (1.16) quantal; urgency=low * fix to launch new gallery with correct args -- Bill Filler Thu, 29 Nov 2012 17:04:36 -0500 qml-phone-shell (1.15) quantal; urgency=low * New release -- Florian Boucault Wed, 28 Nov 2012 20:35:03 +0000 qml-phone-shell (1.14) quantal; urgency=low * New release -- Florian Boucault Mon, 26 Nov 2012 21:39:36 +0000 qml-phone-shell (1.13) quantal; urgency=low * New release -- Florian Boucault Fri, 23 Nov 2012 19:47:54 +0000 qml-phone-shell (1.12) quantal; urgency=low * Daily release -- Florian Boucault Thu, 22 Nov 2012 10:21:11 +0000 qml-phone-shell (1.11) quantal; urgency=low * Daily release -- Florian Boucault Wed, 21 Nov 2012 22:06:38 +0000 qml-phone-shell (1.10) quantal; urgency=low * Daily release -- Florian Boucault Wed, 21 Nov 2012 01:04:32 +0000 qml-phone-shell (1.9) quantal; urgency=low * New release -- Florian Boucault Mon, 19 Nov 2012 18:55:51 +0000 qml-phone-shell (1.8) quantal; urgency=low [ Michał Sawicz ] * new codebase -- Florian Boucault Fri, 09 Nov 2012 00:15:19 +0000 qml-phone-shell (1.2) quantal; urgency=low * fix working dir for launch * launch script that sets up ofono and then calls telephony-app -- Bill Filler Mon, 05 Nov 2012 17:28:31 -0500 qml-phone-shell (1.1) quantal; urgency=low * comment out console.log() to prevent crash -- Bill Filler Sun, 28 Oct 2012 22:18:36 +0100 qml-phone-shell (1.0) quantal; urgency=low * Remove install rule for qml-phone-shell.conf -- Ricardo Mendoza Fri, 26 Oct 2012 12:09:03 -0430 qml-phone-shell (0.9) quantal; urgency=low * Remove qml-phone-shell.conf to use new ubuntu-session. -- Ricardo Mendoza Fri, 26 Oct 2012 11:10:04 -0430 qml-phone-shell (0.8) quantal; urgency=low * Fix for both size and scrolling. -- Michael Frey Thu, 25 Oct 2012 14:28:46 +0200 qml-phone-shell (0.7) quantal; urgency=low [Michael Frey] * qml-phone-shell.conf: better setup of env vars and launch via dbus-luanch to properly setup session bus * shellapplication.cpp: don't setup custom env before launching processes -- Bill Filler Sun, 21 Oct 2012 11:32:42 +0200 qml-phone-shell (0.6) quantal; urgency=low * added additional Android env vars to upstart script -- Bill Filler Fri, 19 Oct 2012 09:35:25 -0400 qml-phone-shell (0.5) quantal; urgency=low * added support to launch telephony-app -- Bill Filler Thu, 18 Oct 2012 13:45:25 -0400 qml-phone-shell (0.4) quantal; urgency=low * Creating a release -- Sergio Schvezov Mon, 15 Oct 2012 13:05:34 -0300 qml-phone-shell (0.3) quantal; urgency=low * added support for launching applications -- Bill Filler Fri, 12 Oct 2012 12:42:33 -0400 qml-phone-shell (0.2) quantal; urgency=low * New release that includes upstart support. -- Tony Espy Thu, 11 Oct 2012 17:18:07 -0400 qml-phone-shell (0.1) quantal; urgency=low * Initial release -- Bill Filler Wed, 10 Oct 2012 10:19:53 -0400 unity8 (8.15+17.04.20170404.7-0ubuntu2) zesty; urgency=medium [ Michael Zanetti ] * Make the default store uri point to gnome software center lomiri-0.2.1/debian/compat000066400000000000000000000000021455512424300154320ustar00rootroot000000000000009 lomiri-0.2.1/debian/control000066400000000000000000000161411455512424300156420ustar00rootroot00000000000000Source: lomiri Section: x11 Priority: optional Maintainer: Lomiri Developers Build-Depends: cmake, cmake-extras, dbus-test-runner , debhelper (>= 9), dh-apparmor, dh-migrations:all, dh-python, doxyqml , g++:native, gdb , graphviz , lomiri-schemas (>= 0.1.4~), libdeviceinfo-dev, libevdev-dev, libgeonames-dev (>= 0.2), libgl1-mesa-dev[!arm64 !armhf] | libgl-dev[!arm64 !armhf], libgl1-mesa-dri , libgles2-mesa-dev[arm64 armhf], libglib2.0-dev, libgnome-desktop-3-dev, libgsettings-qt-dev, liblightdm-qt5-3-dev, liblomiri-connectivity-qt1-dev, libpam0g-dev, libpulse-dev, libqmenumodel-dev (>= 0.2.12), libqtmirserver-dev (>= 0.6.0), libqt5sql5-sqlite , libqt5svg5-dev, libqt5xmlpatterns5-dev, libqtdbusmock1-dev (>= 0.7) , libqtdbustest1-dev , libsystemd-dev [linux-any], liblomirisystemsettings-dev, liblomiri-app-launch-dev (>= 0.1.5), liblomiri-download-manager-common-dev, liblomirigestures5-dev (>= 1.3.2030), liblomirigestures5-private-dev (>= 1.3.2030), libudev-dev, libldm-common-dev, liblomiri-api-dev, libusermetricsoutput1-dev, libx11-dev[!arm64 !armhf], libxcb1-dev[!arm64 !armhf], libxi-dev[!arm64 !armhf], mirtest-dev, pkg-config, python3-all:any , python3-setuptools , qml-module-qt-labs-folderlistmodel , qml-module-qt-labs-settings , qml-module-qtmultimedia (>= 5.6) , qml-module-qtqml-statemachine , qml-module-qtquick-layouts , qml-module-qtquick-xmllistmodel , qml-module-qtquick2 , qml-module-qttest , qml-module-lomiri-components (>= 1.3.2030) | qml-module-lomiri-components-gles (>= 1.3.2030) , qml-module-lomiri-layouts , qml-module-lomiri-settings-components , qml-module-lomiri-settings-menus , qml-module-lomiri-test , qtbase5-dev (>= 5.6), qtbase5-dev-tools, qtbase5-private-dev (>= 5.6), qtdbustest-runner , qtdeclarative5-dev (>= 5.6), qtdeclarative5-dev-tools, qtdeclarative5-private-dev (>= 5.6), qml-module-lomiri-content, systemd [linux-any], ttf-ubuntu-font-family , ubports-wallpapers , xvfb , # mirtest pkgconfig requires these, but doesn't have a deb dependency. Bug lp:1633537 libboost-filesystem-dev, libboost-system-dev, Standards-Version: 3.9.4 Homepage: https://github.com/ubports/lomiri Vcs-Git: https://github.com/ubports/lomiri XS-Testsuite: autopkgtest X-Lomiri-Use-Langpack: yes Package: indicators-client Architecture: any Depends: qml-module-lomiri-components (>= 1.3.2030) | qml-module-lomiri-components-gles (>= 1.3.2030), qml-module-qmenumodel1, lomiri (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, Description: Indicators client test application This package contains the client application for indicators used by autopilot Package: lomiri-greeter Architecture: any Depends: lomiri-system-compositor, lomiri (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, Recommends: lightdm, Provides: lightdm-greeter, Description: The Lomiri Greeter The Lomiri greeter is the primary login greeter for Lomiri devices. Package: lomiri Architecture: any Provides: indicator-renderer, notification-daemon Depends: dmz-cursor-theme, gsettings-desktop-schemas, libcap2-bin, libglib2.0-bin, qml-module-biometryd, qml-module-lomiri-components, qml-module-lomiri-layouts, qml-module-lomiri-settings-menus, qml-module-qmenumodel1 (>= 0.9.1-1ubports2~), qml-module-qt-labs-folderlistmodel, qml-module-qt-labs-settings, qml-module-qtmir (>= 0.4.8), qml-module-qtqml-statemachine, qml-module-qtquick-xmllistmodel, qml-module-hfd, qml-module-lomiri-telephony0.1, qtmir, lomiri-system-settings, lomiri-launcher-impl-13, lomiri-common (= ${source:Version}), lomiri-private (= ${binary:Version}), lomiri-private | lomiri-launcher-impl, ${misc:Depends}, ${shlibs:Depends}, Recommends: ayatana-indicator-keyboard, ayatana-indicator-session, lomiri-app-launch (>= 0.1.5), lomiri-greeter-session-broadcast, Breaks: indicator-network (<< 0.5.1+14.10.20141014), lomiri-keyboard (<< 0.100), lomiri-touch-session (<< 0.107), lomiri-scope-tool, Replaces: lomiri-touch-session (<< 0.82~), lomiri-scope-tool, Conflicts: lomiri-system-settings-wizard, Description: Lomiri shell The Lomiri shell is the primary user interface for Lomiri devices. Package: lomiri-common Architecture: all Depends: qml-module-qtquick-layouts, qml-module-lomiri-components (>= 1.3.2030) | qml-module-lomiri-components-gles (>= 1.3.2030), qml-module-lomiri-settings-components, qml-module-lomiri-thumbnailer0.1, qtdeclarative5-lomiri-notifications-plugin (>= 0.1.2) | lomiri-notifications-impl, qttranslations5-l10n, lomiri-application-impl-28, lomiri-notifications-impl-3, lomiri-schemas, lomiri-tests | lomiri-application-impl, ${misc:Depends}, Description: Lomiri shell (common files) The Lomiri shell is the primary user interface for Lomiri devices. . This package contains the QML, graphics and locale files for lomiri. Package: lomiri-autopilot Architecture: all Build-Profiles: Depends: autopilot-qt5 (>= 1.4), gir1.2-glib-2.0, gir1.2-notify-0.7, libqt5test5, libqt5widgets5, ofono-phonesim, python3-autopilot, python3-evdev, python3-fixtures, python3-gi, qttestability-autopilot (>= 1.4), lomiri-ui-toolkit-autopilot (>= 1.3.2030), lomiri (= ${source:Version}), lomiri-tests (= ${source:Version}), url-dispatcher-tools, xvfb, ${misc:Depends}, ${python3:Depends}, Description: Test package for Lomiri shell Autopilot tests for the lomiri package Package: lomiri-tests Architecture: any Multi-Arch: same Build-Profiles: Pre-Depends: ${misc:Pre-Depends}, Depends: dbus-test-runner, parallel, qt5-default, qtdbustest-runner, qtdeclarative5-dev-tools, lomiri (= ${source:Version}), xvfb, ${misc:Depends}, ${shlibs:Depends}, Provides: lomiri-application-impl, lomiri-application-impl-28, lomiri-fake-env, Replaces: lomiri-autopilot (<< 8.02+15.04.20150422-0lomiri1), lomiri-fake-env, Conflicts: lomiri-fake-env, Description: Scripts and mocks for running Lomiri shell tests Provides fake implementations of some QML modules used by Lomiri shell (e.g Lomiri.Application) so that you can run it in a sandboxed environment and scripts to run its test suite. Package: lomiri-private Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends}, Depends: accountsservice-ubuntu-schemas (>= 0.0.7), lomiri-schemas (>= 0.1.4~), qml-module-gsettings1.0, qml-module-qtmultimedia, ${misc:Depends}, ${shlibs:Depends}, Provides: lomiri-launcher-impl, lomiri-launcher-impl-13, Description: Lomiri private libs The Lomiri shell is the primary user interface for Lomiri devices. . This package contains the private libraries for QML and other components only used by the shell. Package: lomiri-doc Section: doc Architecture: all Multi-Arch: foreign Build-Profiles: Depends: ${misc:Depends}, Description: Documentation for Lomiri The Lomiri shell is the primary user interface for Lomiri devices. (documentation) lomiri-0.2.1/debian/copyright000066400000000000000000000077631455512424300162040ustar00rootroot00000000000000Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lomiri Source: http://launchpad.net/lomiri Files: * Copyright: 2011-2013 Canonical Ltd. License: GPL-3 License: GPL-3 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file /usr/share/common-licenses/GPL-3. Files: tests/mocks/LightDM/UsersModel.h tests/mocks/LightDM/Greeter.h Copyright: 2013 Canonical Ltd. 2010-2011 David Edmundson 2010-2011 Robert Ancell License: GPL-3 Files: plugins/Utils/qvariantlistmodel.* tests/unittests/plugins/Utils/modeltest.* tests/plugins/Utils/modeltest.* Copyright: 2013 Digia Plc and/or its subsidiary(-ies). License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3 Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia. For licensing terms and conditions see http://qt.digia.com/licensing. For further information use the contact form at http://qt.digia.com/contact-us. . GNU Lesser General Public License Usage Alternatively, this file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. Please review the following information to ensure the GNU Lesser General Public License version 2.1 requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. . In addition, as a special exception, Digia gives you certain additional rights. These rights are described in the Digia Qt LGPL Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this package. . GNU General Public License Usage Alternatively, this file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. Files: plugins/Cursor/3rd_party/xcursor/xcursor.* Copyright: 2002 Keith Packard License: Keith Packard Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Keith Packard not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Keith Packard makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. . KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. lomiri-0.2.1/debian/indicators-client.install000066400000000000000000000001141455512424300212330ustar00rootroot00000000000000/usr/bin/indicators-client usr/share/applications/indicators-client.desktop lomiri-0.2.1/debian/lomiri-autopilot.install000066400000000000000000000000711455512424300211330ustar00rootroot00000000000000usr/lib/python*/*/lomiri* usr/share/lomiri/unlock-device lomiri-0.2.1/debian/lomiri-common.install000066400000000000000000000002221455512424300204010ustar00rootroot00000000000000usr/share/locale usr/share/lomiri/Components usr/share/lomiri/Notifications usr/share/lomiri/graphics var/lib/polkit-1/localauthority/10-vendor.d lomiri-0.2.1/debian/lomiri-common.udev000066400000000000000000000001511455512424300176770ustar00rootroot00000000000000# Make local foreground session able to inject input KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess" lomiri-0.2.1/debian/lomiri-doc.install000066400000000000000000000001021455512424300176530ustar00rootroot00000000000000doc/devices.conf usr/share/doc/lomiri/ usr/share/doc/lomiri/html/ lomiri-0.2.1/debian/lomiri-greeter.install000066400000000000000000000003261455512424300205530ustar00rootroot00000000000000data/lomiri-greeter-wrapper usr/bin/ data/lomiri-greeter.pkla /var/lib/polkit-1/localauthority/10-vendor.d/ usr/share/lightdm/greeters/lomiri-greeter.desktop usr/share/lightdm/lightdm.conf.d/51-lomiri-greeter.conf lomiri-0.2.1/debian/lomiri-private.install000066400000000000000000000011371455512424300205710ustar00rootroot00000000000000usr/lib/*/liblomiri-private.* usr/lib/*/lomiri/qml/AccountsService usr/lib/*/lomiri/qml/Cursor usr/lib/*/lomiri/qml/GlobalShortcut usr/lib/*/lomiri/qml/Greeter usr/lib/*/lomiri/qml/LightDM usr/lib/*/lomiri/qml/Powerd usr/lib/*/lomiri/qml/ProcessControl usr/lib/*/lomiri/qml/ScreenshotDirectory usr/lib/*/lomiri/qml/SessionBroadcast usr/lib/*/lomiri/qml/UInput usr/lib/*/lomiri/qml/Lomiri usr/lib/*/lomiri/qml/Lomiri usr/lib/*/lomiri/qml/Utils usr/lib/*/lomiri/qml/WindowManager usr/lib/*/lomiri/qml/Wizard usr/lib/*/lomiri/qml/BatteryMonitor usr/share/accountsservice/interfaces usr/share/dbus-1/interfaces lomiri-0.2.1/debian/lomiri-schemas.install000066400000000000000000000000331455512424300205340ustar00rootroot00000000000000usr/share/glib-2.0/schemas lomiri-0.2.1/debian/lomiri-tests.install000066400000000000000000000003431455512424300202570ustar00rootroot00000000000000usr/bin/lomiri-mock-indicator-service usr/lib/*/lomiri/qml/mocks usr/lib/*/lomiri/qml/nonmirplugins usr/lib/*/lomiri/qml/utils usr/libexec/lomiri/tests usr/libexec/lomiri/uqmlscene usr/share/lomiri/mocks usr/share/lomiri/tests lomiri-0.2.1/debian/lomiri-tests.lintian-overrides000066400000000000000000000002261455512424300222470ustar00rootroot00000000000000# ignore unusual interpreter, the shebang is as wanted... lomiri-tests: unusual-interpreter usr/libexec/lomiri/tests/scripts/*.sh #!/usr/bin/parallel lomiri-0.2.1/debian/lomiri.install000066400000000000000000000015151455512424300171210ustar00rootroot00000000000000data/devices.conf etc/lomiri/ data/test.sensors etc/lomirisensors/ usr/bin/lomiri usr/lib/systemd/user/* usr/libexec/lomiri-systemd-wrapper usr/libexec/Xwayland.lomiri usr/share/applications/lomiri.desktop usr/share/lomiri/ApplicationMenus usr/share/lomiri/DeviceConfiguration.qml usr/share/lomiri/DisabledScreenNotice.qml usr/share/lomiri/Greeter usr/share/lomiri/Launcher usr/share/lomiri/OrientedShell.qml usr/share/lomiri/Panel usr/share/lomiri/Rotation usr/share/lomiri/ErrorApplication.qml usr/share/lomiri/qmldir usr/share/lomiri/Shell.qml usr/share/lomiri/ShellApplication.qml usr/share/lomiri/ShellNotifier.qml usr/share/lomiri/ShellScreen.qml usr/share/lomiri/Stage usr/share/lomiri/Tutorial usr/share/lomiri/Wizard var/lib/lomiri/version debian/session-migrations/com.canonical.unity.AccountsService.xml usr/share/dbus-1/interfaces/ lomiri-0.2.1/debian/lomiri.links000066400000000000000000000002231455512424300165660ustar00rootroot00000000000000/usr/share/dbus-1/interfaces/com.canonical.unity.AccountsService.xml /usr/share/accountsservice/interfaces/com.canonical.unity.AccountsService.xml lomiri-0.2.1/debian/lomiri.maintscript000066400000000000000000000000641455512424300200060ustar00rootroot00000000000000rm_conffile /etc/init/boot-hooks/lomiri-setcap.conf lomiri-0.2.1/debian/lomiri.migrations000066400000000000000000000003711455512424300176260ustar00rootroot00000000000000debian/session-migrations/lomiri-accountsservice-schema-name-change.py debian/session-migrations/lomiri-cache-migration.sh debian/session-migrations/lomiri-gsettings-schema-name-change.sh debian/session-migrations/lomiri-wizard-has-run-migration.sh lomiri-0.2.1/debian/rules000077500000000000000000000041161455512424300153160ustar00rootroot00000000000000#!/usr/bin/make -f # -*- makefile -*- include /usr/share/dpkg/default.mk # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DPKG_GENSYMBOLS_CHECK_LEVEL=4 export NO_PNG_PKG_MANGLE=1 export QT_SELECT=qt5 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) # Skip tests on the archs they are known to be flaky with current configuration testskip_architectures := arm64 armhf powerpc ppc64el s390x ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) CONFIGURE_OPTS += "-DNO_TESTS=ON" endif %: dh $@ --parallel --fail-missing --with python3,migrations override_dh_auto_configure: # Debian defines CMAKE_INSTALL_LOCALSTATEDIR as /usr/var, which is wrong. # So until Debian bug 719148 is fixed, do it ourselves. dh_auto_configure -- \ -DCMAKE_INSTALL_LOCALSTATEDIR="/var" \ -DDISPLAYED_DISTRO_NAME="Ubuntu Touch" \ $(CONFIGURE_OPTS) override_dh_auto_build: # doc is not a default target dh_auto_build -- -O all doc override_dh_auto_test: # Run the entire test battery # Parallel tests have a risk of starting xvfb on the same DISPLAY multiple times, # causing the whole battery to fail. ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) ifneq (,$(filter $(DEB_HOST_ARCH),$(testskip_architectures))) -dh_auto_test --no-parallel -- -O -k xvfballtests else dh_auto_test --no-parallel -- -O -k xvfballtests endif endif override_dh_install: ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) # install autopilot tests cd tests/autopilot; \ set -ex; for python in $(shell py3versions -r); do \ $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \ done; \ cd $(CURDIR) else rm -f debian/tmp/usr/share/lomiri/unlock-device rm -rf debian/tmp/usr/lib/*/lomiri/qml/mocks endif dh_install -X'*.pyc' --fail-missing # use private lib directories override_dh_makeshlibs: dh_makeshlibs -Nlomiri-private -Nlomiri-tests override_dh_shlibdeps: # Some mock libraries link against liblightdm-qt5-3.so which we want to # avoid, since we only really link against our mock one, not the system one. dh_shlibdeps -XlibMockAccountsService-qml.so -Llomiri-private lomiri-0.2.1/debian/session-migrations/000077500000000000000000000000001455512424300200715ustar00rootroot00000000000000lomiri-0.2.1/debian/session-migrations/com.canonical.unity.AccountsService.xml000066400000000000000000000052551455512424300275740ustar00rootroot00000000000000 lomiri-0.2.1/debian/session-migrations/lomiri-accountsservice-schema-name-change.py000077500000000000000000000046131455512424300305420ustar00rootroot00000000000000#!/usr/bin/python3 # -*- coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # Copyright (C) 2016 Canonical Ltd. # Copyright (C) 2021 UBports Foundation # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; version 3. # # This program is distributed in the hope that it will be useful, but WITHOUTa # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # this program. If not, see . # # Authored by: Ratchanan Srirattanamet import dbus import os import sys from typing import List, Tuple from pathlib import Path AS_SCHEMAS: List[Tuple[str, str]] = [ ('com.canonical.unity.AccountsService', 'com.lomiri.shell.AccountsService'), ('com.canonical.unity.AccountsService.Private', 'com.lomiri.shell.AccountsService.Private'), ] # session-migration says we should be idempotent. However, we cannot determine # that from AccountsService as it will happily provide us the default value in # the schema. So, we need an out-of-band method to determine if we have run this # or not. In this case, we simply use a marker file. marker_path = Path('~/.config/lomiri/accountsservice-schema-migration-has-run').expanduser() if marker_path.exists(): print(f'{marker_path} exists, which mean the migration has run. Exit now.') sys.exit(0) system_bus = dbus.SystemBus() manager_proxy = system_bus.get_object('org.freedesktop.Accounts', '/org/freedesktop/Accounts') object_path = manager_proxy.FindUserById( os.getuid(), dbus_interface='org.freedesktop.Accounts' ) user_proxy = system_bus.get_object('org.freedesktop.Accounts', object_path) user_properties_if = dbus.Interface(user_proxy, dbus.PROPERTIES_IFACE) for (src_schema, dst_schema) in AS_SCHEMAS: print(f'Migrating {src_schema} to {dst_schema}') src_props = user_properties_if.GetAll(src_schema) for (key, value) in src_props.items(): user_properties_if.Set(dst_schema, key, value) marker_path.parent.mkdir(mode=0o755, parents=True, exist_ok=True) marker_path.touch(mode=0o644) print('Migrating Lomiri AccountsService settings is successful.') lomiri-0.2.1/debian/session-migrations/lomiri-cache-migration.sh000077500000000000000000000032011455512424300247470ustar00rootroot00000000000000#!/bin/sh -euf # # Copyright (C) 2023 UBports Foundation # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Authored by: Ratchanan Srirattanamet # Note: can afford to do destructive migration since this is just a cache. # Contains old qmlcache, most of which is obsoleted due to renames. old_path="${HOME}/.cache/Canonical/unity8" if [ -d "$old_path" ]; then rm -r "$old_path" fi # Contains qmlcache, but this time a new one. old_path="${HOME}/.cache/Canonical/lomiri" new_path="${HOME}/.cache/UBports/lomiri" if [ -d "$old_path" ]; then if ! [ -d "$new_path" ]; then mkdir -p "$(dirname "$new_path")" mv "$old_path" "$new_path" else rm -r "$old_path" fi fi # rmdir remove folder only if it's empty. It should be by now, but just in case. rmdir --ignore-fail-on-non-empty "${HOME}/.cache/Canonical" # Contains "windowstatestorage.sqlite". old_path="${HOME}/.cache/unity8" new_path="${HOME}/.cache/lomiri" if [ -d "$old_path" ]; then if ! [ -d "$new_path" ]; then mv "$old_path" "$new_path" else rm -r "$old_path" fi fi lomiri-0.2.1/debian/session-migrations/lomiri-gsettings-schema-name-change.sh000077500000000000000000000030551455512424300273320ustar00rootroot00000000000000#!/bin/bash -euf # Copyright (C) 2021 UBports Foundation # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Authored by: Ratchanan Srirattanamet set -o pipefail DCONF_SOURCE_DIRS="/com/canonical/unity/ /com/canonical/unity8/" DCONF_TARGET_DIR="/com/lomiri/shell/" # session-migration says we should be idempotent. We simply check if the target # is not empty as to not overwrite things that is set manually. target_content=$(dconf dump $DCONF_TARGET_DIR) if [ -n "$target_content" ]; then echo "${DCONF_TARGET_DIR} is not empty. Perhaps the migration has already" \ "happened, and/or the user has set additional settings." exit 0 fi # `dconf load` will merge the input to the target dir (instead of overwriting). # As all the keys from the both of original schemas are not overlapping, we # should be able to just dump both dirs into the target dir. for d in $DCONF_SOURCE_DIRS; do dconf dump "$d" | dconf load $DCONF_TARGET_DIR done echo "Setting for Lomiri migrated successfully." lomiri-0.2.1/debian/session-migrations/lomiri-wizard-has-run-migration.sh000077500000000000000000000022051455512424300265620ustar00rootroot00000000000000#!/bin/sh -euf # Copyright (C) 2021 UBports Foundation # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 as # published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . # # Authored by: Ratchanan Srirattanamet OLD_FILE="${HOME}/.config/ubuntu-system-settings/wizard-has-run" NEW_FILE="${HOME}/.config/lomiri/wizard-has-run" if [ -e "$NEW_FILE" ]; then echo "${NEW_FILE} exists. Perhaps the migration has already" \ "happened, and/or the user has run the wizard since." exit 0 fi if [ -e "$OLD_FILE" ]; then mkdir -p "$(dirname "$NEW_FILE")" cp -a "$OLD_FILE" "$NEW_FILE" echo "Lomiri wizard-has-run file is migrated." filomiri-0.2.1/debian/shlibs.local000066400000000000000000000000431455512424300165310ustar00rootroot00000000000000liblomiri-private 0 lomiri-private lomiri-0.2.1/debian/tests/000077500000000000000000000000001455512424300153765ustar00rootroot00000000000000lomiri-0.2.1/debian/tests/autopilot.sh000077500000000000000000000005241455512424300177560ustar00rootroot00000000000000#!/bin/sh # log all commands and abort on error set -xe if [ ! -f /system/build.prop ]; then echo "WARNING: Skipping autopilot test, will only run on devices at the moment." exit 0 fi initctl --session stop lomiri autopilot3 run --verbose --format xml --output "${ADT_ARTIFACTS}/lomiri.xml" lomiri initctl --session start lomiri lomiri-0.2.1/debian/tests/control000066400000000000000000000003011455512424300167730ustar00rootroot00000000000000Tests: qmluitests.sh Restrictions: allow-stderr Depends: dpkg-dev, lomiri-tests, Tests: autopilot.sh Restrictions: allow-stderr, isolation-machine, Depends: lomiri-autopilot, lomiri-0.2.1/debian/tests/qmluitests.sh000077500000000000000000000004331455512424300201470ustar00rootroot00000000000000#!/bin/sh # -*- Mode: sh; indent-tabs-mode: nil; tab-width: 4 -*- # log all commands and abort on error set -xe DEB_HOST_MULTIARCH=$(dpkg-architecture -qDEB_HOST_MULTIARCH) export ARTIFACTS_DIR="${ADT_ARTIFACTS}" /usr/lib/$DEB_HOST_MULTIARCH/lomiri/tests/scripts/xvfballtests.sh lomiri-0.2.1/doc/000077500000000000000000000000001455512424300135575ustar00rootroot00000000000000lomiri-0.2.1/doc/CMakeLists.txt000066400000000000000000000033271455512424300163240ustar00rootroot00000000000000# # Documentation # find_package(Doxygen) find_program(DOT_EXECUTABLE dot /usr/bin) find_program(DOXYQML_EXECUTABLE doxyqml /usr/bin) if (NOT DOXYGEN_FOUND OR NOT DOT_EXECUTABLE OR NOT DOXYQML_EXECUTABLE) message(WARNING "Cannot generate documentation: doxygen, doxyqml and/or graphviz not found") else() file(GLOB_RECURSE DOC_FILES ${CMAKE_BINARY_DIR}/include/*.h ${CMAKE_SOURCE_DIR}/include/*.h ${CMAKE_SOURCE_DIR}/src/*.h ${CMAKE_SOURCE_DIR}/src/*.cpp ${CMAKE_SOURCE_DIR}/plugins/*.h ${CMAKE_SOURCE_DIR}/plugins/*.cpp ${CMAKE_SOURCE_DIR}/plugins/*.qml ${CMAKE_SOURCE_DIR}/plugins/*.js ${CMAKE_SOURCE_DIR}/qml/*.qml ${CMAKE_SOURCE_DIR}/qml/*.js ${CMAKE_SOURCE_DIR}/tests/autopilot/*.py ${CMAKE_SOURCE_DIR}/tests/utils/*.h ${CMAKE_SOURCE_DIR}/tests/utils/*.cpp ${CMAKE_SOURCE_DIR}/tests/utils/*.qml ${CMAKE_SOURCE_DIR}/tests/utils/*.js ${CMAKE_SOURCE_DIR}/tests/autopilot/lomiri/shell/emulators/*.py ${CMAKE_SOURCE_DIR}/tests/autopilot/lomiri/process_helpers.py) string(REPLACE ";" " " DOXYGEN_INPUT "${DOC_FILES}") configure_file(${PROJECT_SOURCE_DIR}/doc/Doxyfile.in ${PROJECT_BINARY_DIR}/doc/Doxyfile @ONLY IMMEDIATE) add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/doc/html/index.html COMMAND ${DOXYGEN_EXECUTABLE} ${PROJECT_BINARY_DIR}/doc/Doxyfile DEPENDS ${PROJECT_BINARY_DIR}/doc/Doxyfile ${DOC_FILES}) add_custom_target(doc DEPENDS ${PROJECT_BINARY_DIR}/doc/html/index.html) install(DIRECTORY ${PROJECT_BINARY_DIR}/doc/html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/${PROJECT_NAME} OPTIONAL) endif() lomiri-0.2.1/doc/DirectionalDragArea.svg000066400000000000000000000277621455512424300201420ustar00rootroot00000000000000 image/svg+xml maxDeviation wideningAngle distanceThreshold Position of touch press Valid area for touch position during recognition lomiri-0.2.1/doc/Doxyfile.in000066400000000000000000003051031455512424300156740ustar00rootroot00000000000000# Doxyfile 1.8.6 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all text # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv # for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = "Lomiri" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify an logo or icon that is included in # the documentation. The maximum height of the logo should not exceed 55 pixels # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo # to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = @PROJECT_BINARY_DIR@/doc # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = YES # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = @PROJECT_SOURCE_DIR@ @PROJECT_BINARY_DIR@ # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = @PROJECT_SOURCE_DIR@ @PROJECT_BINARY_DIR@ # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a # new page for each member. If set to NO, the documentation of a member will be # part of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. ALIASES = "accessors=\par Accessors:\n" "notifier=\par Notifier:\n" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" # will allow you to use the command class in the itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, Javascript, # C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C # (default is Fortran), use: inc=Fortran f=C. # # Note For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by by putting a % sign in front of the word # or globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined # locally in source files will be included in the documentation. If set to NO # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO these classes will be included in the various overviews. This option has # no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # (class|struct|union) declarations. If set to NO these declarations will be # included in the documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file # names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. # The default value is: system dependent. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the # todo list. This list is created by putting \todo commands in the # documentation. # The default value is: YES. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the # test list. This list is created by putting \test commands in the # documentation. # The default value is: YES. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if ... \endif and \cond # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES the list # will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. Do not use file names with spaces, bibtex cannot handle them. See # also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = NO # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO doxygen will only warn about wrong or incomplete parameter # documentation, but not about the absence of documentation. # The default value is: NO. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. # Note: If this tag is empty the current directory is searched. INPUT = @DOXYGEN_INPUT@ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: http://www.gnu.org/software/libiconv) for the list of # possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank the # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, # *.qsf, *.as and *.js. FILE_PATTERNS = *.cpp \ *.h \ *.py \ *.js \ *.qml # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # # # where is the value of the INPUT_FILTER tag, and is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = *.qml=doxyqml # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER ) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = YES # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # function all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES, then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = YES # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see http://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the config file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in # which the alphabetical index list will be split. # Minimum value: 1, maximum value: 20, default value: 5. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- # defined cascading style sheet that is included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefor more robust against future updates. # Doxygen will copy the style sheet file to the output directory. For an example # see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the stylesheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # http://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to NO can help when comparing the output of multiple runs. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: http://developer.apple.com/tools/xcode/), introduced with # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a # Makefile in the HTML output directory. Running make will produce the docset in # that directory and running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on # Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler ( hhc.exe). If non-empty # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated ( # YES) or that it should be included in the master .chm file ( NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated ( # YES) or a normal table of contents ( NO) in the .chm file. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- # folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location of Qt's # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the # generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # http://www.mathjax.org) which uses client side Javascript for the rendering # instead of using prerendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from http://www.mathjax.org before deployment. # The default value is: http://cdn.mathjax.org/mathjax/latest. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use + S # (what the is depends on the OS and browser, but it is typically # , /