Skip to content

Commit 459bab6

Browse files
committed
Modify change log
1 parent ca5ee89 commit 459bab6

File tree

15 files changed

+81
-68
lines changed

15 files changed

+81
-68
lines changed

App/Client/android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
package="org.KangLinStudio.RabbitRemoteControl"
5-
android:versionName="0.0.28"
5+
android:versionName="0.0.29"
66
android:versionCode="0"
77
android:installLocation="auto">
88

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ endif()
134134
GET_VERSION(OUT_VERSION RabbitRemoteControl_VERSION
135135
OUT_REVISION RabbitRemoteControl_REVISION)
136136
IF(NOT RabbitRemoteControl_VERSION)
137-
SET(RabbitRemoteControl_VERSION "0.0.28")
137+
SET(RabbitRemoteControl_VERSION "0.0.29")
138138
ENDIF()
139139
message("RabbitRemoteControl_VERSION:${RabbitRemoteControl_VERSION};Revision:${RabbitRemoteControl_REVISION}")
140140
set(VERSION ${RabbitRemoteControl_VERSION})

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## Change Log
22

33
### v0.0.29
4+
- FreeRDP
5+
- fix server unsupported clipborad format bug #31
6+
- Fixed crashes caused by mouse side buttons
47

58
### v0.0.28
69
- Client parameters

ChangeLog_zh_CN.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## 修改日志
22

33
### v0.0.29
4+
- FreeRDP
5+
- 修复服务器不支持剪切板格式返回错误 #31
6+
- 修复鼠标扩展键引起的程序崩溃
47

58
### v0.0.28
69
- 客户端参数

Install/Install.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
!define PRODUCT_NAME "RabbitRemoteControl"
55
!define PRODUCT_APP_NAME "RabbitRemoteControlApp"
66
!define PRODUCT_APP_SERVICE_CONFIGURE_NAME "RabbitRemoteControlServiceConfigure"
7-
!define PRODUCT_VERSION "v0.0.28"
7+
!define PRODUCT_VERSION "v0.0.29"
88
!define PRODUCT_PUBLISHER "KangLin studio"
99
!define PRODUCT_WEB_SITE "https://github.com/KangLin/${PRODUCT_NAME}"
1010
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_APP_NAME}.exe"

Plugins/FreeRDP/Client/ClipboardFreeRDP.cpp

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ int CClipboardFreeRDP::Init(CliprdrClientContext *context, bool bEnable)
7676
context->ServerFormatDataRequest = cb_cliprdr_server_format_data_request;
7777
context->ServerFormatDataResponse = cb_cliprdr_server_format_data_response;
7878
context->ServerFileContentsRequest = cb_cliprdr_server_file_contents_request;
79-
context->ServerFileContentsResponse = cb_cliprdr_server_file_contents_response;
79+
//context->ServerFileContentsResponse = cb_cliprdr_server_file_contents_response;
8080
return 0;
8181
}
8282

@@ -825,7 +825,7 @@ UINT CClipboardFreeRDP::cb_cliprdr_server_format_list_response(
825825
pformatListResponse->msgFlags
826826
#endif
827827
!= CB_RESPONSE_OK)
828-
qCritical(log) << "The server is not support the format";
828+
qDebug(log) << "The server is not support the format";
829829
return CHANNEL_RC_OK;
830830
}
831831

@@ -883,7 +883,12 @@ UINT CClipboardFreeRDP::cb_cliprdr_server_file_contents_response(
883883
fileContentsResponse->msgFlags
884884
#endif
885885
!= CB_RESPONSE_OK)
886-
return E_FAIL;
886+
{
887+
qDebug(log)
888+
<< "File contents response error";
889+
890+
return nRet;
891+
}
887892

888893
CClipboardFreeRDP* pThis = (CClipboardFreeRDP*)context->custom;
889894
if(0 == fileContentsResponse->cbRequested)

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Legend:
189189
### Full Documentation
190190

