Skip to content

Commit

Permalink
Release v0.5.20
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Feb 22, 2024
1 parent 81626bb commit b670a08
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install
SerialPortAssistant_VERSION: v0.5.19
SerialPortAssistant_VERSION: v0.5.20
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
ANDROID_PLATFORM: android-23
ANDROID_NATIVE_API_LEVEL: 23
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
env:
artifact_path: artifact_path
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SerialPortAssistant_VERSION: v0.5.19
SerialPortAssistant_VERSION: v0.5.20

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}\.cache\source
TOOSL_DIR: ${{github.workspace}}\.cache\tools
INSTALL_DIR: ${{github.workspace}}\.cache\install_mingw
SerialPortAssistant_VERSION: v0.5.19
SerialPortAssistant_VERSION: v0.5.20
artifact_name: build_mingw

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
CMAKE_GENERATOR: "Visual Studio 17 2022"
VCPKG_PLATFORM_TOOLSET: ${{matrix.VCPKG_PLATFORM_TOOLSET}}
CMAKE_GENERATOR_PLATFORM: ${{matrix.CMAKE_GENERATOR_PLATFORM}}
SerialPortAssistant_VERSION: v0.5.19
SerialPortAssistant_VERSION: v0.5.20
VCPKGGITCOMMITID: a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6
qt_modules: qtwebengine ${{matrix.qt_modules}}
artifact_name: build_msvc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu_${{matrix.BUILD_TYPE}}
SerialPortAssistant_VERSION: 0.5.19
SerialPortAssistant_VERSION: 0.5.20
artifact_name: build_ubuntu

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion App/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package="org.KangLinStudio.SerialPortAssistant"
android:installLocation="auto"
android:versionCode="1"
android:versionName="0.5.19" >
android:versionName="0.5.20" >

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
+ Version: v0.5.20
- Modify deploy.sh

+ Version: v0.5.19
- Modify ci to windows xp

Expand Down
3 changes: 3 additions & 0 deletions ChangeLog_zh_CN.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
+ 版本: v0.5.20
- 修改 deploy.sh

+ 版本: v0.5.19
- 修改自动化编译生成 windows xp 版本

Expand Down
2 changes: 1 addition & 1 deletion Install/Install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "SerialPortAssistant"
!define PRODUCT_VERSION "v0.5.19"
!define PRODUCT_VERSION "v0.5.20"
!define PRODUCT_PUBLISHER "KangLin studio"
!define PRODUCT_WEB_SITE "https://github.com/KangLin/${PRODUCT_NAME}"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}.exe"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ Author: Kang Lin ([email protected])
- Install
- ubuntu

sudo apt install ./serialportassistant_0.5.19_amd64.deb
sudo apt install ./serialportassistant_0.5.20_amd64.deb
# If you're on an older Linux distribution, you will need to run this instead:
# sudo dpkg -i serialportassistant_0.5.19_amd64.deb
# sudo dpkg -i serialportassistant_0.5.20_amd64.deb
# sudo apt-get install -f # Install dependencies

## Donate
Expand Down
4 changes: 2 additions & 2 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
- 安装说明:
- ubuntu

sudo apt install ./serialportassistant_0.5.19_amd64.deb
sudo apt install ./serialportassistant_0.5.20_amd64.deb
# 如果你是老的 Linux 发行系统。你需要用下列命令替换:
# sudo dpkg -i serialportassistant_0.5.19_amd64.deb
# sudo dpkg -i serialportassistant_0.5.20_amd64.deb
# sudo apt-get install -f # Install dependencies

### 捐赠
Expand Down
2 changes: 1 addition & 1 deletion Update/update.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"redirect": [
{
"version":"v0.5.19"
"version":"v0.5.20"
}
]
}
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: 'v0.5.19.{build}'
version: 'v0.5.20.{build}'

cache:
- ..\other_source
# Clean cached
# https://www.appveyor.com/docs/build-cache/#cleaning-up-cache

environment:
SerialPortAssistant_VERSION: "v0.5.19"
SerialPortAssistant_VERSION: "v0.5.20"
STOREPASS:
secure: l9BZEU39F1a4vSkhwl0CHR+yh6CD1c7byGzMv+1NUa4=
QT_USER:
Expand Down
13 changes: 6 additions & 7 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
serialportassistant (0.5.19) stable; urgency=medium
serialportassistant (0.5.20) stable; urgency=medium

* CI: modify appveyor.yml
* CI: remove appveyor.yml
* Modify etc/SerialPortAssistant_logqt.ini
* CI: fix urls bug in macos.yml
* CI: remove xml
* Modify deploy.sh to vcpkg.json
* CI: modify appveyor.yml to rename winxp to windows_xp
* CI: modify macos.yml
* CI: update qt version 6.6.1 to 6.6.2

-- Kang Lin <[email protected]> Tue, 20 Feb 2024 13:04:05 +0800
-- Kang Lin <[email protected]> Thu, 22 Feb 2024 14:37:02 +0800

0 comments on commit b670a08

Please sign in to comment.