diff --git a/app/build.gradle b/app/build.gradle index a688f75..3df9751 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,138 +1,138 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' android { compileSdkVersion 33 buildToolsVersion '33.0.2' namespace "it.reyboz.bustorino" defaultConfig { applicationId "it.reyboz.bustorino" minSdkVersion 21 targetSdkVersion 33 - versionCode 48 - versionName "1.19.1" + versionCode 49 + versionName "2.0.0" vectorDrawables.useSupportLibrary = true multiDexEnabled true javaCompileOptions { annotationProcessorOptions { arguments = ["room.schemaLocation": "$projectDir/assets/schemas/".toString()] } } testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } testOptions { unitTests.returnDefaultValues = true } sourceSets { androidTest.assets.srcDirs += files("$projectDir/assets/schemas/".toString()) } buildTypes { debug { applicationIdSuffix ".debug" versionNameSuffix "-dev" } gitpull{ applicationIdSuffix ".gitdev" versionNameSuffix "-gitdev" } } lintOptions { abortOnError false } repositories { mavenCentral() mavenLocal() } dependencies { //new libraries } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version" api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version" implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation "androidx.fragment:fragment-ktx:$fragment_version" implementation "androidx.activity:activity:$activity_version" implementation "androidx.annotation:annotation:1.6.0" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" implementation "androidx.appcompat:appcompat:$appcompat_version" implementation "androidx.appcompat:appcompat-resources:$appcompat_version" implementation "androidx.preference:preference:$preference_version" implementation "androidx.work:work-runtime:$work_version" implementation "androidx.work:work-runtime-ktx:$work_version" implementation "com.google.android.material:material:1.9.0" implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation "androidx.coordinatorlayout:coordinatorlayout:1.2.0" implementation 'org.jsoup:jsoup:1.13.1' implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1' implementation 'com.android.volley:volley:1.2.1' implementation 'org.osmdroid:osmdroid-android:6.1.10' // remember to enable maven repo jitpack.io when wanting to use osmbonuspack //implementation 'com.github.MKergall:osmbonuspack:6.9.0' // ACRA implementation "ch.acra:acra-mail:$acra_version" implementation "ch.acra:acra-dialog:$acra_version" // google transit realtime implementation 'com.google.protobuf:protobuf-java:3.17.2' // mqtt library implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5' implementation 'com.github.hannesa2:paho.mqtt.android:3.5.3' // ViewModel implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" // LiveData implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version" // Lifecycles only (without ViewModel or LiveData) implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" // Legacy implementation 'androidx.legacy:legacy-support-v4:1.0.0' // Room components implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-ktx:$room_version" kapt "androidx.room:room-compiler:$room_version" //multidex - we need this to build the app implementation "androidx.multidex:multidex:$multidex_version" implementation 'de.siegmar:fastcsv:2.0.0' testImplementation 'junit:junit:4.12' implementation 'junit:junit:4.12' implementation "androidx.test.ext:junit:1.1.5" implementation "androidx.test:core:$androidXTestVersion" implementation "androidx.test:runner:$androidXTestVersion" implementation "androidx.room:room-testing:$room_version" androidTestImplementation "androidx.test.ext:junit:1.1.5" androidTestImplementation "androidx.test:core:$androidXTestVersion" androidTestImplementation "androidx.test:runner:$androidXTestVersion" androidTestImplementation "androidx.test:rules:$androidXTestVersion" androidTestImplementation "androidx.room:room-testing:$room_version" } diff --git a/metadata/en-US/changelogs/49.txt b/metadata/en-US/changelogs/49.txt new file mode 100644 index 0000000..d8d77e6 --- /dev/null +++ b/metadata/en-US/changelogs/49.txt @@ -0,0 +1,22 @@ +New way to select and display each line on the map along with the real time positions of the buses +Fatto da fabio.mazza +https://gitpull.it/T1186 + +Real time bus positions are updated more frequently + +Increased minimum required Android version from Kitkat to Lollipop also for security and compatibility reasons +Done by fabio.mazza +https://gitpull.it/T1184 + +Map: add a border to bus icons for better accessibility +Reported by Zubyte +Resolved by fabio.mazza +https://gitpull.it/T1183 + +Map: do not move the view out of Torino, if you are outside the region +Resolved by fabio.mazza +https://gitpull.it/T1182 + +Database update status visible from map or favorites too + +Upgrade background operations for better stability and bug fixing diff --git a/metadata/it/changelogs/49.txt b/metadata/it/changelogs/49.txt new file mode 100644 index 0000000..c2fb36e --- /dev/null +++ b/metadata/it/changelogs/49.txt @@ -0,0 +1,22 @@ +Nuova schermata delle linee che mostra la linea sulla mappa insieme ai bus in tempo reale +Fatto da fabio.mazza +https://gitpull.it/T1186 + +Posizioni in tempo reale aggiornate più frequentemente + +Aumentata la versione minima di Android richiesta a Lollipop per compatibilità e sicurezza +Fatto da fabio.mazza +https://gitpull.it/T1184 + +Aggiunto un bordino nero alle icone dei bus per vederle meglio sulla mappa +Segnalato da Zubyte +Risolto da fabio.mazza +https://gitpull.it/T1183 + +Mappa: non si sposta la visuale fuori Torino se la posizione è troppo lontana +Risolto da fabio.mazza +https://gitpull.it/T1182 + +Aggiornamento del database visibile anche dai preferiti e dalla mappa. + +Diversi cambiamenti sotto il cofano per aumentare la stabilità dell'app