191191
- Development documentation online
192-
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.28/English/html/index.html)
192+
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.29/English/html/index.html)
193193
- [github.io](https://kanglin.github.io/RabbitRemoteControl/English/html/index.html)
194194
- [Compilation documentation](#Compilation)
195195

@@ -331,43 +331,43 @@ See requirements for details: https://github.com/KangLin/RabbitRemoteControl/iss
331331
- [![Release](https://img.shields.io/github/release-pre/KangLin/RabbitRemoteControl?label=Github%20Release)](https://github.com/KangLin/RabbitRemoteControl/releases)
332332
- [![Download RabbitRemoteControl](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/rabbitremotecontrol/files/latest/download)
333333
- [![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/badge.svg)](https://snapcraft.io/rabbitremotecontrol)
334-
- [![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/trending.svg?name=0)](https://snapcraft.io/rabbitremotecontrol)
334+
[![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/trending.svg?name=0)](https://snapcraft.io/rabbitremotecontrol)
335335

336-
+ Current version: v0.0.28
336+
+ Current version: v0.0.29
337337
- Windows: Supported WINDOWS 7 and later version
338338
+ Win64
339-
- Install package: RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe
340-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe)
341-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe/download)
342-
- MD5SUM file: RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum
343-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum)
344-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum/download)
339+
- Install package: RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe
340+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe)
341+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe/download)
342+
- MD5SUM file: RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum
343+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum)
344+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum/download)
345345
+ Win32
346-
- Install package: RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe
347-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe)
348-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe/download)
349-
- MD5SUM file: RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum
350-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum)
351-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum/download)
346+
- Install package: RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe
347+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe)
348+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe/download)
349+
- MD5SUM file: RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum
350+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum)
351+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum/download)
352352
- Ubuntu:
353-
+ rabbitremotecontrol_0.0.28_amd64.deb
353+
+ rabbitremotecontrol_0.0.29_amd64.deb
354354

355-
sudo apt install ./rabbitremotecontrol_0.0.28_amd64.deb
355+
sudo apt install ./rabbitremotecontrol_0.0.29_amd64.deb
356356

357357
# If you're on an older ubuntu distribution, you will need to run this instead:
358-
# sudo dpkg -i rabbitremotecontrol_0.0.28_amd64.deb
358+
# sudo dpkg -i rabbitremotecontrol_0.0.29_amd64.deb
359359
# sudo apt-get install -f # Install dependencies
360360

361-
- [Download from github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb)
362-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb/download)
363-
+ MD5SUM file: rabbitremotecontrol_0.0.28_amd64.deb.md5sum
364-
- [Download from github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb.md5sum)
365-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb.md5sum/download)
361+
- [Download from github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb)
362+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb/download)
363+
+ MD5SUM file: rabbitremotecontrol_0.0.29_amd64.deb.md5sum
364+
- [Download from github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb.md5sum)
365+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb.md5sum/download)
366366

367367
## [Development](docs/Doxygen/Develop.md)
368368

