View | Details | Raw Unified | Return to bug 272715 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/qtcreator/Makefile (-20 / +7 lines)
Lines 1-5 Link Here
1
PORTNAME=	qtcreator
1
PORTNAME=	qtcreator
2
DISTVERSION=	10.0.2
2
DISTVERSION=	11.0.0
3
CATEGORIES=	devel
3
CATEGORIES=	devel
4
MASTER_SITES=	QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}
4
MASTER_SITES=	QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}
5
DISTNAME=	qt-creator-opensource-src-${DISTVERSION}
5
DISTNAME=	qt-creator-opensource-src-${DISTVERSION}
Lines 28-52 USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} Link Here
28
USE_QT=		5compat base declarative positioning quick3d quicktimeline \
28
USE_QT=		5compat base declarative positioning quick3d quicktimeline \
29
		serialport shadertools sqldriver-sqlite svg tools translations webchannel
29
		serialport shadertools sqldriver-sqlite svg tools translations webchannel
30
30
31
SHEBANG_FILES=	bin/qtcreator.sh \
31
SHEBANG_GLOB=	*.pl *.py *.sh
32
		doc/fixnavi.pl \
32
SHEBANG_FILES=	src/libs/qt-breakpad/qtbreakpadsymbols \
33
		doc/qtcreatordev/examples/aggregation/test.sh \
