Skip to content

Commit e25b758

Browse files
committed
Release v0.1.1
1 parent 444b8d2 commit e25b758

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
# Changelog
22

3-
此项目的所有重大变更将会在这个文档中列出
3+
此项目的所有重要变更都将会在这个文档中列出
44

55
## [Unreleased]
66

7+
## [0.1.1] - 2021-11-20
8+
9+
### Added
10+
11+
- 完成网站。
12+
713
## [0.1.0] - 2021-11-20
814

915
### Added
1016

1117
- 完成初始版本。
1218

13-
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.0...HEAD
19+
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...HEAD
20+
[0.1.1]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.0...v0.1.1
1421
[0.1.0]: https://github.com/sainnhe/caj2pdf-qt/releases/tag/v0.1.0

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020

2121
请移步 [GitHub Issues](https://github.com/sainnhe/caj2pdf-qt/issues)
2222

23+
## 重要变更
24+
25+
请移步 [CHANGELOG.md](./CHANGELOG.md)
26+
2327
## 许可
2428

2529
`/caj2pdf``/mupdf` 目录下的源代码请参考对应的项目;

src/caj2pdf.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
CAJ2PDF::CAJ2PDF(QWidget *parent, std::string argv0)
1313
: QDialog(parent)
1414
, ui(new Ui::CAJ2PDF) {
15-
version = "0.1.0";
15+
version = "0.1.1";
1616
ui->setupUi(this);
1717
setWindowFlags(windowFlags() | Qt::WindowContextHelpButtonHint); // 启用窗口右上角的 ?按钮
1818
qApp->installEventFilter(this); // 安装事件
@@ -183,5 +183,5 @@ bool CAJ2PDF::eventFilter(QObject *object, QEvent *event) {
183183
*
184184
*/
185185
void CAJ2PDF::handleWhatsThisEntry() {
186-
QMessageBox::information(this, tr("关于"), tr(std::string("<h2 align=\"center\">关于本项目</h2><br><p style=\"line-height:150%\">这是一个免费开源的 CAJ 转 PDF 转换器,基于 <a href=\"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/caj2pdf/caj2pdf\">cajpdf</a> 和 <a href=\"https://mupdf.com/\">mupdf</a> 实现。<br>主页:<a href=\"https://github.com/sainnhe/caj2pdf-qt\">https://github.com/sainnhe/caj2pdf-qt</a><br>作者:<a href=\"mailto:[email protected]\">Sainnhe Park</a><br>许可:GPL3<br>版本:" + version + "</p>").c_str()));
186+
QMessageBox::information(this, tr("关于"), tr(std::string("<h2 align=\"center\">关于本项目</h2><br><p style=\"line-height:150%\">这是一个免费开源的 CAJ 转 PDF 转换器,基于 <a href=\"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/caj2pdf/caj2pdf\">cajpdf</a> 和 <a href=\"https://mupdf.com/\">mupdf</a> 实现。<br>主页:<a href=\"https://caj2pdf-qt.sainnhe.dev\">https://caj2pdf-qt.sainnhe.dev</a><br>作者:<a href=\"mailto:[email protected]\">Sainnhe Park</a><br>许可:GPL3<br>版本:" + version + "</p>").c_str()));
187187
}

0 commit comments

Comments
 (0)