mirror of
https://github.com/seazon/FeedMe.git
synced 2025-03-12 01:00:18 +01:00
3.16
This commit is contained in:
parent
c9c431d117
commit
9dd3b61b9f
@ -11,8 +11,8 @@ FeedMe is an reader client application for RSS service:
|
||||
This is the documentation of FeedMe.
|
||||
|
||||
## Version:
|
||||
- release: 3.15.1
|
||||
- beta: 3.15.2 (join beta test: https://play.google.com/apps/testing/com.seazon.feedme)
|
||||
- release: 3.15.2
|
||||
- beta: 3.16 (join beta test: https://play.google.com/apps/testing/com.seazon.feedme)
|
||||
|
||||
## Download:
|
||||
- https://play.google.com/store/apps/details?id=com.seazon.feedme
|
||||
|
@ -1,3 +1,25 @@
|
||||
# 3.16
|
||||
###### 2020-6-21
|
||||
- [new]New custom fonts, no longer rely on font packages. Old font package is no longer compatible.
|
||||
- [fix]When searching for podcasts and episodes, due to third-party interface restrictions, you cannot directly subscribe, so now open the browser to obtain the subscription url.
|
||||
- [fix]https://github.com/seazon/FeedMe/issues/209
|
||||
- [fix]https://github.com/seazon/FeedMe/issues/202
|
||||
- [other] Call player command via 3rd party app.
|
||||
``` java
|
||||
Intent intent = new Intent();
|
||||
intent.setAction("com.seazon.feedme.action.STOP_ACTION");
|
||||
sendBroadcast(intent);
|
||||
|
||||
// actions:
|
||||
com.seazon.feedme.action.PLAY_ACTION
|
||||
com.seazon.feedme.action.STOP_ACTION
|
||||
com.seazon.feedme.action.NEXT_ACTION
|
||||
com.seazon.feedme.action.PREVIOUS_ACTION
|
||||
com.seazon.feedme.action.FORWARD_ACTION
|
||||
com.seazon.feedme.action.REPLAY_ACTION
|
||||
com.seazon.feedme.action.STAR_ACTION
|
||||
```
|
||||
|
||||
### 3.15.2
|
||||
###### 2020-6-4
|
||||
- [optimize]Update Polish,Italian,Norwegian, Spanish, Dutch,German.
|
||||
|
@ -11,8 +11,8 @@ FeedMe是一个RSS阅读器,支持以下RSS服务:
|
||||
这是FeedMe的使用文档。
|
||||
|
||||
## 版本:
|
||||
- 正式: 3.15.1
|
||||
- 测试: 3.15.2 (加入beta测试: https://play.google.com/apps/testing/com.seazon.feedme)
|
||||
- 正式: 3.15.2
|
||||
- 测试: 3.16 (加入beta测试: https://play.google.com/apps/testing/com.seazon.feedme)
|
||||
|
||||
## 下载:
|
||||
- https://play.google.com/store/apps/details?id=com.seazon.feedme
|
||||
|
@ -1,3 +1,25 @@
|
||||
# 3.16
|
||||
###### 2020-6-21
|
||||
- [新增]新的自定义字体,不再依赖字体包。老的字体包不再兼容。
|
||||
- [修复]探索中搜索播客节目和单集时,由于第三方接口限制,不能直接订阅,所以现在会打开浏览器获取订阅地址。
|
||||
- [修复]https://github.com/seazon/FeedMe/issues/209
|
||||
- [修复]https://github.com/seazon/FeedMe/issues/202
|
||||
- [其他]支持外部控制播放器。
|
||||
``` java
|
||||
Intent intent = new Intent();
|
||||
intent.setAction("com.seazon.feedme.action.STOP_ACTION");
|
||||
sendBroadcast(intent);
|
||||
|
||||
// actions:
|
||||
com.seazon.feedme.action.PLAY_ACTION
|
||||
com.seazon.feedme.action.STOP_ACTION
|
||||
com.seazon.feedme.action.NEXT_ACTION
|
||||
com.seazon.feedme.action.PREVIOUS_ACTION
|
||||
com.seazon.feedme.action.FORWARD_ACTION
|
||||
com.seazon.feedme.action.REPLAY_ACTION
|
||||
com.seazon.feedme.action.STAR_ACTION
|
||||
```
|
||||
|
||||
### 3.15.2
|
||||
###### 2020-6-4
|
||||
- [修复]修复某些情况下TTS不会继续播放的问题。
|
||||
|
Loading…
x
Reference in New Issue
Block a user