Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wh201906 committed Jun 17, 2023
1 parent 72f6e45 commit dfd825a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Qt/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.medifier.qt" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="v0.0.2" android:versionCode="2" android:installLocation="auto">
<manifest package="priv.wh201906.medifier.qt" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="v0.0.3" android:versionCode="3" 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. -->

Expand Down
2 changes: 1 addition & 1 deletion Qt/mEDIFIER.pro
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ DISTFILES += \
android/AndroidManifest.xml

# Remember to change version in AndroidManifest.xml
VERSION = 0.0.2
VERSION = 0.0.3
# Expose VERSION to the source files.
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
10 changes: 8 additions & 2 deletions Qt/mEDIFIER_zh_CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
<message>
<location filename="deviceform.cpp" line="18"/>
<location filename="deviceform.cpp" line="86"/>
<location filename="deviceform.cpp" line="181"/>
<location filename="deviceform.cpp" line="203"/>
<source>RFCOMM</source>
<translation></translation>
</message>
<message>
<location filename="deviceform.cpp" line="19"/>
<location filename="deviceform.cpp" line="84"/>
<location filename="deviceform.cpp" line="179"/>
<location filename="deviceform.cpp" line="201"/>
<source>BLE</source>
<translation></translation>
</message>
Expand Down Expand Up @@ -312,5 +312,11 @@
<source>Send</source>
<translation>发送</translation>
</message>
<message>
<location filename="w820nbplusform.cpp" line="211"/>
<source>The name is too long</source>
<oldsource>The name is too long.</oldsource>
<translation>设备名过长</translation>
</message>
</context>
</TS>
2 changes: 1 addition & 1 deletion Qt/w820nbplusform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void W820NBPlusForm::on_nameSetButton_clicked()
// the max length of W820NB Plus is 30(defined in w820nbplusform.h)
if(nameBytes.length() > m_maxNameLength)
{
emit showMessage(tr("The name is too long."));
emit showMessage(tr("The name is too long"));
return;
}
QByteArray cmd = "\xCA";
Expand Down

0 comments on commit dfd825a

Please sign in to comment.