summaryrefslogtreecommitdiffstats
path: root/twrpDU.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-12-19Multiple Language SupportEthan Yonker1-3/+4
This is similar to https://gerrit.omnirom.org/#/c/14014 A lot of the features built in the older patch set have been split out into separate patches, most of which have already been merged. The remaining functionality here should all be directly related to language selection and loading. We always load English as a base before loading other languages over the top of the base. The idea is that if another language is missing a translation, then we will still display the English. Maybe still to do: read the /cache/recovery/last_locale file and load a language based on that. For me, this file contains just: en_US We probably won't bother with region specific translations so we would have to look at either trimming off the _US or using some other method like perhaps a symlink or a combination of the two. Thanks to _that for twmsg.cpp class Change-Id: I9647a22e47883a3ddd2de1da51f64aab7c328f74
2014-09-20Attempt to automatically identify data/media devicesEthan Yonker1-7/+6
Change-Id: Ia3007fbced9ce3bc94efdb3dacc582a5e68a49a4
2014-09-04Fix reporting of folder size on exfat-fuseEthan Yonker1-4/+10
Change-Id: Icfd4af21b9eeade68956e44ae89bae12398920df
2014-04-15Simplify twrpTar skip dir checks, DU code cleanupMatt Mower1-8/+2
* Remove unused parent variable from twruDU constructor * Replace manual checks for /data/media with DU's check_skip_dirs() function * Remove check_skip_dirs(A,B) function which duplicates the functionality of check_skip_dirs(A) * Remove redundant trailing slash removal from check_absolute_skip_dirs(); this function is only accessed through check_skip_dirs() Change-Id: Icfe8d71de36e33db6749fc5896dd3eafbcf7c9a4
2014-03-30Fix /data backup size if contains media subdirsMatt Mower1-0/+3
/data/*/media directories are mistakenly being excluded from the size calculation. Change to absolute dir exclude so that only /data/media is excluded. Change-Id: I6e97604d44e6ea2bdf7dfd8c68a2f90ba6d44415
2014-03-27Cleanup DU Get_Folder_Size functionMatt Mower1-11/+4
Change-Id: I3c686c7c3a171f130d299fae586dc811cad0d3a9
2014-03-13Fix skipping of relative paths and lost+found in twrpDUVojtech Bocek1-24/+27
Change-Id: Ib79029fd6237502338b041a6bc2f9e539536d6ad Signed-off-by: Vojtech Bocek <vbocek@gmail.com>
2014-02-03Clear the relative directory before passing on to twrpTar with the static du object. Otherwise we will not backup /system/media etcbigbiff bigbiff1-1/+10
Change-Id: Ib62af6ad8596aa18bf48cb750e2ecf442dadc627
2013-12-19Create a TWRP Disk Usage Class to retain state about a directory and whether we should skip it in other classes like twrpTar.bigbiff bigbiff1-0/+107
Moved Get_Folder_Size to this new class. Change-Id: If0a0220f900eb109581f2eeaf7b76e3f7d6886f1