Skip to content

Commit 6083280

Browse files
authored
Merge pull request #119 from Arctosoft/develop
v2.2.1
2 parents a2d66c1 + dec2301 commit 6083280

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId = "se.arctosoft.vault"
1212
minSdk = 28
1313
targetSdk = 35
14-
versionCode = 35
15-
versionName = "2.2.0"
14+
versionCode = 36
15+
versionName = "2.2.1"
1616

1717
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1818
}

app/src/main/java/se/arctosoft/vault/utils/FileStuff.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public static List<GalleryFile> getFilesInFolder(Context context, Uri pickedDir)
9999
GalleryFile galleryFile;
100100
while ((galleryFile = fileQueue.poll()) != null) {
101101
if (galleryFile.isDirectory()) {
102+
readableFiles.add(galleryFile);
102103
continue;
103104
}
104105
Encryption.Streams streams = null;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
* The folder preview and file count now update after modifying the folder contents
2+
* Added a setting to hide all files encrypted using a different password
3+
* Added a setting to go to the password screen when locking instead of exiting
4+
* Fixed duplicate files in the All folder
5+
* Fixed images being displayed in the wrong orientation
6+
* Fixed missing fast scroll bar
7+
* Fixed a crash when scrolling fast in the grid
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
* Mappförhandsgranskningen och filantalet uppdateras nu efter att mappinnehållet har ändrats
2+
* Lade till en inställning för att dölja alla filer krypterade med ett annat lösenord
3+
* Lade till en inställning för att gå till lösenordsskärmen när du låser istället för att avsluta appen
4+
* Fixade dubbletter av filer i Alla-mappen
5+
* Fixade bilder som visades i fel orientering
6+
* Fixade saknad snabbrullning
7+
* Fixade en krasch när du scrollar snabbt i rutnätet

0 commit comments

Comments
 (0)