- 25 Feb, 2014 - 1 commit
-
-
Andrew Knight authored
It isn't really useful unless your target is WinRT, in which case you can build winrtrunner with that version of Qt. Change-Id: Ifc2f80b0b8974e1d661894dac19d33b55f13ed7f Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 21 Feb, 2014 - 4 commits
-
-
Yoann Lopes authored
Features declared by Qt modules are not necessarily used by an app, so we mark them as unrequired. It's the responsibility of the developer to mark them as required if needed. Task-number: QTBUG-36921 Change-Id: Id0de248347d49c119bc9a1c37f4d0882065a1601 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
Friedemann Kleint authored
The feature is present in MSVC 2008 onwards. Fixes warnings when compiling with 32bit: main.cpp(97) : warning C4341: 'QtWebKitWidgetsModule' : signed value is out of range for enum constant Change-Id: I955c5c9f1ed6f1e94c95294e191cc36c5b668391 Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com> Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Eskil Abrahamsen Blomfeldt authored
To speed up listing files from assets, we pregenerate a file list which can be used to prepopulate the cache in the assets file engine. Task-number: QTBUG-33704 Change-Id: I6aee37725760e8f09db18b4d2169d723e7e25027 Reviewed-by:
Christian Stromme <christian.stromme@digia.com>
-
Andrew Knight authored
524375bc attempted to fix multithreaded access with a mutex, but that was not enough to handle access before the server was fully constructed. This partially reverts 524375bc and puts the initialization code into a separate function which can be checked to make sure the server is fully constructed before proceeding. The Q_DECLARE_PRIVATE macro is added for clarity and const-correctness. Change-Id: I0e87ee32e1b409f18b3c5fc4aab22d3c8a85cef8 Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
- 20 Feb, 2014 - 1 commit
-
-
Andrew Knight authored
If waiting for the app to terminate, consider the app still running if it is suspending/suspended. Only stop when the app enters the terminated state. Change-Id: I3b56b77dd375fea0ea34e31d60d9a595b3fd7a65 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 19 Feb, 2014 - 3 commits
-
-
Joerg Bornemann authored
Added missing connect call in XapEngine::stop. Change-Id: I08ab5f63d65daded335d56d74a7fa835de2558e4 Reviewed-by:
Andrew Knight <andrew.knight@digia.com>
-
Andrew Knight authored
Some HRESULTs use 0x973 as the origin, so adding that to the error formatter corrects some error messages that would otherwise come across as "??". Change-Id: I1d8520088c37cda954a94b3bcd0d15504b7a0757 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
Andrew Knight authored
The -qdevel argument allows winrtrunner to get the PID of the running application. If winrtrunner builds a package, it might as well have -qdevel in the arg list, because winrtrunner is likely to run it. The extra arg shouldn't affect normal applications and won't be present in packages built for the Windows Store anyway. Change-Id: I57c1e7b5eecbeff9c1660cfd1c2fd016e3daee06 Reviewed-by:
Joerg Bornemann <joerg.bornemann@digia.com>
-
- 17 Feb, 2014 - 1 commit
-
-
Andrew Knight authored
The server may be used from several threads at once during startup, so use a mutex to protect initialization and enumeration of devices. Change-Id: I6a6605ac80af3da7f330474146e2256418892e50 Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
- 14 Feb, 2014 - 3 commits
-
-
Andrew Knight authored
This is a utility for monitoring and deploying D3D shader blobs requested by d3dcompiler_qt. It is designed as an on-demand service that runs while it is needed. It must be started manually via netsvc. The service may be started from the command line using the -direct option, or installed as a Windows service by passing the -install option. After it has been installed, one can use net start/stop to control the service. The service supports monitoring applications on the local machine or remote devices. To register an application for monitoring, call qtd3dservice -register <device_id>:<application_id>. The device ID can be an index, or the full device string name. For the local machine, use "local" or omit the device name. The application ID is the the product ID for XAP packages, or the package full name for Appx packages. An application can be removed from the monitor by passing -unregister with the same arguments as register. A list of registered applications can be retrieved with qtd3dservice -list. When the service is started, all registered applications will be monitored. If the device is disconnected, the service will try to connect for up to 30 seconds before giving up. Once the service has given up, it must be restarted (using net start). Therefore, it is important that "net start qtd3dservice" is configured as a deployment step. Change-Id: I0aac3a8548359602c5e3ada33ceaeb722ec3d3dc Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
Oliver Wolff authored
In case of an x64 environment phone devices cannot be listed, but winrtrunner should not crash in this case. Change-Id: I6963e1c4f2dc73424fa7ebde13cbce759dfaabc4 Reviewed-by:
Andrew Knight <andrew.knight@digia.com>
-
Andrew Knight authored
The phone portions may not initialize on x64, but we can still let them build. Change-Id: I60f886a0662772547778a7130422104283fd39a1 Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
- 13 Feb, 2014 - 3 commits
-
-
Frederik Gladhorn authored
-
Andrew Knight authored
Adds Windows Phone deployment support to winrtrunner. Access to Windows Phone devices is provided by the CoreCon API, a set of COM interfaces which are registered when installing the Windows Phone SDK. Change-Id: Iff2b2128e3925e6676697e81750c8060e1b8072d Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
Andrew Knight authored
winrtrunner is a console application for launching WinRT Qt packages. It handles: - installing (registering) & removing the package - launching & terminating the app - fetching & dispaying test output for test cases It is designed to compile everywhere, as the platform-specific backends are left out where not supported. Currently it only has a backend for Appx packages, so MSVC2012/2013 is required. It may support other backends over time, such as Windows Phone and remote Appx, as well as any host SDK that gains support for deploying to these platforms. Done-with: Maurice Kalinowski <maurice.kalinowski@digia.com> Change-Id: I424c228435d8eb4608a1d1854106b9df69ca5f11 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Oliver Wolff <oliver.wolff@digia.com>
-
- 12 Feb, 2014 - 2 commits
-
-
Frederik Gladhorn authored
Change-Id: I70d45044c3dcb1e4da7ed9da377b77e6c0f9442b
-
Mitch Curtis authored
Change-Id: Iabc27ad9adb5597904c3d03a732c8fa84336f55c Reviewed-by:
Andrew Knight <andrew.knight@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 06 Feb, 2014 - 1 commit
-
-
Frederik Gladhorn authored
-
- 05 Feb, 2014 - 1 commit
-
-
Maurice Kalinowski authored
Change-Id: I836f33a231764efc341db4b35fbed46c94d92df0 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com>
-
- 03 Feb, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: I6d8fce7daab4dcfc9ffc93543dd0a1337a3f3c9d
-
- 31 Jan, 2014 - 3 commits
-
-
Bastiaan Veelo authored
Qt Assistant, when used as a custom help viewer, would not load all sizes of the application icon specified in the .qhcp file. Now application icons look good everywhere, provided the files contain multiple icons of various sizes. Task-number: QTBUG-28267 Change-Id: I362e2feafa7944b0ad25627fb2fcea1b90af4e53 Reviewed-by:
Thorbjørn Lund Martsum <tmartsum@gmail.com>
-
Kai Koehne authored
Commit 773dd01 in qtbase introduced a general mingw platform scope, which is cleaner and more flexible than matching the spec name. (see 278152fff for a similar commit in qtbase). Change-Id: Ia374dd565469750efed2b537e48c651fc3af8cb5 Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Karsten Heimrich <karsten.heimrich@digia.com>
-
Kai Koehne authored
exception.prf takes care of all of this. Change-Id: I6d8ba116a425eecf94557bdd682ca58905e6263a Reviewed-by:
Karsten Heimrich <karsten.heimrich@digia.com> Reviewed-by:
Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
- 30 Jan, 2014 - 5 commits
-
-
BogDan Vatra authored
Change-Id: I871aaa2488f2df0d6af5f51b3a37bc0e8bc8a1c3 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
BogDan Vatra authored
Starting with Qt 5.3 there is only one platform plugin. Change-Id: If0e88c8662c88b23fa2b714796684846e7c066ba Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
BogDan Vatra authored
Change-Id: I487cfd4fde5f77174ce4a0fc7bed7c75cb0ecebd Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
BogDan Vatra authored
Change-Id: I11d09940d28f13f1e1d9939ee46e2c321d8cb2a9 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
BogDan Vatra authored
Change-Id: I88086a60209b399d43cab1dc68f564878fd7b51f Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
- 28 Jan, 2014 - 5 commits
-
-
Joerg Bornemann authored
Windows User Access Control thinks that lupdate is an installer, because of the string "update" in the executable name. MSVC automatically creates and embeds a manifest into the executable to state that lupdate doesn't need admin rights. For MinGW we now embed a handcrafted manifest. [ChangeLog][lupdate] Fixed lupdate requiring admin rights when built with MinGW. Task-number: QTBUG-36369 Change-Id: I306ba4c13014f2e39fc5785bb90bacd951726ad4 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Friedemann Kleint authored
messageeditor.cpp:941: warning: C4305: '*=' : truncation from 'double' to 'float' Change-Id: I1ddf5a9cc6aefaab1d62c33cc95955d981ea5fb9 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Eskil Abrahamsen Blomfeldt authored
The input to the jarsigner (specifically the password, alias, file name, etc.) can contain spaces, so the arguments need to be quoted. [ChangeLog][Android][androiddeployqt] Fixed signing packages using arguments containing spaces. Task-number: QTBUG-36327 Change-Id: Ie673ab91da4ffe074851a6ddef96efbb7657636b Reviewed-by:
Daniel Teske <daniel.teske@digia.com> Reviewed-by:
Christian Stromme <christian.stromme@digia.com>
-
Thiago Macieira authored
Change-Id: I16ff3a410898563857b70d467f6ba8599c722ce6 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
Kai Koehne authored
Fixes a crash when Qt Creator was registering a large number of .qch files on first startup: In this case the limit of 1000 connections within one session will overflow, resulting in conflicting connection names and crashes later on. Remove this limitation by keeping separate counters per connection name, and also not wrapping around after 1000. It's not clear where the 1000 connection limit stems from: The offending lines predate the first git import of Qt 4. Task-number: QTBUG-36480 Change-Id: If00276652644efa854a75407d00ba01069bde02a Reviewed-by:
Karsten Heimrich <karsten.heimrich@digia.com>
-
- 27 Jan, 2014 - 1 commit
-
-
Frederik Gladhorn authored
Change-Id: I970feea253fde4e03bb7a62583080402b2043189
-
- 24 Jan, 2014 - 3 commits
-
-
Daniel Teske authored
Apparently that doesn't work. Task-number: QTCREATORBUG-11319 Change-Id: If97f0bc5c49e99dac42ec3c539f5ba4b2f060bec Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
-
Laszlo Agocs authored
Change-Id: I91776274baa4efddd1864acac31a3dd44768e159 Reviewed-by:
Robin Burchell <robin+qt@viroteck.net>
-
Laszlo Agocs authored
Change-Id: I4bfe54b90e187e7b70bb8f2b4abd64b04a378b6e Reviewed-by:
Robin Burchell <robin+qt@viroteck.net>
-
- 23 Jan, 2014 - 2 commits
-
-
Erik Larsson authored
Add a unified font size handling in Linguists editors by assigning Ctrl-+/Ctrl--/Ctrl-Wheel to inc/dec font size of ALL editors. The current font size is also stored in the configuration and set at next startup. This is done to make it simpler to use for translators. If the configuration does not have a font size set it will set the default system size. Change-Id: I941f07807653360f8518938380f2c6a2d6f08b63 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-
Erik Larsson authored
Add action, in ‘View’, that lets the user toggle the whitespace markers in editors. Whitespace markers are the small dots/arrows etc. marking spaces, tabs and new-lines. To some translators this can make it hard to see the text, hence the reason for making it possible to toggle. Change-Id: I484b51b078c84dacc1fe534b935dd9f8ce12de42 Reviewed-by:
Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-