mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2025-01-18 21:06:45 -06:00
Version 0.8.0
This commit is contained in:
parent
dbbc8069b1
commit
df0a1e59cc
@ -11,7 +11,7 @@ references:
|
|||||||
working_directory: *workspace_root
|
working_directory: *workspace_root
|
||||||
environment:
|
environment:
|
||||||
environment:
|
environment:
|
||||||
_JAVA_OPTS: -Xmx2048m
|
_JAVA_OPTS: -Xmx3072m
|
||||||
|
|
||||||
attach_workspace: &attach_workspace
|
attach_workspace: &attach_workspace
|
||||||
attach_workspace:
|
attach_workspace:
|
||||||
|
@ -11,10 +11,10 @@ cache:
|
|||||||
- $HOME/.gradle/caches/
|
- $HOME/.gradle/caches/
|
||||||
- $HOME/.gradle/wrapper/
|
- $HOME/.gradle/wrapper/
|
||||||
|
|
||||||
branches:
|
#branches:
|
||||||
only:
|
# only:
|
||||||
- master
|
# - master
|
||||||
- 0.7.x
|
# - 0.7.x
|
||||||
|
|
||||||
android:
|
android:
|
||||||
licenses:
|
licenses:
|
||||||
|
@ -16,8 +16,8 @@ android {
|
|||||||
testApplicationId "io.github.tests.wulkanowy"
|
testApplicationId "io.github.tests.wulkanowy"
|
||||||
minSdkVersion 15
|
minSdkVersion 15
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 32
|
versionCode 33
|
||||||
versionName "0.7.6"
|
versionName "0.8.0"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
@ -85,7 +85,7 @@ play {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.github.wulkanowy:api:3335bd6'
|
implementation 'io.github.wulkanowy:api:0.8.0'
|
||||||
|
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
||||||
@ -101,9 +101,9 @@ dependencies {
|
|||||||
implementation "androidx.work:work-runtime:2.0.1"
|
implementation "androidx.work:work-runtime:2.0.1"
|
||||||
implementation "androidx.work:work-rxjava2:2.0.1"
|
implementation "androidx.work:work-rxjava2:2.0.1"
|
||||||
|
|
||||||
implementation "androidx.room:room-runtime:2.1.0-alpha06"
|
implementation "androidx.room:room-runtime:2.1.0-alpha07"
|
||||||
implementation "androidx.room:room-rxjava2:2.1.0-alpha06"
|
implementation "androidx.room:room-rxjava2:2.1.0-alpha07"
|
||||||
kapt "androidx.room:room-compiler:2.1.0-alpha06"
|
kapt "androidx.room:room-compiler:2.1.0-alpha07"
|
||||||
|
|
||||||
implementation "com.google.dagger:dagger-android-support:2.22.1"
|
implementation "com.google.dagger:dagger-android-support:2.22.1"
|
||||||
kapt "com.google.dagger:dagger-compiler:2.22.1"
|
kapt "com.google.dagger:dagger-compiler:2.22.1"
|
||||||
@ -147,7 +147,7 @@ dependencies {
|
|||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
||||||
androidTestImplementation "io.mockk:mockk-android:1.9.2"
|
androidTestImplementation "io.mockk:mockk-android:1.9.2"
|
||||||
androidTestImplementation 'org.mockito:mockito-android:2.27.0'
|
androidTestImplementation 'org.mockito:mockito-android:2.27.0'
|
||||||
androidTestImplementation "androidx.room:room-testing:2.1.0-alpha06"
|
androidTestImplementation "androidx.room:room-testing:2.1.0-alpha07"
|
||||||
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,17 +31,17 @@ task jacocoTestReport(type: JacocoReport) {
|
|||||||
'**/*_Provide*Factory*.*',
|
'**/*_Provide*Factory*.*',
|
||||||
'**/*_Factory.*']
|
'**/*_Factory.*']
|
||||||
|
|
||||||
classDirectories = fileTree(
|
classDirectories.setFrom(fileTree(
|
||||||
dir: "$buildDir/intermediates/classes/debug",
|
dir: "$buildDir/intermediates/classes/debug",
|
||||||
excludes: excludes
|
excludes: excludes
|
||||||
) + fileTree(
|
) + fileTree(
|
||||||
dir: "$buildDir/tmp/kotlin-classes/debug",
|
dir: "$buildDir/tmp/kotlin-classes/debug",
|
||||||
excludes: excludes
|
excludes: excludes
|
||||||
)
|
))
|
||||||
|
|
||||||
sourceDirectories = files("$project.projectDir/src/main/java")
|
sourceDirectories.setFrom(files("$project.projectDir/src/main/java"))
|
||||||
executionData = fileTree(
|
executionData.setFrom(fileTree(
|
||||||
dir: project.projectDir,
|
dir: project.projectDir,
|
||||||
includes: ["**/*.exec", "**/*.ec"]
|
includes: ["**/*.exec", "**/*.ec"]
|
||||||
)
|
))
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
Wersja 0.7.5
|
Wersja 0.8.0
|
||||||
|
|
||||||
Uwaga! Jeżeli w aplikacji przestały wyświetlać się oceny, prosimy o wylogowanie i zalogowanie się ponownie!
|
Uwaga! Po tej aktualizacji wymagane jest ponowne przypięcie widżetu planu lekcji!
|
||||||
|
|
||||||
Naprawiliśmy:
|
Dodaliśmy:
|
||||||
- problem z brakiem aktywnego semestru
|
- możliwość przesyłania dalej i usuwania wiadomości
|
||||||
- logowanie w niestandardowych dziennikach na vulcan.net.pl
|
- możliwość zmiany ucznia w widżecie
|
||||||
- oznaczanie lekcji w planie jako odwołanej, jeśli brak opisu tej zmiany
|
- opcję liczenia średniej ocen z całego roku
|
||||||
- ładowanie wiadomości, jeśli byli zalogowani jednocześnie uczeń i rodzic
|
- tryb AMOLED
|
||||||
|
- logowanie wielu uczniów jednocześnie
|
||||||
|
- widżet szczęśliwego numerka
|
||||||
|
|
||||||
Pełna lista zmian: https://github.com/wulkanowy/wulkanowy/releases/tag/0.7.5
|
Pełna lista zmian: https://github.com/wulkanowy/wulkanowy/releases/tag/0.8.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user