33
		src/plugins/terminal/tests/* \
34
		scripts/*.pl \
34
		src/plugins/terminal/tests/cursor/* \
35
		scripts/*.py \
35
		tests/manual/distribution/elflint
36
		scripts/*.sh \
36
python_OLD_CMD+="/usr/bin/env python3.10"
37
		share/qtcreator/scripts/openTerminal.py \
38
		share/qtcreator/translations/check-ts.pl \
39
		share/qtcreator/translations/*.py \
40
		src/app/winicons/createicons.sh \
41
		src/libs/glsl/make-parser.sh \
42
		src/libs/qmljs/parser/changeLicense.py \
43
		src/libs/qmljs/parser/gen-parser.sh \
44
		src/libs/qt-breakpad/qtbreakpadsymbols \
45
		src/plugins/perfprofiler/tracepoints.sh \
46
		src/tools/icons/*.sh \
47
		src/tools/icons/*.py \
48
		tests/system/tools/findUnusedObjects.py \
49
		tests/system/tools/objectsToTable.py
50
37
51
# Provide library paths, default llvm first as a hint to the clang code model.
38
# Provide library paths, default llvm first as a hint to the clang code model.
52
CMAKE_ARGS+=	-DCMAKE_PREFIX_PATH:STRING="${LLVM_PREFIX};${PREFIX}"
39
CMAKE_ARGS+=	-DCMAKE_PREFIX_PATH:STRING="${LLVM_PREFIX};${PREFIX}"
(-)b/devel/qtcreator/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1687121578
1
TIMESTAMP = 1689874832
2
SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-10.0.2.tar.xz) = da7fc5e7dc1a80c71c09e245b7d2711eb01ba575e2f99110d04a7ce799926d4e
2
SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-11.0.0.tar.xz) = dbf44f55fb03834d270bedeff695ac4fc02af3ada845f5b9ef982b6b159a1430
3
SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-10.0.2.tar.xz) = 48768836
3
SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-11.0.0.tar.xz) = 49815848
(-)b/devel/qtcreator/files/patch-src_plugins_qmldesigner_CMakeLists.txt (+10 lines)
Added Link Here
1
--- src/plugins/qmldesigner/CMakeLists.txt.orig	2023-06-09 13:41:37 UTC
2
+++ src/plugins/qmldesigner/CMakeLists.txt
3
@@ -8,7 +8,6 @@ if (APPLE)
4
   set(QmlDesignerPluginInstallPrefix "${IDE_PLUGIN_PATH}/QmlDesigner")
5
 endif()
6
 
7
-add_compile_options("$<$<COMPILE_LANG_AND_ID:CXX,Clang>:-Wno-error=maybe-uninitialized>")
8
 add_compile_options("$<$<COMPILE_LANG_AND_ID:CXX,GNU>:-Wno-error=maybe-uninitialized>")
9
 
10
 add_qtc_library(QmlDesignerUtils STATIC
(-)b/devel/qtcreator/files/patch-src_tools_process__stub_main.cpp (+31 lines)
Added Link Here
1
--- src/tools/process_stub/main.cpp.orig	2023-06-08 07:45:07 UTC
2
+++ src/tools/process_stub/main.cpp
3
@@ -22,7 +22,7 @@
4
 #include <unistd.h>
5
 #endif
6
 
7
-#ifdef Q_OS_LINUX
8
+#ifdef Q_OS_UNIX
9
 #include <sys/ptrace.h>
10
 #endif
11
 
12
@@ -211,6 +211,9 @@ void onInferiorStarted()
13
     // In debug mode we use the poll timer to send the pid.
14
     if (!debugMode)
15
         sendPid(inferiorId);
16
+#elif defined(Q_OS_FREEBSD)
17
+    ptrace(PT_DETACH, inferiorId, 0, SIGSTOP);
18
+    sendPid(inferiorId);
19
 #else
20
     ptrace(PTRACE_DETACH, inferiorId, 0, SIGSTOP);
21
     sendPid(inferiorId);
22
@@ -230,6 +233,9 @@ void setupUnixInferior()
23
             // Suspend ourselves ...
24
             raise(SIGSTOP);
25
         });
26
+#elif defined(Q_OS_FREEBSD)
27
+        // PT_TRACE_ME will stop execution of the child process as soon as execve is called.
28
+        inferiorProcess.setChildProcessModifier([] { ptrace(PT_TRACE_ME, 0, 0, 0); });
29
 #else
30
         // PTRACE_TRACEME will stop execution of the child process as soon as execve is called.
31
         inferiorProcess.setChildProcessModifier([] { ptrace(PTRACE_TRACEME, 0, 0, 0); });
(-)b/devel/qtcreator/pkg-plist (-21 / +71 lines)
Lines 39-44 lib/qtcreator/libyaml-cpp.so.%%SHLIB_VER%% Link Here
39
lib/qtcreator/plugins/libAndroid.so
39
lib/qtcreator/plugins/libAndroid.so
40
lib/qtcreator/plugins/libAutoTest.so
40
lib/qtcreator/plugins/libAutoTest.so
41
lib/qtcreator/plugins/libAutotoolsProjectManager.so
41
lib/qtcreator/plugins/libAutotoolsProjectManager.so
42
lib/qtcreator/plugins/libAxivion.so
42
lib/qtcreator/plugins/libBareMetal.so
43
lib/qtcreator/plugins/libBareMetal.so
43
lib/qtcreator/plugins/libBazaar.so
44
lib/qtcreator/plugins/libBazaar.so
44
lib/qtcreator/plugins/libBeautifier.so
45
lib/qtcreator/plugins/libBeautifier.so
Lines 56-61 lib/qtcreator/plugins/libCoco.so Link Here
56
lib/qtcreator/plugins/libCodePaster.so
57
lib/qtcreator/plugins/libCodePaster.so
57
lib/qtcreator/plugins/libCompilationDatabaseProjectManager.so
58
lib/qtcreator/plugins/libCompilationDatabaseProjectManager.so
58
lib/qtcreator/plugins/libConan.so
59
lib/qtcreator/plugins/libConan.so
60
lib/qtcreator/plugins/libCopilot.so
59
lib/qtcreator/plugins/libCore.so
61
lib/qtcreator/plugins/libCore.so
60
lib/qtcreator/plugins/libCppEditor.so
62
lib/qtcreator/plugins/libCppEditor.so
61
lib/qtcreator/plugins/libCppcheck.so
63
lib/qtcreator/plugins/libCppcheck.so
Lines 91-97 lib/qtcreator/plugins/libProjectExplorer.so Link Here
91
lib/qtcreator/plugins/libPython.so
93
lib/qtcreator/plugins/libPython.so
92
lib/qtcreator/plugins/libQbsProjectManager.so
94
lib/qtcreator/plugins/libQbsProjectManager.so
93
lib/qtcreator/plugins/libQmakeProjectManager.so
95
lib/qtcreator/plugins/libQmakeProjectManager.so
94
lib/qtcreator/plugins/libQmlDesigner.so
96
lib/qtcreator/plugins/libQmlDesignerBase.so
95
lib/qtcreator/plugins/libQmlJSEditor.so
97
lib/qtcreator/plugins/libQmlJSEditor.so
96
lib/qtcreator/plugins/libQmlJSTools.so
98
lib/qtcreator/plugins/libQmlJSTools.so
97
lib/qtcreator/plugins/libQmlPreview.so
99
lib/qtcreator/plugins/libQmlPreview.so
Lines 106-125 lib/qtcreator/plugins/libScxmlEditor.so Link Here
106
lib/qtcreator/plugins/libSerialTerminal.so
108
lib/qtcreator/plugins/libSerialTerminal.so
107
lib/qtcreator/plugins/libSilverSearcher.so
109
lib/qtcreator/plugins/libSilverSearcher.so
108
lib/qtcreator/plugins/libSquish.so
110
lib/qtcreator/plugins/libSquish.so
109
lib/qtcreator/plugins/libStudioWelcome.so
110
lib/qtcreator/plugins/libSubversion.so
111
lib/qtcreator/plugins/libSubversion.so
112
lib/qtcreator/plugins/libTerminal.so
111
lib/qtcreator/plugins/libTextEditor.so
113
lib/qtcreator/plugins/libTextEditor.so
112
lib/qtcreator/plugins/libTodo.so
114
lib/qtcreator/plugins/libTodo.so
113
lib/qtcreator/plugins/libUpdateInfo.so
115
lib/qtcreator/plugins/libUpdateInfo.so
114
lib/qtcreator/plugins/libValgrind.so
116
lib/qtcreator/plugins/libValgrind.so
117
lib/qtcreator/plugins/libVcpkg.so
115
lib/qtcreator/plugins/libVcsBase.so
118
lib/qtcreator/plugins/libVcsBase.so
116
lib/qtcreator/plugins/libWebAssembly.so
119
lib/qtcreator/plugins/libWebAssembly.so
117
lib/qtcreator/plugins/libWelcome.so
120
lib/qtcreator/plugins/libWelcome.so
118
lib/qtcreator/plugins/qmldesigner/libStudioPlugin.so
119
lib/qtcreator/plugins/qmldesigner/libassetexporterplugin.so
120
lib/qtcreator/plugins/qmldesigner/libcomponentsplugin.so
121
lib/qtcreator/plugins/qmldesigner/libqmlpreviewplugin.so
122
lib/qtcreator/plugins/qmldesigner/libqtquickplugin.so
123
libexec/qtcreator/buildoutputparser
121
libexec/qtcreator/buildoutputparser
124
libexec/qtcreator/cpaster
122
libexec/qtcreator/cpaster
125
libexec/qtcreator/qml2puppet-%%SHLIB_VER%%
123
libexec/qtcreator/qml2puppet-%%SHLIB_VER%%
Lines 148-153 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
148
%%DATADIR%%/changelog/changes-10.0.0.md
146
%%DATADIR%%/changelog/changes-10.0.0.md
149
%%DATADIR%%/changelog/changes-10.0.1.md
147
%%DATADIR%%/changelog/changes-10.0.1.md
150
%%DATADIR%%/changelog/changes-10.0.2.md
148
%%DATADIR%%/changelog/changes-10.0.2.md
149
%%DATADIR%%/changelog/changes-11.0.0.md
151
%%DATADIR%%/changelog/changes-2.0.0
150
%%DATADIR%%/changelog/changes-2.0.0
152
%%DATADIR%%/changelog/changes-2.0.1
151
%%DATADIR%%/changelog/changes-2.0.1
153
%%DATADIR%%/changelog/changes-2.1.0
152
%%DATADIR%%/changelog/changes-2.1.0
Lines 265-270 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
265
%%DATADIR%%/debugger/gdbtracepoint.py
264
%%DATADIR%%/debugger/gdbtracepoint.py
266
%%DATADIR%%/debugger/libcpp_stdtypes.py
265
%%DATADIR%%/debugger/libcpp_stdtypes.py
267
%%DATADIR%%/debugger/lldbbridge.py
266
%%DATADIR%%/debugger/lldbbridge.py
267
%%DATADIR%%/debugger/loadorder.txt
268
%%DATADIR%%/debugger/misctypes.py
268
%%DATADIR%%/debugger/misctypes.py
269
%%DATADIR%%/debugger/opencvtypes.py
269
%%DATADIR%%/debugger/opencvtypes.py
270
%%DATADIR%%/debugger/pdbbridge.py
270
%%DATADIR%%/debugger/pdbbridge.py
Lines 342-347 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
342
%%DATADIR%%/qml-type-descriptions/qt-labs-gestures.qmltypes
342
%%DATADIR%%/qml-type-descriptions/qt-labs-gestures.qmltypes
343
%%DATADIR%%/qml-type-descriptions/qt-labs-particles.qmltypes
343
%%DATADIR%%/qml-type-descriptions/qt-labs-particles.qmltypes
344
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2-bundle.json
344
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2-bundle.json
345
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2ext-macos-bundle.json
346
%%DATADIR%%/qml-type-descriptions/qt5QtQuick2ext-win-bundle.json
345
%%DATADIR%%/qml-type-descriptions/qtmobility-connectivity.qmltypes
347
%%DATADIR%%/qml-type-descriptions/qtmobility-connectivity.qmltypes
346
%%DATADIR%%/qml-type-descriptions/qtmobility-contacts.qmltypes
348
%%DATADIR%%/qml-type-descriptions/qtmobility-contacts.qmltypes
347
%%DATADIR%%/qml-type-descriptions/qtmobility-feedback.qmltypes
349
%%DATADIR%%/qml-type-descriptions/qtmobility-feedback.qmltypes
Lines 355-360 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
355
%%DATADIR%%/qml-type-descriptions/qtmobility-systeminfo.qmltypes
357
%%DATADIR%%/qml-type-descriptions/qtmobility-systeminfo.qmltypes
356
%%DATADIR%%/qml-type-descriptions/qtmultimediakit.qmltypes
358
%%DATADIR%%/qml-type-descriptions/qtmultimediakit.qmltypes
357
%%DATADIR%%/qml-type-descriptions/qtwebkit.qmltypes
359
%%DATADIR%%/qml-type-descriptions/qtwebkit.qmltypes
360
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetDelegate.qml
361
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/Assets.qml
362
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetsContextMenu.qml
363
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/AssetsView.qml
364
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ConfirmDeleteFilesDialog.qml
365
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ConfirmDeleteFolderDialog.qml
366
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/ErrorDialog.qml
367
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/NewEffectDialog.qml
368
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/NewFolderDialog.qml
369
%%DATADIR%%/qmldesigner/assetsLibraryQmlSources/RenameFolderDialog.qml
358
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibrary.qml
370
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibrary.qml
359
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterial.qml
371
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterial.qml
360
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterialContextMenu.qml
372
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryMaterialContextMenu.qml
Lines 364-385 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
364
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml
376
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml
365
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTextureContextMenu.qml
377
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTextureContextMenu.qml
366
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexturesView.qml
378
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/ContentLibraryTexturesView.qml
379
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/DownloadPane.qml
380
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/TextureProgressBar.qml
367
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/UnimportBundleMaterialDialog.qml
381
%%DATADIR%%/qmldesigner/contentLibraryQmlSource/UnimportBundleMaterialDialog.qml
368
%%DATADIR%%/qmldesigner/designericons.json
382
%%DATADIR%%/qmldesigner/designericons.json
383
%%DATADIR%%/qmldesigner/edit3dQmlSource/BakeLightsProgressDialog.qml
384
%%DATADIR%%/qmldesigner/edit3dQmlSource/BakeLightsSetupDialog.qml
385
%%DATADIR%%/qmldesigner/feedback/FeedbackPopup.qml
386
%%DATADIR%%/qmldesigner/feedback/star_empty.png
387
%%DATADIR%%/qmldesigner/feedback/star_empty@2x.png
388
%%DATADIR%%/qmldesigner/feedback/star_filled.png
389
%%DATADIR%%/qmldesigner/feedback/star_filled@2x.png
369
%%DATADIR%%/qmldesigner/formatconfiguration.json
390
%%DATADIR%%/qmldesigner/formatconfiguration.json
391
%%DATADIR%%/qmldesigner/insight/Main.qml
370
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddModuleView.qml
392
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AddModuleView.qml
371
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/Assets.qml
372
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AssetsContextMenu.qml
373
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AssetDelegate.qml
374
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/AssetsView.qml
375
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ConfirmDeleteFilesDialog.qml
376
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ConfirmDeleteFolderDialog.qml
377
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ErrorDialog.qml
378
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
393
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
379
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemsView.qml
394
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/ItemsView.qml
380
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/NewEffectDialog.qml
381
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/NewFolderDialog.qml
382
%%DATADIR%%/qmldesigner/itemLibraryQmlSources/RenameFolderDialog.qml
383
%%DATADIR%%/qmldesigner/landingpage/content/App.qml
395
%%DATADIR%%/qmldesigner/landingpage/content/App.qml
384
%%DATADIR%%/qmldesigner/landingpage/content/CustomCheckBox.ui.qml
396
%%DATADIR%%/qmldesigner/landingpage/content/CustomCheckBox.ui.qml
385
%%DATADIR%%/qmldesigner/landingpage/content/InstallQdsStatusBlock.ui.qml
397
%%DATADIR%%/qmldesigner/landingpage/content/InstallQdsStatusBlock.ui.qml
Lines 402-407 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
402
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/ChooseMaterialProperty.qml
414
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/ChooseMaterialProperty.qml
403
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml
415
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowser.qml
404
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowserContextMenu.qml
416
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowserContextMenu.qml
417
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialBrowserItemName.qml
405
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialItem.qml
418
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/MaterialItem.qml
406
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureBrowserContextMenu.qml
419
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureBrowserContextMenu.qml
407
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureItem.qml
420
%%DATADIR%%/qmldesigner/materialBrowserQmlSource/TextureItem.qml
Lines 575-588 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
575
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml
588
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/StateSpecifics.qml
576
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
589
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
577
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
590
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml
578
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSection.qml
579
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
591
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
580
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml
592
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/TextSpecifics.qml
581
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml
593
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/Window/WindowSpecifics.qml
582
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/WindowSpecifics.qml
594
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/WindowSpecifics.qml
583
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
595
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
584
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject
596
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject
597
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BakedLightmapSection.qml
598
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/BakedLightmapSpecifics.qml
585
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DPane.qml
599
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DPane.qml
600
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AmbientSoundSection.qml
601
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AmbientSoundSpecifics.qml
602
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioEngineSection.qml
603
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioEngineSpecifics.qml
604
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioListenerSpecifics.qml
605
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioRoomSection.qml
606
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/AudioRoomSpecifics.qml
607
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/NodeSection.qml
608
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/SpatialSoundSection.qml
609
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/QtQuick3D/SpatialAudio/SpatialSoundSpecifics.qml
586
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/RegExpValidator.qml
610
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/RegExpValidator.qml
587
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml
611
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml
588
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml
612
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml
Lines 656-661 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
656
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml
680
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml
657
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
681
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
658
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml
682
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml
683
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextInputSection.qml
659
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml
684
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml
660
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml
685
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml
661
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml
686
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml
Lines 726-737 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
726
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextArea.qml
751
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextArea.qml
727
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextField.qml
752
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TextField.qml
728
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ToolTip.qml
753
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ToolTip.qml
754
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml
729
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TranslationIndicator.qml
755
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TranslationIndicator.qml
730
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/VerticalScrollBar.qml
756
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/VerticalScrollBar.qml
731
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/qmldir
757
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioControls/qmldir
732
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Constants.qml
758
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Constants.qml
759
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ControlStyle.qml
760
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/DefaultStyle.qml
733
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml
761
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/InternalConstants.qml
762
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/PrimaryButtonStyle.qml
763
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/SearchControlStyle.qml
764
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatesControlStyle.qml
765
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatusBarButtonStyle.qml
766
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/StatusBarControlStyle.qml
767
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ToolbarStyle.qml
768
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/TopToolbarButtonStyle.qml
734
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Values.qml
769
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Values.qml
770
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ViewBarButtonStyle.qml
771
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/ViewBarControlStyle.qml
735
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf
772
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf
736
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/qmldir
773
%%DATADIR%%/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/qmldir
737
%%DATADIR%%/qmldesigner/qt4mcu/metadata.qml
774
%%DATADIR%%/qmldesigner/qt4mcu/metadata.qml
Lines 742-750 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
742
%%DATADIR%%/qmldesigner/qt4mcu/qul-20.qml
779
%%DATADIR%%/qmldesigner/qt4mcu/qul-20.qml
743
%%DATADIR%%/qmldesigner/qt4mcu/qul-21.qml
780
%%DATADIR%%/qmldesigner/qt4mcu/qul-21.qml
744
%%DATADIR%%/qmldesigner/qt4mcu/qul-22.qml
781
%%DATADIR%%/qmldesigner/qt4mcu/qul-22.qml
782
%%DATADIR%%/qmldesigner/qt4mcu/qul-23.qml
783
%%DATADIR%%/qmldesigner/qt4mcu/qul-24.qml
745
%%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesDelegate.qml
784
%%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesDelegate.qml
746
%%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesList.qml
785
%%DATADIR%%/qmldesigner/statesEditorQmlSources/StatesList.qml
747
%%DATADIR%%/qmldesigner/statesEditorQmlSources/images/checkers.png
786
%%DATADIR%%/qmldesigner/statesEditorQmlSources/images/checkers.png
787
%%DATADIR%%/qmldesigner/statusbar/Main.qml
748
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button.png
788
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button.png
749
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button@2.png
789
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/custom_button@2.png
750
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/file.qml.tpl
790
%%DATADIR%%/qmldesigner/studio_templates/files/custombutton/file.qml.tpl
Lines 827-833 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
827
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/wizard.json
867
%%DATADIR%%/qmldesigner/studio_templates/projects/application-3d/wizard.json
828
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/CMakeLists.txt
868
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/CMakeLists.txt
829
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Constants.qml.tpl
869
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Constants.qml.tpl
830
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/DirectoryFontLoader.qml.tpl
831
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Button.qml
870
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/Button.qml
832
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/CheckBox.qml
871
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/CheckBox.qml
833
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/DefaultStyle.qml
872
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/DefaultStyle.qml
Lines 873-878 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
873
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-o.png
912
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/images/switch-o.png
874
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/qmldir
913
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/MCUDefaultStyle/qmldir
875
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Screen01.ui.qml.tpl
914
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/Screen01.ui.qml.tpl
915
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/constants_module.qmlproject.tpl
876
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank.png
916
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank.png
877
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank@2.png
917
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/desktop_blank@2.png
878
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/detailsPage.qml
918
%%DATADIR%%/qmldesigner/studio_templates/projects/application-mcu/detailsPage.qml
Lines 897-902 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
897
%%DATADIR%%/qmldesigner/studio_templates/projects/common/fonts.txt
937
%%DATADIR%%/qmldesigner/studio_templates/projects/common/fonts.txt
898
%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_components_plugins.h.tpl
938
%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_components_plugins.h.tpl
899
%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_plugins.h.tpl
939
%%DATADIR%%/qmldesigner/studio_templates/projects/common/import_qml_plugins.h.tpl
940
%%DATADIR%%/qmldesigner/studio_templates/projects/common/insight.tpl
900
%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.cpp.tpl
941
%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.cpp.tpl
901
%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.qml
942
%%DATADIR%%/qmldesigner/studio_templates/projects/common/main.qml
902
%%DATADIR%%/qmldesigner/studio_templates/projects/common/qmlcomponents.tpl
943
%%DATADIR%%/qmldesigner/studio_templates/projects/common/qmlcomponents.tpl
Lines 943-948 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
943
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorPane.qml
984
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorPane.qml
944
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorToolBar.qml
985
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorToolBar.qml
945
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorTopSection.qml
986
%%DATADIR%%/qmldesigner/textureEditorQmlSource/TextureEditorTopSection.qml
987
%%DATADIR%%/qmldesigner/toolbar/CrumbleBar.qml
988
%%DATADIR%%/qmldesigner/toolbar/CrumbleBread.qml
989
%%DATADIR%%/qmldesigner/toolbar/Main.qml
990
%%DATADIR%%/qmldesigner/toolbar/ToolbarButton.qml
991
%%DATADIR%%/qmldesigner/workspacePresets/Advanced-3D.wrk
946
%%DATADIR%%/qmldesigner/workspacePresets/Animation-2D.wrk
992
%%DATADIR%%/qmldesigner/workspacePresets/Animation-2D.wrk
947
%%DATADIR%%/qmldesigner/workspacePresets/Animation-3D.wrk
993
%%DATADIR%%/qmldesigner/workspacePresets/Animation-3D.wrk
948
%%DATADIR%%/qmldesigner/workspacePresets/Basic.wrk
994
%%DATADIR%%/qmldesigner/workspacePresets/Basic.wrk
Lines 951-956 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
951
%%DATADIR%%/qmldesigner/workspacePresets/Essentials.wrk
997
%%DATADIR%%/qmldesigner/workspacePresets/Essentials.wrk
952
%%DATADIR%%/qmldesigner/workspacePresets/UX-Design.wrk
998
%%DATADIR%%/qmldesigner/workspacePresets/UX-Design.wrk
953
%%DATADIR%%/qmldesigner/workspacePresets/Views-All.wrk
999
%%DATADIR%%/qmldesigner/workspacePresets/Views-All.wrk
1000
%%DATADIR%%/qmldesigner/workspacePresets/order.json
954
%%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png
1001
%%DATADIR%%/qmlicons/Qt/16x16/BorderImage.png
955
%%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png
1002
%%DATADIR%%/qmlicons/Qt/16x16/BusyIndicator.png
956
%%DATADIR%%/qmlicons/Qt/16x16/Button.png
1003
%%DATADIR%%/qmlicons/Qt/16x16/Button.png
Lines 1044-1049 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
1044
%%DATADIR%%/templates/wizards/autotest/files/tst_main.cpp
1091
%%DATADIR%%/templates/wizards/autotest/files/tst_main.cpp
1045
%%DATADIR%%/templates/wizards/autotest/files/tst_qml.tmpl
1092
%%DATADIR%%/templates/wizards/autotest/files/tst_qml.tmpl
1046
%%DATADIR%%/templates/wizards/autotest/files/tst_src.cpp
1093
%%DATADIR%%/templates/wizards/autotest/files/tst_src.cpp
1094
%%DATADIR%%/templates/wizards/autotest/files/tst_src_boost.cpp
1047
%%DATADIR%%/templates/wizards/autotest/files/tst_src_gt.cpp
1095
%%DATADIR%%/templates/wizards/autotest/files/tst_src_gt.cpp
1048
%%DATADIR%%/templates/wizards/autotest/wizard.json
1096
%%DATADIR%%/templates/wizards/autotest/wizard.json
1049
%%DATADIR%%/templates/wizards/classes/cpp/file.cpp
1097
%%DATADIR%%/templates/wizards/classes/cpp/file.cpp
Lines 1079-1084 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
1079
%%DATADIR%%/templates/wizards/files/java/wizard.json
1127
%%DATADIR%%/templates/wizards/files/java/wizard.json
1080
%%DATADIR%%/templates/wizards/files/js/file.js
1128
%%DATADIR%%/templates/wizards/files/js/file.js
1081
%%DATADIR%%/templates/wizards/files/js/wizard.json
1129
%%DATADIR%%/templates/wizards/files/js/wizard.json
1130
%%DATADIR%%/templates/wizards/files/markdown/file.md
1131
%%DATADIR%%/templates/wizards/files/markdown/wizard.json
1082
%%DATADIR%%/templates/wizards/files/modeling/model/file.qmodel
1132
%%DATADIR%%/templates/wizards/files/modeling/model/file.qmodel
1083
%%DATADIR%%/templates/wizards/files/modeling/model/wizard.json
1133
%%DATADIR%%/templates/wizards/files/modeling/model/wizard.json
1084
%%DATADIR%%/templates/wizards/files/modeling/scratch/file.qmodel
1134
%%DATADIR%%/templates/wizards/files/modeling/scratch/file.qmodel
Lines 1099-1104 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
1099
%%DATADIR%%/templates/wizards/files/scratch/wizard.json
1149
%%DATADIR%%/templates/wizards/files/scratch/wizard.json
1100
%%DATADIR%%/templates/wizards/files/scxml/file.scxml
1150
%%DATADIR%%/templates/wizards/files/scxml/file.scxml
1101
%%DATADIR%%/templates/wizards/files/scxml/wizard.json
1151
%%DATADIR%%/templates/wizards/files/scxml/wizard.json
1152
%%DATADIR%%/templates/wizards/files/testing/file.cpp
1153
%%DATADIR%%/templates/wizards/files/testing/wizard.json
1102
%%DATADIR%%/templates/wizards/files/text/file.txt
1154
%%DATADIR%%/templates/wizards/files/text/file.txt
1103
%%DATADIR%%/templates/wizards/files/text/wizard.json
1155
%%DATADIR%%/templates/wizards/files/text/wizard.json
1104
%%DATADIR%%/templates/wizards/global/consoleapplication.png
1156
%%DATADIR%%/templates/wizards/global/consoleapplication.png
Lines 1191-1197 share/metainfo/org.qt-project.qtcreator.appdata.xml Link Here
1191
%%DATADIR%%/templates/wizards/projects/qtquickapplication/icon@2x.png
1243
%%DATADIR%%/templates/wizards/projects/qtquickapplication/icon@2x.png
1192
%%DATADIR%%/templates/wizards/projects/qtquickapplication/main.cpp
1244
%%DATADIR%%/templates/wizards/projects/qtquickapplication/main.cpp
1193
%%DATADIR%%/templates/wizards/projects/qtquickapplication/qtquickcontrols2.conf
1245
%%DATADIR%%/templates/wizards/projects/qtquickapplication/qtquickcontrols2.conf
1194
%%DATADIR%%/templates/wizards/projects/qtquickapplication/tmpl.qbs
1195
%%DATADIR%%/templates/wizards/projects/qtquickapplication/wizard.json
1246
%%DATADIR%%/templates/wizards/projects/qtquickapplication/wizard.json
1196
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.6.x.txt
1247
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.6.x.txt
1197
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.txt
1248
%%DATADIR%%/templates/wizards/projects/qtquickapplication_compat/CMakeLists.txt
1198
- 

Return to bug 272715