Skip to content

Commit 688eabd

Browse files
committed
Update version 0.10.1
1 parent 683a024 commit 688eabd

File tree

3 files changed

+107
-2
lines changed

3 files changed

+107
-2
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ android {
2222
applicationId "me.ash.reader"
2323
minSdk 26
2424
targetSdk 33
25-
versionCode 24
26-
versionName "0.10.0"
25+
versionCode 25
26+
versionName "0.10.1"
2727

2828
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2929
vectorDrawables {
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## 0.10.1
2+
3+
1. Fix text icon style for feed (#726, @Ashinch)
4+
2. Fix issue where early users couldn’t launch the app after importing app preferences (#718, @Ashinch)
5+
3. Fix some cases causing OPML import failures (#735, @Ashinch)
6+
4. Fix some window navigation animations (#717, @JunkFood02)
7+
5. Fix some style issues for RTL languages (#732, #733, @JunkFood02)
8+
6. Translation updates (Thanks to all contributors)
9+
10+
### Notes
11+
12+
**Full changelog:** [0.10.0...0.10.1](https://github.com/Ashinch/ReadYou/compare/0.10.0...0.10.1)
13+
14+
This is a bug fix patch. In case you missed it, here is the changelog for version 0.10.0:
15+
16+
## 0.10.0
17+
18+
1. Bump up Material Design 3 dependencies, compile sdk, and gradle version (#502, @JunkFood02)
19+
2. Support the in-app language picker for Android 13 (#541, #571, @JunkFood02)
20+
3. Support add feed via system share sheet (#618, @JunkFood02)
21+
4. Support for specifying the composition of shared content (#660, @Ashinch)
22+
5. Improve swipe to star/unstar, swipe to unread, and add configuration (#594, @JunkFood02)
23+
6. Use system locale to format time display by default. (#617, @JunkFood02)
24+
7. Switch to androidx edge to edge implementation (#690, @Moderpach)
25+
8. Add image viewer to the reading page (#578, #545, @JunkFood02, @nvllz)
26+
9. Add gestures to swipe up and down on the reading page to switch articles (#589, @JunkFood02)
27+
10. Add crash report activity to handle uncaught exceptions (#576, @JunkFood02)
28+
11. Add context menu on long press for items in the flow page (#613, @JunkFood02)
29+
12. Add line height multiple preference for reading page (#620, @JunkFood02)
30+
13. Add license list page and improve about page (#664, @Ashinch)
31+
14. Add troubleshooting page and app preferences import/export tools (#672, #710, @Ashinch)
32+
15. Fix notification permission request at startup on Android 13 (@JunkFood02)
33+
16. Fix clash when published date and updated date are both empty (@JunkFood02)
34+
17. Now replace publish date of an article with the current time if it is a future date (#638, @Ashinch)
35+
18. Now when cleaning feed or group, the starred articles will be ignored (#652, @Ashinch)
36+
19. Now automatically restart the app after loading external fonts (#667, @Ashinch)
37+
20. Now first find the `<enclosure>` tag as a thumbnail of the article (#681, @Ashinch)
38+
21. Now by default, sort categories alphabetically during sync on Google Reader (#700, @mbestavros)
39+
22. New image placeholder (#712, @JunkFood02)
40+
23. More UI improvements and bug fixes (@Ashinch, @JunkFood02)
41+
24. Translations updates (thanks to everyone who helped out)
42+
43+
### Notes
44+
45+
1. In order to support the export of setting items, some of the setting items have been reset to default and you may have to reset them.
46+
2. The buymeacoffee.com sponsorship channel is currently unavailable, and the money previously donated has been refunded to the donors' accounts.
47+
3. We are looking for other sponsorship channels, currently available are AFDIAN. If you would like to support the development of ReadYou, you can sponsor it through [AFDIAN](https://afdian.net/a/ashinch).
48+
4. Thanks to our sponsors: @User_3072e, @User_223be, @User_3c5c7(Simon), @User_97ebe, @Lowae, @User_28b9f, @User_yuHC, @nullqwertyuiop, @openisgood, @User_vWca, @qgmzmy, @User_97ee1
49+
50+
**Full changelog:** [0.9.12...0.10.0](https://github.com/Ashinch/ReadYou/compare/0.9.12...0.10.0)
51+
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
## 0.10.1
2+
3+
1. 修复订阅源文字图标样式 (#726, @Ashinch)
4+
2. 修复早期用户在导入应用程序偏好设置后无法启动应用的问题 (#718, @Ashinch)
5+
3. 修复部分内容会导致 OPML 导入失败的情况 (#735, @Ashinch)
6+
4. 修复部分窗口导航动画 (#717, @JunkFood02)
7+
5. 修复部分针对 RTL 语言的样式问题 (#732, #733, @JunkFood02)
8+
6. 翻译更新 (感谢所有提供帮助的人)
9+
10+
### Notes
11+
12+
**完整更新日志:** [0.10.0...0.10.1](https://github.com/Ashinch/ReadYou/compare/0.10.0...0.10.1)
13+
14+
这是一个修复补丁,以下是 0.10.0 版本的更新日志,您可能错过了它:
15+
16+
## 0.10.0
17+
18+
1. 升级 Material Design 3 框架组件、编译 SDK 和 Gradle 版本 (#502, @JunkFood02)
19+
2. 支持 Android 13 应用内语言选择器 (#541, #571, @JunkFood02)
20+
3. 支持通过系统分享菜单来添加订阅源 (#618, @JunkFood02)
21+
4. 支持指定分享内容的构成 (#660, @Ashinch)
22+
5. 改进轻扫标记已加星标\未加星标、标记为未读,支持设置动作行为 (#594, @JunkFood02)
23+
6. 使用系统区域作为默认的时间格式显示 (#617, @JunkFood02)
24+
7. 切换到 Androidx 的全屏窗口实现 (#690, @Moderpach)
25+
8. 为阅读页面添加图片查看器 (#578, #545, @JunkFood02, @nvllz)
26+
9. 为阅读页面添加上滑、下滑手势来切换文章 (#589, @JunkFood02)
27+
10. 添加崩溃报告页面来处理未捕获异常 (#576, @JunkFood02)
28+
11. 为信息流页面添加长按菜单 (#613, @JunkFood02)
29+
12. 为阅读页面添加行高倍数设置 (#620, @JunkFood02)
30+
13. 添加第三方库开源许可协议列表页面并改进关于页面 (#664, @Ashinch)
31+
14. 添加故障排除页面并支持应用设置的导入\导出功能 (#672, #710, @Ashinch)
32+
15. 修复在 Android 13 上启动时请求发送通知权限 (@JunkFood02)
33+
16. 修复当文章的发布时间和更新时间都为空的情况下引发的崩溃 (@JunkFood02)
34+
17. 现在发布时间为未来日期的文章将被重新设定到当前日期 (#638, @Ashinch)
35+
18. 现在清理订阅源或组的文章时,将忽略已加星标的文章 (#652, @Ashinch)
36+
19. 现在在设置外部字体时,将自动重启应用以使其生效 (#667, @Ashinch)
37+
20. 现在将优先使用 `<enclosure>` 标签作为文章缩略图 (#681, @Ashinch)
38+
21. 现在在同步 Google Reader 时将默认按照字母顺序排序订阅源 (#700, @mbestavros)
39+
22. 新的加载占位图片 (#712, @JunkFood02)
40+
23. 许多用户界面改进和错误修复 (@Ashinch, @JunkFood02)
41+
24. 翻译更新 (感谢所有提供帮助的人)
42+
43+
### Notes
44+
45+
1. 为了支持设置项的导出,部分设置项已被重置,您可能要重新设定。
46+
2. 赞助渠道 buymeacoffee.com 目前已无法使用,之前捐赠的款项已退还至捐赠者账户。
47+
3. 我们正在寻找其他赞助渠道,目前可用的有 "爱发电"。如果您想支持 ReadYou 的开发,可以通过 [爱发电](https://afdian.net/a/ashinch) 进行赞助。
48+
4. 感谢我们的赞助者: @User_3072e, @User_223be, @User_3c5c7(Simon), @User_97ebe, @Lowae, @User_28b9f, @User_yuHC, @nullqwertyuiop, @openisgood, @User_vWca, @qgmzmy, @User_97ee1。
49+
50+
**完整更新日志:** [0.9.12...0.10.0](https://github.com/Ashinch/ReadYou/compare/0.9.12...0.10.0)
51+
52+
53+
54+

0 commit comments

Comments
 (0)