369369
### Development documentation online
370-
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.28/English/html/index.html)
370+
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.29/English/html/index.html)
371371
- [github.io](https://kanglin.github.io/RabbitRemoteControl/English/html/index.html)
372372

373373
### Compilation

README_zh_CN.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
### 详尽文档
188188

189189
- 在线开发文档
190-
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.28/Chinese/html/index.html)
190+
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.29/Chinese/html/index.html)
191191
- [github.io](https://kanglin.github.io/RabbitRemoteControl/Chinese/html/index.html)
192192
- [编译文档](#编译)
193193

@@ -319,42 +319,42 @@
319319
- [![Github 发行版本](https://img.shields.io/github/release-pre/KangLin/RabbitRemoteControl?label=Github%20发行版本)](https://github.com/KangLin/RabbitRemoteControl/releases)
320320
- [![Download from sourceforge](https://a.fsdn.com/con/app/sf-download-button)](https://sourceforge.net/projects/rabbitremotecontrol/files/latest/download)
321321
- [![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/badge.svg)](https://snapcraft.io/rabbitremotecontrol)
322-
- [![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/trending.svg?name=0)](https://snapcraft.io/rabbitremotecontrol)
323-
+ 当前版本:v0.0.28
322+
[![rabbitremotecontrol](https://snapcraft.io/rabbitremotecontrol/trending.svg?name=0)](https://snapcraft.io/rabbitremotecontrol)
323+
+ 当前版本:v0.0.29
324324
- Windows: 支持 WINDOWS 7 及以后版本
325325
+ Win64
326-
+ 安装包: RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe
327-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe)
328-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe/download)
329-
+ MD5SUM 文件: RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum
330-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum)
331-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum/download)
326+
+ 安装包: RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe
327+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe)
328+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe/download)
329+
+ MD5SUM 文件: RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum
330+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum)
331+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win64_msvc2022_64_qt6.8.1_Setup.exe.md5sum/download)
332332
+ Win32
333-
- Install package: RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe
334-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe)
335-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe/download)
336-
- MD5SUM file: RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum
337-
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum)
338-
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/RabbitRemoteControl_v0.0.28_win32_msvc2017_qt5.12.12_Setup.exe.md5sum/download)
333+
- Install package: RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe
334+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe)
335+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe/download)
336+
- MD5SUM file: RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum
337+
- [Download from Github](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum)
338+
- [Download from sourceforge](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/RabbitRemoteControl_v0.0.29_win32_msvc2017_qt5.12.12_Setup.exe.md5sum/download)
339339
- Ubuntu:
340-
+ rabbitremotecontrol_0.0.28_amd64.deb
340+
+ rabbitremotecontrol_0.0.29_amd64.deb
341341

342-
sudo apt install ./rabbitremotecontrol_0.0.28_amd64.deb
342+
sudo apt install ./rabbitremotecontrol_0.0.29_amd64.deb
343343

344344
# 如要你是在老的 ubuntu 发行版本上,你需要用下列命令替换:
345-
# sudo dpkg -i rabbitremotecontrol_0.0.28_amd64.deb
345+
# sudo dpkg -i rabbitremotecontrol_0.0.29_amd64.deb
346346
# sudo apt-get install -f # 安装依赖
347347

348-
- [从 github 下载](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb)
349-
- [从 sourceforge 下载](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb/download)
350-
+ md5 校验文件: rabbitremotecontrol_0.0.28_amd64.deb.md5sum
351-
- [从 github 下载](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb.md5sum)
352-
- [从 sourceforge 下载](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.28/rabbitremotecontrol_0.0.28_amd64.deb.md5sum/download)
348+
- [从 github 下载](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb)
349+
- [从 sourceforge 下载](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb/download)
350+
+ md5 校验文件: rabbitremotecontrol_0.0.29_amd64.deb.md5sum
351+
- [从 github 下载](https://github.com/KangLin/RabbitRemoteControl/releases/download/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb.md5sum)
352+
- [从 sourceforge 下载](https://sourceforge.net/projects/rabbitremotecontrol/files/v0.0.29/rabbitremotecontrol_0.0.29_amd64.deb.md5sum/download)
353353

354354
## [开发](docs/Doxygen/Develop_zh_CN.md)
355355

356356
### 在线开发文档
357-
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.28/Chinese/html/index.html)
357+
- [sourceforge](https://rabbitremotecontrol.sourceforge.io/v0.0.29/Chinese/html/index.html)
358358
- [github.io](https://kanglin.github.io/RabbitRemoteControl/Chinese/html/index.html)
359359

360360
### 编译

Update/update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"redirect": [
33
{
4-
"version":"0.0.28"
4+
"version":"0.0.29"
55
}
66
]
77
}

Update/update.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<REDIRECT>
3-
<VERSION>0.0.28</VERSION>
3+
<VERSION>0.0.29</VERSION>
44
</REDIRECT>

0 commit comments

Comments
 (0)