diff --git a/debian/deepin-unioncode.install b/debian/deepin-unioncode.install index 1cc981ae8..086259d48 100644 --- a/debian/deepin-unioncode.install +++ b/debian/deepin-unioncode.install @@ -6,6 +6,6 @@ /usr/share/deepin-unioncode/templates/* /usr/share/applications/*.desktop /usr/lib/*/deepin-unioncode/lib*.so* -/usr/lib/*/deepin-unioncode/plugins/lib*.so +/usr/lib/*/deepin-unioncode/plugins/libplugin-*.so /usr/lib/*/deepin-unioncode/scripts /usr/lib/*/deepin-unioncode/tools diff --git a/src/app/main.cpp b/src/app/main.cpp index 0bbea04a7..2ad1c8c6a 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -15,8 +15,8 @@ DWIDGET_USE_NAMESPACE static const char *const IID = "org.deepin.plugin.unioncode"; -static const char *const CORE_PLUGIN = "core"; -static const char *const CORE_NAME = "libcore.so"; +static const char *const CORE_PLUGIN = "plugin-core"; +static const char *const CORE_NAME = "libplugin-core.so"; static bool loadPlugins() { dpfCheckTimeBegin(); diff --git a/src/plugins/actionanalyse/CMakeLists.txt b/src/plugins/actionanalyse/CMakeLists.txt index bd4893cbb..f3b22dd9d 100644 --- a/src/plugins/actionanalyse/CMakeLists.txt +++ b/src/plugins/actionanalyse/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(actionanalyse) +project(plugin-actionanalyse) set(CXX_CPP mainframe/configure.cpp diff --git a/src/plugins/actionanalyse/actionanalyseplugin.json b/src/plugins/actionanalyse/actionanalyseplugin.json index 2e5c8b6ba..077f90715 100644 --- a/src/plugins/actionanalyse/actionanalyseplugin.json +++ b/src/plugins/actionanalyse/actionanalyseplugin.json @@ -1,5 +1,5 @@ { - "Name" : "actionanalyse", + "Name" : "plugin-actionanalyse", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The actionanalyse plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "symbol"} + {"Name" : "plugin-symbol"} ] } diff --git a/src/plugins/binarytools/CMakeLists.txt b/src/plugins/binarytools/CMakeLists.txt index 04a726d48..cc096af03 100644 --- a/src/plugins/binarytools/CMakeLists.txt +++ b/src/plugins/binarytools/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(binarytools) +project(plugin-binarytools) set(CXX_CPP mainframe/binarytoolsconfigview.cpp diff --git a/src/plugins/binarytools/binarytools.json b/src/plugins/binarytools/binarytools.json index 89bd29ed8..c70fe91cd 100644 --- a/src/plugins/binarytools/binarytools.json +++ b/src/plugins/binarytools/binarytools.json @@ -1,5 +1,5 @@ { - "Name" : "binarytools", + "Name" : "plugin-binarytools", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The binary compatibility tool plugin for the unioncode.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d417abd766615b0b02e7e", "Depends" : [ - {"Name" : "core"} + {"Name" : "plugin-core"} ] } diff --git a/src/plugins/builder/CMakeLists.txt b/src/plugins/builder/CMakeLists.txt index 267874d17..ffea01607 100644 --- a/src/plugins/builder/CMakeLists.txt +++ b/src/plugins/builder/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(buildercore) +project(plugin-buildercore) set(CXX_CPP tasks/taskmodel.cpp diff --git a/src/plugins/builder/buildercore.json b/src/plugins/builder/buildercore.json index 8c98d4862..29eb86af4 100644 --- a/src/plugins/builder/buildercore.json +++ b/src/plugins/builder/buildercore.json @@ -1,5 +1,5 @@ { - "Name" : "buildercore", + "Name" : "plugin-buildercore", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The buildercore plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/codeeditor/CMakeLists.txt b/src/plugins/codeeditor/CMakeLists.txt index da61fcd8d..7fa372a51 100644 --- a/src/plugins/codeeditor/CMakeLists.txt +++ b/src/plugins/codeeditor/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(codeeditor) +project(plugin-codeeditor) include(${CMAKE_SOURCE_DIR}/3rdparty/unioncode-qscintilla214.cmake) set(CMAKE_INCLUDE_CURRENT_DIR true) diff --git a/src/plugins/codeeditor/codeeditor.json b/src/plugins/codeeditor/codeeditor.json index 3946e1f0d..50f6d51ee 100644 --- a/src/plugins/codeeditor/codeeditor.json +++ b/src/plugins/codeeditor/codeeditor.json @@ -1,5 +1,5 @@ { - "Name" : "codeeditor", + "Name" : "plugin-codeeditor", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d415bbd766615b0b02e78", "Depends" : [ - {"Name" : "core"} + {"Name" : "plugin-core"} ] } diff --git a/src/plugins/codegeex/CMakeLists.txt b/src/plugins/codegeex/CMakeLists.txt index db33350d2..ead1d642e 100644 --- a/src/plugins/codegeex/CMakeLists.txt +++ b/src/plugins/codegeex/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(codegeex) +project(plugin-codegeex) find_package(KF5SyntaxHighlighting) diff --git a/src/plugins/codegeex/codegeex.json b/src/plugins/codegeex/codegeex.json index 802384635..869723e72 100644 --- a/src/plugins/codegeex/codegeex.json +++ b/src/plugins/codegeex/codegeex.json @@ -1,5 +1,5 @@ { - "Name" : "codegeex", + "Name" : "plugin-codegeex", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The AI plugin for the unioncode.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=6597c7ad63a85b76997a070d", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/codeporting/CMakeLists.txt b/src/plugins/codeporting/CMakeLists.txt index dfba71a15..295eea2b0 100644 --- a/src/plugins/codeporting/CMakeLists.txt +++ b/src/plugins/codeporting/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(codeporting) +project(plugin-codeporting) set(CXX_CPP codeporting.json diff --git a/src/plugins/codeporting/codeporting.json b/src/plugins/codeporting/codeporting.json index 2c16de3d7..70f69d091 100644 --- a/src/plugins/codeporting/codeporting.json +++ b/src/plugins/codeporting/codeporting.json @@ -1,5 +1,5 @@ { - "Name" : "codeporting", + "Name" : "plugin-codeporting", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "Help porting project code to other platform.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d415bbd766615b0b02e78", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/collaborators/CMakeLists.txt b/src/plugins/collaborators/CMakeLists.txt index 96e053019..08b8e2048 100644 --- a/src/plugins/collaborators/CMakeLists.txt +++ b/src/plugins/collaborators/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(collaborators) +project(plugin-collaborators) include(${CMAKE_SOURCE_DIR}/3rdparty/unioncode-GitQlient.cmake) diff --git a/src/plugins/collaborators/collaborators.json b/src/plugins/collaborators/collaborators.json index c3b3ba436..bcbaf5fa7 100644 --- a/src/plugins/collaborators/collaborators.json +++ b/src/plugins/collaborators/collaborators.json @@ -1,5 +1,5 @@ { - "Name" : "collaborators", + "Name" : "plugin-collaborators", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d4164bd766615b0b02e7a", "Depends" : [ - {"Name" : "core"} + {"Name" : "plugin-core"} ] } diff --git a/src/plugins/commandproxy/CMakeLists.txt b/src/plugins/commandproxy/CMakeLists.txt index 7a10087e7..745ae030f 100644 --- a/src/plugins/commandproxy/CMakeLists.txt +++ b/src/plugins/commandproxy/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(commandproxy) +project(plugin-commandproxy) set(CMAKE_INCLUDE_CURRENT_DIR true) diff --git a/src/plugins/commandproxy/commandproxy.json b/src/plugins/commandproxy/commandproxy.json index 36d5b3fbc..ad0bb423d 100644 --- a/src/plugins/commandproxy/commandproxy.json +++ b/src/plugins/commandproxy/commandproxy.json @@ -1,5 +1,5 @@ { - "Name" : "commandproxy", + "Name" : "plugin-commandproxy", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The command line proxy plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "core"} + {"Name" : "plugin-core"} ] } diff --git a/src/plugins/console/CMakeLists.txt b/src/plugins/console/CMakeLists.txt index 6c2f34c28..28ffb9e4d 100644 --- a/src/plugins/console/CMakeLists.txt +++ b/src/plugins/console/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(console) +project(plugin-console) include(${CMAKE_SOURCE_DIR}/3rdparty/unioncode-qtermwidget-0.14.1.cmake) diff --git a/src/plugins/console/console.json b/src/plugins/console/console.json index 2791a0071..b07fbe76c 100644 --- a/src/plugins/console/console.json +++ b/src/plugins/console/console.json @@ -1,5 +1,5 @@ { - "Name" : "console", + "Name" : "plugin-console", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/core/CMakeLists.txt b/src/plugins/core/CMakeLists.txt index dec986089..34cfcb368 100644 --- a/src/plugins/core/CMakeLists.txt +++ b/src/plugins/core/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(core) +project(plugin-core) FILE(GLOB_RECURSE PROJECT_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.h" diff --git a/src/plugins/core/core.json b/src/plugins/core/core.json index b707fc8ab..ab548f0ca 100644 --- a/src/plugins/core/core.json +++ b/src/plugins/core/core.json @@ -1,5 +1,5 @@ { - "Name" : "core", + "Name" : "plugin-core", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", diff --git a/src/plugins/core/gui/plugindetailsview.h b/src/plugins/core/gui/plugindetailsview.h index 6aa359d11..55635ec16 100644 --- a/src/plugins/core/gui/plugindetailsview.h +++ b/src/plugins/core/gui/plugindetailsview.h @@ -47,9 +47,9 @@ class DetailsView : public DTK_WIDGET_NAMESPACE::DWidget "" + tr("Version") + ":" + version + "" "" + tr("Compatible Version") + ":" + compatibleVersion + "" "" + tr("Vendor") + ":" + vendor + "" -// "" + tr("Copyright") + ":" + copyright + "" + "" + tr("Copyright") + ":" + copyright + "" "" + tr("Category") + ":" + category + "" -// "" + tr("URL") + ":" + url + "" + "" + tr("URL") + ":" + url + "" "" + tr("License") + ":" + license + "" "" + tr("Description") + ":" + description + "" "" + tr("Dependency") + ":" + dependency + "" diff --git a/src/plugins/cxx/CMakeLists.txt b/src/plugins/cxx/CMakeLists.txt index e7ae70b5c..271ff9054 100644 --- a/src/plugins/cxx/CMakeLists.txt +++ b/src/plugins/cxx/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(cxx) +project(plugin-cxx) find_package(Qt5 COMPONENTS Xml REQUIRED) include_directories("${CMAKE_CURRENT_SOURCE_DIR}/cmake/project/") diff --git a/src/plugins/cxx/cxxplugin.json b/src/plugins/cxx/cxxplugin.json index 2a21172cc..ce920a7f4 100644 --- a/src/plugins/cxx/cxxplugin.json +++ b/src/plugins/cxx/cxxplugin.json @@ -1,5 +1,5 @@ { - "Name" : "cxx", + "Name" : "plugin-cxx", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The cxx plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/debugger/CMakeLists.txt b/src/plugins/debugger/CMakeLists.txt index 7b080cef3..d8cd5322f 100644 --- a/src/plugins/debugger/CMakeLists.txt +++ b/src/plugins/debugger/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(debugger) +project(plugin-debugger) set(CPPDAP_DIR ${CMAKE_SOURCE_DIR}/3rdparty/cppdap) include_directories(${CPPDAP_DIR}/include) diff --git a/src/plugins/debugger/debugger.json b/src/plugins/debugger/debugger.json index 8b1312a05..65322f14c 100644 --- a/src/plugins/debugger/debugger.json +++ b/src/plugins/debugger/debugger.json @@ -1,5 +1,5 @@ { - "Name" : "debugger", + "Name" : "plugin-debugger", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/filebrowser/CMakeLists.txt b/src/plugins/filebrowser/CMakeLists.txt index ce3ea586a..b6804f612 100644 --- a/src/plugins/filebrowser/CMakeLists.txt +++ b/src/plugins/filebrowser/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(filebrowser) +project(plugin-filebrowser) set(CXX_CPP transceiver/sendevents.cpp diff --git a/src/plugins/filebrowser/filebrowser.json b/src/plugins/filebrowser/filebrowser.json index be3382f1e..d874ad3d6 100644 --- a/src/plugins/filebrowser/filebrowser.json +++ b/src/plugins/filebrowser/filebrowser.json @@ -1,5 +1,5 @@ { - "Name" : "filebrowser", + "Name" : "plugin-filebrowser", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/find/CMakeLists.txt b/src/plugins/find/CMakeLists.txt index 9509f5383..1565a2f65 100644 --- a/src/plugins/find/CMakeLists.txt +++ b/src/plugins/find/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(find) +project(plugin-find) set(CXX_CPP transceiver/findreceiver.cpp diff --git a/src/plugins/find/findplugin.json b/src/plugins/find/findplugin.json index 235ae15b6..e05a8a9b9 100644 --- a/src/plugins/find/findplugin.json +++ b/src/plugins/find/findplugin.json @@ -1,5 +1,5 @@ { - "Name" : "find", + "Name" : "plugin-find", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,7 +11,7 @@ "Description" : "The find plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"}, - {"Name" : "debugger"} + {"Name" : "plugin-codeeditor"}, + {"Name" : "plugin-debugger"} ] } diff --git a/src/plugins/java/CMakeLists.txt b/src/plugins/java/CMakeLists.txt index d6b6abf56..84297c2de 100644 --- a/src/plugins/java/CMakeLists.txt +++ b/src/plugins/java/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(java) +project(plugin-java) find_package(Qt5 COMPONENTS Xml REQUIRED) diff --git a/src/plugins/java/javaplugin.json b/src/plugins/java/javaplugin.json index 06b332168..058e39b33 100644 --- a/src/plugins/java/javaplugin.json +++ b/src/plugins/java/javaplugin.json @@ -1,5 +1,5 @@ { - "Name" : "java", + "Name" : "plugin-java", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The java plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/javascript/CMakeLists.txt b/src/plugins/javascript/CMakeLists.txt index c35e0b348..d82c70b21 100644 --- a/src/plugins/javascript/CMakeLists.txt +++ b/src/plugins/javascript/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(javascript) +project(plugin-javascript) find_package(Qt5 COMPONENTS Xml Script ScriptTools REQUIRED) diff --git a/src/plugins/javascript/javascriptplugin.json b/src/plugins/javascript/javascriptplugin.json index 68e0e7bde..d9607c8dc 100644 --- a/src/plugins/javascript/javascriptplugin.json +++ b/src/plugins/javascript/javascriptplugin.json @@ -1,5 +1,5 @@ { - "Name" : "javascript", + "Name" : "plugin-javascript", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -10,5 +10,5 @@ "Category" : "Languages", "Description" : "The javascript plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", - "Depends" : [{"Name" : "debugger"}] + "Depends" : [{"Name" : "plugin-debugger"}] } diff --git a/src/plugins/option/optioncore/CMakeLists.txt b/src/plugins/option/optioncore/CMakeLists.txt index b380c77ca..d5aa7ec55 100644 --- a/src/plugins/option/optioncore/CMakeLists.txt +++ b/src/plugins/option/optioncore/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(optioncore) +project(plugin-optioncore) find_package(Qt5 COMPONENTS Xml REQUIRED) diff --git a/src/plugins/option/optioncore/optioncore.json b/src/plugins/option/optioncore/optioncore.json index 74c62833b..d1a254a2e 100644 --- a/src/plugins/option/optioncore/optioncore.json +++ b/src/plugins/option/optioncore/optioncore.json @@ -1,5 +1,5 @@ { - "Name" : "optioncore", + "Name" : "plugin-optioncore", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The optioncore plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/performance/CMakeLists.txt b/src/plugins/performance/CMakeLists.txt index 6e65390ab..a08feb396 100644 --- a/src/plugins/performance/CMakeLists.txt +++ b/src/plugins/performance/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.2) include(${CMAKE_SOURCE_DIR}/3rdparty/unioncode-jsonrpccpp.cmake) -project(performance) +project(plugin-performance) configure_file(mainframe/config.h.in config.h) include_directories(${PROJECT_BINARY_DIR}) diff --git a/src/plugins/performance/performance.json b/src/plugins/performance/performance.json index 1daac4ae9..89df5bc6b 100644 --- a/src/plugins/performance/performance.json +++ b/src/plugins/performance/performance.json @@ -1,5 +1,5 @@ { - "Name" : "performance", + "Name" : "plugin-performance", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The performance analysis tools plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/project/CMakeLists.txt b/src/plugins/project/CMakeLists.txt index 23b4bedda..4275b4e71 100644 --- a/src/plugins/project/CMakeLists.txt +++ b/src/plugins/project/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(projectcore) +project(plugin-projectcore) set(CXX_CPP mainframe/projectmodel.cpp diff --git a/src/plugins/project/projectcore.json b/src/plugins/project/projectcore.json index b1f5232b0..568be53ea 100644 --- a/src/plugins/project/projectcore.json +++ b/src/plugins/project/projectcore.json @@ -1,5 +1,5 @@ { - "Name" : "projectcore", + "Name" : "plugin-projectcore", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/python/CMakeLists.txt b/src/plugins/python/CMakeLists.txt index b4bbef3be..09cb8f53a 100644 --- a/src/plugins/python/CMakeLists.txt +++ b/src/plugins/python/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(python) +project(plugin-python) find_package(Qt5 COMPONENTS Xml REQUIRED) diff --git a/src/plugins/python/pythonplugin.json b/src/plugins/python/pythonplugin.json index 46d0f6598..aed8a3eb8 100644 --- a/src/plugins/python/pythonplugin.json +++ b/src/plugins/python/pythonplugin.json @@ -1,5 +1,5 @@ { - "Name" : "python", + "Name" : "plugin-python", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The python plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/recent/CMakeLists.txt b/src/plugins/recent/CMakeLists.txt index d6d34ee4d..c474908a5 100644 --- a/src/plugins/recent/CMakeLists.txt +++ b/src/plugins/recent/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(recent) +project(plugin-recent) set(CXX_CPP mainframe/displayrecentview.cpp diff --git a/src/plugins/recent/recent.json b/src/plugins/recent/recent.json index c3af11330..98aeb0c83 100644 --- a/src/plugins/recent/recent.json +++ b/src/plugins/recent/recent.json @@ -1,5 +1,5 @@ { - "Name" : "recent", + "Name" : "plugin-recent", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", diff --git a/src/plugins/reversedebug/CMakeLists.txt b/src/plugins/reversedebug/CMakeLists.txt index 149178e1a..da4a0dc67 100644 --- a/src/plugins/reversedebug/CMakeLists.txt +++ b/src/plugins/reversedebug/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(reversedebug) +project(plugin-reversedebug) set(CXX_CPP reversedebug.json diff --git a/src/plugins/reversedebug/reversedebug.json b/src/plugins/reversedebug/reversedebug.json index 72f364245..97c5d5f27 100644 --- a/src/plugins/reversedebug/reversedebug.json +++ b/src/plugins/reversedebug/reversedebug.json @@ -1,5 +1,5 @@ { - "Name" : "reversedebug", + "Name" : "plugin-reversedebug", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "realize reverse debug.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d4152bd766615b0b02e76", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/symbol/CMakeLists.txt b/src/plugins/symbol/CMakeLists.txt index a567c633f..d9c7cc146 100644 --- a/src/plugins/symbol/CMakeLists.txt +++ b/src/plugins/symbol/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(symbol) +project(plugin-symbol) find_package(Clang REQUIRED) include_directories(${CLANG_INCLUDE_DIRS}) diff --git a/src/plugins/symbol/symbol.json b/src/plugins/symbol/symbol.json index 4f088ed18..10d3e5350 100644 --- a/src/plugins/symbol/symbol.json +++ b/src/plugins/symbol/symbol.json @@ -1,5 +1,5 @@ { - "Name" : "symbol", + "Name" : "plugin-symbol", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The core plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] } diff --git a/src/plugins/template/CMakeLists.txt b/src/plugins/template/CMakeLists.txt index f989864a2..27617df9a 100644 --- a/src/plugins/template/CMakeLists.txt +++ b/src/plugins/template/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(template) +project(plugin-template) set(CXX_CPP wizard/detailwidget.cpp diff --git a/src/plugins/template/templateplugin.json b/src/plugins/template/templateplugin.json index be0217c5c..90527844e 100644 --- a/src/plugins/template/templateplugin.json +++ b/src/plugins/template/templateplugin.json @@ -1,5 +1,5 @@ { - "Name" : "template", + "Name" : "plugin-template", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The cxx plugin for the unioncode.", "UrlLink" : "https://www.uniontech.com", "Depends" : [ - {"Name" : "core"} + {"Name" : "plugin-core"} ] } diff --git a/src/plugins/valgrind/CMakeLists.txt b/src/plugins/valgrind/CMakeLists.txt index 07bcc2307..36cf9a06e 100644 --- a/src/plugins/valgrind/CMakeLists.txt +++ b/src/plugins/valgrind/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.0.2) -project(valgrind) +project(plugin-valgrind) set(CXX_CPP mainframe/valgrindrunner.cpp diff --git a/src/plugins/valgrind/valgrind.json b/src/plugins/valgrind/valgrind.json index 0f3654411..f0797e9c5 100644 --- a/src/plugins/valgrind/valgrind.json +++ b/src/plugins/valgrind/valgrind.json @@ -1,5 +1,5 @@ { - "Name" : "valgrind", + "Name" : "plugin-valgrind", "Version" : "4.8.2", "CompatVersion" : "4.8.0", "Vendor" : "The Uniontech Software Technology Co., Ltd.", @@ -11,6 +11,6 @@ "Description" : "The codedetection plugin for the unioncode.", "UrlLink" : "https://ecology.chinauos.com/adaptidentification/doc_new/#document3?dirid=656d40c5bd766615b0b02e64&id=656d4172bd766615b0b02e7c", "Depends" : [ - {"Name" : "codeeditor"} + {"Name" : "plugin-codeeditor"} ] }