Changelog and update comment

This commit is contained in:
Benoit Marty 2020-12-09 12:49:25 +01:00
parent 0956baecf9
commit 4bd538e448
2 changed files with 4 additions and 1 deletions

View file

@ -4,6 +4,7 @@ Changes in Element 1.0.12 (2020-XX-XX)
Features ✨:
- Add room aliases management, and room directory visibility management in a dedicated screen (#1579, #2428)
- Room setting: update join rules and guest access (#2442)
- Store encrypted file in cache and cleanup decrypted file at each app start
Improvements 🙌:
- Add Setting Item to Change PIN (#2462)

View file

@ -57,9 +57,11 @@ internal class DefaultFileService @Inject constructor(
private val taskExecutor: TaskExecutor
) : FileService {
// Folder to store downloaded file (not decrypted)
// Legacy folder, will be deleted
private val legacyFolder = File(sessionCacheDirectory, "MF")
// Folder to store downloaded files (not decrypted)
private val downloadFolder = File(sessionCacheDirectory, "F")
// Folder to store decrypted files
private val decryptedFolder = File(downloadFolder, "D")
init {