Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Nov 24, 2021
1 parent 5433515 commit 044c21e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

## [Unreleased]

## [0.1.2] - 2021-11-24

### Fix

- 修复中文路径问题。

## [0.1.1] - 2021-11-20

### Added
Expand All @@ -16,6 +22,7 @@

- 完成初始版本。

[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...HEAD
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.2...HEAD
[0.1.2]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...v0.1.2
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

如果暂时无法科学上网,可以通过 [FastGit](https://doc.fastgit.org/zh-cn/guide.html#release-%E5%92%8C%E6%BA%90%E7%A0%81%E5%AD%98%E6%A1%A3%E7%9A%84%E4%B8%8B%E8%BD%BD) 镜像加速器下载。

例如,v0.1.1 版本的预编译包下载链接为 [https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.1/caj2pdf-qt-windows-x86_64-0.1.1.zip](https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.1/caj2pdf-qt-windows-x86_64-0.1.1.zip),
例如,v0.1.2 版本的预编译包下载链接为 [https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.2/caj2pdf-qt-windows-x86_64-0.1.2.zip](https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.2/caj2pdf-qt-windows-x86_64-0.1.2.zip),

那么它的 fastgit 镜像下载链接为 [https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.1/caj2pdf-qt-windows-x86_64-0.1.1.zip](https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.1/caj2pdf-qt-windows-x86_64-0.1.1.zip)
那么它的 fastgit 镜像下载链接为 [https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.2/caj2pdf-qt-windows-x86_64-0.1.2.zip](https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.2/caj2pdf-qt-windows-x86_64-0.1.2.zip)

Arch Linux 用户可以从 [AUR](https://aur.archlinux.org/packages/caj2pdf-qt/) 或我的[个人仓库](https://repo.sainnhe.dev/archlinux/)安装。

Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.5)

project(caj2pdf VERSION 0.1.1 LANGUAGES CXX)
project(caj2pdf VERSION 0.1.2 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

Expand Down
2 changes: 1 addition & 1 deletion src/caj2pdf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
CAJ2PDF::CAJ2PDF(QWidget *parent, std::string argv0)
: QDialog(parent)
, ui(new Ui::CAJ2PDF) {
version = "0.1.1";
version = "0.1.2";
ui->setupUi(this);
setWindowFlags(windowFlags() | Qt::WindowContextHelpButtonHint); // 启用窗口右上角的 ?按钮
qApp->installEventFilter(this); // 安装事件
Expand Down

0 comments on commit 044c21e

Please sign in to comment.