Skip to content

Commit

Permalink
3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
seazon committed Jun 21, 2020
1 parent c9c431d commit 9dd3b61
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions doc/en/patches.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions doc/zh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions doc/zh/patches.md
Original file line number Diff line number Diff line change
@@ -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不会继续播放的问题。
Expand Down

0 comments on commit 9dd3b61

Please sign in to comment.