Compare commits
5 Commits
0b7f832573
...
fix-bottom
Author | SHA1 | Date | |
---|---|---|---|
e4b6119f65 | |||
ea70c64873 | |||
f4a1805474 | |||
a602f7adf2 | |||
cf6ef51edf |
@ -11,7 +11,7 @@ jobs:
|
||||
fetch-depth: 0
|
||||
- name: "Check android app changes"
|
||||
id: check-android-changes
|
||||
uses: tj-actions/changed-files@v45
|
||||
uses: tj-actions/changed-files@v46
|
||||
with:
|
||||
files: |
|
||||
androidApp/src/**
|
||||
|
@ -31,8 +31,9 @@ jobs:
|
||||
fetch-depth: 0
|
||||
- name: "Check translations changes"
|
||||
id: check-translations-changes
|
||||
uses: tj-actions/changed-files@v45
|
||||
uses: tj-actions/changed-files@v46
|
||||
with:
|
||||
base_sha: ${{ github.event.pull_request.base.sha }}
|
||||
files: |
|
||||
androidApp/src/main/res/values/strings.xml
|
||||
- name: upload translation sources
|
||||
|
27
CHANGELOG.md
27
CHANGELOG.md
@ -1,3 +1,30 @@
|
||||
**v125040991
|
||||
|
||||
- fix: Connectivity toast message was causing issues.
|
||||
- Changelog for v125030901
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
**v125030901
|
||||
|
||||
- Merge pull request 'fix-reload' (#195) from fix-reload into master
|
||||
- fix: Infinite scroll needs loading stats.
|
||||
- fix: do not reload items on resume.
|
||||
- Merge pull request 'tests' (#193) from tests into master
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- chore: better handling of coroutine dispatchers.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- chore: comment robolectric tests for now.
|
||||
- fix: Fixed source deletion test.
|
||||
- Merge pull request 'Fix alignment changes resetting reader article position' (#190) from davidoskky/ReaderForSelfoss-multiplatform:alignment into master
|
||||
- Refactor star icon handling
|
||||
- Don't restart activity changing alignment
|
||||
- Changelog for v125030711
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
**v125030711
|
||||
|
||||
- Merge pull request 'fix: initial status loading issues.' (#192) from connectivity into master
|
||||
|
@ -387,6 +387,7 @@ class HomeActivity :
|
||||
lastFetchDone = false
|
||||
|
||||
elementsShown = ItemType.fromInt(position + 1)
|
||||
items = ArrayList()
|
||||
getElementsAccordingToTab()
|
||||
binding.recyclerView.scrollToPosition(0)
|
||||
|
||||
|
@ -82,13 +82,14 @@ class MyApp :
|
||||
} else {
|
||||
R.string.network_connectivity_lost
|
||||
}
|
||||
|
||||
Toast
|
||||
.makeText(
|
||||
applicationContext,
|
||||
toastMessage,
|
||||
Toast.LENGTH_SHORT,
|
||||
).show()
|
||||
launch(Dispatchers.Main) {
|
||||
Toast
|
||||
.makeText(
|
||||
applicationContext,
|
||||
toastMessage,
|
||||
Toast.LENGTH_SHORT,
|
||||
).show()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
17
fastlane/metadata/android/en-US/changelogs/v125030901.txt
Normal file
17
fastlane/metadata/android/en-US/changelogs/v125030901.txt
Normal file
@ -0,0 +1,17 @@
|
||||
**v125030901**
|
||||
|
||||
- Merge pull request 'fix-reload' (#195) from fix-reload into master
|
||||
- fix: Infinite scroll needs loading stats.
|
||||
- fix: do not reload items on resume.
|
||||
- Merge pull request 'tests' (#193) from tests into master
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- chore: better handling of coroutine dispatchers.
|
||||
- ci: Instrumentation tests coverage in ci.
|
||||
- chore: comment robolectric tests for now.
|
||||
- fix: Fixed source deletion test.
|
||||
- Merge pull request 'Fix alignment changes resetting reader article position' (#190) from davidoskky/ReaderForSelfoss-multiplatform:alignment into master
|
||||
- Refactor star icon handling
|
||||
- Don't restart activity changing alignment
|
||||
- Changelog for v125030711
|
@ -0,0 +1,4 @@
|
||||
**v125040991**
|
||||
|
||||
- fix: Connectivity toast message was causing issues.
|
||||
- Changelog for v125030901
|
Reference in New Issue
Block a user