Skip to content

Commit

Permalink
V0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed May 10, 2023
1 parent 7b235fe commit e17b4a5
Show file tree
Hide file tree
Showing 9 changed files with 94 additions and 73 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

[中文](doc/CHANGELOG/CHANGELOG_zh_CN.md)

## V0.2.4
+ Show the version number properly (commit 7b235fe40e)

## V0.2.3
+ Fix a crash (commit 40b6394681)
+ Fix a bug in AsyncCRC (commit de1933f5ee)
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG/CHANGELOG_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

[English](../../CHANGELOG.md)

## V0.2.4
+ 修复版本号显示问题 (commit 7b235fe40e)

## V0.2.3
+ 修复一处崩溃 (commit 40b6394681)
+ 修复AsyncCRC中的一处BUG (commit de1933f5ee)
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
V0.2.4
+ Show the version number properly (commit 7b235fe40e)
2 changes: 2 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/24.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
V0.2.4
+ 修复版本号显示问题 (commit 7b235fe40e)
7 changes: 7 additions & 0 deletions pack/aur/io.github.wh201906.serialtest.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@
</screenshots>

<releases>
<release version="0.2.4" date="2023-05-10">
<description>
<ul>
<li>Show the version number properly (commit 7b235fe40e)</li>
</ul>
</description>
</release>
<release version="0.2.3" date="2023-05-09">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/SerialTest.pro
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ qnx {
}

# Remember to change version in AndroidManifest.xml
VERSION = 0.2.3
VERSION = 0.2.4
QMAKE_TARGET_PRODUCT = "SerialTest"
QMAKE_TARGET_DESCRIPTION = "SerialTest"
QMAKE_TARGET_COMPANY = "wh201906"
Expand Down
3 changes: 1 addition & 2 deletions src/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2.3" android:versionCode="23" android:installLocation="auto">
<manifest package="priv.wh201906.serialtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="V0.2.4" android:versionCode="24" android:installLocation="auto">
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS -->
Expand All @@ -15,7 +15,6 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>

<intent-filter android:label="@string/intentFilter_send">
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
Expand Down
Binary file modified src/i18n/SerialTest_zh_CN.qm
Binary file not shown.
Loading

0 comments on commit e17b4a5

Please sign in to comment.