mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-09 22:50:26 -06:00
Merge branch 'release/2.7.0' into develop
This commit is contained in:
commit
da48285764
@ -27,8 +27,8 @@ android {
|
|||||||
testApplicationId "io.github.tests.wulkanowy"
|
testApplicationId "io.github.tests.wulkanowy"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 34
|
targetSdkVersion 34
|
||||||
versionCode 176
|
versionCode 177
|
||||||
versionName "2.6.16"
|
versionName "2.7.0"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
resValue "string", "app_name", "Wulkanowy"
|
resValue "string", "app_name", "Wulkanowy"
|
||||||
@ -191,7 +191,7 @@ ext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'io.github.wulkanowy:sdk:2.6.14'
|
implementation 'io.github.wulkanowy:sdk:2.7.0'
|
||||||
|
|
||||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
||||||
|
|
||||||
|
@ -36,7 +36,9 @@ class WulkanowySdkFactory @Inject constructor(
|
|||||||
private val migrationFailedStudentIds = mutableSetOf<Long>()
|
private val migrationFailedStudentIds = mutableSetOf<Long>()
|
||||||
private val sandbox: ListenableFuture<JavaScriptSandbox>? =
|
private val sandbox: ListenableFuture<JavaScriptSandbox>? =
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && JavaScriptSandbox.isSupported())
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && JavaScriptSandbox.isSupported())
|
||||||
JavaScriptSandbox.createConnectedInstanceAsync(context)
|
runCatching { JavaScriptSandbox.createConnectedInstanceAsync(context) }
|
||||||
|
.onFailure { Timber.e(it) }
|
||||||
|
.getOrNull()
|
||||||
else null
|
else null
|
||||||
|
|
||||||
private val sdk = Sdk().apply {
|
private val sdk = Sdk().apply {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
Wersja 2.6.16
|
Wersja 2.7.0
|
||||||
|
|
||||||
— dodaliśmy język kaszubski
|
— naprawiliśmy ustawienia wyglądu po zmianie na język kaszubski
|
||||||
— naprawiliśmy crash aplikacji przy przełączaniu uczniów, kiedy włączone są reklamy
|
— dodaliśmy ekran końca
|
||||||
|
- naprawiliśmy ładowanie ocen z modułu Uczeń Plus
|
||||||
|
|
||||||
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