pax_global_header00006660000000000000000000000064145554252720014525gustar00rootroot0000000000000052 comment=d3bc3b7296a01f6b020e32080c9c40dd1c656b05 lomiri-app-launch-0.1.9/000077500000000000000000000000001455542527200150555ustar00rootroot00000000000000lomiri-app-launch-0.1.9/.gitignore000066400000000000000000000007341455542527200170510ustar00rootroot00000000000000CMakeCache.txt CMakeFiles/ CTestTestfile.cmake Makefile cmake_install.cmake *-trace.[ch] cgroup-reap-all liblomiri-app-launch/LomiriAppLaunch-2.gir liblomiri-app-launch/LomiriAppLaunch-2.typelib liblomiri-app-launch/liblomiri-app-launch.so.2* liblomiri-app-launch/proxy-socket-demangler.c liblomiri-app-launch/proxy-socket-demangler.h liblomiri-app-launch/lomiri-app-launch-2.pc application-snap.conf info-watcher-zg build/ obj-*/ debian/lomiri-app-launch-desktop.click-hook lomiri-app-launch-0.1.9/AUTHORS000066400000000000000000000010521455542527200161230ustar00rootroot00000000000000Adrian Bunk Alfred Neumayer Andreas Pokorny Cat-master21 Charles Kerr Chris Townsend Colin Watson Dalton Durst Dan Chapman Didier Roche Dimitri John Ledkov Guenter Schwann Guido Berhoerster Jamie Strandboge Jami Kettunen Jdstrand Ken VanDine Larry Price Leo Arias Loïc Minier Luca Weiss Lukasz 'sil2100' Zemczak Marius Gripsgard Martin Pitt Michael Terry Mike Gabriel Oliver Grawert Pete Woods Ratchanan Srirattanamet Ricardo Mendoza Robert Ancell Robert Bruce Park Rodney Rodney Dawes Sebastien Bacher Ted Gould TheKit Thomi Richards lomiri-app-launch-0.1.9/CMakeLists.txt000066400000000000000000000113651455542527200176230ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) project(lomiri-app-launch VERSION 0.1.9 LANGUAGES C CXX) ########################## # Version Info ########################## set(SOVERSION_MAJOR 0) set(SOVERSION_MINOR 0) set(SOVERSION_PATCH 0) set(ABI_VERSION ${SOVERSION_MAJOR}) ########################## # Options ########################## option (ENABLE_TESTS "Build tests" ON) option (ENABLE_COVERAGE "Enable coverage reports" ON) option (USE_SYSTEMD "Use systemd jobs manager instead of POSIX" ON) option (ENABLE_MIRCLIENT "Enable helper session using mirclient" ON) set(AA_EXEC_PATH "/usr/bin/aa-exec" CACHE STRING "Path to aa-exec (AppArmor)") set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}") set(PACKAGE ${CMAKE_PROJECT_NAME}) ########################## # Dependent Packages ########################## find_package(PkgConfig REQUIRED) if (USE_SYSTEMD) pkg_check_modules(SYSTEMD systemd) if (NOT SYSTEMD_FOUND) message(FATAL_ERROR "SYSTEMD has not been found!") endif () endif () find_package(GObjectIntrospection REQUIRED) include(GNUInstallDirs) include(CheckIncludeFile) include(CheckFunctionExists) include(UseGlibGeneration) include(UseGdbusCodegen) include(UseConstantBuilder) include(UseLttngGenTp) # Workaround for libexecdir on debian if (EXISTS "/etc/debian_version") set(CMAKE_INSTALL_LIBEXECDIR ${CMAKE_INSTALL_LIBDIR}) set(CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}") endif() set(pkglibexecdir "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") set(CMAKE_INSTALL_PKGLIBEXECDIR "${CMAKE_INSTALL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") set(CMAKE_INSTALL_FULL_PKGLIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") set(CMAKE_INSTALL_FULL_PKGDATADIR "${CMAKE_INSTALL_FULL_DATADIR}/${CMAKE_PROJECT_NAME}") if(NOT LOMIRI_APP_LAUNCH_ARCH) execute_process(COMMAND dpkg-architecture -qDEB_BUILD_MULTIARCH OUTPUT_VARIABLE LOMIRI_APP_LAUNCH_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE ) if(NOT LOMIRI_APP_LAUNCH_ARCH) message(FATAL_ERROR "LOMIRI_APP_LAUNCH_ARCH is empty!") endif() endif() add_compile_options( # Because we believe in quality -Wall -Werror -g -pthread ) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17") pkg_check_modules(GLIB2 REQUIRED glib-2.0) include_directories(${GLIB2_INCLUDE_DIRS}) pkg_check_modules(GOBJECT2 REQUIRED gobject-2.0) include_directories(${GOBJECT2_INCLUDE_DIRS}) pkg_check_modules(GIO2 REQUIRED gio-2.0 gio-unix-2.0) include_directories(${GIO2_INCLUDE_DIRS}) pkg_check_modules(JSONGLIB REQUIRED json-glib-1.0>=1.1.2) include_directories(${JSONGLIB_INCLUDE_DIRS}) pkg_check_modules(ZEITGEIST REQUIRED zeitgeist-2.0) include_directories(${ZEITGEIST_INCLUDE_DIRS}) pkg_check_modules(CLICK REQUIRED click-0.4>=0.4.18) include_directories(${CLICK_INCLUDE_DIRS}) pkg_check_modules(DBUS REQUIRED dbus-1) include_directories(${DBUS_INCLUDE_DIRS}) if(${ENABLE_TESTS}) pkg_check_modules(DBUSTEST REQUIRED dbustest-1>=14.04.0) include_directories(${DBUSTEST_INCLUDE_DIRS}) endif() pkg_check_modules(LTTNG REQUIRED lttng-ust) include_directories(${LTTNG_INCLUDE_DIRS}) if(ENABLE_MIRCLIENT) pkg_check_modules(MIR REQUIRED mirclient) include_directories(${MIR_INCLUDE_DIRS}) endif() pkg_check_modules(LIBERTINE libertine) include_directories(${LIBERTINE_INCLUDE_DIRS}) if(${LIBERTINE_FOUND}) add_definitions(-DHAVE_LIBERTINE=1) endif(${LIBERTINE_FOUND}) pkg_check_modules(CURL libcurl>=7.47) include_directories(${CURL_INCLUDE_DIRS}) pkg_check_modules(LOMIRI_API REQUIRED liblomiri-api>=0.1.0) include_directories(${LOMIRI_API_INCLUDE_DIRS}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") #################### # lomiri-app-launch-desktop.click-hook #################### configure_file("data/lomiri-app-launch-desktop.click-hook.in" "${CMAKE_CURRENT_SOURCE_DIR}/debian/lomiri-app-launch-desktop.click-hook" @ONLY) add_subdirectory(data) add_subdirectory(liblomiri-app-launch) add_subdirectory(tools) add_subdirectory(utils) # testing & coverage if (ENABLE_TESTS) enable_testing () add_subdirectory(tests) endif () if (ENABLE_COVERAGE) find_package(CoverageReport) set(filter-list) list(APPEND filter-list "/usr/include") list(APPEND filter-list "${CMAKE_SOURCE_DIR}/tests/*") if (NOT ${CMAKE_BINARY_DIR} STREQUAL ${CMAKE_SOURCE_DIR}) list(APPEND filter-list "${CMAKE_BINARY_DIR}/*") endif() ENABLE_COVERAGE_REPORT( TARGETS lomiri-launcher launcher-static desktop-hook TESTS app-store-legacy application-icon-finder-test application-info-desktop-test helper-test helper-handshake-test info-watcher-zg jobs-base-test jobs-systemd liblal-test liblal-cpp-test list-apps snapd-info-test FILTER ${filter-list} ) endif () lomiri-app-launch-0.1.9/COPYING000066400000000000000000001045131455542527200161140ustar00rootroot00000000000000 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-app-launch-0.1.9/ChangeLog000066400000000000000000006663361455542527200166530ustar00rootroot000000000000002024-01-28 Mike Gabriel * Release 0.1.9 (HEAD -> main, tag: 0.1.9) 2023-12-14 Marius Gripsgard * Merge branch 'personal/peat-psuwit/desktop-hook-localized-icon' into 'main' (1a7a0ef) 2023-11-30 Ratchanan Srirattanamet * desktop-hook: handle localized Icon & SymbolicIcon (1c70176) 2023-10-15 Mike Gabriel * Release 0.1.8 (fc4bfff) (tag: 0.1.8) 2023-08-23 Mike Gabriel * Merge branch 'personal/sunweaver/cmake-if-clauses' into 'main' (7550cae) 2023-06-05 Mike Gabriel * CMakeLists.txt: Don't use '${}' with variables in if-clauses. Variable expansion in if-clauses works without it. (b0288cf) 2023-07-27 Marius Gripsgard * Release 0.1.7 (4f3e5e2) (tag: 0.1.7) 2023-06-08 Mike Gabriel * Merge branch 'headers' into 'main' (e58213c) 2023-06-07 Luca Weiss * Add missing headers for GCC13 (c05610b) 2023-06-06 Mike Gabriel * Merge branch 'personal/peat-psuwit/10-remove-x-ubuntu-desktop' into 'main' (031cdd0) 2023-05-29 Ratchanan Srirattanamet * desktop-hook: also cleanup old files created pre-rename (a8b3bc2) Fixes: https://gitlab.com/ubports/development/core/lomiri-app-launch/-/issues/10 2023-06-06 Mike Gabriel * Merge branch 'personal/peat-psuwit/protect-manager' into 'main' (80d6029) 2023-05-31 Ratchanan Srirattanamet * Add some thread safety to _observer_{add,delete}_app_* (3d4c246) 2023-06-05 Ratchanan Srirattanamet * Merge branch 'personal/sunweaver/systemd-target' into 'main' (a909711) 2023-06-05 Mike Gabriel * data/CMakeLists.txt: Use tab indentation (white-space only). (b28d8f0) * data/CMakeLists.txt: Add comment. (ec89734) * CMakeLists.txt: Assure that systemd.pc is installed in build env. Fail otherwise, if CMake variable USE_SYSTEMD is set to ON. (dce9d4a) * Merge branch 'personal/peat-psuwit/cache-prune' into 'main' (2d9e7de) 2023-05-24 Ratchanan Srirattanamet * session-migration: remove old ubuntu-app-launch cache (829b5f1) 2023-06-05 Mike Gabriel * Merge branch 'personal/peat-psuwit/bus-failfast' into 'main' (c387c5e) 2023-05-25 Ratchanan Srirattanamet * tests/liblal-test: fail fast when old GDBusConnection lingers (03bda9f) * Revert "tests/liblal-test: skip testing for "bus connection gone" for now" (a236a21) 2023-04-23 Marius Gripsgard * Merge branch 'personal/fredldotme/splashscreen' into 'main' (01675ca) 2023-04-21 Alfred Neumayer * lib & tests: Decide splash screen behavior based on X-Lomiri-Touch (8a875e0) 2023-04-12 Marius Gripsgard * Merge branch 'personal/fredldotme/hidesplashonlibertine' into 'main' (97a51be) 2023-03-19 Alfred Neumayer * tests: Adapt to corrected ShowSplash behavior (7c15e82) 2023-02-27 Alfred Neumayer * lib: Hide Splash screens in Libertine apps (3027f88) 2023-03-01 Mike Gabriel * Release 0.1.6 (d69c7a1) (tag: 0.1.6) 2023-02-27 Alfred Neumayer * Merge branch 'personal/sunweaver/fix-SOVERSIONing-MR' into 'main' (1b24ac0) 2023-02-27 Mike Gabriel * liblomiri-app-launch/: Consistently use SOVERSION_MAJOR everywhere, stop using VERSION_MAJOR (empty string). (543e198) 2023-02-27 Guido Berhoerster * Merge branch 'personal/sunweaver/use-project-version-in-pkgconfig' into 'main' (6fcfbbc) 2023-02-26 Mike Gabriel * liblomiri-app-launch/CMakeLists.txt: Use VERSION_MINOR and VERSION_PATCH in library SOVERSIONing and rename variables. (9c223fa) * liblomiri-app-launch/lomiri-app-launch.pc.in: Use PROJECT_VERSION in pkg-config file. (41be2de) * CMakeLists.txt: Post release fix of VERSION variable. (a94953b) 2023-02-25 Mike Gabriel * Release 0.1.5 (412ddd8) (tag: 0.1.5) 2023-02-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/disable-bus-connection-freed-test' into 'main' (caf4fd8) 2023-02-25 Ratchanan Srirattanamet * tests/liblal-test: skip testing for "bus connection gone" for now (242175f) 2023-02-24 Mike Gabriel * Merge branch 'personal/peat-psuwit/14-lal-application-end.target' into 'main' (66897b3) 2023-02-23 Ratchanan Srirattanamet * jobs-systemd: add Conflicts so that Lomiri unit can stop all apps (f1bef2c) 2023-02-18 Mike Gabriel * Merge branch 'personal/NotKit/libertine' into 'main' (8f45802) 2023-02-18 TheKit * tests: list-apps: fix expected number of apps with Libertine enabled (0f60475) 2023-01-18 TheKit * tests: fix libertined startup argument for verbose output (2ebaacb) 2023-01-17 TheKit * debian: compile with Libertine support again (9b2b376) 2023-02-15 Mike Gabriel * Merge branch 'c++17' into 'main' (6bcec11) 2023-02-12 Luca Weiss * Upgrade C++ standard to C++17 (9ab2178) 2023-02-05 Mike Gabriel * Release 0.1.4 (ee37568) (tag: 0.1.4) 2023-02-03 Mike Gabriel * Merge branch 'personal/gberh/preserve-app_dir' into 'main' (f41c874) 2023-02-03 Guido Berhoerster * Pass APP_DIR to the application (52a3249) 2023-02-02 Mike Gabriel * Merge branch 'fix-failed-clicks' into 'main' (fe45774) 2023-01-08 Jami Kettunen * jobs-systemd: Set unit CollectMode to "inactive-or-failed" (042e532) 2023-01-31 Guido Berhoerster * Merge branch 'personal/sunweaver/typo-fixes' into 'main' (e42c58c) 2023-01-30 Mike Gabriel * utils/systemd-helper-helper.c: Typo fix. (5d96d45) * liblomiri-app-launch/jobs-systemd.cpp: Typo fix. (e958d7a) 2023-01-25 Jami Kettunen * Merge branch 'personal/peat-psuwit/lomiri45-handle-reloading' into 'main' (cd90c37) 2023-01-24 Ratchanan Srirattanamet * job-systemd: don't signal sigStopped/sigStarted on systemd reload (e8906a6) Fixes: https://gitlab.com/ubports/development/core/lomiri/-/issues/45 2023-01-20 Mike Gabriel * Merge branch 'personal/mariogrip/splashshow' into 'main' (203bf0a) 2023-01-20 Marius Gripsgard * Bump patch version and start new development entry (f5fa430) * application: Add Splash.show property based on ether NoDisplay or x-l-Splash-Show (818bfb0) 2023-01-09 Marius Gripsgard * Release 0.1.3 (1f805d8) (tag: 0.1.3) 2023-01-09 Mike Gabriel * Merge branch 'personal/mariogrip/semver' into 'main' (886e07a) 2023-01-09 Marius Gripsgard * Add proper versioning (using semver) (f55e684) 2023-01-03 Mike Gabriel * Merge branch 'personal/mariogrip/disablemirclient' into 'main' (3d3cd8d) 2023-01-03 Marius Gripsgard * Add option to disable mirclient (0ddd7d4) 2023-01-02 Marius Gripsgard * Release 0.1.2 (b781fbd) (tag: 0.1.2) 2022-12-12 Mike Gabriel * Merge branch 'personal/fredldotme/applaunchsnaps' into 'main' (4ed38ca) 2022-12-12 Alfred Neumayer * jobs-systemd: Set DESKTOP_FILE_HINT environment variable (fec877e) 2022-12-05 Marius Gripsgard * Merge branch 'personal/fredldotme/oneshot-to-simple' into 'main' (8bb4fb8) 2022-12-03 Alfred Neumayer * jobs-systemd: Change unit type to "simple" (1f13a9b) 2022-12-02 Mike Gabriel * Merge branch 'personal/fredldotme/fixquickswitch' into 'main' (9af8662) 2022-11-30 Alfred Neumayer * jobs-systemd: Fix crash when closing a Content Hub source (80fa42d) 2022-11-26 Mike Gabriel * Merge branch 'cat-master21-main-patch-82762' into 'main' (cd50795) 2022-11-25 cat-master21 * fix(jobs-systemd.cpp): move `#include "lomiri-app-launch-trace.h"` (fbaf492) * fix(jobs-posix.cpp): move `#include "lomiri-app-launch-trace.h"` (decb433) * fix: move lomiri-app-launch-trace.h out of extern "C" (b67f9e7) * fix: lomiri-app-launch-trace.h is C++ (4c36a6b) 2022-11-23 Mike Gabriel * Merge branch 'personal/peat-psuwit/sa_siginfo' into 'main' (f08d8fd) 2022-11-21 Ratchanan Srirattanamet * systemd-helper-helper: correctly set SA_SIGINFO (7c094e0) 2022-11-16 Ratchanan Srirattanamet * Merge branch 'unpriv-helper-apparmor' into 'main' (6bf5013) 2022-11-16 Guido Berhoerster * Make use of AA_EXEC_PATH and terminate aa-exec arguments (ee880e0) 2022-11-15 Guido Berhoerster * Run untrusted helpers under Apparmor confinement (931c688) * Print environment when debug logging is enabled (d2ee6cd) 2022-10-12 Ratchanan Srirattanamet * Merge branch 'fix-unprivileged-helpers' into 'main' (890c778) 2022-09-23 Guido Berhoerster * Only use a snap helper for snap packages (5b93655) 2022-09-13 Mike Gabriel * Merge branch 'main' into 'main' (994889d) 2022-08-20 Adrian Bunk * Add missing #include that caused FTBFS with gcc 12 (a4240b2) 2022-07-19 Mike Gabriel * Merge branch 'void-fixes' into 'main' (e6c38ea) 2022-05-28 Jami Kettunen * Rename previously missed ubuntu -> lomiri components (125d3af) * CMake: Allow setting LOMIRI_APP_LAUNCH_ARCH from distro packaging (00dcc94) 2022-05-27 Jami Kettunen * Make coverage reports optional (a8cce20) 2022-03-29 Jami Kettunen * Make dbustest-1 an optional dependency (7ebb5a8) 2022-03-26 Jami Kettunen * Make systemd an optional dependency (0978f2c) 2022-05-27 Jami Kettunen * CMake: Remove pointless extra enable_testing() call (2c57a5e) * CMake: Capitalize ENABLE_TESTS option (f402eee) * CMake: Bump mininum version requirement to 3.5 (5335473) 2022-05-31 Ratchanan Srirattanamet * Merge branch 'ubuntu-compat' into 'main' (a2c78e6) 2022-05-24 Ratchanan Srirattanamet * Merge branch 'personal/mariogrip/no-app-test' into 'main' (9e56780) 2022-05-24 Guido Berhoerster * Add fallback support for X-Ubuntu-* desktop file keys (51a08a9) 2022-04-27 Ratchanan Srirattanamet * Merge branch 'fix-object-path' into 'main' (13be91c) 2022-04-27 Guido Berhoerster * Improve robustness by checking return value in socket-demangler (6148d37) * Fix typo in DBus object path (f3c88b8) 2022-04-20 Marius Gripsgard * cruft: Remove lomiri-app-test (a7257e9) 2022-01-05 Dalton Durst * Merge branch 'sentinel-warnings' into 'main' (e54300b) 2022-01-01 Luca Weiss * Fix missing sentinel warnings (c8cd41b) 2021-12-17 Marius Gripsgard * Release 0.1.1 (dc2888c) (tag: 0.1.1) 2021-12-02 Dalton Durst * Merge branch 'mr/upstream-debian-patches' into 'main' (02975a7) * Merge branch 'personal/peat-psuwit/gitignore-obj' into 'main' (2edcd7b) * Merge branch 'personal/peat-psuwit/Wignored-qualifiers' into 'main' (9ae42dd) 2021-12-02 Ratchanan Srirattanamet * .gitignore: ignore obj-*/ (0863198) * liblomiri-app-launch: remove `const` from some function declaration (b5fd1c5) 2021-11-12 Mike Gabriel * lomiri-app-test/data/lomiri-app-test.desktop.in: Add Keywords= key. (ec859ae) * Various typo fixes. Thanks to Debian lintian's spellchecker. (7afd5ae) * liblomiri-app-launch/CMakeLists.txt: Fix LomiriAppLaunch-0.gir API version (was: 3, should be: 0). (bdb60c6) 2021-07-07 Rodney * Merge branch 'personal/peat-psuwit/tmp-not-qpa-wayland' into 'main' (6e9b1b9) 2021-05-04 Ratchanan Srirattanamet * jobs-*: don't force Wayland QPA for legacy apps (a22128a) 2021-06-29 Ratchanan Srirattanamet * Merge branch 'ubports/focal_-_click' into 'main' (7413d33) 2021-06-14 Rodney Dawes * Fix typo in comment. (2dfdfd1) 2021-04-28 Rodney Dawes * Bring back support for click packages (e8a31d4) 2021-05-12 Rodney * Merge branch 'personal/peat-psuwit/fix-safer-googletest' into 'main' (2eda869) 2021-05-12 Ratchanan Srirattanamet * libual-cpp-test: fix com.test.multiple mock setup (ade7caf) Fixes: https://gitlab.com/ubports/core/lomiri-app-launch/-/issues/2 2021-05-07 Rodney * Merge branch 'glib-extern' into 'main' (5486b97) 2021-04-04 Luca Weiss * Fix compile error with new glib versions (60b12ac) 2021-03-23 Rodney * Merge branch 'personal/peat-psuwit/start-building-master' into 'main' (6db9025) 2021-03-20 Ratchanan Srirattanamet * Update Jenkinsfile to use shared library (9c86f67) 2021-03-19 Ratchanan Srirattanamet * Move Jenkinsfile to debian/ per the new guideline (c9b6bd5) * Remove ubports.no_test to start using test again (fe5c5ad) * Start new Debian changelog entry; remove Debian revision number (610150e) 2021-03-19 Marius Gripsgard * Merge branch 'personal/peat-psuwit/sync-debian-pkg' into 'main' (a6e287f) * Merge branch 'personal/peat-psuwit/test-support-usrmerge' into 'main' (1e6f397) * Merge branch 'personal/peat-psuwit/test-flaky-dbus' into 'main' (dd38f7d) 2021-03-09 Ratchanan Srirattanamet * tests: repeat flaky tests a few times (1ba5a5a) * glib-thread: drain the event sources (892c7f1) 2021-01-28 Ratchanan Srirattanamet * debian/*: Adopt DEB packaging from official Debian package where appropriate (0b3d285) 2021-01-26 Ratchanan Srirattanamet * tests: account for modern Linux's /usr merge (a129a9c) 2020-05-18 Mike Gabriel * NEWS: Add file (post-release). (f9e1931) * release 0.0.90 (f44bb14) (tag: 0.0.90) * add ChangeLog (generated from Git history) (7c09a77) * Jobs backend: Partially undo 114418b3, use jobs-systemd backend again for now. (0ec0703) * Merge branch 'mr/posix-jobs-backend' into 'master' (06703aa) 2018-12-30 Luca Weiss * Remove the xmir helpers (22878a9) * Add 'POSIX' jobs backend (114418b) 2018-11-01 Luca Weiss * Fix 'missing sentinel in function call' warning (2f0472f) 2020-05-18 Mike Gabriel * Merge branch 'mr/reset-abi-to-0-0' into 'master' (f1a5a93) * CMakeLists.txt: Set ABI_VERSION to 0.0 (starting anew with Lomiri). (75b0eb5) 2020-03-06 Marius Gripsgard * As we are breaking dbus alredy, rename upstart to lomiri (98b9d4c) * Also rename missed files (ab23cc8) 2020-03-05 Marius Gripsgard * Don't build in parallel (1a82d0f) * Rename missing file (d606fee) 2020-03-04 Marius Gripsgard * Fixup test and wrongfully renamed unity7 (e1011c0) * Quick and dirty rename to lomiri (ee597d7) 2019-12-28 Marius Gripsgard * Update jenkinsfile (9d2c8b4) 2019-12-26 Marius Gripsgard * Ignore deprecated GTimeVal from zeitgeist (1090af5) 2019-12-25 Marius Gripsgard * Disable tests (597f2fa) 2018-11-02 Rodney Dawes * Fix more tests. (456c701) 2018-09-29 Rodney Dawes * Try to build without libertine. (6b8a2ba) 2018-09-28 Rodney Dawes * Make libertine optional. (6b6c92d) 2018-09-27 Rodney Dawes * Use correct namespace for XMirEnable. (94dead0) * Use from_raw to instantiate xMirEnable. (483e4e1) * Remove the xmir helpers. (193d1a0) 2018-06-04 Dan Chapman * Merge pull request #1 from dobey/no-whoopsie (bde4305) 2018-06-03 Rodney Dawes * Remove dependency on libwhoopsie. (3af554e) 2018-04-11 Marius Gripsgard * Since we are using wayland now, we should not use X by default (bb399f7) * Make sure to use the wayland QT_QPA_PLATFORM (c68bb9b) 2018-02-23 Marius Gripsgard * Fix 'quick fix' mistake (83b0460) * Run in parallel (7770f1e) * Let libubuntu-app-launch4 depend on unity8-pasted (f5e9562) * Run xmir in rootless mode (2edf9c8) * Depend on unity8-pasted (e1557ea) 2018-02-14 Marius Gripsgard * Add jenkinsfile (27e5844) * Build for bionic (37a6f36) * Add gcc7 support (136458d) * Add support for libaries in /usr/local/lib (ca905b4) 2018-02-12 Marius Gripsgard * Remove libcgmanager (41c9206) 2017-04-04 Bileto Bot * Releasing 0.12+17.04.20170404.2-0ubuntu1 (946fa24) 2017-04-04 Ted Gould * Force GTK and Qt backends when using XMir (6e7e3a1) * Provide equality operators for Application and Application::Instance objects. (LP: #1677345) (bba4f54) 2017-04-04 Bileto Bot * Bump version for new AppID methods (7006d50) 2017-04-04 Ted Gould * Wait with a timeout for the libertine service to start (8f4f9fc) * Watch system folders for apps added and removed (LP: #1630997, #1672392) (c83d0e8) * Cleanup registry references to make them consistent (LP: #1676361) (942ed12) * Remove arbitrary change (655b442) * Fix the tests too (ef9342c) * Registry changes (a49c03d) * Merge registry cleanup changes (4da9fef) * Change around the zgWatcher and realize the test is really just a placeholder (cabca67) * Ensure the jobs-systemd tests have a legacy appstore to use (6cb2b5f) * Fix zgwatcher setup (37e71f2) 2017-04-03 Ted Gould * Clean up the handling of the ZG Watcher (05f8e37) * Adapt tests to changes (6a7006d) * Now that the Impl is ready at init we can get the bus then too (7b479af) * Switch App Stores over to using smart poitners (885cc5a) * Switch the jobs over to smart pointers (0c40df9) * Make it so that we don't set all the objects on init of Impl, just with setters and getters in the Registry object. (05cf146) * App equality test (236e1ca) * Forgot newlines (020b16b) * Add tests for the glue code in registry impl (45fd584) * Split out the test directory helper (bc1a3f7) * C++ style (fbfc49b) * Add handlers for app added and removed (a766640) 2017-03-31 Ted Gould * Move the code into the xmir-helper (e040ba5) * Reenable ABI check (7fc6a15) * Merge the registry cleanup branch (c98c85f) * Try and avoid conflicts (5606bf3) * Force the GTK and Qt backgrounds under X11 (ed6139c) * Disable ABI check for now (a0502cd) * Comparison operators for helpers too (ccf03f3) 2017-03-30 Ted Gould * Some forgotten prototypes (3dbfda8) * Instance equality (5180fd3) * Application equality (a6d5932) * Add doc strings for our new functions (cf71dca) * Change how we wait for the libertine service so that we can timeout earlier (b39b423) 2017-03-30 Michael Terry * Fix version (8756f61) * Fix tests now that click apps are gone (266a10e) * Merge trunk (085662b) 2017-03-29 Ted Gould * Making each test having it's own PID (a65a1a0) * Handling if there is a shadow delete (130d0f7) * Detect a shadow deletion (5100731) * Added app test (c950548) * Get the other futures while we're here. No future is safe! (eb53d05) * Make it so the futures don't block forever (6ccfbeb) * Handle unknown files as well. Odd. (096920a) * Ensure creating the ZG watcher doesn't build its own registry (887160a) * Avoid double allocation (99918a2) * Test for removing an app (25ac71f) * Better errors (c0ec57f) * Making it so the registry mock doesn't allocate two implementations (0e62076) 2017-03-28 Ted Gould * Merging the registry refactoring branch (b81530b) * Testing cleanups (c427540) * Make sure to do a call that causes the subscription (177ce5e) * Make sure we fill the cached user unitPaths before using them (efc2461) * Grab the userbus and set it up when we need it not in the constructor (9573ea3) * Remove another internal shared registry (f2d3d32) * Cleaning up for the change in prototypes (c653e73) * Use the find on the registry implementation (6c247f6) * Making find and discover be on the registry implementation (cc50531) * Split out more Registry impls (d0d81ec) 2017-03-28 Bileto Bot * Releasing 0.11+17.04.20170328-0ubuntu1 (ebaea94) 2017-03-28 Larry Price * Explicitly depend on libertine-xmir-tools (#1671938). (540b2ab) * Remove xmir from ubuntu-app-launch depends (1b24371) 2017-03-27 Ted Gould * Switching to a shared impl pointer (2c6afc5) * Making the implementation a shared pointer (7d86b1e) 2017-03-24 Ted Gould * Got a real test with results. (885bd48) * Adding a small class to make test directories (b87535e) * Skeleton test for the legacy app store (5326709) 2017-03-24 Larry Price * merge (acc0d62) 2017-03-23 Ted Gould * Make sure the monitors are on the UAL thread (82d45e9) * Cleaning up the code and adding some comments (aaa43e9) * Separate out the monitors (71e8a63) 2017-03-22 Ted Gould * New signals! It's like Christmas for templates (7bdd80a) 2017-03-21 Ted Gould * Setup some signals, let's get this party started! (6df8c8a) * Quick registry access (fe76a84) * Autoformat changes (97c3e70) * Keeping a weak registry pointer (c22a50f) * Setting up the base watchers (92da385) 2017-03-21 Bileto Bot * Releasing 0.11+17.04.20170321-0ubuntu1 (5ac8652) 2017-03-21 Pete Woods * Run make format target following managed memory branch (b10cd63) * Switch to reference counted memory management in all c++ code (cfe2798) 2017-03-21 Ted Gould * Removing support for Click (45b84e1) * Remove Upstart (76fe6e8) 2017-03-21 Bileto Bot * Migrate untrusted helpers to C++ interfaces and jobs backend (76c1372) 2017-03-21 Ted Gould * Put all application specific static functions into a single AppStore object (64549a3) 2017-03-20 Ted Gould * Change to allApplicationJobs_ (e20b40a) * Merge through an updated jobs-helpers branch (52f2884) * Merge updated jobs-helpers (99b6f79) * Change the name of the allJobs variable to make it easier to understand it is for all *applicaiton* jobs (7e0a0f4) * Ignore the error case that we already got a return from the child (7553a74) * Switch to using waitid() (72898ff) * Ensure that the status we're waiting on if for the child to exit (5fc9656) * Making logic easier to read and printing more debug messages (3971130) * Putting in a debug message (9807d0b) * Put a full path in to make sure there's nothing funky going on (d16e51f) * Clean up set_exec tests a bit (392bee4) 2017-03-20 Pete Woods * Run make format following managed memory branch (74aca78) * Remove mistakenly added include (647d81b) * Switch to reference counted memory management in all c++ code (796c40e) 2017-03-18 Ted Gould * Remove the click appstore (dd152bd) * A collection of fixes (abdf3e0) * Remove Upstart objects from docs (96644c7) * Grab upstream fixes (fc9a20b) * Fix the name of the base class (f95cdd5) * App Store docs fix (ca63b13) * Update docs to have the app stores and not all the C warning noise. (3d8ca2a) * Drop click docs (00db08e) * Drop CG Manager variables (6505a06) * Apparently no one had documented any of these (5da173d) * Typos (0427bab) * Remove the 'u's (39d166b) * Split out appexec and the URLs (2e18415) * Put a -- in to separate the URLs (b522433) * Print demangler in use (7044493) 2017-03-17 Ted Gould * Have a flag for not resetting the unit, so we can debug it (ce3a9a5) * Allow the demangler through (03f2eb0) * Clean up debug messages (a247821) * More complex sigchld handler (9b2bfa0) * Switch to a sigaction instead of a handler (0e32411) * Bump version number (2ac3cc4) 2017-03-16 Ted Gould * Re-enable ABI checking (38cb817) * Throw an error on invalid appids (5e37d41) * Use find for helpers that may have legacy appids (0b9cd51) 2017-03-15 Ted Gould * Do it the same way twice (96ea0a1) * Ensure that the systemd mock has completely shutdown before continuing (5a49ab5) * Upstart fixes (06f20da) * Disable ABI checking for a bit (7d2c132) 2017-03-15 Larry Price * merge (bfa6bfb) 2017-03-14 Ted Gould * s390x needs more than that (801b3f1) * Quick hack for bootstrapping s390x (cc030cc) * Systemd helper helper should be in libexec dir (44c4b79) * Remove old environment variable helpers (bdbbde2) * Removing upstart headers (cfaf24d) * Remove a few upstart headers (27bfd60) * Ensure our running app has some graphical interface (147cd59) * Make sure a single app doesn't bring us down (c6a09b1) * Fix list (8e24cd4) * Merge future trunk (7e900ea) * Merge future trunk (4775752) * Merge future trunk (538bf47) * Merge future trunk (760252c) * Enable and fix the failing observer test (758ce85) * Try to make failed less racy (d53f86d) * Fix to match changed desktop file (ea3ca9d) * Debug help (c74cb30) * Port appid tests to snapd (e6bc2dc) * Catch null pkgInfo and handle it (97e29ec) * Move the stop helper test to helpers that exist (62c6334) * Fix types in HelperInstanceList (5db4206) * Fix types in HelperList (6a6e3ae) * Fix StartSessionHelper typo (cf92962) * Mark failing observer as disabled right now so it doesn't hang our test suite (212ef90) * Since we're basically rewriting libual-test.cc anyway, autoformat it (5c88758) * Port the SetExec test to the new world (2a92ff8) * Remove upstart dirs and make sure we have a dbus-user-session (e2b41a7) * Make types easier to read (6cb595b) * Remove unneeded return type (5c67f65) * Demangler support (bb97d6e) * Demangler support (ac27544) * Add in support for the demangler (a6d8673) 2017-03-13 Ted Gould * Merge to realign things (f91f730) * Grabbing the jobs-helper updates (871b3c5) * Format fix (82129a4) * Merge jobs-helper changes (3e11d6f) * Get the helper helper from the build environment (2918616) * Adding a note about legacy exec perhaps being needed (6514b8e) * Make the socket work better with exceptions (bebe744) * Flesh out setExec (f60faa4) * Update the helper helper (425d5ff) * Setup the exec line behavior for the helpers (846e32f) * Setup to inject a default environment into the helpers (b70a3ae) * Getting libual-test.cc in a decent place, now to refine (54137e8) * Setting a name for the wait task (253f67d) 2017-03-13 Larry Price * remove libertined dependency (4a61ce9) * if dropping libertine-tools, will need direct dep on libertined (or liblibertine) (d50741b) * Remove xmir and libertine-tools dependencies and move xmir-tools to libual4 (27eb908) * on second thought, there shouldn't be a hard requirement on version (84d991d) * Explicitly depend on libertine-xmir-tools (e3ab762) * merge (f5069c0) 2017-03-13 Michael Terry * Restore i != 0 check (06ca56a) 2017-03-10 Bileto Bot * Releasing 0.10+17.04.20170310-0ubuntu1 (c3315d8) 2017-03-10 Michael Terry * Use the "mir" interface (not the "unity8" interface) to decide if an app supports Mir or not. (a3f5fae) 2017-03-10 Larry Price * Add all icon directories to search paths regardless of context. (LP: #1669913) (269c367) 2017-03-10 Ken VanDine * Removed click related manual tests and correct-job-type tests which no longer seems to apply (97b5221) 2017-03-09 Michael Terry * Add test for how trying to create non-graphical app Application object fails (6c674b2) * Merge trunk (3108290) 2017-03-08 Larry Price * reorder themes and add suru (f29b8dc) * format (9af1923) * gnome (305a28f) * logic for finding any type of icon (91aad33) 2017-03-08 Michael Terry * Use isalpha and isdigit (9a6efc9) 2017-03-07 Bileto Bot * Releasing 0.10+17.04.20170307.1-0ubuntu1 (1a163df) 2017-03-07 Ted Gould * XMir by default for Legacy apps (LP: #1668429) (98f765e) * Adding in libertine-tools dependency needed for XMir helpers (d5850ca) * Only default to XMir if there isn't a touch key set (b3dfc61) 2017-03-06 Ted Gould * Fix tests to map changes to enabling XMir (8da24fe) * Adjust to changed desktop file (ab90dcf) * Wrong bitwise operator vs. logic (da70a87) 2017-03-03 Ted Gould * Fix Pid test (509352b) * Remove click test (f875e94) * Make it so the proxy can kill its own timeout (63475b7) * Helper times and making sure we keep the dbus connection (199e3bf) * Fix the OOM test (3d5c0db) * Get MultiPause fixed (2fabb48) * Fix the start stop test (8efb1bd) * Fixing the stop tests (93420ea) * Change unit name to make regex more reliable (eb15812) * Get the HelperStarted going again (ae34c51) * Use a for loop, it works (b2a55ac) * Separate out and have a store for only the helper (9e8835f) * Ensure that we don't look for a handshake on non-application starts (18368ef) * Adding in a MockJobsManager (67f4cf6) * Add a manager mock for apps given an appid (e877c0d) 2017-03-02 Ted Gould * Default legacy apps to XMir (828fa32) * Fix most of the Unity signal tests (72a73e2) 2017-03-02 Michael Terry * Drop prototype for removed function (9f967a7) 2017-03-01 Ted Gould * Adding exceptions to the systemd mock so that the test can pass (5ebbe00) 2017-03-01 Michael Terry * Add some tests and drop a duplicated method (3e65a0d) 2017-03-01 Ted Gould * Move over starting test to a libertine app (21568c5) 2017-02-28 Ted Gould * Fix listing and parsing (00edef2) * Get a lot of application testing moved over (0f0c4ac) * Make it so that we can insert an appstore mock (b308588) 2017-02-28 Michael Terry * Add new persistentID and dbusID API (7d89ac1) 2017-02-28 Ted Gould * Removing more ENABLE SNAPPY (29e9048) * Removing an ENABLE_SNAPPY flag (5278c03) 2017-02-25 Ted Gould * Merging app-store branches (273a390) * Update to jobs helpers (6b7c0d6) 2017-02-24 Ted Gould * Merge app-store (12860f9) * List apps to use app stores (587b032) * Moving the snap stuff (12d9ef6) * Moving all the libertine code (102634b) * Move all the legacy functions (c6e35fe) * Move the Click code into the store (502b378) * Fleshing this out to all the different types (efec15d) * Getting an app store implementation prototyped (fe5c342) 2017-02-23 Ted Gould * Move the list functions into the app store (1c2cf17) * Use the app store for the info watchers (aececfa) * Move create over to being appstore based (fd27775) * Drop the discover tools and move them over to app stores (3eae58b) * Tying the app stores in (3bc9c7c) * Adding in basic app store functionality (a65c482) * Merging future trunk (8b61910) * Merging future trunk (edec0d3) * Update to future trunk (0f73401) * Merge the future trunk (fc9bb90) * Grabbing the ZG ordering branch (3f23604) * Test location updates (ec3c8f6) * Test location updates (e072211) * Update to moved snappy-xmir (4b54a67) * Moving the test utility (242df92) 2017-02-22 Ted Gould * Moving oom-adjust into utils (37b2120) * Moving the helpers into the lib directory now that no one needs them othar than the lib (ecbe3c0) * Merging in upstart removal (9ef70e6) * Remove the untrusted helper type util (2df3f23) * Merge the jobs helper branch (3e0784d) * Move the snappy utils into their own directory (01295aa) * Set up a systemd helper (4350d9a) 2017-02-21 Ted Gould * Generate time based instance IDs (2fb5f13) * Move set_exec into the C++ world, drop the Upstart implementation (f50de5e) * Fixing TODOs and passing instance IDs (acf6861) 2017-02-17 Ted Gould * Move over to the C++ signals (1c7147d) * Get helper signals setup (b685366) 2017-02-16 Michael Terry * Merge in zg-ordering (f8eef99) 2017-02-15 Ted Gould * Moving the start helpers over to C++ (9e5d862) * Ensure the dbus stuff gets setup on the UAL thread (b93b05d) * Flesh out the MirFD class a bit (2cf3390) * Setup a proxy object to handle the Mir FD proxy code (d6f9365) * Add URI vector function (2569366) * Converting stop helpers over to C++ code (5f1cb9e) * Turn an existing instance into an object (7c89c26) * Connect in the instance ID (0fda1fd) * Grab the getInstance function from the rm-rf-upstart branch (c968506) * Adding in a helper implementation header (5ba8ad8) * Move the list functions to be based on the C++ implementation (dccea2f) * Refactoring to be more jobs manager based (4624115) * Remove the click name from the helper implementation class (80d9423) * Make it so that runningHelpers uses the jobs backend (213738d) * Switch to the job subclasses just returning AppIDs that base class can turn into applications (9b244d0) 2017-02-15 Ken VanDine * Removed click related manual tests and correct-job-type tests which no longer seems to apply (2fc323b) 2017-02-15 Ted Gould * Remove the click implementation (a44d636) 2017-02-15 Bileto Bot * Releasing 0.10+17.04.20170215.1-0ubuntu1 (9f24b42) 2017-02-15 Ted Gould * Run the libertine-service in tests for new libertine >= 1.6 (15f84b1) * Provide a popularity info item and a signal for info updating (402bb61) * Add missing virtual destructors (15cba67) * Remove unused log functions (7120d95) 2017-02-15 Ken VanDine * Adds Application::Instance::focus and Application::findInstance(pid_t) API (e9c5ac5) 2017-02-15 Bileto Bot * New upstream version (947ce7f) 2017-02-15 Ted Gould * Increase debug messages from libertine service (8823ae1) * Goin' 'mock' (a5b7627) 2017-02-14 Ted Gould * Switching over libual-cpp to not have Upstart mocks (d7067f5) * Add in more waits (347f58f) 2017-02-14 Michael Terry * Pay attention to mir interface when deciding whether to use xmir or not (eb4edf4) 2017-02-14 Ted Gould * Adding a wait for libertined to start in list apps (bb6f529) 2017-02-13 Ted Gould * Add in the libertine service to API tests (66a2ab7) * Make sure we have libertined for our tests (302cb53) * Add the libertine service to exec-util-test.cc (38650d5) * Make list-apps test use libertine service (940903b) * Creating a helper class for the service (e43f2f5) 2017-02-10 Ken VanDine * removed bootstrap hack (a11ec22) * deal with bootstrapping (e57e3e1) * revert bootstrap hack (1a2d0e0) * handle bootstrapping in the ppa (cb076ff) 2017-02-10 Ted Gould * Make sure we have a default value for the popularity call (24d8623) * s/Zietgeist/Zeitgeist/ (f105cf1) * Move to the code slightly so that it doesn't conflict (e8f74cd) 2017-02-10 Ken VanDine * Removed the last of ApplicationFocused (631e952) 2017-02-09 Ted Gould * Adding a skeleton info watcher zg test (5c35a0b) * Put in virtual destructors that should have been there originally (b0ab1f6) * Remove utility tests (5f83f8d) * Dropping small upstart job tools (2486acc) * Remove upstart jobs (eb6bcee) * Forgot a header (5e9b7a1) * Drop upstart jobs backend (75fde96) * Drop build stuff for upstart (ea1341b) * Test the popularity field to make sure it grabs it from our mock ZGWatcher (814ec95) * Some debug messages and make a function virtual (a7a2911) * Make it so that we can handle nullptr registries without crashing (5b129d3) * Adding an AppID to the desktop tests (ab5a1f6) 2017-02-09 Ken VanDine * merged prereq (946079c) * Added Breaks/Replaces for libubuntu-app-launch2-dev (03a97fb) * Added Breaks/Replaces for libubuntu-app-launch2-dev (c8e7d4b) 2017-02-08 Ted Gould * Update to trunk (11871c6) * Connecting in gathering the list and connecting the signals (591127e) * Threading through zgWatcher into the desktop info (88ac17a) * Adding in the popularity property (fd3fc42) * Adding a ZG class for info watching (8222649) * Setup our info watcher creation hierarchy (4cadcbe) * Adding in a base info watcher class (25d97d9) 2017-02-08 Ken VanDine * merged prereq (c7a031a) * Make sure we build the Gir to match the API version (a17c973) * merged abi3_abi4 branch (4bd6de1) * New upstream version (725e3c3) * Removed tools/ubuntu-app-focus.cpp (71c131b) * Removed un-needed appFocused (36a297c) 2017-02-08 Ted Gould * Drop log tests (8ce6473) * Drop the log path functions (e7fa68b) 2017-02-08 Ken VanDine * Cleanup UnityFocusRequest signal (768fb39) * Run the tests during package build (7cf7614) * Ensure UnityFocusRequest is emitted (8bac636) * merged trunk (0712067) * Moved the findInstance(pid_t) implementation to the application base class (3bdf771) 2017-02-07 Ken VanDine * we don't need focus on the upstart backend (61d403a) * Added focused to ubuntu-app-watch (021bff5) * fixed return for appFocused (04bc024) 2017-02-07 Ted Gould * Setting up the signal for app info changing (46ea558) * Updating to trunk (fa749b6) 2017-02-06 Ken VanDine * More work on the app_focused signal (6cf09d3) 2017-02-06 Bileto Bot * Releasing 0.9+17.04.20170206-0ubuntu1 (9ad35e0) 2017-02-06 Ted Gould * Reset failed units so they can be tried again (LP: #1655754) (d6055ae) 2017-02-03 Ted Gould * Attaching bug (f2fc250) * Add comment to describe the function (6ed6dd8) * Check to ensure we get the reset on a failure (a4a8685) * Add a test that catches the error (fa060b2) 2017-02-03 Ken VanDine * merged trunk (dadc9f1) * merged mir-0.26 fixes (d83da1e) 2017-02-03 Ted Gould * Merging future trunk (e62698d) * Merging future trunk (3ed03d4) 2017-02-03 Ken VanDine * merged reset-units branch (26fe79c) * merged prereq (dc2e7e1) 2017-02-02 Ted Gould * Reset units if they fail (1af9d50) * Grab the install root fixes too (3a851ae) 2017-02-02 Bileto Bot * Releasing 0.9+17.04.20170202.2-0ubuntu1 (793481f) 2017-02-02 Ted Gould * Handle deprecated functions in Mir 0.26 (280f7bc) * Prioritize 'unity8' interfaces over other supported interfaces (fc63812) * Make UAL relocatable for Snappy installs (LP: #1623694) (56e270f) * SystemD backend added (19e23f9) * Put on the dunce cap and sit in the corner (801efd8) * Special case legacy apps on Unity8 from debs (443707b) 2017-02-02 Ken VanDine * merged install-root branch (87a25b6) * merged jobs-systemd branch (4c27e4c) 2017-02-01 Ted Gould * If we don't have a MIR_SOCKET use the default one (2fb3b07) * Remove mir_client_fd_callback and mir_wait_for() from the mir mock (a2a22ba) * Remove mir_wait_for() in ubuntu-app-test as well (8d585ba) * Remove use of deprecated mir_wait_for() (ef2d528) * Making sure everything is on the right bus (d05d396) * A read failure is a helper failure (b650b28) * Dropping debug message (6e16481) 2017-02-01 Ken VanDine * merged prereq (ded9194) 2017-01-31 Ken VanDine * Merged jobs-systemd branch (46c7448) 2017-01-31 Ted Gould * Add a test for and make sure we're getting the right interface (783df08) * Add a function to get the interface name (65a11e3) * Move debug outside of the print loop (34b1978) * Make sure we're gettin' data (3edeb1d) * Handle larger possible pids (e2b7e4f) 2017-01-31 Ken VanDine * Merged prereq (ea97a01) 2017-01-31 Ted Gould * Return const pointer (6bb9f27) * Don't store if we have the variable (bdcd3d8) * Make sure we only use references in loops (144511f) * Cache snap env var (53955e3) * Fix docs to include default path for LEGACY_EXEC (23be535) 2017-01-30 Ted Gould * Getting these variables figured out (bdf4226) * Put the wrong environment var into the documentation (9f4c947) 2017-01-28 Ted Gould * Use the g_array functions to avoid some casts (7b2f782) * Don't crash free memory, works but is odd (d11ae46) 2017-01-27 Ted Gould * Test the exec line and ensure it doesn't fail (4d2a7b3) * Fix a bunch of snap apps, that weren't working, for 'OMG I can't believe I did this' reasons (63ecf71) * Update to trunk (f92cfc1) * Merge changes to jobs-systemd (2412e3f) * Overrides (1a6b184) 2017-01-27 Charles Kerr * Clearer sorting (990ffd0) 2017-01-27 Ted Gould * Fixing up the failure signals (ab43873) * Switching to static_cast<> (602b20b) * Remove try/catch that isn't needed (fa3d7de) * Don't get all the jobs until we're sure we have a registry (29cd5df) * Making sure we calculate the string once (b2f2884) * Make sure we don't copy commands (ff6ab63) * Make lists into real lists (e5ea628) 2017-01-27 Charles Kerr * Cleaner name finding (c4d3916) 2017-01-27 Ted Gould * Avoid calling getenv() twice (b679fc5) * Move declarations (542f591) * Getting rid of a TODO (0edcdf4) * Be louder about not having an exec line (2c14012) * Use std::vector<> constructor instead of a loop (0f3bec0) * Name lamba better (78b414f) 2017-01-26 Ted Gould * Make parseUnit and unitName const (b9a7c24) * Make the signal handlers safer (d2760f9) * Protect more against null GVariant pointers (1688343) * Remove some printouts when we cancel (2fec3de) * We don't need no stinkin' std::string object (4d144dc) * Charles hates returns on void functions (eed12b3) * Header reshuffle (aa35291) * Comment formatting, whatevs (1b14f74) * Const getAllJobs() (9b4d8c4) * Make getInstance a const method (24b20a4) * Merge Trunk (082f373) * Update to trunk (6fd3c7a) * Merging future trunk (9575d66) 2017-01-25 Ted Gould * Switch to forcing the comparison funciton as it wasn't working (7aca50c) * Add an app that has multiple interfaces (341ba29) 2017-01-25 Ken VanDine * Added Application::findInstance(pid_t) (71910ae) 2017-01-24 Ken VanDine * findInstance(pid_t) impl (af8441e) 2017-01-24 Ted Gould * Fix the ordering of the calls to snapd (aa96060) * Remove the SUPPORTED_INTERFACES and make sure we explicitly fall back to XMir (11124f8) * Make it so that we replace a job on stop (f2b958f) 2017-01-24 Ken VanDine * merged prereq (2ade10d) 2017-01-24 Ted Gould * Switching functions (bf401d2) * Grab QT_ and XDG_ for legacy apps on deb installs (e127268) * Update to current jobs-systemd (2fa0fc1) 2017-01-24 Bileto Bot * Releasing 0.9+17.04.20170124-0ubuntu1 (d5c4ce7) 2017-01-24 Ted Gould * Jobs interface specific tests (1a703ae) * Make the signals support finding the instance of the application (LP: #1589637) (ffb453e) * Move the signals into the jobs classes (e9fccd8) * Abstract out jobs backends and make Upstart one (8f72fdb) * Change signals into C++ core::signal objects (LP: #1590442) (afbb17a) 2017-01-23 Ted Gould * Block off more API breaks this time (9d214a6) * Putting this off for gcc 5.4 (87782d0) * Drop parallel to make builds more reliable (a628470) * Making it so that we throw on errors when building the mock. (4d542f8) * Okay, that was probably turning it up too high (7745356) * Fail fast (3713fdd) * Adding virtual destructors, acc says they're fine. (5f9abab) * Fix listing of targets (aff5131) * Make required libraries required (cad920d) * Fix for GCC 5.4 (cf7d51b) 2017-01-20 Ted Gould * Check signal removed (bf3ef53) * Signal new test (e3e9e48) * Adding in some tests of the instance objects even though they only call into the manager (e242c3b) * Environment checking (feaf995) * First parts of verifying the transient calls (00217f0) * Make a launch test (8c0b242) * Reduce the amount of data needed (79ee2c9) * Clearing and checking multiple stopping (756a8ba) * Check the stop call code (2f8ff90) 2017-01-19 Ted Gould * Adding a test for the PID functions (fa43f7c) 2017-01-19 Ken VanDine * merged prereq (4ada441) 2017-01-19 Ted Gould * Test to ensure the user bus path is correct (cd6cadf) * Apply formatting (6f15019) * Making it so that we have two multiple and a single (d04168b) * Update to trunk (5b0d34f) * Merge from trunk (10d25ed) * A description (b0d7840) * Make sure to use the registry we have instead of allocating a new one (0da6246) * Fixing up debug messages (a274622) * Don't emit signals on the initial getting a list of units (84a55ed) * Setup some 'GetUnit' and more complex mocking for jobs tests (fa8c342) * Removing fancy async calls (36f4f73) 2017-01-19 Ken VanDine * merged trunk (5b55ef0) * Added ubuntu-app-focus for testing (957cce5) 2017-01-18 Ted Gould * Switch to the local socket to avoid conflicts (296ab4d) * Update to trunk (00fa9e5) * Update to trunk (b4f9561) * Update to trunk (5611236) * Update to trunk (a131149) * Update to trunk (f7e941a) * Add in a check for an eventually timeout envvar (1101542) 2017-01-18 Ken VanDine * added focus and findInstance(pid_t) APIs (583c686) 2017-01-17 Ted Gould * Ensure that we're immune to very quickly destroyed instances (de6c229) * Make the tests more reliable by waiting on dbus to close (dfb20fe) * Force the systemd unit to session bus (789c79e) * Add a fallback to use the session bus for testing (1ec534f) * Add tests to make sure we're initing systemd (ecf8434) 2017-01-13 Ted Gould * Getting our test objects setup (be3ad06) * Build the infrastructure for putting instances in (cb6a78e) 2017-01-13 Bileto Bot * Releasing 0.9+17.04.20170113.1-0ubuntu1 (dcac2dd) 2017-01-13 Ted Gould * Reenable OnlyShowIn checking for Desktop files (LP: #1580092, #1606593, #1608546) (fd45ce2) 2017-01-13 Rodney Dawes * Handle more common Icon entries in .desktop files for snaps. (LP: #1639952) (50d494b) 2017-01-13 Pete Woods * Compatibility with unversioned cmake-extras modules (LP: #1563573) (e9f2387) 2017-01-13 Ted Gould * Fixes to the exec-util test to ensure it is more reliable (2c88afb) * Make sure not to use the pointer if we're cancelled (8f97ac4) * Add in the systemd mock (f4c8588) * Get in the bones for our testing (f485d20) * Drop the click apps from list apps (d5e0e01) * Remove the click database (224144d) * Drop app-info click stuff (485d316) * Drop a header (2be61f3) * Dropping jobs references (6b9b9a6) * Removing click stuff in the registry (00a2172) * Remove ENABLE_SNAPPY (33b377d) * Dropping the application implementation (7c4db36) * Removing manifest to desktop (37af86d) * Removing debian click stuff (1ca6d93) * Removing click hook (ca723f2) * Removing the desktop hook (0ae99bc) * Remove click upstart jobs (c2d0896) * Pull out the registry-mock into it's own file for sharing (83a9f60) 2017-01-12 Ted Gould * Uhg, wanted to delete not just comment out (a201511) * Remove -lgcov hack and add snapd-info-test to the list of tests (e6fba7b) * Add some more tests for sets (764d205) * Fix variable name (6511508) * Typo on name (79949d1) * Switch to find_first_of (e11328d) * First pass doing set comparisons of the lists (a6faffd) * Try to split out CURRENT_DESKTOP (cb2aaab) * Update to new Desktop object (313a76d) * Merge trunk (a81273e) * Make it so that tests can run in parallel without running over each other (3cc99fe) * Make build on 32-bit architectures where gsize is a different size (3010a76) 2017-01-11 Ted Gould * Merge upstream updates (c312ff5) * Update to the jobs-tests branch updates (ae94d10) * Alphabetize list (eaa5556) * Only or onto the transitional google-mock package (5a3a78e) * Use a clearer definition of unsigned (5e24f3b) * Backport the changes on the gmock-fix branch to here, where most of the problems were caused (afc516d) * Merge upstream changes (b849a68) * Merge updates from the jobs-signal branch (901a9da) * Merge the abstract-jobs branch (94bb48d) * Merging app signals branch (5cfb0a9) 2017-01-10 Ted Gould * I've been overrided by charles (7e631a6) * Factor out pause/resume commonality (ca42dd8) * Expand the usage of observer_delete (967e89b) * Rename a function and add comments (3ebb098) * Pull out the request code into individual functions (d69cc3b) * Putting all the map handling code in a couple templates (918d287) * Use an ensure_cmanager() helper to remove duplicate code (f9eda2a) * Formatting fix (dbc2e1b) * Save some stack data with this context (232ffe1) * Note it is on the UAL thread only (cad948d) 2017-01-10 Rodney Dawes * Link the bug. (529a912) * Handle more common Icon entries in .desktop files for snaps. (dcd73d0) 2017-01-09 Ted Gould * Make the comparison values unsigned (52b4c39) * Fix the API so that the signal callbacks take pointers (c16f4cd) * Change setManager to have const& parameters (b264375) * Make params constant (a51b5f4) * More auto's with GVariants (374b0f8) * Some 'NULL's crept in (dcb0924) * auto auto auto (1c5a04f) * Me no spell good (c6a95a6) * Sometimes life would be better if it was more constant (9bec0a6) * Comment out unused variables (e750f7e) * Make sure to check for a valid registry (8f7f41a) * Don't spell well (5d9997d) * Use static_cast() for void* casts (0b6acb8) * Don't specify returning void explicitly (2d55e6c) * Moar auto! (92dc34b) * Names of the parameters for clarity (b77b2ec) * Make sure to check for a nullappid or error for g_variant_get() (69da79d) * Curly init (709a073) * Zesty formatting tools diffs (d97d16f) * Additional comment on lifecycle of replies (14f8e21) * Remove some of the sing song part of the comments (0b65d4e) 2017-01-06 Ted Gould * Make sure we don't have a Mir socket before checking that we don't (4ee9010) * Upstream changes (1f930f0) * Test fixes (3eaac47) * Merge parent (7c407b8) * Test fixes (270ed1f) * Fix tests (2d2f7c5) * Grab signal instances changes (727e2d8) * Jobs signals fix (d19ac76) * Removing more variables (3e4cc62) 2017-01-03 Ted Gould * Removing QT and XDG variables, don't think we need them (fd5ee3d) 2016-12-16 Ted Gould * Get the static libs into the coverage game (ddb1ce9) * Put the spew master into its own header (b67f79a) 2016-12-14 Ted Gould * Ensure that second_exec has the instance info (926285f) * More instances on signals (c3f4d18) * Killing instance TODOs in jobs-upstart.cpp (01ae941) * Set up applications to give us some impls (2b478ba) * Get the handshakes using instance IDs (9e83ea4) * Pulling through instance IDs into the dbus signals (ef52a47) 2016-12-12 Ted Gould * Fix the libertine-launch case for non-snaps (bc65d48) * Bigger libs warning. Like really people, read this. (08dbbb0) * More magic numbers brought down to Earth (ca02f2b) * Merge error (fc4cbe8) * Allow the legacy-exec util to be overridden (6405e07) * Switching back to setting the libertine-launch path in non-snap cases (6d2e852) * Use a build variable to get the path (d2ca763) * We don't need to care about the SNAP_ variables because they'll be reinserted when we come through the snap commands (7beff57) * Fix formatting (733aa23) * Use the path in the current snap as the place to find the helper (12dee62) * Removing snap variables from the Upstart jobs. If we're under a SNAP we'll be using systemd (c221828) * Test for long AppIDs (7e6c76f) * Make sure to pad with zeros (5d09f29) * Explicitly set the DBus address as well (caaca0d) * Cleanup magic numbers (e10517b) * Read everything in, and then start processing it into individual variables (0972904) * Increase output and debugging info in tests (aab0539) * Making sure we clean up the envvars utils (e455350) * Check for MIR_ variables (a494db2) * Getting the snappy-xmir tests into the test suite (f8abd39) * Clear out the MIR_* variables (5e57651) 2016-12-07 Pete Woods * Compatibility with unversioned cmake-extras modules (a145399) 2016-12-01 Ted Gould * Keeping libertine launch (4f632e3) * Make sure we don't overrun sun_path (49db0d0) * Switch to an abstract socket (eafcdad) * Some basic test scripts (5cefc3c) * Provide a way to test and put the fd number on the command line (ad9afcf) * Make sure the FD stays open (a7b4b10) * Get negative errors as well (5ab55df) * Make sure we sleep forever (73288d8) 2016-11-30 Ted Gould * Fix command name (b750883) 2016-11-21 Ted Gould * Remove the snap setting libertine launch (7f966df) * Disable for a moment (15c899d) * Handle write() returns (7833807) * Call the snappy-xmir util unconfined (b2d8641) * Make the command line reference the outside util (b4d10e1) * Get the binaries into a deb (c1f9701) * Fleshing out our utilities (03d2e75) * Better exit codes (acc97cb) * Starting utilities to put together an environment setup (a82e6b4) 2016-11-18 Ted Gould * Switch to calling legacy-exec (1f319f6) 2016-11-17 Ted Gould * Clear out some of the environment variables and check the length (d8fbb17) * Use the right object (b2f4d1a) * Use the correct object type (a1d2f15) * Make sure we get the other snap environment variables (3cbe02b) * Adding extra environment in the snap world (0035f93) * Restructure exec line building so we can add more (dee3bef) * Pulling through trunk (959000d) * Pulling through trunk (25c11be) * Pulling through trunk (619efeb) * Pulling through trunk (e76200c) * Pulling through trunk (b6f25a6) * Migrate tests to use pause/resume c++ signals (875ac14) * Merging through trunk (5dcc557) 2016-11-16 Ted Gould * Adding an environment variable for XMir Helper (1b77e0e) * Make the code less clever but easier to read and hopefully we can figure out what's going on. (d04ff8b) * Warn if we end up with an odd parse (d0109cd) * Putting in a warning if we're not setting the ExecStart (1f37ddb) * Merge future trunk (4478c80) * Make sure we get the unit path not just the job path (ad3087b) * Subscribing to events from systemd (1c7b81a) * Debug messages (b243413) 2016-11-15 Ted Gould * Use eventually for bus shutdown too (e57c23b) * Fixes to the exec-util test to ensure it is more reliable (13cf841) * Make sure the failure test is still using the Upstart backend (bfad29b) * Flesh out the failed signal setup (fa4dcfb) * Setting up the signal watcher for building the failed signal (5ba33b8) 2016-11-14 Ted Gould * Replace listUnits code with using our unit cache (0ad15cf) * Switch to the signal based unit cache (a98219a) * We are no emitting valid stopped and started signals (8cb5813) * Use pause and resume from the base class (e2c7d34) * Emit signals if we see no applications or they disappear (05cb90d) * Flesh out the unitNew and unitRemoved cache part of the functions (1c53dc1) * Setup the dbus signal watchers for new and removed units (0dc8412) * Pulling through updates (924c4f9) * Pulling through updates (2cc1534) * Pulling through updates (4979730) * Pulling through updates (b8b6e82) * Updated tests (cf591cf) * Updated tests (61e045b) * Move the paused/resumed signals into the parent class (e0c99b2) 2016-11-11 Ted Gould * Ensure the manager thread shutsdown before the registry to avoid a deadlock (1af8b7a) * Merge fix (be1131e) * Merge fail (3ae83ae) * Merging through the app object updates (2bafa4a) * Merging in app object changes (477a715) * Putting additional checks in to make sure we don't use null pointers we don't get locks on. (24e1bc7) 2016-11-10 Ted Gould * Make gcc6 happy (cb8266e) * Update to latest systemd branch (f92f877) * Merge in the tests branch (8fe76b4) * Aligning with the signal instances branch (271f610) * Merging the jobs signals branch in (7b893c4) * Move the manager stuff into the base class (7dcd0ed) * Change the cleanup so we don't have to use the registry pointer (ab9f6a7) 2016-11-10 Bileto Bot * Releasing 0.9+17.04.20161110.1-0ubuntu1 (45f570c) 2016-11-10 Ted Gould * Switch to libwhoopsie for recoverable problem support (986b79a) * Removing JSON-GLib version cruft (064cdf5) * Make pause/resume non-blocking (674ae57) * Make several functions static so that they don't depend on the object existing for their execution (f7b6713) 2016-11-09 Ted Gould * Move everything into the jobs files (1c3f25c) * Don't throw an exception when we can't read the file, just assume it is empty (0d3c9ae) * Removing JSON-GLib version cruft (af4281f) * Whoopsie doesn't have a reasonable version number in pkgconfig (f2a9cda) * Adding whoopsie libs to the desktop hook (31657cc) * Putting in whoopsie versions (e9cf248) * Merge trunk (c7bb854) * Forgot to remove emit.h from the CMakeLists.txt (3738add) * Dropping emit as it isn't needed (80d19c4) * Switch to using standard signal handlers (de5ae70) * Simplify the cgmanager getting code to make it syncronous and actually work on the UAL thread (b2b86a2) * Equality is hard (15e3743) * Have the functions match the datastructure names (887979b) * Make it so that initing cgmanager can detect if it's on the same thread (f019f65) 2016-11-08 Ted Gould * Adding functions to emit pause/resume in the local branch (b06dfe6) * Make it so that pause and resume happen on the UAL thread and don't block the main thread (fb56019) 2016-11-07 Ted Gould * Setup to use the jobs object for the signals (e8b1d9c) * Setting up the flow through (b401d17) * Grabbing the abstract jobs branch (474f373) * Merge in the app object signals branch (3a1fae6) * Adding additional instance parameters to the signals (1ea9ed7) * Grabbing the app object signals (decc7c4) * Apply formatting rules to failure-test.cc (6f63234) * Fix failure test environment and values to make them work as real applications (55185ec) * Making sure we connect the signals before returnning (44943dc) * Switch failure test over to using the C++ api (4249cd8) 2016-11-04 Ted Gould * A comment on why this comment is there (05790bd) * Variable comments (382a245) * More comments (2a141c2) * Documentation for registry functions (c8502a7) * Failing test ported over (9b8bcaf) * Fix the starting test (4bcc1f6) * Fixing the start and stop observer test (9cf096e) 2016-11-03 Ted Gould * Port tests over to using a manager for focus events (3115f46) 2016-11-02 Ted Gould * Put a warning in about thread safety (fe1b549) * Make sure we wait to install the signals before returning (51e2fe9) * Clean up weak_ptr<> code (bb107ea) 2016-11-01 Ted Gould * Switch to using a global weak pointer so that it expires with the tracking of the Registry object (2a4eec7) * Make it so that the manager observers execute on their context (30b6848) * Restructure so that we can call the right signal (347851f) * Refactor into a shared function to do the longer dbus calls (5d94946) * Add a handler for starting (8e0047d) * Fleshing out the focus handler (03c4d47) * Switch the C code to using the manager interface (3b302fd) * Restructure to use more shared pointers (23872de) * Start to flesh out more of the resume request (38bb4d6) * Basic foundation for manager signals (caf54f9) * Print pids for pause/resume (0b1ac00) * Apply formatting rules to tools (fd0b266) * Merging the jobs-systemd branch (f923417) 2016-10-31 Ted Gould * Migrating over the failed signal (a806811) * Fixing the watcher (79a2c44) * Moving over pause/resume (09b3e86) * Make calls with the C library use the current context to not break existing code. (f3e65d6) * Switching to a weak pointer (5be9139) * Move the greed around in our regex (1a93bf5) * Make sure to grab a copy of the shared pointer (88b69cb) 2016-10-28 Ted Gould * Switch to passing in the shared pointer to the registry (60209a3) * Port over app started and stopped to C++ interfaces (1569ec6) 2016-10-27 Ted Gould * Code up starting and stopping, some TODOs (2dff88f) * Building a place to register signals (025abf2) * Move the signal functions into the implementation (a016634) * Merging trunk (b4f2ad8) 2016-10-26 Ted Gould * Adding in numeric header (6eb77d2) * Make sure to grab numeric header as well (67cd95f) * Add dependency on google mock (897580e) * Add new environment variables to the tests (814c014) * Scale down object warning (67bfcef) * Move the xmir code to C++ (7c976d4) * Apparently the AppArmorProfile is read only (50229cd) * Protecting our environment from duplicate and bad entries (657ee36) * Switch to systemd error (b5fed15) * Setting the QML2 import path (ecc8bd1) * Set the working directory for apps (d8a16db) * Adding the oneshot type (90e3cce) * Make setting the apparmor profile part of the systemd params (dcaf976) * Be a little more aggressive with the regex for jobs (705556c) * Adding a message on creation of application objects (ab1468a) * Finding instances of systemd jobs (bf60cf7) * Adding a log domain (ce6d5b9) * Toning down some error messages that happen more frequently now (c6bddba) * Comment when checking pids for an AppID (80a2f7b) * The helper should find our xmir, not the lib (7b2b10c) * Printing XMir PID (f7e2b77) * Using the override path if given (28fc5b2) 2016-10-25 Ted Gould * Making sure libertine always has a valid appinfo object (0a8bb61) * Making snaps and libertine apps multi-instance (b68f395) * Move the single instance key into the base files (825071b) * Make sure we don't use XMir if we're under X11 (5c247f9) 2016-10-19 Ted Gould * Ensuring the jobs don't stick around after we've run them (88c057d) 2016-10-18 Ted Gould * Fix much of the variant parsing (126965c) 2016-10-17 Ted Gould * Fix the tests by making them turn off systemd (f93d611) * Grab some environment variables (118fb3e) * Fix the ListUnits call (da76e6b) 2016-10-14 Ted Gould * More fun with systemd, ironing stuff out (5b67155) * Getting the dbus call out the door (1eca26f) * Add exec line handling (c0e254d) 2016-10-13 Ted Gould * Fix the connection flags (a67e247) * Get the types of the call correct (40cda27) * Getting the basics of a launch function together (4b13073) * Get the PIDs for a Unit (dbbc2e0) * Stop units (48453da) * Updating to trunk (263c3f3) * Flesh out getting PID (684a6a2) * Pulling through trunk (bd393ad) * Merge trunk (6b3acc9) * Comments and helpers (6de5bf5) * Forgot the mutex (da61b34) * Setup a cache of the unitPaths that expires over time. (c167bc9) 2016-10-12 Ted Gould * Setup from the instance back to the manager to get unit info (4865182) 2016-10-07 Ted Gould * Flesh out the instance functions (91022df) * Unit name tasks (fa9dcd7) * Adding a listing for all the jobs (f76220a) * A list units function that makes the dbus interface into C++ (08ac7ed) 2016-10-06 Ted Gould * Don't hardcode my user number and get a user bus (fae5104) * Allocating the systemd manager (8153451) * Uhg, copyright header (a3e5b79) * Skeleton systemd jobs files (3f07887) * Grabbing jobs-tests (af537a6) 2016-10-05 Ted Gould * Setup a multiple and a none test (3992e6f) * Flesh out the pause resume more (161932b) 2016-10-04 Ted Gould * Get a basic pause test put together (82ee972) * Getting over to having a simple registry mock (afdf6d2) * Introducing the base base test (4a049aa) * Grabbing abstract jobs branch (736a4d7) 2016-10-03 Bileto Bot * Releasing 0.9+16.10.20161003.1-0ubuntu1 (bf117ec) 2016-10-03 Ted Gould * Make use of the instance parameter consistent through all the backends (LP: #1626028) (130d11d) * Make sure we don't check snapd if we know it won't return useful results (ccc3d93) * Ensure we don't check the length of a nullptr array (0e16c5f) * Use the --id field for launching with libertine-launch and use it for setting up other X11 environments (9228840) * Switch from g_atexit to std::atexit to avoid deprecation warnings (0900d70) * Don't throw an exception when a Desktop file fails to include an Icon key (LP: #1617348) (f85e5e4) * Set a base directory for icons that have a full path specified in their desktop file (LP: #1623636) (2c3f9d0) * Fix the dash location (665f636) 2016-09-30 Ted Gould * Use a weak pointer to break down a reference loop (d748bd2) * Switching the docs over to the new classes (3dc4d9b) * Moving all the registry functions into the jobs-upstart.cpp/h setup (851f119) 2016-09-28 Bileto Bot * Releasing 0.9+16.10.20160928-0ubuntu1 (5a8f032) 2016-09-28 Rodney Dawes * Add a try/catch inside the for loop in ::list(). (LP: #1627594) (d40f628) * Add a try/catch inside the for loop in ::list(). (6112e9c) 2016-09-27 Ted Gould * Move code so the non-Upstart specific stuff lives in the base class (b8f9a57) * Set up a hierarchy in the instance side of things too (3d49230) * Changing the naming, hopefully this will make it more consistent (2eb6c92) * Optimization of prototype (78f5c0c) * Grab the registry at init time so we don't need it all the time (e26046f) * Move a whole bunch of upstart code into the upstart instance file (8035302) * Make all the Application Implementations use the Instance Factory (1730d85) * Create the Upstart Instance factory (aa08b06) * Full prototypes for our virtual functions (0f2acf9) * Adding an instance factory object to the mix (3e63ea9) * Grab the legacy stop branch to have consistent instance usage (0b5bd89) 2016-09-23 Ted Gould * Attaching bug (33c7abe) * Generate the instance name for getting the PID (6b00e71) * Comments (bfd0def) * Make it so that the cgroup request uses the same logic for the path as the instances (39874e9) * Format fix (d4629af) * Formatting fix (b484575) * Special case click as it is the only one we don't expect to do multi-instance with (a4cfe7b) * Don't set instance IDs (8033d96) * Make sure the instance ID is blank in these cases (0aafc6b) * Make sure we have an INSTANCE_ID variable always (18bfb57) * Make the use of instance IDs consistent throughout the code (855295c) * Make sure we don't check snapd if we know it won't return useful results (9a1744e) * Ensure we don't check the length of a nullptr array (39a83d2) 2016-09-15 Ted Gould * Fix the tests to match the changes (72880cb) * Use libertine-launch for setting up x helpers (9df16d7) * Use the --id field for libertine launch with containers (06745d2) * Grabbing future trunk (a885dee) 2016-09-14 Ted Gould * Make sure that we are using a root that makes sense (2981353) * Switch from g_atexit to std::atexit to avoid deprecation warnings (a7c0b0c) * Grab iconbasepath (8186f5a) * Remove the double expansion of variables (365c3fc) * Add documentation for environment variables (b5ea129) * Allow the variable to go in front of our libexec path (371ea15) * Making naming consistent (9a026c6) * Provide an override for the demangler path (695681f) * Allow overriding the OOM Helper path using an environment variable (b9b055d) * Grabbing the icon basepath work (e35bddc) * Updating to trunk (ffe08aa) * Add application-info-desktop.cpp into the list of formated tests (b3a958e) * Make it so that 'Icon' no longer calls the Required functions (d99d1d2) * Reduce the number of inc/dec of the shared pointer (6552b1d) * Merge a fix from icon name (f005921) * Make it so that we use filename on full filenames even if we have a registry (7fd7f9f) * Add functions with 'Required' in their name to make it more clear where exceptions will be thrown (45ba219) * Grabbing the icon-basepath branch to avoid conflicts later (bb56d04) * Clean up a TODO for the container path (9f2d2a1) * Fix a NULL (b0d424a) * Merging with release branch (4c855a2) 2016-09-13 Bileto Bot * Releasing 0.9+16.10.20160913.1-0ubuntu1 (7dd8032) 2016-09-13 Larry Price * Recursively sweep for desktop files for libertine applications. (aa75e42) 2016-09-13 Ted Gould * Support launching applications installed as snaps (LP: #1590445) (a095e8a) * Make find and discover use the application implementation functions. (d718370) * Migrate starting and stopping applications to new classes (3e073ac) * Fixes, tools and tests related to listing applications (55f29dd) * Remove errant changelog entry (9c904c0) * Switching to be a UAL variable (4786986) * Add a test for icon paths (94dda18) * Make those tests compile (9803c1a) 2016-09-12 Ted Gould * Use the root dir if it is set (ff20545) * Get a root directory from the SNAP environment var if we have it (3eccf83) * Adding in a root dir parameter (3eaa095) * Grabbing the icon path (61c1be8) * Updating to latest snappy backend (a2f83b1) 2016-09-08 Ted Gould * Typo (fc895ca) 2016-09-06 Ted Gould * Merging trunk (dd0b330) * Merging trunk (7be8507) * Merge trunk (6c2ee69) * Updating to trunk (fd7d25d) 2016-09-02 Bileto Bot * Releasing 0.9+16.10.20160902-0ubuntu1 (12cd45a) 2016-09-02 Ted Gould * Disable handshake wait with clients doing handshaking (LP: #1618540) (7d2edce) * Attaching bug (b305163) * Make the functions static for now (96c7959) * Pass through the timeout to the exec functions (994ab2f) * Putting a variable in to track whether we're watching the app starting signal (a9c7b9d) 2016-08-29 Larry Price * re-add snappy check lost in merge (928a94c) * merge (bce05bc) 2016-08-26 Ted Gould * Oops, put result in the wrong bin (537a75d) * Check to ensure these are strings too (9d949bd) * Get the message out (c79db84) * Use STL insert and fix 'apps' check (40e59a7) * Clean up types (05cfd36) * Make sure we have strings for the values of the members (ea5d0ea) * Make sure we're not copying in a for loop (1c4e97b) * Hardcode in the host so that we're not effected by different URL parsers in different versions of cURL (ecc1581) * Make snappy backend include based on having new enough cURL (0945839) * Make sure the list-apps socket and the libual-cpp-tests sockets are different so they can run in parallel (d1c11f8) 2016-08-26 Larry Price * camel case instead of _ (18b9260) * merge (68760a9) 2016-08-26 Ted Gould * Getting some list bus love (9b58618) * Getting some list bus love (82e7c79) * Getting some list bus love (c288c8b) * Adding a test bus into the test so we ensure we have one (94f4346) 2016-08-25 Ted Gould * Grab changes and Jenkins fixes (a449fc2) * Grab changes and Jenkins fixes (03a9610) * Grab changes and Jenkins fixes (1f361ac) * Try to make Jenkins happy (c45a5b1) * Try to remove it from pedantic (f870688) * Don't do pedantic on vivid (f84aa6d) * Make the timeout YUUUGE! (b3b7da7) * Make sure we assert on our busses (c461302) * Add some asserts on array lengths before using the pointers (6a06fca) * Dropping the checking on LTTng because the upstream tools do that now (e248dc7) * Avoid going to the point of null return (e2e483f) * Make sure not to init std::string's with nullptr (ed03a3a) * More description on forAllPlugs (34ac5a8) * Switch to use member variable (354bf23) * Switch to using appid_ member variable (f084917) * Empty commit (4566689) * Remove unneeded try/catch (544e0d0) * Add more description to hasAppID (1707d2b) * Be more persistent (3fd8d25) * Everyone hates moving (23ba654) * for (auto → for (const auto& (f6823d9) * Pull the appid vs. pkginfo checking into its own function (4df03e6) * Better equality (2d720ec) * Add error message and free error (4d09e76) * Use the bus checking code from the eventually fixture (2ab58d0) * Add a fallback for older versions of json-glib (2ddec04) 2016-08-25 Bileto Bot * Releasing 0.9+16.10.20160825-0ubuntu1 (c45a6c4) 2016-08-25 Ted Gould * Use at() instead of operator[]() so that we get an exception on bounds checking (3bca27d) * Use at() instead of operator[]() so that we get an exception on bounds checking (5e756ff) 2016-08-24 Ted Gould * Adding more documentation to get up to snuff (9b9f10c) * Fix app counts (03624a2) * Update to changing internal APIs (8c79b1b) * Grabbing upstream changes (c4af906) * Make sure we don't copy the tools structures (0095265) * Spelling fix (4ed4738) * Removing a string cast (f98021c) * Going full auto (731f257) * Use empty instead of checking the size (280841c) * Write text explaining the app id schemes for the various backends (db0d299) * Fix abicheck (f7e7a3a) * Bring in updates to no-find-discover branch (f1a55c3) * Uhg, leftover debug string (401f422) * Unchanged to force LP update (f55f194) * Adding an icon to the no-exec.desktop so it can be tested (de28577) * Track and send APP_DESKTOP_FILE_PATH (e373601) * nullptr (25f1a0c) * Switch desktop prototype to use flags instead of bools (a90aba9) * Allow the APP_ID in the environment to be position independent (377562f) * Allow the APP_ID in the environment to be position independent (658c25b) 2016-08-23 Ted Gould * Fix cast form (887725e) * Reduce copies in foreach (c4cfc6e) * Use getenv() first (9fc40cd) * Make the accumulate easier to read (279e1eb) * Clean up nullptrs and some types (9acbd27) * Caching the std::string of the AppID (2b1c02d) * Make the function call a reference (6aacd96) * Clear that pointer (03d949e) * Clean up casts (0f93342) * Use clear pointer (61c376f) * Fix 'cancelable' spelling (0276b1c) * Use g_get_system_data_dirs() instead of handling the null ourselves (92c9c7c) * Format fix (0f6b78c) * Use g_get_user_cache_dir() (bb1140a) * Grab list only fixes (4ec8aa4) * Remove application.h and exit codes (62089e9) * Try and use nullptr in C++ code (dbdb73c) * Use a free since we just allocated this node anyway (be0405f) * Protect against null from json_to_string() (7f10783) * Pragma once'ing harder (be178cf) * Using both kinds of loop variables (4c930db) * Switch to using has_key() (2626824) * Make sure to free the list (629ae9a) * Make sure to print out json on error, and some format fixes (56d833e) * Updating to trunk (83e9de8) * Updating to trunk (8923503) * Updating to trunk (604b9bd) * Removing duplicated test (c6cf9d3) * Updating to trunk (2f1acac) 2016-08-17 Ted Gould * Fix legacy instance pull through (d32b88d) * Fix legacy instance pull through (2e09ceb) * Make sure to keep legacy instance ids having the appid in them (54c02f8) * Make the failure handle snap instances (8388219) 2016-08-17 Bileto Bot * Releasing 0.9+16.10.20160817.1-0ubuntu1 (3724641) 2016-08-17 Rodney Dawes * Add desktop info fields needed for applications scope (0955126) 2016-08-17 Ted Gould * Add API to allow adjusting of the OOM score for an application instance (LP: #1579799) (cc4e2a0) * Add test for abi compatibility (LP: #1609565) (d7a5de5) * Add in eventually timeouts in tests to make them more robust (f3df295) 2016-08-17 Rodney Dawes * Backport some fixes for listing installed Click apps. Avoid criticals from json-glib by checking if member exists first. Add a test that runs registry's installedApps() to avoid regressions. (83e1157) * Use cmake-extras for coverage reporting. (LP: #1609545) (b55605c) 2016-08-17 Charles Kerr * Fix memory leak in Click::launch() (5ec9aef) 2016-08-17 Ted Gould * Cleaning up comments (a64090f) * Fix return type of cast (aa1ec1d) * Pulling through eventually test updates (71070aa) * Pulling through eventually test updates (4683557) 2016-08-16 Ted Gould * Remove timing other than eventually (4813d1b) * Fix assert ordering (8117752) * Pass TRUE to setenv (51c62d2) * Change to C++ style declaration (864db0a) * Sort includes (9f65b2f) * Add some assert defines (e7f7200) * Capture temporary variables (dec3b96) * Change return type to gboolean (a669a7a) * Switch to g_clear_pointer() (1296077) * Switch function name to better describe what it does (e015394) * Going on auto (e7c2611) * Backport timeout non-thread default fix from snappy branch (0b385f8) 2016-08-12 Ted Gould * Pull through OOM updates (3a9f1aa) * Pull through OOM updates (49c240d) * Make the GLibThread code more robust to rare shutdown scenarios (83a8692) * Pulling through OOM updates (90b3e44) * Pulling through OOM adjust updates (209c9d6) 2016-08-11 Larry Price * Fix directory leak and make anon methods private (8e88641) * Uncommonizing (a3013e3) * tests, memory leak, etc (6c8edf9) 2016-08-10 Larry Price * Adding test and fixing found issues (10a652d) * Getting tests to same state as parent branch (18a00f6) * commonizing keyfile stuff (5fefb87) 2016-08-10 Ted Gould * Fix 'make format' (2d5921d) 2016-08-10 Larry Price * Recursive app directory search in libertine (47a8c9e) * merge (9585030) 2016-08-09 Rodney Dawes * Add missing APIs for necessary info from .desktop files. (1e2df28) 2016-08-08 Rodney Dawes * Add missing build-dep. (b0b32c3) 2016-08-08 Ted Gould * Bump ABI version (0ad7a40) * Using build profiles to make it cleaner (f440ea9) 2016-08-06 Ted Gould * Switch OOM start to an eventually (4e3bc72) * Grab the eventually tests and the abi test (db8d2f8) * Grab the eventually tests branch (ea3aff6) * Formatting. Jenkins do it again. (fcebe43) * Another commit to make Jenkins run again (2759dba) * Put a couple of pauses in (7096240) * Remove the eventually calls, they don't actually work (bbb78fa) * Give the Zeitgeist test the eventually treatment (6178821) * Sure up the StopHelper functions (cd0bd92) * Clear at the end of the test to ensure we get a flush (f4b1f2a) * Put in a warning if we timeout in the eventually (2f4f936) 2016-08-05 Ted Gould * Make StartHelper more robust and observers (db8bcf5) * Allow the starting count to come a little later (9c36f0d) * Remove extra pause functions (0024dc1) * Migrating to eventually, sometime (ffc68a5) * Remove pauses from C interface tests (f5a4334) * Remove a bunch of pauses (8e0257b) * Connect in the eventually fixture (b2b34d8) * More comments (df18efe) * Fix some more comments (b4c0fa4) * Adding comments to the functions (2f9e518) * Adding comments to the functions (0bf2708) 2016-08-05 Rodney Dawes * Fix typo. (8e7d747) * Also check for nullptr when checking with has_member on json objects. (2480166) 2016-08-05 Ted Gould * Adding in dynamic architecture strings (619a181) 2016-08-05 Rodney Dawes * Need g_free for char, not g_object_unref. (dccadb8) * Fix for -pedantic. (69c39d8) 2016-08-05 Ted Gould * Grab the compliance checker (ffeffd5) * Make it so that we build the list from the headers variables (9d69f00) * Move the ABI check (cabc6b9) * Add in a bunch of generation (2507ef0) * Add a starter cmake file (cca20bb) * First versions of the files (bf7a283) 2016-08-04 Ted Gould * Reenable tracepoints (78b1d30) * More documentation (e2a14af) * Checking for appname based on Snappy's definition of it (fdeb9b1) 2016-08-04 Rodney Dawes * [ Ken VanDine ]; Added dev depends on libproperties-cpp-dev [ Rodney Dawes ]; Strip the extra .desktop off of legacy app IDs when loading .desktop files. (LP: #1606695. Use stricter gensymbols check.; Disable the pauseresume tests to unblock landings for now. [ Ted Gould . Pedantic fixes for header files; Fix to use correct types returned from libclick (dba7a76) 2016-08-04 Ted Gould * Fix spacing (588db7c) * More documentation (a2b4651) * Updating to trunk (6db4fd0) * Update to trunk (660921f) * Pulling through trunk (a7430d4) * Pulling through trunk (8695186) * Pulling through trunk (74e6335) * Pulling through trunk (6990f01) * Merging trunk (8370c7b) * Tying in the breakout branch versions so we only have the snap backend added here (f45e967) * Grab the revisions in the no-find-discover branch (4f90a05) * Merge without the find and discover changes (f26e5f1) 2016-08-03 Rodney Dawes * Use cmake-extras for coverage reporting. (ce485e9) 2016-08-03 Ted Gould * Grabbing the revisions from list-only branch (4de4137) * Merging in only the list related stuff (073eef9) * Grabbing oom adjust first (7c8256b) * Drop snapd socket (a07ab2e) * Don't set variables for snapd (62558d0) * Removing snap application job references (b009dd2) * Drop more cURL (f00bce2) * Grabbing libcurl (1e06595) * Dropping cURL (4de08f5) * Removing the snappy docs (6b34641) * No changlog either (5df9349) * Dropping snappy upstart job (ae6b4d6) * Remove snap tests (633dde6) * Removing the snap handling code (d67e98b) * Make sure we detect snaps starting and stopping (c5779af) * Make sure we list snap packages (3d63d28) * Moar docs! (0974977) * Adding more docs (d7da60a) * Adding new classes to the documentation generation (1a9402e) * Documentation on the base class header (4580c7d) * Doc fixes (1811fbc) 2016-08-03 Bileto Bot * Releasing 0.9+16.10.20160803-0ubuntu1 (840deee) 2016-08-03 Rodney Dawes * Disable the pauseresume tests to unblock landings for now. (e680a88) 2016-08-03 Ted Gould * Fix to use correct types returned from libclick (02c6db1) * Pedantic fixes for header files (3d6ec47) 2016-08-03 Ken VanDine * Added dev depends on libproperties-cpp-dev (3c2d1bf) 2016-08-03 Rodney Dawes * Use stricter gensymbols check. Build with parallel and fail on missing files. (7250a87) * Strip the extra .desktop off of legacy app IDs when loading .desktop files. (LP: #1606695) (163194b) 2016-08-02 Ted Gould * Check isRunning() as well (2af0fe4) * Test the snap package discoveries (4ee15e1) * Remove app-info.h and put app_info() function in app-info.c (97422bf) * Move over the log file code to use the C++ interface (44a3975) * Removing app-info.h from the C++ code (47598f3) * Adding a revision (ee3ef50) * Supporting instances in the snappy upstart job (70abb5a) * Use the registry pointer for our ::find() call (7071334) * Fix test to match fix to database (991651e) * Fixing our test database (8ccba06) * Adding a registry friendly version of ::find (3ceaa3a) * Make the C triplet function use the C++ discover code (a2bd6e7) * Catch exceptions from verifyPackage and specify which type we'll handle (56a5753) * Use the registry param functions (ffbb446) * Provide discover functions that allow passing the registry in (79a03a8) * Make the discover with strings understand the well known strings and turn them into enums (0500675) 2016-08-02 Rodney Dawes * Only call json_node_unref if json-glib is new enough. (9f7f65a) 2016-08-02 Ted Gould * Flesh out the snap implementation (c348b5f) * Flesh out Click implementations (90b4b79) * Adding a registry parameter (fda1fdc) * Flipping some discover (a315b1e) 2016-08-01 Ted Gould * Fix exec lines to include the shell script (e20f515) * Backport some fixes for listing installed Click apps. Avoid criticals from json-glib by checking if member exists first. Add a test that runs registry's installedApps() to avoid regressions. (393e6b1) * Making the timers and loops work on the thread default context (1fd9f52) * Making it so that the CURL timeout can be disabled for tests (911376f) * Cleanup shutting down of the mock (ef864b9) * Put the socket in /tmp (5d4fe9b) * Get the PID earlier so that the C interface functions can use the default registry and work better (c7632d0) 2016-07-29 Ted Gould * Making the shared lib a double build (4cd2e0b) 2016-07-29 Rodney Dawes * Merge crash fix. (65321d2) 2016-07-28 Ted Gould * Moving stop application code over to C++ (96382b3) * Adding snap start/stop tests (d108a02) 2016-07-28 Rodney Dawes * Add a test for installedApps() (256317d) 2016-07-28 Ted Gould * Remove unused code (9ddc990) * Getting Libertine apps out of the container (ffbb467) * Adding more snapd cases (c96d1ab) * Make it so that we can have the snapd mock in the overall tests (a33515b) * Verify some of the data returned in the list of apps (5dc236d) * Making it so that we can get a testable Click directory and properly handle its errors (894d9cf) 2016-07-27 Rodney Dawes * Disable the pauseresume tests to unblock landings for now. (f2e8569) 2016-07-27 Ted Gould * Verify the apps that are returned (78f511e) * Making it so that we can list ourselves some apps (9c869a4) * Building all our tests, but we'd like more results (63380ef) 2016-07-27 Rodney Dawes * Include missing binaries in the tools package. (f035478) * Make the internal regex definition static too. (b7c9750) 2016-07-26 Ted Gould * Adding a list apps framework. (caf2c23) * Adding some negative tests (f32f7eb) * Strip the extra .desktop off of legacy app IDs when loading .desktop files. (6aba23e) * This branch isn't going to have an event watcher, just remove it for now (88bea3c) * Test getting the interfaces for an AppID (b59064a) * Add an interfaces test (dc39e2a) * Adding some helper functions to make the tests easier to read (fcf0104) 2016-07-25 Ted Gould * Attaching bug (651b691) 2016-07-24 Ted Gould * Make sure to add the libertine helpers for X11 apps (06fcbfe) * Always put INSTANCE_ID in the environment variables (1bf3a9e) * Make it so that sources are destroyed and unrefed instead of removed (3160f2f) 2016-07-22 Ted Gould * Make sure we don't remove the timer twice (36a4f43) * Make sure the UpstartInstance has the URLs for second exec (ed5044d) * Fixing the timers to use the thread default context and ensure they run in every case that we send the signal to Unity (075eb43) 2016-07-15 Ted Gould * More test fixes (683da5c) * Fixing the exec-util-exec branches (8e78743) 2016-07-13 Ted Gould * Getting the JSON so this test will pass (e97e6a9) * Get sockets happy (c0a361a) * Basic snapd info test, more to come! (4e52a15) 2016-07-12 Ted Gould * Some comments (bebebcd) * Ensure that we don't grab legacy apps that are actually snaps (88946cd) * Make sure the interfaces are all in constants (20d7b35) * Ensure the snap list has snaps with desktop files (ea5f86f) * Fixes to get snappy all happy (272de38) 2016-07-11 Ted Gould * Dropping the URIS from second exec (2e2bc43) * Drop null.cpp (2096f45) * Split out detecting the validity of an AppID into the implementation classes and implement it for snaps (44f632f) 2016-07-11 Rodney Dawes * Use stricter gensymbols check. Build with parallel and fail on missing files. (2a1833d) 2016-07-06 Ted Gould * Enable launching of Snap apps (d4d9148) 2016-06-28 Ted Gould * Dropping desktop_exec (6fbefdd) * Bring libertine into the fold (bf2f3b4) * Refactor legacy to use the new launch stuff (3dc1950) 2016-06-27 Ted Gould * Dropping click-exec.[ch] (061cae0) * Adding in confined variables and handshaking (63d9e7f) * Get the environment variables for click launches (710c906) * Move the C interface over to using the C++ code (8b42c11) * Tie in the callback and second-exec code (083d14b) * First pass at getting launch into C++ (7479724) * Making space for a function to get the environment (0e0aece) 2016-06-23 Ted Gould * Adding in an 'application-snap' Upstart job (46ac385) 2016-06-22 Ted Gould * Cleaning up package info to work now (ead9f48) * Switch to using the 'plugs' array instead of the 'slots' (4e83d53) 2016-06-21 Ted Gould * Handling missed connections better (088511b) * Switch revision over to being a string (ea9f74f) 2016-06-20 Ted Gould * A couple of amemory managment issues with JSON files (4d1e81b) * Fixing the return value from liblibertine (aa45a3f) * Make the legacy app list use the right appids and handle errors better (1f89117) * Make CURL happy-ish (d386e3e) * Check for the registry and help with debug messages (a86710b) * Add in printing functions for JSON that are C++-ish (a3cee2a) 2016-06-18 Ted Gould * Fix for the click db (3ffa0c1) * Use the right type when looking at the click database (e1d4b88) * Adding a small tool to list installed apps (8a0eb79) * Read the desktop file from the snap package (f931037) * Setting up a custom class for information (08388cf) * Connect into the registry lists (1a16b25) * Getting the snapdInfo into the mainline (bcf24b1) * Make it so that we check once for a socket to see if snapd is running on this system and allow the path to be overridable for testing (3337113) * Clean this mess up! And get a set in there. (69e76d2) * Getting the basic information about snaps out of snapd (a28a120) * Parse the structure passed from Snapd (f23c310) 2016-06-17 Ted Gould * Make sure we just allocate once (075d076) * Add some checking of the returned JSON (f63756d) * Get from CURL to JSON (5434a22) 2016-06-15 Ted Gould * Base example of apps for an interface (5af2e06) * An info object (9a36e3a) * Adding a base snap event object (3eb0dc0) 2016-06-09 Ted Gould * A bunch of stubs for a Snap backend (c259895) * Grab the OOM adjust API so we can merge easier later (4999d12) * Shorten CG Manager timeout (ff84d5c) * Fix comment spacing (54bcd34) 2016-06-09 Charles Kerr * merge lp:~ted/ubuntu-app-launch/pedantic-no-oom (a6ca530) 2016-06-08 Charles Kerr * Application::Info and Application::Instance have virtual methods, so need virtual dtors (99e694d) * (trivial) remove trailing commas from enum lists (b3d257f) * Application has virtual functions, so it needs a virtual destructor (7ace55f) * remove semicolons from the ends of namespaces (d81eed9) * fix string leak in Click::launch (25a93fd) 2016-06-07 Ted Gould * Print the oomvalue (99fc07b) * Adding more debug messages of our ints (e73dd29) * Make the oom value conversion to a string stay on the local stack (ace2262) * Adding a debug message for using OOM helpers (2db1112) * A debug message (8392763) 2016-06-07 Ken VanDine * Added dev depens on libproperties-cpp-dev (088232b) 2016-06-07 Ted Gould * Adding a header for gcc6 (6492e30) * Backport of pedantic patches (c350bb7) 2016-06-06 Ted Gould * Fixing the final tests (c75abb6) * Fix registry access (00ec785) * Make it so that the connection and cancellable are passed into the core (e6a81c6) * Switching around API to C++ (b0eaadf) 2016-06-01 Ted Gould * Making sure the launch callbacks and reporting happen on the registry thread (ae12447) * Supporting multiple instances on legacy application objects (277f51f) * Make sure we check the instances for allocating one (dd97b0a) * Make it so that we still have a launch backend (400145d) * Make hasPid use the C++ stuff (33eae84) * Get the primary PID code to the C++ side (7978c8d) * Code to get job instances from Upstart in the registry implementation (62751d5) * Inverting things so that the different type implementations use an Upstart instance directly with their job information (d3000da) * Putting the base instance as an Upstart instance in the header so that other implementations can use it (0b4d66b) * Convert the C function over to using C++ (fb86df9) * Remove the reference, it confuses things (9701b93) * Get job and instance information from individual implementations so that we can have one generic function for getting pids (55cb281) 2016-05-31 Ted Gould * Base functions to get PIDs in C++ (470eca6) 2016-05-28 Ted Gould * Make it so the source is on the right channel and we flush on reset (e6fbff5) * More on and off (68fee4d) * Adding a ZG mock so it disconnects (c73076a) * Make sure to remove the watcher source (576a261) 2016-05-27 Ted Gould * Making a test that has multiple spewers (e335e36) * Make it so that datacnt handles threading better (da5d333) * Move the spew management into a helper class (a53d327) 2016-05-25 Ted Gould * Remove the generator based flags (c986813) 2016-05-24 Ted Gould * Kill a final NULL (fd9a002) * PIDs empty (0dbbf74) * Constant pids (e913c63) * Fix charles (5e72783) * Make types prettier (a673f9e) * Handle the envvar being NULL better (0737f45) * Restructured the forAllPids to use a std::set (c8b7178) * Make sure we don't change the AppID (b43dbb0) * Just because (10cf5a5) * Ensuring no copy in the lambdas (84e11a8) * Switch to add_compile_options() (37045ba) * Use the C++ interface where we can (16e1728) 2016-05-23 Ted Gould * Doc fixes (5e9f7f4) * Add in a couple of error handling tests (8ef1292) * Adding a test for OOM Set functions (b7541e1) * Formatting changes (252a951) * Apparently this test didn't actually test the C++ API (9c68f83) * Move the ZG code to the registry so that we can have a single instance of the Log that isn't global (04f6503) * Cut and paste are hard (449ffc7) * Adding properties to the test hub (cfa198d) 2016-05-20 Ted Gould * Use the at() function even though the docs lie about it. (a7f3798) * Some debug and make sure the pid list gets out (4f49378) 2016-05-19 Ted Gould * More cleanups (f6c2bfa) * Remove C code that has be migrated over to C++ (3635b53) * Clean ups and docs (3aac74c) * Make the pidlist function send on an idle (8bab6c9) * Send zg events (09340b8) * Migrate pause and resume to use the same helpers so we can drop them (7ca681c) * Fix reformatter munging (b1a6ceb) * Implement getting an OOM value (2be7def) * Gettin' some of that there dbus code (0c9e479) * Grabbing and C++-ifying a bunch of helpers from ubuntu-app-launch.cpp (41d4ceb) * Make the ubuntu-app-launch.c file compile with the C++ compiler (4677356) * Adding an OOM interface (e6f6520) 2016-05-17 Ted Gould * Adding in stubs to bring out the implementation (6549142) 2016-05-16 Ted Gould * Make the signal access functions (3fa1fcd) * Updated to trunk (3dba1ad) 2016-05-12 Ted Gould * Merge in trunk (08b369d) 2016-05-10 CI Train Bot * Releasing 0.9+16.04.20160510.2-0ubuntu1 (4fb359a) 2016-05-10 Ted Gould * Allow invalid desktop files for OTA11 quick fix Fixes: #1580092 Approved by: PS Jenkins bot (29f0626) * Fixing comment (0acc3c3) * Adding back the OnlyShowIn exception (bfe298e) * Removing OnlyShowIn testing for OTA11 temporarily (c26ac24) 2016-05-04 CI Train Bot * Releasing 0.9+16.04.20160504.1-0ubuntu1 (9c73d0c) 2016-05-04 Ted Gould * Fix typo in desktop key name Fixes: #1578112 Approved by: PS Jenkins bot, Charles Kerr (6a12c0a) * Minor cleanup which causes an annoying warning message Approved by: PS Jenkins bot, Larry Price (a937d02) * Handle exceptions and print errors with command line tools Fixes: #1575990 Approved by: PS Jenkins bot, Larry Price (bebd94f) 2016-05-04 Larry Price * Refactoring IconFinder to include icons from the Humanity theme Fixes: #1558741 Approved by: Ted Gould (2247b60) * Update icon search for non-click applications to search the hicolor theme directory for appropriate icons. Fixes: #1576722 Approved by: Ted Gould (4283b08) * Add additional cases for not presenting desktop launchers based on keyfile entries. Approved by: Ted Gould (ca39a25) 2016-05-04 CI Train Bot * Add a depends for cgmanager for the desktop Approved by: PS Jenkins bot, Larry Price (4cc01a3) 2016-05-04 Ted Gould * Add a small commandline tool for application information Approved by: Charles Kerr, Larry Price (9749d8f) 2016-05-04 Larry Price * Refactoring IconFinder to include icons from the Humanity theme (7b5fbf3) 2016-05-04 Ted Gould * Check for empty appid and null app (11c414b) * Fix typo in desktop key name (9fd5128) 2016-05-03 Larry Price * Adding missing app icons (ef8f15e) * running clang format on the test (ced890f) * Adding tests for root icons path (b7b3bb5) * Merge with ted (de3d0d7) 2016-05-02 Ted Gould * Minor cleanup which causes an annoying warning message (3670ead) * Forgot a find (e136d67) * Applying the same treatment to the other tools (cd37276) * Make a more tollerant stop utility (6181c7f) * Add a depends for cgmanager for the desktop (9d5e969) 2016-05-02 Larry Price * no need for second capture group in regex (166a2f8) 2016-05-02 Ted Gould * Grab Larry's changes (56817dd) * Regex line markers were backwards (2f3a730) 2016-05-02 Larry Price * Merge with trunk (5e3aba3) * Fixing tests (0bc074f) * Fixing some small merge issues, correcting regex for matching dirs (fa611ad) * Merge with ted (456673e) * Allowing spaces in app names and undoing incorrect local dir stuff (45543da) 2016-05-02 Ted Gould * Adding in the icons dir itself (ddaa818) * Handy debug message (8c7daea) * Adding a search for subdirs in the case of no theme file (c9d31af) * Adding in the share to the basedir (8d9a123) * Adding debug messages (987bc68) * Add some comments and little fixes while I was looking to figure out where my bug is (b60a194) * Remove separate home directory searching now that we have better basedirs (61b7a88) * Make it so there is a tracked basedir for each legacy app as well (799b02d) * Add a basedir for legacy apps (6a0417a) * Track the basedir and use it when creating the desktop file (3972f67) * Fixes from Larry (ae6353c) 2016-04-29 Ted Gould * Add some exception handling for better output (9d6202d) * A quick tool to get application information (85d5a5d) 2016-04-29 Larry Price * deleting unnecessary null check (8ce92ea) * Merge ~ted/ubuntu-app-launch/find-theme-icons-ted (d7d3901) 2016-04-29 Ted Gould * Make it so that NoDisplay can be parsed for legacy applications. (b841888) 2016-04-29 Larry Price * more documentation for public members of iconfinder (b3478f4) * updating documentation (cbf40a2) * adding forgotten steam icons (03bd7d2) * Adding support for searching local icon directories (e05080c) 2016-04-28 Larry Price * running clang format (8aeca54) * adding more test data and a few more tests (741739e) * using defined cmake source path for tests (1b6ee00) * sorting directories by size from highest to lowest (965577c) * use g_build_filepath more often, update interface, better flow [recycle] (3cfbdc2) * pixmaps should be fallback for all icons - addresses firefox (47480cb) * removing unnecessary env setup in CMakeList (869f05b) * Removing commented line (f022f84) * adding test data to source control (d8b0656) * Tests for good paths through the icon finder code (c455419) 2016-04-27 Larry Price * pulling some string constants out (b486cb2) * removing unnecessary includes (53b3a20) * moving icon finder into its own file and moving access into registry impl (1a80d95) * injecting registry into desktop creation (3dce8e0) 2016-04-27 CI Train Bot * Releasing 0.9+16.04.20160427-0ubuntu1 (eff89df) 2016-04-27 Ted Gould * Adjust version regular expression to handle single character version numbers Approved by: PS Jenkins bot (790e997) * Use a non-capturing group instead of nested character sets which doesn't work (4eec2e2) * The root seems to be parse, so adding that as well (258a8a8) * Forgot to add for the user (fae63fa) * Add a failing test from the field (1cf5f5e) 2016-04-27 Larry Price * remove iostream dep (71f576a) * returning old default path if we don't have any other luck (d0b7c61) * Static instances of IconFinder so we can cache the theme subdirectories (edc3284) * Additional frees (faef2f6) 2016-04-26 Larry Price * extracting one more function from the big search function (04a8846) * starting the process of moving code into own class (2c2389f) * First pass at finding correct icon from hicolor theme - functioning but in desparate need of restructuring (9dd4a1d) * Merge with trunk 16.04 (870d9b6) * Fix memory management in stringlist method and use XDG_CURRENT_DESKTOP to determine environment (review recycle) (ce4bb56) 2016-04-25 Larry Price * Add additional cases for not presenting desktop launchers based on keyfile entries. (fc18cab) 2016-04-21 CI Train Bot * Releasing 0.9+16.04.20160421.3-0ubuntu1 (ecede48) 2016-04-21 Ted Gould * Fix cut-and-paste error in function comment Approved by: Charles Kerr (49e0b1d) * Add dependency on libpam-cgfs on Xenial so that cgroups work properly in Upstart Fixes: #1535058 Approved by: Charles Kerr (68c0fb7) 2016-04-21 CI Train Bot * Ensure all pending events on the context are complete before unref'ing it. Fixes: #1495871 Approved by: PS Jenkins bot (8e0adad) 2016-04-21 Michael Terry * Add a C++ API for UAL Approved by: Thomas Voß, PS Jenkins bot (f90e4ed) 2016-04-21 Ted Gould * Adding support for Read the Docs Approved by: Charles Kerr, PS Jenkins bot (541c91b) * If no XDG_DATA_DIRS is set ensure that /usr/share is in the list. Fixes: #1541037 Approved by: Charles Kerr, PS Jenkins bot (e9b98ee) 2016-04-21 Dimitri John Ledkov * Raise to -std=gnu99, because we really want gnu standards, and thus e.g. access CLOCK_MONOTONIC in lttng on arm64/armhf. Resolves FTBFS. Approved by: PS Jenkins bot, Ted Gould (db3817d) 2016-04-21 Michael Terry * Fix build by correcting typo in function name. (d263f0c) 2016-04-21 Ted Gould * Adding in local (c08e1ac) * XMir only on some arches that it is built for (b4bfeab) * Add in an exception for cgmanager for vivid (e389dd0) 2016-04-20 Ted Gould * gnu99 for ARM (50a70b1) * Put merge requirements in docs (be2a352) * Add libproperties-cpp-dev for the signal.h support (439f9b1) * Add in XMir as well (986666d) 2016-04-18 Ted Gould * Add the other implementation objects to the docs (8349c4e) * Helper documentation (0bda064) * Registry documentation (e578d7d) * Application docs (abe8e71) * Remove the implementation from the public docs (5574947) * Run through the autoformatter (5fc4fab) * AppID docs (c92eab0) * TypeTagger documentation (a983535) * Refactor the index to talk more about the C++ interface (71e70c1) * Adding in the sphinx branch so we can start to clean up the docs for the app object stuff. (162e425) 2016-04-07 Ted Gould * Grab the gnu99 branch (9558359) * Switch to the RTD theme on RTD (b31e052) * Fix hardcoded directory (5d88994) * Adding a requirements.txt (27aabff) * Making this work kinda (6861844) * Default Doxyfile (f859ffe) * Adding Sphinx Quickstart (f5eae3f) 2016-04-06 Ted Gould * Grab GNU99 changes (f9cb2e2) * Switching to libwhoopsie for recoverable problem support (736de43) 2016-03-03 Ted Gould * Catching up to the base branch (e9756a2) * New version of clang formats slightly differently with the same settings (045a779) * Change the order of checking to ensure we don't get caught up by the local cache. (9a4fcf4) 2016-02-17 Ted Gould * Fix tests for exceptions on bad desktop files (85bb256) 2016-02-10 Ted Gould * Change to supportsUbuntuLifecycle (c0b7c86) * Less splash, more namespacing (a383925) * Adding extra commas (ccf5543) * Constexpr (5dca75f) * Move from one implementation only location to another implementation only location (7a0b8c9) * Making voids implicit instead of explicit (dbb045f) * Move prototype (bc95b9e) * Check for keyfile in constructor (b5fbdc5) * Check for keyfile in constructor (7e21105) * Stop incrementing ref counts to make the code faster (663b89b) 2016-02-09 Ted Gould * Exception on manifest failures and ensure that we have it early (ee37f40) * Adding a format target (8ef40da) * Passing the manifests by const reference (bf3f3f0) * Make the constructor fail if there is no keyfile instead of waiting when we get info() (a3679c2) * Make URL vectors const references (67c289e) * Check to ensure cpath isn't null (3e8a97a) * Explicit constructor (41cdebe) * Optimize constructors (9fae22c) * Adding the class keyword to enums (5e8898c) * Remove as member functions (13c9e39) * Namespace bike shedding (fb593e8) 2016-02-08 Ted Gould * Apply new style to launch and watch (e8845a6) * Merge in code style changes (bcacc92) * Switch from symbols to shlibs (ccc4870) * Switch to a different arbitrary style (4ce535d) * Fix symbols (989fc54) * These shouldn't have ever been there (7b718c4) * Make sure to not get all the signal deleting revisions (52e28ef) * Revert back to 'C' versions of these tools (f10aed9) * Removing signals from the API for this MR (94bcd2e) 2016-02-02 Ted Gould * Attaching bug (dd4aa14) * Making sure to test that we have the directory in the list (a85b1af) * Make it so that if there isn't an XDG_DATA_DIRS defined we at least add /usr/share to the list (a6f7b88) * Build fixes (4c87911) 2016-01-28 Ted Gould * Use default values instead of overloading for cleaner code (31928a0) * Fix handling of libertine apps (508a62d) 2016-01-27 Ted Gould * Adjust the default value of rotates window contents (34a05ef) * Add support for primary and strip whitespace (424043b) * Testing all the various styles of orientations (65017ae) * Adding symbols for find and valid (3197677) 2016-01-26 Ted Gould * Defaults and error condition tests (b6c45ce) * Started on an application info test (2d3569d) * Add new C++ API that has a retained object for maintaining connections through multiple calls. Also provides for getting consistent application metadata. (581e5d9) * Fix a bug where we're not returning an error properly (f06ae0c) * Check to see if the path is absolute already (522ff19) * Make it so that parse only works with well formed AppIDs and then there is a find that takes on more of the various format variations. (ebf1e99) * Add dependency on libpam-cgfs on Xenial so that cgroups work properly in Upstart (f95150d) 2016-01-25 Michael Terry * Fixing applications search (64f338f) 2016-01-22 Ted Gould * Making out test handling match our errors (038aa05) * Shifting where the CPP headers are installed (b7bf0a3) * Adding a few more keys (d445e82) 2016-01-21 Ted Gould * Switching to a keyfile and getting all the properties out. (04bbd58) 2016-01-20 Ted Gould * Adding keys needed by Unity about applications (c180e4b) * Fix test that was broken (d4a57f1) * Formatting, nothing useful (197483e) * Forgot one. (5620d08) * Adding license headers (0b25651) * App info port (14e3c6a) * Check Mir session helpers (3783992) * A bunch of fun helper stuff (b47abba) 2016-01-19 Ted Gould * Start and URL tests (995e676) * Test application listsf (64980f0) * AppID parsing tests (0f0248a) * AppID testing functions (7ae3aa2) * Cleaning up a few (7a60432) * We's got ourselves some symbols (1c433ea) 2016-01-08 Ted Gould * Migrate the application PID tests (8da0dba) * Getting the log path test to work by supporting legacy appids and implementing log path support (b50ab16) 2016-01-07 Ted Gould * Add URL handling into the helper code (c6513e9) * Getting our first test to be C++ (9914bb9) * Don't flush if we never got the bus (35debe5) 2016-01-06 Ted Gould * Ensure that we have a dbus connection lifecycle that is at least as long as the registry one (7b61272) * Move all the dbus calls onto the registry thread (96fa886) * Convert the stop tool as well (24dc89d) * Converting the start helper tool (67037c3) * Fleshing out click helper (8369954) * Getting the helpers in shape (142aa43) 2016-01-05 Ted Gould * Adding helper and moving AppID up a namespace level (bd3a80e) * Switching over launch to be C++ (e479087) * Port watch to CPP (7f56432) 2016-01-04 Ted Gould * Get the triplet tool to C++ (26f923d) * Make the string function into an operator (7856bd4) * Switch from a tuple to a struct, much easier to read (e3d9091) * Make the AppID into a tuple everywhere (e8cf6c3) * Convert stop over to CPP (b9fea77) * Switching list_pids() over to C++ (fe047f9) * Port app watch to the the CPP interface (2c8096d) * Copied the test to start adding for the CPP interface (751a208) 2015-12-18 Ted Gould * Switch the pid tools to C++ (c370ead) * Adding app parsing (31b6614) * Moving up the C++ flags to root CMakeList (4f7103f) * Merge the types into the class and put the template into another file to make things easier to read (0c58593) 2015-12-17 Ted Gould * Adding in the libertine listing features (d01371a) 2015-12-16 Ted Gould * Adding tagged variables for the various properties of an application and its information (d92eae5) * Signals and a manager for Registry (a833068) 2015-12-15 Ted Gould * Big registry rename (0b32359) 2015-12-14 Ted Gould * Restructure the application objects to have a create function and as a pure interface (50df2ef) * Grabbing liblibertine (9a0d145) 2015-12-11 Ted Gould * Getting application information for a click package (6e9f9a2) * Make sure we're only getting apps (a542a84) 2015-12-11 Dimitri John Ledkov * merge lp:~mterry/ubuntu-app-launch/fix-ftbfs (30cf651) * Raise to -std=gnu99, because we really want gnu standards, and thus e.g. access CLOCK_MONOTONIC in lttng on arm64/armhf. Resolves FTBFS. (c8027ba) 2015-12-10 Ted Gould * Get the list of click applications (1869c9d) * Adding in click support to the connection object (c187d01) * Add some symbols to the library (af8b6e3) 2015-12-09 Ted Gould * Setting up our singleton (6b9a733) * List all legacy apps (3972b3e) * List functions in the connection object (24515a6) * Make subclass constructors match what they really need (20fd771) * Tie into application implementation subclasses (5d82f26) * Better names for the classes (7344948) * Get some stuff compiling (9ffa518) 2015-12-08 Ted Gould * Get things kinda compiling (d99dab4) * Add the unref context branch (673d8f9) * Add static default (1e822d9) 2015-12-07 Ted Gould * Merge FTBFS (af345c4) 2015-12-03 Ted Gould * Thoughts on a C++11 API (3f4f635) 2015-12-02 Ted Gould * Update to trunk (a86b794) * Commit changes in tree to get ready to refactor (7aae9d3) 2015-11-23 Michael Terry * Fix ftbfs (14bb6a7) 2015-09-22 Ted Gould * Ken was making fun of me (50775cb) 2015-09-16 Ted Gould * Fix GDocs syntax for warning (e2de31d) * Make sure get and set use the same value (ad9e299) * Ensure that we process all the events on the context before unref'ing it. There may be references in the events. (26f2aa4) 2015-09-15 Ted Gould * Grabbing the pid tools branch (c3e0257) * Easier to read an a cast that is needed (6d964b6) * Plug leaking context (739c7ee) 2015-08-27 Ted Gould * Add a list pids (1c1e04f) * Exposing the full PID listing to the external API (a90e934) 2015-08-17 CI Train Bot * Releasing 0.5+15.10.20150817-0ubuntu1 (b946e8b) 2015-08-17 Ted Gould * Provide an API to find the desktop file and directory of an AppID Approved by: Renato Araujo Oliveira Filho (ef35826) * Detect applications that are in a libertine container Approved by: Christopher Townsend, Charles Kerr, PS Jenkins bot (93c5755) * Start XMir for applications that enable it Approved by: Christopher Townsend, Charles Kerr, PS Jenkins bot (1beb453) * Make demangler path more secure and unset internal environment variables Approved by: Charles Kerr, PS Jenkins bot (8a58d7c) 2015-08-17 Robert Ancell * Depend on upstart instead of upstart-bin which is a dummy transitional package. Approved by: Ted Gould, PS Jenkins bot (5ca2eb2) 2015-08-17 Ted Gould * Don't set a default value for XMIR_ENABLE (2b0df9e) 2015-08-11 Ted Gould * Make it so the libertine app info behaves like the others (1541adc) * App info tests (42feaee) * Grab triplet tests (e63b21e) * Thought of another one (a39b502) * Testing the libertine triplet cases (5edb129) * Setting data home as well (9bc7e7b) * Grab the libertine cache dirs (a5e9ea3) * Merge the app-info refactoring (6891776) * Reshuffle code so that JSON and click stuff is all in one file (2e9d13c) * Make triplet to appid work for libertine apps (f9ca357) * Move the code into the app-info file (7b5e73f) * Updating to latest libertine-detection (4c72ba6) * Update to latest xmir-support (4873159) * Adding in support for user directory installed apps (Steam) (ece515a) * Pull out the desktop creation into it's own file (94a5ab7) 2015-08-10 Ted Gould * Remove std=c11 (fdba260) * Mention varargs (9eff14f) * Convert the libertine test to the new format (40fef27) * Testing updates (a9f93e3) * Changing the click mir tests over (ef2be48) * Porting some more cases (a304e9f) * Refactor test into a helper function (72039ac) * Add rootfs to the path for LXC (c370cd8) * Make it so that we can use the libertine data in the tests (aab7e5a) * Adding new symbol into the symbols file (b0558d9) * Flesh out the libertine app info function (539ce94) * Insert a libertine handler (5b49ab3) * Adding a function description (362dbd4) 2015-08-06 Ted Gould * Grab the libertine detection branch so that we can do that too. (a2f5a26) * Switch to g_unsetenv() (a1f8252) * Test the libertine detection and verify we can start one. (84b0993) * Fixing the test suite (8afac54) * Making it so that we can use a different launcher (5c12657) * Pull the libertine-launch variable into the build system (a081c99) * Grab rootless (22fbea5) * Remove the -rootless flag (75d5ce6) 2015-07-31 Robert Ancell * Depend on upstart instead of upstart-bin which is a dummy transitional package (aec0c4b) 2015-07-14 Ted Gould * Insert ourselves into the exec line (31be3a7) * Get the libertine keyfile (dcd3a44) * Pass through the libertine setting (b97252d) * Flesh out the libertine detection (70e4919) * Inject some libertine checking (24a328d) * Grabbing XMir support (4cfb270) 2015-07-01 Ted Gould * Adding a click test, with all the joy that brings (08d2390) * Desktop tests for setting the xmir values (32333cb) 2015-06-30 Ted Gould * Adding in rootless (5d30be5) * Adding in an evil test (4a2bcdd) * Add in a sig child handler to handle the Xserver dying and not sending info on the socket (3d75470) * Getting the value out of the code page (f36cb85) 2015-06-29 CI Train Bot * Releasing 0.5+15.10.20150629-0ubuntu1 (81a321d) 2015-06-29 Andreas Pokorny * mir release 0.14.0 Approved by: PS Jenkins bot (5ca19b9) 2015-06-26 Ted Gould * Linking into CMake (471696a) * Remove trailing returns (a5b51bc) * Putting the basics together for a helper test (17111fe) * Refactor to make things all pipey (9a288e3) 2015-06-25 Andreas Pokorny * empty commit (862ba70) 2015-06-10 Ted Gould * Updating to trunk (0d96c60) 2015-06-08 Ted Gould * Protect against possible erros with %s (3020637) * Unset the environment variables (d8ca286) 2015-06-05 CI Train Bot * Releasing 0.5+15.10.20150605-0ubuntu1 (39d130b) 2015-06-05 Ted Gould * Don't error on ZG failure Fixes: #1452178 Approved by: Charles Kerr, PS Jenkins bot (a1ca4a8) * Fallback to looking for the AppID tag if the source is missing Fixes: #1461138 Approved by: Charles Kerr, PS Jenkins bot (0a42407) 2015-06-04 CI Train Bot * Releasing 0.5+15.10.20150604-0ubuntu1 (4b1d076) 2015-06-04 Ted Gould * Add an untrusted helper that works with Mir trusted prompt sessions. Approved by: PS Jenkins bot, Charles Kerr (9c9c4e5) * Adding a directory parameter to set_exec (5117b36) 2015-06-03 Ted Gould * A test for the upgrade path (08b0041) * Need to commit this (82d2897) * Remove the source line and make upgrade fail (8775f0b) * Getting an upgrade test into the mix (8847e82) * If we don't have a source label but still have an app id assume that the file is allowed to be further checked for a match (fa21b75) 2015-05-27 Ted Gould * Don't error on ZG failure (1341ea0) 2015-05-22 Ted Gould * Cleanup error handling to only throw a recoverable error if we are closing the socket (8b4bdb4) * Disable debug messages from the demangler from messing up our testing of stdout (22babf0) 2015-05-21 Ted Gould * A couple of debug messages (f83efcd) 2015-05-19 Ted Gould * Restructure code to clear error properly (0374f7d) * Fix error message (f329653) * Use steal (6057fad) * Added a comment to explain deprecation (52d3e5f) 2015-05-13 Ted Gould * Update to trunk (e8d2b69) * Remove confusing comment (72c8356) * Fix typo in docs (4b3fb0b) * Add an untrusted helper that works with Mir trusted prompt sessions. (7ee2fe4) 2015-05-12 Ted Gould * Explicitly set the return value (0b4d945) * Make sure there is a job variable set as well (f5a03de) * Make sure to unset the environment variable (236fd85) * Add tests for set_exec (f34b2b4) * Avoid valid() because it's stupid (2b9c140) * Debug messages and a slight cleanup (65c98d6) * Clean up the pause function a touch (cb51d8b) * Put waiting on the tool in its own thread (401c0d9) * First pass at the file passing test (f1b7d08) 2015-05-11 Ted Gould * Make sure to set the socket path/name in the environment (982b93c) 2015-05-09 Ted Gould * Factor out the finding of the enviroment variable (05eed50) 2015-05-08 Ted Gould * Put in a basic checking the session helper test, needs to expand (ff16e4e) 2015-05-06 Ted Gould * Stealing the Mir mock from Pay (bd40b9e) * Make the timeout work, and shorter (81a8f9c) 2015-04-30 Ted Gould * Tied into the the proxy (4de7ced) * Grabbing an updated GdbusCodegen (f92f57f) * Demangler (34b8956) * Stealing stuff from Pay (678fb43) * New Symbols! (1a5647f) * When we do remove a proxy with a timeout, let's report a recoverable error (20b1b4f) * Adding in the timeout to protect from keeping it around (794caf0) * Clear the FD and export when cleaning up (60ae0b5) 2015-04-29 Ted Gould * Put the mirfd into the proxy (0fc435c) * Steal the FD passing code from pay service (6644cd0) * Make the data lookup quark based (e664f83) * Pulled in a bunch of pay object stuff (7089a5d) 2015-04-22 Ted Gould * Update to trunk (c51be5a) * Starting to break out the various pieces and make functions for it. (7baa42a) 2015-04-21 Ted Gould * First flesh for starting the helper (934f751) 2015-04-14 Ted Gould * De-pay-ify (237122e) * Stealing the demangler from pay-service (b0197f4) * Support a demangled world (6d938f4) * Fleshing out the exec set function (539d741) 2015-04-13 Ted Gould * Adding docs and a helper function (edcaab7) * Everyone needs Mir now (784e958) * Making sure those who use us have the mir libs installed (6c2a869) * Get all the Mir connections to put a prototype in the header (e4f7b0e) 2015-04-10 CI Train Bot * Releasing 0.4+15.04.20150410-0ubuntu1 (4d11137) 2015-04-10 Ted Gould * Have desktop hook verify source file still exists Fixes: #1437355 Approved by: Charles Kerr, PS Jenkins bot (bc20009) 2015-04-08 Ted Gould * Move unref so that there's only one, error or not. (3cca5a4) * Fix typo (d234147) 2015-04-06 Ted Gould * Out of tree build issues (1c471fa) * Removing the unused root (cc3a407) * Add in a removal test (a3b0c02) * Flip the roots around a bit (32ee71f) * Switch databases around to have a new root dir (9ac7b01) * We're screwin' with ya' (0c27d70) * Test removing a file (94e8ee4) * Verify App IDs (fe4d71b) * Verify that we got the AA wrapper in (5d192b8) * Verify the desktop files are created (17c538d) 2015-04-03 CI Train Bot * Releasing 0.4+15.04.20150403-0ubuntu1 (ff6b0a7) 2015-04-03 Ted Gould * When Mir isn't available just exec with X11 Approved by: PS Jenkins bot, Rodney Dawes (a375558) 2015-04-01 Ted Gould * Click DB and user database setup and testing (6f8c390) * Clean up, add some comments (cbeb58c) * Adding a base desktop hook test shell script (f71f128) * Attaching bug (3515e3c) 2015-03-31 Ted Gould * Flesh out the click side of things (7d55379) * Make the manifest lookup get the dir too (ddecb2c) * Fleshing out the legacy case (94eb3a7) * Add function for looking up path and file (a621bed) * Checking the new value we're putting into the desktop file (b4dd973) * Putting the built key into the cache desktop file (13eb465) * Insert the new function to check (8dbbf51) 2015-03-13 CI Train Bot * Releasing 0.4+15.04.20150313.2-0ubuntu1 (e83711d) 2015-03-13 Rodney Dawes * Save status from waitpid and exit with it. Fixes: #1431565 Approved by: Charles Kerr (874352f) * Save status from waitpid and exit with it. (2c55310) 2015-03-05 Ted Gould * Building the Mir path earlier and detecting whether it's useful (037dc67) * Grabbing the app-test branch (1680aaa) 2015-03-05 CI Train Bot * Releasing 0.4+15.04.20150305.1-0ubuntu1 (3284e80) * Replaced 0replaceme with real versions. (c9fa658) 2015-03-05 Ted Gould * Emit a signal when applications are paused or resumed Fixes: #1425285 Approved by: PS Jenkins bot, Rodney Dawes (d6f1da9) * Add a test tool to run an application from the command line Fixes: #1425286 Approved by: PS Jenkins bot, Rodney Dawes (8da507a) * Remove application log on exit if not in developer mode Fixes: #1414039 Approved by: PS Jenkins bot, Rodney Dawes (f8baa8b) * Making a mock executable for PPC (1430b9b) 2015-03-04 Ted Gould * Make libmir not required for PPC architectures. (62b2589) * Make Mir an optional dependency (cbe6e0c) * Adding to the informational dbus xml file (9149ce4) 2015-03-03 Ted Gould * Attaching bug (779a041) * Add in symbols (dada31c) 2015-03-02 Ted Gould * Debug message if we emitted the signal (75aeba7) * Fixing checks (a737633) * Starting to count the signal emitions (61c1454) 2015-02-25 Ted Gould * Pulling things into the tool to watch them. Very carefully (d1ea167) * Adding some delete code in there too (158a89f) * Mixing in some resumed observers (cb667f4) * Fleshing out emitting the dbus signal with all the pids (054e69f) * Find a place to insert where a DBus signal is sent (22ebcf7) * Getting all our types together (9fb2e58) * Attaching bug (64ee7ec) * Flesh out setting up the paused observer (bf4c7e6) 2015-02-24 Ted Gould * Adding in the interface for pausing observers (87d1cba) 2015-02-23 Ted Gould * Remove cmake directory, no longer needed (8f4bad8) * Add a copyright header (70a7ed0) * Switching things around slightly to make packaging easier (e1ba9ac) * Merging build systems (b9824a7) * Merging the debian stuff (980f7b3) * Merging in ubuntu-app-test project (4e62771) 2015-01-23 Ted Gould * Attaching bug (3cbaa2d) * Switch to checking developer mode (1ede02b) * Add log cleaning on exit of applications (699c0c5) 2014-11-21 CI bot * Releasing 0.4+15.04.20141121-0ubuntu1 (8a93e6b) 2014-11-21 Ted Gould * Create a custom GMainContext when waiting on the CGManager DBus connection. Fixes: #1394622 Approved by: Charles Kerr, PS Jenkins bot (91070eb) * Use a version script to ensure we're not leaking symbols Approved by: PS Jenkins bot (d90dcb3) * Remove reporting a recoverable problem on cgmanager Fixes: #1394919 (f797ef4) * Remove reporting a recoverable problem on cgmanager (63b3ac3) * Ensure we can never leak symbols again (b96c610) * Link with a version script (fc67771) * Adding a map (72a4058) * Attaching bug (4156b33) * Complex description (4ae66d2) * Do a sync close to get the event and then free the context (d21b680) 2014-11-20 Ted Gould * Change how the source is removed (4d04312) * Handle incomming NULL (581c080) * Switching to a complex unref routine (2df2b6b) * Ensure the timeout ends up in the right context (478c345) * Create a context and push it on the stack (3abd145) 2014-11-18 CI bot * Releasing 0.4+15.04.20141118-0ubuntu1 (0db29e8) 2014-11-18 Ted Gould * Attenting to connect to cgmanager for 1 second and then failing and reporting a recoverable error. Fixes: 1377332 Approved by: Charles Kerr, PS Jenkins bot (9af9ec2) 2014-11-11 Ted Gould * Attaching bug (3bcc900) * Making sure we report a recoverable error so we can see how often this connection fails (8e14495) * Make it so that cgmanager connections can timeout (b54e6cc) 2014-10-31 CI bot * Releasing 0.4+15.04.20141031-0ubuntu1 (02eccb7) 2014-10-31 Chris Townsend * Change GetTasks to GetTasksRecursive so it searches all pids related to a cgroup instead of just the first pid. Fixes: 1386357 Approved by: Ted Gould, PS Jenkins bot (5d7385b) 2014-10-31 Leo Arias * On the cgroup manual test, make it clear that the command must be run on the app. Approved by: Ted Gould (4e50514) 2014-10-28 Chris Townsend * Change GetTasks to GetTasksRecursive so it searches all pids related to a cgroup instead of just the first pid. (4ea56ec) 2014-10-08 Leo Arias * On the cgroup manual test, make it clear that the command must be run on the app. (0decb59) 2014-10-06 CI bot * Releasing 0.4+14.10.20141006-0ubuntu1 (aab477e) 2014-10-06 Ted Gould * Use a setuid helper for OOM adjustment of Oxide renderers Approved by: Charles Kerr, Seth Arnold, PS Jenkins bot (bb1eee9) * Set OOM adjustment without using temporary files. Fixes: 1374177 Approved by: Charles Kerr, PS Jenkins bot (18ae3a0) 2014-09-30 Ted Gould * Parse and verify the OOM value as well (357d0be) 2014-09-29 Ted Gould * Fix return to be an exit (0d3486f) * Generate the postinst script at build time to match the architecture we're building for (5df1850) * Use g_spawn_async and pull the code out into a helper function for readability (53f02ae) * Check less that zero for open (7939c47) * Remove argument strings from error messages (feed6b2) * Use symbolic names for exit values (9edbaae) * Add debhelper token (565cf7f) * A setuid postinst helper (069e365) * Bad check (9b6bb4d) * No fancy printing libraries here (a7cb339) * Reset so that we're checking the directory first, use that directory that we have open. (458e1f5) * Add in using the helper for access issues (ccfe51a) * Switching to a switch statement (30f3cc3) * Starting out a little helper to make setuid and help us if we don't have permissions oxide (0e398e1) * Grabbing the adjust file branch (dd3c935) * Return true if it does not exist (e80ab5b) * Optimize the compiler's choice of branching (4b96bd9) 2014-09-25 Ted Gould * Better error messages (8e716e3) * Wrong order for write (da51ac2) * Testing OOM writing values (be917b1) * Better warnings for basic stuff (b04ac2d) * Change the way we can do testing by changing the proc path (0c7cc62) 2014-09-25 CI bot * Releasing 0.4+14.10.20140925-0ubuntu1 (97aa77e) 2014-09-25 Ted Gould * Add handling for X-Ubuntu-SymbolicIcon in desktop hook Fixes: 1365408 Approved by: Charles Kerr, PS Jenkins bot (193e372) 2014-09-25 CI bot * Adjust upstart recommends to upstart-bin Fixes: 1351306 Approved by: Ted Gould, PS Jenkins bot (a292c1f) 2014-09-25 Martin Pitt * Upstart dep updated to trunk (0cf5e9d) 2014-09-25 Ted Gould * Update to trunk (7ee4616) 2014-09-24 Ted Gould * Duh, fopen (d46b3af) * Print a write error if available (47ddd88) * Set initial OOM scores for applications (15561da) * More descriptive errors and handling more cases (6593e5a) * Move the error into the function so we can get info on the error (1ee5209) * Use direct IO instead of a temp file (e858fd5) 2014-09-19 Ted Gould * Attaching bug (fe36ec6) * Cleaning up and hadding an old key prefix (0aa4a2b) * Path, Exec and App ID defines (29a16e8) * Desktop group in define (ee6d974) * Make desktop keys into defines (cc93296) * Add handling for our symbolic icon just like our icon handling (f696548) * Support a field in our recoverable error and simplify the bucket (b40181f) 2014-09-17 Ted Gould * Merged trunk (66e4ae7) 2014-09-15 CI bot * Releasing 0.4+14.10.20140915.3-0ubuntu1 (d901697) * Replaced 0replaceme with real versions. (bd9e482) 2014-09-15 Ted Gould * Reshuffle the pre-start jobs to save precious milliseconds Approved by: Charles Kerr, PS Jenkins bot (191f95f) * Add a tool to show application usage Approved by: Charles Kerr, PS Jenkins bot (f9347de) * Rotate application and untrusted helper logs faster than other services Approved by: Charles Kerr, PS Jenkins bot (e08a886) * Provide a pause and resume function for AppIDs Approved by: Charles Kerr, PS Jenkins bot (1a44472) * Cleanup UAL LTTng tracepoints Approved by: Charles Kerr, PS Jenkins bot (e581e9f) * Use the Upstart 1.13 feature of multiple set for environment variables Approved by: Charles Kerr, PS Jenkins bot (00e4bcc) * Tracepoint got dropped in refactoring Approved by: Charles Kerr, PS Jenkins bot (c3d8570) * CGroup test and clarification comments Approved by: Charles Kerr, PS Jenkins bot (98983b5) * Adding a manual test to verify the job running the application Approved by: PS Jenkins bot, Allan LeSage (b615f06) 2014-09-15 Lukasz 'sil2100' Zemczak * Unrevert the cgroup support Fixes: 1358753 Approved by: Charles Kerr, PS Jenkins bot (ba961eb) 2014-09-15 Ted Gould * Ensure the mainloop work queue is cleared before clearing the value (3311095) * Change appid to work in the silo (1a850db) * More verbose testing (2663b6c) * Allow for pausing until the tasks are running (80e8058) * Pulling through tracepoint cleanup (0a93923) * Merging tracepoint cleanup (b6a114d) 2014-09-10 Ted Gould * Check the calls to make sure we're calling ZG (8f58be2) * Putting in the ZG mock needed (e7b331a) * Pretty print (e6c8791) * Make it so that we sort the by the most used (bb7d071) * As we want this to be more complex, let's put it in its own function (e33429a) * Pull out the appid (kinda hacky) (762cbf1) * Turn into usage numbers (a8ef8e0) * Parsing through and starting to generate the usage time (82b8bb7) * Start looking at our results (8bb4afa) * Event templates (5a1a740) * Basic framework for query (a991f94) * Add in a usage calculator (de06c0b) * Get the lib for the function (953586e) * Making it so that we use short URLs in the base tool too (f5fc752) * Flesh out the reporting of the events (9236b98) * Insert the function to report the event (7ce534e) 2014-09-09 Ted Gould * Setup core testing of the functionality (7c50265) * Oh, a bug, tests rock! (d4bce9f) * So you like mocks… (d996eb3) * Start setting up the new test (9c40771) 2014-09-06 Ted Gould * Build the data spew binary (989424b) * Something that runs, and spews (3f49441) * Write out the OOM adjust value (376a03d) * Connect into the idea that we can set the OOM value (6d7124b) 2014-09-03 Martin Pitt * Adjust upstart recommends to upstart-bin (6e6a046) 2014-08-29 Ted Gould * Out of tree testing (a955536) * Building and installing the logrotate helpers (49090ef) * Adding a logrotate for untrusted helpers (cb16a19) * Adding a logrotate for applications (1cd1bb2) 2014-08-26 Ted Gould * Increase tollerance to make Jenkins happy (1174a9f) * Moving getpid() and getppid() out of the loop (b4fe3b9) 2014-08-25 Ted Gould * Reenabling the exec-utils tests to work with libual based pre-starts (2bf3def) * Seems to take longer than before, not going to sweat it at this stage, but odd. (2e6f51f) * Update to new mock (87bf917) * Killing app2 and going to multiple (11cc8c2) * Restructuring so that we can use the full stack better, not crashing… (a749822) * Unreffing connection on loss of job path (4332958) 2014-08-22 Ted Gould * Take into account the status of the return (12422e0) * Using self so we don't have to build the path (4b0fdaa) * Simplify checking params (77e0d1f) * Use the bus we already have (445fdec) 2014-08-21 Ted Gould * No more pre-start (0f6688d) * Using the wrong handle (5c74ab7) * Disable the test for a bit (3f0242e) * No more exec utils to test (76acc7e) * Connecting things together (bd4dee1) * Connecting all the symbols together, for fun (1bf1c4e) * Refactor the click and desktop exec routines so they're setting up an environment (bf3756c) * Grabbing the tracepoint cleanups (f2afa68) * Moving the exec tools into the lib directory (28dba4e) 2014-08-20 Ted Gould * Make start a ual tracepoint (f1e3d41) * Adjust changelog to match distro (43381fe) * Update to latest missing-tracepoint (ba3e0c9) * Updating to trunk (7f721c1) * Update to trunk (19721d2) * Merging in proper-job-test (5b3db3e) 2014-08-19 Ted Gould * Attaching bug (6148784) 2014-08-18 Ted Gould * Change version (f30452e) * Unrevert cgroup support (4b5b421) 2014-08-18 Lukasz 'sil2100' Zemczak * Revert (7a5c5f1) 2014-08-13 Ted Gould * Updating to trunk (71bcbf2) * Fleshing out a signal sender (9e43a81) * Grab application cgrouping (435d2d4) * Add two new symbols (eba20d0) 2014-08-12 Ted Gould * Add back libual_start (ce2871d) 2014-08-11 Ted Gould * Make consistent handshake tracepoints (8e644c8) * Put tracepoints in for getting the pids from cgmanager (30ccaf7) * Make the focus tracepoints not show up in other signals (130e7f7) * This tracepoint didn't tell us anything (ead18c5) * Comment to explain (92ef9db) * Over optimize a little (dcd767a) * Move the reporting of the error into its own function so we can more clearly see the important stuff (b1d2394) * Switch the lib over to ual_tracepoint (94cc0e5) * UAL tracepoint in click-exec (dc02e25) * Switch deskto-exec to ual_tracepoint (937a2aa) * A cleaner tracepoint function with an envvar to enable (8f91b28) * Changing to ubuntu branding for exec-line-exec (67afb8f) * Adding App ID to exec-line-exec tracepoints (13702d3) * Switch desktop-exec traces to ubuntu namespace (80f8606) * Switch click-exec traces to ubuntu namespace (86e42d5) * Make the click exec trace points have the app_id (b3f2e16) 2014-08-08 Ted Gould * Put AppId into all the desktop exec tracepoints (d3a02ec) * Grab the batching of env vars (6eafbb6) * Merge the cgrouped-applications branch (9e91326) * Comment for the Python code (7ed2a03) * Adding a test to verify the cgroup containment (7423369) 2014-08-08 CI bot * Releasing 0.4+14.10.20140808.2-0ubuntu1 (71375a6) 2014-08-08 Ted Gould * Use Upstart cgroup support in 1.13 to properly track PIDs Approved by: Charles Kerr (5733610) 2014-08-07 Ted Gould * Track the process group so we don't kill our children (0a2851d) * Adjust test to handle the parent kill protection (c0de29f) * Avoid killing our parents (abcc50c) * Adjusting tests for our new relative world (d4727c6) * Make it so that the relative group name can be '' for tasks running in the group (48dfdcb) * Explaining 'freezer' somewhere (b7d33ec) * Fix type to match 'i' (6d104f0) * Fix some typos (b4ea019) * Cleaning up diff (78be221) * Test for the lack of environment variables (8920d48) * Connecting into sleep and killing it (a657642) * Bootstrap the cgroup reaper test (97c4e5a) * Name the shared helper functions better (6d4db36) * Putting the reaping in the post-stop (113fc90) * Make our helper function static (704db62) * Check params (7e6c859) * Put in the legacy app tests (bd50201) 2014-08-06 Ted Gould * Fix comments (201e86a) * Actually verify the calls being made (99a55d2) * Start testing PID ranges (fb954aa) * Adding a dbus mock for cgmanager (44a7a54) * When we set the path assume it is a message bus (0b2fbf9) * Authenticate as a client (9fec61e) * Switching to the freezer cgroup (c54738a) * Grab libcgmanager as well for the socket location (4c1f8a6) 2014-08-05 Ted Gould * Wow, can't believe I did that (eeb3d21) * Include environmental overrides for testing (d142cae) * Handling the legacy multi run case (0c633a0) * Pull getting the connection out of the function to make it last longer in some cases (ae8f740) * cpu doesn't seem to work, try cpuset (f0b549d) * Disable the test for now (362301d) * Make it so that we work well for click and friends (d9fc7e2) * Use the job and instance (163bce8) * Reap in the post stop so the job isn't done until we say it is (d839c3f) * Basic cgmanager queries (3328919) 2014-08-04 Ted Gould * Bump dep to Upstart 1.13 (c360d1c) * Put the cgroup stanza in (0654f43) * Update to trunk (137ecd6) * Adding a comment with what we're trying to do (2a5194b) 2014-07-31 Ted Gould * Merging trunk (9312377) 2014-07-21 Ted Gould * Trancepoint got dropped in refactoring (ce45f99) 2014-06-14 Ted Gould * Flesh out the cgroup reaper (0044d95) * Reap by cgroup in our jobs (a1b0117) * Adding a cgroup-reap-all utility (cf0d946) * Use the prototype function to start adjusting how we work (fab66a4) * Prototype for getting the list of PIDs (6ec1b8a) * Changing from Multi to List (fc7cd15) 2014-06-09 Ted Gould * White space (f3ea976) * Adding test to verify job types (b4bf8d8) 2014-06-05 CI bot * Releasing 0.4+14.10.20140605.3-0ubuntu1 (02b5ee9) 2014-06-05 Ted Gould * Fixing click hook for name change (1d9da23) 2014-06-04 Ted Gould * Removing more instances if 'upstart' to not confuse people, leaving the tracepoints for now (9ac0b5c) * Fix env var for finding architecture (ceaf9d0) * Set the correct variable name (f973a7f) * Adding changelog entry to ensure we have one. (ba3d6f8) 2014-06-04 Oliver Grawert * add Conflicts/Replaces/Provides to ubuntu-app-launch-tools since there are still packages depending on upstart-app-launch-tools (481cbab) 2014-06-04 Ted Gould * Fixing click hook for name change (89c445a) 2014-06-02 Ted Gould * Merging trunk (5bc10b4) * Measure the sending of the environment variables (2de9d23) * Convert the exec-util tests to use the multiset (756f8db) * Handle the multiple setting in the mock (c43c17b) * Convert over our new handle way of life (4b19cd0) * Migrate helpers away from set_upstart_variable (ac7b340) * Add an environment builder handle (ae59506) 2014-06-01 CI bot * Releasing 0.4+14.10.20140601-0ubuntu1 (7fa3694) 2014-06-01 Ted Gould * Dummy merge to push through name change (0de239b) 2014-05-30 Ted Gould * Make it compile (616b8b1) * Switch to a helper (a32352b) * Merge trunk (9c3fe0c) 2014-05-29 Ted Gould * Name change of signal (1c7d916) 2014-05-28 Ted Gould * Drop noise from changelog (f0fb552) 2014-05-27 Ted Gould * Update merge review (9e09bb1) * Rename to Ubuntu App Launch (fd3942f) 2014-05-26 Ted Gould * Fix the conflicts. (06dc41d) * Update to trunk (fdc9943) * Update to trunk (df0cf3c) 2014-05-21 CI bot * Releasing 0.3+14.10.20140521-0ubuntu1 (c912da3) 2014-05-21 Ted Gould * Set LD_LIBRARY_PATH to include the application directory (4a9ef07) * More elegant handling of bad application id errors Fixes: 1238068 (ac1d92f) * Debug message for valid, though rare, conditions. Fixes: 1301173 (15b0dfb) * Drop Surface Flinger support (a68a351) * Merge trunk (6e55b87) 2014-05-13 Ted Gould * Reformatting (7ba35ed) * Simple object based API (745aad7) 2014-05-01 Ted Gould * Test to ensure we handle null strings (f34e8fb) * Detect empty strings in environment variables (69e2274) 2014-04-30 Ted Gould * Gotta change the .in file too (c6bf027) * Increase timeout for amd64? odd (c62811c) * Make sure to test it (579d26b) * Set LD_LIBRARY_PATH to include stuff in the package's directory (e0920c2) * Errors caught by the test suite (532a29f) * Static analysis (compiler) detected fixes (ab45500) * Adjusting tests (79aa1ed) * Change the architecture name (2969daf) * Connect to the right symbols (e601840) * Build system and file moves (3bbc47c) * Packaging changes (164c786) 2014-04-16 Ted Gould * Adding a debug message for the suppression (c035070) * Don't report recoverable errors on debug tools (442379b) * If we've got the pid let's file the bug on someone else (23cdad0) * Put the PID of who's launching into the environment (b80a847) * Connect in the recoverable error (80795ff) * Connecting it to desktop_exec (34c900a) * Stealing the recoverable propblem helper from url dispatcher (467ae6b) * Debug message for valid, though rare, conditions. (fcfb4e9) 2014-04-11 CI bot * Releasing 0.3+14.04.20140411-0ubuntu1 (afd2784) 2014-04-11 Ted Gould * Kill all jobs in process group on exit (0e76fb3) * Forgot to move over the kill (e928abf) * Use upstart-app-pid (605188d) * Brace type (73d7fd3) * Should be set-env (86a8bb6) * Using pkill (853d4f6) * Trying to bring down the process group with the app (7ec4662) 2014-03-28 Ted Gould * Not checking for the surface flinger variables in tests (97b82b6) * Drop it from the env lists (31cfe82) * Dropping setting the desktop file path (63b43cf) * Drop adding the desktop file hint (7bed17a) * Drop checking for SF in app startup (2bf90ac) 2014-03-21 CI bot * Releasing 0.3+14.04.20140321-0ubuntu1 (878bd94) 2014-03-21 Colin Watson * Use libclick to get package manifests, saving about 0.7 seconds from Click application startup (on mako). (70f1586) * Use libclick to get the package directory, saving about 0.7 seconds from Click application startup (on mako). (0c98740) 2014-03-20 CI bot * Releasing 0.3+14.04.20140320-0ubuntu1 (cd61dfe) 2014-03-20 Thomi Richards * Export the correct environment variable to load apps with testability enabled. Fixes: 1285947 (c08d4ea) 2014-03-20 Robert Bruce Park * Resync 0.3+14.04.20140220-0ubuntu3 from distro. (4e19d8b) * Resync 0.3+14.04.20140220-0ubuntu2 from distro. (06a00c6) 2014-03-12 Colin Watson * Use libclick to get package manifests, saving about 0.7 seconds from Click application startup. (1b1f77e) 2014-03-07 Colin Watson * Fix some reference leaks. (7d626f2) * Use libclick to get the package directory, saving about 0.7 seconds from Click application startup. (31e40a1) * Update Click documentation link. (99b650c) 2014-02-28 Thomi Richards * Export the correct environment variable. (82bc212) 2014-02-26 Ted Gould * Update to trunk (d6ce9ab) 2014-02-20 CI bot * Releasing 0.3+14.04.20140220-0ubuntu1 (cb2d88e) * Update symbols (22d3e37) 2014-02-20 Ted Gould * Add functions for testing and App ID parsing (54c8575) * Add observers in the launch tool so that we stick around to handle events (8ae108b) * A little tool to discover application IDs (150de38) * Support for Untrusted Helpers (99fafd9) 2014-02-19 Ted Gould * Grab the untrusted helpers branch (e3d9920) * Typing is hard (2cfb083) * Adding the parse symbol (38f384d) * Test the parser (6597541) * Copy the implementation out of the helpers library (83ac0da) * Adding API for parsing AppIDs (4b9e6b3) * Make a test to ensure we're setting the environment correctly. (8ab2e58) * Adding to the symbol table (8548eb6) * Setup the old start application as a core with a parameter (8d33f91) * Adding API for running an application under test (d3af40f) 2014-02-13 Ted Gould * Helper GIR annotations enhancement (b29cc15) * Merge trusty-proposed (5b0683a) 2014-02-13 CI bot * Releasing 0.3+14.04.20140213-0ubuntu1 (4a08232) * Update symbols (8f33ce4) 2014-02-13 Ted Gould * Remove an invalid substitution that we weren't using Fixes: 1220591 (46bafab) * Add GIR support to libual (367d9da) * Function to get the log file for the application (875f96f) * Unregister for Unity's Resume signal (f0973da) 2014-02-11 Ted Gould * Better explain the purpose of the for loop (cb7512f) 2014-02-10 Ted Gould * Only parse the header for introspection information (62ff93d) * Updating to future trunk (e28cb87) * Merge future trunk (239c940) * Test to ensure we ignore multiple responses (e125312) * Test to ensure we ignore multiple responses (727f72c) * Track the dbus signal subscription (1fc63a1) 2014-02-10 CI bot * Releasing 0.3+14.04.20140210-0ubuntu1 (826685b) 2014-02-10 Ted Gould * Timeout the application job if we don't get notification from Upstart that it started (f3739c3) * Test the zg-event tool for timeout (a2aa8b1) * Add the security application test to the manual tests (788c7ca) * Flesh out the failed application handling (b5505bb) * Add additional tracepoint information for the libual tracepoints (9237ff0) * Move application job to be C. (ba0e9df) * Removing libnih from our dependencies (0847a41) 2014-02-09 Ted Gould * Ensure that we can timeout and not block (93cc555) 2014-02-07 Ted Gould * Update to trunk (c17b341) * Update to trunk (959f619) * Update to no-libnih-link (50f13ef) * Updating to trunk (a3b2b2f) * Pulling through application-job-to-c (8aa4eac) * Pulling through application-job-to-c (e5c1ef6) * Future trunk with security and last-function-standing (b9ab91b) * Update to future trunk (c0ac36d) * No libnih (6fa4d7a) * last (eba0707) * security (6799e9f) 2014-02-06 Ted Gould * Adding the new function to the symbols list (a0bda03) * Test the paths to make sure they're correct (f97aa6e) * Don't throw an error, too much (8937c44) * Setup the cache directory (0a2d561) * Flesh out that log function we just added the stub for (6e0ed33) * Splitting out the click package detection (ef7a634) * Adding a function for log files with a stub (b92ea71) 2014-02-06 CI bot * Releasing 0.3+14.04.20140206-0ubuntu1 (1562f3e) 2014-02-06 Ted Gould * Make the last environment variable set synchronous to make Upstart respond that it received it. Fixes: 1275017 (dd41ee7) * On error print the exec line (9c71e11) 2014-02-05 Ted Gould * Check for a desktop key to override the default (e789790) * Setup xinit if we're on Mir and we've been asked (34f0469) * Set a default state for the XMir enablement (fb1aacd) * Updated to latest triplet-tool (761ab59) * Fix typo (55968f2) * Grabbing updated untrusted helper (0f2ca72) * Save a count of the instances (7aab428) * Make sure to free the created URIs join string (d48d1b1) * Merging application-job-to-c to resolve conflicts (8b638dc) * Update to trunk (4f65d3b) * Making several functions static that should have been (e26355e) * Free'ing the remote error (a7f8bd2) * Update description for a better idea of where the AppArmor profile comes from (07e8d4a) 2014-02-04 Ted Gould * Add a test to run the security application click tests (e47b7d2) * Make it return error as well (49ae27c) * Add observers in the launch tool so that we stick around to handle events (73f9c97) 2014-02-03 Ted Gould * A little tool to discover application IDs (cc5d267) * Attaching bug (601a55c) * Flush is moot now (f133036) * Making it so only the last call is sync to help performance some. (c9201eb) * Introducing a sync param for the setting of upstart variables (28e3e5b) * No exec line, let's make sure Apport reports it (a09218c) * Not setting APP_EXEC by default so that we'll get a better error in exec-line-exec (a685b72) * Making the call to set the environment variable synchronous (0647c78) * Add directory as well (c08f8f7) 2014-01-31 Ted Gould * Update to trunk (88c5181) * On error print the exec line (d23e554) 2014-01-30 Ted Gould * Basic merge and review requirements. (cababd0) * Use a tool that we ship in this package for the testing (5b72330) * Remove an invalid substitution that we weren't using (def77ac) 2014-01-29 Ted Gould * Wrong panel (cb4b543) * Add a verification step and a test case for untrusted helpers (59fb004) * Grabbing the MR Policy branch (ddcb1a6) * Merge trunk (28035a2) 2014-01-29 CI bot * Releasing 0.3+14.04.20140129.1-0ubuntu1 (73f273f) * Update symbols (b7ba316) * Upload to trusty (b913392) 2014-01-29 Ted Gould * Get stacking right for the format tool (630cfd6) * Add a test case for secondary activation (55733ad) * Switch to refer to the manual tests (164d200) * Adding some manual tests (9b2223d) * Basis for our merge review policy (00ac76b) * Add application list handling to the triplet function. (a0bc7f3) 2014-01-28 Ted Gould * Add documentation for application listing (81fefec) * Some error handling checks (b51d762) * Check the various multiple cases (dd70300) * Check the right variable (a1b151d) * Adding tests for app names (50e8018) * Search for the app name as well (1b6c1f0) * Move things such that the parser can track the memory (aa0dcf8) * Move the manifest up a level (2518a18) * Make it so that we check the incoming values, or allow a null for version (9205d49) * Fix a memory leak of version (a4b19c5) * Making the application job a task. (f63f887) 2014-01-27 Ted Gould * Adding the new symbols in (6f35642) * Adding a test for getting helper instances (5502825) * Make it so that we'll stop untrusted helpers that are multiples as well on death (91108af) * Adding a function to get instance ids (59dc862) * Adding callbacks to print errors (359ebcc) * Protecting ourselves from bad apps. Hate them. (c46870d) * Adding in stop and start observer tests (f7d249d) * Fixing the ordering of the instance triplet (9ca78f9) * Adding some deletion as well (2b0e8b3) * Setting up the adding of observers (e951a0e) * Adding prototypes and stubs for the observers of starting and stopping (9c8ed31) * Forgot to free memory! (542c5e5) * Test listing the helpers (b621d30) * Making sure we can stop things that we've started (7c5f268) * Add a test for starting untrusted helpers (7ae3478) * Adding in mock tasks for the untrusted-helper job (f0ae044) 2014-01-24 Ted Gould * Allow URIs passed to helpers (6e22826) 2014-01-24 Ken VanDine * Added APP_URIS to start_helper and start_multiple_helper (6c588e7) 2014-01-24 Ted Gould * Setup a stop function that can take an instance id (4a56c29) 2014-01-23 Ted Gould * Implementing a function to start with a generated instance ID (cee4562) * Allow for an instance id if we need it (ce61bcc) * Add a helper for the type ending stuff (a27dfe9) * Add new symbols (d2532ad) * Making sure to flush the connections (6764c91) * Fleshing out the list of helpers (b5aca0c) * Fleshing out stop (98e8b0c) * Fleshing out the start function (48bbc3d) * Get some more stuff in the ignore file (3d2792b) * Fleshing out these little tools (f4b9b36) * Setting up base little tools for managing helpers (f8af937) * Giving the tools their own directory (1f5a2c3) 2014-01-22 Ted Gould * Making the application job a task (43a35df) * Adding a job to kill a type (95b9c89) * Make the job a little more normal (5d7263e) * Adding an untrusted helper Upstart job (58ecad4) * Add the build files (dfc1147) * Create a directory for upstart jobs (2bba309) * Updated to failure-is-an-option (224cfe9) * Merge trunk (540415b) * Merge trunk (96e9523) * Merge trunk (d56da0a) * Merge trunk (e584789) 2014-01-21 Ted Gould * Stubs (787fdc7) * Adding API functions for helpers (3ea0c06) * Install in the right path (34d3153) * Adding dh rules for GIR (1f1ee40) * Better annotate the URI list (f580882) 2014-01-14 Ted Gould * Update to trunk (4404fda) * Getting the build-deps (4d41a06) * Changing the observer type name to something GIR can understand (8e949c4) * Changing name of Enum so GIR can pick it up (c343ea6) 2014-01-14 Ken VanDine * Added upstart_app_launch_triplet_to_app_id to construct an appid from pkg, app, version triplet. If a specific version isn't provided, click is used to determine the version from the manifest. (c6c3cfb) * don't use g_strdup_printf where it isn't needed (fd50752) * don't use the version in the symbols file, it'll get replaced automatically (128963e) * updated symbols file (a29d229) * use tabs to follow style of existing code (baf0f90) * use tabs to follow style of existing code (39ebfde) * Removed an unnecessary g_strdup (f603c1b) * don't leak the parser and allocate the version string (af5a623) * Clearly setting of click_exec (0635840) 2014-01-13 Ken VanDine * Added upstart_app_launch_triplet_to_app_id to construct an appid from pkg, app, version triplet. If a specific version isn't provided, click is used to determine the version from the manifest. (3225584) 2014-01-08 Ted Gould * Fix a fair number of gir bugs (a2c4462) * Make sure we get the warnings (35c4909) 2014-01-07 Ted Gould * Some packaging, just for fun. (d78ee39) * Put the GIRs into a list (57e29b8) * Making sure we find GObject introspection (4c5c9da) * Merge trunk (35a7f37) * Merge trunk (d45a322) * Update to trunk (9b27c01) * Update to trunk (f188e02) * Cargo culting some CMake code (768af7f) * Need this too (d681e8f) * Grabbing GIR macros (6156b4a) 2014-01-06 Ted Gould * Include an architecture specific directory in the path. (8d8ff5e) * Merging trunk (bb47a13) 2013-12-20 Ted Gould * Add an APP_DESKTOP_FILE_PATH to point to a readable desktop file under confinement. (926fdee) * Tests for the exec utilities. (b4f1ec3) * Sync with trunk (6d1d427) * Set the Upstart job environment using DBus. (414bb8b) * Checking the architecture variable to ensure it doesn't have a colon (d8e5d7e) * Ensure all environment variables escape (d8b5938) * Make sure all environment stuff gets out (fb8c65c) * Sync to trunk (3fdb16d) * Adding the app exec line to the error (992050c) * Ensure we free the variables in the error case (3d15960) * Add a test for legacy jobs (469591e) * More tests for the other situations (05149eb) * Fleshing out the crash test (1362638) * Adding a test to test failure. This is something I should be good at! (eea527e) 2013-12-19 Ted Gould * Fixing spacing (6d487ec) * Make sure the signal gets out (358a0c4) * Fleshing out the handler (b48f715) * Switching over to using the C utility (dce9453) * Going C on this one (83be467) * Making the failure script handle the case of start failure (6b8e7cc) * Let's let Upstart do all the emitting here (8cb68e0) * Matching Upstart (9802196) * Check the handling of the various strings in the reason (4e33697) * Base failed observer test (e2134c7) 2013-12-18 Automatic PS uploader * Releasing 0.3+14.04.20131218-0ubuntu1 (revision 100 from lp:upstart-app-launch). (e98896a) * Releasing 0.3+14.04.20131218-0ubuntu1, based on r100 (de5249e) 2013-12-18 Ken VanDine * Multi-Arch: same libraries must not depend on run-time application, since this breaks cross-compilation. Furthermore, circular dependencies are never needed: upstart-app-launch depends on libupstart-app-launch2, which depends on upstart-app-launch. It's the same reasoning why we do not make libgtk-3.0 depend on epiphany webbrowser, even though gtk has functions to open URL in a webbrowser. And in a multi-arch world libgtk-3.0 would never know which architecture your web-browser is, it could be any. Libraries should only ever depend on other linked shared libraries. (3ef45dc) 2013-12-18 Robert Bruce Park * Sync distro back to trunk. (0c054a9) 2013-12-18 Ken VanDine * Multi-Arch: same libraries must not depend on run-time application, since this breaks cross-compilation. Furthermore, circular dependencies are never needed: upstart-app-launch depends on libupstart-app-launch2, which depends on upstart-app-launch. It's the same reasoning why we do not make libgtk-3.0 depend on epiphany webbrowser, even though gtk has functions to open URL in a webbrowser. And in a multi-arch world libgtk-3.0 would never know which architecture your web-browser is, it could be any. Libraries should only ever depend on other linked shared libraries. (95546a9) 2013-12-18 Ted Gould * Adding a colon directory test (bfc9e8a) * Protect against app directories that have ':' in them (8e72786) * Since the failed events aren't using the upstart events it doesn't make sense to have them in this test (ea19a2c) * Improve readability of the coverage report. (ac67211) * Handle all the failure observer stuff, unfortunately as a special case. (75b1d40) 2013-12-17 Ted Gould * Adding the signal into our docs (79b6844) * If we get an error from Upstart that we can't start it, then emit a fail signal (2fae9a3) * Updating to mega merge (1afdd8b) * Setting the APP_DESKTOP_FILE_PATH in the exec scripts (f9faef2) * Oops, bug (7b700dc) * Fixing variable counts (1404a9e) * Adding tests for the desktop file path (2ddca93) 2013-12-16 Ted Gould * Observer traces (ad8ce03) * Adding in some observer traces so we get an idea what's going on there (fc0143c) * More tracepoints (8f95251) * Adding annotations to the second exec tracepoints (b4a24cf) * Making this file easier to read (64f8b2f) * Adding more annotations to the desktop single check tracepoints (2eaebca) * Adding some more information to our new tracepoints (5bb7b29) * Adding some tracepoints that we got from DBus before (c173d49) 2013-12-15 Ted Gould * ARM Jenkins is slow (6e883eb) 2013-12-13 Ted Gould * Update to warn (99e7eca) * Switching to a warning so we don't exit (24ea0f3) * last-function-standing (fafb7c1) * Shortening timeout (4dc1bc3) * Adding a timeout test for the zg-event tool (d0e08b3) * coverage-lovin (5cb5a46) * exec-util-test (4746b94) * enviornment to dbus (f463c5a) * app-job-to-c (4d8908e) * tracking-arch (3a64608) * no-libnih-link (7b5f998) * Clearing out some of the files we don't want to measure coverage on (30b8fe2) * Make sure that 'package' sticks around until we setup the environment. Fixes: https://bugs.launchpad.net/bugs/1260079. (7668923) * Adding in a starting observer (7add14f) * Adding in a desktop-exec test (fb36af4) * Fleshing out a test of click-exec (312fa16) * A click fix (d331c29) * Make our click mock a little more sophisticated (901961a) * Grab the environment dbus tests (8c68a8c) * Add in base exec util test (4c29fb9) 2013-12-12 Ted Gould * Make sure we have a job to report in (efc8a4a) * Changing environment test to be DBusTest based instead of shell out based (0372cf2) * Make sure that 'package' sticks around until we setup the environment (0d27b93) * Ensure the two exec scripts have a session bus connection throughout the script (762c45e) * Switching to calling DBus (bafd2cc) 2013-12-11 Ted Gould * Split out the helpers keyfile code so we can grab just that (4eccfc6) * Check for legacy single/multiple instance apps (6423435) * Remove the globals and the mainloop (bde34e9) * Passing the wrong values for the URI list (f909ab1) * Fixing string algorithm (767f02c) * Don't need these tracepoints anymore (8350682) * Drop the second-exec sub target (bca4a8d) * Move the second exec tests into the UAL test suite (31ad492) * Adding a start command and getting everything else so that we can test start again (40c93b6) * Make it so our link farm is setable and put in a testing set (4926491) * Grabbing helpers from the second-exec test (439e8e8) 2013-12-10 Ted Gould * Make sure we can get generated files (5415b48) * Ensure we build the header file before trying to compile the C one (c85d62a) * Fixing tracing include paths (fbc5336) * Prototype fix (218cc5f) * Fix prototype for getting the PID (f38d230) * More debugging info (4c21685) * Adding a test that is uninitialized (73b9262) * Testing the no architecture case as well (c611506) * Setting up the full variable test (fd15b5d) * Setting up a test for testing the exec-line-exec utility (4b5fff5) * Export the right variable (bf698be) * Making message cleaner (a90690c) * Wrong interface (d23cb45) 2013-12-09 Ted Gould * Cleanup (04db144) * Making sure we're connected (c4b7719) * Make sure to pass the right variable to the varargs function (002da7b) * Some debugging info (278cfeb) * Putting all the tracepoints in the same file (cd90f0e) * Drop the connection (02a8c5f) 2013-12-09 Didier Roche * revert the archictecture specific list: britney doesn't use those (c0e12c6) * releasing package upstart-app-launch version 0.3+14.04.20131209-0ubuntu2 (33a335e) 2013-12-09 Automatic PS uploader * Releasing 0.3+14.04.20131209-0ubuntu1 (revision 93 from lp:upstart-app-launch). (4f375e6) * Releasing 0.3+14.04.20131209-0ubuntu1, based on r93 (7bd3dc2) * Update symbols (016a48e) 2013-12-08 Ted Gould * Fleshing out the application job binary (427e4ff) * Switch the application job to using the new executable (527b0c4) * Add an executable to be the application job (29def1b) * Make it so that we use the second exec code to send the URLs (3635dca) * Get mem fix (f4ea590) * Plug a mem leak and print a nice debug message (b696ce7) * Building second exec into the library (cb2436c) * Drop the second exec target (a86f2bb) * Move the desktop-single code into the library (a371296) * Error check (89bdc0e) * Remove other calls to GetJobByName (b6d2d58) * Modify application start to call the sub jobs directly (a6870d9) * Grabbing the GDBus branch (18d548e) * Replace the NIH dbus path with a small custom one ourselves (66d00ae) * Grab the dbus build paths as well (b0668e1) * Uhg, not able to reduce any build-deps (bbd3a5c) * Still need the header files (dce4a33) * Remove libnih work around (f1403af) * Shouldn't need these libs to build anymore (d097a92) * Dropping libnih from the build (1c7986d) * Drop NIH headers (b8ec249) * Converting over pids_for_job and its friends (5eba93d) * Switching to get all the props and passing the dictionary (e52dbbb) 2013-12-07 Ted Gould * Refactor slightly so that we can have some more shared code (ddad301) * Making sure to check for the app_id (ea20364) * Switching the stop jobs over to using GDBus (ef32bc0) * Make start application use GDBus (ef9f6ea) * Moving second exec code into the library directory (7561f86) * Set the QML2 import path as well (38f3b09) 2013-12-06 Ted Gould * Link to the right version of upstart-app-launch. (6602558) * Link to the right version of upstart-app-launch (4c2ecdf) * Handshake for starting applications. Fixes: https://bugs.launchpad.net/bugs/1243665. (d516d66) * Adding replace/conflicts with the previous dev package (31eaf6e) * Removing the filter at the end of the test (a4cccc8) * Killing more returns (294e11c) * Removing duplicate definitions (1bf59d1) * Putting expected value first to clean up error messages (5ec05a8) * Killing some returns (71ac4d5) * Clear the timeout signal handler when it gets hit (a4f4722) * Make sure to clean up on tear down not in the test (310e433) * Track the timer and clean it up (2c79a72) * Unsubscribe to the signal when cleaning up (437738a) * Be dependent on the lib we use :-) (825d352) * Hide click error printed in the Upstart log. (6da9452) * Fixing the XML (0ada33b) * Merging trunk with lttng support (2f17805) * Adding tracing support to application startup. (a2239c5) * Merging Trunk (8e140e8) * Connecting things together (08e3383) * Use Upstart on the session bus instead of the private bus. (cbbfab5) * The base of the starting test (78e6ccb) * Ensure we timeout and don't block (b18811e) 2013-12-05 Ted Gould * Check to make sure we can handshake (e416e93) * Handling ABI/API change in the Debian side of things (371a2d9) * Switching from start to started to handle the new starting better (893abf5) * Adding the wrapper for handshake tests (7eb7dc6) * Set the registration timeout to zero if it's not set so we don't do anything (9da4112) * Use the parsing of the line to split appart the URLs. Fixes: https://bugs.launchpad.net/bugs/1253703. (1d99aa5) * Fleshing out the starting stuff (634206a) * Making the watcher show starting as well (84db33c) * Undoing a commit there (e5c1470) * Put everything into helpers (a7094e6) * Making desktop-exec handshake. Hate copying code, but it's right on the edge of being too little. (f7248a5) * Make click-exec do the starting handshake (e2217bd) * Adding the new signals (c025f5b) * Attaching bug (3f8086c) * Use the parse instead of just splitting (84b035f) * Attaching bug (912e7ba) * Putting this somewhere more normal (2f9ccf0) * Some documentation of our signals (9178a69) * Adding symbols to the table (9b7ec63) * Adding a couple api functions (e03849d) 2013-12-04 Ted Gould * Fixing the package build directories with a static lib (e5c6075) * Traces in the second exec (cb6c57a) * Single instance checker test (018925d) * Tracepoints for the desktop path (0ff3b75) * Adding some click-exec tracepoints (7d72af4) * A couple more tracepoints (dbe5db8) * Support out of tree builds (dc58302) * Getting a simple tracepoint building (8263f73) 2013-12-03 Ted Gould * Add the lttng-ust library (23e3671) * Don't show click errors that aren't useful (0610028) 2013-11-26 Automatic PS uploader * Releasing 0.3+14.04.20131126-0ubuntu1 (revision 86 from lp:upstart-app-launch). (c85778e) * Releasing 0.3+14.04.20131126-0ubuntu1, based on r86 (94b9ded) 2013-11-25 Ted Gould * Ensure quoted single URIs passed to a %U are unquoted. Fixes: https://bugs.launchpad.net/bugs/1253703. (b0bb859) * Upstart only has two numbers (fbb778c) * We need upstart for init-checkconf as well (879eff5) * Don't need to set this variable anymore. (5bc11e1) * Make sure we've got the new upstart (ecaf210) * Give upstart its own dbus (7e53cb4) * Drop private bus mode (bc4e3d0) 2013-11-22 Ted Gould * Attaching bug (d35d643) * Woot, we fixed the test. (0d616a8) * Test to show breakage (2ba491b) * Fixing the test suite to handle all the null cases (8a42679) * Blocking NULLs there as well (a47b4c5) * Stopping NULL strings early (af7c0dc) * Only put it in if we ended up with a non-NULL string (3c77c3e) * Change it so that we split the URIs early, so we end up with better handling of them overall. (8315aaf) 2013-11-21 Ted Gould * Switch to only using the arch if it's set (38576b6) * Make it so the app directory's lib arch path is also included (62ff803) * Merging trunk (85cda43) 2013-11-19 Ted Gould * Reenable ZG and port to libzg-2.0. Fixes: https://bugs.launchpad.net/bugs/1197569. (41e7018) * Adds a test suite for the libupstart-app-launch code. (04bb4ed) 2013-11-19 Automatic PS uploader * Releasing 0.2+14.04.20131119-0ubuntu1 (revision 82 from lp:upstart-app-launch). (698d418) * Releasing 0.2+14.04.20131119-0ubuntu1, based on r82 (714941f) 2013-11-18 Ted Gould * Avoid an error in the ZG headers (cb7ae03) * Put ZG in the wrong package (9781f65) * Updating mock lib branch (25b168a) * Compare to a string with single quotes as well (46d967a) * Print environment (79adf8d) * Merging trunk (e0c85af) * Printing an warning when not found (b2328dd) * Grab dbus-test-runner for the conf file and dbusmock (9733ba3) * Set the XDG Data Dirs to include the application install directory. Fixes: https://bugs.launchpad.net/bugs/1250546. (f5893d6) 2013-11-16 Ted Gould * Use shell escaping to ensure we can handle spaces. Fixes: https://bugs.launchpad.net/bugs/1229354. (0e0f6f3) 2013-11-12 Ted Gould * Check the values we're setting (eb1bfa2) * Check to make sure we have all the variables (f7270be) * Get the file and make sure they're all set-env's (4d0d329) * Make it so that we know how initctl was called (ab48636) * Attaching bug (805cae5) * Make it so that we prepend on data dirs the application directory (e2d622e) 2013-11-08 Ted Gould * Attaching bug (d7df340) * Adding a spaced URL (b1e7a93) * Quoting the quote (07b7a17) * Fixing the tests where we're now clearing the quotes that are unquoted (3501ffd) * Protect our usage of the URI list (e05e93e) * Use shell_parse_argv to handle the shell escape rules that we're using (6fe9ed8) * Shell quote the URIs so that we can have them spaced out (eac8127) * Adding a test for adding a ZG event (bb29b9c) * Grabbing the mock deps (205154b) * Attaching the libZG 2 bug (76f03a8) * Match libZG 2 API (77846c4) * Switch to libZG v2 (071b7a7) * Make sure that we have zeitgeist (dba0114) * Putting back into the upstart jobs (d9897b0) 2013-11-07 Ted Gould * Get the triplet from dpkg-architecture (e05a278) * Add a variable to the job for architecture (466c1bb) * Bumping to 0.3 to reflect that we added a new env var to the library which is needed for testing URL Dispatcher (71e7477) * Modify the tests to match trunk (1a2683b) * Merging trunk (544a818) 2013-11-06 Ted Gould * No comment (dea37ef) * Make sure we get dbusmock support in libdbustest (2e82661) * Add some noise testing (806a05d) * Ensure filtering and legacy support (beec266) * Test failed, but not yet (55de306) * We've got some signal tests now (828ca8e) * Add application list test (5749fdc) * Check the in AppID functions as well (74105e2) * Add some pid testing (be81b95) * Separating out the two different tests (ea338ee) * Add needed infrastructure and a stop test (d8313f6) * Make the lower level NIH DBus Proxies steal their name from the Upstart main proxy (ff723c2) 2013-11-04 Ted Gould * Only close on error for private connections (9971b0c) * Moving dbus mock initialization into the constructor and destructor (5d5720c) * Fleshing out some of the start tests (9f67c45) * Start and stop apps (75649d1) * Mock up starting an application (2397d7a) * Adding a libual test wrapper (ad40ad4) * Support using the session bus on the GDBus code (07587cf) * Support connecting to the session bus with the NIH connection (421359b) 2013-10-14 Ted Gould * Unref the proxy after stopping an application. (4f5bec7) 2013-10-14 Automatic PS uploader * Releasing 0.2+13.10.20131014-0ubuntu1 (revision 78 from lp:upstart-app-launch). (be32284) * Releasing 0.2+13.10.20131014-0ubuntu1, based on r78 (d554cf8) 2013-10-11 Ricardo Mendoza * Currently we are signalling observers that app started on the "starting" signal. This is racy, as the final exec might not have happened yet, so if a client tries to get the primary PID before the process has fully started, it might get one of the transitional PIDs of the scripts that run in between. (935d5a6) * Fix observer to signal on started, not starting (4622461) 2013-10-11 Automatic PS uploader * Releasing 0.2+13.10.20131011-0ubuntu1 (revision 76 from lp:upstart-app-launch). (5cbbab6) * Releasing 0.2+13.10.20131011-0ubuntu1, based on r76 (3f56c4c) 2013-10-10 Ted Gould * Unref the proxy after stopping an application (c2ba881) 2013-10-09 Ted Gould * Use 'click info' to get manifests. Fixes: https://bugs.launchpad.net/bugs/1232118. (f2efe56) 2013-10-09 Automatic PS uploader * Releasing 0.1+13.10.20131008.1-0ubuntu1 (revision 73 from lp:upstart-app-launch). (62cd536) 2013-10-08 Ted Gould * Uses a symbol file and bumps version to 0.2 to make it prettier. (f01d68a) * Bumping to version 0.2; Adding a libupstart-app-launch1.symbols file to match (4704029) 2013-10-08 Automatic PS uploader * Releasing 0.1+13.10.20131008.1-0ubuntu1, based on r73 (861f601) 2013-10-05 Ted Gould * Need a little longer time on recent ARM builds. (6adabd7) 2013-10-04 Ted Gould * Attaching bug (a9b86aa) * Add a 'click' utility (c397b44) * Switch to using 'click info' for manifest capture (76c520d) * Make sure we get the click version we need (5eea5b6) * Need a little longer time on recent ARM builds (4b9bd2a) 2013-10-02 Ted Gould * Disable ZG logging for Phone 1.0. (3a48978) * Disable ZG logging for Phone 1.0 (9307aad) 2013-09-30 Ted Gould * Testing of the second exec logic. (0f8680f) * Switch to std::string to get a free destructor (6afd23e) * Update the C++ standard to allow initializing variables (a86c92b) * Add observers for focused and resume. (c136c8e) * On second activations send a message to the FD.o application interface. Fixes: https://bugs.launchpad.net/bugs/1228345. (5245dd7) 2013-09-27 Ted Gould * Grab the second-exec-test branch (e337d3b) * Test to make sure we handle a unresponsive Unity (d84ad42) * Assert the truth (d795278) * Test having Unity take longer than the app and shorter (a982678) * Make sure we had the bad errors too (3cae0a6) * Make sure we clear these variables (e4732ef) * Send a URL, for fun and profit! (61f31b7) * Hmm, oops (d95ae0f) * Adding a small pause for events (7233607) * Make a test, make sure it works. (f4bb231) * Get our own DBus (44e02a7) * Set up callbacks for the focus and resume events (54243f9) * Set the PID too! (42b6f0d) * Setting up the stub of our second-exec core testing (018f800) * Breaking out the core of second exec to ensure we can play with it. (09c33b8) * Updating to the latest fdo-application-open (6413cb0) * Stealing two dbus paths from window-focus-request (e1a7151) * Useful debugging (98944a6) * Make sure there aren't two slashes on the path (5872d45) * Don't need a second mainloop (178406a) * Avoid a crash if there are no URLs (6a9a014) 2013-09-26 Ted Gould * Catching up with our parent branch (b401163) * Switch to lists so that reallocation of the array doesn't break our callbacks (d1c40b8) * Don't parse variant if we don't need to (373a585) * Merge the updated fdo-applications branch (89c1ae0) * Switch typedef to after for g++ (8d83039) 2013-09-25 Ted Gould * Use nih_dbus_path() to get the app path (f4ea764) * Typo (0f991ec) 2013-09-25 Automatic PS uploader * Releasing 0.1+13.10.20130925.2-0ubuntu1 (revision 67 from lp:upstart-app-launch). (f017e98) * Releasing 0.1+13.10.20130925.2-0ubuntu1, based on r67 (3f81cf3) 2013-09-25 Ted Gould * Ensure a failed stop return doesn't block execution. Fixes: https://bugs.launchpad.net/bugs/1229468. (2665ca8) * Merge in trunk/dont-stop branch to avoid conflicts later (3f07417) * Attach bug (081925a) * Allow stop to fail (a50e4ee) * Move the getting of the PID to make it less racy (663923e) 2013-09-25 Automatic PS uploader * Releasing 0.1+13.10.20130925.1-0ubuntu1 (revision 65 from lp:upstart-app-launch). (7c5302e) 2013-09-25 Ted Gould * Adding a failed upstart job (9033108) * Flipped things around a bit (a3ca7b3) 2013-09-25 Automatic PS uploader * Releasing 0.1+13.10.20130925.1-0ubuntu1, based on r65 (77bcae4) 2013-09-25 Ted Gould * Adding comment on spaces so we know where to fix (32a789e) * Changing connection variable name to be more clear (8bf83a1) 2013-09-24 Ted Gould * Shoulda compiled that (57d4c3f) * Switch from fdo- to second-exec to better describe what it does now (51685cc) * Pull a bunch of the PID code into it's own function (eb8225b) * Remove the parameters and use the environment (add2685) * Make sure the last signal hits the bus (183a183) * Delete from the array as well (8375164) * Put in resume, it builds a lot on focus (56e1a03) * Set up a set of focus handlers to get the signals (6acd574) * Adding in app_ to make the naming consistent (5a3f90f) * Changing to app_focus as we're only specifying the app, not a window in it (dba4ee9) * Put in handlers for all the various observers so we can really watch things (bc27ef9) * Add implementations of the prototypes (59846c8) * Add resume functions to the header (7cf6e0d) * Focus the window! (1ab5798) * Request Unity to RESUME THAT APP! (07954d0) * Setting up the callback signal from Unity to know that we've resumed (01747ca) * Mostly setting up a big set of comments and TODOs to describe what we're gonna do (22f716f) * Grabbing the FDO utility to reuse it (6df0232) * Tests for the functions in the core helpers library. (d622184) 2013-09-24 Automatic PS uploader * Releasing 0.1+13.10.20130924.1-0ubuntu1 (revision 63 from lp:upstart-app-launch). (5c5f713) * Releasing 0.1+13.10.20130924.1-0ubuntu1, based on r63 (aa659a1) 2013-09-23 Ted Gould * Update to trunk (82f285f) * Make sure we have gtest (3881302) * Test the various failures (07e822b) * Base manifest parsing code (5fe83c5) * Test all the error cases (a5bd43a) * Add a desktop to exec test (32b87ba) * Adding tests for the other verification options (297576d) * More test data (5c1bf30) * Test the confined environment variables as much as we can for now (450bfa2) * Test the keyfile for appids (90135b4) * Setting the XDG_DATA_DIRS (06aa7af) * Some test files (f4dea8f) * Adding a define for the source directory (d340060) * Extra space (3c7184a) * Hitting more lines looking at code coverage (6af280c) * More tests including non-supported and adding comments (3a13dd3) * Multiple %f's (eb96f1a) * Adding some quotes (99f43bd) * Add % character tests (42ce5dc) * Handle URLs with complex spacing by using C parsing. Fixes: https://bugs.launchpad.net/bugs/1228387. (16645d6) * A bunch of tests, for fun, and profit! (af0adcc) * Flesh out the App ID test (4d9f919) * Adding in copyright (c4fa8af) * Connecting in a real one (0fa747f) * Adding our first stub test (34f01a5) * Setting up a test directory (62bc865) * Comments to describe quoting (dbc7e7d) * Remove apparmor from CMakeLists.txt (2f32743) * Making X- instead of XCanonical* which is per-spec (4e56d1c) * Add a TODO for multiple URL handling (c33e82f) * Comment that we're not 'actually' emitting the signals directly (f85f103) * Match the path of try_dir() (f3df110) * Move the setting of the variable, it seems architecture specific (79fc672) * No longer need apparmor libs (5d17b3e) * Useful debug info (1c7576d) * Off by one (1dce1da) * Set the confined environment variables on the desktop case as well (a79bbce) * Moving all the confinement variables to a helper function (f2ff486) * Set the APP_DIR path if we need it (f1ebba1) * Making the Upstart jobs look more similar (059794a) * No longer need the app_id (e7c04f3) * Have the exec utility pass what desktop file it uses as a variable to exec-line-exec (332d6b4) * Switch so that desktop-exec runs in pre-start (9e4712f) * Move the unquoting into the helpers (ed43647) * Make sure we switch which variable we should and handle the error correctly (537c47f) * Use g_shell_unquote() to resolve quotes in the exec line (9174e5e) 2013-09-22 Ted Gould * Got the directories backwards (0f4f92e) * Use the APP_ID environment variable and generate the URI in C code (3a666e2) * No environment variables here either (e582afa) * Be aware of your environment (9de61ed) * Grab the AppID from the environment instead of from the command line (123e565) 2013-09-21 Ted Gould * Fleshing out parsing of the command line (5c01b20) * Making click-exec not deal with parsing the exec line. Let exec-line-exec do it. (1dca6d4) * Switching out some of the code into helpers (570b268) * Exec and URIs too (d2174eb) * Removing the variables to avoid quoting confusion (f5c3bc6) * Changing click to work with a C file. And stubbing that C file. (a0fac40) 2013-09-20 Ted Gould * Dropping the shell escape stuff (1ef9618) * Silly SF support (95211c6) * Drop the escape story (50d0438) * Getting some debugging info and changing the array (2d0d2d3) * Change it so that we do a lot of execing (3abd530) * Switching to C only cap'n (efb21f8) * Linking in the apparmor (cef773f) * We're going to link directly with apparmor (216c1ad) * F*0@# you all, we're going to C (b552a3a) * Let's get stupider (f69f2f2) * Perhaps the leading zero is the issue (5e959ab) * Seems like dash isn't friendly with unicode like bash is. Let's be simpler. (8ec71a1) * Cleaning up and adding some new characters (8937168) * Going a bit crazy with unicode and all, but let's see if we can get these (595c03f) * Escape things for the shell when parsing the exec line (bf468fb) * Handy debug message (cba21a7) * Make sure this has the lifecycle we expect (bb88995) * Add in the platform data to what we give to apps (ad55a1c) * Send the open out there to the app (06bb614) * Get the dbus path to use for sending the message from the application name (0ed755b) * Get our URIs into something we can use (437529d) * Setup our space for callback (fb4044a) * Always decrement (786ad8c) * Flesh this out a bunch so we start getting connections (37f94f6) * Use our new little utility (ed11b84) * This should never be called without URIs (23aa6a1) * Add an executable target for fdo-application-open (de3babe) 2013-09-19 Ted Gould * Observers for window focus (524d9d4) * Start of an API for failed app reporting (b81bc91) 2013-09-20 Ted Gould * Evil hack to allow "secondary activations" through killing the first instance. (cc4a0ff) 2013-09-19 Automatic PS uploader * Releasing 0.1+13.10.20130919.4-0ubuntu1 (revision 60 from lp:upstart-app-launch). (dd3eb5a) * Releasing 0.1+13.10.20130919.4-0ubuntu1, based on r60 (2f8cd38) 2013-09-19 Ted Gould * Support a desktop file key so legacy applications can be single instance. (5ede3fd) 2013-09-19 Automatic PS uploader * Releasing 0.1+13.10.20130919.3-0ubuntu1 (revision 58 from lp:upstart-app-launch). (31b50b7) 2013-09-19 Ted Gould * Required Commentary (40acf89) * Switch to using start so we get the right return value (384e5bf) * Detect the second activation and stop in that case (bf03231) * Specifically setting the instance ID (89c999c) * Test the generated file (9752dab) * Update to trunk (632fff5) * Flesh out the single instance checker (414d5f9) * Move all the keyfile search stuff into the helpers (ad0d1ef) 2013-09-19 Automatic PS uploader * Releasing 0.1+13.10.20130919.3-0ubuntu1, based on r58 (dc46ffc) 2013-09-19 Loïc Minier * Fix LP #1227632 by directly joining the components of the Exec line split on % instead of joining them with spaces. Fixes: https://bugs.launchpad.net/bugs/1227632. (78de51e) * Do a direct join of components from the Exec string split on %; the previous code caused extra spaces to be added since this wasn't split on spaces; LP: #1227632. (a1243e3) 2013-09-19 Ted Gould * Try to deduce if we're on Surface Flinger. (8e943c1) 2013-09-18 Ted Gould * Try not to make that mistake again (2027d86) * Put the surface flinger check into the pre-start to avoid confinement (7f84eb6) * Only split the URIs if there are more than one. (81367f2) * Check by process (f8e1f10) * Check desktop-single to know what to do (71ee03d) * Space for the ! (c9585e4) * Ensure that we need to split before splitting. (af47fc6) * Add a utility for desktop single helping (833dda3) * Support out of tree builds too (db98a5e) * Make it so that we generate application.conf (1f01abb) * Try to deduce whether we're on Surface Flinger (e3b204c) 2013-09-18 Automatic PS uploader * Releasing 0.1+13.10.20130917.1-0ubuntu1 (revision 54 from lp:upstart-app-launch). (8d24f7a) 2013-09-17 Automatic PS uploader * Releasing 0.1+13.10.20130917.1-0ubuntu1, based on r54 (be3562b) 2013-09-13 Sebastien Bacher * typo fix in one of the warning strings. (ec694f4) 2013-09-12 Automatic PS uploader * Releasing 0.1+13.10.20130912-0ubuntu1 (revision 52 from lp:upstart-app-launch). (e54c3e1) * Releasing 0.1+13.10.20130912-0ubuntu1, based on r52 (b1ab6d7) 2013-09-12 Ted Gould * Check to see if an icon exists, and if so prepend the full path. (69b83d9) * Typo in comment (3bfcc46) * Make sure we wait to report the error (9bd330f) * Pull the recoverable error stuff into it's own function (36e0c69) * Pipe directly (3709391) * Wrong key (fd95894) 2013-09-10 Ted Gould * Setting up the basis for our recoverable error (faea6da) 2013-09-10 Sebastien Bacher * typo fix in one of the warning strings (ae4657e) 2013-09-09 Ted Gould * If we can make things better, let's do! (1e18858) * Remove null build_filename function call (f03510b) * Add some comments and make the code flow more clear (5f8c3f8) 2013-09-09 Jamie Strandboge * application-legacy.conf.in: use aa-exec-click instead of aa-exec desktop-hook.c: use aa-exec-click instead of aa-exec (LP: #1197047) debian/control: Depends on click-apparmor. Fixes: https://bugs.launchpad.net/bugs/1197047. (d4d854e) 2013-09-08 Ted Gould * Don't automatically warn on a failed App ID. (b0e2e8d) 2013-09-05 Automatic PS uploader * Releasing 0.1+13.10.20130905-0ubuntu1 (revision 48 from lp:upstart-app-launch). (b85c25c) * Releasing 0.1+13.10.20130905-0ubuntu1, based on r48 (5e5aebd) 2013-09-04 Ted Gould * Handle click errors by just not setting the value. (0ca30e5) * Handle the error, but still start the legacy app (8fd375e) * Making sure to look for the application directory. Fixes: https://bugs.launchpad.net/bugs/1215478. (e7fe7b8) 2013-09-04 Jamie Strandboge * application-legacy.conf.in: use aa-exec-click instead of aa-exec desktop-hook.c: use aa-exec-click instead of aa-exec debian/control: Depends on click-apparmor (65cc906) 2013-09-03 Automatic PS uploader * Releasing 0.1+13.10.20130903-0ubuntu1 (revision 45 from lp:upstart-app-launch). (96900c6) * Releasing 0.1+13.10.20130903-0ubuntu1, based on r45 (3d7eddc) 2013-09-03 Guenter Schwann * Make libupstart-app-launch usable by C++ programs. (ac7fc9c) 2013-09-02 Guenter Schwann * Make libupstart-app-launch usable by C++ programs (05bca53) 2013-08-29 Ted Gould * Only print a debug message if we can't parse it in the helper, but allow users to decide whether it's warning worthy (2d4ab20) * Making sure to look for the application directory (1346449) 2013-08-27 Automatic PS uploader * Releasing 0.1+13.10.20130827-0ubuntu1 (revision 43 from lp:upstart-app-launch). (5642dfb) * Releasing 0.1+13.10.20130827-0ubuntu1, based on r43 (dd6f932) 2013-08-27 Ted Gould * Completes the base functionality in the libupstart-app-launch library. (c972994) 2013-08-26 Ted Gould * Fix accidental VIM 'J' (fca4b67) * Consolidate the add and remove into implementation functions. (c3d6df4) * Make pkg_config dependencies required (d03f01c) * Make upstart_ref function static (64b6708) 2013-08-19 Automatic PS uploader * Releasing 0.1+13.10.20130819-0ubuntu1 (revision 41 from lp:upstart-app-launch). (160a15e) * Releasing 0.1+13.10.20130819-0ubuntu1, based on r41 (e05d502) 2013-08-16 Ted Gould * Make setting the PATH more robust. (3f1c8c4) 2013-08-16 jdstrand * Update click-exec.c to setup the sandbox environment. Specifically: - explicitly set the XDG base dirs to the user's preference - set UBUNTU_APPLICATION_ISOLATION - set TMPDIR - set __GL_SHADER_DISK_CACHE_PATH. (2b5fd3a) 2013-08-15 Ted Gould * Setting the path more robustly (5b4fb56) 2013-08-15 jdstrand * click-exec.c: - update to explicitly set the XDG base dirs to the user's preference in anticipation that some libraries/apps may not behave correctly if they aren't set. AppArmor doesn't support moving these from the default right now, but that doesn't mean click-exec.c can't DTRT - setup environment based on https://wiki.ubuntu.com/SecurityTeam/Specifications/ApplicationConfinement#Launching_applications + set UBUNTU_APPLICATION_ISOLATION + set TMPDIR + set __GL_SHADER_DISK_CACHE_PATH (cf5ab78) 2013-08-14 Ted Gould * Merging trunk (c97c6bd) 2013-08-12 Automatic PS uploader * Releasing 0.1+13.10.20130812-0ubuntu1 (revision 38 from lp:upstart-app-launch). (32f71b2) 2013-08-12 Ted Gould * Adding a check to see if a PID is associated with an AppID (c6d40c1) 2013-08-12 Automatic PS uploader * Releasing 0.1+13.10.20130812-0ubuntu1, based on r38 (b005d38) 2013-08-12 Ted Gould * Switch to CMake and add stub library. (e268018) * Flesh out the click package execution. (6e74df7) 2013-08-11 Ted Gould * Add a click package hook to build desktop files. (8462533) * Merging updated click-hook (648cb0e) * Merging trunk (eb94b99) * Merging trunk to resolve conflicts (692b143) * Adding an introduction to explain the code a bit. (6727e82) * Adding some documentation on what the hook is doing. (9b53d0b) * Split profile and exec into two variables. (a6accd8) * Switching to modification time. (364dc20) * Checking to see if we did remove the desktop file before trying to build another one. (d9cf741) * Ensure that we don't look for a newline in a NULL string (905bcfc) 2013-08-09 Ted Gould * Use the click utility to determine path to the package. (83ff2ee) * Updating to latest libupstart-app base merge (ad25231) * Update to latest click-exec (4bffa26) * Update to latest click hook (ee68c34) * Updating to latest click deps branch (a36e1ac) * Drop gratuitous debugging (90412b1) * Set the variable. Yeah. That. (1110a2e) * Make sure to miss the dash when passing the instance (b8c667c) * Passing APP_ID and INSTANCE_ID to the stop function (7fda3c3) * Cut-and-paste, wrong return (3fb548e) * Fix memory clears of the array with a helper (789b692) * Adding a stop utility (0251b4d) * Flesh out stoping a job (b78bafe) * Setup looking through the instances of both the upstart jobs we have (cc412cc) * Add a way to not check for the legacy renaming in getting the list of jobs (19dabf7) * Adding a function to stop apps (891f53c) * Adjusting name to be a better descriptor (5b571b2) 2013-08-07 Ted Gould * Putting the package config file in the dev package (d06f85d) * Adding a pkgconfig file to the build (38c816e) * Grabbing changes dropping the click- prefix (eda112d) * Checking to make sure the desktop has the application id set before deleting it. (74e331f) * Instead of prefixing the files check to seeif the appids are valid (f99e48b) * Make the code a bit easier to read (5354059) * Swtiching from a private connection so we don't have to close it, just unref (7bebeb2) 2013-08-06 Ted Gould * Fix a lagging pkglibexecdir (cc2ab19) * Switching to have the click-exec program set the directory (ecf3ff7) * Find the directory from click (b69ee70) * Switch to getting the directory from click (39599d7) * Grabbing the click-hook updates (c8f42eb) * Adding the application ID, perhaps for later (3e5cbe7) * Making the path directory get set properly (414cb11) * Fix the manifest parsing to update the format (4927d7b) * Make sure to clear the final newline (604ec2f) * Get the directory from click (8bc83a4) * Make the flag look more like others' (7948f41) * Change the name of the symlink (c7cb2e6) * Adding a hook name to the conf file (bfa74ce) 2013-08-02 Ted Gould * Fix memory handling of libupstart returns (98fae9e) * Getting all the right libs (589eb00) * Get the right links in the right package (6f71f24) 2013-08-01 Ted Gould * Make the name more in our namespace (b8ce62c) * Get the PID utility (f72a7e2) * Finishing the coverstaion with the Upstart tree (0773a71) * Setup to look through jobs (3085ce1) * Dropping the PID as that'll be hard (3d3b9f1) * Change the prototypes so that we can close the connection (66a47e6) * Copyright header (c0fc228) * Handle the unsubscribe (d650671) * Setting up the handler for stopped (7cf98b3) * Flesh out the handling of the environment and only printing out for proper jobs (d521f92) * Get the basis of the watchers figured out (2c90b22) * Add a little watcher for apps (2a153e9) * Switch lsapp to use libupstart-app-launch (d9f6acf) * Fleshing out getting all the instances on a job (32aa44f) * Start outlining the list of the running apps (944ce76) 2013-07-31 Ted Gould * Make sure the environment makes it to the array (5eef3ca) * Picking up URIs and handling (88359cb) * Fix parameters to make this work with the user session (1c6d930) * Add in URI handling (a46b65e) * Grab the name off the command line (240b49c) * Dropping the unused libs (c6e2387) * Switch to using GDBus and calling the function directly (923affe) * Mkae sure to close the connection and make it a private connection (ce3e5ba) * Making the library have symbols (23360ee) * Making a small binary to launch apps (4a8b9cd) * Fleshing out emitting the signal to start an application (7cc2c7d) * Adding in teh dev packages we need now (0ecf17c) * Grabbing libnih (057161b) * Grabbing the lib foundation (fff2f73) 2013-07-28 Ted Gould * Breaking appart the build into appropriate packages (0be3e96) * Adding build files for the library (aee0632) * Stubs for our API (3b2e1c7) 2013-07-25 Ted Gould * Only expand @ variables (a9ec560) * Add CMake dep (e8b7107) * Converting from Make to CMake (4638c10) 2013-07-24 Ted Gould * Feeling dumb (1d1f044) * Base CMake stuff (12d51d4) * Grabbing the click exec branch to keep modern (ae52a21) * Updating for latest click-hook (9cba06f) * Updating click-hook branch (db35270) * Wrong whose (e185d2e) * Bad permissions for directories (1c62bbd) * Handle making sure the application dir exists (e1e0bcc) * Handle the case of creation time changing (9a11bd7) * Switching to use dh_click (be388f5) * Switching to pkglibexecdir (33f8a0d) * Handling the case of %%F (fbef5d0) * Quoting APP_ID variable (2c26d52) * Revert to passing the click package to pkgdir (549b2be) 2013-07-23 Ted Gould * Add a header file to give an idea of an API to implement (bb84f0e) * Merge in the pre branch (2e14239) * Click hook branch (357e835) * Click deps branch (d53ce1b) * Split-profile branch (82be397) * Make sure the end we exec (0e7a15b) * Can't get the chdir to work the way I'd like. Using a script for now. We can kill it later. (84948cb) * Setting the working directory (4bca881) * Handle the null string for URIs (92e7517) * Fixing an if statement and adding some debug messages (b9adfd2) * Use the application ID instead of the package name (5a24983) * Use the click tool (88ab229) * Make sure we get URIs in there (32dbd56) * Enable the apparmor (db9fb36) * Use the desktop exec parser in the click exec (ba8cdd0) * Move the desktop exec parser into the helper functions (68fd7d1) * Flesh out the click-exec utility (de17de4) * Moving upstart variable setting into helpers (96c88be) * Refactor the click job to make it execute the utility (e343f0f) * Grabbing the split profile branch (16a8920) * Create the base click exec utility (483bd06) * Copyright and clean up (52a651b) * Move validation into the helper (f8383c8) * Move the json handling into the helper file (5fca2b3) * Upping the warnings (596b2aa) * Move the app id checking to the helpers file (94b328b) * Adding in some helper function prototypes (dbe4f2c) 2013-07-22 Ted Gould * Fixing some silly little bugs (cacd976) * Write out the final built desktop file (d2c7628) * Parse the incomming desktop file (b68b108) * Add in the manifest parsing (68e9330) * Get all of the file name stuff out of the way and build up to parsing the manifest (dc8bf59) * Get the removal code under control (cf98086) * Set up for the handling of each app ID (417ca31) * Fleshing out listing all the desktop files (e134306) * Fleshing out adding a click package directory (fcd69b5) * Going through the directory entries (422fd82) * Set up the skeleton for determining state (e79965d) * Adding a desktop hook binary (bf88ac4) * Adding a click hook in (3d4ae4c) * The version of the command that got merged is 'pkgdir' (5fe4b63) 2013-07-11 Ted Gould * Runtime dep on the click command (f0ecee7) * Try to use click to find the directory (d2cb2a1) 2013-07-12 Automatic PS uploader * Releasing 0.1+13.10.20130712-0ubuntu1 (revision 32 from lp:upstart-app-launch). (b4653f8) * Releasing 0.1+13.10.20130712-0ubuntu1, based on r32 (0328c54) 2013-07-11 Ted Gould * Add support for URIs. (28fc0a5) 2013-07-10 Ted Gould * Adding a link to freedesktop.org (f806f07) * Cnt spl gd (798f15e) * Making verify_keyfile called by try_dir to simplify the arangement (3e432d7) * Warn on various issues in the desktop file. (2e99cf1) * Reduce cyclomatic complexity by putting the single code into an inline function (6afcf23) * Free uri_split (6d4a845) * Free execsplit (423cda8) * Check to ensure uri_list exists before appending it (2010a75) * Quite clearly, this was the hard part (e85ae2c) * Set the variables in the desktop-exec script (e7c8c92) * Switching upstart job to call desktop-exec and then look at the results (cb7ce31) * Use g_filename_from_uri instead of allocating a GFile (4f07696) 2013-07-03 Ted Gould * Handle the file list case (9d6ee32) * Handle the single file case (7b4c690) * Handle the URIs in the desktop file (14b7f16) * Pass the URIs to the desktop-exec utility (92a2204) * Pass through the URIs (262bd7b) 2013-07-03 Automatic PS uploader * Releasing 0.1+13.10.20130703-0ubuntu1 to ubuntu. (ad10149) * Releasing 0.1+13.10.20130703-0ubuntu1, based on r30 (628d398) 2013-07-02 Ted Gould * Changing the script to check for upstart versions. (e2d338f) * Flipping around the test and just printing debug info if we fail (06fe910) * Changing the script to check for upstart versions (3cc67e7) 2013-07-01 Ted Gould * Don't run tests on buildds. (cba136b) * Don't run tests on buildds (611bea0) * Switch initialization to be signal based. (3372542) * Adding a shell script to insert the initctl path if on buildd's. (e8c6402) * No 'r' (ad0c001) * Adding a shell script to insert the initctl path if on buildd's (03676dc) 2013-06-28 Ted Gould * Add Zeitgeist logging of the start and stop of the applications. (32bd1d6) * Allow setting the apparmor profile in the dekstop file. (df6b902) * Split out legacy and click package startup. (211d7c5) * Emit and start on signals instead of starting jobs (62ce758) 2013-06-24 Ted Gould * Make sure to depend on libzeitgeist for the build (b2fb6bd) * Adding the post-start and post-stop event logging (b0d14b9) * Make it so that we get the libexec path in the click package configuration as well (03fccc0) * Add a watchdog just in case (64b9113) * Waiting until the insert happens (11bd55b) * Copyright header (9bc3f65) * Changing name to reflect our new reality (39b0e5e) * Making it so the utility can be used for open and close (e93b459) * Flesh out the zg insert event (d3d3b5c) * Adding the basis for reporting to ZG opening of the app (dd87f0e) 2013-06-21 Ted Gould * Add a dbus-x11 dep for the test suite (00a31fa) * Don't detect error, just go for the directory directly (01a37e6) * Adding a check job (f11f8b9) * Adding the click packaging wrapper (e59a40b) * Adding an application job (bf02fce) * Make the legacy one a little bit different (8eec380) * Switching the current job to be the job that handles desktop files in the legacy locations (4313cbb) 2013-06-19 Ted Gould * Allow adding an apparmor profile (22648c5) 2013-06-19 Automatic PS uploader * Releasing 0.1daily13.06.19-0ubuntu1 to ubuntu. (79c143a) * Releasing 0.1daily13.06.19-0ubuntu1, based on r22 (dddcce4) 2013-06-18 Ted Gould * Adding a COPYING file and file copyrights. (2426448) 2013-06-18 Ken VanDine * Make inline packaging more consistent with our other packages. (499bf54) * Fixed license (cfb530a) 2013-06-18 Ted Gould * Adding in copyright headers for the c files (c862816) 2013-06-18 Ken VanDine * packaging updates (b5c3e9b) 2013-06-18 Ted Gould * Adding COPYING (ad9ab03) 2013-06-13 Ted Gould * Searching desktop files in pre-start. (dabde57) * Adding a glib build dependency. (c04e8b4) * Adding in some meta-data (b44f9e1) * Build dep on libglib2.0-dev (4990236) 2013-05-28 Ted Gould * Putting a couple of comments in (e0b7e31) * Changing the config file to use that and then exec (b5a3386) * Making desktop-exec output the exec line (254a709) 2013-05-13 Ted Gould * Close the metal here (e24cd70) * Putting the type in too (c1e90b5) * Dump out the PIDs and the nice names (5db384b) * Putting some boiler plate dbus in there (8ea2934) * Making a little script to help with apps (968b29c) * Drop the forking (f138aff) * Simpler pkgconfig too (2fc40c0) * Switch from using GIO to standard GLib and exec (a58a99f) 2013-05-07 Ted Gould * Changing the conf file to not need the script suggested by zyga on #ubuntu-devel (25fa3a9) 2013-05-05 Ted Gould * Now that we have the tool we need to expect a fork (95a70c4) 2013-05-03 Ted Gould * Make the deb stuff work (72a10ad) * Adding the directory into the conf file (85ceb57) * Fleshing out desktop exec (b2ec196) * Adding a build for a small executor target (3874d7a) * Adding notification of isolation (809c4c0) * Fixing the make file to make it work-ish (31a11fc) * Adding debian stuff (d02d934) 2013-05-02 Ted Gould * The application config file (4d6e54a) lomiri-app-launch-0.1.9/NEWS000066400000000000000000000047141455542527200155620ustar00rootroot00000000000000Overview of changes in lomiri-app-launch 0.1.9 - desktop-hook: handle localized Icon & SymbolicIcon (@peat-psuwit). Overview of changes in lomiri-app-launch 0.1.8 - CMakeLists.txt: Don't use '${}' with variables in if-clauses. Overview of changes in lomiri-app-launch 0.1.7 - tests/liblal-test: fail fast when old GDBusConnection lingers - session-migration: remove old ubuntu-app-launch cache - CMake: Fail build if USE_SYSTEMD is ON but systemd's pkg-config file is missing from build env. - Add some thread safety to _observer_{add,delete}_app_* - desktop-hook: also cleanup old files created pre-rename - Fix bulding with GCC-13 Overview of changes in lomiri-app-launch 0.1.6 - liblomiri-app-launch/CMakeLists.txt: Use VERSION_MINOR and VERSION_PATCH in library SOVERSIONing and rename variables. - liblomiri-app-launch/lomiri-app-launch.pc.in: Use PROJECT_VERSION in pkg-config file. Overview of changes in lomiri-app-launch 0.1.5 - tests/liblal-test: skip testing for "bus connection gone" for now. - jobs-systemd: add Conflicts so that Lomiri unit can stop all apps. - tests: list-apps: fix expected number of apps with Liber tine enabled. - tests: fix libertined startup argument for verbose output. Overview of changes in lomiri-app-launch 0.1.4 - Pass APP_DIR to click applications. - jobs-systemd: Set unit CollectMode to "inactive-or-failed". - utils/systemd-helper-helper.c: Typo fix. - liblomiri-app-launch/jobs-systemd.cpp: Typo fix. - job-systemd: don't signal sigStopped/sigStarted on systemd reload. - application: Add Splash.show property based on ether NoDisplay or x-l-Splash-Show. Overview of changes in lomiri-app-launch 0.1.3 - Add option to disable mirclient - Add proper versioning (using semver) Overview of changes in lomiri-app-launch 0.1.2 - jobs-systemd: Set DESKTOP_FILE_HINT environment variable - jobs-systemd: Change unit type to "simple" - jobs-systemd: Fix crash when closing a Content Hub source - fix: lomiri-app-launch-trace.h is C++ - systemd-helper-helper: correctly set SA_SIGINFO - Run untrusted helpers under Apparmor confinement - Fix invocation of unprivileged helpers - Add missing #include that caused FTBFS with gcc 12 - Add fallback support for X-Ubuntu-* desktop file keys - cruft: Remove lomiri-app-test - Fix typo in DBus object path Overview of changes in lomiri-app-launch 0.0.90 - Fork from ubuntu-app-launch, full rename to Lomiri context. lomiri-app-launch-0.1.9/_clang-format000066400000000000000000000026231455542527200175140ustar00rootroot00000000000000--- AccessModifierOffset: -4 AlignEscapedNewlinesLeft: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortFunctionsOnASingleLine: false AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakBeforeMultilineStrings: true AlwaysBreakTemplateDeclarations: true BinPackParameters: false BreakBeforeBinaryOperators: false BreakBeforeBraces: Allman BreakBeforeTernaryOperators: false BreakConstructorInitializersBeforeComma: true ColumnLimit: 120 ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 4 ContinuationIndentWidth: 4 Cpp11BracedListStyle: true DerivePointerBinding: true ExperimentalAutoDetectBinPacking: false IndentCaseLabels: true IndentFunctionDeclarationAfterType: true IndentWidth: 4 Language: Cpp MaxEmptyLinesToKeep: 1 NamespaceIndentation: None ObjCSpaceBeforeProtocolList: false PenaltyBreakBeforeFirstCallParameter: 1 PenaltyBreakComment: 60 PenaltyBreakFirstLessLess: 120 PenaltyBreakString: 1000 PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 200 PointerBindsToType: true SpaceBeforeAssignmentOperators: true SpaceBeforeParens: ControlStatements SpaceInEmptyParentheses: false SpacesBeforeTrailingComments: 2 SpacesInAngles: false SpacesInCStyleCastParentheses: false SpacesInParentheses: false Standard: Cpp11 TabWidth: 8 UseTab: Never ... lomiri-app-launch-0.1.9/cmake/000077500000000000000000000000001455542527200161355ustar00rootroot00000000000000lomiri-app-launch-0.1.9/cmake/FindGObjectIntrospection.cmake000066400000000000000000000037651455542527200240510ustar00rootroot00000000000000# - try to find gobject-introspection # # Once done this will define # # INTROSPECTION_FOUND - system has gobject-introspection # INTROSPECTION_SCANNER - the gobject-introspection scanner, g-ir-scanner # INTROSPECTION_COMPILER - the gobject-introspection compiler, g-ir-compiler # INTROSPECTION_GENERATE - the gobject-introspection generate, g-ir-generate # INTROSPECTION_GIRDIR # INTROSPECTION_TYPELIBDIR # INTROSPECTION_CFLAGS # INTROSPECTION_LIBS # # Copyright (C) 2010, Pino Toscano, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. macro(_GIR_GET_PKGCONFIG_VAR _outvar _varname) execute_process( COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=${_varname} gobject-introspection-1.0 OUTPUT_VARIABLE _result RESULT_VARIABLE _null ) if (_null) else() string(REGEX REPLACE "[\r\n]" " " _result "${_result}") string(REGEX REPLACE " +$" "" _result "${_result}") separate_arguments(_result) set(${_outvar} ${_result} CACHE INTERNAL "") endif() endmacro(_GIR_GET_PKGCONFIG_VAR) find_package(PkgConfig) if(PKG_CONFIG_FOUND) if(PACKAGE_FIND_VERSION_COUNT GREATER 0) set(_gir_version_cmp ">=${PACKAGE_FIND_VERSION}") endif() pkg_check_modules(_pc_gir gobject-introspection-1.0${_gir_version_cmp}) if(_pc_gir_FOUND) set(INTROSPECTION_FOUND TRUE) _gir_get_pkgconfig_var(INTROSPECTION_SCANNER "g_ir_scanner") _gir_get_pkgconfig_var(INTROSPECTION_COMPILER "g_ir_compiler") _gir_get_pkgconfig_var(INTROSPECTION_GENERATE "g_ir_generate") _gir_get_pkgconfig_var(INTROSPECTION_GIRDIR "girdir") _gir_get_pkgconfig_var(INTROSPECTION_TYPELIBDIR "typelibdir") set(INTROSPECTION_CFLAGS "${_pc_gir_CFLAGS}") set(INTROSPECTION_LIBS "${_pc_gir_LIBS}") endif() endif() mark_as_advanced( INTROSPECTION_SCANNER INTROSPECTION_COMPILER INTROSPECTION_GENERATE INTROSPECTION_GIRDIR INTROSPECTION_TYPELIBDIR INTROSPECTION_CFLAGS INTROSPECTION_LIBS ) lomiri-app-launch-0.1.9/cmake/ListOperations.cmake000066400000000000000000000007351455542527200221230ustar00rootroot00000000000000 macro(list_prefix _outvar _listvar _prefix) set(${_outvar}) foreach(_item IN LISTS ${_listvar}) list(APPEND ${_outvar} ${_prefix}${_item}) endforeach() endmacro(list_prefix) macro(list_make_absolute _outvar _listvar _prefix) set(${_outvar}) foreach(_item IN LISTS ${_listvar}) if(IS_ABSOLUTE ${_item}) list(APPEND ${_outvar} ${_item}) else() list(APPEND ${_outvar} ${_prefix}${_item}) endif() endforeach() endmacro(list_make_absolute) lomiri-app-launch-0.1.9/cmake/UseConstantBuilder.cmake000066400000000000000000000012321455542527200227120ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) if(POLICY CMP0011) cmake_policy(SET CMP0011 NEW) endif(POLICY CMP0011) macro(add_constant_template outfiles name const_name input) set(file_target "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") add_custom_command( OUTPUT ${file_target} COMMAND ${CMAKE_COMMAND} "-Dname=${name}" "-Dfile_target=${file_target}" "-Dconst_name=${const_name}" "-Dinput=${input}" -P "${CMAKE_SOURCE_DIR}/cmake/ConstantBuilderTemplates.cmake" DEPENDS "${CMAKE_SOURCE_DIR}/cmake/ConstantBuilderTemplates.cmake" "${input}" ) list(APPEND ${outfiles} "${file_target}") endmacro(add_constant_template) lomiri-app-launch-0.1.9/cmake/UseGObjectIntrospection.cmake000066400000000000000000000075161455542527200237230ustar00rootroot00000000000000# Copyright (C) 2010, Pino Toscano, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. include(ListOperations) macro(_gir_list_prefix _outvar _listvar _prefix) set(${_outvar}) foreach(_item IN LISTS ${_listvar}) list(APPEND ${_outvar} ${_prefix}${_item}) endforeach() endmacro(_gir_list_prefix) macro(gir_add_introspections introspections_girs) foreach(gir IN LISTS ${introspections_girs}) set(_gir_name "${gir}") ## Transform the gir filename to something which can reference through a variable ## without automake/make complaining, eg Gtk-2.0.gir -> Gtk_2_0_gir string(REPLACE "-" "_" _gir_name "${_gir_name}") string(REPLACE "." "_" _gir_name "${_gir_name}") # Namespace and Version is either fetched from the gir filename # or the _NAMESPACE/_VERSION variable combo set(_gir_namespace "${${_gir_name}_NAMESPACE}") if (_gir_namespace STREQUAL "") string(REGEX REPLACE "([^-]+)-.*" "\\1" _gir_namespace "${gir}") endif () set(_gir_version "${${_gir_name}_VERSION}") if (_gir_version STREQUAL "") string(REGEX REPLACE ".*-([^-]+).gir" "\\1" _gir_version "${gir}") endif () # _PROGRAM is an optional variable which needs it's own --program argument set(_gir_program "${${_gir_name}_PROGRAM}") if (NOT _gir_program STREQUAL "") set(_gir_program "--program=${_gir_program}") endif () # Variables which provides a list of things _gir_list_prefix(_gir_libraries ${_gir_name}_LIBS "--library=") _gir_list_prefix(_gir_packages ${_gir_name}_PACKAGES "--pkg=") _gir_list_prefix(_gir_includes ${_gir_name}_INCLUDES "--include=") _gir_list_prefix(_gir_export_packages ${_gir_name}_EXPORT_PACKAGES "--pkg-export=") # Reuse the LIBTOOL variable from by automake if it's set set(_gir_libtool "--no-libtool") add_custom_command( COMMAND ${INTROSPECTION_SCANNER} ${INTROSPECTION_SCANNER_ARGS} --quiet --warn-all --namespace=${_gir_namespace} --nsversion=${_gir_version} ${_gir_libtool} ${_gir_program} ${_gir_libraries} ${_gir_packages} ${_gir_includes} ${_gir_export_packages} ${${_gir_name}_SCANNERFLAGS} ${${_gir_name}_CFLAGS} ${${_gir_name}_FILES} --output ${CMAKE_CURRENT_BINARY_DIR}/${gir} DEPENDS ${${_gir_name}_FILES} ${${_gir_name}_LIBS} OUTPUT ${gir} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} VERBATIM ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${gir} DESTINATION share/gir-1.0) string(REPLACE ".gir" ".typelib" _typelib "${gir}") add_custom_command( COMMAND ${INTROSPECTION_COMPILER} ${INTROSPECTION_COMPILER_ARGS} --includedir=. ${CMAKE_CURRENT_BINARY_DIR}/${gir} -o ${CMAKE_CURRENT_BINARY_DIR}/${_typelib} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${gir} OUTPUT ${_typelib} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${_typelib} DESTINATION ${CMAKE_INSTALL_LIBDIR}/girepository-1.0) add_custom_target(gir-${gir} ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${gir}) add_custom_target(gir-typelibs-${_typelib} ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${_typelib}) endforeach() endmacro(gir_add_introspections) macro(gir_get_cflags _output) get_directory_property(_tmp_includes INCLUDE_DIRECTORIES) list_prefix(_includes _tmp_includes "-I") get_directory_property(_tmp_compile_definitions COMPILE_DEFINITIONS) list_prefix(_compile_definitions _tmp_compile_definitions "-D") set(${_output} ${_includes} ${_compile_definitions}) endmacro(gir_get_cflags) lomiri-app-launch-0.1.9/cmake/UseGdbusCodegen.cmake000066400000000000000000000024651455542527200221540ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) if(POLICY CMP0011) cmake_policy(SET CMP0011 NEW) endif(POLICY CMP0011) find_program(GDBUS_CODEGEN NAMES gdbus-codegen DOC "gdbus-codegen executable") if(NOT GDBUS_CODEGEN) message(FATAL_ERROR "Excutable gdbus-codegen not found") endif() macro(add_gdbus_codegen outfiles name prefix service_xml) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND "${GDBUS_CODEGEN}" --interface-prefix "${prefix}" --generate-c-code "${name}" "${service_xml}" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS ${ARGN} "${service_xml}" ) list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") endmacro(add_gdbus_codegen) macro(add_gdbus_codegen_with_namespace outfiles name prefix namespace service_xml) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND "${GDBUS_CODEGEN}" --interface-prefix "${prefix}" --generate-c-code "${name}" --c-namespace "${namespace}" "${service_xml}" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS ${ARGN} "${service_xml}" ) list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") endmacro(add_gdbus_codegen_with_namespace) lomiri-app-launch-0.1.9/cmake/UseGlibGeneration.cmake000066400000000000000000000054451455542527200225150ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) if(POLICY CMP0011) cmake_policy(SET CMP0011 NEW) endif(POLICY CMP0011) find_program(GLIB_MKENUMS glib-mkenums) find_program(GLIB_GENMARSHAL glib-genmarshal) macro(add_glib_marshal outfiles name prefix otherinclude) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" COMMAND ${GLIB_GENMARSHAL} --header "--prefix=${prefix}" "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list" > "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list" ) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND echo "\\#include \\\"${otherinclude}\\\"" > "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND echo "\\#include \\\"glib-object.h\\\"" >> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND echo "\\#include \\\"${name}.h\\\"" >> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND ${GLIB_GENMARSHAL} --body "--prefix=${prefix}" "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list" >> "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.list" "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" ) list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") endmacro(add_glib_marshal) macro(add_glib_enumtypes_t outfiles name htemplate ctemplate) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" COMMAND ${GLIB_MKENUMS} --template "${htemplate}" ${ARGN} > "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS ${ARGN} "${htemplate}" ) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" COMMAND ${GLIB_MKENUMS} --template "${ctemplate}" ${ARGN} > "${CMAKE_CURRENT_BINARY_DIR}/${name}.c" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DEPENDS ${ARGN} ${ctemplate} "${CMAKE_CURRENT_BINARY_DIR}/${name}.h" ) list(APPEND ${outfiles} "${CMAKE_CURRENT_BINARY_DIR}/${name}.c") endmacro(add_glib_enumtypes_t) macro(add_glib_enumtypes outfiles name namespace includeguard) set(htemplate "${CMAKE_CURRENT_BINARY_DIR}/${name}.h.template") set(ctemplate "${CMAKE_CURRENT_BINARY_DIR}/${name}.c.template") # Write the .h template add_custom_command( OUTPUT ${htemplate} ${ctemplate} COMMAND ${CMAKE_COMMAND} "-Dctemplate=${ctemplate}" "-Dhtemplate=${htemplate}" "-Dname=${name}" "-Dnamespace=${namespace}" "-Dincludeguard=${includeguard}" "\"-Dheaders=${ARGN}\"" -P "${CMAKE_SOURCE_DIR}/cmake/GlibGenerationTemplates.cmake" DEPENDS "${CMAKE_SOURCE_DIR}/cmake/GlibGenerationTemplates.cmake" ${headers} ) add_glib_enumtypes_t(${outfiles} ${name} ${htemplate} ${ctemplate} ${ARGN}) endmacro(add_glib_enumtypes) lomiri-app-launch-0.1.9/cmake/UseLttngGenTp.cmake000066400000000000000000000013321455542527200216410ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) if(POLICY CMP0011) cmake_policy(SET CMP0011 NEW) endif(POLICY CMP0011) find_program(LTTNG_GEN_TP NAMES lttng-gen-tp DOC "lttng-gen-tp executable") if(NOT LTTNG_GEN_TP) message(FATAL_ERROR "Excutable lttng-gen-top not found") endif() function(add_lttng_gen_tp) set(_one_value NAME) cmake_parse_arguments (arg "" "${_one_value}" "" ${ARGN}) add_custom_command( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${arg_NAME}.h" "${CMAKE_CURRENT_BINARY_DIR}/${arg_NAME}.c" COMMAND "${LTTNG_GEN_TP}" -o "${arg_NAME}.h" -o "${arg_NAME}.c" "${CMAKE_CURRENT_SOURCE_DIR}/${arg_NAME}.tp" WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS "${arg_NAME}.tp" ) endfunction(add_lttng_gen_tp) lomiri-app-launch-0.1.9/data/000077500000000000000000000000001455542527200157665ustar00rootroot00000000000000lomiri-app-launch-0.1.9/data/CMakeLists.txt000066400000000000000000000003161455542527200205260ustar00rootroot00000000000000## ## Systemd Unit File ## if (USE_SYSTEMD) pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemduserunitdir) install(FILES "lal-application-end.target" DESTINATION "${SYSTEMD_USER_UNIT_DIR}") endif() lomiri-app-launch-0.1.9/data/com.lomiri.LomiriAppLaunch.SocketDemangler.xml000066400000000000000000000003401455542527200266510ustar00rootroot00000000000000 lomiri-app-launch-0.1.9/data/com.lomiri.LomiriAppLaunch.xml000066400000000000000000000022161455542527200236070ustar00rootroot00000000000000 lomiri-app-launch-0.1.9/data/lal-application-end.target000066400000000000000000000001271455542527200230130ustar00rootroot00000000000000[Unit] Description=The unit that every app units conflicts, so that they can be ended. lomiri-app-launch-0.1.9/data/lomiri-app-launch-desktop.click-hook.in000066400000000000000000000002061455542527200253260ustar00rootroot00000000000000Pattern: ${home}/.cache/lomiri-app-launch/desktop/${id}.desktop Exec: @pkglibexecdir@/desktop-hook User-Level: yes Hook-Name: desktop lomiri-app-launch-0.1.9/debian/000077500000000000000000000000001455542527200162775ustar00rootroot00000000000000lomiri-app-launch-0.1.9/debian/Jenkinsfile000066400000000000000000000006511455542527200204650ustar00rootroot00000000000000@Library('ubports-build-tools') _ buildAndProvideDebianPackage() // Or if the package consists entirely of arch-independent packages: // (optional optimization, will confuse BlueOcean's live view at build stage) // buildAndProvideDebianPackage(/* isArchIndependent */ true) // Optionally, to skip building on some architectures (amd64 is always built): // buildAndProvideDebianPackage(false, /* ignoredArchs */ ['arm64']) lomiri-app-launch-0.1.9/debian/changelog000066400000000000000000001061641455542527200201610ustar00rootroot00000000000000lomiri-app-launch (0.1.9) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Sun, 28 Jan 2024 11:21:46 +0100 lomiri-app-launch (0.1.8) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Sun, 15 Oct 2023 01:18:59 +0200 lomiri-app-launch (0.1.7) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Thu, 27 Jul 2023 00:16:57 +0200 lomiri-app-launch (0.1.6) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Wed, 01 Mar 2023 08:39:36 +0100 lomiri-app-launch (0.1.5) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Sat, 25 Feb 2023 06:22:33 +0100 lomiri-app-launch (0.1.4) unstable; urgency=medium [ Marius Gripsgard ] * Development branch [ UBports developers ] * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Sun, 05 Feb 2023 15:03:31 +0100 lomiri-app-launch (0.1.3) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Mon, 09 Jan 2023 17:41:16 +0100 lomiri-app-launch (0.1.2) unstable; urgency=medium [ Guido Berhoerster ] * Add fallback support for X-Ubuntu-* desktop file keys in order to restore compatibility with xenial [ UBports developers ] * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- UBports developers Mon, 02 Jan 2023 10:59:08 +0100 lomiri-app-launch (0.1.1) unstable; urgency=medium [ Ratchanan Srirattanamet ] * Remove ubports.no_test to start using test again * Move Jenkinsfile to debian/ per the new guideline * Update Jenkinsfile to use shared library [ Luca Weiss ] * Fix compile error with new glib versions [ Ratchanan Srirattanamet ] * libual-cpp-test: fix com.test.multiple mock setup [ Rodney Dawes ] * Bring back support for click packages * Fix typo in comment. [ Ratchanan Srirattanamet ] * jobs-*: don't force Wayland QPA for legacy apps [ Mike Gabriel ] * liblomiri-app-launch/CMakeLists.txt: Fix LomiriAppLaunch-0.gir API version (was: 3, should be: 0). * Various typo fixes. Thanks to Debian lintian's spellchecker. * lomiri-app-test/data/lomiri-app-test.desktop.in: Add Keywords= key. [ Ratchanan Srirattanamet ] * liblomiri-app-launch: remove `const` from some function declaration * .gitignore: ignore obj-*/ -- Marius Gripsgard Fri, 17 Dec 2021 16:38:26 +0100 lomiri-app-launch (0.1.0-0) unstable; urgency=medium * Upstream-provided Debian package for lomiri-app-launch. See upstream ChangeLog for recent changes. -- Mike Gabriel Mon, 18 May 2020 22:55:25 +0200 ubuntu-app-launch (0.13+ubports) bionic; urgency=medium [ Michael Terry ] * Bump version for new AppID methods [ Ted Gould ] * Cleanup registry references to make them consistent (LP: #1676361) * Watch system folders for apps added and removed (LP: #1630997, #1672392) * Wait with a timeout for the libertine service to start * Provide equality operators for Application and Application::Instance objects. (LP: #1677345) * Force GTK and Qt backends when using XMir -- Ted Gould Tue, 04 Apr 2017 21:48:48 +0000 ubuntu-app-launch (0.11+17.04.20170328-0ubuntu1) zesty; urgency=medium * Explicitly depend on libertine-xmir-tools (#1671938). -- Larry Price Tue, 28 Mar 2017 14:16:27 +0000 ubuntu-app-launch (0.11+17.04.20170321-0ubuntu1) zesty; urgency=medium [ Ted Gould ] * Migrate untrusted helpers to C++ interfaces and jobs backend * Put all application specific static functions into a single AppStore object * Remove Upstart * Removing support for Click [ Pete Woods ] * Switch to reference counted memory management in all c++ code * Run make format target following managed memory branch -- Ted Gould Tue, 21 Mar 2017 03:29:09 +0000 ubuntu-app-launch (0.10+17.04.20170310-0ubuntu1) zesty; urgency=medium [ Ken VanDine ] * Removed click related manual tests and correct-job-type tests which no longer seems to apply [ Larry Price ] * Add all icon directories to search paths regardless of context. (LP: #1669913) [ Michael Terry ] * Use the "mir" interface (not the "unity8" interface) to decide if an app supports Mir or not. -- Rodney Dawes Fri, 10 Mar 2017 15:17:03 +0000 ubuntu-app-launch (0.10+17.04.20170307.1-0ubuntu1) zesty; urgency=medium * XMir by default for Legacy apps (LP: #1668429) -- Ted Gould Tue, 07 Mar 2017 19:07:32 +0000 ubuntu-app-launch (0.10+17.04.20170215.1-0ubuntu1) zesty; urgency=medium [ Ken VanDine ] * New upstream version * Adds Application::Instance::focus and Application::findInstance(pid_t) API [ Ted Gould ] * Remove unused log functions * Add missing virtual destructors * Provide a popularity info item and a signal for info updating * Run the libertine-service in tests for new libertine >= 1.6 -- Ken VanDine Wed, 15 Feb 2017 15:10:49 +0000 ubuntu-app-launch (0.9+17.04.20170206-0ubuntu1) zesty; urgency=medium * Reset failed units so they can be tried again (LP: #1655754) -- Ted Gould Mon, 06 Feb 2017 16:00:40 +0000 ubuntu-app-launch (0.9+17.04.20170202.2-0ubuntu1) zesty; urgency=medium * SystemD backend added * Make UAL relocatable for Snappy installs (LP: #1623694) * Prioritize 'unity8' interfaces over other supported interfaces * Handle deprecated functions in Mir 0.26 -- Ted Gould Thu, 02 Feb 2017 15:10:39 +0000 ubuntu-app-launch (0.9+17.04.20170124-0ubuntu1) zesty; urgency=medium * Change signals into C++ core::signal objects (LP: #1590442) * Abstract out jobs backends and make Upstart one * Move the signals into the jobs classes * Make the signals support finding the instance of the application (LP: #1589637) * Jobs interface specific tests -- Ted Gould Tue, 24 Jan 2017 14:15:17 +0000 ubuntu-app-launch (0.9+17.04.20170113.1-0ubuntu1) zesty; urgency=medium [ Pete Woods ] * Compatibility with unversioned cmake-extras modules (LP: #1563573) [ Rodney Dawes ] * Handle more common Icon entries in .desktop files for snaps. (LP: #1639952) [ Ted Gould ] * Fixes to the exec-util test to ensure it is more reliable * Reenable OnlyShowIn checking for Desktop files (LP: #1580092, #1606593, #1608546) -- Ted Gould Fri, 13 Jan 2017 22:16:18 +0000 ubuntu-app-launch (0.9+17.04.20161110.1-0ubuntu1) zesty; urgency=medium * Make pause/resume non-blocking * Removing JSON-GLib version cruft * Switch to libwhoopsie for recoverable problem support -- Ted Gould Thu, 10 Nov 2016 15:39:43 +0000 ubuntu-app-launch (0.9+16.10.20161003.1-0ubuntu1) yakkety; urgency=medium * Set a base directory for icons that have a full path specified in their desktop file (LP: #1623636) * Don't throw an exception when a Desktop file fails to include an Icon key (LP: #1617348) * Switch from g_atexit to std::atexit to avoid deprecation warnings * Use the --id field for launching with libertine-launch and use it for setting up other X11 environments * Ensure we don't check the length of a nullptr array * Make sure we don't check snapd if we know it won't return useful results * Make use of the instance parameter consistent through all the backends (LP: #1626028) -- Ted Gould Mon, 03 Oct 2016 23:55:25 +0000 ubuntu-app-launch (0.9+16.10.20160928-0ubuntu1) yakkety; urgency=medium * Add a try/catch inside the for loop in ::list(). (LP: #1627594) -- Rodney Dawes Wed, 28 Sep 2016 17:43:54 +0000 ubuntu-app-launch (0.9+16.10.20160913.1-0ubuntu1) yakkety; urgency=medium [ Larry Price ] * Recursively sweep for desktop files for libertine applications. [ Ted Gould ] * Fixes, tools and tests related to listing applications * Migrate starting and stopping applications to new classes * Make find and discover use the application implementation functions. * Support launching applications installed as snaps (LP: #1590445) -- Ted Gould Tue, 13 Sep 2016 17:43:33 +0000 ubuntu-app-launch (0.9+16.10.20160902-0ubuntu1) yakkety; urgency=medium * Disable handshake wait with clients doing handshaking (LP: #1618540) -- Ted Gould Fri, 02 Sep 2016 14:51:45 +0000 ubuntu-app-launch (0.9+16.10.20160825-0ubuntu1) yakkety; urgency=medium * Use at() instead of operator[]() so that we get an exception on bounds checking -- Ted Gould Thu, 25 Aug 2016 14:43:00 +0000 ubuntu-app-launch (0.9+16.10.20160817.1-0ubuntu1) yakkety; urgency=medium [ Charles Kerr ] * Fix memory leak in Click::launch() [ Rodney Dawes ] * Use cmake-extras for coverage reporting. (LP: #1609545) * Backport some fixes for listing installed Click apps. [ Ted Gould ] * Add in eventually timeouts in tests to make them more robust * Add test for abi compatibility (LP: #1609565) * Add API to allow adjusting of the OOM score for an application instance (LP: #1579799) [ Rodney Dawes, Ted Gould ] * Add desktop info fields needed for applications scope -- Ted Gould Wed, 17 Aug 2016 15:25:23 +0000 ubuntu-app-launch (0.9+16.10.20160803-0ubuntu1) yakkety; urgency=medium [ Ken VanDine ] * Added dev depends on libproperties-cpp-dev [ Rodney Dawes ] * Strip the extra .desktop off of legacy app IDs when loading .desktop files. (LP: #1606695) * Use stricter gensymbols check. * Disable the pauseresume tests to unblock landings for now. [ Ted Gould ] * Pedantic fixes for header files * Fix to use correct types returned from libclick -- Rodney Dawes Wed, 03 Aug 2016 14:10:45 +0000 ubuntu-app-launch (0.9+16.04.20160510.2-0ubuntu1) xenial; urgency=medium * Allow invalid desktop files for OTA11 quick fix (LP: #1580092) -- Ted Gould Tue, 10 May 2016 19:11:21 +0000 ubuntu-app-launch (0.9+16.04.20160504.1-0ubuntu1) xenial; urgency=medium [ CI Train Bot ] * Add a depends for cgmanager for the desktop [ Larry Price ] * Add additional cases for not presenting desktop launchers based on keyfile entries. * Refactoring IconFinder to include icons from the Humanity theme (LP: #1558741) * Update icon search for non-click applications to search the hicolor theme directory for appropriate icons. (LP: #1576722) [ Ted Gould ] * Add a small commandline tool for application information * Fix typo in desktop key name (LP: #1578112) * Handle exceptions and print errors with command line tools (LP: #1575990) * Minor cleanup which causes an annoying warning message -- Ted Gould Wed, 04 May 2016 20:12:55 +0000 ubuntu-app-launch (0.9+16.04.20160427-0ubuntu1) xenial; urgency=medium [ Ted Gould ] * Adjust version regular expression to handle single character version numbers -- Michael Terry Wed, 27 Apr 2016 14:52:33 +0000 ubuntu-app-launch (0.9+16.04.20160421.3-0ubuntu1) xenial; urgency=medium [ Ted Gould ] * Add new C++ API that has a retained object for maintaining connections through multiple calls. Also provides for getting consistent application metadata. * Add dependency on libpam-cgfs on Xenial so that cgroups work properly in Upstart (LP: #1535058) * Adding support for Read the Docs * Fix cut-and-paste error in function comment * If no XDG_DATA_DIRS is set ensure that /usr/share is in the list. (LP: #1541037) [ CI Train Bot ] * Ensure all pending events on the context are complete before unref'ing it. (LP: #1495871) [ Dimitri John Ledkov ] * Raise to -std=gnu99, because we really want gnu standards, and thus e.g. access CLOCK_MONOTONIC in lttng on arm64/armhf. Resolves FTBFS. [ Michael Terry ] * Fix build by correcting typo in function name. -- Ted Gould Thu, 21 Apr 2016 19:47:16 +0000 ubuntu-app-launch (0.5+15.10.20150817-0ubuntu1) wily; urgency=medium [ CI Train Bot ] * debian/libubuntu-app-launch2.symbols: update to released version. [ Robert Ancell ] * Depend on upstart instead of upstart-bin which is a dummy transitional package. [ Ted Gould ] * Detect applications that are in a libertine container * Make demangler path more secure and unset internal environment variables * Provide an API to find the desktop file and directory of an AppID * Start XMir for applications that enable it -- CI Train Bot Mon, 17 Aug 2015 21:38:33 +0000 ubuntu-app-launch (0.5+15.10.20150629-0ubuntu1) wily; urgency=medium [ Andreas Pokorny ] * mir release 0.14.0 -- CI Train Bot Mon, 29 Jun 2015 06:10:46 +0000 ubuntu-app-launch (0.5+15.10.20150605-0ubuntu1) wily; urgency=medium [ Ted Gould ] * Don't error on ZG failure (LP: #1452178) * Fallback to looking for the AppID tag if the source is missing (LP: #1461138) -- CI Train Bot Fri, 05 Jun 2015 19:49:48 +0000 ubuntu-app-launch (0.5+15.10.20150604-0ubuntu1) wily; urgency=medium [ Ted Gould ] * Add an untrusted helper that works with Mir trusted prompt sessions. [ CI Train Bot ] * debian/libubuntu-app-launch2.symbols: update to released version. -- CI Train Bot Thu, 04 Jun 2015 20:35:57 +0000 ubuntu-app-launch (0.4+15.04.20150410-0ubuntu1) vivid; urgency=medium [ Ted Gould ] * Have desktop hook verify source file still exists (LP: #1437355) -- CI Train Bot Fri, 10 Apr 2015 16:58:30 +0000 ubuntu-app-launch (0.4+15.04.20150403-0ubuntu1) vivid; urgency=medium [ Ted Gould ] * When Mir isn't available just exec with X11 -- CI Train Bot Fri, 03 Apr 2015 17:30:48 +0000 ubuntu-app-launch (0.4+15.04.20150313.2-0ubuntu1) vivid; urgency=medium [ CI Train Bot ] * New rebuild forced. [ Rodney Dawes ] * Save status from waitpid and exit with it. (LP: #1431565) -- CI Train Bot Fri, 13 Mar 2015 16:05:56 +0000 ubuntu-app-launch (0.4+15.04.20150305.1-0ubuntu1) vivid; urgency=medium [ CI Train Bot ] * debian/libubuntu-app-launch2.symbols: auto-update to released version [ Ted Gould ] * Add a test tool to run an application from the command line (LP: #1425286) * Emit a signal when applications are paused or resumed (LP: #1425285) * Remove application log on exit if not in developer mode (LP: #1414039) -- CI Train Bot Thu, 05 Mar 2015 14:36:35 +0000 ubuntu-app-launch (0.4+15.04.20141121-0ubuntu1) vivid; urgency=low [ Ted Gould ] * Remove reporting a recoverable problem on cgmanager (LP: #1394919) * Use a version script to ensure we're not leaking symbols * Create a custom GMainContext when waiting on the CGManager DBus connection. (LP: #1394622) -- Lomiri daily release Fri, 21 Nov 2014 21:17:30 +0000 ubuntu-app-launch (0.4+15.04.20141118-0ubuntu1) vivid; urgency=low [ Ted Gould ] * Attenting to connect to cgmanager for 1 second and then failing and reporting a recoverable error. (LP: #1377332) -- Lomiri daily release Tue, 18 Nov 2014 21:10:45 +0000 ubuntu-app-launch (0.4+15.04.20141031-0ubuntu1) vivid; urgency=low [ Chris Townsend ] * Change GetTasks to GetTasksRecursive so it searches all pids related to a cgroup instead of just the first pid. (LP: #1386357) [ Leo Arias ] * On the cgroup manual test, make it clear that the command must be run on the app. -- Lomiri daily release Fri, 31 Oct 2014 15:02:48 +0000 ubuntu-app-launch (0.4+14.10.20141006-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Set OOM adjustment without using temporary files. (LP: #1374177) * Use a setuid helper for OOM adjustment of Oxide renderers -- Lomiri daily release Mon, 06 Oct 2014 14:33:13 +0000 ubuntu-app-launch (0.4+14.10.20140925-0ubuntu1) utopic; urgency=low [ Martin Pitt ] * Upstart dep updated to trunk [ Ted Gould ] * Upstart dep updated to trunk * Add handling for X-Lomiri-SymbolicIcon in desktop hook (LP: #1365408) [ CI bot ] * Adjust upstart recommends to upstart-bin (LP: #1351306) -- Lomiri daily release Thu, 25 Sep 2014 14:43:28 +0000 ubuntu-app-launch (0.4+14.10.20140915.3-0ubuntu1) utopic; urgency=medium [ Ted Gould ] * Unrevert cgroup support * Adding a manual test to verify the job running the application * CGroup test and clarification comments * Tracepoint got dropped in refactoring * Use the Upstart 1.13 feature of multiple set for environment variables * Cleanup UAL LTTng tracepoints * Provide a pause and resume function for AppIDs * Rotate application and untrusted helper logs faster than other services * Add a tool to show application usage * Reshuffle the pre-start jobs to save precious milliseconds [ Lomiri daily release ] * debian/libubuntu-app-launch2.symbols: auto-update to released version -- Lomiri daily release Mon, 15 Sep 2014 19:40:21 +0000 ubuntu-app-launch (0.4+14.10.20140808.3.is.0.4+14.10.20140605.3-0ubuntu1) utopic; urgency=medium * Temporarily revert the cgroup support introduced in the last version, as it was causing regressions in our test infrastructure -- Lukasz 'sil2100' Zemczak Tue, 19 Aug 2014 09:52:33 +0200 ubuntu-app-launch (0.4+14.10.20140808.2-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Use Upstart cgroup support in 1.13 to properly track PIDs -- Lomiri daily release Fri, 08 Aug 2014 03:59:40 +0000 ubuntu-app-launch (0.4+14.10.20140605.3-0ubuntu1) utopic; urgency=medium [ Ted Gould ] * Fixing click hook for name change -- Lomiri daily release Thu, 05 Jun 2014 03:40:55 +0000 ubuntu-app-launch (0.4+14.10.20140601-0ubuntu2) utopic; urgency=low * add Conflicts/Replaces/Provides to ubuntu-app-launch-tools since there are still packages depending on upstart-app-launch-tools -- Oliver Grawert Wed, 04 Jun 2014 10:06:24 +0200 ubuntu-app-launch (0.4+14.10.20140601-0ubuntu1) utopic; urgency=medium [ Ted Gould ] * Rename to "Lomiri App Launch" -- Lomiri daily release Sun, 01 Jun 2014 21:10:43 +0000 upstart-app-launch (0.3+14.10.20140521-0ubuntu1) utopic; urgency=low [ Ted Gould ] * Drop Surface Flinger support * Debug message for valid, though rare, conditions. (LP: #1301173) * More elegant handling of bad application id errors (LP: #1238068) * Set LD_LIBRARY_PATH to include the application directory -- Lomiri daily release Wed, 21 May 2014 17:41:20 +0000 upstart-app-launch (0.3+14.04.20140411-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Kill all jobs in process group on exit -- Lomiri daily release Fri, 11 Apr 2014 22:14:55 +0000 upstart-app-launch (0.3+14.04.20140321-0ubuntu1) trusty; urgency=low [ Colin Watson ] * Use libclick to get the package directory, saving about 0.7 seconds from Click application startup (on mako). * Use libclick to get package manifests, saving about 0.7 seconds from Click application startup (on mako). -- Lomiri daily release Fri, 21 Mar 2014 17:56:24 +0000 upstart-app-launch (0.3+14.04.20140320-0ubuntu1) trusty; urgency=low [ Thomi Richards ] * Export the correct environment variable to load apps with testability enabled. (LP: #1285947) [ Lomiri daily release ] * New rebuild forced -- Lomiri daily release Thu, 20 Mar 2014 23:22:49 +0000 upstart-app-launch (0.3+14.04.20140220-0ubuntu3) trusty; urgency=medium * Change dependency on "zeitgeist" to "zeitgeist-core". The former is a metapackage which pulls in python2 and useless gtk/X data providers, whereas zeitgeist-core provides the service necessary for zg-report-app to operate. -- Dimitri John Ledkov Sat, 22 Feb 2014 23:00:37 +0000 upstart-app-launch (0.3+14.04.20140220-0ubuntu2) trusty; urgency=medium * Drop depends:click from a Multi-Arch:same library package, as click is neither M-A:allowed nor M-A:foreign. This unbreaks cross-compilation. -- Dimitri John Ledkov Thu, 20 Feb 2014 23:51:29 +0000 upstart-app-launch (0.3+14.04.20140220-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Support for Untrusted Helpers * A little tool to discover application IDs * Add observers in the launch tool so that we stick around to handle events * Add functions for testing and App ID parsing -- Lomiri daily release Thu, 20 Feb 2014 12:04:30 +0000 upstart-app-launch (0.3+14.04.20140213-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Unregister for Unity's Resume signal * Function to get the log file for the application * Add GIR support to libual * Remove an invalid substitution that we weren't using (LP: #1220591) [ Lomiri daily release ] * debian/*symbols: auto-update new symbols to released version -- Lomiri daily release Thu, 20 Feb 2014 12:04:27 +0000 upstart-app-launch (0.3+14.04.20140210-0ubuntu1) trusty; urgency=low * debian/*symbols: auto-update new symbols to released version -- Lomiri daily release Thu, 13 Feb 2014 13:14:48 +0000 upstart-app-launch (0.3+14.04.20140206-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Basic merge and review requirements. * On error print the exec line * Make the last environment variable set synchronous to make Upstart respond that it received it. (LP: #1275017) [ Lomiri daily release ] * New rebuild forced -- Lomiri daily release Thu, 06 Feb 2014 16:54:55 +0000 upstart-app-launch (0.3+14.04.20140129.1-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Added upstart_app_launch_triplet_to_app_id to construct an appid from pkg, app, version triplet. If a specific version isn't provided, click is used to determine the version from the manifest. [ Ted Gould ] * Set the Upstart job environment using DBus. * Tests for the exec utilities. * Add an APP_DESKTOP_FILE_PATH to point to a readable desktop file under confinement. * Include an architecture specific directory in the path. * Making the application job a task. * Add application list handling to the triplet function. [ CI bot ] * Upload to trusty -- Lomiri daily release Wed, 29 Jan 2014 20:08:11 +0000 upstart-app-launch (0.3+14.04.20131218-0ubuntu1) trusty; urgency=low [ Ken VanDine ] * Multi-Arch: same libraries must not depend on run-time application,. since this breaks cross-compilation. Furthermore, circular dependencies are never needed: upstart-app-launch depends on libupstart-app-launch2, which depends on upstart-app-launch. It's the same reasoning why we do not make libgtk-3.0 depend on epiphany webbrowser, even though gtk has functions to open URL in a webbrowser. And in a multi-arch world libgtk-3.0 would never know which architecture your web-browser is, it could be any. Libraries should only ever depend on other linked shared libraries. [ Ted Gould ] * Make sure that 'package' sticks around until we setup the environment. (LP: #1260079) * Improve readability of the coverage report. [ Didier Roche ] * revert the archictecture specific list: britney doesn't use those [ Lomiri daily release ] * Automatic snapshot from revision 100 * debian/*symbols: auto-update new symbols to released version -- Lomiri daily release Wed, 29 Jan 2014 20:08:07 +0000 upstart-app-launch (0.3+14.04.20131209-0ubuntu3) trusty; urgency=low * Multi-Arch: same libraries must not depend on run-time application, since this breaks cross-compilation. Furthermore, circular dependencies are never needed: upstart-app-launch depends on libupstart-app-launch2, which depends on upstart-app-launch. It's the same reasoning why we do not make libgtk-3.0 depend on epiphany webbrowser, even though gtk has functions to open URL in a webbrowser. And in a multi-arch world libgtk-3.0 would never know which architecture your web-browser is, it could be any. Libraries should only ever depend on other linked shared libraries. -- Dimitri John Ledkov Thu, 12 Dec 2013 22:32:34 +0000 upstart-app-launch (0.3+14.04.20131209-0ubuntu2) trusty; urgency=low * Restrict on which arch we build url-dispatcher due to the ust build-dep -- Didier Roche Mon, 09 Dec 2013 13:47:51 +0100 upstart-app-launch (0.3+14.04.20131209-0ubuntu1) trusty; urgency=low [ Lomiri daily release ] * debian/*symbols: auto-update new symbols to released version [ Ted Gould ] * Use the parsing of the line to split appart the URLs. (LP: #1253703) * Use Upstart on the session bus instead of the private bus. * Adding tracing support to application startup. * Hide click error printed in the Upstart log. * Handshake for starting applications. (LP: #1243665) * Link to the right version of upstart-app-launch. [ Lomiri daily release ] * Automatic snapshot from revision 93 -- Lomiri daily release Mon, 09 Dec 2013 02:05:27 +0000 upstart-app-launch (0.3+14.04.20131126-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Bumping to 0.3 to reflect that we added a new env var to the library which is needed for testing URL Dispatcher * Reenable ZG and port to libzg-2.0. (LP: #1197569) * Ensure quoted single URIs passed to a %U are unquoted. (LP: #1253703) [ Lomiri daily release ] * Automatic snapshot from revision 86 -- Lomiri daily release Tue, 26 Nov 2013 02:07:13 +0000 upstart-app-launch (0.2+14.04.20131119-0ubuntu1) trusty; urgency=low [ Ted Gould ] * Unref the proxy after stopping an application. * Use shell escaping to ensure we can handle spaces. (LP: #1229354) * Set the XDG Data Dirs to include the application install directory. (LP: #1250546) [ Lomiri daily release ] * Automatic snapshot from revision 82 -- Lomiri daily release Tue, 19 Nov 2013 08:19:25 +0000 upstart-app-launch (0.2+13.10.20131014-0ubuntu1) saucy; urgency=low [ Ricardo Mendoza ] * Currently we are signalling observers that app started on the "starting" signal. This is racy, as the final exec might not have happened yet, so if a client tries to get the primary PID before the process has fully started, it might get one of the transitional PIDs of the scripts that run in between. [ Lomiri daily release ] * Automatic snapshot from revision 78 -- Lomiri daily release Mon, 14 Oct 2013 07:55:55 +0000 upstart-app-launch (0.2+13.10.20131011-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Bumping to version 0.2 * Adding a libupstart-app-launch1.symbols file to match * Use 'click info' to get manifests. (LP: #1232118) [ Lomiri daily release ] * Automatic snapshot from revision 76 -- Lomiri daily release Fri, 11 Oct 2013 02:09:14 +0000 upstart-app-launch (0.1+13.10.20131008.1-0ubuntu1) saucy; urgency=low [ Ted Gould ] * On second activations send a message to the FD.o application interface. (LP: #1228345) * Add observers for focused and resume. * Testing of the second exec logic. * Disable ZG logging for Phone 1.0. * Need a little longer time on recent ARM builds. [ Lomiri daily release ] * Automatic snapshot from revision 73 -- Lomiri daily release Tue, 08 Oct 2013 10:07:25 +0000 upstart-app-launch (0.1+13.10.20130925.2-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Ensure a failed stop return doesn't block execution. (LP: #1229468) [ Lomiri daily release ] * Automatic snapshot from revision 67 -- Lomiri daily release Wed, 25 Sep 2013 18:03:51 +0000 upstart-app-launch (0.1+13.10.20130925.1-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Tests for the functions in the core helpers library. [ Lomiri daily release ] * Automatic snapshot from revision 65 -- Lomiri daily release Wed, 25 Sep 2013 12:54:36 +0000 upstart-app-launch (0.1+13.10.20130924.1-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Evil hack to allow "secondary activations" through killing the first instance. * Handle URLs with complex spacing by using C parsing. (LP: #1228387) [ Lomiri daily release ] * Automatic snapshot from revision 63 -- Lomiri daily release Tue, 24 Sep 2013 06:04:42 +0000 upstart-app-launch (0.1+13.10.20130919.4-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Support a desktop file key so legacy applications can be single instance. [ Lomiri daily release ] * Automatic snapshot from revision 60 -- Lomiri daily release Thu, 19 Sep 2013 22:04:58 +0000 upstart-app-launch (0.1+13.10.20130919.3-0ubuntu1) saucy; urgency=low [ Loïc Minier ] * Fix LP #1227632 by directly joining the components of the Exec line split on % instead of joining them with spaces. (LP: #1227632) [ Ted Gould ] * Only split the URIs if there are more than one. * Try to deduce if we're on Surface Flinger. [ Lomiri daily release ] * Automatic snapshot from revision 58 -- Lomiri daily release Thu, 19 Sep 2013 14:03:55 +0000 upstart-app-launch (0.1+13.10.20130917.1-0ubuntu1) saucy; urgency=low [ Sebastien Bacher ] * typo fix in one of the warning strings. [ Lomiri daily release ] * Automatic snapshot from revision 54 -- Lomiri daily release Tue, 17 Sep 2013 22:03:45 +0000 upstart-app-launch (0.1+13.10.20130912-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Don't automatically warn on a failed App ID. * Check to see if an icon exists, and if so prepend the full path. [ Jamie Strandboge ] * application-legacy.conf.in: use aa-exec-click instead of aa-exec desktop-hook.c: use aa-exec-click instead of aa-exec (LP: #1197047) debian/control: Depends on click-apparmor. (LP: #1197047) [ Lomiri daily release ] * Automatic snapshot from revision 52 -- Lomiri daily release Thu, 12 Sep 2013 20:33:42 +0000 upstart-app-launch (0.1+13.10.20130905-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Making sure to look for the application directory. (LP: #1215478) * Handle click errors by just not setting the value. [ Lomiri daily release ] * Automatic snapshot from revision 48 -- Lomiri daily release Thu, 05 Sep 2013 09:06:43 +0000 upstart-app-launch (0.1+13.10.20130903-0ubuntu1) saucy; urgency=low [ Guenter Schwann ] * Make libupstart-app-launch usable by C++ programs. [ Lomiri daily release ] * Automatic snapshot from revision 45 -- Lomiri daily release Tue, 03 Sep 2013 18:05:38 +0000 upstart-app-launch (0.1+13.10.20130827-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Completes the base functionality in the libupstart-app-launch library. [ Lomiri daily release ] * Automatic snapshot from revision 43 -- Lomiri daily release Tue, 27 Aug 2013 14:04:33 +0000 upstart-app-launch (0.1+13.10.20130819-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Make setting the PATH more robust. [ jdstrand ] * Update click-exec.c to setup the sandbox environment. Specifically: - explicitly set the XDG base dirs to the user's preference - set LOMIRI_APPLICATION_ISOLATION - set TMPDIR - set __GL_SHADER_DISK_CACHE_PATH. [ Lomiri daily release ] * Automatic snapshot from revision 41 -- Lomiri daily release Mon, 19 Aug 2013 02:04:19 +0000 upstart-app-launch (0.1+13.10.20130812-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Use the click utility to determine path to the package. * Split profile and exec into two variables. * Add a click package hook to build desktop files. * Flesh out the click package execution. * Switch to CMake and add stub library. [ Lomiri daily release ] * Automatic snapshot from revision 38 -- Lomiri daily release Mon, 12 Aug 2013 18:04:33 +0000 upstart-app-launch (0.1+13.10.20130712-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Add support for URIs. [ Lomiri daily release ] * Automatic snapshot from revision 32 -- Lomiri daily release Fri, 12 Jul 2013 00:01:50 +0000 upstart-app-launch (0.1+13.10.20130703-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Split out legacy and click package startup. * Allow setting the apparmor profile in the dekstop file. * Add Zeitgeist logging of the start and stop of the applications. * Adding a shell script to insert the initctl path if on buildd's. * Switch initialization to be signal based. * Don't run tests on buildds. * Changing the script to check for upstart versions. [ Lomiri daily release ] * Automatic snapshot from revision 30 -- Lomiri daily release Wed, 03 Jul 2013 00:01:31 +0000 upstart-app-launch (0.1daily13.06.19-0ubuntu1) saucy; urgency=low [ Ted Gould ] * Initial release * The application config file * Adding debian stuff * Fixing the make file to make it work-ish * Adding notification of isolation * Adding a build for a small executor target * Fleshing out desktop exec * Adding the directory into the conf file * Make the deb stuff work * Now that we have the tool we need to expect a fork * Changing the conf file to not need the script suggested by zyga on #lomiri-devel * Switch from using GIO to standard GLib and exec * Simpler pkgconfig too * Drop the forking * Making a little script to help with apps * Putting some boiler plate dbus in there * Dump out the PIDs and the nice names * Putting the type in too * Close the metal here * Adding a glib build dependency. * Searching desktop files in pre-start. * Adding a COPYING file and file copyrights. [ Lomiri daily release ] * Automatic snapshot from revision 22 -- Lomiri daily release Wed, 19 Jun 2013 00:01:09 +0000 lomiri-app-launch-0.1.9/debian/clean000066400000000000000000000000421455542527200173000ustar00rootroot00000000000000debian/lomiri-app-launch.postinst lomiri-app-launch-0.1.9/debian/control000066400000000000000000000076671455542527200177220ustar00rootroot00000000000000Source: lomiri-app-launch Section: gnome Priority: optional Maintainer: UBports developers Build-Depends: abi-compliance-checker, click-dev (>= 0.2.2), cmake, cmake-extras (>= 0.10), dbus-test-runner, debhelper-compat (= 12), dh-migrations, googletest, libclick-0.4-dev, libcurl4-gnutls-dev, libdbus-1-dev, libdbustest1-dev (>= 14.04.0), libertined (>= 1.6), libgirepository1.0-dev, libglib2.0-dev, libgtest-dev, libjson-glib-dev (>= 1.1.2), liblibertine-dev, liblttng-ust-dev, libmirclient-dev (>= 0.5), libproperties-cpp-dev, liblomiri-api-dev (>= 0.1.0), libzeitgeist-2.0-dev, gobject-introspection, python3-dbusmock, systemd, Standards-Version: 4.5.0 Rules-Requires-Root: no Homepage: http://gitlab.com/ubports/core/lomiri-app-launch Package: lomiri-app-launch Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, click-apparmor, dbus-user-session, zeitgeist-core, Multi-Arch: foreign Description: User space daemon for launching applications Application launching system and associated utilities that is used to launch applications in a standard and confined way. . This package provides the Lomiri App Launch user space daemon. Package: lomiri-app-launch-tools Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, lomiri-app-launch (= ${binary:Version}) Replaces: upstart-app-launch-tools, ubuntu-app-launch-tools, Provides: upstart-app-launch-tools, ubuntu-app-launch-tools, Description: Tools for working wtih launched applications Application launching system and associated utilities that is used to launch applications in a standard and confined way. . This package provides tools for working with Lomiri App Launch. Package: liblomiri-app-launch0 Section: libs Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, lomiri-app-launch (= ${binary:Version}), # lomiri-pasted, Recommends: libertine-xmir-tools [amd64 armhf arm64 i386], Pre-Depends: ${misc:Pre-Depends}, Multi-Arch: same Description: library for sending requests to Lomiri App Launch Application launching system and associated utilities that is used to launch applications in a standard and confined way. . This package contains shared libraries to be used by applications. Package: liblomiri-app-launch-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, gir1.2-lomiriapplaunch-0 (= ${binary:Version}), libglib2.0-dev, libmirclient-dev (>= 0.5), libproperties-cpp-dev, liblomiri-app-launch0 (= ${binary:Version}), Pre-Depends: ${misc:Pre-Depends}, Multi-Arch: same Description: library for sending requests to the Lomiri App Launch Application launching system and associated utilities that is used to launch applications in a standard and confined way. . This package contains files that are needed to build applications. Package: gir1.2-lomiriapplaunch-0 Section: introspection Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, liblomiri-app-launch0 (= ${binary:Version}), ${gir:Depends}, Pre-Depends: ${misc:Pre-Depends} Recommends: lomiri-app-launch (= ${binary:Version}) Multi-Arch: same Description: typelib file for liblomiri-app-launch4 Application launching system and associated utilities that is used to launch applications in a standard and confined way. . Interface for starting apps and getting info on them. . This package can be used by other packages using the GIRepository format to generate dynamic bindings for liblomiri-app-launch0. lomiri-app-launch-0.1.9/debian/copyright000066400000000000000000000224751455542527200202440ustar00rootroot00000000000000Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lomiri-app-launch Upstream-Contact: Marius Grispgard Source: https://gitlab.com/ubports/core/lomiri-app-launch Files: liblomiri-app-launch/app-store-base.cpp liblomiri-app-launch/app-store-base.h liblomiri-app-launch/app-store-legacy.cpp liblomiri-app-launch/app-store-legacy.h liblomiri-app-launch/app-store-libertine.cpp liblomiri-app-launch/app-store-libertine.h liblomiri-app-launch/app-store-snap.cpp liblomiri-app-launch/app-store-snap.h liblomiri-app-launch/appid.h liblomiri-app-launch/application-icon-finder.cpp liblomiri-app-launch/application-icon-finder.h liblomiri-app-launch/application-impl-base.cpp liblomiri-app-launch/application-impl-base.h liblomiri-app-launch/application-impl-legacy.cpp liblomiri-app-launch/application-impl-legacy.h liblomiri-app-launch/application-impl-libertine.cpp liblomiri-app-launch/application-impl-libertine.h liblomiri-app-launch/application-impl-snap.cpp liblomiri-app-launch/application-impl-snap.h liblomiri-app-launch/application-info-desktop.cpp liblomiri-app-launch/application-info-desktop.h liblomiri-app-launch/application.cpp liblomiri-app-launch/application.h liblomiri-app-launch/glib-thread.cpp liblomiri-app-launch/glib-thread.h liblomiri-app-launch/helper-impl.h liblomiri-app-launch/helper.cpp liblomiri-app-launch/helper.h liblomiri-app-launch/info-watcher-zg.cpp liblomiri-app-launch/info-watcher-zg.h liblomiri-app-launch/info-watcher.cpp liblomiri-app-launch/info-watcher.h liblomiri-app-launch/jobs-base.cpp liblomiri-app-launch/jobs-base.h liblomiri-app-launch/jobs-posix.cpp liblomiri-app-launch/jobs-posix.h liblomiri-app-launch/jobs-systemd.cpp liblomiri-app-launch/jobs-systemd.h liblomiri-app-launch/lomiri-app-launch.cpp liblomiri-app-launch/lomiri-app-launch.h liblomiri-app-launch/oom.h liblomiri-app-launch/registry-impl.cpp liblomiri-app-launch/registry-impl.h liblomiri-app-launch/registry.cpp liblomiri-app-launch/registry.h liblomiri-app-launch/second-exec-core.c liblomiri-app-launch/second-exec-core.h liblomiri-app-launch/signal-unsubscriber.h liblomiri-app-launch/snapd-info.cpp liblomiri-app-launch/snapd-info.h liblomiri-app-launch/string-util.h liblomiri-app-launch/ual-tracepoint.h liblomiri-app-launch/utils-shared.c liblomiri-app-launch/utils.c liblomiri-app-launch/utils.h tests/app-store-legacy.cpp tests/application-icon-finder.cpp tests/application-info-desktop.cpp tests/data-spew.c tests/eventually-fixture.h tests/helper-handshake-test.cc tests/helper-test.cc tests/info-watcher-zg.cpp tests/jobs-base-test.cpp tests/jobs-systemd.cpp tests/libertine-service.h tests/libual-cpp-test.cc tests/libual-test.cc tests/list-apps.cpp tests/lomiri-app-launch-mock.c tests/lomiri-app-launch-mock.h tests/registry-mock.h tests/snapd-info-test.cpp tests/snapd-mock.h tests/spew-master.h tests/systemd-mock.h tests/test-directory.h tests/zg-mock.h tests/zg-test.cc tools/lomiri-app-info.cpp tools/lomiri-app-launch-appids.cpp tools/lomiri-app-launch.cpp tools/lomiri-app-list-pids.cpp tools/lomiri-app-list.cpp tools/lomiri-app-pid.cpp tools/lomiri-app-stop.cpp tools/lomiri-app-triplet.cpp tools/lomiri-app-usage.c tools/lomiri-app-watch.cpp tools/lomiri-helper-list.cpp tools/lomiri-helper-start.cpp tools/lomiri-helper-stop.cpp utils/oom-adjust-setuid-helper.c utils/socket-demangler.c utils/systemd-helper-helper.c Copyright: 2013, Canonical Ltd. 2014, Canonical Ltd. 2015, Canonical Ltd. 2016, Canonical Ltd. 2016-2017, Canonical Ltd. 2017, Canonical Ltd. License: GPL-3 Files: .gitignore CMakeLists.txt Jenkinsfile _clang-format cmake/ListOperations.cmake cmake/UseConstantBuilder.cmake cmake/UseGdbusCodegen.cmake cmake/UseGlibGeneration.cmake cmake/UseLttngGenTp.cmake data/com.lomiri.LomiriAppLaunch.SocketDemangler.xml data/com.lomiri.LomiriAppLaunch.xml docs/Doxyfile docs/Makefile docs/index.rst docs/requirements.txt liblomiri-app-launch/CMakeLists.txt liblomiri-app-launch/abi-check/CMakeLists.txt liblomiri-app-launch/abi-check/build.xml.in liblomiri-app-launch/abi-check/check-abi.sh.in liblomiri-app-launch/abi-check/installed.xml.in liblomiri-app-launch/liblomiri-app-launch.map liblomiri-app-launch/lomiri-app-launch-trace.tp liblomiri-app-launch/lomiri-app-launch.pc.in liblomiri-app-launch/type-tagger.h tests/CMakeLists.txt tests/applications/bar.desktop tests/applications/foo.desktop tests/applications/hidden.desktop tests/applications/multiple.desktop tests/applications/no-entry.desktop tests/applications/no-exec.desktop tests/applications/nodisplay.desktop tests/applications/noxmir.desktop tests/applications/qmlapp.desktop tests/applications/scope.desktop tests/applications/single.desktop tests/applications/terminal.desktop tests/applications/xmir.desktop tests/applications/xmir.png tests/data/home/test/.local/share/icons/hicolor/32x32/apps/steam_123456.png tests/data/usr/share/icons/app5.png tests/data/usr/share/icons/Humanity/16x16/apps/gedit.png tests/data/usr/share/icons/Humanity/index.theme tests/data/usr/share/icons/hicolor/16x16/actions/app.png tests/data/usr/share/icons/hicolor/16x16/apps/app.png tests/data/usr/share/icons/hicolor/16x16/apps/app3.png tests/data/usr/share/icons/hicolor/16x16/apps/steam_123456.png tests/data/usr/share/icons/hicolor/20x20/apps/app3.png tests/data/usr/share/icons/hicolor/22x22/apps/app1.png tests/data/usr/share/icons/hicolor/24x24/apps/app.xpm tests/data/usr/share/icons/hicolor/25x25/apps/app.png tests/data/usr/share/icons/hicolor/32x32/apps/app1.png tests/data/usr/share/icons/hicolor/app4.png tests/data/usr/share/icons/hicolor/scalable/apps/app.svg tests/data/usr/share/icons/hicolor/index.theme tests/data/usr/share/pixmaps/app2.png tests/snap-basedir/lomiri-package/x123/no-xmir.png tests/libertine-data/libertine-container/container-name/rootfs/usr/share/applications/nested/test-nested.desktop tests/libertine-data/libertine-container/container-name/rootfs/usr/share/applications/test.desktop tests/libertine-home/libertine-container/user-data/container-name/.local/share/applications/user-app.desktop tests/libertine-home/libertine/ContainersConfig.json tests/link-farm/README tests/link-farm/com.test.good_application_1.2.3.desktop tests/link-farm/com.test.good_application_1.2.4.desktop tests/link-farm/com.test.mir_mir_1.desktop tests/link-farm/com.test.mir_nomir_1.desktop tests/link-farm/com.test.multiple_first_1.2.3.desktop tests/manual tests/mir-mock.cpp tests/mir-mock.h tests/socket-tool.c tools/CMakeLists.txt ubports.no_test utils/CMakeLists.txt Copyright: 2013-2017, Canonical Ltd. License: GPL-3 Comment: No explicit license headers. Assuming license and copyright holders from other project files (and COPYING file). Files: ChangeLog docs/conf.py Copyright: 2013-2017, Canonical Ltd. License: GPL-3 Comment: Generated files. . No explicit license headers. Assuming license and copyright holders from other project files (and COPYING file). Files: cmake/FindGObjectIntrospection.cmake cmake/UseGObjectIntrospection.cmake Copyright: 2010, Pino Toscano, License: BSD-3-clause Files: debian/* Copyright: 2013, Ted Gould 2020, Mike Gabriel . . 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. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. lomiri-app-launch-0.1.9/debian/gir1.2-lomiriapplaunch-0.install000066400000000000000000000000331455542527200242070ustar00rootroot00000000000000usr/lib/*/girepository-1.0 lomiri-app-launch-0.1.9/debian/liblomiri-app-launch-dev.install000066400000000000000000000001321455542527200244470ustar00rootroot00000000000000usr/lib/*/liblomiri-app-launch.so usr/lib/*/pkgconfig/* usr/include/* usr/share/gir-1.0/* lomiri-app-launch-0.1.9/debian/liblomiri-app-launch0.install000066400000000000000000000000451455542527200237560ustar00rootroot00000000000000usr/lib/*/liblomiri-app-launch.so.0* lomiri-app-launch-0.1.9/debian/lomiri-app-launch-tools.install000066400000000000000000000000551455542527200243460ustar00rootroot00000000000000usr/bin/lomiri-app-* usr/bin/lomiri-helper-* lomiri-app-launch-0.1.9/debian/lomiri-app-launch-tools.lintian-overrides000066400000000000000000000020401455542527200263320ustar00rootroot00000000000000# on the todo list upstream: https://gitlab.com/ubports/core/lomiri-app-launch/-/issues/1 lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-info lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-launch lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-launch-appids lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-list lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-list-pids lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-pid lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-stop lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-triplet lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-usage lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-app-watch lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-helper-list lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-helper-start lomiri-app-launch-tools: binary-without-manpage usr/bin/lomiri-helper-stop lomiri-app-launch-0.1.9/debian/lomiri-app-launch.install000066400000000000000000000000631455542527200232070ustar00rootroot00000000000000usr/lib/*/lomiri-app-launch/* usr/lib/systemd/user lomiri-app-launch-0.1.9/debian/lomiri-app-launch.migrations000066400000000000000000000000611455542527200237130ustar00rootroot00000000000000debian/session-migrations/lal-cache-migration.sh lomiri-app-launch-0.1.9/debian/lomiri-app-launch.postinst.in000066400000000000000000000002651455542527200240350ustar00rootroot00000000000000#!/bin/sh set -e # Make the setuid helper setuid if [ "$1" = configure ]; then chmod u+s /usr/lib/#MULTIARCH#/lomiri-app-launch/oom-adjust-setuid-helper fi #DEBHELPER# exit 0 lomiri-app-launch-0.1.9/debian/rules000077500000000000000000000021531455542527200173600ustar00rootroot00000000000000#!/usr/bin/make -f # -*- makefile -*- # Get full logs in tests export G_MESSAGES_DEBUG=all # Ensure tests fail with criticals #export G_DEBUG=fatal_criticals # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export DPKG_GENSYMBOLS_CHECK_LEVEL=4 include /usr/share/dpkg/architecture.mk include /usr/share/dpkg/buildflags.mk # see FEATURE AREAS in dpkg-buildflags(1) export DEB_BUILD_MAINT_OPTIONS = hardening=+all export QT_SELECT := 5 undefine DBUS_SESSION_BUS_ADDRESS undefine DBUS_SYSTEM_BUS_ADDRESS %: dh $@ --with click,gir,migrations override_dh_click: dh_click --name lomiri-app-launch-desktop override_dh_missing: dh_missing --fail-missing override_dh_installdeb: sed -e"s/#MULTIARCH#/$(DEB_HOST_MULTIARCH)/g" \ debian/lomiri-app-launch.postinst.in \ > debian/lomiri-app-launch.postinst dh_installdeb override_dh_auto_test: mkdir -p $(CURDIR)/debian/test-home/.local/share/ export HOME=$(CURDIR)/debian/test-home \ && export XDG_DATA_HOME=$(CURDIR)/debian/test-home/.local/share \ && dh_auto_test --no-parallel override_dh_clean: rm -Rfv $(CURDIR)/debian/test-home/ dh_clean lomiri-app-launch-0.1.9/debian/session-migrations/000077500000000000000000000000001455542527200221345ustar00rootroot00000000000000lomiri-app-launch-0.1.9/debian/session-migrations/lal-cache-migration.sh000077500000000000000000000020131455542527200262670ustar00rootroot00000000000000#!/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 .desktop files, many of which are obsolete due to application # renamings. Files in the new location will be generated by click hook. old_path="${HOME}/.cache/ubuntu-app-launch" if [ -d "$old_path" ]; then rm -r "$old_path" fi lomiri-app-launch-0.1.9/debian/source/000077500000000000000000000000001455542527200175775ustar00rootroot00000000000000lomiri-app-launch-0.1.9/debian/source/format000066400000000000000000000000031455542527200210030ustar00rootroot000000000000001.0lomiri-app-launch-0.1.9/debian/source/lintian-overrides000066400000000000000000000004411455542527200231570ustar00rootroot00000000000000# upstream sources ship a debian/ folder. These files from upstream's debian/ folder can gently be ignored... lomiri-app-launch source: file-without-copyright-information debian/compat lomiri-app-launch source: file-without-copyright-information debian/gir1.2-lomiri-app-launch-0.install lomiri-app-launch-0.1.9/docs/000077500000000000000000000000001455542527200160055ustar00rootroot00000000000000lomiri-app-launch-0.1.9/docs/Doxyfile000066400000000000000000003174651455542527200175330ustar00rootroot00000000000000# Doxyfile 1.8.11 # 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 App Launch" # 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 a logo or an 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 = # 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 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = 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 = # 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 = # 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 = # 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 = # 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 = YES # 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 (fixed format Fortran: # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: # Fortran. In the later case the parser tries to guess whether the code is fixed # or free formatted code, this is the default for Fortran type files), 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 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 # If one adds a struct or class to a group and this option is enabled, then also # any nested class or struct is added to the same group. By default this option # is disabled and one has to add nested compounds explicitly via \ingroup. # The default value is: NO. GROUP_NESTED_COMPOUNDS = 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. If 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 = NO # 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 = YES # 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 HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to # YES the compound reference will be hidden. # The default value is: NO. HIDE_COMPOUND_REFERENCE= 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. 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 = NO # 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 = YES # 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 # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. # The default value is: NO. WARN_AS_ERROR = 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. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. INPUT = liblomiri-app-launch/ # 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. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # # 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, *.pyw, *.f90, *.f, *.for, *.tcl, # *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js. FILE_PATTERNS = *.cpp *.h *.cc # 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 = NO # 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 = liblomiri-app-launch/lomiri-app-launch.h liblomiri-app-launch/lomiri-app-launch.cpp # 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. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. 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. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. FILTER_PATTERNS = # 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 = NO # 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 = NO # 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 # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the # cost of reduced performance. This can be particularly helpful with template # rich C++ code for which doxygen's built-in parser lacks the necessary type # information. # Note: The availability of this option depends on whether or not doxygen was # generated with the -Duse-libclang=ON option for CMake. # The default value is: NO. CLANG_ASSISTED_PARSING = NO # If clang assisted parsing is enabled you can provide the compiler with command # line options that you would normally use when invoking the compiler. Note that # the include paths will already be set by doxygen for the files and directories # specified with INPUT and INCLUDE_PATH. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. CLANG_OPTIONS = #--------------------------------------------------------------------------- # 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 = NO # 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 additional user-defined # cascading style sheets that are 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 therefore more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). 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 style sheet 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 YES can help to show when doxygen was last run and thus if the # documentation is up to date. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = NO # 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. Furthermore it # enables the Previous and Next buttons. # 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 style sheets (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 = NO # 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 # If 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 pre-rendered 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 # , /