summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Fix internationalization of percentage formatting in DownloadProvider.Elliott Hughes2014-10-103-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | Bug: 15476051 Change-Id: I085c074f1bb66631872712cab68bcaf6ee7ba7dc
| * | | | am 53c49235: am e8175658: Merge "Materialize some shadows!" into lmp-devJeff Sharkey2014-10-0110-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | * commit '53c492358a2fabc1189c43d573602b21a38ce33b': Materialize some shadows!
| | * | | am e8175658: Merge "Materialize some shadows!" into lmp-devJeff Sharkey2014-10-0110-0/+0
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * commit 'e8175658d3a16a3fd8c60a9c6760268e74d0b81f': Materialize some shadows!
| * | | | | am 890cfb8a: (-s ours) am eb140c18: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-09-290-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '890cfb8aa369ab5feb4f598d569a71e69ea28e50': Import translations. DO NOT MERGE
| | * | | | am eb140c18: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-09-290-0/+0
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'eb140c18d92779ebfe909d3e331707697afb91f8': Import translations. DO NOT MERGE
| * | | | | | am f4b1e9c8: (-s ours) am 09128d0a: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-09-160-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'f4b1e9c83db5c09c238c04000c34e0e397a74f18': Import translations. DO NOT MERGE
| | * | | | | am 09128d0a: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-09-160-0/+0
| |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '09128d0adc82fc4a5ffd6fdab18e0c5b69a78cbb': Import translations. DO NOT MERGE
* | | | | | | Automatic translation importMichael Bestas2015-03-061-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I9cdf7fc7d930fe995b65382f679c6b8f402127f8
* | | | | | | Automatic translation importstable/cm-12.0-YNG1TAMichael Bestas2015-02-282-0/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: If2c3e5eb6397c3c3b71899a66889626ffcb0d4e7
* | | | | | | Automatic translation importstable/cm-12.0-YNG1IMichael Bestas2015-02-192-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I94b07168d96ecab56b3135849ff7050642644723
* | | | | | | Automatic translation importMichael Bestas2015-02-1091-0/+2550
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ifb75fc8a09a71260b48ca1e32908fc80f34511cf
* | | | | | | Add Download Speeds in notificationLasse Brudeskar Vikås2014-12-273-6/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds the ability to show the current total download speed Screenshots: http://goo.gl/M3eRNR ps7 : remove download site, and make speed to bit/sec ps8 : make speed to byte/sec and cleanup ps9 : revert to B/sec ps10: fix some formatting issues ps13: rebased Conflicts: res/values/cm_strings.xml src/com/android/providers/downloads/DownloadNotifier.java Change-Id: I801dbe61c7ee59d0c1d14d5851ad6dc3a7678499
* | | | | | | merge in lmp-release history after reset to ↵staging/cm-12.0-cafThe Android Automerger2014-10-210-0/+0
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | 7460b6e0abad953fc8946296fa3f11bc4b1b60c6
| * | | | | | merge in lmp-release history after reset to ↵The Android Automerger2014-10-210-0/+0
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | 7460b6e0abad953fc8946296fa3f11bc4b1b60c6
| * | | | | | merge in lmp-release history after reset to ↵The Android Automerger2014-10-190-0/+0
|/| | | | | | | | | | | | | | | | | | | | | | | | | | | 7460b6e0abad953fc8946296fa3f11bc4b1b60c6
| * | | | | | Trim stale downloads from third-party apps.Jeff Sharkey2014-10-161-5/+47
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Buggy third-party apps can enqueue lots of downloads and then forget to remove them, causing DownloadManager to stop functioning. This change removes any downloads that match _all_ of the following conditions: 1. Download status is in a terminal (non-pending) state, usually a concrete success or failure. 2. Download hasn't been touched in over a week. 3. Download is not visible in UI. Bug: 17785419 Change-Id: Id82752fd6935371c1af682205d35f7ba35169473
* | | | | | Import translations. DO NOT MERGEBaligh Uddin2014-10-194-11/+11
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | Change-Id: I0f6aaf82b8f334b1d0cdc2b076fa0d64a92ed5fe Auto-generated-cl: translation import
* | | | | Trim stale downloads from third-party apps.Jeff Sharkey2014-10-161-5/+47
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Buggy third-party apps can enqueue lots of downloads and then forget to remove them, causing DownloadManager to stop functioning. This change removes any downloads that match _all_ of the following conditions: 1. Download status is in a terminal (non-pending) state, usually a concrete success or failure. 2. Download hasn't been touched in over a week. 3. Download is not visible in UI. Bug: 17785419 Change-Id: Id82752fd6935371c1af682205d35f7ba35169473
* | | | Merge "Materialize some shadows!" into lmp-devJeff Sharkey2014-09-3010-0/+0
|\ \ \ \ | |_|_|/ |/| | |
| * | | Materialize some shadows!Jeff Sharkey2014-09-3010-0/+0
| | |/ | |/| | | | | | | | | | Bug: 17421836 Change-Id: I733b118e3782c06c77c728d641c1f999670b53c9
* / | Import translations. DO NOT MERGEBaligh Uddin2014-09-294-11/+11
|/ / | | | | | | | | Change-Id: I78001ea6b3e5050e800c9f291a90fe19f3febb1d Auto-generated-cl: translation import
* / Import translations. DO NOT MERGEBaligh Uddin2014-09-146-10/+10
|/ | | | | Change-Id: I80d3c6cd95ff92fc2021833e2aee25f9600a9605 Auto-generated-cl: translation import
* Material icon for Downloads.Jeff Sharkey2014-09-0910-0/+0
| | | | | Bug: 17421836 Change-Id: Iac5abbc30851e163c5128ad5c16640a55a773032
* Colored notificationsSelim Cinek2014-08-271-0/+2
| | | | | Bug: 17128331 Change-Id: Ie2529189e4d62c7dc385f9d36c70ac412fb4159c
* fallocate() returning ENOSYS is okay.Jeff Sharkey2014-08-261-2/+2
| | | | | | | Fall back just like ENOTSUP. Bug: 17285472 Change-Id: Ice4954726c14a0e84c39c5469d573644588934ae
* Import translations. DO NOT MERGEBaligh Uddin2014-08-245-19/+19
| | | | | Change-Id: I5e4923975bb5f7f57b71c7976fd4bf4efdaf0bb4 Auto-generated-cl: translation import
* Merge "Import translations. DO NOT MERGE" into lmp-devBaligh Uddin2014-08-169-31/+31
|\
| * Import translations. DO NOT MERGEBaligh Uddin2014-08-169-31/+31
| | | | | | | | | | Change-Id: I3b3597feacfe3813983663e66a07dcdc18e44a65 Auto-generated-cl: translation import
* | am 51e51fb2: (-s ours) am 90583627: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-08-160-0/+0
|\ \ | |/ |/| | | | | * commit '51e51fb25fba01be0757dde87599cad685c7319b': Import translations. DO NOT MERGE
| * am 90583627: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-08-150-0/+0
| |\ | | | | | | | | | | | | * commit '905836270b4a457770c2d49484002f3db5dbe8a0': Import translations. DO NOT MERGE
| | * Import translations. DO NOT MERGEBaligh Uddin2014-08-158-17/+17
| | | | | | | | | | | | | | | Change-Id: I0c9d882961d962b1a5c55463c37cd29c6f0b3595 Auto-generated-cl: translation import
* | | Remove unused Downloads code/resources.Jeff Sharkey2014-08-0617-1825/+0
| | | | | | | | | | | | Change-Id: Ie9be11140fd8f235eae6455bc4ecf8a938488d04
* | | Whoops, clear identity to get internal columns.Jeff Sharkey2014-08-051-1/+11
| | | | | | | | | | | | | | | Bug: 16822344 Change-Id: Ib90e171cbb7babc7a3eea59de5cb899c79fadf94
* | | Scan after writing download files.Jeff Sharkey2014-08-054-23/+43
| | | | | | | | | | | | | | | | | | | | | | | | Kicks off media scanner after files are written, usually through a DocumentsProvider. Bug: 13557203 Change-Id: I4e29b778b4e19a217f60c1e415c4d814724752d3
* | | Merge "Remove deprecated locales - DO NOT MERGE" into lmp-devBaligh Uddin2014-07-1722-1240/+0
|\ \ \
| * | | Remove deprecated locales - DO NOT MERGEBaligh Uddin2014-07-1922-1240/+0
| | | | | | | | | | | | | | | | Change-Id: Ie61638e29ed17e7a0c92f109b7a3ba6d663f576f
* | | | Import translations. DO NOT MERGEBaligh Uddin2014-07-171-3/+3
|/ / / | | | | | | | | | | | | Change-Id: I37efa7299f97e575e7c390db425ed0567f7561e6 Auto-generated-cl: translation import
* | | Import translations. DO NOT MERGEBaligh Uddin2014-07-162-2/+2
| | | | | | | | | | | | | | | Change-Id: I5839e55b091c9733faf0f631b15b8a485ca5ec82 Auto-generated-cl: translation import
* | | am ad93ffcb: (-s ours) am 5323c2d2: (-s ours) am d1fbac1a: (-s ours) am ↵Baligh Uddin2014-07-060-0/+0
|\| | | | | | | | | | | | | | | | | | | | 06d3867b: (-s ours) Import translations. DO NOT MERGE * commit 'ad93ffcb74a82aea20990def7bc7859b6c78910c': Import translations. DO NOT MERGE
| * | am 5323c2d2: (-s ours) am d1fbac1a: (-s ours) am 06d3867b: (-s ours) Import ↵Baligh Uddin2014-07-060-0/+0
| |\| | | | | | | | | | | | | | | | | | | translations. DO NOT MERGE * commit '5323c2d299d46a72a0bcbd3989cbc24d1c6bbc40': Import translations. DO NOT MERGE
| | * am d1fbac1a: (-s ours) am 06d3867b: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
| | |\ | | | | | | | | | | | | | | | | * commit 'd1fbac1ae8782641ef78faef46f10bdb4e126b18': Import translations. DO NOT MERGE
| | | * am 06d3867b: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
| | | |\ | | | | | | | | | | | | | | | | | | | | * commit '06d3867b1d96c3ad73d677e7c04a8d94b9f93c8b': Import translations. DO NOT MERGE
| | | | * Import translations. DO NOT MERGEBaligh Uddin2014-07-0612-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I4ef3e0ad5eb65eb9e245012dbbb34dbdd750505f Auto-generated-cl: translation import
* | | | | am 21c12e8c: (-s ours) am 54fbb3a6: (-s ours) am e8137079: (-s ours) Import ↵Baligh Uddin2014-07-060-0/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | translations. DO NOT MERGE * commit '21c12e8c01d9c9e8f3fefc9a7aa337d3036bac85': Import translations. DO NOT MERGE
| * | | | am 54fbb3a6: (-s ours) am e8137079: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | * commit '54fbb3a63e7dcb2afa9480e08263d8f0e991daee': Import translations. DO NOT MERGE
| | * | | am e8137079: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
| | |\| | | | | | | | | | | | | | | | | | | | | | * commit 'e8137079c27a1a7caccdd61cd486211996a3f783': Import translations. DO NOT MERGE
| | | * | Import translations. DO NOT MERGEBaligh Uddin2014-07-0620-97/+97
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ibaa85c5bfc4ac9b0dcd7475f66273fd9430cbe6b Auto-generated-cl: translation import
* | | | | am 6de8911d: (-s ours) am 6006439c: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | * commit '6de8911d35a912f3f51900a59cf796da925f2609': Import translations. DO NOT MERGE
| * | | | am 6006439c: (-s ours) Import translations. DO NOT MERGEBaligh Uddin2014-07-060-0/+0
| |\| | | | | | | | | | | | | | | | | | | | | | | * commit '6006439c15528bd8f5a85b20f470037b48a76e59': Import translations. DO NOT MERGE
| | * | | Import translations. DO NOT MERGEBaligh Uddin2014-07-064-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I942d459b0edb5c19c8a17d37a1c2c1b56c8dc5d7 Auto-generated-cl: translation import