Skip to content

Commit 1414b72

Browse files
committed
[ver1.2.1] update README.md
1 parent 1582e73 commit 1414b72

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ A lightweight & cross-platform SSH/SFTP client built with Flutter.
1818
### 下载
1919
| 平台 | 下载 | 备注 |
2020
|------|------|------|
21-
| Android | [APK](https://github.com/RWPteam/ConnSSH/releases/download/1.2.0/ConnSSH_1.2.0_android_arm64.apk) | arm64 |
22-
| Windows | [exe](https://github.com/RWPteam/ConnSSH/releases/download/1.2.0/ConnSSH_1.2.0.exe) | 仅支持64位设备 |
23-
| OHOS | [app](https://github.com/RWPteam/ConnSSH/releases/download/1.2.0/ConnSSH_1.2.0.app.zip) | 华为手机、平板用户需要从AppGallery下载 |
21+
| Android | [APK](https://github.com/RWPteam/ConnSSH/releases/download/1.2.1/ConnSSH_1.2.1.apk) | arm64 |
22+
| Windows | [exe](https://github.com/RWPteam/ConnSSH/releases/download/1.2.1/ConnSSH_1.2.1.exe) | 仅支持64位设备 |
23+
| OHOS | [app](https://github.com/RWPteam/ConnSSH/releases/download/1.2.1/ConnSSH_1.2.1.app.zip) | 华为手机、平板用户需要从AppGallery下载 |
2424
| OHOS | [AppGallery](https://appgallery.huawei.com/app/detail?id=com.samuioto.connecter&channelId=SHARE&source=appshare) | 已上架至华为应用市场,欢迎体验
2525

2626

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
2323

2424
def flutterVersionCode = localProperties.getProperty("flutter.versionCode")
2525
if (flutterVersionCode == null) {
26-
flutterVersionCode = "189"
26+
flutterVersionCode = "192"
2727
}
2828

29-
def flutterVersionName = "1.2.0"
29+
def flutterVersionName = "1.2.1"
3030
//def flutterVersionName = localProperties.getProperty("flutter.versionName")
3131
//if (flutterVersionName == null) {
3232
// flutterVersionName = "1.0Beta3"

lib/sftp_page.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,6 @@ class _SftpPageState extends State<SftpPage> {
12061206
}
12071207

12081208
void _showDownloadSuccessDialog(String filename, String savePath) {
1209-
// 检查是否仍在 mounted 状态
12101209
if (!mounted) return;
12111210

12121211
showDialog(

ohos/AppScope/app.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"app": {
33
"bundleName": "com.samuioto.connecter",
44
"vendor": "samuioto",
5-
"versionCode": 188,
6-
"versionName": "1.2.0",
5+
"versionCode": 192,
6+
"versionName": "1.2.1",
77
"icon": "$media:app_layered_image",
88
"label": "$string:app_name"
99
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 1.2.0
19+
version: 1.2.1
2020

2121
environment:
2222
sdk: ^3.4.0

windows/runner/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
2727
FlutterWindow window(project);
2828
Win32Window::Point origin(10, 10);
2929
Win32Window::Size size(850, 720);
30-
if (!window.Create(L"ConnSSH 1.2.0", origin, size)) {
30+
if (!window.Create(L"ConnSSH 1.2.1", origin, size)) {
3131
return EXIT_FAILURE;
3232
}
3333
window.SetQuitOnClose(true);

0 commit comments

Comments
 (0)