Skip to content

Commit

Permalink
Release v0.5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Feb 20, 2024
1 parent fc4a370 commit b3a353b
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 25 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.18
SerialPortAssistant_VERSION: v0.5.19
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.18
SerialPortAssistant_VERSION: v0.5.19

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.18
SerialPortAssistant_VERSION: v0.5.19
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.18
SerialPortAssistant_VERSION: v0.5.19
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.18
SerialPortAssistant_VERSION: 0.5.19
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.18" >
android:versionName="0.5.19" >

<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.19
- Modify ci to windows xp

+ Version: v0.5.18
- Modify UI

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.19
- 修改自动化编译生成 windows xp 版本

+ 版本: v0.5.18
- 修改界面

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.18"
!define PRODUCT_VERSION "v0.5.19"
!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 (kl222@126.com)
- Install
- ubuntu

sudo apt install ./serialportassistant_0.5.18_amd64.deb
sudo apt install ./serialportassistant_0.5.19_amd64.deb
# If you're on an older Linux distribution, you will need to run this instead:
# sudo dpkg -i serialportassistant_0.5.18_amd64.deb
# sudo dpkg -i serialportassistant_0.5.19_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.18_amd64.deb
sudo apt install ./serialportassistant_0.5.19_amd64.deb
# 如果你是老的 Linux 发行系统。你需要用下列命令替换:
# sudo dpkg -i serialportassistant_0.5.18_amd64.deb
# sudo dpkg -i serialportassistant_0.5.19_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.18"
"version":"v0.5.19"
}
]
}
9 changes: 5 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: 'v0.5.18.{build}'
version: 'v0.5.19.{build}'

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

environment:
SerialPortAssistant_VERSION: "v0.5.19"
STOREPASS:
secure: l9BZEU39F1a4vSkhwl0CHR+yh6CD1c7byGzMv+1NUa4=
QT_USER:
Expand Down Expand Up @@ -35,7 +38,6 @@ init:
- if NOT "%QT_ROOT%" == "NO" for /f "delims=" %%i in ('%QT_ROOT%/bin/qmake -query QT_VERSION') do (set QT_VERSION=%%i)
- echo QT_ROOT=%QT_ROOT%
- echo QT_VERSION=%QT_VERSION%
- set SerialPortAssistant_VERSION=v0.5.18

install:
- cd %APPVEYOR_BUILD_FOLDER%
Expand Down Expand Up @@ -102,7 +104,6 @@ deploy:
draft: true
prerelease: true
on:
BUILD_TARGERT: windows_msvc
TOOLCHAIN_VERSION: 14
QT_VERSION: 5.6.3
BUILD_ARCH: x86
Expand Down
15 changes: 7 additions & 8 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
serialportassistant (0.5.18) stable; urgency=medium
serialportassistant (0.5.19) stable; urgency=medium

* Fix windows title
* Modify translations
* Modify UI
* CI: modify ci
* Modify deploy.sh to disable update.xml
* Modify README
* CI: modify appveyor.yml
* CI: remove appveyor.yml
* Modify etc/SerialPortAssistant_logqt.ini
* CI: fix urls bug in macos.yml
* CI: remove xml

-- Kang Lin <kl222@126.com> Wed, 07 Feb 2024 12:32:58 +0800
-- Kang Lin <kl222@126.com> Tue, 20 Feb 2024 13:04:05 +0800

2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sed -i "s/^\!define PRODUCT_VERSION.*/\!define PRODUCT_VERSION \"${VERSION}\"/g"

APPVERYOR_VERSION="version: '${VERSION}.{build}'"
sed -i "s/^version: '.*{build}'/${APPVERYOR_VERSION}/g" ${SOURCE_DIR}/appveyor.yml
sed -i "s/SerialPortAssistant_VERSION=.*/SerialPortAssistant_VERSION=\"${VERSION}\"/g" ${SOURCE_DIR}/appveyor.yml
sed -i "s/SerialPortAssistant_VERSION:.*/SerialPortAssistant_VERSION: \"${VERSION}\"/g" ${SOURCE_DIR}/appveyor.yml
#sed -i "s/export VERSION=.*/export VERSION=\"${VERSION}\"/g" ${SOURCE_DIR}/.travis.yml
#sed -i "s/^\ - export VERSION=.*/\ - export VERSION=\"${VERSION}\"/g" ${SOURCE_DIR}/.travis.yml

Expand Down

0 comments on commit b3a353b

Please sign in to comment.