forked from qt-creator/qt-creator
Build: Change plugin json.in files to CMake style
They were still using variables in qmake style. Directly use CMake variables in the json.in files and remove the no longer needed escaping of quotes. Adds a fatal message if it detects the old style in a .json.in file for easier porting. Change-Id: I8de88d8db2da55781f0e9d72eda03f943723188e Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
@@ -418,23 +418,20 @@ function(add_qtc_plugin target_name)
|
|||||||
)
|
)
|
||||||
string(APPEND _arg_DEPENDENCY_STRING "\n ]")
|
string(APPEND _arg_DEPENDENCY_STRING "\n ]")
|
||||||
|
|
||||||
set(IDE_PLUGIN_DEPENDENCY_STRING ${_arg_DEPENDENCY_STRING})
|
set(IDE_PLUGIN_DEPENDENCIES ${_arg_DEPENDENCY_STRING})
|
||||||
|
|
||||||
### Configure plugin.json file:
|
### Configure plugin.json file:
|
||||||
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.json.in")
|
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${name}.json.in")
|
||||||
list(APPEND _arg_SOURCES ${name}.json.in)
|
list(APPEND _arg_SOURCES ${name}.json.in)
|
||||||
file(READ "${name}.json.in" plugin_json_in)
|
file(READ "${name}.json.in" plugin_json_in)
|
||||||
string(REPLACE "\\\"" "\"" plugin_json_in ${plugin_json_in})
|
if(plugin_json_in MATCHES "\\$\\$dependencyList")
|
||||||
string(REPLACE "\\'" "'" plugin_json_in ${plugin_json_in})
|
message(FATAL_ERROR "Found $$dependencyList in ${name}.json.in. "
|
||||||
string(REPLACE "$$QTCREATOR_VERSION" "\${IDE_VERSION}" plugin_json_in ${plugin_json_in})
|
"This is no longer supported. "
|
||||||
string(REPLACE "$$QTCREATOR_COMPAT_VERSION" "\${IDE_VERSION_COMPAT}" plugin_json_in ${plugin_json_in})
|
"Use \${IDE_PLUGIN_DEPENDENCIES}, \${IDE_VERSION} "
|
||||||
string(REPLACE "$$QTCREATOR_COPYRIGHT_YEAR" "\${IDE_COPYRIGHT_YEAR}" plugin_json_in ${plugin_json_in})
|
"and other CMake variables directly. "
|
||||||
string(REPLACE "$$QTC_PLUGIN_REVISION" "\${QTC_PLUGIN_REVISION}" plugin_json_in ${plugin_json_in})
|
"Also remove escaping of quotes.")
|
||||||
string(REPLACE "$$dependencyList" "\${IDE_PLUGIN_DEPENDENCY_STRING}" plugin_json_in ${plugin_json_in})
|
endif()
|
||||||
string(CONFIGURE "${plugin_json_in}" plugin_json)
|
configure_file(${name}.json.in "${CMAKE_CURRENT_BINARY_DIR}/${name}.json")
|
||||||
file(GENERATE
|
|
||||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.json"
|
|
||||||
CONTENT "${plugin_json}")
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (QTC_STATIC_BUILD)
|
if (QTC_STATIC_BUILD)
|
||||||
|
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
//! [1]
|
//! [1]
|
||||||
\"Name\" : \"Example\",
|
"Name" : "Example",
|
||||||
\"Version\" : \"0.0.1\",
|
"Version" : "0.0.1",
|
||||||
\"CompatVersion\" : \"0.0.1\",
|
"CompatVersion" : "0.0.1",
|
||||||
//! [1]
|
//! [1]
|
||||||
//! [2]
|
//! [2]
|
||||||
\"Vendor\" : \"MyCompany\",
|
"Vendor" : "MyCompany",
|
||||||
\"Copyright\" : \"(C) MyCompany\",
|
"Copyright" : "(C) MyCompany",
|
||||||
\"License\" : \"Put short license information here\",
|
"License" : "Put short license information here",
|
||||||
\"Description\" : \"Put a short description of your plugin here\",
|
"Description" : "Put a short description of your plugin here",
|
||||||
\"Url\" : \"https://www.mycompany.com\",
|
"Url" : "https://www.mycompany.com",
|
||||||
//! [2]
|
//! [2]
|
||||||
//! [3]
|
//! [3]
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
//! [3]
|
//! [3]
|
||||||
}
|
}
|
||||||
|
@@ -254,7 +254,7 @@
|
|||||||
|
|
||||||
\snippet exampleplugin/Example.json.in 3
|
\snippet exampleplugin/Example.json.in 3
|
||||||
|
|
||||||
The \c {$$dependencyList} variable is automatically replaced by the
|
The \c {IDE_PLUGIN_DEPENDENCIES} variable is automatically replaced by the
|
||||||
dependency information in \c {QTC_PLUGIN_DEPENDS} and
|
dependency information in \c {QTC_PLUGIN_DEPENDS} and
|
||||||
\c {QTC_PLUGIN_RECOMMENDS} from your plugin's \c {.pro} file.
|
\c {QTC_PLUGIN_RECOMMENDS} from your plugin's \c {.pro} file.
|
||||||
|
|
||||||
|
@@ -72,17 +72,15 @@ Module {
|
|||||||
var vars = pluginJsonReplacements || {};
|
var vars = pluginJsonReplacements || {};
|
||||||
var inf = new TextFile(input.filePath);
|
var inf = new TextFile(input.filePath);
|
||||||
var all = inf.readAll();
|
var all = inf.readAll();
|
||||||
// replace quoted quotes
|
|
||||||
all = all.replace(/\\\"/g, '"');
|
|
||||||
// replace config vars
|
// replace config vars
|
||||||
var qtcVersion = product.moduleProperty("qtc", "qtcreator_version");
|
var qtcVersion = product.moduleProperty("qtc", "qtcreator_version");
|
||||||
vars['QTCREATOR_VERSION'] = qtcVersion;
|
vars['IDE_VERSION'] = qtcVersion;
|
||||||
vars['QTCREATOR_COMPAT_VERSION']
|
vars['IDE_VERSION_COMPAT']
|
||||||
= product.moduleProperty("qtc", "qtcreator_compat_version");
|
= product.moduleProperty("qtc", "qtcreator_compat_version");
|
||||||
vars['IDE_VERSION_MAJOR'] = product.moduleProperty("qtc", "ide_version_major");
|
vars['IDE_VERSION_MAJOR'] = product.moduleProperty("qtc", "ide_version_major");
|
||||||
vars['IDE_VERSION_MINOR'] = product.moduleProperty("qtc", "ide_version_minor");
|
vars['IDE_VERSION_MINOR'] = product.moduleProperty("qtc", "ide_version_minor");
|
||||||
vars['IDE_VERSION_RELEASE'] = product.moduleProperty("qtc", "ide_version_release");
|
vars['IDE_VERSION_RELEASE'] = product.moduleProperty("qtc", "ide_version_release");
|
||||||
vars['QTCREATOR_COPYRIGHT_YEAR']
|
vars['IDE_COPYRIGHT_YEAR']
|
||||||
= product.moduleProperty("qtc", "qtcreator_copyright_year")
|
= product.moduleProperty("qtc", "qtcreator_copyright_year")
|
||||||
if (!vars['QTC_PLUGIN_REVISION'])
|
if (!vars['QTC_PLUGIN_REVISION'])
|
||||||
vars['QTC_PLUGIN_REVISION'] = product.vcs ? (product.vcs.repoState || "") : "";
|
vars['QTC_PLUGIN_REVISION'] = product.vcs ? (product.vcs.repoState || "") : "";
|
||||||
@@ -97,9 +95,9 @@ Module {
|
|||||||
deplist.push(" { \"Name\" : \"" + plugin_test_depends[i] + "\", \"Version\" : \"" + qtcVersion + "\", \"Type\" : \"test\" }");
|
deplist.push(" { \"Name\" : \"" + plugin_test_depends[i] + "\", \"Version\" : \"" + qtcVersion + "\", \"Type\" : \"test\" }");
|
||||||
}
|
}
|
||||||
deplist = deplist.join(",\n")
|
deplist = deplist.join(",\n")
|
||||||
vars['dependencyList'] = "\"Dependencies\" : [\n" + deplist + "\n ]";
|
vars['IDE_PLUGIN_DEPENDENCIES'] = "\"Dependencies\" : [\n" + deplist + "\n ]";
|
||||||
for (i in vars) {
|
for (i in vars) {
|
||||||
all = all.replace(new RegExp('\\\$\\\$' + i + '(?!\w)', 'g'), vars[i]);
|
all = all.replace(new RegExp('\\\$\\{' + i + '(?!\w)\\}', 'g'), vars[i]);
|
||||||
}
|
}
|
||||||
var file = new TextFile(output.filePath, TextFile.WriteOnly);
|
var file = new TextFile(output.filePath, TextFile.WriteOnly);
|
||||||
file.truncate();
|
file.truncate();
|
||||||
|
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
\\"Name\\" : \\"%{PluginName}\\",
|
\"Name\" : \"%{PluginName}\",
|
||||||
\\"Version\\" : \\"0.0.1\\",
|
\"Version\" : \"0.0.1\",
|
||||||
\\"CompatVersion\\" : \\"0.0.1\\",
|
\"CompatVersion\" : \"0.0.1\",
|
||||||
\\"Vendor\\" : \\"%{VendorName}\\",
|
\"Vendor\" : \"%{VendorName}\",
|
||||||
\\"Copyright\\" : \\"%{Copyright}\\",
|
\"Copyright\" : \"%{Copyright}\",
|
||||||
\\"License\\" : \\"%{License}\\",
|
\"License\" : \"%{License}\",
|
||||||
\\"Description\\" : \\"%{Description}\\",
|
\"Description\" : \"%{Description}\",
|
||||||
\\"Url\\" : \\"%{Url}\\",
|
\"Url\" : \"%{Url}\",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Android\",
|
"Name" : "Android",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"KDE Necessitas\",
|
"Vendor" : "KDE Necessitas",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Support for deployment to and execution on Android Devices.\",
|
"Description" : "Support for deployment to and execution on Android Devices.",
|
||||||
\"Url\" : \"http://necessitas.kde.org\",
|
"Url" : "http://necessitas.kde.org",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/vnd.google.android.android_manifest\'>\",
|
" <mime-type type='application/vnd.google.android.android_manifest'>",
|
||||||
\" <comment>Android manifest file</comment>\",
|
" <comment>Android manifest file</comment>",
|
||||||
\" <sub-class-of type=\'application/xml\'/>\",
|
" <sub-class-of type='application/xml'/>",
|
||||||
\" <glob pattern=\'AndroidManifest.xml\'/>\",
|
" <glob pattern='AndroidManifest.xml'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"AutoTest\",
|
"Name" : "AutoTest",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Auto Test plugin.\",
|
"Description" : "Auto Test plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"AutotoolsProjectManager\",
|
"Name" : "AutotoolsProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"Openismus GmbH\",
|
"Vendor" : "Openismus GmbH",
|
||||||
\"Copyright\" : \"(C) 2016 Openismus GmbH, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Openismus GmbH, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Autotools project integration.\",
|
"Description" : "Autotools project integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Axivion\",
|
"Name" : "Axivion",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Revision\" : \"$$QTC_PLUGIN_REVISION\",
|
"Revision" : "${QTC_PLUGIN_REVISION}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"Integration of the axivion dashboard.\",
|
"Description" : "Integration of the axivion dashboard.",
|
||||||
\"Url\" : \"https://www.qt.io\",
|
"Url" : "https://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"BareMetal\",
|
"Name" : "BareMetal",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"Tim Sander\",
|
"Vendor" : "Tim Sander",
|
||||||
\"Copyright\" : \"(C) 2016 Tim Sander, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Tim Sander, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"This plugin adds a target for bare metal development.\",
|
"Description" : "This plugin adds a target for bare metal development.",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Bazaar\",
|
"Name" : "Bazaar",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Hugues Delorme\",
|
"Vendor" : "Hugues Delorme",
|
||||||
\"Copyright\" : \"(C) 2016 Hugues Delorme, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Hugues Delorme, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Bazaar integration.\",
|
"Description" : "Bazaar integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Beautifier\",
|
"Name" : "Beautifier",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"Lorenz Haas\",
|
"Vendor" : "Lorenz Haas",
|
||||||
\"Copyright\" : \"(C) 2017 Lorenz Haas, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2017 Lorenz Haas, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"C++\",
|
"Category" : "C++",
|
||||||
\"Description\" : \"Format source files with the help of beautifiers like AStyle, uncrustify or clang-format.\",
|
"Description" : "Format source files with the help of beautifiers like AStyle, uncrustify or clang-format.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"BinEditor\",
|
"Name" : "BinEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Creator\",
|
"Category" : "Qt Creator",
|
||||||
\"Description\" : \"Binary editor component.\",
|
"Description" : "Binary editor component.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Bookmarks\",
|
"Name" : "Bookmarks",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"Bookmarks in text editors.\",
|
"Description" : "Bookmarks in text editors.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Boot2Qt\",
|
"Name" : "Boot2Qt",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
|
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Support for the Boot2Qt Device access using the Qt Debug Bridge.\",
|
"Description" : "Support for the Boot2Qt Device access using the Qt Debug Bridge.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ClangCodeModel\",
|
"Name" : "ClangCodeModel",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"C++\",
|
"Category" : "C++",
|
||||||
\"Description\" : \"Clang Code Model plugin.\",
|
"Description" : "Clang Code Model plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ClangFormat\",
|
"Name" : "ClangFormat",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"C++\",
|
"Category" : "C++",
|
||||||
\"Description\" : \"clang-format indentation plugin.\",
|
"Description" : "clang-format indentation plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ClangTools\",
|
"Name" : "ClangTools",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company. For licensing terms and conditions see https://www.qt.io/terms-conditions. For further information use the contact form at https://www.qt.io/contact-us.\",
|
"Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company. For licensing terms and conditions see https://www.qt.io/terms-conditions. For further information use the contact form at https://www.qt.io/contact-us.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"ClangTools Plugin.\",
|
"Description" : "ClangTools Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ClassView\",
|
"Name" : "ClassView",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) 2016 Denis Mingulov, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Denis Mingulov, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"C++\",
|
"Category" : "C++",
|
||||||
\"Description\" : \"Class View component.\",
|
"Description" : "Class View component.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,31 +1,31 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ClearCase\",
|
"Name" : "ClearCase",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Platform\" : \"^(Linux|Windows)\",
|
"Platform" : "^(Linux|Windows)",
|
||||||
\"Vendor\" : \"AudioCodes\",
|
"Vendor" : "AudioCodes",
|
||||||
\"Copyright\" : \"(C) 2016 AudioCodes Ltd., (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 AudioCodes Ltd., (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"ClearCase integration.\",
|
"Description" : "ClearCase integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/vnd.audc.text.clearcase.submit\'>\",
|
" <mime-type type='application/vnd.audc.text.clearcase.submit'>",
|
||||||
\" <comment>ClearCase submit template</comment>\",
|
" <comment>ClearCase submit template</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,35 +1,35 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CMakeProjectManager\",
|
"Name" : "CMakeProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"CMake support.\",
|
"Description" : "CMake support.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-cmake\'>\",
|
" <mime-type type='text/x-cmake'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>CMake Project file</comment>\",
|
" <comment>CMake Project file</comment>",
|
||||||
\" <glob pattern=\'*.cmake\'/>\",
|
" <glob pattern='*.cmake'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/x-cmake-project\'>\",
|
" <mime-type type='text/x-cmake-project'>",
|
||||||
\" <sub-class-of type=\'text/x-cmake\'/>\",
|
" <sub-class-of type='text/x-cmake'/>",
|
||||||
\" <comment>CMake Project file</comment>\",
|
" <comment>CMake Project file</comment>",
|
||||||
\" <glob pattern=\'CMakeLists.txt\'/>\",
|
" <glob pattern='CMakeLists.txt'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Coco\",
|
"Name" : "Coco",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Squish Coco support. Squish Coco is a code coverage tool for Tcl, QML, C# and C/C++.\",
|
"Description" : "Squish Coco support. Squish Coco is a code coverage tool for Tcl, QML, C# and C/C++.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CompilationDatabaseProjectManager\",
|
"Name" : "CompilationDatabaseProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Compilation Database project support.\",
|
"Description" : "Compilation Database project support.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-compilation-database-project\'>\",
|
" <mime-type type='text/x-compilation-database-project'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Compilation Database file</comment>\",
|
" <comment>Compilation Database file</comment>",
|
||||||
\" <glob pattern=\'compile_commands.json\' weight=\'100\'/>\",
|
" <glob pattern='compile_commands.json' weight='100'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Conan\",
|
"Name" : "Conan",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Jochen Seemann\",
|
"Vendor" : "Jochen Seemann",
|
||||||
\"Copyright\" : \"(C) 2018 Jochen Seemann, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2018 Jochen Seemann, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Description\" : \"Conan integration.\",
|
"Description" : "Conan integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Copilot\",
|
"Name" : "Copilot",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Copilot support\",
|
"Description" : "Copilot support",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,44 +1,44 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Core\",
|
"Name" : "Core",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Required\" : true,
|
"Required" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"The core plugin for the Qt IDE.\",
|
"Description" : "The core plugin for the Qt IDE.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-color\",
|
"Name" : "-color",
|
||||||
\"Parameter\" : \"color\",
|
"Parameter" : "color",
|
||||||
\"Description\" : \"Override selected UI color\"
|
"Description" : "Override selected UI color"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-theme\",
|
"Name" : "-theme",
|
||||||
\"Parameter\" : \"default|dark\",
|
"Parameter" : "default|dark",
|
||||||
\"Description\" : \"Choose a built-in theme or pass a .creatortheme file\"
|
"Description" : "Choose a built-in theme or pass a .creatortheme file"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-presentationMode\",
|
"Name" : "-presentationMode",
|
||||||
\"Description\" : \"Enable presentation mode with pop-ups for key combos\"
|
"Description" : "Enable presentation mode with pop-ups for key combos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-lastsession\",
|
"Name" : "-lastsession",
|
||||||
\"Description\" : \"Restore the last session\"
|
"Description" : "Restore the last session"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"<session>\",
|
"Name" : "<session>",
|
||||||
\"Description\" : \"Restore a saved session\"
|
"Description" : "Restore a saved session"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CodePaster\",
|
"Name" : "CodePaster",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Codepaster plugin for pushing/fetching diff from server.\",
|
"Description" : "Codepaster plugin for pushing/fetching diff from server.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Cppcheck\",
|
"Name" : "Cppcheck",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"Sergey Morozov\",
|
"Vendor" : "Sergey Morozov",
|
||||||
\"Copyright\" : \"(C) 2018 Sergey Morozov, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2018 Sergey Morozov, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company. For licensing terms and conditions see https://www.qt.io/terms-conditions. For further information use the contact form at https://www.qt.io/contact-us.\",
|
"Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company. For licensing terms and conditions see https://www.qt.io/terms-conditions. For further information use the contact form at https://www.qt.io/contact-us.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"Cppcheck static analyzer tool integration. See http://cppcheck.sourceforge.net.\",
|
"Description" : "Cppcheck static analyzer tool integration. See http://cppcheck.sourceforge.net.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,125 +1,125 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CppEditor\",
|
"Name" : "CppEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"C++\",
|
"Category" : "C++",
|
||||||
\"Description\" : \"C/C++ editor component.\",
|
"Description" : "C/C++ editor component.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\' encoding=\'UTF-8\'?>\",
|
"<?xml version='1.0' encoding='UTF-8'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-csrc\'>\",
|
" <mime-type type='text/x-csrc'>",
|
||||||
\" <comment>C source code</comment>\",
|
" <comment>C source code</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <alias type=\'text/x-c\'/>\",
|
" <alias type='text/x-c'/>",
|
||||||
\" <glob pattern=\'*.c\' case-sensitive=\'true\' weight=\'70\'/>\",
|
" <glob pattern='*.c' case-sensitive='true' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/vnd.nvidia.cuda.csrc\'>\",
|
" <mime-type type='text/vnd.nvidia.cuda.csrc'>",
|
||||||
\" <sub-class-of type=\'text/x-csrc\'/>\",
|
" <sub-class-of type='text/x-csrc'/>",
|
||||||
\" <comment>NVIDIA CUDA C source code</comment>\",
|
" <comment>NVIDIA CUDA C source code</comment>",
|
||||||
\" <glob pattern=\'*.cu\'/>\",
|
" <glob pattern='*.cu'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-chdr\'>\",
|
" <mime-type type='text/x-chdr'>",
|
||||||
\" <comment>C header</comment>\",
|
" <comment>C header</comment>",
|
||||||
\" <sub-class-of type=\'text/x-csrc\'/>\",
|
" <sub-class-of type='text/x-csrc'/>",
|
||||||
\" <!-- reduce weight from freedesktop to avoid conflict with text/x-c++hdr -->\",
|
" <!-- reduce weight from freedesktop to avoid conflict with text/x-c++hdr -->",
|
||||||
\" <glob pattern=\'*.h\' weight=\'30\'/>\",
|
" <glob pattern='*.h' weight='30'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <!-- Those are used to find matching headers by the CppEditor plugin,\",
|
" <!-- Those are used to find matching headers by the CppEditor plugin,",
|
||||||
\" so, they should match -->\",
|
" so, they should match -->",
|
||||||
\" <mime-type type=\'text/x-c++hdr\'>\",
|
" <mime-type type='text/x-c++hdr'>",
|
||||||
\" <sub-class-of type=\'text/x-chdr\'/>\",
|
" <sub-class-of type='text/x-chdr'/>",
|
||||||
\" <comment>C++ header</comment>\",
|
" <comment>C++ header</comment>",
|
||||||
\" <glob pattern=\'*.hh\' weight=\'70\'/>\",
|
" <glob pattern='*.hh' weight='70'/>",
|
||||||
\" <glob pattern=\'*.hxx\' weight=\'70\'/>\",
|
" <glob pattern='*.hxx' weight='70'/>",
|
||||||
\" <glob pattern=\'*.h++\' weight=\'70\'/>\",
|
" <glob pattern='*.h++' weight='70'/>",
|
||||||
\" <glob pattern=\'*.hpp\' weight=\'70\'/>\",
|
" <glob pattern='*.hpp' weight='70'/>",
|
||||||
\" <glob pattern=\'*.hp\' weight=\'70\'/>\",
|
" <glob pattern='*.hp' weight='70'/>",
|
||||||
\" <!-- Additions to freedesktop: -->\",
|
" <!-- Additions to freedesktop: -->",
|
||||||
\" <glob pattern=\'*.h\' weight=\'70\'/>\",
|
" <glob pattern='*.h' weight='70'/>",
|
||||||
\" <glob pattern=\'*.H\' weight=\'70\'/>\",
|
" <glob pattern='*.H' weight='70'/>",
|
||||||
\" <glob pattern=\'*.inl\' weight=\'70\'/>\",
|
" <glob pattern='*.inl' weight='70'/>",
|
||||||
\" <glob pattern=\'*.tcc\' weight=\'70\'/>\",
|
" <glob pattern='*.tcc' weight='70'/>",
|
||||||
\" <glob pattern=\'*.tpp\' weight=\'70\'/>\",
|
" <glob pattern='*.tpp' weight='70'/>",
|
||||||
\" <glob pattern=\'*.t++\' weight=\'70\'/>\",
|
" <glob pattern='*.t++' weight='70'/>",
|
||||||
\" <glob pattern=\'*.txx\' weight=\'70\'/>\",
|
" <glob pattern='*.txx' weight='70'/>",
|
||||||
\" <!-- Find include guards of header files without extension, for\",
|
" <!-- Find include guards of header files without extension, for",
|
||||||
\" example, STL ones like <string>. Those can have a big initial\",
|
" example, STL ones like <string>. Those can have a big initial",
|
||||||
\" comment exceeding 1000 chars, though. -->\",
|
" comment exceeding 1000 chars, though. -->",
|
||||||
\" <magic priority=\'40\'>\",
|
" <magic priority='40'>",
|
||||||
\" <match value=\'#ifndef \' type=\'string\' offset=\'0:2000\'/>\",
|
" <match value='#ifndef ' type='string' offset='0:2000'/>",
|
||||||
\" <match value=\'#if \' type=\'string\' offset=\'0:2000\'/>\",
|
" <match value='#if ' type='string' offset='0:2000'/>",
|
||||||
\" <match value=\'#include \' type=\'string\' offset=\'0:2000\'/>\",
|
" <match value='#include ' type='string' offset='0:2000'/>",
|
||||||
\" </magic>\",
|
" </magic>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-c++src\'>\",
|
" <mime-type type='text/x-c++src'>",
|
||||||
\" <comment>C++ source code</comment>\",
|
" <comment>C++ source code</comment>",
|
||||||
\" <sub-class-of type=\'text/x-csrc\'/>\",
|
" <sub-class-of type='text/x-csrc'/>",
|
||||||
\" <glob pattern=\'*.cpp\' weight=\'70\'/>\",
|
" <glob pattern='*.cpp' weight='70'/>",
|
||||||
\" <glob pattern=\'*.cxx\' weight=\'70\'/>\",
|
" <glob pattern='*.cxx' weight='70'/>",
|
||||||
\" <glob pattern=\'*.cc\' weight=\'70\'/>\",
|
" <glob pattern='*.cc' weight='70'/>",
|
||||||
\" <glob pattern=\'*.C\' case-sensitive=\'true\' weight=\'70\'/>\",
|
" <glob pattern='*.C' case-sensitive='true' weight='70'/>",
|
||||||
\" <glob pattern=\'*.c++\' weight=\'70\'/>\",
|
" <glob pattern='*.c++' weight='70'/>",
|
||||||
\" <!-- Additions to freedesktop: -->\",
|
" <!-- Additions to freedesktop: -->",
|
||||||
\" <glob pattern=\'*.cp\' weight=\'70\'/>\",
|
" <glob pattern='*.cp' weight='70'/>",
|
||||||
\" <magic priority=\'30\'>\",
|
" <magic priority='30'>",
|
||||||
\" <match value=\'-*- C++ -*-\' type=\'string\' offset=\'0:30\'/>\",
|
" <match value='-*- C++ -*-' type='string' offset='0:30'/>",
|
||||||
\" </magic>\",
|
" </magic>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-qdoc\'>\",
|
" <mime-type type='text/x-qdoc'>",
|
||||||
\" <comment>Qt documentation file</comment>\",
|
" <comment>Qt documentation file</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <glob pattern=\'*.qdoc\' weight=\'70\'/>\",
|
" <glob pattern='*.qdoc' weight='70'/>",
|
||||||
\" <glob pattern=\'*.qdocinc\' weight=\'70\'/>\",
|
" <glob pattern='*.qdocinc' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-moc\'>\",
|
" <mime-type type='text/x-moc'>",
|
||||||
\" <comment>Qt MOC file</comment>\",
|
" <comment>Qt MOC file</comment>",
|
||||||
\" <!-- Fix to freedesktop: moc is C++ source -->\",
|
" <!-- Fix to freedesktop: moc is C++ source -->",
|
||||||
\" <sub-class-of type=\'text/x-c++src\'/>\",
|
" <sub-class-of type='text/x-c++src'/>",
|
||||||
\" <glob pattern=\'*.moc\' weight=\'70\'/>\",
|
" <glob pattern='*.moc' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-objc++src\'>\",
|
" <mime-type type='text/x-objc++src'>",
|
||||||
\" <comment>Objective-C++ source code</comment>\",
|
" <comment>Objective-C++ source code</comment>",
|
||||||
\" <sub-class-of type=\'text/x-c++src\'/>\",
|
" <sub-class-of type='text/x-c++src'/>",
|
||||||
\" <sub-class-of type=\'text/x-objcsrc\'/>\",
|
" <sub-class-of type='text/x-objcsrc'/>",
|
||||||
\" <glob pattern=\'*.mm\' weight=\'70\'/>\",
|
" <glob pattern='*.mm' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-objcsrc\'>\",
|
" <mime-type type='text/x-objcsrc'>",
|
||||||
\" <comment>Objective-C source code</comment>\",
|
" <comment>Objective-C source code</comment>",
|
||||||
\" <sub-class-of type=\'text/x-csrc\'/>\",
|
" <sub-class-of type='text/x-csrc'/>",
|
||||||
\" <glob pattern=\'*.m\' weight=\'70\'/>\",
|
" <glob pattern='*.m' weight='70'/>",
|
||||||
\" <magic priority=\'30\'>\",
|
" <magic priority='30'>",
|
||||||
\" <match value=\'#import\' type=\'string\' offset=\'0\'/>\",
|
" <match value='#import' type='string' offset='0'/>",
|
||||||
\" </magic>\",
|
" </magic>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-dsrc\'>\",
|
" <mime-type type='text/x-dsrc'>",
|
||||||
\" <comment>D source code</comment>\",
|
" <comment>D source code</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <glob pattern=\'*.d\'/>\",
|
" <glob pattern='*.d'/>",
|
||||||
\" <glob pattern=\'*.di\'/>\",
|
" <glob pattern='*.di'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CtfVisualizer\",
|
"Name" : "CtfVisualizer",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"KDAB Group, www.kdab.com\",
|
"Vendor" : "KDAB Group, www.kdab.com",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"Chrome Trace Format Visualizer Plugin.\",
|
"Description" : "Chrome Trace Format Visualizer Plugin.",
|
||||||
\"Url\" : \"https://www.kdab.com\",
|
"Url" : "https://www.kdab.com",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,29 +1,29 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"CVS\",
|
"Name" : "CVS",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"CVS integration.\",
|
"Description" : "CVS integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.cvs.submit\'>\",
|
" <mime-type type='text/vnd.qtcreator.cvs.submit'>",
|
||||||
\" <comment>CVS submit template</comment>\",
|
" <comment>CVS submit template</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,60 +1,60 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Debugger\",
|
"Name" : "Debugger",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Creator\",
|
"Category" : "Qt Creator",
|
||||||
\"Description\" : \"Debugger integration.\",
|
"Description" : "Debugger integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-debug\",
|
"Name" : "-debug",
|
||||||
\"Parameter\" : \"pid\",
|
"Parameter" : "pid",
|
||||||
\"Description\" : \"Attach to local process\"
|
"Description" : "Attach to local process"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-debug <executable>[,kit=<kit>][,terminal={0,1}][,sysroot=<sysroot>]\",
|
"Name" : "-debug <executable>[,kit=<kit>][,terminal={0,1}][,sysroot=<sysroot>]",
|
||||||
\"Description\" : \"Start and debug executable\"
|
"Description" : "Start and debug executable"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-debug [executable,]core=<corefile>[,kit=<kit>][,sysroot=<sysroot>]\",
|
"Name" : "-debug [executable,]core=<corefile>[,kit=<kit>][,sysroot=<sysroot>]",
|
||||||
\"Description\" : \"Attach to core file\"
|
"Description" : "Attach to core file"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-debug <executable>,server=<server:port>[,kit=<kit>][,sysroot=<sysroot>]\",
|
"Name" : "-debug <executable>,server=<server:port>[,kit=<kit>][,sysroot=<sysroot>]",
|
||||||
\"Description\" : \"Attach to remote debug server\"
|
"Description" : "Attach to remote debug server"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-wincrashevent\",
|
"Name" : "-wincrashevent",
|
||||||
\"Parameter\" : \"eventhandle:pid\",
|
"Parameter" : "eventhandle:pid",
|
||||||
\"Description\" : \"Event handle used for attaching to crashed processes\"
|
"Description" : "Event handle used for attaching to crashed processes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-asm\'>\",
|
" <mime-type type='text/x-asm'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Assembler</comment>\",
|
" <comment>Assembler</comment>",
|
||||||
\" <glob pattern=\'*.asm\'/>\",
|
" <glob pattern='*.asm'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <!-- Catch-all for assemblers -->\",
|
" <!-- Catch-all for assemblers -->",
|
||||||
\" <mime-type type=\'text/x-qtcreator-generic-asm\'>\",
|
" <mime-type type='text/x-qtcreator-generic-asm'>",
|
||||||
\" <sub-class-of type=\'text/x-asm\'/>\",
|
" <sub-class-of type='text/x-asm'/>",
|
||||||
\" <comment>Qt Creator Generic Assembler</comment>\",
|
" <comment>Qt Creator Generic Assembler</comment>",
|
||||||
\" <glob pattern=\'*.asm\'/>\",
|
" <glob pattern='*.asm'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Designer\",
|
"Name" : "Designer",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Creator\",
|
"Category" : "Qt Creator",
|
||||||
\"Description\" : \"Qt Designer integration.\",
|
"Description" : "Qt Designer integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"DiffEditor\",
|
"Name" : "DiffEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Diff editor component.\",
|
"Description" : "Diff editor component.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Docker\",
|
"Name" : "Docker",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Description\" : \"Basic support for Docker\",
|
"Description" : "Basic support for Docker",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,32 +1,32 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"EmacsKeys\",
|
"Name" : "EmacsKeys",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"nsf\",
|
"Vendor" : "nsf",
|
||||||
\"Copyright\" : \"(C) 2016 nsf <no.smile.face@gmail.com>, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 nsf <no.smile.face@gmail.com>, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Provides additional actions that typical Emacs users would expect.\",
|
"Description" : "Provides additional actions that typical Emacs users would expect.",
|
||||||
\"LongDescription\" : [
|
"LongDescription" : [
|
||||||
\"The main idea behind this plugin is to provide additional actions a typical emacs user would expect. It doesn\'t claim to provide full emacs emulation. The following actions are available:\",
|
"The main idea behind this plugin is to provide additional actions a typical emacs user would expect. It doesn't claim to provide full emacs emulation. The following actions are available:",
|
||||||
\" - Movement [C-f, C-b, C-n, C-p, M-f, M-b, C-a, C-e, M-<, M->]\",
|
" - Movement [C-f, C-b, C-n, C-p, M-f, M-b, C-a, C-e, M-<, M->]",
|
||||||
\" - Mark-based selection [C-SPC, C-x C-x]\",
|
" - Mark-based selection [C-SPC, C-x C-x]",
|
||||||
\" - Cut/copy/yank (doesn\'t provide kill ring feature) [M-w, C-w, C-y]\",
|
" - Cut/copy/yank (doesn't provide kill ring feature) [M-w, C-w, C-y]",
|
||||||
\" - Kill actions, which interact properly with clipboard [C-k, M-d, C-d]\",
|
" - Kill actions, which interact properly with clipboard [C-k, M-d, C-d]",
|
||||||
\" - Scrolling (half of the screen, keeps cursor visible) [C-v, M-v]\",
|
" - Scrolling (half of the screen, keeps cursor visible) [C-v, M-v]",
|
||||||
\" - Insert new line and indent [C-j]\",
|
" - Insert new line and indent [C-j]",
|
||||||
\"\",
|
"",
|
||||||
\"IMPORTANT: Actions are not bound to any key combinations by default. You can find them under \'EmacsKeys\' section in keyboard shortcuts settings.\",
|
"IMPORTANT: Actions are not bound to any key combinations by default. You can find them under 'EmacsKeys' section in keyboard shortcuts settings.",
|
||||||
\"\",
|
"",
|
||||||
\"Also it\'s worth mentioning that EmacsKeys plugin forces disabling of menu mnemonics by calling Qt\'s qt_set_sequence_auto_mnemonic function with false argument. Many of the english menu mnemonics get into the way of typical emacs keys, this includes: Alt+F (File), Alt+B (Build), Alt+W (Window). It\'s a temporary solution, it remains until there is a better one.\"
|
"Also it's worth mentioning that EmacsKeys plugin forces disabling of menu mnemonics by calling Qt's qt_set_sequence_auto_mnemonic function with false argument. Many of the english menu mnemonics get into the way of typical emacs keys, this includes: Alt+F (File), Alt+B (Build), Alt+W (Window). It's a temporary solution, it remains until there is a better one."
|
||||||
],
|
],
|
||||||
\"Url\" : \"http://nosmileface.ru\",
|
"Url" : "http://nosmileface.ru",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"FakeVim\",
|
"Name" : "FakeVim",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"VI-style keyboard navigation.\",
|
"Description" : "VI-style keyboard navigation.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Fossil\",
|
"Name" : "Fossil",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"Artur Shepilko\",
|
"Vendor" : "Artur Shepilko",
|
||||||
\"Copyright\" : \"(C) 2018 Artur Shepilko\",
|
"Copyright" : "(C) 2018 Artur Shepilko",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Fossil SCM integration.\",
|
"Description" : "Fossil SCM integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,62 +1,62 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"GenericProjectManager\",
|
"Name" : "GenericProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Generic support.\",
|
"Description" : "Generic support.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
|
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-generic-project\'>\",
|
" <mime-type type='text/x-generic-project'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Qt Creator Project file</comment>\",
|
" <comment>Generic Qt Creator Project file</comment>",
|
||||||
\" <glob pattern=\'*.creator\'/>\",
|
" <glob pattern='*.creator'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/vnd.qtcreator.generic.files\'>\",
|
" <mime-type type='application/vnd.qtcreator.generic.files'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Project Files</comment>\",
|
" <comment>Generic Project Files</comment>",
|
||||||
\" <glob pattern=\'*.files\'/>\",
|
" <glob pattern='*.files'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/vnd.qtcreator.generic.includes\'>\",
|
" <mime-type type='application/vnd.qtcreator.generic.includes'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Project Include Paths</comment>\",
|
" <comment>Generic Project Include Paths</comment>",
|
||||||
\" <glob pattern=\'*.includes\'/>\",
|
" <glob pattern='*.includes'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/vnd.qtcreator.generic.config\'>\",
|
" <mime-type type='application/vnd.qtcreator.generic.config'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Project Configuration File</comment>\",
|
" <comment>Generic Project Configuration File</comment>",
|
||||||
\" <glob pattern=\'*.config\'/>\",
|
" <glob pattern='*.config'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/vnd.qtcreator.generic.cxxflags\'>\",
|
" <mime-type type='application/vnd.qtcreator.generic.cxxflags'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Project CXXFLAGS File</comment>\",
|
" <comment>Generic Project CXXFLAGS File</comment>",
|
||||||
\" <glob pattern=\'*.cxxflags\'/>\",
|
" <glob pattern='*.cxxflags'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/vnd.qtcreator.generic.cflags\'>\",
|
" <mime-type type='application/vnd.qtcreator.generic.cflags'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Generic Project CFLAGS File</comment>\",
|
" <comment>Generic Project CFLAGS File</comment>",
|
||||||
\" <glob pattern=\'*.cflags\'/>\",
|
" <glob pattern='*.cflags'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,43 +1,43 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Git\",
|
"Name" : "Git",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Git integration.\",
|
"Description" : "Git integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-git-show\",
|
"Name" : "-git-show",
|
||||||
\"Parameter\" : \"git commit hash\",
|
"Parameter" : "git commit hash",
|
||||||
\"Description\" : \"Show given commit hash\"
|
"Description" : "Show given commit hash"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.git.commit\'>\",
|
" <mime-type type='text/vnd.qtcreator.git.commit'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Git Commit File</comment>\",
|
" <comment>Git Commit File</comment>",
|
||||||
\" <glob pattern=\'COMMIT_MSG\'/>\",
|
" <glob pattern='COMMIT_MSG'/>",
|
||||||
\" <glob pattern=\'COMMIT_EDITMSG\'/>\",
|
" <glob pattern='COMMIT_EDITMSG'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.git.rebase\'>\",
|
" <mime-type type='text/vnd.qtcreator.git.rebase'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Git Commit File</comment>\",
|
" <comment>Git Commit File</comment>",
|
||||||
\" <glob pattern=\'git-rebase-todo\'/>\",
|
" <glob pattern='git-rebase-todo'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"GitLab\",
|
"Name" : "GitLab",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"GitLab plugin.\",
|
"Description" : "GitLab plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,64 +1,64 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"GLSLEditor\",
|
"Name" : "GLSLEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Other Languages\",
|
"Category" : "Other Languages",
|
||||||
\"Description\" : \"Editor for GLSL.\",
|
"Description" : "Editor for GLSL.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
|
|
||||||
\" <mime-type type=\'application/x-glsl\'>\",
|
" <mime-type type='application/x-glsl'>",
|
||||||
\" <alias type=\'text/x-glsl\'/>\",
|
" <alias type='text/x-glsl'/>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>GLSL Shader file</comment>\",
|
" <comment>GLSL Shader file</comment>",
|
||||||
\" <glob pattern=\'*.glsl\'/>\",
|
" <glob pattern='*.glsl'/>",
|
||||||
\" <glob pattern=\'*.shader\'/>\",
|
" <glob pattern='*.shader'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-glsl-frag\'>\",
|
" <mime-type type='text/x-glsl-frag'>",
|
||||||
\" <sub-class-of type=\'text/x-glsl\'/>\",
|
" <sub-class-of type='text/x-glsl'/>",
|
||||||
\" <comment>GLSL Fragment Shader file</comment>\",
|
" <comment>GLSL Fragment Shader file</comment>",
|
||||||
\" <glob pattern=\'*.frag\'/>\",
|
" <glob pattern='*.frag'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-glsl-es-frag\'>\",
|
" <mime-type type='text/x-glsl-es-frag'>",
|
||||||
\" <sub-class-of type=\'text/x-glsl\'/>\",
|
" <sub-class-of type='text/x-glsl'/>",
|
||||||
\" <comment>GLSL/ES Fragment Shader file</comment>\",
|
" <comment>GLSL/ES Fragment Shader file</comment>",
|
||||||
\" <glob pattern=\'*.fsh\'/>\",
|
" <glob pattern='*.fsh'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-glsl-vert\'>\",
|
" <mime-type type='text/x-glsl-vert'>",
|
||||||
\" <sub-class-of type=\'text/x-glsl\'/>\",
|
" <sub-class-of type='text/x-glsl'/>",
|
||||||
\" <comment>GLSL Vertex Shader file</comment>\",
|
" <comment>GLSL Vertex Shader file</comment>",
|
||||||
\" <glob pattern=\'*.vert\'/>\",
|
" <glob pattern='*.vert'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-glsl-es-vert\'>\",
|
" <mime-type type='text/x-glsl-es-vert'>",
|
||||||
\" <sub-class-of type=\'text/x-glsl\'/>\",
|
" <sub-class-of type='text/x-glsl'/>",
|
||||||
\" <comment>GLSL/ES Vertex Shader file</comment>\",
|
" <comment>GLSL/ES Vertex Shader file</comment>",
|
||||||
\" <glob pattern=\'*.vsh\'/>\",
|
" <glob pattern='*.vsh'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-glsl-es-geometry\'>\",
|
" <mime-type type='text/x-glsl-es-geometry'>",
|
||||||
\" <sub-class-of type=\'text/x-glsl\'/>\",
|
" <sub-class-of type='text/x-glsl'/>",
|
||||||
\" <comment>GLSL/ES Geometry Shader file</comment>\",
|
" <comment>GLSL/ES Geometry Shader file</comment>",
|
||||||
\" <glob pattern=\'*.gsh\'/>\",
|
" <glob pattern='*.gsh'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Haskell\",
|
"Name" : "Haskell",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"Eike Ziller\",
|
"Vendor" : "Eike Ziller",
|
||||||
\"Copyright\" : \"(C) Eike Ziller\",
|
"Copyright" : "(C) Eike Ziller",
|
||||||
\"License\" : \"MIT\",
|
"License" : "MIT",
|
||||||
\"Description\" : \"Haskell support\",
|
"Description" : "Haskell support",
|
||||||
\"Url\" : \"https://haskell.org\",
|
"Url" : "https://haskell.org",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-haskell-project\'>\",
|
" <mime-type type='text/x-haskell-project'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Haskell Cabal project file</comment>\",
|
" <comment>Haskell Cabal project file</comment>",
|
||||||
\" <glob pattern=\'*.cabal\'/>\",
|
" <glob pattern='*.cabal'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"HelloWorld\",
|
"Name" : "HelloWorld",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Hello World sample plugin.\",
|
"Description" : "Hello World sample plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Help\",
|
"Name" : "Help",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"Help system.\",
|
"Description" : "Help system.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ImageViewer\",
|
"Name" : "ImageViewer",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Image Viewer component.\",
|
"Description" : "Image Viewer component.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
|
|
||||||
\" <mime-type type=\'image/webp\'>\",
|
" <mime-type type='image/webp'>",
|
||||||
\" <comment>WebP Image file</comment>\",
|
" <comment>WebP Image file</comment>",
|
||||||
\" <glob pattern=\'*.webp\'/>\",
|
" <glob pattern='*.webp'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"IncrediBuild\",
|
"Name" : "IncrediBuild",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Platform\" : \"^(Linux|Windows)\",
|
"Platform" : "^(Linux|Windows)",
|
||||||
\"Vendor\" : \"IncrediBuild\",
|
"Vendor" : "IncrediBuild",
|
||||||
\"Copyright\" : \"(C) IncrediBuild\",
|
"Copyright" : "(C) IncrediBuild",
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Url\" : \"http://www.IncrediBuild.com\",
|
"Url" : "http://www.IncrediBuild.com",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Support for Incredibuild.\",
|
"Description" : "Support for Incredibuild.",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Insight\",
|
"Name" : "Insight",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Revision\" : \"$$QTC_PLUGIN_REVISION\",
|
"Revision" : "${QTC_PLUGIN_REVISION}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Qt Insight Support for Design Studio.\",
|
"Description" : "Qt Insight Support for Design Studio.",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Ios\",
|
"Name" : "Ios",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Platform\" : \"OS X.*\",
|
"Platform" : "OS X.*",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Support for deployment to and execution on iOS Devices.\",
|
"Description" : "Support for deployment to and execution on iOS Devices.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"LanguageClient\",
|
"Name" : "LanguageClient",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Other Languages\",
|
"Category" : "Other Languages",
|
||||||
\"Description\" : \"Language Server Protocol client component. See https://microsoft.github.io/language-server-protocol/overview for an overview on Language Servers.\",
|
"Description" : "Language Server Protocol client component. See https://microsoft.github.io/language-server-protocol/overview for an overview on Language Servers.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Macros\",
|
"Name" : "Macros",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Macros in text editors.\",
|
"Description" : "Macros in text editors.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Marketplace\",
|
"Name" : "Marketplace",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Qt Marketplace plugin.\",
|
"Description" : "Qt Marketplace plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"McuSupport\",
|
"Name" : "McuSupport",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Helper for MCU related projects.\",
|
"Description" : "Helper for MCU related projects.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Mercurial\",
|
"Name" : "Mercurial",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Brian McGillion\",
|
"Vendor" : "Brian McGillion",
|
||||||
\"Copyright\" : \"(C) 2016 Brian McGillion, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Brian McGillion, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Mercurial integration.\",
|
"Description" : "Mercurial integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"MesonProjectManager\",
|
"Name" : "MesonProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Laboratory of Plasma Physics\",
|
"Vendor" : "Laboratory of Plasma Physics",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR Laboratory of Plasma Physics\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} Laboratory of Plasma Physics",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Meson support.\",
|
"Description" : "Meson support.",
|
||||||
\"Url\" : \"http://www.mesonbuild.com\",
|
"Url" : "http://www.mesonbuild.com",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ModelEditor\",
|
"Name" : "ModelEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Jochen Becher\",
|
"Vendor" : "Jochen Becher",
|
||||||
\"Copyright\" : \"(C) 2017 Jochen Becher, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2017 Jochen Becher, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Modeling\",
|
"Category" : "Modeling",
|
||||||
\"Description\" : \"Graphical modeling with structured diagrams.\",
|
"Description" : "Graphical modeling with structured diagrams.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\' encoding=\'UTF-8\'?>\",
|
"<?xml version='1.0' encoding='UTF-8'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.model\'>\",
|
" <mime-type type='text/vnd.qtcreator.model'>",
|
||||||
\" <sub-class-of type=\'text/xml\'/>\",
|
" <sub-class-of type='text/xml'/>",
|
||||||
\" <comment>Qt Creator Model File</comment>\",
|
" <comment>Qt Creator Model File</comment>",
|
||||||
\" <glob pattern=\'*.qmodel\'/>\",
|
" <glob pattern='*.qmodel'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,50 +1,50 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Nim\",
|
"Name" : "Nim",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Filippo Cucchetto\",
|
"Vendor" : "Filippo Cucchetto",
|
||||||
\"Copyright\" : \"(C) 2017 Filippo Cucchetto, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2017 Filippo Cucchetto, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Other Languages\",
|
"Category" : "Other Languages",
|
||||||
\"Description\" : \"Plugin for supporting the Nim programming language.\",
|
"Description" : "Plugin for supporting the Nim programming language.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-nim-project\'>\",
|
" <mime-type type='text/x-nim-project'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Nim project file</comment>\",
|
" <comment>Nim project file</comment>",
|
||||||
\" <glob pattern=\'*.nimproject\'/>\",
|
" <glob pattern='*.nimproject'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-nim\'>\",
|
" <mime-type type='text/x-nim'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Nim source file</comment>\",
|
" <comment>Nim source file</comment>",
|
||||||
\" <glob pattern=\'*.nim\'/>\",
|
" <glob pattern='*.nim'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-nimble\'>\",
|
" <mime-type type='text/x-nimble'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Nimble project file</comment>\",
|
" <comment>Nimble project file</comment>",
|
||||||
\" <glob pattern=\'*.nimble\'/>\",
|
" <glob pattern='*.nimble'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
|
|
||||||
\" <mime-type type=\'text/x-nim-script\'>\",
|
" <mime-type type='text/x-nim-script'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Nim script file</comment>\",
|
" <comment>Nim script file</comment>",
|
||||||
\" <glob pattern=\'*.nims\'/>\",
|
" <glob pattern='*.nims'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,33 +1,33 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Perforce\",
|
"Name" : "Perforce",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Perforce integration.\",
|
"Description" : "Perforce integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.p4.submit\'>\",
|
" <mime-type type='text/vnd.qtcreator.p4.submit'>",
|
||||||
\" <comment>Perforce submit template</comment>\",
|
" <comment>Perforce submit template</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <magic priority=\'50\'>\",
|
" <magic priority='50'>",
|
||||||
\" <match value=\'# A Perforce Change Specification.\' type=\'string\' offset=\'0\'/>\",
|
" <match value='# A Perforce Change Specification.' type='string' offset='0'/>",
|
||||||
\" </magic>\",
|
" </magic>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"PerfProfiler\",
|
"Name" : "PerfProfiler",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"Perf Profiler Plugin.\",
|
"Description" : "Perf Profiler Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,42 +1,42 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ProjectExplorer\",
|
"Name" : "ProjectExplorer",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"ProjectExplorer framework that can be extended with different kind of project types.\",
|
"Description" : "ProjectExplorer framework that can be extended with different kind of project types.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-customwizard-verbose\",
|
"Name" : "-customwizard-verbose",
|
||||||
\"Description\" : \"Verbose loading of custom wizards\"
|
"Description" : "Verbose loading of custom wizards"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
\"Name\" : \"-ensure-kit-for-binary\",
|
"Name" : "-ensure-kit-for-binary",
|
||||||
\"Parameter\" : \"file path\",
|
"Parameter" : "file path",
|
||||||
\"Description\" : \"Create kit with architecture matching a given application or library\"
|
"Description" : "Create kit with architecture matching a given application or library"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\' encoding=\'UTF-8\'?>\",
|
"<?xml version='1.0' encoding='UTF-8'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-tasklist\'>\",
|
" <mime-type type='text/x-tasklist'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Creator task list file</comment>\",
|
" <comment>Qt Creator task list file</comment>",
|
||||||
\" <glob pattern=\'*.tasks\'/>\",
|
" <glob pattern='*.tasks'/>",
|
||||||
\" <glob pattern=\'*.tasks.txt\'/>\",
|
" <glob pattern='*.tasks.txt'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,45 +1,45 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Python\",
|
"Name" : "Python",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Other Languages\",
|
"Category" : "Other Languages",
|
||||||
\"Description\" : \"Plugin for supporting the Python language.\",
|
"Description" : "Plugin for supporting the Python language.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-python-gui\'>\",
|
" <mime-type type='text/x-python-gui'>",
|
||||||
\" <sub-class-of type=\'text/x-python\'/>\",
|
" <sub-class-of type='text/x-python'/>",
|
||||||
\" <comment>Python source file without console</comment>\",
|
" <comment>Python source file without console</comment>",
|
||||||
\" <glob pattern=\'*.pyw\'/>\",
|
" <glob pattern='*.pyw'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/x-python-interface\'>\",
|
" <mime-type type='text/x-python-interface'>",
|
||||||
\" <sub-class-of type=\'text/x-python\'/>\",
|
" <sub-class-of type='text/x-python'/>",
|
||||||
\" <comment>Python module interface file</comment>\",
|
" <comment>Python module interface file</comment>",
|
||||||
\" <glob pattern=\'*.pyi\'/>\",
|
" <glob pattern='*.pyi'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/x-pyqt-project\'>\",
|
" <mime-type type='text/x-pyqt-project'>",
|
||||||
\" <sub-class-of type=\'text/x-python\'/>\",
|
" <sub-class-of type='text/x-python'/>",
|
||||||
\" <comment>Qt Creator Python project file</comment>\",
|
" <comment>Qt Creator Python project file</comment>",
|
||||||
\" <glob pattern=\'*.pyqtc\'/>\",
|
" <glob pattern='*.pyqtc'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/x-python-project\'>\",
|
" <mime-type type='text/x-python-project'>",
|
||||||
\" <sub-class-of type=\'application/json\'/>\",
|
" <sub-class-of type='application/json'/>",
|
||||||
\" <comment>Qt Creator Python project file</comment>\",
|
" <comment>Qt Creator Python project file</comment>",
|
||||||
\" <glob pattern=\'*.pyproject\'/>\",
|
" <glob pattern='*.pyproject'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QbsProjectManager\",
|
"Name" : "QbsProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"QBS support.\",
|
"Description" : "QBS support.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,55 +1,55 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmakeProjectManager\",
|
"Name" : "QmakeProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Provides project type for Qt/QMake .pro files and tools.\",
|
"Description" : "Provides project type for Qt/QMake .pro files and tools.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeprofile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeprofile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project file</comment>\",
|
" <comment>Qt Project file</comment>",
|
||||||
\" <glob pattern=\'*.pro\'/>\",
|
" <glob pattern='*.pro'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeproincludefile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeproincludefile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project include file</comment>\",
|
" <comment>Qt Project include file</comment>",
|
||||||
\" <glob pattern=\'*.pri\'/>\",
|
" <glob pattern='*.pri'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeprofeaturefile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeprofeaturefile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project feature file</comment>\",
|
" <comment>Qt Project feature file</comment>",
|
||||||
\" <glob pattern=\'*.prf\'/>\",
|
" <glob pattern='*.prf'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeproconfigurationfile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeproconfigurationfile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project configuration file</comment>\",
|
" <comment>Qt Project configuration file</comment>",
|
||||||
\" <glob pattern=\'.qmake.conf\'/>\",
|
" <glob pattern='.qmake.conf'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeprocachefile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeprocachefile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project cache file</comment>\",
|
" <comment>Qt Project cache file</comment>",
|
||||||
\" <glob pattern=\'.qmake.cache\'/>\",
|
" <glob pattern='.qmake.cache'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/vnd.qt.qmakeprostashfile\'>\",
|
" <mime-type type='application/vnd.qt.qmakeprostashfile'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Qt Project stash file</comment>\",
|
" <comment>Qt Project stash file</comment>",
|
||||||
\" <glob pattern=\'.qmake.stash\'/>\",
|
" <glob pattern='.qmake.stash'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,27 +1,27 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlDesigner\",
|
"Name" : "QmlDesigner",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Visual Designer for QML files.\",
|
"Description" : "Visual Designer for QML files.",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-capture-puppet-stream\",
|
"Name" : "-capture-puppet-stream",
|
||||||
\"Parameter\" : \"capture file\",
|
"Parameter" : "capture file",
|
||||||
\"Description\" : \"Captures the Qml Puppet stream\"
|
"Description" : "Captures the Qml Puppet stream"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlDesignerBase\",
|
"Name" : "QmlDesignerBase",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Provides support code for the qml designer and co..\",
|
"Description" : "Provides support code for the qml designer and co..",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlJSEditor\",
|
"Name" : "QmlJSEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Editor for QML and JavaScript.\",
|
"Description" : "Editor for QML and JavaScript.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,73 +1,73 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlJSTools\",
|
"Name" : "QmlJSTools",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Tools for analyzing Qml/JS code.\",
|
"Description" : "Tools for analyzing Qml/JS code.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/x-qml\'>\",
|
" <mime-type type='text/x-qml'>",
|
||||||
\" <alias type=\'application/x-qml\'/>\",
|
" <alias type='application/x-qml'/>",
|
||||||
\" <!-- sub class is missing in the freedesktop.org definition -->\",
|
" <!-- sub class is missing in the freedesktop.org definition -->",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>QML file</comment>\",
|
" <comment>QML file</comment>",
|
||||||
\" <glob pattern=\'*.qml\' weight=\'70\'/>\",
|
" <glob pattern='*.qml' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/x-qt.qbs+qml\'>\",
|
" <mime-type type='application/x-qt.qbs+qml'>",
|
||||||
\" <alias type=\'text/x-qt.qbs+qml\'/>\",
|
" <alias type='text/x-qt.qbs+qml'/>",
|
||||||
\" <sub-class-of type=\'text/x-qml\'/>\",
|
" <sub-class-of type='text/x-qml'/>",
|
||||||
\" <comment>Qt Build Suite file</comment>\",
|
" <comment>Qt Build Suite file</comment>",
|
||||||
\" <glob pattern=\'*.qbs\' weight=\'70\'/>\",
|
" <glob pattern='*.qbs' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/x-qt.ui+qml\'>\",
|
" <mime-type type='application/x-qt.ui+qml'>",
|
||||||
\" <alias type=\'text/x-qt.ui+qml\'/>\",
|
" <alias type='text/x-qt.ui+qml'/>",
|
||||||
\" <sub-class-of type=\'text/x-qml\'/>\",
|
" <sub-class-of type='text/x-qml'/>",
|
||||||
\" <comment>QtQuick Designer ui file</comment>\",
|
" <comment>QtQuick Designer ui file</comment>",
|
||||||
\" <glob pattern=\'*.ui.qml\' weight=\'70\'/>\",
|
" <glob pattern='*.ui.qml' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/x-qmlproject\'>\",
|
" <mime-type type='application/x-qmlproject'>",
|
||||||
\" <alias type=\'text/x-qmlproject\'/>\",
|
" <alias type='text/x-qmlproject'/>",
|
||||||
\" <sub-class-of type=\'text/x-qml\'/>\",
|
" <sub-class-of type='text/x-qml'/>",
|
||||||
\" <comment>Qt Creator Qt UI project file</comment>\",
|
" <comment>Qt Creator Qt UI project file</comment>",
|
||||||
\" <glob pattern=\'*.qmlproject\' weight=\'70\'/>\",
|
" <glob pattern='*.qmlproject' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/x-qt.meta-info+qml\'>\",
|
" <mime-type type='application/x-qt.meta-info+qml'>",
|
||||||
\" <alias type=\'text/x-qt.meta-info+qml\'/>\",
|
" <alias type='text/x-qt.meta-info+qml'/>",
|
||||||
\" <sub-class-of type=\'text/x-qml\'/>\",
|
" <sub-class-of type='text/x-qml'/>",
|
||||||
\" <comment>QML file</comment>\",
|
" <comment>QML file</comment>",
|
||||||
\" <glob pattern=\'*.qmltypes\' weight=\'70\'/>\",
|
" <glob pattern='*.qmltypes' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/json\'>\",
|
" <mime-type type='application/json'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>JSON file</comment>\",
|
" <comment>JSON file</comment>",
|
||||||
\" <glob pattern=\'*.json\' weight=\'70\'/>\",
|
" <glob pattern='*.json' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/x-javascript-module\'>\",
|
" <mime-type type='application/x-javascript-module'>",
|
||||||
\" <sub-class-of type=\'application/javascript\'/>\",
|
" <sub-class-of type='application/javascript'/>",
|
||||||
\" <comment>Javascript module</comment>\",
|
" <comment>Javascript module</comment>",
|
||||||
\" <glob pattern=\'*.mjs\' weight=\'70\'/>\",
|
" <glob pattern='*.mjs' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'text/x-qtscript\'>\",
|
" <mime-type type='text/x-qtscript'>",
|
||||||
\" <alias type=\'application/x-qtscript\'/>\",
|
" <alias type='application/x-qtscript'/>",
|
||||||
\" <sub-class-of type=\'application/javascript\'/>\",
|
" <sub-class-of type='application/javascript'/>",
|
||||||
\" <comment>Qt Script file</comment>\",
|
" <comment>Qt Script file</comment>",
|
||||||
\" <glob pattern=\'*.qs\' weight=\'70\'/>\",
|
" <glob pattern='*.qs' weight='70'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlPreview\",
|
"Name" : "QmlPreview",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Qml Preview Plugin.\",
|
"Description" : "Qml Preview Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlProfiler\",
|
"Name" : "QmlProfiler",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Qml Profiler Plugin.\",
|
"Description" : "Qml Profiler Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,31 +1,31 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QmlProjectManager\",
|
"Name" : "QmlProjectManager",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Quick\",
|
"Category" : "Qt Quick",
|
||||||
\"Description\" : \"Qt Quick support\",
|
"Description" : "Qt Quick support",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
|
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/x-qmlproject\'>\",
|
" <mime-type type='application/x-qmlproject'>",
|
||||||
\" <sub-class-of type=\'text/x-qml\'/>\",
|
" <sub-class-of type='text/x-qml'/>",
|
||||||
\" <comment>QML Project file</comment>\",
|
" <comment>QML Project file</comment>",
|
||||||
\" <glob pattern=\'*.qmlproject\'/>\",
|
" <glob pattern='*.qmlproject'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Qnx\",
|
"Name" : "Qnx",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"BlackBerry\",
|
"Vendor" : "BlackBerry",
|
||||||
\"Copyright\" : \"(C) 2017 BlackBerry, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2017 BlackBerry, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Adds support for QNX to Qt Creator.\",
|
"Description" : "Adds support for QNX to Qt Creator.",
|
||||||
\"Url\" : \"http://www.blackberry.com\",
|
"Url" : "http://www.blackberry.com",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,34 +1,34 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"QtSupport\",
|
"Name" : "QtSupport",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Build Systems\",
|
"Category" : "Build Systems",
|
||||||
\"Description\" : \"Provides support code for build systems.\",
|
"Description" : "Provides support code for build systems.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/x-linguist-translation\'>\",
|
" <mime-type type='application/x-linguist-translation'>",
|
||||||
\" <comment>Linguist compiled translations</comment>\",
|
" <comment>Linguist compiled translations</comment>",
|
||||||
\" <glob pattern=\'*.qm\'/>\",
|
" <glob pattern='*.qm'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\" <mime-type type=\'application/scxml+xml\'>\",
|
" <mime-type type='application/scxml+xml'>",
|
||||||
\" <comment>SCXML State Chart</comment>\",
|
" <comment>SCXML State Chart</comment>",
|
||||||
\" <sub-class-of type=\'application/xml\'/>\",
|
" <sub-class-of type='application/xml'/>",
|
||||||
\" <glob pattern=\'*.scxml\'/>\",
|
" <glob pattern='*.scxml'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"RemoteLinux\",
|
"Name" : "RemoteLinux",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Support for deployment to and execution on a remote Linux host.\",
|
"Description" : "Support for deployment to and execution on a remote Linux host.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ResourceEditor\",
|
"Name" : "ResourceEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Qt Creator\",
|
"Category" : "Qt Creator",
|
||||||
\"Description\" : \"Editor for qrc files.\",
|
"Description" : "Editor for qrc files.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/vnd.qt.xml.resource\'>\",
|
" <mime-type type='application/vnd.qt.xml.resource'>",
|
||||||
\" <sub-class-of type=\'text/xml\'/>\",
|
" <sub-class-of type='text/xml'/>",
|
||||||
\" <comment>Qt Resource file</comment>\",
|
" <comment>Qt Resource file</comment>",
|
||||||
\" <glob pattern=\'*.qrc\'/>\",
|
" <glob pattern='*.qrc'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"SafeRenderer\",
|
"Name" : "SafeRenderer",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Helper plugin for Qt Safe Renderer projects.\",
|
"Description" : "Helper plugin for Qt Safe Renderer projects.",
|
||||||
\"Url\" : \"https://www.qt.io\",
|
"Url" : "https://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"ScxmlEditor\",
|
"Name" : "ScxmlEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Modeling\",
|
"Category" : "Modeling",
|
||||||
\"Description\" : \"Visual Editor for SCXML (State Chart XML) files.\",
|
"Description" : "Visual Editor for SCXML (State Chart XML) files.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/scxml+xml\'>\",
|
" <mime-type type='application/scxml+xml'>",
|
||||||
\" <sub-class-of type=\'text/xml\'/>\",
|
" <sub-class-of type='text/xml'/>",
|
||||||
\" <comment>SCXML file</comment>\",
|
" <comment>SCXML file</comment>",
|
||||||
\" <glob pattern=\'*.scxml\'/>\",
|
" <glob pattern='*.scxml'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"SerialTerminal\",
|
"Name" : "SerialTerminal",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"Benjamin Balga\",
|
"Vendor" : "Benjamin Balga",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Copyright\" : \"(C) 2018 Benjamin Balga\",
|
"Copyright" : "(C) 2018 Benjamin Balga",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Serial Port Terminal\",
|
"Description" : "Serial Port Terminal",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"SilverSearcher\",
|
"Name" : "SilverSearcher",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"Przemyslaw Gorszkowski\",
|
"Vendor" : "Przemyslaw Gorszkowski",
|
||||||
\"Copyright\" : \"(C) 2017 Przemyslaw Gorszkowski, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2017 Przemyslaw Gorszkowski, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Adds possibility to use SilverSearcher tool as an alternative mechanism of 'find in files'\",
|
"Description" : "Adds possibility to use SilverSearcher tool as an alternative mechanism of 'find in files'",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Squish\",
|
"Name" : "Squish",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) 2022 The Qt Company Ltd\",
|
"Copyright" : "(C) 2022 The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this file may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this file. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Squish plugin. Provides integration of Squish.\",
|
"Description" : "Squish plugin. Provides integration of Squish.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/squish-objectsmap\'>\",
|
" <mime-type type='text/squish-objectsmap'>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" <comment>Squish objects.map File</comment>\",
|
" <comment>Squish objects.map File</comment>",
|
||||||
\" <glob pattern=\'objects.map\'/>\",
|
" <glob pattern='objects.map'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"StudioWelcome\",
|
"Name" : "StudioWelcome",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Qt Design Studio Welcome Page.\",
|
"Description" : "Qt Design Studio Welcome Page.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,29 +1,29 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Subversion\",
|
"Name" : "Subversion",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Subversion integration.\",
|
"Description" : "Subversion integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\'?>\",
|
"<?xml version='1.0'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'text/vnd.qtcreator.svn.submit\'>\",
|
" <mime-type type='text/vnd.qtcreator.svn.submit'>",
|
||||||
\" <comment>Subversion submit template</comment>\",
|
" <comment>Subversion submit template</comment>",
|
||||||
\" <sub-class-of type=\'text/plain\'/>\",
|
" <sub-class-of type='text/plain'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Terminal\",
|
"Name" : "Terminal",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Terminal window.\",
|
"Description" : "Terminal window.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"TextEditor\",
|
"Name" : "TextEditor",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"Text editor framework and the implementation of the basic text editor.\",
|
"Description" : "Text editor framework and the implementation of the basic text editor.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Todo\",
|
"Name" : "Todo",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Vendor\" : \"Dmitry Savchenko\",
|
"Vendor" : "Dmitry Savchenko",
|
||||||
\"Copyright\" : \"(C) 2016 Dmitry Savchenko, Vasiliy Sorokin, (C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) 2016 Dmitry Savchenko, Vasiliy Sorokin, (C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Adds pane that lists all TODO, FIXME, etc. entries in comments.\",
|
"Description" : "Adds pane that lists all TODO, FIXME, etc. entries in comments.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"UpdateInfo\",
|
"Name" : "UpdateInfo",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Description\" : \"Displays Update-Infos for Qt Installer Framework-based Updaters.\",
|
"Description" : "Displays Update-Infos for Qt Installer Framework-based Updaters.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Valgrind\",
|
"Name" : "Valgrind",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Code Analyzer\",
|
"Category" : "Code Analyzer",
|
||||||
\"Description\" : \"Valgrind Plugin.\",
|
"Description" : "Valgrind Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,30 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Vcpkg\",
|
"Name" : "Vcpkg",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"Description\" : \"vcpkg integration.\",
|
"Description" : "vcpkg integration.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList,
|
${IDE_PLUGIN_DEPENDENCIES},
|
||||||
|
|
||||||
\"Mimetypes\" : [
|
"Mimetypes" : [
|
||||||
\"<?xml version=\'1.0\' encoding=\'UTF-8\'?>\",
|
"<?xml version='1.0' encoding='UTF-8'?>",
|
||||||
\"<mime-info xmlns=\'http://www.freedesktop.org/standards/shared-mime-info\'>\",
|
"<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>",
|
||||||
\" <mime-type type=\'application/vcpkg.manifest+json\'>\",
|
" <mime-type type='application/vcpkg.manifest+json'>",
|
||||||
\" <sub-class-of type=\'application/json\'/>\",
|
" <sub-class-of type='application/json'/>",
|
||||||
\" <comment>Vcpkg Manifest File</comment>\",
|
" <comment>Vcpkg Manifest File</comment>",
|
||||||
\" <glob pattern=\'vcpkg.json\' weight=\'71\'/>\",
|
" <glob pattern='vcpkg.json' weight='71'/>",
|
||||||
\" </mime-type>\",
|
" </mime-type>",
|
||||||
\"</mime-info>\"
|
"</mime-info>"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"VcsBase\",
|
"Name" : "VcsBase",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Version Control\",
|
"Category" : "Version Control",
|
||||||
\"Description\" : \"Version Control System Base Plugin.\",
|
"Description" : "Version Control System Base Plugin.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"WebAssembly\",
|
"Name" : "WebAssembly",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Experimental\" : true,
|
"Experimental" : true,
|
||||||
\"DisabledByDefault\" : true,
|
"DisabledByDefault" : true,
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Device Support\",
|
"Category" : "Device Support",
|
||||||
\"Description\" : \"Helper for WebAssembly projects.\",
|
"Description" : "Helper for WebAssembly projects.",
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
@@ -1,25 +1,25 @@
|
|||||||
{
|
{
|
||||||
\"Name\" : \"Welcome\",
|
"Name" : "Welcome",
|
||||||
\"Version\" : \"$$QTCREATOR_VERSION\",
|
"Version" : "${IDE_VERSION}",
|
||||||
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
|
"CompatVersion" : "${IDE_VERSION_COMPAT}",
|
||||||
\"Vendor\" : \"The Qt Company Ltd\",
|
"Vendor" : "The Qt Company Ltd",
|
||||||
\"Copyright\" : \"(C) $$QTCREATOR_COPYRIGHT_YEAR The Qt Company Ltd\",
|
"Copyright" : "(C) ${IDE_COPYRIGHT_YEAR} The Qt Company Ltd",
|
||||||
\"License\" : [ \"Commercial Usage\",
|
"License" : [ "Commercial Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\",
|
"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.",
|
||||||
\"\",
|
"",
|
||||||
\"GNU General Public License Usage\",
|
"GNU General Public License Usage",
|
||||||
\"\",
|
"",
|
||||||
\"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html.\"
|
"Alternatively, this plugin may be used under the terms of the GNU General Public License version 3 as published by the Free Software Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT included in the packaging of this plugin. Please review the following information to ensure the GNU General Public License requirements will be met: https://www.gnu.org/licenses/gpl-3.0.html."
|
||||||
],
|
],
|
||||||
\"Category\" : \"Core\",
|
"Category" : "Core",
|
||||||
\"Description\" : \"Secondary Welcome Screen Plugin.\",
|
"Description" : "Secondary Welcome Screen Plugin.",
|
||||||
\"Arguments\" : [
|
"Arguments" : [
|
||||||
{
|
{
|
||||||
\"Name\" : \"-notour\",
|
"Name" : "-notour",
|
||||||
\"Description\" : \"Do not ask for taking a UI tour on startup\"
|
"Description" : "Do not ask for taking a UI tour on startup"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
\"Url\" : \"http://www.qt.io\",
|
"Url" : "http://www.qt.io",
|
||||||
$$dependencyList
|
${IDE_PLUGIN_DEPENDENCIES}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user