Skip to content

Commit

Permalink
prepare for release 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff committed Feb 3, 2021
1 parent 7e17c20 commit db16235
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 1.4.4
* support server using self-signed certificate
* bugs fixed

## Version 1.4.3
* fixed a serious bug that cause syncing on mobile network even though "Sync only on WiFi network" is on (a nice user just lost money because of this bug, it's really terrible)
* fixed various syncing bugs introduced along with Snapseed integration feature
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ Les Pas store photos in it's app private storage, so if you have a large collect
There are two reasons why Les Pas use private storage. First, Android introduced scope storage policy recently, highly recommends apps to stay out of share storage area. Second, storing photos in apps private storage area can prevent malicious apps scanning, uploading your photo secretly in the backgroud. Yes, they love your pictures so much, especially those with your face in it.<br>
**For privacy sake, stop using "/Pictures" folder in your phone's internal/external storage.**<br><br>
Since Les Pas use app's private storage to stop photos, if you reinstall the app, albums/photos need to be downloaded again from server.

### About server using self-signed certificate
You need to install your certificates in your phone first. A quick search on instructions points to <a href=https://aboutssl.org/how-to-create-and-import-self-signed-certificate-to-android-device/>here</a> and <a href=https://proxyman.io/blog/2020/09/Install-And-Trust-Self-Signed-Certificate-On-Android-11.html>here</a>.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "site.leos.apps.lespas"
minSdkVersion 25
targetSdkVersion 29
versionCode 8
versionName "1.4.3"
versionCode 9
versionName "1.4.4"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
archivesBaseName = "LesPas-v$versionName"
Expand Down Expand Up @@ -72,7 +72,7 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"

// Kotlin components
implementation 'androidx.work:work-runtime-ktx:2.4.0'
implementation 'androidx.work:work-runtime-ktx:2.5.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.21"
api 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1'
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1'
Expand All @@ -81,7 +81,7 @@ dependencies {
implementation "com.google.android.material:material:1.2.1"
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.recyclerview:recyclerview-selection:1.0.0"
implementation "androidx.recyclerview:recyclerview-selection:1.1.0"
implementation "androidx.viewpager2:viewpager2:1.0.0"
implementation 'androidx.preference:preference-ktx:1.1.1'

Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Unterstützung von Servern mit selbstsigniertem Zertifikat
* Bugs behoben
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* support server using self-signed certificate
* bugs fixed
2 changes: 2 additions & 0 deletions fastlane/metadata/android/es-ES/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* soporte del servidor con certificado autofirmado
* se han corregido los errores
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fr-FR/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* serveur d'assistance utilisant un certificat auto-signé
* Bugs corrigés
2 changes: 2 additions & 0 deletions fastlane/metadata/android/zh-CN/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* 支持连接使用自签名证书的服务器
* 错误修复

0 comments on commit db16235

Please sign in to comment.