mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-14 10:56:47 +08:00
Compare commits
44 Commits
v5.3.0-alp
...
v5.2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02353a4b3e | ||
|
|
b5594043bc | ||
|
|
323825a1db | ||
|
|
d8f6092efd | ||
|
|
e2d566a72d | ||
|
|
0ea66cab6e | ||
|
|
100c98b9fc | ||
|
|
27f8dc93ae | ||
|
|
f62385a213 | ||
|
|
948ce9ed9e | ||
|
|
284765a1be | ||
|
|
eda3b9c308 | ||
|
|
f3f634ae66 | ||
|
|
fbb4041031 | ||
|
|
b7081d3f13 | ||
|
|
52a9312100 | ||
|
|
fc6f18a589 | ||
|
|
83768ab768 | ||
|
|
e137a789a9 | ||
|
|
0533da6bc1 | ||
|
|
d5cc1add47 | ||
|
|
33606f80b5 | ||
|
|
056329bd5c | ||
|
|
c4605dfbf0 | ||
|
|
000a215563 | ||
|
|
7b5e4f67b7 | ||
|
|
b9a6f134d8 | ||
|
|
8ec5f76383 | ||
|
|
8abcedd5bd | ||
|
|
ef7a925802 | ||
|
|
36ed7ab38d | ||
|
|
a44fe424bc | ||
|
|
e1325f4c4c | ||
|
|
f243edd33f | ||
|
|
df81b47f57 | ||
|
|
5d1f1f2817 | ||
|
|
1421f888a7 | ||
|
|
3d55ee3e80 | ||
|
|
02567c71ad | ||
|
|
d6f8db264e | ||
|
|
c21bee55a5 | ||
|
|
ad03e256c0 | ||
|
|
441527d168 | ||
|
|
62187932be |
@@ -4,14 +4,17 @@
|
||||
# ==[ Details: Describe what changed and explain why it changed ]======|
|
||||
|
||||
|
||||
# ==[ Footers: Uncomment and edit where applicable ]===================|
|
||||
#
|
||||
# Change log entry (see below for instructions).
|
||||
#[ChangeLog][][]
|
||||
|
||||
# ==[ Footers: Uncomment and edit where applicable ]===================|
|
||||
#
|
||||
# One task per entry. Remember space after colon.
|
||||
#Task-number:
|
||||
#
|
||||
# Solicit reviewers. They still need to use the Gerrit frontend.
|
||||
#Reviewed-by:
|
||||
#
|
||||
# ==[ Please wrap at 72 characters ]===================================|
|
||||
#
|
||||
# Remember to read http://wiki.qt-project.org/Commit_Policy
|
||||
@@ -19,8 +22,7 @@
|
||||
# Change log entry: If this commit adds a significant feature, fixes an
|
||||
# issue or contains a behavior change that is relevant to others,
|
||||
# add a change log entry. It can be multiple lines long and ends with an
|
||||
# empty newline. Try to integrate it into the flow of the commit message
|
||||
# to avoid redundancy.
|
||||
# empty newline.
|
||||
# Use the module name to indicate the area of the change e.g. [QtCore].
|
||||
# Optionally specify a class or subtopic [QtNetwork][QSslSocket].
|
||||
# Other common tags are: [General], [Important Behavior Changes],
|
||||
|
||||
6
.gitmodules
vendored
6
.gitmodules
vendored
@@ -28,6 +28,9 @@
|
||||
[submodule "qtdoc"]
|
||||
path = qtdoc
|
||||
url = ../qtdoc.git
|
||||
[submodule "qlalr"]
|
||||
path = qlalr
|
||||
url = ../qlalr.git
|
||||
[submodule "qtrepotools"]
|
||||
path = qtrepotools
|
||||
url = ../qtrepotools.git
|
||||
@@ -100,6 +103,3 @@
|
||||
[submodule "qtenginio"]
|
||||
path = qtenginio
|
||||
url = ../qtenginio.git
|
||||
[submodule "qtwebsockets"]
|
||||
path = qtwebsockets
|
||||
url = ../qtwebsockets.git
|
||||
|
||||
@@ -200,6 +200,7 @@ my %PROTOCOLS = (
|
||||
my %GERRIT_REPOS = map { $_ => "qt/$_" } qw(
|
||||
qt3d
|
||||
qt5
|
||||
qlalr
|
||||
qtactiveqt
|
||||
qtandroidextras
|
||||
qtbase
|
||||
@@ -230,7 +231,6 @@ my %GERRIT_REPOS = map { $_ => "qt/$_" } qw(
|
||||
qtwayland
|
||||
qtwebkit
|
||||
qtwebkit-examples
|
||||
qtwebsockets
|
||||
qtwinextras
|
||||
qtx11extras
|
||||
qtxmlpatterns
|
||||
@@ -258,7 +258,6 @@ my @DEFAULT_REPOS = qw(
|
||||
qtsvg
|
||||
qttools
|
||||
qttranslations
|
||||
qtwebsockets
|
||||
qtwebkit
|
||||
qtwebkit-examples
|
||||
qtwinextras
|
||||
|
||||
1
qlalr
Submodule
1
qlalr
Submodule
Submodule qlalr added at a803a5c214
8
qt.pro
8
qt.pro
@@ -3,7 +3,6 @@ cache(, super)
|
||||
|
||||
CONFIG += build_pass # hack to disable the .qmake.super auto-add
|
||||
load(qt_build_config)
|
||||
CONFIG -= build_pass # unhack, as it confuses Qt Creator
|
||||
|
||||
TEMPLATE = subdirs
|
||||
|
||||
@@ -54,13 +53,11 @@ defineTest(addModule) {
|
||||
# users responsibility to ensure that all needed dependencies exist, or
|
||||
# it may not build.
|
||||
|
||||
ANDROID_EXTRAS =
|
||||
android: ANDROID_EXTRAS = qtandroidextras
|
||||
|
||||
addModule(qtbase)
|
||||
addModule(qtandroidextras, qtbase)
|
||||
addModule(qtmacextras, qtbase)
|
||||
addModule(qtx11extras, qtbase)
|
||||
addModule(qlalr, qtbase)
|
||||
addModule(qtsvg, qtbase)
|
||||
addModule(qtxmlpatterns, qtbase)
|
||||
addModule(qtdeclarative, qtbase, qtsvg qtxmlpatterns)
|
||||
@@ -73,7 +70,7 @@ addModule(qtjsondb, qtdeclarative)
|
||||
addModule(qtsystems, qtbase, qtdeclarative)
|
||||
addModule(qtlocation, qtbase, qt3d qtsystems qtmultimedia)
|
||||
addModule(qtsensors, qtbase, qtdeclarative)
|
||||
addModule(qtconnectivity, qtbase $$ANDROID_EXTRAS, qtdeclarative)
|
||||
addModule(qtconnectivity, qtbase, qtdeclarative)
|
||||
addModule(qtfeedback, qtdeclarative, qtmultimedia)
|
||||
addModule(qtpim, qtdeclarative, qtjsondb)
|
||||
addModule(qtwebkit, qtdeclarative, qtlocation qtmultimedia qtsensors, WebKit.pro)
|
||||
@@ -87,7 +84,6 @@ addModule(qtdocgallery, qtdeclarative, qtjsondb)
|
||||
!win32:!mac:addModule(qtwayland, qtbase, qtdeclarative)
|
||||
addModule(qtserialport, qtbase)
|
||||
addModule(qtenginio, qtdeclarative)
|
||||
addModule(qtwebsockets, qtbase, qtdeclarative)
|
||||
addModule(qttranslations, qttools)
|
||||
addModule(qtdoc, qtdeclarative)
|
||||
addModule(qtqa, qtbase)
|
||||
|
||||
Submodule qtactiveqt updated: 2e44efa505...cd3e1f5dd2
Submodule qtandroidextras updated: 69f8652622...4c93e932a5
2
qtbase
2
qtbase
Submodule qtbase updated: 45e17d0cc7...313a74cc4a
Submodule qtconnectivity updated: c969ca25b2...3016e7fb6d
Submodule qtdeclarative updated: 7d25db8ff4...f95fdacb3a
2
qtdoc
2
qtdoc
Submodule qtdoc updated: 15c0c98d44...e4e366ef8a
Submodule qtgraphicaleffects updated: 9b1883d2e9...c640a496d6
Submodule qtimageformats updated: 37e34e1f36...d507c358b8
Submodule qtlocation updated: e656c31890...c4d3b333a1
Submodule qtmacextras updated: 63ea1f8b4c...77067ca74e
Submodule qtmultimedia updated: d964388b38...ea9f9788d5
2
qtqa
2
qtqa
Submodule qtqa updated: 5f4a961316...25851ea69e
2
qtquick1
2
qtquick1
Submodule qtquick1 updated: 3eeaf98712...2866c00375
Submodule qtquickcontrols updated: 44e9533361...1d684b38a4
Submodule qtrepotools updated: e3345e6cb1...afd55c79c9
2
qtscript
2
qtscript
Submodule qtscript updated: b95d7d3425...15bb30b0e9
Submodule qtsensors updated: 2b67b50af1...8b501195f6
Submodule qtserialport updated: c2b0416475...97bbe2acd8
2
qtsvg
2
qtsvg
Submodule qtsvg updated: cd0843d4d7...b719b93770
2
qttools
2
qttools
Submodule qttools updated: 2e74382c09...a60aa90f5c
Submodule qttranslations updated: a104c706a4...46718cc2c6
2
qtwebkit
2
qtwebkit
Submodule qtwebkit updated: 6cec10879f...4c86230bfe
Submodule qtwebkit-examples updated: 0a23233f9c...634cddbfef
Submodule qtwebsockets deleted from 2bf36986a1
Submodule qtwinextras updated: 863cb45550...c996740162
Submodule qtx11extras updated: d229decb2d...120c2267e1
Submodule qtxmlpatterns updated: 943be69584...97f266a006
Reference in New Issue
Block a user