File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 0.1.2] - 2021-11-24
8
+
9
+ ### Fix
10
+
11
+ - 修复中文路径问题。
12
+
7
13
## [ 0.1.1] - 2021-11-20
8
14
9
15
### Added
16
22
17
23
- 完成初始版本。
18
24
19
- [ unreleased ] : https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...HEAD
25
+ [ unreleased ] : https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.2...HEAD
26
+ [ 0.1.2 ] : https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.1...v0.1.2
20
27
[ 0.1.1 ] : https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.0...v0.1.1
21
28
[ 0.1.0 ] : https://github.com/sainnhe/caj2pdf-qt/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 10
10
11
11
如果暂时无法科学上网,可以通过 [ 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 ) 镜像加速器下载。
12
12
13
- 例如,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 ) ,
13
+ 例如,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 ) ,
14
14
15
- 那么它的 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 ) 。
15
+ 那么它的 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 ) 。
16
16
17
17
Arch Linux 用户可以从 [ AUR] ( https://aur.archlinux.org/packages/caj2pdf-qt/ ) 或我的[ 个人仓库] ( https://repo.sainnhe.dev/archlinux/ ) 安装。
18
18
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.5 )
2
2
3
- project (caj2pdf VERSION 0.1.1 LANGUAGES CXX )
3
+ project (caj2pdf VERSION 0.1.2 LANGUAGES CXX )
4
4
5
5
set (CMAKE_INCLUDE_CURRENT_DIR ON )
6
6
Original file line number Diff line number Diff line change 12
12
CAJ2PDF::CAJ2PDF (QWidget *parent, std::string argv0)
13
13
: QDialog(parent)
14
14
, ui(new Ui::CAJ2PDF) {
15
- version = " 0.1.1 " ;
15
+ version = " 0.1.2 " ;
16
16
ui->setupUi (this );
17
17
setWindowFlags (windowFlags () | Qt::WindowContextHelpButtonHint); // 启用窗口右上角的 ?按钮
18
18
qApp->installEventFilter (this ); // 安装事件
You can’t perform that action at this time.
0 commit comments