Skip to content

Commit bfd18c4

Browse files
committed
build: update doc
1 parent 15aafff commit bfd18c4

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ DBLParse是基于DBLP大数据,利用Web和Qt建立的一套高效率的文献
4040
* 聚团分析。作者之间的合作关系可以看成是一个图,每个作者对应一个顶点,任两个作者之间如果存在合作关系,则在两个顶点之间建立连边。这个图中的每一个完全子图我们称为一个聚团(所谓完全子图指的是该子图的任意顶点都和该子图的其他顶点有连边,完全子图的顶点个数称为该完全子图的阶数),统计整个图中各阶完全子图的个数。
4141
* 可视化显示。通过图形化界面,展示作者之间合作关系图及其相关文章信息。
4242

43+
## 相关资料
44+
45+
* [更新日志](docs/CHANGES.md)
46+
* [开发文档](docs/CONTRIBUTING.md)
47+
* [关于DBLP数据](docs/DBLPXML.md)
48+
* [任务书](docs/TASKBOOK.md)
49+
4350
## 依赖
4451

4552
* [DBLP XML数据文件](https://dblp.org/xml/), (CC0 1.0)

docs/CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 更新日志
2-
## v3-preview
2+
## v3.0
33
### 新特性
44
* 支持多关键词搜索
55
* 通过AppImage支持Linux版本
@@ -19,6 +19,7 @@
1919
* 使用GPL v3协议
2020
* Windows下使用MSVC2019构建
2121
* 使用Qt 5.14.2
22+
* 使用C++17
2223
* 使用文件哈希方式建立索引
2324
* 使用7z格式压缩
2425

docs/CONTRIBUTING.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ git clone git@github.com:tootal/DBLParse.git
77
cd DBLParse
88
```
99

10-
如果希望构建最新的开发分支,可以使用以下命令:
11-
12-
```sh
13-
git checkout -b develop origin/develop
14-
```
15-
1610
目前DBLParse对Windows平台和Ubuntu平台提供支持。
1711

1812
[Qt Downloads](http://download.qt.io/official_releases/online_installers/)可以下载到Qt的在线安装包。此外,还可以使用下列镜像来加快下载速度:
@@ -93,3 +87,11 @@ new QWebChannel(qt.webChannelTransport, function(channel) {
9387
`Qt 5.14.2 (MSVC 2017 64-bit)`命令行工具下进入该文件夹,执行命令`windeployqt DBLParse.exe`,即可。
9488

9589

90+
## 参考资料
91+
92+
* [DBLP官网](https://dblp.org/)
93+
* [Qt 学习之路 2](https://www.devbean.net/2012/08/qt-study-road-2-catelog/)
94+
* [Qt 实战一二三](https://blog.csdn.net/liang19890820/article/details/50277095)
95+
* [Qt使用Github-Actions自动化编译](https://zhuanlan.zhihu.com/p/92733295)
96+
* [Networkx Clique](https://networkx.github.io/documentation/networkx-1.9.1/reference/algorithms.clique.html)
97+
* [DBLP文献管理系统设计思路和原理](http://blog.sina.com.cn/s/blog_7d5b0f920102womo.html)

docs/DBLPXML.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# 关于DBLP的一些信息
22
原文:[dblpxml.pdf](https://dblp.uni-trier.de/xml/docu/dblpxml.pdf)
3-
最后更新时间:2020年3月25日。
43

54
## DBLP记录
65
DBLP数据集可从[https://dblp.uni-trier.de/xml/](https://dblp.uni-trier.de/xml/)位置获得。

0 commit comments

Comments
 (0)