Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set file search by certain number of characters in config.php #12065

Closed
wants to merge 237 commits into from

Commits on Sep 3, 2018

  1. Fixes the upload progress bar layout

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 committed Sep 3, 2018
    Configuration menu
    Copy the full SHA
    209b3be View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2018

  1. Updates logo scss to regard default values

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 authored and rullzer committed Sep 4, 2018
    Configuration menu
    Copy the full SHA
    b0d9030 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2018

  1. Merge pull request #11052 from nextcloud/backport/10963/stable14

    [stable14] Updates logo scss to regard default values
    rullzer authored Sep 5, 2018
    Configuration menu
    Copy the full SHA
    b08f670 View commit details
    Browse the repository at this point in the history
  2. remove LogicException, because it's also triggered with legitimate pa…

    …rameters
    
    Signed-off-by: Georg Ehrke <developer@georgehrke.com>
    georgehrke committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    2bdc407 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11071 from nextcloud/bugfix-stable14/10727

    [stable14] remove LogicException, because it's also triggered with legitimate pa…
    georgehrke authored Sep 5, 2018
    Configuration menu
    Copy the full SHA
    4173f9d View commit details
    Browse the repository at this point in the history
  4. Show avatar using "span" instead of "div"

    Visually it makes no difference, but as the ".avatar" element is inside
    a "span" element it can not be a block element to be compliant with the
    HTML specification.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    da75c7f View commit details
    Browse the repository at this point in the history
  5. Remove space between avatar and user name

    The avatar should be shown immediately after the avatar to be able to
    accurately define the space between them using only CSS rules.
    
    Note that in the case of the "atwho" menu it is not really needed, as a
    whitespace removal seems to be done automatically by the plugin, but it
    was modified for its displayed elements too for consistency.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    3ee07ac View commit details
    Browse the repository at this point in the history
  6. Reformat embedded HTML code to resemble HTML code

    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    6b7e049 View commit details
    Browse the repository at this point in the history
  7. Ensure that the user name is shown in bold in mentions

    Different browsers use different font weights for strong elements
    (Chromium uses "bold", but Firefox uses "bolder", which is relative to
    the font weight of the parent), so now the user name in mentions is
    explicitly shown with a bold weight.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    3c63850 View commit details
    Browse the repository at this point in the history
  8. Highlight mentions to the current user

    Like done in Talk, mentions to the current user are now shown with the
    primary colors to make them more prominent.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    b14425e View commit details
    Browse the repository at this point in the history
  9. Fix pointer cursor not shown on avatars

    When the cursor is on an avatar wrapper the cursor is shown as a pointer
    to inform the user that it can be clicked (which will either show the
    contacts menu or insert a mention, depending on the case); the cursor
    must be explicitly defined for the "img" element that shows the avatar
    too, or otherwise the default cursor would be shown.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    7c851b5 View commit details
    Browse the repository at this point in the history
  10. Remove unneeded CSS rule for mentions

    Most of the properties of the rule are not needed for mentions, so the
    rule is no longer applied to them; the only needed property was moved to
    the main rule for mentions.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    e7d4d3a View commit details
    Browse the repository at this point in the history
  11. Ensure that the avatar and the user name will be kept together

    Otherwise a line break could be added between the avatar and the user
    name when the wrapper is close to the right border of the message.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    2e424d8 View commit details
    Browse the repository at this point in the history
  12. Add new line at the end of file

    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 5, 2018
    Configuration menu
    Copy the full SHA
    51b978d View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2018

  1. 14.0.0 final

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    b619e8d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11069 from nextcloud/release/14.0.0

    14.0.0 final
    rullzer authored Sep 6, 2018
    Configuration menu
    Copy the full SHA
    1b35dc1 View commit details
    Browse the repository at this point in the history
  3. Do not invalidate main token on OAuth

    Fixes #10584
    
    We deleted the main token when using the login flow else mutliple tokens
    would show up for a single user.
    
    However in the case of OAuth this is perfectly fine as the
    authentication happens really in your browser:
    
    1. You are already logged in, no need to log you out
    2. You are not logged in yet, but since you log in into the exact same
    browser the expected behavior is to stay logged in.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    5485932 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2018

  1. Expire tokens hardening

    Just to be sure that the field is also not 0
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    c83ac24 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11039 from nextcloud/backport/fix/10968/upload-pr…

    …ogress
    
    Fixes the upload progress bar layout - 14 backport
    rullzer authored Sep 7, 2018
    Configuration menu
    Copy the full SHA
    b580ef1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11103 from nextcloud/backport/token_expire_hardening

    [stable14] Expire tokens hardening
    rullzer authored Sep 7, 2018
    Configuration menu
    Copy the full SHA
    5b89eff View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11090 from nextcloud/backport/11082/stable14

    [stable14] Do not invalidate main token on OAuth
    rullzer authored Sep 7, 2018
    Configuration menu
    Copy the full SHA
    e296f7d View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2018

  1. fix js files client for user names with spaces

    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 committed Sep 10, 2018
    Configuration menu
    Copy the full SHA
    9b64c27 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2018

  1. Merge pull request #11152 from nextcloud/davclient-js-decode-14

    [14] fix js files client for user names with spaces
    skjnldsv authored Sep 11, 2018
    Configuration menu
    Copy the full SHA
    5209348 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2018

  1. Fix user and group listing with users that have an integer user id

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    73e870b View commit details
    Browse the repository at this point in the history
  2. Fix exception class

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    2518cdd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11186 from nextcloud/backport/11181/user-list-bro…

    …ken-with-integer-only-users
    
    [stable14] Fix user and group listing with users that have an integer user id
    blizzz authored Sep 12, 2018
    Configuration menu
    Copy the full SHA
    8e3e25a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11187 from nextcloud/backport/11133/invalid-excep…

    …tion
    
    [stable14] Fix exception class
    blizzz authored Sep 12, 2018
    Configuration menu
    Copy the full SHA
    4165f33 View commit details
    Browse the repository at this point in the history
  5. Remove posix_getpwuid and compare only userid

    Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
    kesselb committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    53ecdfe View commit details
    Browse the repository at this point in the history
  6. Add int-typehint

    Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
    kesselb committed Sep 12, 2018
    Configuration menu
    Copy the full SHA
    843df1c View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2018

  1. Backport of #11036 to stable14

    fix check for more users
    
    after a refactor users et al were undefined. The check condition was moved.
    
    Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
    
    don't user a higher paging size than max autocomplete entries are set
    
    Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
    
    adjust and extend js unit tests
    
    Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
    blizzz committed Sep 13, 2018
    Configuration menu
    Copy the full SHA
    72588b6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11191 from nextcloud/backport/11091-cannot-read-p…

    …asswd
    
    [14] Remove posix_getpwuid and compare only userid
    blizzz authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    2823d7a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11201 from nextcloud/backport/11036/stable14

    [stable14]  fix check for more users in sharing dialogue
    nickvergessen authored Sep 13, 2018
    Configuration menu
    Copy the full SHA
    5bf3774 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2018

  1. Remove filter_var flags due to PHP 7.3 deprecation, fixes #10894

    Signed-off-by: Patrik Kernstock <info@pkern.at>
    patschi committed Sep 16, 2018
    Configuration menu
    Copy the full SHA
    5058333 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2018

  1. Merge pull request #11237 from nextcloud/backport/11042/stable14

    [stable14] Remove filter_var flags due to PHP 7.3 deprecation, fixes #10894
    nickvergessen authored Sep 17, 2018
    Configuration menu
    Copy the full SHA
    fb9379d View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2018

  1. Fix size of icons in menus inside apps when shown as images

    Some popover menus, like the contacts menu, still show their icon using
    an img element. The main CSS rules assume that a "content-box" sizing is
    being used, and thus set the size and padding of the image to add up to
    the line height.
    
    However, ".app-*" descendants use a "border-box" sizing, so when a menu
    with an image was shown in an app the icon was not properly shown. Now
    both the width and height of the image is set to the item height in
    those cases, which causes the visible size of the icon to be the item
    height minus the padding (the same as when "content-box" sizing is
    used).
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    a9fa17e View commit details
    Browse the repository at this point in the history
  2. Prevent comment being composed from overlapping the submit button

    The submit button is placed in the text area using absolute positioning,
    so it is not taken into account when calculating the text layout. Due to
    this it is necessary to add an explicit padding to the right of the text
    area to prevent the text from overlapping the submit button.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    896c8df View commit details
    Browse the repository at this point in the history
  3. replace setcookie value with '' instead of null.

    The php documentation states that an empty string should be used for a cookie when it has no real value.
    null leads to the following error: expects parameter 2 to be string, null given
    
    Signed-off-by: Martin Böh <mart.b@outlook.de>
    MartB authored and blizzz committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    fbc1f5c View commit details
    Browse the repository at this point in the history
  4. Fix the link and anchor for the update notifications

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    d50fa1b View commit details
    Browse the repository at this point in the history
  5. Include empty directories in the default state of acceptance tests

    Before each scenario of the acceptance tests is run the Nextcloud server
    is reset to a default state. To do this the full directory of the
    Nextcloud server is commited to a local Git repository and then reset to
    that commit when needed.
    
    Unfortunately, Git does not support including empty directories in a
    commit. Due to this, when the default state was restored, it could
    happen that the file cache listed an empty directory that did not exist
    because it was not properly restored (for example,
    "data/appdata_*/css/icons"), and that in turn could lead to an error
    when the directory was used.
    
    Currently the only way to force Git to include an empty directory is to
    add a dummy file to the directory (so it will no longer be empty,
    but that should not be a problem in the affected directories, even if
    the dummy file is not included in the file cache); although Git FAQ
    suggests using a ".gitignore" file a ".keep" file was used instead, as
    it conveys better its purpose.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    3a30fa1 View commit details
    Browse the repository at this point in the history
  6. Check the permission of the underlying storage

    Else shares might expose more permissions than the storage actually
    providers.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    4cc8cdc View commit details
    Browse the repository at this point in the history
  7. Fix shared cache

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    43f73ad View commit details
    Browse the repository at this point in the history
  8. Properly check share permissions

    isCreatable only works on folders
    isUpdatable if the file is not there but it is a part file also has to
    be checked on the folder
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    b66b2de View commit details
    Browse the repository at this point in the history
  9. Update test now that we check permissions properly

    Now that we actually check thepermissions properly we have to update the
    tests.
    
    * We checked an invalid path
    * We checked from wrong permissions (files never have CREATE permissions
    for example)
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    5e13368 View commit details
    Browse the repository at this point in the history
  10. Better shared-by info for conversations without names

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    7b3e3ee View commit details
    Browse the repository at this point in the history
  11. Merge pull request #11276 from nextcloud/stable14-11054-fix-size-of-i…

    …cons-in-menus-inside-apps-when-shown-as-images
    
    [stable14] Fix size of icons in menus inside apps when shown as images
    blizzz authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    27a3867 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #11277 from nextcloud/stable14-11257-prevent-comme…

    …nt-being-composed-from-overlapping-the-submit-button
    
    [stable14] Prevent comment being composed from overlapping the submit button
    blizzz authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    cfca80e View commit details
    Browse the repository at this point in the history
  13. Merge pull request #11280 from nextcloud/backport/11080/stable14

    [stable14] replace setcookie value with '' instead of null.
    blizzz authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    64d8f74 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #11283 from nextcloud/stable14-11268-include-empty…

    …-directories-in-the-default-state-of-acceptance-tests
    
    [stable14] Include empty directories in the default state of acceptance tests
    blizzz authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    bea36f9 View commit details
    Browse the repository at this point in the history
  15. Fix icons cacher regex for compressed output

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    e2991d5 View commit details
    Browse the repository at this point in the history
  16. Revert "Use APCu caching of composer"

    This reverts commit 948ab8a.
    
    For details why see #11290
    nickvergessen committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    86a2d1f View commit details
    Browse the repository at this point in the history
  17. Merge pull request #11282 from nextcloud/backport/11183/fix-link-for-…

    …update-notifications
    
    [stable14] Fix the link and anchor for the update notifications
    nickvergessen authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    c02c63f View commit details
    Browse the repository at this point in the history
  18. Use user locale as default in the template

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    258330d View commit details
    Browse the repository at this point in the history
  19. Fix public l10n

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    19350c4 View commit details
    Browse the repository at this point in the history
  20. Since requirement

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    ccb8838 View commit details
    Browse the repository at this point in the history
  21. Typehint

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    d69ddd9 View commit details
    Browse the repository at this point in the history
  22. Fallback to $lang if no $locale match

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    efbd981 View commit details
    Browse the repository at this point in the history
  23. Fix since tag

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    fcda1f7 View commit details
    Browse the repository at this point in the history
  24. Fixes empty favorite names for trailing slashes

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 committed Sep 19, 2018
    Configuration menu
    Copy the full SHA
    43889d1 View commit details
    Browse the repository at this point in the history
  25. Merge pull request #11291 from nextcloud/stable14-fix-icons-cacher

    [stable14] Fix icons cacher regex for compressed output
    blizzz authored Sep 19, 2018
    Configuration menu
    Copy the full SHA
    8dff946 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2018

  1. Copy the expiration from 480864b to getTokenById

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 20, 2018
    Configuration menu
    Copy the full SHA
    3a179b2 View commit details
    Browse the repository at this point in the history
  2. Also adjust the expiration of PublicKeyTokenProvider

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 20, 2018
    Configuration menu
    Copy the full SHA
    6718bfb View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11293 from nextcloud/backport/11292/do-not-apcu-c…

    …ache-the-autoloader
    
    [stable14] Revert "Use APCu caching of composer"
    nickvergessen authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    2153bcf View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11287 from nextcloud/backport/11041/get_permissio…

    …n_of_storage_for_shares
    
    [stable14] Get permission of storage for shares
    nickvergessen authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    9a4ad9c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #11288 from nextcloud/backport/11171/shared-by-inf…

    …o-for-room-shares-without-names
    
    [stable14] Shared by info for room shares without names
    nickvergessen authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    e517696 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11294 from nextcloud/stable14-locale-template-fix

    [stable14] Use user locale as default in the template
    blizzz authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    a0f2bd8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #11077 from nextcloud/stable14-11064-fix-markup-an…

    …d-style-of-mentions-in-comments
    
    [stable14] Fix markup and style of mentions in comments
    blizzz authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    0c85cb1 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11302 from nextcloud/backport/11297/this-database…

    …-dude
    
    [stable14] Fix expiration code of tokens
    blizzz authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    ea73f30 View commit details
    Browse the repository at this point in the history
  9. Prepare 14.0.1 release

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 20, 2018
    Configuration menu
    Copy the full SHA
    e77bd8a View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11173 from nextcloud/update-version-14.0.1

    Prepare 14.0.1 release
    nickvergessen authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    4d8f69f View commit details
    Browse the repository at this point in the history
  11. Merge pull request #11259 from nextcloud/fix/11144/backport14

    [14] Fixes empty favorite names for trailing slashes
    nickvergessen authored Sep 20, 2018
    Configuration menu
    Copy the full SHA
    1f71412 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2018

  1. Add simple unit test for findLanguageFromLocale

    Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
    kesselb committed Sep 23, 2018
    Configuration menu
    Copy the full SHA
    62b9ae2 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2018

  1. Fix contacts menu not triggered on certain areas of a mention

    The contacts menu was triggered only when the avatar or the name of the
    user were clicked. Due to this, clicking on certain (small) areas of a
    mention (like the right end, or the space between the avatar and the
    name) did not show the contacts menu. Now the contacts menu is shown
    when any area of the mention is clicked.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 24, 2018
    Configuration menu
    Copy the full SHA
    d0c3b45 View commit details
    Browse the repository at this point in the history
  2. Fix position of contacts menu shown on mentions

    There are no default CSS rules for the contacts menu, as its position
    depends on the element on which it is shown. Note, however, that if no
    explicit rules are provided the contacts menu on mentions is affected by
    the rules for the contacts menu on shares from the sharing tab.
    
    The contacts menu is now positioned to show the tip of the arrow
    horizontally aligned with the center of the avatar, and with the top of
    the menu slightly below the bottom border of the mention.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 24, 2018
    Configuration menu
    Copy the full SHA
    c274344 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11340 from nextcloud/stable14-add-unit-test-findl…

    …anguagefromlocale
    
    [14] Add unit test for findLanguageFromLocale
    MorrisJobke authored Sep 24, 2018
    Configuration menu
    Copy the full SHA
    c354011 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2018

  1. Increase version for 14.0.1

    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen committed Sep 25, 2018
    Configuration menu
    Copy the full SHA
    884ac1e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11361 from nextcloud/rel-14.0.1

    Increase version for 14.0.1
    nickvergessen authored Sep 25, 2018
    Configuration menu
    Copy the full SHA
    d96adc0 View commit details
    Browse the repository at this point in the history
  3. add back-end as parameter to the pre-login hook

    This is needed for the Global Scale setup to allow the master
    node to perform different operations during login, depending
    on the user management. Because in case of SAML, the authentication
    at the idp happens at the master node.
    
    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Sep 25, 2018
    Configuration menu
    Copy the full SHA
    28d6027 View commit details
    Browse the repository at this point in the history
  4. Fix default flex shrink on list

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 25, 2018
    Configuration menu
    Copy the full SHA
    8f9571b View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2018

  1. Merge pull request #11374 from nextcloud/stable14-content-list-flex-f…

    …ixes
    
    [stable14] Fix default flex shrink on list
    MorrisJobke authored Sep 26, 2018
    Configuration menu
    Copy the full SHA
    7bdf3f1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11373 from nextcloud/gs-and-saml-stable14

    [stable14] make the server ready to use global scale with SAML as auth back-end
    blizzz authored Sep 26, 2018
    Configuration menu
    Copy the full SHA
    6c4f3ac View commit details
    Browse the repository at this point in the history
  3. Do not hide the progress bar while the chunked upload is being assembled

    Large files are not uploaded in a single operation, but uploaded in
    several chunks; once all the chunks are uploaded then the server needs
    to assemble them to get the final file.
    
    Before, once the chunks were uploaded the progress bar was hidden.
    However, this was confusing for the users, as the file could still need
    some time to appear in the file list due to the assembling. Now once all
    the chunks are uploaded the text in the progress bar changes to inform
    the user that there are still some pending operations, and only when the
    file is finally assembled the progress bar is hidden.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    e82fe08 View commit details
    Browse the repository at this point in the history
  4. Fixes the logo height

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    2ece32b View commit details
    Browse the repository at this point in the history
  5. do not explode when getting permissions from a FailedStorage

    for instance if a user of an external user backend is not available
    currently, the whole Files UI would be frozen.
    
    Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
    blizzz committed Sep 26, 2018
    Configuration menu
    Copy the full SHA
    5a20ac9 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11350 from nextcloud/stable14-11258-fix-contacts-…

    …menu-on-mentions
    
    [stable14] Fix contacts menu on mentions
    blizzz authored Sep 26, 2018
    Configuration menu
    Copy the full SHA
    1b493b7 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2018

  1. Merge pull request #11389 from nextcloud/backport/11383/stable14

    [stable14] do not explode when getting permissions from a FailedStorage
    blizzz authored Sep 27, 2018
    Configuration menu
    Copy the full SHA
    6eab0d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11399 from nextcloud/stable14-11112-do-not-hide-t…

    …he-progress-bar-while-the-chunked-upload-is-being-assembled
    
    [stable14] Do not hide the progress bar while the chunked upload is being assembled
    MorrisJobke authored Sep 27, 2018
    Configuration menu
    Copy the full SHA
    5d84475 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11385 from nextcloud/11372/fix/14-logo-height

    [14] Fixes the logo height
    rullzer authored Sep 27, 2018
    Configuration menu
    Copy the full SHA
    c2a9899 View commit details
    Browse the repository at this point in the history
  4. Fix "checkWellKnownUrl" not being run

    The check is run only if its last parameter is true; data() tries to
    convert the HTML attribute string to an actual JavaScript value, so
    "true" is returned as an actual boolean instead of an string; as a
    strict comparison against "true" was used the result was false and thus
    the checks were not run.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Sep 27, 2018
    Configuration menu
    Copy the full SHA
    79643ab View commit details
    Browse the repository at this point in the history
  5. use a dummy database name for the default postgres database name

    For some reason the docker image does not setup the permissions correctly,
    by using a different name the nextcloud installer will create the database instead
    with the correct permissions
    
    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 authored and rullzer committed Sep 27, 2018
    Configuration menu
    Copy the full SHA
    0d62680 View commit details
    Browse the repository at this point in the history
  6. Fix acceptance tests as app title changed

    The redundant app was removed. So we need to update the tests to make it
    green.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Sep 27, 2018
    Configuration menu
    Copy the full SHA
    947f3b4 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2018

  1. Add back the total used space per user

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    1e5bcd0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11422 from nextcloud/fix/acceptance-apps

    Fix acceptance tests as app title changed
    rullzer authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    c12689b View commit details
    Browse the repository at this point in the history
  3. Fix invalid inline input confirm border

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    79f1650 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11426 from nextcloud/stable14-inline-input-error-fix

    [stable14] Fix invalid inline input confirm border
    MorrisJobke authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    a646dba View commit details
    Browse the repository at this point in the history
  5. Center back the history icon

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    a8a4d79 View commit details
    Browse the repository at this point in the history
  6. Cleanup

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    fccd9c3 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #11430 from nextcloud/stable14-history-icon-center…

    …-fix
    
    [stable14] Center back the history icon
    rullzer authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    d29b996 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11425 from nextcloud/stable14-hover-quota-used-sp…

    …ace-regression
    
    [stable14] Add back the total used space per user
    MorrisJobke authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    72abd62 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #11421 from nextcloud/backport/11262/stable14

    [stable14] use a dummy database name for the default postgres database name
    MorrisJobke authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    ae163ee View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11418 from nextcloud/stable14-11411-fix-checkWell…

    …KnownUrl-not-being-executed
    
    [stable14] Fix "checkWellKnownUrl" not being run
    MorrisJobke authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    3894e59 View commit details
    Browse the repository at this point in the history
  11. AssemblyStream is also eof if we have no more source stream

    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    e3dab24 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #11436 from nextcloud/assemblystream-eof-14

    [14] AssemblyStream is also eof if we have no more source stream
    rullzer authored Sep 28, 2018
    Configuration menu
    Copy the full SHA
    48b48fa View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2018

  1. Re-enable upload button after updating Avatar fixes #8623

    Signed-off-by: Tobia De Koninck <LEDfan@users.noreply.github.com>
    LEDfan committed Sep 29, 2018
    Configuration menu
    Copy the full SHA
    875d1b0 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2018

  1. Merge pull request #11451 from nextcloud/stable14_10833

    [stable14] Re-enable upload button after updating Avatar
    MorrisJobke authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    99a705f View commit details
    Browse the repository at this point in the history
  2. Fix typo in config.sample.php

    Signed-off-by: Marius Blüm <marius@lineone.io>
    MariusBluem authored and MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    f5851cd View commit details
    Browse the repository at this point in the history
  3. Update theming.scss

    EASY authored and MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    d5876fe View commit details
    Browse the repository at this point in the history
  4. Update config and babel for ie11

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    01b0a74 View commit details
    Browse the repository at this point in the history
  5. Used CSS Variables

    linuskoester authored and MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    f2a5a4d View commit details
    Browse the repository at this point in the history
  6. only catch QueryException when trying to build class

    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 authored and MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    e46092d View commit details
    Browse the repository at this point in the history
  7. Show auth type "None" in email settings

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    1636393 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11489 from nextcloud/backport/11123/2fa-button

    [stable14] Bugfix 2FA theme: buttons white
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    b7b91ba View commit details
    Browse the repository at this point in the history
  9. Merge pull request #11490 from nextcloud/stable14-babel-npm-webpack-f…

    …ixes
    
    [stable14] Update config and babel for ie11
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    7529d43 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11488 from nextcloud/backport/11047/typo-config-s…

    …ample
    
    [stable14] Fix typo in config.sample.php
    MorrisJobke authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    8096ad5 View commit details
    Browse the repository at this point in the history
  11. [Stable14] Drone: do not check stable* but only stable14

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    6a9d244 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #11493 from nextcloud/backport/11416/show-email-au…

    …thtype-none-14
    
    [stable14] Show auth type "None" in email settings
    MorrisJobke authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    520eb52 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #11492 from nextcloud/backport/11316/container-que…

    …ryexception-only-14
    
    [stable14] only catch QueryException when trying to build class
    MorrisJobke authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    565220a View commit details
    Browse the repository at this point in the history
  14. Fix public page footer link wrap

    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    4e58490 View commit details
    Browse the repository at this point in the history
  15. Ellipsize long filenames and sharee names in public share page header

    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    1b92ec0 View commit details
    Browse the repository at this point in the history
  16. Remove non-clickable right margin from 3-dot-menu in share page header

    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    687d050 View commit details
    Browse the repository at this point in the history
  17. Add missing compiled mimetype list - see #10135

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    d026c42 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #11505 from nextcloud/drone/14/no_branch_wildcard

    [Stable14] Drone: do not check stable* but only stable14
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    c3a72ba View commit details
    Browse the repository at this point in the history
  19. Merge pull request #11510 from nextcloud/stable14-public-footer

    [stable14] Fix public page footer link wrap
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    7841c95 View commit details
    Browse the repository at this point in the history
  20. Merge pull request #11511 from nextcloud/stable14-share-header

    [stable14] Fix share header text on small widths
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    e7cdacf View commit details
    Browse the repository at this point in the history
  21. Merge pull request #11516 from nextcloud/backport/11515/mimteype-list…

    …-update
    
    [stable14] Add missing compiled mimetype list
    rullzer authored Oct 1, 2018
    Configuration menu
    Copy the full SHA
    491db08 View commit details
    Browse the repository at this point in the history
  22. Fix buttons wrapping on long folder names

    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt authored and weeman1337 committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    0f827ea View commit details
    Browse the repository at this point in the history
  23. Fixes file/folder move/copy buttons

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 committed Oct 1, 2018
    Configuration menu
    Copy the full SHA
    7253365 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2018

  1. Merge pull request #11525 from nextcloud/fix/11315/filepicker-buttons…

    …-nc14
    
    [14] Fixes the move/copy picker buttons
    skjnldsv authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    0861719 View commit details
    Browse the repository at this point in the history
  2. Fix breadcrumbs

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 2, 2018
    Configuration menu
    Copy the full SHA
    720d195 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11530 from nextcloud/stb14-brdcrmb-fx

    Fix breadcrumbs
    rullzer authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    27323c9 View commit details
    Browse the repository at this point in the history
  4. Added kinetic scrolling for iOS to apps dropdown menu #10281

    this is tested with nc14
    kevin147147 authored and MorrisJobke committed Oct 2, 2018
    Configuration menu
    Copy the full SHA
    d05b13d View commit details
    Browse the repository at this point in the history
  5. Reduce the min-width of the files table so it works on sharing pages …

    …on mobile
    
    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt committed Oct 2, 2018
    Configuration menu
    Copy the full SHA
    0bad377 View commit details
    Browse the repository at this point in the history
  6. throw an error if a node is smaller than expected in assemblystream

    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 authored and rullzer committed Oct 2, 2018
    Configuration menu
    Copy the full SHA
    90fa659 View commit details
    Browse the repository at this point in the history
  7. Fix header overflow, fix more apps menu, fix #11552

    Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
    jancborchardt committed Oct 2, 2018
    Configuration menu
    Copy the full SHA
    745e27e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11555 from nextcloud/backport/11435/stable14

    throw an error if a node is smaller than expected in assemblystream
    rullzer authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    5d0946a View commit details
    Browse the repository at this point in the history
  9. Merge pull request #11554 from nextcloud/backport/11111/fix-app-menu-ios

    [stable14] Added kinetic scrolling for iOS to apps dropdown menu #10281
    MorrisJobke authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    540c001 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11556 from nextcloud/stable14-files-list-width-sh…

    …aring
    
    [stable14] Reduce the min-width of the files table so it works on sharing pages on mobile
    MorrisJobke authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    591669a View commit details
    Browse the repository at this point in the history
  11. Merge pull request #11558 from nextcloud/stable14-header-overflow

    [stable14] Fix header overflow, fix more apps menu, fix #11552
    rullzer authored Oct 2, 2018
    Configuration menu
    Copy the full SHA
    029aa8e View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2018

  1. Add new group entry on users list + fixes

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    1f8a34f View commit details
    Browse the repository at this point in the history
  2. Redirect guests to login if they follow the link of a comment mention…

    …-notification
    
    Signed-off-by: Joas Schilling <coding@schilljs.com>
    nickvergessen authored and rullzer committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    cd435ab View commit details
    Browse the repository at this point in the history
  3. Force multiselect max-height to 5.5 items

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    22973fa View commit details
    Browse the repository at this point in the history
  4. Just update password hash without validating

    Fixes #11097
    
    If your password hash changed (becuse your are on 7.2 and we moved to
    ARGON2). Then we shold not 'set a new password' but just update the
    hash. As else we invoke the password policy again which might lock out
    users.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    5e143f1 View commit details
    Browse the repository at this point in the history
  5. Fix sticky header on users list

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    b9d273b View commit details
    Browse the repository at this point in the history
  6. Fixed js error

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 3, 2018
    Configuration menu
    Copy the full SHA
    0c4e270 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #11577 from nextcloud/backport/11185/stable14

    [stable14] Redirect guests to login if they follow the link of a comment mention-notifications
    MorrisJobke authored Oct 3, 2018
    Configuration menu
    Copy the full SHA
    7d850c3 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11580 from nextcloud/backport/11568/stable14

    [stable14] Just update password hash without validating
    rullzer authored Oct 3, 2018
    Configuration menu
    Copy the full SHA
    6734e43 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #11579 from nextcloud/stb14-dropdown-bottom-users-…

    …list-fix
    
    [stable14] Force multiselect max-height to 5.5 items
    rullzer authored Oct 3, 2018
    Configuration menu
    Copy the full SHA
    316a3a5 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11575 from nextcloud/stb14-add-group-settings

    [stable14] Add new group entry on users list + fixes
    MorrisJobke authored Oct 3, 2018
    Configuration menu
    Copy the full SHA
    0ca305b View commit details
    Browse the repository at this point in the history
  11. Merge pull request #11582 from nextcloud/stb14-users-table-header-fix

    [stable14] Fix sticky header on users list
    MorrisJobke authored Oct 3, 2018
    Configuration menu
    Copy the full SHA
    5b33cbd View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1302b6f View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2018

  1. Configuration menu
    Copy the full SHA
    e87ec7d View commit details
    Browse the repository at this point in the history
  2. Fix header border on users list

    Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
    skjnldsv committed Oct 4, 2018
    Configuration menu
    Copy the full SHA
    a623f96 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11608 from nextcloud/users-table-header-fix-14

    [stable14] Fix header border on users list
    rullzer authored Oct 4, 2018
    Configuration menu
    Copy the full SHA
    ded5414 View commit details
    Browse the repository at this point in the history
  4. Append error from exception for message

    Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
    kesselb committed Oct 4, 2018
    Configuration menu
    Copy the full SHA
    718e34a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #11610 from nextcloud/bugfix/noid/stable14-fix-cal…

    …l-to-logger
    
    [14] Fix call to logger
    MorrisJobke authored Oct 4, 2018
    Configuration menu
    Copy the full SHA
    0afef27 View commit details
    Browse the repository at this point in the history
  6. 14.0.2 RC 1

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 4, 2018
    Configuration menu
    Copy the full SHA
    84f7d23 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1462508 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2018

  1. Configuration menu
    Copy the full SHA
    723dbe2 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2018

  1. Configuration menu
    Copy the full SHA
    32aa38e View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2018

  1. Configuration menu
    Copy the full SHA
    acffe7a View commit details
    Browse the repository at this point in the history
  2. Fixes the apps menu scrollbar

    Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
    weeman1337 committed Oct 7, 2018
    Configuration menu
    Copy the full SHA
    14af19a View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2018

  1. Configuration menu
    Copy the full SHA
    cd5da47 View commit details
    Browse the repository at this point in the history
  2. in 14 the click action gets lost in the Backbone view.

    Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
    blizzz committed Oct 8, 2018
    Configuration menu
    Copy the full SHA
    2419ff4 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2018

  1. Configuration menu
    Copy the full SHA
    ecf14ad View commit details
    Browse the repository at this point in the history
  2. Allow the creationg of previews of files stored in appdata

    To allow us to create previews of files stored in appdata we need to
    construct the view differently.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 9, 2018
    Configuration menu
    Copy the full SHA
    f7e9533 View commit details
    Browse the repository at this point in the history
  3. Update CRL due to changed cert for linkshareex

    See nextcloud/app-certificate-requests#193
    
    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 9, 2018
    Configuration menu
    Copy the full SHA
    571f98e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11706 from nextcloud/backport/11705/update-crl

    [stable14] Update CRL due to changed cert for linkshareex
    MorrisJobke authored Oct 9, 2018
    Configuration menu
    Copy the full SHA
    2f14387 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #11703 from nextcloud/backport/11677/stable14

    [14] Allow the creationg of previews of files stored in appdata
    MorrisJobke authored Oct 9, 2018
    Configuration menu
    Copy the full SHA
    04460e2 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11684 from nextcloud/backport/10782/stable14

    [stable14] in 14 the click action gets lost in the Backbone view.
    MorrisJobke authored Oct 9, 2018
    Configuration menu
    Copy the full SHA
    022a45f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6957e1f View commit details
    Browse the repository at this point in the history
  8. Merge pull request #11720 from nextcloud/revert-11684-backport/10782/…

    …stable14
    
    Revert "[stable14] in 14 the click action gets lost in the Backbone view."
    MorrisJobke authored Oct 9, 2018
    Configuration menu
    Copy the full SHA
    121edc9 View commit details
    Browse the repository at this point in the history
  9. 14.0.2 RC 2

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 9, 2018
    Configuration menu
    Copy the full SHA
    09c270a View commit details
    Browse the repository at this point in the history
  10. always query the lookup server in a global scale setup and have a nic…

    …er label
    
    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 9, 2018
    Configuration menu
    Copy the full SHA
    52c52f5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0fe69b1 View commit details
    Browse the repository at this point in the history
  12. adjust tests

    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 9, 2018
    Configuration menu
    Copy the full SHA
    7e608df View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2018

  1. Configuration menu
    Copy the full SHA
    cef454c View commit details
    Browse the repository at this point in the history
  2. Fix a misleading setup check for .well-known/caldav & carddav

    The problem is that the version without the slash is the correct one.
    
    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 10, 2018
    Configuration menu
    Copy the full SHA
    5f0887c View commit details
    Browse the repository at this point in the history
  3. some small fixes and improvements

    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 10, 2018
    Configuration menu
    Copy the full SHA
    84e39b5 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2018

  1. Merge pull request #11738 from nextcloud/backport/11733/fix-setupchec…

    …k-14
    
    [stable14] Fix a misleading setup check for .well-known/caldav & carddav
    MorrisJobke authored Oct 11, 2018
    Configuration menu
    Copy the full SHA
    5bf4bc7 View commit details
    Browse the repository at this point in the history
  2. 14.0.2

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and MorrisJobke committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    53fb478 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    51813f7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11662 from nextcloud/fix/11468/app-menu-scrollbar-14

    [14] Fixes the apps menu scrollbar
    rullzer authored Oct 11, 2018
    Configuration menu
    Copy the full SHA
    55e737a View commit details
    Browse the repository at this point in the history
  5. Ignore "session_lifetime" if it can not be converted to a number

    When "session_lifetime" can not be converted to a number the interval
    becomes a NaN due to dividing it by 2. This NaN was "dragged" over all
    the other mathematical operations and caused the csrftoken to be got
    again and again due to an infinite loop with no pauses in "setInterval".
    Now, the interval is set to the default value instead if the
    "session_lifetime" can not be converted to a number.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    a246cc1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11761 from nextcloud/stable14-11756-ignore-sessio…

    …n-lifetime-if-it-can-not-be-converted-to-a-number
    
    [stable14] Ignore "session_lifetime" if it can not be converted to a number
    MorrisJobke authored Oct 11, 2018
    Configuration menu
    Copy the full SHA
    feb8a79 View commit details
    Browse the repository at this point in the history
  7. Normalize getUnjailedPath

    Fixes #11637
    
    If we do not normalize the unjailed path we might end up with a path
    like files/user/folder/. which can break on objectstores
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    18c35e6 View commit details
    Browse the repository at this point in the history
  8. Backport #11446

    Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
    kesselb committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    4f983b7 View commit details
    Browse the repository at this point in the history
  9. Remove duplicate call to decodeURIComponent

    Signed-off-by: Bernd Stellwag <burned@zerties.org>
    
    (cherry picked from commit 0f030d8)
    Signed-off-by: Bernd Stellwag <burned@zerties.org>
    burned42 committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    86b2e7d View commit details
    Browse the repository at this point in the history
  10. Merge pull request #11770 from nextcloud/backport/11764/stable14

    [14] Normalize getUnjailedPath
    rullzer authored Oct 11, 2018
    Configuration menu
    Copy the full SHA
    db03468 View commit details
    Browse the repository at this point in the history
  11. 14.0.3

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 11, 2018
    Configuration menu
    Copy the full SHA
    af1ccb9 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2018

  1. Configuration menu
    Copy the full SHA
    549d53c View commit details
    Browse the repository at this point in the history
  2. Add 7.3 CI to drone

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 12, 2018
    Configuration menu
    Copy the full SHA
    bddf937 View commit details
    Browse the repository at this point in the history
  3. Allow php7.3

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 12, 2018
    Configuration menu
    Copy the full SHA
    e7d20cd View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11781 from burned42/stable14_fix_percent_sign_bre…

    …aking_all_files_view
    
    [stable14] Remove duplicate call to decodeURIComponent
    rullzer authored Oct 12, 2018
    Configuration menu
    Copy the full SHA
    59d5d48 View commit details
    Browse the repository at this point in the history
  5. Add "Referrer-Policy" to htaccess file, addresses issue #11099

    Signed-off-by: Patrik Kernstock <info@pkern.at>
    patschi committed Oct 12, 2018
    Configuration menu
    Copy the full SHA
    2b0d0e5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    91c44c8 View commit details
    Browse the repository at this point in the history
  7. add more tests

    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 12, 2018
    Configuration menu
    Copy the full SHA
    49b98b5 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2018

  1. Merge pull request #11798 from nextcloud/backport/11782/stable14

    [stable14] Add "Referrer-Policy" to htaccess file, addresses issue #11099
    nickvergessen authored Oct 15, 2018
    Configuration menu
    Copy the full SHA
    c17ec81 View commit details
    Browse the repository at this point in the history
  2. Fix a case where "password_by_talk" was not a boolean (e.g. null or "…

    …0") and actively cast it to a boolean
    
    This was the error message that we have seen:
    
    ```
    Argument 1 passed to OC\\Share20\\Share::setSendPasswordByTalk() must be of the type boolean, null given, called in apps/sharebymail/lib/ShareByMailProvider.php on line 981
    ```
    
    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 15, 2018
    Configuration menu
    Copy the full SHA
    9454de5 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2018

  1. Merge pull request #11851 from nextcloud/backport/11802/fix-password_…

    …by_talk-not-a-boolean
    
    [stable14] Fix a case where "password_by_talk" was not a boolean
    nickvergessen authored Oct 16, 2018
    Configuration menu
    Copy the full SHA
    c1fbf70 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2018

  1. Add .l10nignore files for compiled assets

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    858ec0a View commit details
    Browse the repository at this point in the history
  2. Properly escape column name in "createFunction" call

    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    f6cdab6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11772 from nextcloud/stable14-pretty-urls-dont-work

    [14] Allow overwrite.cli.url without trailing slash
    MorrisJobke authored Oct 19, 2018
    Configuration menu
    Copy the full SHA
    2885db8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11929 from nextcloud/backport/11870/proper-column…

    …-name-escaping
    
    [stable14] Properly escape column name in "createFunction" call
    MorrisJobke authored Oct 19, 2018
    Configuration menu
    Copy the full SHA
    61fe597 View commit details
    Browse the repository at this point in the history
  5. Allow userId to be null

    Fixes #10852
    
    A quick hack. Still ensures some type safety however now also accepts
    null. Else we'd need to add a whole new layer of middlewares.
    
    This can only happen when a guest user wants to access a controller that
    requries the user_id.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    5c8719a View commit details
    Browse the repository at this point in the history
  6. Merge pull request #11939 from nextcloud/backport/11611/stable14

    [14] Allow userId to be null
    rullzer authored Oct 19, 2018
    Configuration menu
    Copy the full SHA
    76b3bbc View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2018

  1. Allow "same-origin" as "Referrer-Policy"

    Fixes #11531
    
    Although "same-origin" is more strict than e.g. strict-origin it showed up a warning in setupcheck
    Based on https://scotthelme.co.uk/a-new-security-header-referrer-policy/
    
    Signed-off-by: Moritz Beck <git@birkenstab.de>
    Birkenstab committed Oct 20, 2018
    Configuration menu
    Copy the full SHA
    ea613a8 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2018

  1. Do not emit preHooks twice on non-part-storage

    The old code would emit the hooks twice. Thus having the version written
    twice. Which is not very performant as it is first read twice as well.
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer committed Oct 21, 2018
    Configuration menu
    Copy the full SHA
    e81f423 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2018

  1. Merge pull request #11950 from Birkenstab/allow-same-origin-referrer-…

    …policy-backport
    
    Allow "same-origin" as "Referrer-Policy" (Backport to stable14)
    MorrisJobke authored Oct 22, 2018
    Configuration menu
    Copy the full SHA
    7ca1262 View commit details
    Browse the repository at this point in the history
  2. filter null values for UserManager::getByEmail

    Signed-off-by: Georg Ehrke <developer@georgehrke.com>
    georgehrke committed Oct 22, 2018
    Configuration menu
    Copy the full SHA
    554c80b View commit details
    Browse the repository at this point in the history
  3. move disableFreeBusy check from User principal backend to Scheduling …

    …Outbox collection. This allows to keep local delivery of scheduling messages while prohibiting FreeBusy requests
    
    Signed-off-by: Georg Ehrke <developer@georgehrke.com>
    georgehrke committed Oct 22, 2018
    Configuration menu
    Copy the full SHA
    4bbd3fa View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2018

  1. Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js

    Before it quit right after finding the theme version of the l10n file which results in a not translated part of the UI.
    
    Signed-off-by: Morris Jobke <hey@morrisjobke.de>
    MorrisJobke committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    9ea7587 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11990 from nextcloud/backport/11972/fix-l10n-fetc…

    …hing-from-theme
    
    [stable14] Load apps/APP/l10n/*.js and themes/THEME/apps/APP/l10n/*.js
    rullzer authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    304fcdf View commit details
    Browse the repository at this point in the history
  3. Merge pull request #11976 from nextcloud/bugfix-stable14/9326/make_su…

    …re_usermanager_getByEmail_only_returns_IUser
    
    [stable14] filter null values for UserManager::getByEmail
    rullzer authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    d9c0801 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11979 from nextcloud/bugfix-stable14/noid/forbid_…

    …freebusy_but_allow_local_delivery
    
    [stable14] allow local delivery of schedule message while prohibiting FreeBusy requests
    MorrisJobke authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    0d28b60 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #11925 from nextcloud/backport/11920/properly-igno…

    …re-compiled-files-l10n
    
    [stable14] Add .l10nignore files for compiled assets
    MorrisJobke authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    8c40be0 View commit details
    Browse the repository at this point in the history
  6. Fix indentation

    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    ea047e3 View commit details
    Browse the repository at this point in the history
  7. Fix opening a section again in the Files app

    When a section is open in the Files app a "show" event is triggered.
    File list objects handle that event by reloading themselves, but only
    if the file list was shown at least once. However, the file list objects
    of plugins are created when the "show" event is triggered for the first
    time for their section; as the file list objects register their handler
    for the "show" event when they are created they never handle the first
    triggered "show" event, as the handler is set while that event is being
    already handled. Therefore, from the point of view of the handler, the
    second time that a "show" event was triggered it was seen as if the file
    list was shown for the first time, and thus it was not reloaded. Now the
    "shown" property is explicitly set for those file lists that are created
    while handling a "show" event, which causes them to be reloaded as
    expected when opening their section again.
    
    Note that it is not possible to just reload the file list whenever it is
    shown; the file list is reloaded also when the directory changes, and
    this can happen when the web page is initially loaded and the URL is
    parsed. In that case, if file lists were reloaded when shown for the
    first time then it could be reloaded twice, one with the default
    parameters due to the "show" event and another one with the proper
    parameters once the URL was parsed, and the files that appeard in the
    list would depend on which response from the server was received the
    last.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    7312566 View commit details
    Browse the repository at this point in the history
  8. Remove event handler no longer needed

    The custom handler for "URL changed" events were added to reload the
    file list whenever the sections for favorites and shares were opened;
    this was used to fix the problem of not reloading the file lists when
    opening them for a second time. However, besides that the handlers were
    not really necessary, and as the root of the bug was fixed in the
    previous commit those handlers are now removed.
    
    The file list for tags uses the handler for a different purpose, though,
    so that one was kept.
    
    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    9801b5a View commit details
    Browse the repository at this point in the history
  9. Add acceptance tests for opening a section in the Files app

    Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
    danxuliu committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    c1e37bb View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7894c40 View commit details
    Browse the repository at this point in the history
  11. lazy open first source stream in assemblystream

    Signed-off-by: Robin Appelman <robin@icewind.nl>
    icewind1991 committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    0803de9 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #11961 from nextcloud/backport/11931/stable14

    [14] Do not emit preHooks twice on non-part-storage
    MorrisJobke authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    e88c8d1 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #11994 from nextcloud/assemblly-stream-lazy-14

    lazy open first source stream in assemblystream
    MorrisJobke authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    52c3285 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #11995 from nextcloud/stable14-11967-fix-opening-a…

    …-section-again-in-the-files-app
    
    [stable14] Fix opening a section again in the Files app
    rullzer authored Oct 23, 2018
    Configuration menu
    Copy the full SHA
    3e8a38f View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2018

  1. Configuration menu
    Copy the full SHA
    a13d936 View commit details
    Browse the repository at this point in the history
  2. Remove cookies from Clear-Site-Data Header

    In 2f87fb6 this header was introduced. The referenced documentation says:
    
    > When delivered with a response from https://example.com/clear, the following header will cause cookies associated with the origin https://example.com to be cleared, as well as cookies on any origin in the same registered domain (e.g. https://www.example.com/ and https://more.subdomains.example.com/).
    
    This also applies if `https://nextcloud.example.com/` sends the `Clear-Site-Data: "cookies"` header.
    This is not the behavior we want at this point!
    
    So I removed the deletion of cookies from the header. This has no effect on the logout process as this header is supported only recently and the logout works in old browsers as well.
    
    Signed-off-by: Patrick Conrad <conrad@iza.org>
    (cherry picked from commit 1806baa)
    iPaat committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    bae4207 View commit details
    Browse the repository at this point in the history
  3. backport of #10778

    Adding a check to see if keyFileContents is empty:
    
    * this fixes a download error and an exception if the data content
      for encryption is empty
    * #3958: for recovering encrypted files with a damaged signature
      this is necessary in addition to turning the signature check off
    
    Signed-off-by: Stefan Weiberg <sweiberg@suse.com>
    suntorytimed authored and rullzer committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    e8db401 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #11783 from suntorytimed/stable14

    [stable14] backport of #10778
    MorrisJobke authored Oct 24, 2018
    Configuration menu
    Copy the full SHA
    cdca81b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #11800 from nextcloud/lookupserver-and-global-scal…

    …e-stable14
    
    [stable14] always query the lookup server in a global scale setup
    MorrisJobke authored Oct 24, 2018
    Configuration menu
    Copy the full SHA
    e5814bd View commit details
    Browse the repository at this point in the history
  6. Merge pull request #12005 from iPaat/Backport14/Fix11847

    [stable14] Remove cookies from Clear-Site-Data Header
    MorrisJobke authored Oct 24, 2018
    Configuration menu
    Copy the full SHA
    751aa99 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2018

  1. Configuration menu
    Copy the full SHA
    f8c3b1d View commit details
    Browse the repository at this point in the history
  2. Expired PK tokens should not fall back to legacy tokens

    Fixes #11919
    
    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and Dagefoerde committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    49e992c View commit details
    Browse the repository at this point in the history
  3. Catch more occurences where ExpiredTokenException can be thrown

    Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
    rullzer authored and Dagefoerde committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    4abae96 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #12032 from Dagefoerde/stable14-11919-do-not-alway…

    …s-fallback
    
    [stable14] Forwarded ExpiredTokenException
    rullzer authored Oct 25, 2018
    Configuration menu
    Copy the full SHA
    6c6793f View commit details
    Browse the repository at this point in the history
  5. skip already encrypted files on encrypt all command

    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    1e80984 View commit details
    Browse the repository at this point in the history
  6. skip already decrypted files on decrypt all command

    Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
    schiessle committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    6f3328a View commit details
    Browse the repository at this point in the history
  7. Merge pull request #12045 from nextcloud/improve-encrypt-all-stable14

    [stable14] Improve encrypt all / decrypt all
    MorrisJobke authored Oct 25, 2018
    Configuration menu
    Copy the full SHA
    4a54d5b View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2018

  1. Configuration menu
    Copy the full SHA
    7e7d3ce View commit details
    Browse the repository at this point in the history