mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-23 08:10:15 +01:00
Changelog and update comment
This commit is contained in:
parent
0956baecf9
commit
4bd538e448
@ -4,6 +4,7 @@ Changes in Element 1.0.12 (2020-XX-XX)
|
|||||||
Features ✨:
|
Features ✨:
|
||||||
- Add room aliases management, and room directory visibility management in a dedicated screen (#1579, #2428)
|
- Add room aliases management, and room directory visibility management in a dedicated screen (#1579, #2428)
|
||||||
- Room setting: update join rules and guest access (#2442)
|
- Room setting: update join rules and guest access (#2442)
|
||||||
|
- Store encrypted file in cache and cleanup decrypted file at each app start
|
||||||
|
|
||||||
Improvements 🙌:
|
Improvements 🙌:
|
||||||
- Add Setting Item to Change PIN (#2462)
|
- Add Setting Item to Change PIN (#2462)
|
||||||
|
@ -57,9 +57,11 @@ internal class DefaultFileService @Inject constructor(
|
|||||||
private val taskExecutor: TaskExecutor
|
private val taskExecutor: TaskExecutor
|
||||||
) : FileService {
|
) : FileService {
|
||||||
|
|
||||||
// Folder to store downloaded file (not decrypted)
|
// Legacy folder, will be deleted
|
||||||
private val legacyFolder = File(sessionCacheDirectory, "MF")
|
private val legacyFolder = File(sessionCacheDirectory, "MF")
|
||||||
|
// Folder to store downloaded files (not decrypted)
|
||||||
private val downloadFolder = File(sessionCacheDirectory, "F")
|
private val downloadFolder = File(sessionCacheDirectory, "F")
|
||||||
|
// Folder to store decrypted files
|
||||||
private val decryptedFolder = File(downloadFolder, "D")
|
private val decryptedFolder = File(downloadFolder, "D")
|
||||||
|
|
||||||
init {
|
init {
|
||||||
|
Loading…
Reference in New Issue
Block a user