Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2023-08-30 08:23:44 +02:00
parent 920c69dc15
commit f32cb61f59
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7
6 changed files with 1163 additions and 5 deletions

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View file

@ -25,6 +25,7 @@ package com.nextcloud.client;
import android.app.Activity;
import android.content.Intent;
import com.nextcloud.client.preferences.SubFolderRule;
import com.owncloud.android.AbstractIT;
import com.owncloud.android.datamodel.MediaFolderType;
import com.owncloud.android.datamodel.SyncedFolderDisplayItem;
@ -72,7 +73,8 @@ public class SyncedFoldersActivityIT extends AbstractIT {
1000,
"Name",
MediaFolderType.IMAGE,
false);
false,
SubFolderRule.YEAR_MONTH);
SyncedFolderPreferencesDialogFragment sut = SyncedFolderPreferencesDialogFragment.newInstance(item, 0);
Intent intent = new Intent(targetContext, SyncedFoldersActivity.class);

View file

@ -64,7 +64,8 @@ import com.owncloud.android.db.ProviderMeta
AutoMigration(from = 66, to = 67),
AutoMigration(from = 68, to = 69),
AutoMigration(from = 69, to = 70),
AutoMigration(from = 71, to = 72)
AutoMigration(from = 71, to = 72),
AutoMigration(from = 72, to = 73)
],
exportSchema = true
)

View file

@ -35,7 +35,7 @@ import java.util.List;
*/
public class ProviderMeta {
public static final String DB_NAME = "filelist";
public static final int DB_VERSION = 72;
public static final int DB_VERSION = 73;
private ProviderMeta() {
// No instance

View file

@ -48,8 +48,8 @@
<TextView
android:id="@+id/synced_folders_settings_local_folder_path"
android:layout_width="2dp"
android:layout_height="15dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="middle"
android:maxLines="2"
android:textColor="?android:attr/textColorSecondary"