Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-12 | 2 | -0/+12 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-09 | 8 | -4/+54 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-06 | 6 | -10/+44 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-05 | 4 | -0/+26 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-04 | 8 | -6/+54 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-03 | 14 | -2/+68 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-02 | 6 | -2/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-03-01 | 4 | -0/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-28 | 16 | -2/+18 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-27 | 2 | -0/+2 |
| | |||||
* | Merge pull request #8520 from nextcloud/stable12-8507 | Roeland Jago Douma | 2018-02-24 | 2 | -5/+1 |
|\ | | | | | Add some whitespace around change.svg icon (stable12) | ||||
| * | Add some whitespace around change.svg icon (stable12) | Marin Treselj | 2018-02-23 | 2 | -5/+1 |
| | | | | | | | | Signed-off-by: Marin Treselj <marin@pixelipo.com> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-24 | 2 | -0/+4 |
|/ | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-22 | 4 | -4/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-21 | 6 | -10/+18 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-19 | 2 | -2/+8 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-17 | 2 | -2/+26 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-14 | 4 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-14 | 4 | -4/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-13 | 16 | -466/+436 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-12 | 10 | -10/+66 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-09 | 2 | -2/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-09 | 4 | -106/+146 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-08 | 2 | -2/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-07 | 2 | -6/+20 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-07 | 2 | -2/+10 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-05 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-03 | 10 | -10/+50 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-02 | 8 | -8/+40 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-01 | 8 | -154/+8 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-02-01 | 104 | -2054/+104 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-30 | 2 | -0/+6 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-29 | 2 | -0/+2 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-26 | 2 | -0/+14 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-15 | 2 | -0/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-14 | 2 | -0/+2 |
| | |||||
* | Fix empty details view after renaming a file | Daniel Calviño Sánchez | 2018-01-11 | 2 | -1/+31 |
| | | | | | | | | | | | "FileList._updateDetailsView" expects either a file name (as a string) or a file model (as an "OCA.File.FileInfoModel"), but when called through "updateInList" an "OC.Files.FileInfo" object was given instead. As the given attribute was not a model "_updateDetailsView" treated it as a file name and tried to get the model for that file, which failed and caused the details view to be emptied. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> | ||||
* | Move adding test files to "beforeEach()" | Daniel Calviño Sánchez | 2018-01-11 | 1 | -13/+6 |
| | | | | | | | | | | | | All the tests in the "Renaming files" section added the test files, although those calling "doRename()" added them by setting a path for the file too. However, the path is ignored in the other tests, so adding the files can be unified and moved to "beforeEach()". This would be needed, for example, to show the details view for a file before calling "doRename()". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-11 | 2 | -0/+4 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-10 | 2 | -0/+6 |
| | |||||
* | Merge pull request #7666 from ↵ | Morris Jobke | 2018-01-09 | 3 | -1/+6 |
|\ | | | | | | | | | nextcloud/stable12-7527-fix-drag-shadow-not-visible-when-dragging-a-file-on-a-narrow-screen [stable12] Fix drag shadow not visible when dragging a file on a narrow screen | ||||
| * | Fix drag shadow not visible when dragging a file on a narrow screen | Daniel Calviño Sánchez | 2018-01-02 | 3 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a file from the file list is dragged a drag shadow (a copy of the file row that follows the cursor position) is created. The drag shadow element is created as a direct child of the body element, so it needs a higher "z-index" than the one used for the file list to be visible. In narrow screens the "#app-content" uses a "z-index" of 1000 in order to be visible over the "#navigation-bar" when they overlap, so the "z-index" of the drag shadow must be at least 1000 to be visible over the file list. Instead of updating the hardcoded "z-index" it was removed and replaced by CSS rules for ".dragshadow" elements to ease theming. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> | ||||
* | | Merge pull request #7742 from ↵ | Morris Jobke | 2018-01-09 | 2 | -1/+40 |
|\ \ | | | | | | | | | | | | | nextcloud/stable12-7716-hide-favourite-icon-in-details-view-if-favourite-action-is-not-available [stable12] Hide favourite icon in details view if favourite action is not available | ||||
| * | | Hide favourite icon in details view if favourite action is not available | Daniel Calviño Sánchez | 2018-01-08 | 2 | -1/+40 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the favourite icon in the details view is clicked the "Favorite" action is triggered. However, if the action name given to "triggerAction" is not found then the "Download" action is triggered instead. As the "Favorite" action is not available in some file lists (like "Recents") the "Download" action was executed instead in those cases, which was a strange behaviour. Now the favourite icon is hidden if its action is not available. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> | ||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-09 | 6 | -0/+16 |
|/ / | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-07 | 2 | -0/+6 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-06 | 8 | -104/+174 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-05 | 18 | -0/+94 |
| | | |||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2018-01-04 | 18 | -14/+376 |
|/ | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-12-11 | 4 | -4/+12 |
| |