Skip to content

Commit

Permalink
Release v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Apr 22, 2022
1 parent 81f7863 commit a4d815d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

## [Unreleased]

## [0.1.4] - 2022-04-22

### Added

- 文件多选
- 文件拖拽

### Fix

- 用 QProcess::execute 来同步执行命令

### Removed

- 删除 Qt6::Core5Compat

## [0.1.3] - 2021-11-27

### Fix
Expand All @@ -28,7 +43,8 @@

- 完成初始版本。

[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.3...HEAD
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.4...HEAD
[0.1.4]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.2...v0.1.3
[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
Expand Down
2 changes: 1 addition & 1 deletion 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.3 LANGUAGES CXX)
project(caj2pdf VERSION 0.1.4 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

Expand Down
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.3 版本的下载链接为 [https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.3/caj2pdf-qt-windows-x86_64-0.1.3.zip](https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.3/caj2pdf-qt-windows-x86_64-0.1.3.zip),
例如,v0.1.4 版本的下载链接为 [https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.4/caj2pdf-qt-windows-x86_64-0.1.4.zip](https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.4/caj2pdf-qt-windows-x86_64-0.1.4.zip),

那么它的 fastgit 镜像下载链接为 [https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.3/caj2pdf-qt-windows-x86_64-0.1.3.zip](https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.3/caj2pdf-qt-windows-x86_64-0.1.3.zip)
那么它的 fastgit 镜像下载链接为 [https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.4/caj2pdf-qt-windows-x86_64-0.1.4.zip](https://download.fastgit.org/sainnhe/caj2pdf-qt/releases/download/v0.1.4/caj2pdf-qt-windows-x86_64-0.1.4.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/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.3";
version = "0.1.4";
ui->setupUi(this);
setAcceptDrops(true); // 设置支持鼠标推拽
setWindowFlags(windowFlags() |
Expand Down

0 comments on commit a4d815d

Please sign in to comment.