Update patches.md

This commit is contained in:
seazon 2018-02-24 21:21:36 +08:00 committed by GitHub
parent 7a9f65145f
commit 37aa71c1be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,27 @@
### 3.5.5
###### 2018-2-24
- [优化] 音频播放过程中如果有提示音,不再暂停播放,而是降低音量。
- [优化] 下载过程显示已下载的图片数。
- [修复] 修复Feedly同步时返回`Json parse error`的问题。
- [修复] 修复Tiny Tiny RSS下拉刷新同步卡住的问题。
- [修复] 修复TTS将2个单词读成一个单词的问题。
- [修复] 修复列表摘要文字未转码的问题。
- [其他] 可以外部调用同步服务。
``` java
Intent intent = new Intent();
intent.setClassName("com.seazon.feedme", "com.seazon.feedme.service.sync.SyncService");
intent.putExtra("auto", false);
intent.putExtra("type", syncTypes);
activity.startService(intent);
// syncTypes取值如下相加表示执行多个动作
public static int SYNC_TO_SERVER = 1;
public static int SYNC_UNREAD_FROM_SERVER = 2;
public static int SYNC_STARRED_FROM_SERVER = 4;
public static int SYNC_DELETE_READ = 16;
public static int SYNC_DOWNLOAD_IMAGE_AND_WEB_PAGE = 32;
public static int SYNC_DOWNLOAD_PODCAST = 256;
```
### 3.5.4
###### 2018-2-8