diff options
-rw-r--r-- | res/images/dummyfile2 | 0 | ||||
-rw-r--r-- | res/images/erasing_text.png | bin | 31491 -> 0 bytes | |||
-rw-r--r-- | res/images/error_text.png | bin | 17504 -> 0 bytes | |||
-rw-r--r-- | res/images/installing_text.png | bin | 66592 -> 0 bytes | |||
-rw-r--r-- | res/images/no_command_text.png | bin | 40632 -> 0 bytes | |||
-rw-r--r-- | twrp-functions.cpp | 3 |
6 files changed, 2 insertions, 1 deletions
diff --git a/res/images/dummyfile2 b/res/images/dummyfile2 new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/res/images/dummyfile2 diff --git a/res/images/erasing_text.png b/res/images/erasing_text.png Binary files differdeleted file mode 100644 index 441768a0c..000000000 --- a/res/images/erasing_text.png +++ /dev/null diff --git a/res/images/error_text.png b/res/images/error_text.png Binary files differdeleted file mode 100644 index 4ac6391ff..000000000 --- a/res/images/error_text.png +++ /dev/null diff --git a/res/images/installing_text.png b/res/images/installing_text.png Binary files differdeleted file mode 100644 index e1ac819e6..000000000 --- a/res/images/installing_text.png +++ /dev/null diff --git a/res/images/no_command_text.png b/res/images/no_command_text.png Binary files differdeleted file mode 100644 index a688f0935..000000000 --- a/res/images/no_command_text.png +++ /dev/null diff --git a/twrp-functions.cpp b/twrp-functions.cpp index e468655a6..50df2ed9b 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -987,7 +987,7 @@ void TWFunc::Auto_Generate_Backup_Name() { } if (TWFunc::read_file("/system/build.prop", buildprop) != 0) { LOGINFO("Unable to open /system/build.prop for getting backup name.\n"); - DataManager::SetValue(TW_BACKUP_NAME, ""); + DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date()); if (!mount_state) PartitionManager.UnMount_By_Path("/system", false); return; @@ -1011,6 +1011,7 @@ void TWFunc::Auto_Generate_Backup_Name() { } if (propvalue.empty()) { LOGINFO("ro.build.display.id not found in build.prop\n"); + DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date()); } if (!mount_state) PartitionManager.UnMount_By_Path("/system", false); |