修改文档

This commit is contained in:
2022-07-14 12:13:13 +08:00
parent 18319e61dd
commit 4063b597a2
6 changed files with 38 additions and 6 deletions
+2
View File
@@ -2,3 +2,5 @@
/cmake-build-debug/ /cmake-build-debug/
/.idea/ /.idea/
/windeploy/ /windeploy/
build
+1 -1
View File
@@ -11,7 +11,7 @@ set(CMAKE_AUTOUIC ON)
# qrc # qrc
#set(QRC_SOURCE_FILES img.qrc) #set(QRC_SOURCE_FILES img.qrc)
# 设置 # 设置
set(CMAKE_PREFIX_PATH "C:/Qt/Qt5.14.2/5.14.2/mingw73_64") set(CMAKE_PREFIX_PATH "/home/tian/Qt5.12.9/5.12.9/gcc_64")
# 添加用到的qt库 # 添加用到的qt库
find_package(Qt5 COMPONENTS find_package(Qt5 COMPONENTS
Core Core

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

+34 -4
View File
@@ -1,8 +1,8 @@
# 重复文件检测工具 # 重复文件检测工具
## demo ## demo
![](screenshoot/img1.png) ![](Docs/screenshoot/img1.png)
![](screenshoot/demo.gif) ![](Docs/screenshoot/demo.gif)
## 环境 ## 环境
- Clion 2022.1.2 - Clion 2022.1.2
@@ -12,12 +12,39 @@
- 单个文件计算md5 - 单个文件计算md5
- 文件夹内重复文件检测 - 文件夹内重复文件检测
## 下载 ## 使用
### windows ### windows release下载
[windowsRelease-v1.0.2](https://github.com/tianzhendong/duplicateFilesCheck/releases/download/v1.0.2/duplicateFilesCheckv1.0.2.zip) [windowsRelease-v1.0.2](https://github.com/tianzhendong/duplicateFilesCheck/releases/download/v1.0.2/duplicateFilesCheckv1.0.2.zip)
[windowsRelease-v1.0.3](https://github.com/tianzhendong/duplicateFilesCheck/releases/download/v1.0.3/windowsRelease-v1.0.3.zip) [windowsRelease-v1.0.3](https://github.com/tianzhendong/duplicateFilesCheck/releases/download/v1.0.3/windowsRelease-v1.0.3.zip)
### Linux编译
下载源码
```bash
git clone git@github.com:tianzhendong/duplicateFilesCheck.git
cd duplicateFilesCheck
```
修改qt路径
```bash
vim CMakeLists.txt
```
将qt路径修改为对应的目录
```CMakeLists
# 设置
set(CMAKE_PREFIX_PATH "/home/tian/Qt5.12.9/5.12.9/gcc_64")
```
编译&运行
```bash
mkdir build
cd build
cmake ..
make
./DuplicateFilesCheck
```
## 更新记录 ## 更新记录
### 20220619 v1.0.2 ### 20220619 v1.0.2
- [x] 增加打开文件目录功能 - [x] 增加打开文件目录功能
@@ -25,3 +52,6 @@
### 20220620 v1.0.3 ### 20220620 v1.0.3
- [x] 修改UI - [x] 修改UI
### 20220714
- [x] 修改文档
+1 -1
View File
@@ -5,7 +5,7 @@
// You may need to build the project (run Qt uic code generator) to get "ui_MainWindow.h" resolved // You may need to build the project (run Qt uic code generator) to get "ui_MainWindow.h" resolved
#include "mainwindow.h" #include "mainwindow.h"
#include "ui_MainWindow.h" #include "ui_mainwindow.h"
#include <QProcess> #include <QProcess>
MainWindow::MainWindow(QWidget *parent) : MainWindow::MainWindow(QWidget *parent) :