Skip to content

Commit f856fe1

Browse files
committed
release 1.1.0
1 parent 9929e1d commit f856fe1

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
</div>
55

66
<div align="center">
7-
<a href="https://github.com/honmaple/maple-file/releases/tag/v1.0.8" target="_blank">
8-
<img src="https://img.shields.io/badge/release-1.0.8-brightgreen.svg">
7+
<a href="https://github.com/honmaple/maple-file/releases/tag/v1.1.0" target="_blank">
8+
<img src="https://img.shields.io/badge/release-1.1.0-brightgreen.svg">
99
</a>
1010
<a href="https://apps.apple.com/us/app/maplefile/id6743229674" target="_blank">
1111
<img src="https://img.shields.io/badge/app%20store-black.svg?logo=apple">
@@ -19,7 +19,7 @@
1919

2020
[home]: https://fileapp.honmaple.com
2121
[document]: https://fileapp.honmaple.com/guide/introduction.html
22-
[download]: https://github.com/honmaple/maple-file/releases/tag/v1.0.8
22+
[download]: https://github.com/honmaple/maple-file/releases/tag/v1.1.0
2323

2424
> 使用 **Flutter** 实现的无服务端多协议云盘文件上传和管理APP
2525

app/pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ packages:
862862
source: hosted
863863
version: "2.2.0"
864864
package_info_plus:
865-
dependency: transitive
865+
dependency: "direct main"
866866
description:
867867
name: package_info_plus
868868
sha256: "7976bfe4c583170d6cdc7077e3237560b364149fcd268b5f53d95a991963b191"
@@ -873,10 +873,10 @@ packages:
873873
dependency: transitive
874874
description:
875875
name: package_info_plus_platform_interface
876-
sha256: "6c935fb612dff8e3cc9632c2b301720c77450a126114126ffaafe28d2e87956c"
876+
sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086"
877877
url: "https://pub.flutter-io.cn"
878878
source: hosted
879-
version: "3.2.0"
879+
version: "3.2.1"
880880
path:
881881
dependency: "direct main"
882882
description:
@@ -1406,18 +1406,18 @@ packages:
14061406
dependency: transitive
14071407
description:
14081408
name: wakelock_plus
1409-
sha256: a474e314c3e8fb5adef1f9ae2d247e57467ad557fa7483a2b895bc1b421c5678
1409+
sha256: "61713aa82b7f85c21c9f4cd0a148abd75f38a74ec645fcb1e446f882c82fd09b"
14101410
url: "https://pub.flutter-io.cn"
14111411
source: hosted
1412-
version: "1.3.2"
1412+
version: "1.3.3"
14131413
wakelock_plus_platform_interface:
14141414
dependency: transitive
14151415
description:
14161416
name: wakelock_plus_platform_interface
1417-
sha256: e10444072e50dbc4999d7316fd303f7ea53d31c824aa5eb05d7ccbdd98985207
1417+
sha256: "036deb14cd62f558ca3b73006d52ce049fabcdcb2eddfe0bf0fe4e8a943b5cf2"
14181418
url: "https://pub.flutter-io.cn"
14191419
source: hosted
1420-
version: "1.2.3"
1420+
version: "1.3.0"
14211421
watcher:
14221422
dependency: transitive
14231423
description:

app/pubspec.yaml

Lines changed: 2 additions & 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.0.9+1
19+
version: 1.1.0+1
2020

2121
environment:
2222
sdk: '>=3.3.3 <4.0.0'
@@ -41,6 +41,7 @@ dependencies:
4141
intl: ^0.19.0
4242
path: ^1.9.0
4343
path_provider: ^2.1.4
44+
package_info_plus: 8.3.0
4445
flutter_riverpod: ^2.5.1
4546
easy_refresh: ^3.3.5
4647
flutter_spinkit: ^5.2.1

server/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11

22
## Android
33
```
4-
gomobile bind -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.0.9" -o ../app/android/app/libs/libserver.aar -target=android -androidapi 21 -javapkg="com.honmaple.maple_file" github.com/honmaple/maple-file/server/cmd/mobile
4+
gomobile bind -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.1.0" -o ../app/android/app/libs/libserver.aar -target=android -androidapi 21 -javapkg="com.honmaple.maple_file" github.com/honmaple/maple-file/server/cmd/mobile
55
```
66

77
## IOS
88
```
9-
gomobile bind -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.0.9" -o ../app/ios/Frameworks/libserver.xcframework -target=ios github.com/honmaple/maple-file/server/cmd/mobile
9+
gomobile bind -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.1.0" -o ../app/ios/Frameworks/libserver.xcframework -target=ios github.com/honmaple/maple-file/server/cmd/mobile
1010
```
1111

1212
## MacOS
1313
```
14-
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.0.9" -buildmode=c-shared -o ../app/macos/Frameworks/libserver.dylib github.com/honmaple/maple-file/server/cmd/desktop
14+
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.1.0" -buildmode=c-shared -o ../app/macos/Frameworks/libserver.dylib github.com/honmaple/maple-file/server/cmd/desktop
1515
```
1616

1717
## Windows
1818
```
1919
set CGO_ENABLED=1
20-
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.0.9" -buildmode=c-shared -o ../app/windows/libserver.dll github.com/honmaple/maple-file/server/cmd/desktop
20+
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.1.0" -buildmode=c-shared -o ../app/windows/libserver.dll github.com/honmaple/maple-file/server/cmd/desktop
2121
```
2222

2323
## Linux
2424
```
25-
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.0.9" -buildmode=c-shared -o ../app/linux/libserver.so github.com/honmaple/maple-file/server/cmd/desktop
25+
go build -ldflags="-w -s -X github.com/honmaple/maple-file/server/internal/app.VERSION=1.1.0" -buildmode=c-shared -o ../app/linux/libserver.so github.com/honmaple/maple-file/server/cmd/desktop
2626
```
2727

2828

0 commit comments

Comments
 (0)