Skip to content

Commit e4232e4

Browse files
committed
RELEASE: version 2.9.1
1 parent bd2035b commit e4232e4

File tree

7 files changed

+57
-5
lines changed

7 files changed

+57
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ README **中文** | [English](doc/README-en.md)
1010

1111
**为知笔记+** 项目致力于提高 [为知笔记跨平台客户端](https://github.com/WizTeam/WizQTClient) 的可用性,以达到或者超越 Windows 平台特有客户端的水平。这个目标要求 **为知笔记+** 实现对开发者友好的插件系统,并且促进氛围良好的第三方开发者社区的建成。本项目在遵循 GPLv3 协议的情况下由第三方开发者发起并维护,欢迎任何有意愿参与项目贡献的开发者或用户联系 [email protected]
1212

13-
[![release](https://img.shields.io/badge/release-v2.9.0-green.svg)](https://github.com/altairwei/WizNotePlus/releases) [![license](https://img.shields.io/badge/license-GPLv3-green.svg)](https://github.com/altairwei/WizNotePlus/blob/master/LICENSE)
13+
[![release](https://img.shields.io/badge/release-v2.9.1-green.svg)](https://github.com/altairwei/WizNotePlus/releases) [![license](https://img.shields.io/badge/license-GPLv3-green.svg)](https://github.com/altairwei/WizNotePlus/blob/master/LICENSE)
1414

1515
## 为知社区
1616

build/osx/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.9.0</string>
18+
<string>2.9.1</string>
1919
<key>LSApplicationCategoryType</key>
2020
<string>public.app-category.productivity</string>
2121
<key>CFBundleName</key>

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def parse_version():
4040
"""
4141
Generate build version from local git repository.
4242
"""
43-
wiznoteplus_version = "2.9.0-stable.0"
43+
wiznoteplus_version = "2.9.1-stable.0"
4444
if os.path.exists(".git"):
4545
wiznoteplus_version = subprocess.check_output(
4646
["git", "describe", "--tags"]).decode("utf-8").strip()

dist/changes-2.9.1-en-US.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# WizNotePlus v2.9.1 Release Notes
2+
3+
## System Requirements
4+
5+
Now precompiled WizNotePlus package is built against Qt 5.14.2, and minimum system requirements are listed below:
6+
7+
* Linux: GLIBC_2.17
8+
* MacOS: macOS 10.13
9+
* Windows: Windows 7
10+
11+
## Bug fixes
12+
13+
* Fixed the problem that the editor toolbar button icon is not updated. #192 by @notplus
14+
* Fixed the wrong behavior of tray icon message notification on Linux system. #194
15+
* Fixed the problem that the main window is activated when an external editor or a separate note window is saved, thus interrupting the editing experience. #141
16+
* Fixed the problem that the automatic saving process did not trigger the content change signal when the separate note window was closed. #141
17+
* Fixed some problems when launching and saving external editors. #199
18+
* Fixed the problem that lite/markdown type notes cant not be rendered. #198
19+
* Fixed the failure of the "discard changes" function of the internal editor.
20+
21+
## Known Issues
22+
23+
* On Windows, WizNotePlus don't sync contents with external editor such as Typora by accident. #88
24+
* On MacOS, disable `ShowSystemTrayIcon` will cause application crash for next start. #76
25+
* Document markup will show position shifts on clients of different platforms.
26+
* Notes cannot be saved occasionally when the separate document window is closed.

dist/changes-2.9.1-zh-CN.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# WizNotePlus v2.9.1 更新日志
2+
3+
## 系统要求
4+
5+
预编译的 WizNotePlus 软件包基于 Qt 5.14.2 构建,最低系统需求如下:
6+
7+
* Linux 最低要求 GLIBC_2.17
8+
* MacOS 最低要求 macOS 10.13
9+
* Windows 最低要求 Windows 7
10+
11+
## 问题修复
12+
13+
* 修复编辑器工具栏按钮图标不更新的问题。#192 by @notplus
14+
* 修复 Linux 端系统托盘图标消息通知的错误行为。#194
15+
* 修复外部编辑器或者单独笔记窗口保存时主窗口被激活从而打断编辑体验的问题。#141
16+
* 修复单独编辑窗口关闭时自动保存流程没有触发内容变更信号的问题。#141
17+
* 修复外部编辑器启动和保存时的一些问题。#199
18+
* 修复无法渲染 lite/markdown 类型笔记的问题。#198
19+
* 修复内部编辑器 “丢弃修改” 功能失效的问题。
20+
21+
## 已知问题
22+
23+
* Windows 平台外部编辑器 Typora 保存时,有时会出现 WizNote 不同步更新的状况。#88
24+
* MacOS 下“显示系统托盘图标”设置会导致程序崩溃。#76
25+
* 笔记标注在不同平台的客户端上会有位置偏差。
26+
* 单独笔记窗口在关闭时,偶尔会无法自动保存笔记内容。

doc/README-en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ README [中文](../README.md) | **English**
1010

1111
The **WizNotePlus** project is dedicated to improving the usability of cross-platform client **[WizQTClient](https://github.com/WizTeam/WizQTClient)** to meet or exceed that of the Windows platform-specific client. In order to reach the goal, we need to implement a developer-friendly plugin system and promote the establishment of a third-party developer community with good atmosphere. This project is initiated and maintained by third-party developers in compliance with the GPLv3 agreement. Any developer or user who wishes to participate in the project is welcome to contact `[email protected]` .
1212

13-
[![release](https://img.shields.io/badge/release-v2.9.0-green.svg)](https://github.com/altairwei/WizNotePlus/releases) [![license](https://img.shields.io/badge/license-GPLv3-green.svg)](https://github.com/altairwei/WizNotePlus/blob/master/LICENSE)
13+
[![release](https://img.shields.io/badge/release-v2.9.1-green.svg)](https://github.com/altairwei/WizNotePlus/releases) [![license](https://img.shields.io/badge/license-GPLv3-green.svg)](https://github.com/altairwei/WizNotePlus/blob/master/LICENSE)
1414

1515
## Features
1616

src/WizDef.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <QtGlobal>
55

6-
#define WIZ_CLIENT_VERSION "2.9.0"
6+
#define WIZ_CLIENT_VERSION "2.9.1"
77
// Development stage could be "alpha", "beta", "rc" and "stable"
88
#define WIZ_DEV_STAGE "stable.0"
99

0 commit comments

Comments
 (0)