Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId "com.amaze.filemanager"
minSdkVersion libs.versions.minSdk.get().toInteger()
targetSdkVersion libs.versions.targetSdk.get().toInteger()
versionCode 122
versionName "3.11"
versionCode 123
versionName "3.11.1"
multiDexEnabled true

vectorDrawables.useSupportLibrary = true
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/translators.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<string name="vietnamese_translation_summary" translable="false" translatable="false">ngoisaosang</string>
<string name="japanese_translation_summary" translatable="false">Naofumi Fukue</string>
<string name="tamil_translation_summary" translatable="false">Kuralarasi for StarsSoft</string>
<string name="app_version" translatable="false">v3.11</string>
<string name="app_version" translatable="false">v3.11.1</string>
<string name="author_1" translatable="false">Arpit Khurana</string>
<string name="author_2" translatable="false">Vishal Nehra</string>
<string name="developer_1" translatable="false">Emmanuel Messulam</string>
Expand Down
32 changes: 32 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/123.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Added:

* Add explicit TLS option for FTPSClient

Changed:

* Target API 35
* Use ContextCompat.startForegroundService() to better handle intents to start FTP service
* Increase DEFAULT_TRANSFER_QUANTUM to 1 MB for file operations
* Discard dependency info in apk and stricten cleartext traffic to local streamer only
* Migrate fingerprint decryption dialog to use AndroidX Biometrics API
* Integrate the settings for file deletion into a single subsection
* Add guard against invalid port numbers passed into NetCopyConnectionInfo
* Adaptations to enable 16KB page size support
* Add checks for getting network interfaces that supports multicast, should network code needs to send Datagram packets

Fixed:

* Add guard for empty string at port textfield in SftpConnectionDialog
* Fix FAB visibility glitch on history element
* Fix NPE on encryption
* Fix bookmark crash
* Fix last modified timestamps not getting preserved
* Fix files with ambiguous names crash on extraction
* Fix NPE on scroll
* Fix NPE on search
* Fix NPE on recycling bin listing
* Fix save unsupported URI
* Fix text issues
* Fix selected item is unselected after select all when there is only one item in the directory
* Ensure only valid file paths are processed in database viewer
* Fix misc NPEs and add guards
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
compileSdk = "34"
minSdk = "21"
targetSdk = "34"
targetSdk = "35"
kotlin = "1.9.25"
ndk = "28.2.13676358"

Expand Down
Loading