From 14c46ce9645be38fd1923cefc715928a1f902c9e Mon Sep 17 00:00:00 2001 From: shenmo Date: Sun, 17 Apr 2022 18:55:57 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20=20=20=20?= =?UTF-8?q?=20=E6=B7=BB=E5=8A=A0=E5=9C=A8=E6=98=9F=E7=81=AB=E5=95=86?= =?UTF-8?q?=E5=BA=97=E6=89=93=E5=BC=80=E5=85=A5=E5=8F=A3=20=09=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=EF=BC=9A=20=20=20=20=20=E6=B7=BB=E5=8A=A0=E5=9C=A8?= =?UTF-8?q?=E6=98=9F=E7=81=AB=E5=95=86=E5=BA=97=E6=89=93=E5=BC=80=E5=85=A5?= =?UTF-8?q?=E5=8F=A3=20=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20=20=20=20=20?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E6=89=93=E5=BC=80=E5=8F=98=E6=88=90=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E5=BA=94=E7=94=A8=20=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20?= =?UTF-8?q?=20=20=20=20=E7=89=88=E6=9C=AC=E5=8F=B7=20=09=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=EF=BC=9A=20=20=20=20=20=E7=89=88=E6=9C=AC=E5=8F=B7=E5=92=8C?= =?UTF-8?q?=E6=96=87=E6=A1=88=20=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20=20=20=20?= =?UTF-8?q?=20=E5=85=B3=E9=97=AD=E4=BA=86=E6=A8=A1=E7=B3=8A=E3=80=82?= =?UTF-8?q?=E8=BF=99=E5=9C=A8=E9=9D=9Edde=E4=B8=8A=E6=98=AF=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E7=81=BE=E9=9A=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appmanagermodel.cpp | 12 +- appmanagermodel.h | 1 + appmanagerwidget.cpp | 18 ++- ccc-app-manager.pro.user | 269 +++++++++++++++++++++++++++++++++++++++ debian/control | 2 +- main.cpp | 6 +- mainwindow.cpp | 19 +-- 7 files changed, 310 insertions(+), 17 deletions(-) create mode 100644 ccc-app-manager.pro.user diff --git a/appmanagermodel.cpp b/appmanagermodel.cpp index 64537d9..61932fe 100644 --- a/appmanagermodel.cpp +++ b/appmanagermodel.cpp @@ -1,6 +1,6 @@ #include "appmanagermodel.h" #include "appmanagerjob.h" - +#include #include #include #include @@ -102,6 +102,16 @@ void AppManagerModel::openStoreAppDetailPage(const QString &pkgName) proc.waitForFinished(); } +void AppManagerModel::openSpkStoreAppDetailPage(const QString &pkgName) +{ + QProcess spkopen; + QString cmd = QString("notify-send shenmo \"\因为无法获取分类信息,暂时没有实现这个功能\"\ "); + spkopen.start(cmd); + spkopen.waitForStarted(); + spkopen.waitForFinished(); + +} + QString AppManagerModel::getDownloadDirPath() const { return m_appManagerJob->getDownloadDirPath(); diff --git a/appmanagermodel.h b/appmanagermodel.h index 088ae2b..3dec67d 100644 --- a/appmanagermodel.h +++ b/appmanagermodel.h @@ -30,6 +30,7 @@ public: QList getShowingAppInfoList() const; void openStoreAppDetailPage(const QString &pkgName); + void openSpkStoreAppDetailPage(const QString &pkgName); QString getDownloadDirPath() const; QString getPkgBuildDirPath() const; diff --git a/appmanagerwidget.cpp b/appmanagerwidget.cpp index be88498..68c326e 100644 --- a/appmanagerwidget.cpp +++ b/appmanagerwidget.cpp @@ -222,7 +222,7 @@ AppManagerWidget::AppManagerWidget(QWidget *parent) firstLineBottomLayout->addWidget(uninstallBtn); firstLineBottomLayout->addSpacing(10); - QPushButton *gotoAppStoreBtn = new QPushButton("在应用商店中查看", this); + QPushButton *gotoAppStoreBtn = new QPushButton("在深度应用商店中查看", this); gotoAppStoreBtn->setMaximumWidth(170); firstLineBottomLayout->addWidget(gotoAppStoreBtn); @@ -237,6 +237,12 @@ AppManagerWidget::AppManagerWidget(QWidget *parent) firstLineBottomLayout->addWidget(getPkgFromLocalBtn); firstLineBottomLayout->addSpacing(10); + firstLineBottomLayout->addSpacing(10); + QPushButton *gotoSpkAppStoreBtn = new QPushButton("在星火应用商店中查看", this); + gotoSpkAppStoreBtn->setMaximumWidth(170); + firstLineBottomLayout->addWidget(gotoSpkAppStoreBtn); + firstLineBottomLayout->addSpacing(10); + // 左置顶 firstLineBottomLayout->addStretch(1); @@ -302,10 +308,14 @@ AppManagerWidget::AppManagerWidget(QWidget *parent) this->m_model->notifyThreadUninstallPkg(m_showingAppInfo.pkgName); }); - // 跳转到商店 + // 跳转到深度商店 connect(gotoAppStoreBtn, &QPushButton::clicked, this, [this](bool) { this->m_model->openStoreAppDetailPage(m_showingAppInfo.pkgName); }); + //跳转到星火商店 + connect(gotoSpkAppStoreBtn, &QPushButton::clicked, this, [this](bool) { + this->m_model->openSpkStoreAppDetailPage(m_showingAppInfo.pkgName); + }); // 在线获取安装包 connect(getPkgFromSrvBtn, &QPushButton::clicked, this, [this](bool) { @@ -358,8 +368,8 @@ AppManagerWidget::AppManagerWidget(QWidget *parent) // model信号连接 connect(m_model, &AppManagerModel::loadAppInfosFinished, this, [this] { m_appInfoList = m_model->getAppInfosList(); - // 显示所有应用 - Q_EMIT m_filterMenu->triggered(m_showAllAppAction); + // 默认显示界面应用 + Q_EMIT m_filterMenu->triggered(m_showGuiAppAction); this->setLoading(false); }); diff --git a/ccc-app-manager.pro.user b/ccc-app-manager.pro.user new file mode 100644 index 0000000..38f545c --- /dev/null +++ b/ccc-app-manager.pro.user @@ -0,0 +1,269 @@ + + + + + + EnvironmentId + {e449a305-5aa8-4e93-ba50-fb0fb2456d52} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + false + true + false + 0 + true + true + 0 + 8 + true + false + 1 + true + true + true + *.md, *.MD, Makefile + false + true + + + + ProjectExplorer.Project.PluginSettings + + + true + false + true + true + true + true + + + 0 + true + + + + ProjectExplorer.Project.Target.0 + + Desktop + 桌面 + 桌面 + {1faf3a27-8017-40cf-a22f-a590b11a0980} + 2 + 0 + 0 + + 0 + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + + + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + + + 0 + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Profile + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + 0 + + 3 + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + ProjectExplorer.DefaultDeployConfiguration + + 1 + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + false + false + 1000 + + true + true + + 2 + + Qt4ProjectManager.Qt4RunConfiguration:/home/shenmo/Desktop/ccc-app-manager/ccc-app-manager.pro + /home/shenmo/Desktop/ccc-app-manager/ccc-app-manager.pro + false + true + true + false + true + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile + + 1 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + + diff --git a/debian/control b/debian/control index cd355a9..9a2f348 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Section: unknown Installed-Size: 3985 Maintainer: cloud8352 <243768648@qq.com> Architecture: amd64 -Version: 0.0.1 +Version: 0.0.2 Depends: libc6 (>= 2.28), libgcc1 (>= 1:3.4), libgl1, libqt5core5a (>= 5.11.0~rc1), libqt5gui5 (>= 5.8.0), libqt5multimedia5 (>= 5.6.0~beta), libqt5network5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2) Build-Depends: debhelper (>= 11), libdtkwidget-dev, diff --git a/main.cpp b/main.cpp index b2ee741..4551867 100644 --- a/main.cpp +++ b/main.cpp @@ -13,14 +13,14 @@ int main(int argc, char *argv[]) a.setAttribute(Qt::AA_UseHighDpiPixmaps); a.setOrganizationName("ccc"); a.setApplicationName("ccc-app-manager"); - a.setApplicationVersion(DApplication::buildVersion("0.0.1")); + a.setApplicationVersion(DApplication::buildVersion("0.0.2")); //change version here a.loadTranslator(); a.setApplicationDisplayName(QObject::tr("App Manager")); a.setStyle("chameleon"); a.setWindowIcon(QIcon::fromTheme("chromium-app-list")); a.setProductIcon(QIcon::fromTheme("chromium-app-list")); - a.setApplicationDescription("app manager"); - a.setQuitOnLastWindowClosed(false); + a.setApplicationDescription("ccc-app-manager是一款方便的第三方应用管理工具\n支持应用的安装,卸载,安装包提取等功能"); + a.setQuitOnLastWindowClosed(true);//关闭主窗口后关闭关于 MainWindow w; w.show(); diff --git a/mainwindow.cpp b/mainwindow.cpp index 81a72fd..ca9b281 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -10,7 +10,8 @@ MainWindow::MainWindow(QWidget *parent) : DMainWindow(parent) - , m_centralWidgetBlurBg(nullptr) +// , m_centralWidgetBlurBg(nullptr) +// 在非dde下无法正常blur导致标题栏难以看清 { setMinimumSize(1000, 600); // 设置背景 @@ -21,13 +22,15 @@ MainWindow::MainWindow(QWidget *parent) titlebar()->setIcon(QIcon::fromTheme("chromium-app-list")); titlebar()->setTitle("应用管理器"); titlebar()->setFixedHeight(40); - titlebar()->setBackgroundTransparent(true); + titlebar()->setBackgroundTransparent(false);//透明就彻底啥也看不见了 - m_centralWidgetBlurBg = new DBlurEffectWidget(this); - m_centralWidgetBlurBg->setBlendMode(DBlurEffectWidget::BlendMode::BehindWindowBlend); - m_centralWidgetBlurBg->setMaskAlpha(30); - m_centralWidgetBlurBg->setFixedSize(size()); - m_centralWidgetBlurBg->lower(); +// m_centralWidgetBlurBg = new DBlurEffectWidget(this); +// m_centralWidgetBlurBg->setBlendMode(DBlurEffectWidget::BlendMode::BehindWindowBlend); +// m_centralWidgetBlurBg->setMaskAlpha(30); +// m_centralWidgetBlurBg->setFixedSize(size()); +// m_centralWidgetBlurBg->lower(); + +// 透明+blur确实很好看,但是在非dde上是一场灾难。。。 DFrame *centralWidget = new DFrame(this); centralWidget->setContentsMargins(3, 0, 3, 3); @@ -49,7 +52,7 @@ void MainWindow::resizeEvent(QResizeEvent *event) { DMainWindow::resizeEvent(event); - m_centralWidgetBlurBg->setFixedSize(size()); +// m_centralWidgetBlurBg->setFixedSize(size()); } void MainWindow::closeEvent(QCloseEvent *event) -- Gitee From 2aae609ccae7ab69482719e74c9f3b20afb6671e Mon Sep 17 00:00:00 2001 From: shenmo Date: Sun, 17 Apr 2022 18:58:47 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20=20=20=20?= =?UTF-8?q?=20=E6=8F=90=E5=8D=87=E5=9C=A8=E9=9D=9Edde=E4=B8=8B=E7=9A=84?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=95=88=E6=9E=9C=E3=80=82=E5=AF=B9=E6=AF=94?= =?UTF-8?q?=E5=8F=82=E8=80=83=20https://www.deepinos.org/d/622-elementary-?= =?UTF-8?q?os=20=E9=99=A4=E6=AD=A4=E4=BB=A5=E5=A4=96=EF=BC=8CXDG=5FCURRENT?= =?UTF-8?q?=5FDESKTOP=3D"Deepin"=E4=BC=9A=E8=A7=A3=E5=86=B3=E5=8F=8C?= =?UTF-8?q?=E6=A0=87=E9=A2=98=E6=A0=8F=E9=97=AE=E9=A2=98=EF=BC=8C=E7=9B=AE?= =?UTF-8?q?=E5=89=8D=E4=B8=8D=E7=9F=A5=E9=81=93=E6=80=8E=E4=B9=88=E8=A7=A3?= =?UTF-8?q?=E5=86=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ccc-app-manager.pro.user | 3 +-- com.github.ccc-app-manager.desktop | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ccc-app-manager.pro.user b/ccc-app-manager.pro.user index 38f545c..65ad72c 100644 --- a/ccc-app-manager.pro.user +++ b/ccc-app-manager.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -249,7 +249,6 @@ true false true - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile 1 diff --git a/com.github.ccc-app-manager.desktop b/com.github.ccc-app-manager.desktop index 4ee1894..7e7d851 100644 --- a/com.github.ccc-app-manager.desktop +++ b/com.github.ccc-app-manager.desktop @@ -4,7 +4,7 @@ Name[zh_CN]=应用管理器 Categories=Utility; Comment=app manager,app,system Encoding=UTF-8 -Exec=/opt/apps/com.github.ccc-app-manager/files/ccc-app-manager +Exec=/opt/apps/com.github.ccc-app-manager/files/ccc-app-manager -platformtheme deepin Icon=/opt/apps/com.github.ccc-app-manager/files/ccc-app-manager.svg Name=com.github.ccc-app-manager.desktop StartupNotify=true -- Gitee From 2712043644afc1bbaccb3babd7863f4744328efe Mon Sep 17 00:00:00 2001 From: shenmo Date: Sun, 17 Apr 2022 11:03:13 +0000 Subject: [PATCH 3/5] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20ccc-?= =?UTF-8?q?app-manager.pro.user?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ccc-app-manager.pro.user | 268 --------------------------------------- 1 file changed, 268 deletions(-) delete mode 100644 ccc-app-manager.pro.user diff --git a/ccc-app-manager.pro.user b/ccc-app-manager.pro.user deleted file mode 100644 index 65ad72c..0000000 --- a/ccc-app-manager.pro.user +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - EnvironmentId - {e449a305-5aa8-4e93-ba50-fb0fb2456d52} - - - ProjectExplorer.Project.ActiveTarget - 0 - - - ProjectExplorer.Project.EditorSettings - - true - false - true - - Cpp - - CppGlobal - - - - QmlJS - - QmlJSGlobal - - - 2 - UTF-8 - false - 4 - false - 80 - true - true - 1 - false - true - false - 0 - true - true - 0 - 8 - true - false - 1 - true - true - true - *.md, *.MD, Makefile - false - true - - - - ProjectExplorer.Project.PluginSettings - - - true - false - true - true - true - true - - - 0 - true - - - - ProjectExplorer.Project.Target.0 - - Desktop - 桌面 - 桌面 - {1faf3a27-8017-40cf-a22f-a590b11a0980} - 2 - 0 - 0 - - 0 - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug - - - true - QtProjectManager.QMakeBuildStep - false - - - - true - Qt4ProjectManager.MakeStep - - 2 - Build - Build - ProjectExplorer.BuildSteps.Build - - - - true - Qt4ProjectManager.MakeStep - clean - - 1 - Clean - Clean - ProjectExplorer.BuildSteps.Clean - - 2 - false - - - Debug - Qt4ProjectManager.Qt4BuildConfiguration - 2 - - - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release - - - true - QtProjectManager.QMakeBuildStep - false - - - - true - Qt4ProjectManager.MakeStep - - 2 - Build - Build - ProjectExplorer.BuildSteps.Build - - - - true - Qt4ProjectManager.MakeStep - clean - - 1 - Clean - Clean - ProjectExplorer.BuildSteps.Clean - - 2 - false - - - Release - Qt4ProjectManager.Qt4BuildConfiguration - 0 - 0 - - - 0 - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile - /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile - - - true - QtProjectManager.QMakeBuildStep - false - - - - true - Qt4ProjectManager.MakeStep - - 2 - Build - Build - ProjectExplorer.BuildSteps.Build - - - - true - Qt4ProjectManager.MakeStep - clean - - 1 - Clean - Clean - ProjectExplorer.BuildSteps.Clean - - 2 - false - - - Profile - Qt4ProjectManager.Qt4BuildConfiguration - 0 - 0 - 0 - - 3 - - - 0 - Deploy - Deploy - ProjectExplorer.BuildSteps.Deploy - - 1 - - false - ProjectExplorer.DefaultDeployConfiguration - - 1 - - dwarf - - cpu-cycles - - - 250 - - -e - cpu-cycles - --call-graph - dwarf,4096 - -F - 250 - - -F - true - 4096 - false - false - 1000 - - true - true - - 2 - - Qt4ProjectManager.Qt4RunConfiguration:/home/shenmo/Desktop/ccc-app-manager/ccc-app-manager.pro - /home/shenmo/Desktop/ccc-app-manager/ccc-app-manager.pro - false - true - true - false - true - - 1 - - - - ProjectExplorer.Project.TargetCount - 1 - - - ProjectExplorer.Project.Updater.FileVersion - 22 - - - Version - 22 - - -- Gitee From 02a3b742d0899e80f0285d4cfa9ec2e6f3953715 Mon Sep 17 00:00:00 2001 From: shenmo Date: Mon, 18 Apr 2022 12:04:51 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=09=E4=BF=AE=E6=94=B9=EF=BC=9A=20=20=20=20?= =?UTF-8?q?=20=E6=B7=BB=E5=8A=A0=E5=8D=B8=E8=BD=BD=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E9=80=9A=E7=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- appmanagermodel.cpp | 6 + ccc-app-manager.pro.user | 267 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 273 insertions(+) create mode 100644 ccc-app-manager.pro.user diff --git a/appmanagermodel.cpp b/appmanagermodel.cpp index 61932fe..bb1cc1d 100644 --- a/appmanagermodel.cpp +++ b/appmanagermodel.cpp @@ -4,6 +4,7 @@ #include #include #include +#include using namespace AM; @@ -162,6 +163,11 @@ void AppManagerModel::initConnection() connect(this, &AppManagerModel::notifyThreadUninstallPkg, m_appManagerJob, &AppManagerJob::uninstallPkg); connect(m_appManagerJob, &AppManagerJob::uninstallPkgFinished, this, [this](const QString &pkgName) { + QProcess uninstnotify; + QString cmd = QString("notify-send ccc-app-manager \"\软件包 ")+pkgName+QString(" 已卸载\"\ "); + uninstnotify.start(cmd); + uninstnotify.waitForStarted(); + uninstnotify.waitForFinished(); qInfo() << pkgName << "uninstalled"; }); diff --git a/ccc-app-manager.pro.user b/ccc-app-manager.pro.user new file mode 100644 index 0000000..5e313c2 --- /dev/null +++ b/ccc-app-manager.pro.user @@ -0,0 +1,267 @@ + + + + + + EnvironmentId + {e449a305-5aa8-4e93-ba50-fb0fb2456d52} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + false + true + false + 0 + true + true + 0 + 8 + true + false + 1 + true + true + true + *.md, *.MD, Makefile + false + true + + + + ProjectExplorer.Project.PluginSettings + + + true + false + true + true + true + true + + + 0 + true + + + + ProjectExplorer.Project.Target.0 + + Desktop + 桌面 + 桌面 + {1faf3a27-8017-40cf-a22f-a590b11a0980} + 0 + 0 + 0 + + 0 + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Debug + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + + + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Release + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + + + 0 + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile + /home/shenmo/Desktop/build-ccc-app-manager-unknown-Profile + + + true + QtProjectManager.QMakeBuildStep + false + + + + true + Qt4ProjectManager.MakeStep + + 2 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + true + Qt4ProjectManager.MakeStep + clean + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Profile + Qt4ProjectManager.Qt4BuildConfiguration + 0 + 0 + 0 + + 3 + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + ProjectExplorer.DefaultDeployConfiguration + + 1 + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + false + false + 1000 + + true + true + + 2 + + ProjectExplorer.CustomExecutableRunConfiguration + + false + true + false + true + + 1 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + + -- Gitee From 0598af79be0c8e3ca68747b84956481e91b0cf7d Mon Sep 17 00:00:00 2001 From: shenmo Date: Mon, 18 Apr 2022 12:06:17 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=09=E6=96=B0=E6=96=87=E4=BB=B6=EF=BC=9A=20?= =?UTF-8?q?=20=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a9d35c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.user -- Gitee