Skip to content

Commit

Permalink
Release v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sainnhe committed Mar 31, 2024
1 parent 1fc1ffc commit 5803dcd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

## [0.1.6] - 2024-03-31

### Added

- 支持 .kdh 和 .nh 文件

### Changed
Expand Down Expand Up @@ -64,7 +68,8 @@

- 完成初始版本。

[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.5...HEAD
[unreleased]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.6...HEAD
[0.1.6]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.5...v0.1.6
[0.1.5]: https://github.com/sainnhe/caj2pdf-qt/compare/v0.1.4...v0.1.5
[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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)

project(
caj2pdf
VERSION 0.1.5
VERSION 0.1.6
LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ title: CAJ2PDF Qt
description: CAJ 转 PDF 转换器(GUI 版本)
show_downloads: true
github:
windows_url: https://ghproxy.com/https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.5/caj2pdf-qt-windows-x86_64-v0.1.5.zip
macos_url: https://ghproxy.com/https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.5/caj2pdf-qt-macos-x86_64-v0.1.5.zip
windows_url: https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.6/caj2pdf-qt-windows-x86_64-v0.1.6.zip
macos_url: https://github.com/sainnhe/caj2pdf-qt/releases/download/v0.1.6/caj2pdf-qt-macos-x86_64-v0.1.6.zip
2 changes: 1 addition & 1 deletion src/caj2pdf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "caj2pdf.hpp"

CAJ2PDF::CAJ2PDF(QWidget *parent, std::string argv0) : QDialog(parent) {
version = "0.1.5"; // 设置版本号
version = "0.1.6"; // 设置版本号
this->resize(700, 500); // 调整窗口大小
setAcceptDrops(true); // 设置支持鼠标推拽
setWindowFlags(windowFlags() |
Expand Down

0 comments on commit 5803dcd

Please sign in to comment.