-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
# Changelog | ||
|
||
此项目的所有重大变更将会在这个文档中列出。 | ||
此项目的所有重要变更都将会在这个文档中列出。 | ||
|
||
## [Unreleased] | ||
|
||
## [0.1.1] - 2021-11-20 | ||
|
||
### Added | ||
|
||
- 完成网站。 | ||
|
||
## [0.1.0] - 2021-11-20 | ||
|
||
### Added | ||
|
||
- 完成初始版本。 | ||
|
||
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.0...HEAD | ||
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...HEAD | ||
[0.1.1]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.0...v0.1.1 | ||
[0.1.0]: https://github.com/sainnhe/caj2pdf-qt/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
CAJ2PDF::CAJ2PDF(QWidget *parent, std::string argv0) | ||
: QDialog(parent) | ||
, ui(new Ui::CAJ2PDF) { | ||
version = "0.1.0"; | ||
version = "0.1.1"; | ||
ui->setupUi(this); | ||
setWindowFlags(windowFlags() | Qt::WindowContextHelpButtonHint); // 启用窗口右上角的 ?按钮 | ||
qApp->installEventFilter(this); // 安装事件 | ||
|
@@ -183,5 +183,5 @@ bool CAJ2PDF::eventFilter(QObject *object, QEvent *event) { | |
* | ||
*/ | ||
void CAJ2PDF::handleWhatsThisEntry() { | ||
QMessageBox::information(this, tr("关于"), tr(std::string("<h2 align=\"center\">关于本项目</h2><br><p style=\"line-height:150%\">这是一个免费开源的 CAJ 转 PDF 转换器,基于 <a href=\"https://github.com/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())); | ||
QMessageBox::information(this, tr("关于"), tr(std::string("<h2 align=\"center\">关于本项目</h2><br><p style=\"line-height:150%\">这是一个免费开源的 CAJ 转 PDF 转换器,基于 <a href=\"https://github.com/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())); | ||
} |