Skip to content

Commit db2e8ab

Browse files
committed
RELEASE: bump version to 2.10.2
1 parent 2c7430f commit db2e8ab

File tree

11 files changed

+109
-59
lines changed

11 files changed

+109
-59
lines changed

CMakeLists.txt

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

1313
cmake_minimum_required(VERSION 3.0)
1414

15-
project(WizNotePlus VERSION 2.10.1)
15+
project(WizNotePlus VERSION 2.10.2)
1616

1717
#============================================================================
1818
# Options and Variables

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

13-
[![release](https://img.shields.io/badge/release-v2.10.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) [![build](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml/badge.svg)](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml)
13+
[![release](https://img.shields.io/badge/release-v2.10.2-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) [![build](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml/badge.svg)](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml)
1414

1515
## 为知社区
1616

build/common/wiznote2.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Name=WizNotePlus
33
Name[en]=WizNotePlus
44
Name[zh_CN]=为知笔记 Plus
55
Name[zh_TW]=爲知筆記 Plus
6-
X-AppImage-Version=2.10.1
6+
X-AppImage-Version=2.10.2
77
Comment=cloud based note-taking application
88
Comment[zh_CN]=开源云笔记
99
Comment[zh_TW]=開源雲筆記

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.10.1</string>
18+
<string>2.10.2</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.10.1-stable.0"
43+
wiznoteplus_version = "2.10.2-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.10.2-en-US.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# WizNotePlus v2.10.2 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+
The following updates were sponsored by @JingbenShi668
14+
15+
* Disable command+up/down shortcuts on Mac. #214
16+
* Lower the minimum width limit of the main window. #215
17+
* Add "Close" button to the "Search and Replace Dialog" of the internal rich text editor. #218
18+
* Modify rich text editor code block style to fix text overflow issue. #216
19+
20+
## Known Issues
21+
22+
* On Windows, WizNotePlus don't sync contents with external editor such as Typora by accident. #88
23+
* On MacOS, disable `ShowSystemTrayIcon` will cause application crash for next start. #76
24+
* Document markup will show position shifts on clients of different platforms.
25+
* Notes cannot be saved occasionally when the separate document window is closed.

dist/changes-2.10.2-zh-CN.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# WizNotePlus v2.10.2 更新日志
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+
以下更新由 @JingbenShi668 赞助:
14+
15+
* 在 Mac 端禁用 command+up/down 快捷键。#214
16+
* 降低软件主窗口最小宽度的限制。#215
17+
* 为内部富文本编辑器 “搜索替换对话框” 添加 “关闭” 按钮。#218
18+
* 修改富文本编辑器代码块样式,解决文本溢出问题。#216
19+
20+
## 已知问题
21+
22+
* Windows 平台外部编辑器 Typora 保存时,有时会出现 WizNote 不同步更新的状况。#88
23+
* MacOS 下“显示系统托盘图标”设置会导致程序崩溃。#76
24+
* 笔记标注在不同平台的客户端上会有位置偏差。
25+
* 单独笔记窗口在关闭时,偶尔会无法自动保存笔记内容。

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.10.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) [![build](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml/badge.svg)](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml)
13+
[![release](https://img.shields.io/badge/release-v2.10.2-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) [![build](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml/badge.svg)](https://github.com/altairwei/WizNotePlus/actions/workflows/build.yml)
1414

1515
## Features
1616

i18n/wiznote_zh_CN.ts

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,12 +1473,12 @@
14731473
<translation>下载附件 %1 ...</translation>
14741474
</message>
14751475
<message>
1476-
<location filename="../src/WizMainWindow.cpp" line="2369"/>
1476+
<location filename="../src/WizMainWindow.cpp" line="2367"/>
14771477
<source>Your {p} business service has expired.</source>
14781478
<translation>您的{p}企业服务已到期。</translation>
14791479
</message>
14801480
<message>
1481-
<location filename="../src/WizMainWindow.cpp" line="2371"/>
1481+
<location filename="../src/WizMainWindow.cpp" line="2369"/>
14821482
<location filename="../src/sync/WizSync.cpp" line="18"/>
14831483
<source>Group notes count limit exceeded!</source>
14841484
<translation>群组笔记数目超出限制!</translation>
@@ -1641,15 +1641,15 @@
16411641
<translation>%1 的团队服务已到期,暂时无法上传新创建或修改的笔记,请及时付费哦。</translation>
16421642
</message>
16431643
<message>
1644-
<location filename="../src/WizMainWindow.cpp" line="2366"/>
1644+
<location filename="../src/WizMainWindow.cpp" line="2364"/>
16451645
<location filename="../src/sync/WizSync.cpp" line="676"/>
16461646
<location filename="../src/sync/WizSync.cpp" line="845"/>
16471647
<location filename="../src/sync/WizSync.cpp" line="1005"/>
16481648
<source>User service of has expired, please upgrade to VIP.</source>
16491649
<translation>用户服务已到期,请升级到VIP。</translation>
16501650
</message>
16511651
<message>
1652-
<location filename="../src/WizMainWindow.cpp" line="2363"/>
1652+
<location filename="../src/WizMainWindow.cpp" line="2361"/>
16531653
<location filename="../src/sync/WizSync.cpp" line="684"/>
16541654
<location filename="../src/sync/WizSync.cpp" line="853"/>
16551655
<location filename="../src/sync/WizSync.cpp" line="1011"/>
@@ -4377,11 +4377,11 @@ Go to create a note</source>
43774377
<location filename="../src/WizMainWindow.cpp" line="1310"/>
43784378
<location filename="../src/WizMainWindow.cpp" line="1316"/>
43794379
<location filename="../src/WizMainWindow.cpp" line="1336"/>
4380-
<location filename="../src/WizMainWindow.cpp" line="2348"/>
4381-
<location filename="../src/WizMainWindow.cpp" line="2404"/>
4382-
<location filename="../src/WizMainWindow.cpp" line="2407"/>
4383-
<location filename="../src/WizMainWindow.cpp" line="2410"/>
4384-
<location filename="../src/WizMainWindow.cpp" line="4071"/>
4380+
<location filename="../src/WizMainWindow.cpp" line="2346"/>
4381+
<location filename="../src/WizMainWindow.cpp" line="2402"/>
4382+
<location filename="../src/WizMainWindow.cpp" line="2405"/>
4383+
<location filename="../src/WizMainWindow.cpp" line="2408"/>
4384+
<location filename="../src/WizMainWindow.cpp" line="4069"/>
43854385
<source>Info</source>
43864386
<translation>提示</translation>
43874387
</message>
@@ -4466,83 +4466,83 @@ Go to create a note</source>
44664466
<translation>帐户设置</translation>
44674467
</message>
44684468
<message>
4469-
<location filename="../src/WizMainWindow.cpp" line="4157"/>
4469+
<location filename="../src/WizMainWindow.cpp" line="4155"/>
44704470
<source>New Note</source>
44714471
<translation>新建笔记</translation>
44724472
</message>
44734473
<message>
4474-
<location filename="../src/WizMainWindow.cpp" line="2066"/>
4474+
<location filename="../src/WizMainWindow.cpp" line="2064"/>
44754475
<source>Unread documents</source>
44764476
<translation>未读笔记</translation>
44774477
</message>
44784478
<message>
4479-
<location filename="../src/WizMainWindow.cpp" line="2082"/>
4479+
<location filename="../src/WizMainWindow.cpp" line="2080"/>
44804480
<source>Mark all documents read</source>
44814481
<translation>将所有未读笔记标记为已读</translation>
44824482
</message>
44834483
<message>
4484-
<location filename="../src/WizMainWindow.cpp" line="2357"/>
4485-
<location filename="../src/WizMainWindow.cpp" line="2374"/>
4484+
<location filename="../src/WizMainWindow.cpp" line="2355"/>
4485+
<location filename="../src/WizMainWindow.cpp" line="2372"/>
44864486
<source>Sync failed</source>
44874487
<translation>同步失败</translation>
44884488
</message>
44894489
<message>
4490-
<location filename="../src/WizMainWindow.cpp" line="2357"/>
4490+
<location filename="../src/WizMainWindow.cpp" line="2355"/>
44914491
<source>Bad network connection, can not sync now. Please try again later. (code: %1)</source>
44924492
<translation>网络错误,现在无法同步。请稍后重试:(错误码:%1)</translation>
44934493
</message>
44944494
<message>
4495-
<location filename="../src/WizMainWindow.cpp" line="2361"/>
4495+
<location filename="../src/WizMainWindow.cpp" line="2359"/>
44964496
<source>There is something wrong with sync service. Please try again later. (code: %1)</source>
44974497
<translation>服务端返回错误:同步异常,请稍后重试。(错误码:%1)</translation>
44984498
</message>
44994499
<message>
4500-
<location filename="../src/WizMainWindow.cpp" line="2865"/>
4500+
<location filename="../src/WizMainWindow.cpp" line="2863"/>
45014501
<source>Mark all as readed</source>
45024502
<translation>标记为已读</translation>
45034503
</message>
45044504
<message>
4505-
<location filename="../src/WizMainWindow.cpp" line="2865"/>
4505+
<location filename="../src/WizMainWindow.cpp" line="2863"/>
45064506
<source>Mark all documents as readed.</source>
45074507
<translation>将所有未读笔记标记为已读。</translation>
45084508
</message>
45094509
<message>
4510-
<location filename="../src/WizMainWindow.cpp" line="3238"/>
4510+
<location filename="../src/WizMainWindow.cpp" line="3236"/>
45114511
<source>Searching...</source>
45124512
<translation>正在搜索...</translation>
45134513
</message>
45144514
<message>
4515-
<location filename="../src/WizMainWindow.cpp" line="4072"/>
4515+
<location filename="../src/WizMainWindow.cpp" line="4070"/>
45164516
<source>Can&apos;t find the specified attachment, may be it has been deleted.</source>
45174517
<translation>找不到指定附件,该附件可能已被删除.</translation>
45184518
</message>
45194519
<message>
4520-
<location filename="../src/WizMainWindow.cpp" line="4154"/>
4520+
<location filename="../src/WizMainWindow.cpp" line="4152"/>
45214521
<source>Show/Hide MainWindow</source>
45224522
<translation>显示/隐藏主窗口</translation>
45234523
</message>
45244524
<message>
4525-
<location filename="../src/WizMainWindow.cpp" line="4162"/>
4525+
<location filename="../src/WizMainWindow.cpp" line="4160"/>
45264526
<source>Hide TrayIcon</source>
45274527
<translation>隐藏托盘图标</translation>
45284528
</message>
45294529
<message>
4530-
<location filename="../src/WizMainWindow.cpp" line="4166"/>
4530+
<location filename="../src/WizMainWindow.cpp" line="4164"/>
45314531
<source>Logout</source>
45324532
<translation>注销</translation>
45334533
</message>
45344534
<message>
4535-
<location filename="../src/WizMainWindow.cpp" line="4168"/>
4535+
<location filename="../src/WizMainWindow.cpp" line="4166"/>
45364536
<source>Exit</source>
45374537
<translation>退出</translation>
45384538
</message>
45394539
<message>
4540-
<location filename="../src/WizMainWindow.cpp" line="4522"/>
4540+
<location filename="../src/WizMainWindow.cpp" line="4520"/>
45414541
<source>Downloading attachment file %1 ...</source>
45424542
<translation>下载附件 %1 ...</translation>
45434543
</message>
45444544
<message>
4545-
<location filename="../src/WizMainWindow.cpp" line="4523"/>
4545+
<location filename="../src/WizMainWindow.cpp" line="4521"/>
45464546
<source>Downloading</source>
45474547
<translation>正在下载</translation>
45484548
</message>

0 commit comments

Comments
 (0)