Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
58256aa
fix: prevent sync worker from stalling after persistent errors
Left024 Jul 19, 2026
e1effb6
fix: reset lastEnqueueTime on app restart to prevent stale schedule
Left024 Jul 19, 2026
a0a4cae
增强同步可靠性:多账户初始化、电池优化、网络恢复触发、通知改进
Left024 Jul 22, 2026
b3bb5b7
chore: ignore .dsh scratch directory
Left024 Sep 3, 2026
7a210f2
fix: split .gitignore AGENTS.md and .dsh rules
Left024 Sep 3, 2026
59b7d49
chore: ignore Kotlin session dir and AS profiler artifacts
Left024 Sep 3, 2026
db5e503
feat: reading title display control (global default + per feed/group …
Left024 Sep 4, 2026
75f0c87
fix: never reset locally-read articles to unread on sync; show sync p…
Left024 Sep 4, 2026
b33b6c3
chore: ignore local apk output dir
Left024 Sep 4, 2026
1706c33
chore: bump version to 0.16.3 (48)
Left024 Sep 4, 2026
843e299
fix: persist open-article auto-read immediately; refine sync progress…
Left024 Sep 4, 2026
470d2cd
ui: feeds page pull-to-refresh matches flow page indicator style
Left024 Sep 4, 2026
59def5e
fix: restore gray read state on article list return, defer auto-read …
Left024 Sep 4, 2026
3f89254
fix: commit auto-read diffs only when leaving the flow list page
Left024 Sep 4, 2026
e96d327
fix: commit read diffs to DB before starting sync worker
Left024 Sep 4, 2026
f5d76b6
fix: keep gray overlay read state stable across refresh; reconcile sk…
Left024 Sep 4, 2026
cea6890
fix: break Hilt dependency cycle DiffMapHolder <-> RssService
Left024 Sep 4, 2026
ca7bfad
fix: do not clear read overlay when account row updates after sync
Left024 Sep 5, 2026
ebde6ba
fix: smooth sync progress percentage during refresh
Left024 Sep 5, 2026
a1c5ead
fix: report progress during the slow push-read stage; slow UI crawl a…
Left024 Sep 5, 2026
70498bf
feat: request-count based sync progress with dynamic budget reallocation
Left024 Sep 5, 2026
190b8c2
fix: raise phase-1 progress step to 2% per id page, cap 96%
Left024 Sep 5, 2026
2bf2f20
fix: place feeds page pull-to-sync indicator at top like flow page
Left024 Sep 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,16 @@ out/
### VS Code ###
.vscode/

signature
signature

AGENTS.md
.dsh/

# Android Studio (additional)
.kotlin/
*.hprof
.externalNativeBuild/
*.aab

apk/
.rycheck/
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ android {
applicationId = "me.ash.reader"
minSdk = 26
targetSdk = 34
versionCode = 47
versionName = "0.16.2"
versionCode = 48
versionName = "0.16.3"

buildConfigField(
"String",
Expand Down
Loading
Loading