Skip to content

Commit 42a5f7c

Browse files
committed
update readme, release 1.0.3
1 parent 31a3f3f commit 42a5f7c

File tree

5 files changed

+64
-41
lines changed

5 files changed

+64
-41
lines changed

README.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<div align="center">
2+
<img src="./app/assets/icon/icon-transparent.png" width="150" />
3+
<h1>红枫云盘</h1>
4+
</div>
5+
6+
<div align="center">
7+
<a href="https://github.com/honmaple/maple-file/releases/tag/v1.0.3" target="_blank">
8+
<img src="https://img.shields.io/badge/release-1.0.3-brightgreen.svg">
9+
</a>
10+
<a href="https://github.com/honmaple/maple-file/blob/master/LICENSE" target="_blank">
11+
<img src="https://img.shields.io/badge/license-GPL3.0-blue.svg">
12+
</a>
13+
14+
[主页][home] | [下载][download] | [帮助文档][document]
15+
</div>
16+
17+
[home]: https://fileapp.honmaple.com
18+
[document]: https://fileapp.honmaple.com/guide/introduction.html
19+
[download]: https://github.com/honmaple/maple-file/releases/tag/v1.0.3
20+
21+
> 使用 **Flutter** 实现的无服务端多协议云盘文件上传和管理APP
22+
23+
## 支持的存储
24+
- [X] 本地文件
25+
- [X] FTP
26+
- [X] SFTP
27+
- [X] S3
28+
- [X] SMB
29+
- [X] Webdav
30+
- [X] Alist
31+
- [X] Mirror(镜像站,支持文件查看和下载,支持格式:清华源、阿里源或者其他 **nginx** 文件列表源)
32+
- [X] 又拍云
33+
34+
## 功能
35+
- 支持文件列表查看/复制/移动/删除/重命名/上传/下载
36+
- 支持桌面端拖拽上传(仅文件,不支持文件夹)
37+
- 支持文件多选及操作
38+
- 支持回收站
39+
- 支持视频、音频、图片和文本文件的预览
40+
- 支持文件加密和压缩
41+
- 支持各存储之间的备份和同步(**测试中**)
42+
- 支持多语言(中文、英文)
43+
- 支持 **Web**, **Android**, **MacOS****Windows**
44+
45+
## 截图
46+
<table rules="none">
47+
<tr>
48+
<td><img src="./example/screenshot/flutter_01.png" /></td>
49+
<td><img src="./example/screenshot/flutter_02.png" /></td>
50+
</tr>
51+
<tr>
52+
<td><img src="./example/screenshot/flutter_03.png" /></td>
53+
<td><img src="./example/screenshot/flutter_04.png" /></td>
54+
</tr>
55+
<tr>
56+
<td><img src="./example/screenshot/flutter_05.png" /></td>
57+
</tr>
58+
<tr>
59+
<td><img src="./example/screenshot/flutter_06.png" /></td>
60+
<td><img src="./example/screenshot/flutter_07.png" /></td>
61+
</tr>
62+
</table>

README.org

Lines changed: 0 additions & 39 deletions
This file was deleted.

app/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.0.2+1
19+
version: 1.0.3+1
2020

2121
environment:
2222
sdk: '>=3.3.3 <4.0.0'

example/screenshot/flutter_07.png

306 KB
Loading

server/internal/app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
var (
2424
PROCESS = "maple-file"
2525
VERSION = "dev"
26-
DESCRIPTION = "Upload or download file, manage cloud file"
26+
DESCRIPTION = "Multi-protocol cloud file upload and management with serverless."
2727
)
2828

2929
type App struct {

0 commit comments

Comments
 (0)