mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-25 21:34:38 -06:00
Version 0.24.0
This commit is contained in:
parent
01fd146c99
commit
b55c05aaed
@ -14,7 +14,7 @@ cache:
|
|||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- develop
|
- develop
|
||||||
- 0.23.1
|
- 0.24.0
|
||||||
|
|
||||||
android:
|
android:
|
||||||
licenses:
|
licenses:
|
||||||
|
@ -18,8 +18,8 @@ android {
|
|||||||
testApplicationId "io.github.tests.wulkanowy"
|
testApplicationId "io.github.tests.wulkanowy"
|
||||||
minSdkVersion 17
|
minSdkVersion 17
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 77
|
versionCode 78
|
||||||
versionName "0.23.1"
|
versionName "0.24.0"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
resValue "string", "app_name", "Wulkanowy"
|
resValue "string", "app_name", "Wulkanowy"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
@ -138,7 +138,7 @@ ext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "io.github.wulkanowy:sdk:edc165bb"
|
implementation "io.github.wulkanowy:sdk:0.24.0"
|
||||||
|
|
||||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
|
||||||
|
|
||||||
|
@ -201,7 +201,10 @@ class AttendancePresenter @Inject constructor(
|
|||||||
showRefresh(true)
|
showRefresh(true)
|
||||||
showProgress(false)
|
showProgress(false)
|
||||||
showContent(true)
|
showContent(true)
|
||||||
updateData(it.data)
|
updateData(it.data.let { items ->
|
||||||
|
if (prefRepository.isShowPresent) items
|
||||||
|
else items.filter { item -> !item.presence }
|
||||||
|
}.sortedBy { item -> item.number })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
Wersja 0.23.1
|
Wersja 0.24.0
|
||||||
- naprawiliśmy opis pola na email/login przy wyborze niestandardowych dzienników
|
- naprawiliśmy niekończące się ładowanie w ocenach na drugim semestrze
|
||||||
- naprawiliśmy obsługę dziennika lubelskiego i koszalińskiego na starszych urządzeniach (z Androidem 5 i starszymi)
|
- naprawiliśmy ciemny motyw na MIUI 12
|
||||||
|
- dodaliśmy automatyczne odświeżanie danych w aplikacji
|
||||||
|
- naprawiliśmy wysyłanie wiadomości kiedy uczeń zalogowany był/jest przez konto ucznia i rodzica
|
||||||
|
- dodaliśmy zakładkę lekcji dodatkowych (na górnym pasku w planie lekcji)
|
||||||
|
|
||||||
Pełna lista zmian: https://github.com/wulkanowy/wulkanowy/releases
|
Pełna lista zmian: https://github.com/wulkanowy/wulkanowy/releases
|
||||||
|
Loading…
Reference in New Issue
Block a user