Skip to content
This repository was archived by the owner on Feb 25, 2019. It is now read-only.

Commit 9d1f51e

Browse files
committedApr 28, 2018
update to v2.0.0
1 parent c5d5f5c commit 9d1f51e

7 files changed

+73
-36
lines changed
 

‎README-CN.md

+23-12
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@
2727
* 扫描二维码发送资产
2828
* 接收资产
2929
* 信任资产
30+
* 资产预估(XCN)
3031
* 充值提现
3132
* 充值
3233
* 提现
34+
* 历史记录查询
3335
* 交易
3436
* 自定义交易对
3537
* 交易盘面
3638
* 撤消委单
39+
* K线图展示功能
40+
* 交易历史
3741
* 安全
3842
* PIN
3943
* 密码
@@ -42,21 +46,28 @@
4246
* 多语言
4347

4448

45-
46-
## 构造
47-
```
48-
npm install -g cordova
49-
npm install
50-
npm run build
51-
cordova prepare
49+
## 开发
5250
```
51+
# 可以使用cnpm或yarn代替npm
52+
53+
# 需要安装cordova7.x的版本
54+
npm i -g cordova@7.1.0
55+
git clone https://github.com/stellarcn/firelfy.git
56+
cd firefly
57+
npm i
58+
# 打包
59+
npm run build # 生成js css等文件
60+
npm run chcp # 生成运态更新文件
61+
npm run cordova # 下载android和ios及相关插件
62+
# 解压 firefly/docs/resources/android-res.zip到firefly/platforms/android/res目录
63+
# 解压firefly/docs/resources/ios-Images.xcassets.zip到firefly/platforms/ios/firefly目录,替换Images.xcassets
5364
54-
### 生成APK需要用到
55-
- android studio
56-
- android sdk 19 +
65+
# 使用android studio打开firefly/platforms/android,即可远行android项目
66+
67+
# 使用xcode打开firefly/platforms/ios,即可运行ios项目
68+
69+
```
5770

58-
### 生在IPA需要
59-
- xcode
6071

6172

6273
## 开源协议

‎README.md

+23-11
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,17 @@ firefly is a mobile wallet for [Stellar](https://stellar.org) network. It suppor
2727
* Send Asset By QRCode
2828
* Receive Asset
2929
* Trust
30+
* estimation (XCN)
3031
* Funding
3132
* Deposite
3233
* Withdraw
34+
* History
3335
* Trade
3436
* Custom Trade Pair
3537
* Order Book
3638
* Cancel Trade
39+
* Candlestick chart
40+
* History
3741
* Security
3842
* PIN
3943
* Password
@@ -42,20 +46,28 @@ firefly is a mobile wallet for [Stellar](https://stellar.org) network. It suppor
4246
* Multi Language
4347

4448

45-
## Building
46-
```
47-
npm install -g cordova
48-
npm install
49-
npm run build
50-
cordova prepare
49+
## Develop
5150
```
51+
# You can use cnpm or yarn instead of npm
52+
53+
# firefly depend on cordova7.x
54+
npm i -g cordova@7.1.0
55+
56+
git clone https://github.com/stellarcn/firelfy.git
57+
cd firefly
58+
npm i
59+
# build
60+
npm run build # generate js and css files
61+
npm run chcp # generate hot code update files
62+
npm run cordova # download android and ios plugins
63+
# unzip firefly/docs/resources/android-res.zip to firefly/platforms/android/res
64+
# unzip firefly/docs/resources/ios-Images.xcassets.zip to firefly/platforms/ios/firefly,replace folder Images.xcassets
5265
53-
### Build APK Need
54-
- android studio
55-
- android sdk 19 +
66+
# use android studio to open firefly/platforms/android, run for android
5667
57-
### Build IPA Need
58-
- xcode
68+
# use xcode to open firefly/platforms/ios, run for ios
69+
70+
```
5971

6072

6173
## License

‎docs/ROADMAP.MD

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11

22
2.0.0
33
====
4-
* []cache data to the sqlite database, and when you open the application, read the data from the cache first
5-
* []cancel the `interval` and use the `stream` api, including `orderbook\trade\account`
6-
* []recharge and withdrawal support [SEP006 protocol](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0006.md)
7-
* []improve operation and performance of trade
8-
* []k line graph
4+
* [x]cache data to the sqlite database, and when you open the application, read the data from the cache first
5+
* [x]cancel the `interval` and use the `stream` api, including `orderbook\trade\account`
6+
* [x]recharge and withdrawal support [SEP006 protocol](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0006.md)
7+
* [x]improve operation and performance of trade
8+
* [x]k line graph
99
* []reset password
10-
* []trust anchor from code and issuer
10+
* [x]trust anchor from code and issuer
11+
12+
13+
2.1.0
14+
====
15+
* []trade improments
16+
* []support [SEP005 protocol](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0005.md)
17+
* []merge account
18+

‎docs/ROADMAP_CN.MD

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11

22
2.0.0
33
====
4-
* []缓存数据到sqlite数据库,新打开应用后,先从缓存中读取数据
5-
* []取消interval,采用stream,包括orderbook\trade\account
6-
* []充值提现支持[SEP006标准](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0006.md)
7-
* []交易界面操作和性能优化
8-
* []K线图功能
4+
* [x]缓存数据到sqlite数据库,新打开应用后,先从缓存中读取数据
5+
* [x]取消interval,采用stream,包括orderbook\trade\account
6+
* [x]充值提现支持[SEP006标准](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0006.md)
7+
* [x]交易界面操作和性能优化
8+
* [x]K线图功能
99
* []重置密码
10-
* []支持手动授信资产(指定资产代码与资产发行方)
10+
* [x]支持手动授信资产(指定资产代码与资产发行方)
11+
12+
2.1.0
13+
====
14+
* []K线图功能调整优化
15+
* []使用助记词创建账户[SEP005标准](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0005.md)
16+
* []合并账户功能
17+

‎docs/resources/android-res.zip

229 KB
Binary file not shown.
812 KB
Binary file not shown.

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"ios": "cordova prepare ios && cordova run ios",
2222
"android": "cordova prepare android",
2323
"lint": "eslint --ext .js,.vue src",
24-
"postinstall": "npm run build && cordova prepare",
2524
"cordova": "cordova prepare -d",
2625
"analyz": "NODE_ENV=production npm_config_report=true npm run build",
2726
"chcp": "cordova-hcp build"

0 commit comments

Comments
 (0)
This repository has been archived.