aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
...
* [tx-robot] updated from transifexNextcloud bot2017-07-292-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2017-07-282-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2017-07-262-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2017-07-256-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2017-07-246-86/+136
|
* [tx-robot] updated from transifexNextcloud bot2017-07-234-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2017-07-2220-0/+40
|
* [tx-robot] updated from transifexNextcloud bot2017-07-2166-132/+132
|
* Fix copy and paste error on activity descriptionsJoas Schilling2017-07-202-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2017-07-182-16/+16
|
* [tx-robot] updated from transifexNextcloud bot2017-07-172-16/+34
|
* [tx-robot] updated from transifexNextcloud bot2017-07-152-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2017-07-142-4/+4
|
* [tx-robot] updated from transifexNextcloud bot2017-07-132-16/+16
|
* [tx-robot] updated from transifexNextcloud bot2017-07-124-28/+32
|
* fix testRobin Appelman2017-07-111-9/+11
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* properly block file upload to non-active filelistRobin Appelman2017-07-101-0/+2
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Merge pull request #5483 from nextcloud/issue-5075-png-files-for-activity-emailsMorris Jobke2017-07-075-22/+102
|\ | | | | Use PNGs for icons in activity emails
| * Use PNG version of the icons for shipped activitiesJoas Schilling2017-06-205-22/+102
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Fix sorting of favorite filesDaniel Calviño Sánchez2017-07-052-2/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The sort comparator checks the "isFavorite" property of the FileInfo objects to compare. That property is set when the file list is loaded and the response from the server is parsed, and thus a freshly loaded file list has the proper sorting for favorite files. However, the property is not set in other cases, like when the FileInfo objects are derived from FileInfoModels due to a file being marked as a favorite or a text editor being closed, which causes the file to be sorted in the wrong position. There is no need to add the property in those situations, though; in all cases the TagsPlugin adds a "tags" array property that contains an OC.TAG_FAVORITE tag, so that tag can be checked instead of "isFavorite". Moreover, although "isFavorite" was added by the main "_parseFileInfo" function it did not really belong there but to the "FileInfoParser" from the TagsPlugin; however, as that property now is not used anywhere it was removed altogether. A cleaner solution would have been to make the sort comparator extensible by plugins like other behaviours of the file list and then add the sorting logic related to favorite files to the TagsPlugin. However, right now only the TagsPlugin would need to alter the main sorting logic, and it seems like a corner case anyway. Even if it is implemented as a plugin, favorite files is a core feature, so for the time being it will be taken into account directly in the main sorting logic; making the sort comparator extensible by plugins is defered until there are other use cases for that. Fixes #5410 Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2017-07-032-0/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2017-07-012-2/+8
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-286-4/+8
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-274-0/+18
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-252-0/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-242-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-212-0/+2
|/
* [tx-robot] updated from transifexNextcloud bot2017-06-204-2/+8
|
* [tx-robot] updated from transifexNextcloud bot2017-06-192-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2017-06-174-2/+8
|
* Merge pull request #5177 from Bekcpear/masterRobin Appelman2017-06-161-13/+15
|\ | | | | Fix upload remaining time
| * Fix uploadrate value of 'original-title' attributeBekcpear2017-06-161-1/+1
| | | | | | | | | | | | | | The unit of `data.bitrate` is bit, but the argument unit of `humanFileSize` function is byte, so it should be divided by 8. Signed-off-by: Yaojin Qian <i@ume.ink>
| * Fix upload remaining timeBekcpear2017-06-161-12/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | The upload remaining time is always 'a few second' whatever a big or a small file uploading. This commit fixes it. The `new Date().getMilliseconds()` only return a three digits number. When time arrived the next second, the millisecond start from ZERO again. So `new Date().getTime()` is the righe choice. And remaining time variables shoule be initialized when the file starts uploading, otherwise the remaining time of a new upload will always be 'Infinity years' until you refresh the page. Signed-off-by: Yaojin Qian <i@ume.ink>
* | [tx-robot] updated from transifexNextcloud bot2017-06-1616-2/+40
| |
* | [tx-robot] updated from transifexNextcloud bot2017-06-1514-0/+46
| |
* | Merge pull request #5378 from patschi/fix-5349Morris Jobke2017-06-131-1/+1
|\ \ | | | | | | Fix #5349, no themed icon when dragging folder
| * | Fix #5349, no themed icon when dragging folderPatrik Kernstock2017-06-131-1/+1
| | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
* | | Do not show icon for quota barMorris Jobke2017-06-132-5/+2
| | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Remove unused elementJoas Schilling2017-06-131-2/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Put the quota bar to the bottomMorris Jobke2017-06-132-2/+12
| | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Adjust the unit testJoas Schilling2017-06-131-0/+8
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Remove the colored cornersJoas Schilling2017-06-131-0/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Add an event so apps can add hidden fields to the files pageJoas Schilling2017-06-132-1/+8
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Only set the active item when there is one (not the case for quota)Joas Schilling2017-06-131-1/+3
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Content will come from the external appJoas Schilling2017-06-131-1/+0
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Remove useless translation and make it better on unlimitedJoas Schilling2017-06-131-5/+8
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Style quota entry in files viewJan-Christoph Borchardt2017-06-133-17/+38
| | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | Add quota to the files viewJoas Schilling2017-06-134-0/+41
|/ / | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2017-06-132-8/+8
| |
* | Merge pull request #5310 from ↵Lukas Reschke2017-06-125-0/+76
|\ \ | | | | | | | | | | | | nextcloud/fix-tag-label-removed-when-share-view-is-opened Fix tag label removed when share view is opened