Skip to content

Commit 42fa9cc

Browse files
committed
Release v0.5.23
1 parent 54e7f8b commit 42fa9cc

File tree

14 files changed

+34
-32
lines changed

14 files changed

+34
-32
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
SOURCE_DIR: ${{github.workspace}}/.cache/source
3131
TOOSL_DIR: ${{github.workspace}}/.cache/tools
3232
INSTALL_DIR: ${{github.workspace}}/.cache/install
33-
SerialPortAssistant_VERSION: v0.5.22
33+
SerialPortAssistant_VERSION: v0.5.23
3434
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81
3535
VCPKG_TARGET_TRIPLET: ${{matrix.VCPKG_TARGET_TRIPLET}}
3636
VCPKG_DEFAULT_HOST_TRIPLET: x64-linux

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: build
33
env:
44
artifact_path: artifact_path
55
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6-
SerialPortAssistant_VERSION: v0.5.22
6+
SerialPortAssistant_VERSION: v0.5.23
77

88
on:
99
push:

.github/workflows/mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
SOURCE_DIR: ${{github.workspace}}\.cache\source
2727
TOOSL_DIR: ${{github.workspace}}\.cache\tools
2828
INSTALL_DIR: ${{github.workspace}}\.cache\install_mingw
29-
SerialPortAssistant_VERSION: v0.5.22
29+
SerialPortAssistant_VERSION: v0.5.23
3030
artifact_name: build_mingw
3131

3232
# Map the job outputs to step outputs

.github/workflows/msvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
VCPKG_PLATFORM_TOOLSET: ${{matrix.VCPKG_PLATFORM_TOOLSET}}
4646
VCPKG_MANIFEST_DIR: "${{github.workspace}}${{matrix.VCPKG_MANIFEST_DIR}}"
4747
CMAKE_GENERATOR_PLATFORM: ${{matrix.CMAKE_GENERATOR_PLATFORM}}
48-
SerialPortAssistant_VERSION: v0.5.22
48+
SerialPortAssistant_VERSION: v0.5.23
4949
VCPKGGITCOMMITID: 59aeb8fe8fe1c980de6bd5ba634cf21024522d81
5050
VCPKG_TARGET_TRIPLET: ${{matrix.VCPKG_TARGET_TRIPLET}}
5151
qt_modules: qtwebengine ${{matrix.qt_modules}}

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
SOURCE_DIR: ${{github.workspace}}/.cache/source
2323
TOOSL_DIR: ${{github.workspace}}/.cache/tools
2424
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu_${{matrix.BUILD_TYPE}}
25-
SerialPortAssistant_VERSION: 0.5.22
25+
SerialPortAssistant_VERSION: 0.5.23
2626
artifact_name: build_ubuntu
2727

2828
# Map the job outputs to step outputs

App/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ endif()
2828
GET_VERSION(OUT_VERSION SerialPortAssistant_VERSION
2929
OUT_REVISION SerialPortAssistant_Revision)
3030
IF(NOT SerialPortAssistant_VERSION)
31-
SET(SerialPortAssistant_VERSION "v0.5.22")
31+
SET(SerialPortAssistant_VERSION "v0.5.23")
3232
ENDIF()
3333
message("SerialPortAssistant_VERSION:${SerialPortAssistant_VERSION};Revision:${SerialPortAssistant_Revision}")
3434

App/android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.KangLinStudio.SerialPortAssistant" android:installLocation="auto" android:versionCode="0" android:versionName="0.5.22" >
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.KangLinStudio.SerialPortAssistant" android:installLocation="auto" android:versionCode="0" android:versionName="0.5.23" >
33

44
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
55
<uses-permission android:name="android.permission.INTERNET"/>

Install/Install.nsi

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

33
; HM NIS Edit Wizard helper defines
44
!define PRODUCT_NAME "SerialPortAssistant"
5-
!define PRODUCT_VERSION "v0.5.22"
5+
!define PRODUCT_VERSION "v0.5.23"
66
!define PRODUCT_PUBLISHER "KangLin studio"
77
!define PRODUCT_WEB_SITE "https://github.com/KangLin/${PRODUCT_NAME}"
88
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}.exe"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ Author: Kang Lin ([email protected])
6565
- Install
6666
- ubuntu
6767

68-
sudo apt install ./serialportassistant_0.5.22_amd64.deb
68+
sudo apt install ./serialportassistant_0.5.23_amd64.deb
6969
# If you're on an older Linux distribution, you will need to run this instead:
70-
# sudo dpkg -i serialportassistant_0.5.22_amd64.deb
70+
# sudo dpkg -i serialportassistant_0.5.23_amd64.deb
7171
# sudo apt-get install -f # Install dependencies
7272

7373
## Donate

README_zh_CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
- 安装说明:
6161
- ubuntu
6262

63-
sudo apt install ./serialportassistant_0.5.22_amd64.deb
63+
sudo apt install ./serialportassistant_0.5.23_amd64.deb
6464
# 如果你是老的 Linux 发行系统。你需要用下列命令替换:
65-
# sudo dpkg -i serialportassistant_0.5.22_amd64.deb
65+
# sudo dpkg -i serialportassistant_0.5.23_amd64.deb
6666
# sudo apt-get install -f # Install dependencies
6767

6868
### 捐赠

0 commit comments

Comments
 (0)