text
stringlengths
1
2.83M
id
stringlengths
16
152
metadata
dict
__index_level_0__
int64
0
949
{ "open_a_file_on_the_left": "Abrir un archivo a la izquierda", "reference_error_relink_hint": "Si el error persiste, prueba a volver a vincular la cuenta aquí:", "pdf_rendering_error": "Error al renderizar PDF", "something_went_wrong_rendering_pdf": "Algo ha fallado al renderizar este PDF.", "mendeley_refere...
overleaf/web/locales/es.json/0
{ "file_path": "overleaf/web/locales/es.json", "repo_id": "overleaf", "token_count": 16317 }
600
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['server-ce', 'server-pro', 'saas'] const indexes = [ { unique: true, key: { user_id: 1, }, name: 'user_id_1', }, ] exports.migrate = async client => { const { db } = client await Helpers.addIn...
overleaf/web/migrations/20190912145001_create_contacts_indexes.js/0
{ "file_path": "overleaf/web/migrations/20190912145001_create_contacts_indexes.js", "repo_id": "overleaf", "token_count": 228 }
601
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['saas'] const indexes = [ { unique: true, key: { authorizationCode: 1, }, name: 'authorizationCode_1', }, ] exports.migrate = async client => { const { db } = client await Helpers.addIndexesTo...
overleaf/web/migrations/20190912145017_create_oauthAuthorizationCodes_indexes.js/0
{ "file_path": "overleaf/web/migrations/20190912145017_create_oauthAuthorizationCodes_indexes.js", "repo_id": "overleaf", "token_count": 225 }
602
/* eslint-disable no-unused-vars */ const Helpers = require('./lib/helpers') exports.tags = ['saas'] const indexes = [ { key: { 'overleaf.id': 1, }, name: 'overleaf.id_1', }, ] exports.migrate = async client => { const { db } = client await Helpers.addIndexesToCollection(db.userstubs, ind...
overleaf/web/migrations/20190912145033_create_userstubs_indexes.js/0
{ "file_path": "overleaf/web/migrations/20190912145033_create_userstubs_indexes.js", "repo_id": "overleaf", "token_count": 215 }
603
const Helpers = require('./lib/helpers') exports.tags = ['saas'] const indexes = [ { key: { 'overleaf.history.display': 1, }, name: 'overleaf.history.display_1', }, ] exports.migrate = async client => { const { db } = client await Helpers.addIndexesToCollection(db.projects, indexes) } expo...
overleaf/web/migrations/20210721081758_create_history_display_index.js/0
{ "file_path": "overleaf/web/migrations/20210721081758_create_history_display_index.js", "repo_id": "overleaf", "token_count": 163 }
604
require('../../../../../test/acceptance/src/helpers/InitApp')
overleaf/web/modules/launchpad/test/acceptance/src/Init.js/0
{ "file_path": "overleaf/web/modules/launchpad/test/acceptance/src/Init.js", "repo_id": "overleaf", "token_count": 21 }
605
const UserActivateRouter = require('./app/src/UserActivateRouter') module.exports = { router: UserActivateRouter }
overleaf/web/modules/user-activate/index.js/0
{ "file_path": "overleaf/web/modules/user-activate/index.js", "repo_id": "overleaf", "token_count": 37 }
606
'use strict' const fs = require('fs') const minimist = require('minimist') const readline = require('readline') const { db, ObjectId, waitForDb, } = require('../../app/src/infrastructure/mongodb') const DocstoreManager = require('../../app/src/Features/Docstore/DocstoreManager') .promises const argv = minimi...
overleaf/web/scripts/delete-orphaned-docs/delete-orphaned-docs.js/0
{ "file_path": "overleaf/web/scripts/delete-orphaned-docs/delete-orphaned-docs.js", "repo_id": "overleaf", "token_count": 1069 }
607
source 'https://rubygems.org' gem 'recurly' gem 'json'
overleaf/web/scripts/recurly/Gemfile/0
{ "file_path": "overleaf/web/scripts/recurly/Gemfile", "repo_id": "overleaf", "token_count": 23 }
608
const { merge } = require('@overleaf/settings/merge') const base = require('./settings.test.defaults') module.exports = base.mergeWith({}) module.exports.mergeWith = function (overrides) { return merge(overrides, module.exports) }
overleaf/web/test/acceptance/config/settings.test.server-ce.js/0
{ "file_path": "overleaf/web/test/acceptance/config/settings.test.server-ce.js", "repo_id": "overleaf", "token_count": 80 }
609
const User = require('./helpers/User') const request = require('./helpers/request') const { expect } = require('chai') const settings = require('@overleaf/settings') const { ObjectId } = require('mongodb') describe('DocUpdate', function () { beforeEach(function (done) { this.user = new User() this.projectNam...
overleaf/web/test/acceptance/src/DocUpdateTests.js/0
{ "file_path": "overleaf/web/test/acceptance/src/DocUpdateTests.js", "repo_id": "overleaf", "token_count": 1645 }
610
/* eslint-disable max-len, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/mas...
overleaf/web/test/acceptance/src/RedirectUrlsTests.js/0
{ "file_path": "overleaf/web/test/acceptance/src/RedirectUrlsTests.js", "repo_id": "overleaf", "token_count": 936 }
611
const App = require('../../../../app.js') const MongoHelper = require('./MongoHelper') const RedisHelper = require('./RedisHelper') const { logger } = require('logger-sharelatex') logger.level('error') MongoHelper.initialize() RedisHelper.initialize() let server before('start main app', function (done) { server =...
overleaf/web/test/acceptance/src/helpers/InitApp.js/0
{ "file_path": "overleaf/web/test/acceptance/src/helpers/InitApp.js", "repo_id": "overleaf", "token_count": 157 }
612
const AbstractMockApi = require('./AbstractMockApi') class MockChatApi extends AbstractMockApi { reset() { this.projects = {} } getGlobalMessages(req, res) { res.send(this.projects[req.params.project_id] || []) } sendGlobalMessage(req, res) { const projectId = req.params.project_id const me...
overleaf/web/test/acceptance/src/mocks/MockChatApi.js/0
{ "file_path": "overleaf/web/test/acceptance/src/mocks/MockChatApi.js", "repo_id": "overleaf", "token_count": 418 }
613
import sinon from 'sinon' export function stubMathJax() { window.MathJax = { Hub: { Queue: sinon.stub(), config: { tex2jax: { inlineMath: [['$', '$']] } }, }, } } export function tearDownMathJaxStubs() { delete window.MathJax }
overleaf/web/test/frontend/features/chat/components/stubs.js/0
{ "file_path": "overleaf/web/test/frontend/features/chat/components/stubs.js", "repo_id": "overleaf", "token_count": 111 }
614
import { expect } from 'chai' import sinon from 'sinon' import { screen, fireEvent, cleanup } from '@testing-library/react' import renderWithContext from '../../helpers/render-with-context' import FileTreeItemName from '../../../../../../frontend/js/features/file-tree/components/file-tree-item/file-tree-item-name' de...
overleaf/web/test/frontend/features/file-tree/components/file-tree-item/file-tree-item-name.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/file-tree/components/file-tree-item/file-tree-item-name.test.js", "repo_id": "overleaf", "token_count": 1250 }
615
import { expect } from 'chai' import sinon from 'sinon' import { screen, fireEvent } from '@testing-library/react' import OutlinePane from '../../../../../frontend/js/features/outline/components/outline-pane' import { renderWithEditorContext } from '../../../helpers/render-with-context' describe('<OutlinePane />', fu...
overleaf/web/test/frontend/features/outline/components/outline-pane.test.js/0
{ "file_path": "overleaf/web/test/frontend/features/outline/components/outline-pane.test.js", "repo_id": "overleaf", "token_count": 1076 }
616
import { expect } from 'chai' import fetchMock from 'fetch-mock' import { deleteJSON, FetchError, getJSON, postJSON, putJSON, } from '../../../frontend/js/infrastructure/fetch-json' describe('fetchJSON', function () { before(function () { fetchMock.restore() }) afterEach(function () { fetchMoc...
overleaf/web/test/frontend/infrastructure/fetch-json.test.js/0
{ "file_path": "overleaf/web/test/frontend/infrastructure/fetch-json.test.js", "repo_id": "overleaf", "token_count": 1768 }
617
async function run({ getCsrfTokenFor }) { const loginCsrfToken = await getCsrfTokenFor('/login') return { loginCsrfToken } } module.exports = { run }
overleaf/web/test/smoke/src/steps/000_getLoginCsrf.js/0
{ "file_path": "overleaf/web/test/smoke/src/steps/000_getLoginCsrf.js", "repo_id": "overleaf", "token_count": 56 }
618
const sinon = require('sinon') const { expect } = require('chai') const SandboxedModule = require('sandboxed-module') const Errors = require('../../../../app/src/Features/Errors/Errors.js') const MODULE_PATH = '../../../../app/src/Features/Authorization/AuthorizationMiddleware.js' describe('AuthorizationMiddleware'...
overleaf/web/test/unit/src/Authorization/AuthorizationMiddlewareTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Authorization/AuthorizationMiddlewareTests.js", "repo_id": "overleaf", "token_count": 8835 }
619
/* eslint-disable camelcase, max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.c...
overleaf/web/test/unit/src/Compile/CompileControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Compile/CompileControllerTests.js", "repo_id": "overleaf", "token_count": 11757 }
620
const SandboxedModule = require('sandboxed-module') const path = require('path') const sinon = require('sinon') const { expect } = require('chai') const MODULE_PATH = path.join( __dirname, '../../../../app/src/Features/Email/EmailHandler' ) describe('EmailHandler', function () { beforeEach(function () { thi...
overleaf/web/test/unit/src/Email/EmailHandlerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Email/EmailHandlerTests.js", "repo_id": "overleaf", "token_count": 1286 }
621
/* eslint-disable max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate...
overleaf/web/test/unit/src/History/RestoreManagerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/History/RestoreManagerTests.js", "repo_id": "overleaf", "token_count": 2809 }
622
/* eslint-disable max-len, mocha/no-identical-title, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: h...
overleaf/web/test/unit/src/Project/DocLinesComparitorTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Project/DocLinesComparitorTests.js", "repo_id": "overleaf", "token_count": 1070 }
623
const { expect } = require('chai') const modulePath = '../../../../app/src/Features/Project/ProjectLocator' const SandboxedModule = require('sandboxed-module') const sinon = require('sinon') const Errors = require('../../../../app/src/Features/Errors/Errors') const project = { _id: '1234566', rootFolder: [] } class Pr...
overleaf/web/test/unit/src/Project/ProjectLocatorTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Project/ProjectLocatorTests.js", "repo_id": "overleaf", "token_count": 8128 }
624
/* eslint-disable max-len, no-return-assign, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * DS103: Rewrite code to no longer use __guard__ * DS207: Consi...
overleaf/web/test/unit/src/Security/RateLimiterMiddlewareTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Security/RateLimiterMiddlewareTests.js", "repo_id": "overleaf", "token_count": 2893 }
625
const SandboxedModule = require('sandboxed-module') const { expect } = require('chai') const modulePath = '../../../../app/src/Features/Subscription/SubscriptionHelper' const plans = { expensive: { planCode: 'expensive', price: 15, }, cheaper: { planCode: 'cheaper', price: 5, }, alsoCheap: ...
overleaf/web/test/unit/src/Subscription/SubscriptionHelperTests.js/0
{ "file_path": "overleaf/web/test/unit/src/Subscription/SubscriptionHelperTests.js", "repo_id": "overleaf", "token_count": 514 }
626
/* eslint-disable node/handle-callback-err, max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: h...
overleaf/web/test/unit/src/TokenAccess/TokenAccessHandlerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/TokenAccess/TokenAccessHandlerTests.js", "repo_id": "overleaf", "token_count": 9699 }
627
/* eslint-disable max-len, no-return-assign, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate...
overleaf/web/test/unit/src/User/UserInfoControllerTests.js/0
{ "file_path": "overleaf/web/test/unit/src/User/UserInfoControllerTests.js", "repo_id": "overleaf", "token_count": 3164 }
628
const mockModel = require('../MockModel') module.exports = mockModel('DeletedProject', { './Project': require('./Project'), })
overleaf/web/test/unit/src/helpers/models/DeletedProject.js/0
{ "file_path": "overleaf/web/test/unit/src/helpers/models/DeletedProject.js", "repo_id": "overleaf", "token_count": 41 }
629
const { expect } = require('chai') const SandboxedModule = require('sandboxed-module') const MODULE_PATH = '../../../../app/src/infrastructure/Translations.js' describe('Translations', function () { let req, res, translations function runMiddlewares(cb) { translations.i18nMiddleware(req, res, () => { tr...
overleaf/web/test/unit/src/infrastructure/TranslationsTests.js/0
{ "file_path": "overleaf/web/test/unit/src/infrastructure/TranslationsTests.js", "repo_id": "overleaf", "token_count": 1681 }
630
Change: Make settings available in web We upgraded to a new owncloud-sdk version which provides loading settings from the settings service, if available. The settings values are available throughout web and all extensions. https://github.com/owncloud/web/pull/3484
owncloud/web/changelog/0.10.0_2020-05-26/3484-1/0
{ "file_path": "owncloud/web/changelog/0.10.0_2020-05-26/3484-1", "repo_id": "owncloud", "token_count": 63 }
631
Bugfix: Set empty object when resetting current sidebar tab We've changed the argument from `null` to an empty object when resetting the current tab of the sidebar. https://github.com/owncloud/web/issues/3676 https://github.com/owncloud/web/pull/3678
owncloud/web/changelog/0.11.0_2020-06-26/set-empty-object-when-resetting-current-tab/0
{ "file_path": "owncloud/web/changelog/0.11.0_2020-06-26/set-empty-object-when-resetting-current-tab", "repo_id": "owncloud", "token_count": 70 }
632
Change: No file drop if upload is not allowed or no space is left https://github.com/owncloud/web/pull/3677
owncloud/web/changelog/0.12.0_2020-07-10/no-dragndrop-if-upload-not-allowed/0
{ "file_path": "owncloud/web/changelog/0.12.0_2020-07-10/no-dragndrop-if-upload-not-allowed", "repo_id": "owncloud", "token_count": 33 }
633
Enhancement: Add info about number of selected items and their size We've added information about the number of selected items and their size above the files list next to batch actions. https://github.com/owncloud/product/issues/122 https://github.com/owncloud/web/pull/3850
owncloud/web/changelog/0.16.0_2020-08-24/multi-select-info/0
{ "file_path": "owncloud/web/changelog/0.16.0_2020-08-24/multi-select-info", "repo_id": "owncloud", "token_count": 70 }
634
Change: Customizable menu association We now allow the redirect navItems and links into the user menu. This can be done by simply assigning the `"menu": "user"` to the respective navItem. It works for both extensions and external links (`applications` key in config.json). https://github.com/owncloud/web/pull/4133
owncloud/web/changelog/0.19.0_2020-10-06/user-menu.md/0
{ "file_path": "owncloud/web/changelog/0.19.0_2020-10-06/user-menu.md", "repo_id": "owncloud", "token_count": 82 }
635
Bugfix: Make available file actions (more) aware of the page context The list of available file actions sometimes contained actions which should not be possible and sometimes was missing actions that should be possible. Most important examples are that copy/move should not be available on `shared with me` and `shared ...
owncloud/web/changelog/0.25.0_2020-11-16/context-sensitive-actions/0
{ "file_path": "owncloud/web/changelog/0.25.0_2020-11-16/context-sensitive-actions", "repo_id": "owncloud", "token_count": 116 }
636
Change: Use labels to display share info We've changed the way of displaying share information for public links and people. Every information is now displayed in its own label. https://github.com/owncloud/web/pull/4410
owncloud/web/changelog/0.29.0_2020-12-07/share-info-labels/0
{ "file_path": "owncloud/web/changelog/0.29.0_2020-12-07/share-info-labels", "repo_id": "owncloud", "token_count": 53 }
637
Change: Display only items for current extension in sidebar menu We've filtered out nav items in the sidebar menu. Now only items for current extension will be displayed. In case the extension has only one nav item, the sidebar menu is hidden and instead of menu button is displayed the name of extension. https://gith...
owncloud/web/changelog/0.4.0_2020-02-14/2746/0
{ "file_path": "owncloud/web/changelog/0.4.0_2020-02-14/2746", "repo_id": "owncloud", "token_count": 96 }
638
Enhancement: Current user entry in collaborators list in sidebar We've added a new entry into the collaborators list in sidebar which contains current user. https://github.com/owncloud/web/issues/3808 https://github.com/owncloud/web/pull/3060
owncloud/web/changelog/0.5.0_2020-03-02/3808/0
{ "file_path": "owncloud/web/changelog/0.5.0_2020-03-02/3808", "repo_id": "owncloud", "token_count": 65 }
639
Bugfix: Files list status indicators are now appearing without any delay We've stopped loading file list status indicators asynchronously to prevent them from appearing delayed. They appear now at the same time as the file list. https://github.com/owncloud/web/issues/2973 https://github.com/owncloud/web/pull/3213
owncloud/web/changelog/0.7.0_2020-03-30/3213/0
{ "file_path": "owncloud/web/changelog/0.7.0_2020-03-30/3213", "repo_id": "owncloud", "token_count": 82 }
640
Change: update owncloud-sdk Updated owncloud-sdk to v1.0.0-604 https://github.com/owncloud/web/pull/3369
owncloud/web/changelog/0.9.0_2020-04-27/update_owncloud_sdk/0
{ "file_path": "owncloud/web/changelog/0.9.0_2020-04-27/update_owncloud_sdk", "repo_id": "owncloud", "token_count": 42 }
641
Change: Rename confirmation of copy action We've changed the label of the confirmation button in copy view. Instead of "Copy here", we used "Paste here". https://github.com/owncloud/web/pull/4590
owncloud/web/changelog/1.0.1_2021-01-08/copy-action-label/0
{ "file_path": "owncloud/web/changelog/1.0.1_2021-01-08/copy-action-label", "repo_id": "owncloud", "token_count": 54 }
642
Enhancement: Use pre-signed url download for password protected shares Replaced the blob download with a normal download using a pre-signed url provided by the backend. https://github.com/owncloud/core/pull/38376 https://github.com/owncloud/web/pull/4689
owncloud/web/changelog/2.1.0_2021-03-24/enhancement-public-link-download/0
{ "file_path": "owncloud/web/changelog/2.1.0_2021-03-24/enhancement-public-link-download", "repo_id": "owncloud", "token_count": 71 }
643
Bugfix: Improve web container The wrapping `index.html.ejs` had some minor problems with HTML validators which are now fixed. https://github.com/owncloud/web/pull/4942
owncloud/web/changelog/3.1.0_2021-05-12/bugfix-improve-web-container/0
{ "file_path": "owncloud/web/changelog/3.1.0_2021-05-12/bugfix-improve-web-container", "repo_id": "owncloud", "token_count": 49 }
644
Enhancement: Continuously deployed demo instance with latest Web Whenever a commit or merge to master happens, a demo instance with the latest Web build will be deployed. https://github.com/owncloud/web/pull/5145
owncloud/web/changelog/3.2.0_2021-05-31/enhancement-continuously-deployed-demo-instance/0
{ "file_path": "owncloud/web/changelog/3.2.0_2021-05-31/enhancement-continuously-deployed-demo-instance", "repo_id": "owncloud", "token_count": 53 }
645
Bugfix: Translated user menu items Some of the user menu items were not correctly translated, which is now fixed. https://github.com/owncloud/web/pull/5042
owncloud/web/changelog/3.3.0_2021-06-23/bugfix-translated-user-menu-items/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/bugfix-translated-user-menu-items", "repo_id": "owncloud", "token_count": 44 }
646
Enhancement: Focus breadcrumb on route change We now focus the current breadcrumb item when navigating to another page and announce the amount of files and folders in the folder the user has navigated to. https://github.com/owncloud/web/pull/5166
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-focus-breadcrumb-on-route-change/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-focus-breadcrumb-on-route-change", "repo_id": "owncloud", "token_count": 67 }
647
Enhancement: TypeScript Support We have added support for TypeScript and started to refactor parts of the codebase. This will help us provide clearer interfaces and catch bugs earlier. https://github.com/owncloud/web/pull/5194
owncloud/web/changelog/3.3.0_2021-06-23/enhancement-typescript-support/0
{ "file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-typescript-support", "repo_id": "owncloud", "token_count": 58 }
648
Bugfix: Left sidebar visibility in public links We fixed that the left sidebar was showing the navigation items of an authenticated context when visiting a public link as authenticated user. https://github.com/owncloud/web/pull/5602
owncloud/web/changelog/4.0.0_2021-08-04/bugfix-left-sidebar-public-link/0
{ "file_path": "owncloud/web/changelog/4.0.0_2021-08-04/bugfix-left-sidebar-public-link", "repo_id": "owncloud", "token_count": 53 }
649
Bugfix: Handle loading and parsing errors when loading themes Adds graceful error handling of json parse errors when loading custom themes. https://github.com/owncloud/web/pull/5669
owncloud/web/changelog/4.1.0_2021-08-20/bugfix-handle-errors-when-loading-themes/0
{ "file_path": "owncloud/web/changelog/4.1.0_2021-08-20/bugfix-handle-errors-when-loading-themes", "repo_id": "owncloud", "token_count": 44 }
650
Enhancement: Switch filesize calculation base We've switched from base-2 to base-10 when calculating the displayed file-size to align it better with user expectations. https://github.com/owncloud/web/pull/5739
owncloud/web/changelog/4.2.0_2021-09-14/enhancement-switch-filesize-calculation-base/0
{ "file_path": "owncloud/web/changelog/4.2.0_2021-09-14/enhancement-switch-filesize-calculation-base", "repo_id": "owncloud", "token_count": 57 }
651
Enhancement: Accessible, themeable media viewer We have updated the media viewer app to respect theme colors and fulfill accessibility requirements (e.g. keyboard navigation, semantic HTML, font size). https://github.com/owncloud/web/pull/5900
owncloud/web/changelog/4.4.0_2021-10-26/enhancement-accessible-themeable-mediaviewer/0
{ "file_path": "owncloud/web/changelog/4.4.0_2021-10-26/enhancement-accessible-themeable-mediaviewer", "repo_id": "owncloud", "token_count": 63 }
652
Bugfix: Pagination We fixed the pagination as it was slicing the items wrong on pages after the first one. https://github.com/owncloud/web/pull/6056
owncloud/web/changelog/4.6.0_2021-12-07/bugfix-pagination/0
{ "file_path": "owncloud/web/changelog/4.6.0_2021-12-07/bugfix-pagination", "repo_id": "owncloud", "token_count": 44 }
653
Bugfix: Double escaping in progress bar We fixed file names with special chars not being properly displayed in the upload progressbar. https://github.com/owncloud/web/issues/4214 https://github.com/owncloud/web/pull/6131
owncloud/web/changelog/4.7.0_2021-12-16/bugfix-progressbar-escaping/0
{ "file_path": "owncloud/web/changelog/4.7.0_2021-12-16/bugfix-progressbar-escaping", "repo_id": "owncloud", "token_count": 61 }
654
Bugfix: Failed move by drag'n'drop doesn't show the resource name in the error We fixed the error message when moving an item via drag-and-drop failed, now it shows the correct name of the item. https://github.com/owncloud/web/issues/6412
owncloud/web/changelog/5.0.0_2022-02-14/bugfix-error-message-move/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/bugfix-error-message-move", "repo_id": "owncloud", "token_count": 67 }
655
Enhancement: Context Route Params We now add params of the source context route to the query of app routes and convert them back to params when routing back to the origin - this is necessary to properly navigate back from opening files in extensions or in search results, throughout personal, public or, in the futur...
owncloud/web/changelog/5.0.0_2022-02-14/enhancement-context-route-params/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-context-route-params", "repo_id": "owncloud", "token_count": 110 }
656
Enhancement: Update ODS to v12.1.0 We updated the ownCloud Design System to version 12.1.0. Please refer to the full changelog in the ODS release (linked) for more details. Summary: - Change - Drop Internet Explorer support: https://github.com/owncloud/owncloud-design-system/pull/1909 - Change - Do not sort in OcTabl...
owncloud/web/changelog/5.0.0_2022-02-14/enhancement-update-ods/0
{ "file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-update-ods", "repo_id": "owncloud", "token_count": 1249 }
657
Enhancement: Redesign FilesTable We've redesigned the QuickActions visually and updated theming to fit the redesign https://github.com/owncloud/web/issues/6207 https://github.com/owncloud/web/pull/6450
owncloud/web/changelog/5.2.0_2022-03-03/enhancement-redesign-filestable/0
{ "file_path": "owncloud/web/changelog/5.2.0_2022-03-03/enhancement-redesign-filestable", "repo_id": "owncloud", "token_count": 62 }
658
Bugfix: Natural sort order We've fixed the sort order to respect natural sorting again. Also used the chance to make use of `Intl.Collator` instead of `localeCompare` which is considered to be a performance improvement. https://github.com/owncloud/web/issues/6532 https://github.com/owncloud/web/pull/6632
owncloud/web/changelog/5.3.0_2022-03-23/bugfix-sort-order/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/bugfix-sort-order", "repo_id": "owncloud", "token_count": 85 }
659
Enhancement: Resolve private links into folders instead of parent Private links always resolved into the parent folder of the linked file and visually highlighted the file or folder from the link. We've changed this behaviour to directly navigate into the folder in case the linked resource is a folder and only keep th...
owncloud/web/changelog/5.3.0_2022-03-23/enhancement-private-link-routing/0
{ "file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-private-link-routing", "repo_id": "owncloud", "token_count": 106 }
660
Bugfix: AppBar ViewOptions alignment We have fixed a visual glitch that rendered the ViewOptions in the AppBar on the left side instead of right-aligned if no Breadcrumbs or SharesNavigation is present. https://github.com/owncloud/web/pull/6662 https://github.com/owncloud/web/issues/6685
owncloud/web/changelog/5.4.0_2022-04-11/bugfix-appbar-viewoptions-alignment/0
{ "file_path": "owncloud/web/changelog/5.4.0_2022-04-11/bugfix-appbar-viewoptions-alignment", "repo_id": "owncloud", "token_count": 80 }
661
Enhancement: Remove public links from SharedWithOthers page We've removed links from the shared-with-others page as those belong in the `Shared via link` page (and already exist there). https://github.com/owncloud/web/issues/5976 https://github.com/owncloud/web/pull/6612
owncloud/web/changelog/5.4.0_2022-04-11/enhancement-remove-links-shared-with-others/0
{ "file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-remove-links-shared-with-others", "repo_id": "owncloud", "token_count": 79 }
662
Bugfix: Decrease build time and fix faulty oc10 docker dev env We've fixed a bug where build times increased on every file change in dev mode, it also fixes the faulty file sync during docker development for oc10. https://github.com/owncloud/web/pull/6855
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-build-time/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-build-time", "repo_id": "owncloud", "token_count": 69 }
663
Bugfix: Respect quota definition of none/unlimited We have fixed an UI glitch where the UI stopped working if the backend reports a unlimited storage quota. https://github.com/owncloud/web/pull/6923 https://github.com/owncloud/web/issues/6913 https://github.com/owncloud/web/pull/7044
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-respect-unlimited-quota/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-respect-unlimited-quota", "repo_id": "owncloud", "token_count": 83 }
664
Bugfix: Upload meta data serialization We've fixed a bug where meta properties of uploading resources could not be serialized, resulting in unnecessary network requests. https://github.com/owncloud/web/pull/6846 https://github.com/owncloud/web/issues/6819
owncloud/web/changelog/5.5.0_2022-06-20/bugfix-upload-meta-serialization/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-upload-meta-serialization", "repo_id": "owncloud", "token_count": 67 }
665
Enhancement: Make contexthelpers opt-out The contextual helpers needed to actively be enabled in the configuration. We have now enabled them by default and admins can disable them using the configuration. https://github.com/owncloud/web/pull/6750#issuecomment-1143753289
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-enable-contexthelpers-default/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-enable-contexthelpers-default", "repo_id": "owncloud", "token_count": 69 }
666
Enhancement: Refactor upload input components We've refactored the upload input components for files and folders into one component. https://github.com/owncloud/web/pull/6859 https://github.com/owncloud/web/issues/6819
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-refactor-upload-inputs/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-refactor-upload-inputs", "repo_id": "owncloud", "token_count": 62 }
667
Enhancement: Clickable folder links in upload overlay Uploaded folders can now be clicked in the upload overlay, which navigates the user to the clicked folder. https://github.com/owncloud/web/pull/7109 https://github.com/owncloud/web/issues/7102
owncloud/web/changelog/5.5.0_2022-06-20/enhancement-upload-overlay-folder-links/0
{ "file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-upload-overlay-folder-links", "repo_id": "owncloud", "token_count": 69 }
668
Bugfix: Prevent error when pasting with empty clipboard We've fixed a bug where an error was thrown when pasting with empty clipboard https://github.com/owncloud/web/pull/7214 https://github.com/owncloud/web/issues/7146
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-error-when-pasting-empty-clipboard/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-error-when-pasting-empty-clipboard", "repo_id": "owncloud", "token_count": 63 }
669
Bugfix: Loading state in views We fixed a small glitch in views of the files app, where the view would show a state like "Resource not found" in the brief moment before the resource loading started. Now the views correctly start in a loading state. https://github.com/owncloud/web/pull/7325 https://github.com/owncloud...
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-loading-state-in-views/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-loading-state-in-views", "repo_id": "owncloud", "token_count": 88 }
670
Bugfix: Re-fetch quota We've fixed a bug where uploading, deleting or restoring resources doesn't always re-fetch the quota and therefore was falsy displayed. https://github.com/owncloud/web/pull/7415 https://github.com/owncloud/web/issues/6930 https://github.com/owncloud/web/issues/7389
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-re-fetch-quota/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-re-fetch-quota", "repo_id": "owncloud", "token_count": 89 }
671
Bugfix: Add storage ID when navigating to a shared parent directory We've added the missing storage ID when navigating to a shared parent directory. https://github.com/owncloud/web/pull/7396
owncloud/web/changelog/5.7.0_2022-09-09/bugfix-storage-id-shared-parent-directory/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-storage-id-shared-parent-directory", "repo_id": "owncloud", "token_count": 48 }
672
Enhancement: Change file loading mechanism in `preview` app Make preview loading mechanism from the `files` app available for all apps and use it in `preview` app. *DEPRECATION*: This deprecates `v-image-source` directive and the `mediaSource` method mixed into all components. It will be removed in 6.0.0. https://gi...
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-change-loading-in-preview-app/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-change-loading-in-preview-app", "repo_id": "owncloud", "token_count": 116 }
673
Enhancement: Replace locationpicker with clipboard actions We've replaced the locationpicker in batchactions and contextmenu with the new cut/copy/paste clipboard actions. https://github.com/owncloud/web/pull/7309 https://github.com/owncloud/web/pull/7503 https://github.com/owncloud/web/issues/6892
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-replace-locationpicker-clipboard/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-replace-locationpicker-clipboard", "repo_id": "owncloud", "token_count": 88 }
674
Enhancement: User management app edit quota We've added the possibility to change user's quota in the user management app. https://github.com/owncloud/web/pull/7182 https://github.com/owncloud/web/pull/7530 https://github.com/owncloud/web/pull/7538 https://github.com/owncloud/web/issues/7059
owncloud/web/changelog/5.7.0_2022-09-09/enhancement-user-management-edit-quota/0
{ "file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-user-management-edit-quota", "repo_id": "owncloud", "token_count": 93 }
675
Bugfix: Hide search bar in public link context The search bar in a public link context has been hidden because it requires authentication. https://github.com/owncloud/web/issues/7603 https://github.com/owncloud/web/pull/7849
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-hide-search-bar-in-public-links/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-hide-search-bar-in-public-links", "repo_id": "owncloud", "token_count": 62 }
676
Bugfix: Routing for re-shares We've fixed a bug where routing into re-shares and their parent folders from the "Shared with others/via link" page was broken. https://github.com/owncloud/web/pull/7771 https://github.com/owncloud/web/pull/7790 https://github.com/owncloud/web/issues/7347
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-routing-for-re-shares/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-routing-for-re-shares", "repo_id": "owncloud", "token_count": 93 }
677
Bugfix: Upload modify time We've included the `x-oc-mtime` header in upload requests to tell the backend the proper modify date of uploaded resources. https://github.com/owncloud/web/pull/7630 https://github.com/owncloud/web/pull/7641 https://github.com/owncloud/web/issues/7628
owncloud/web/changelog/6.0.0_2022-11-29/bugfix-upload-modify-time/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-upload-modify-time", "repo_id": "owncloud", "token_count": 86 }
678
Enhancement: Friendlier logout screen We have updated the message and layout of the logout screen to make it a more pleasant user experience. https://github.com/owncloud/web/pull/7747 https://github.com/owncloud/web/issues/7744
owncloud/web/changelog/6.0.0_2022-11-29/enhancement-friendlier-logout-screen/0
{ "file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-friendlier-logout-screen", "repo_id": "owncloud", "token_count": 66 }
679
Bugfix: Archiver in protected public links Downloading multiple resources as archive in protected public links has been fixed. https://github.com/owncloud/web/issues/6423 https://github.com/owncloud/web/pull/8466
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-archiver-public-link/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-archiver-public-link", "repo_id": "owncloud", "token_count": 59 }
680
Bugfix: Include spaces in the list info Spaces have been included in the list info below file lists that support displaying spaces. https://github.com/owncloud/web/pull/7926 https://github.com/owncloud/web/issues/7924
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-include-spaces-in-list-info/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-include-spaces-in-list-info", "repo_id": "owncloud", "token_count": 62 }
681
Bugfix: "Paste"-action without write permissions The "Paste"-action is now disabled in read-only folders/shares. https://github.com/owncloud/web/pull/7925 https://github.com/owncloud/web/issues/7922
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-paste-without-write-permissions/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-paste-without-write-permissions", "repo_id": "owncloud", "token_count": 65 }
682
Bugfix: Selection reset on action click Clicking a file action from the context menu doesn't reset the selection anymore. https://github.com/owncloud/web/issues/8776 https://github.com/owncloud/web/pull/8777
owncloud/web/changelog/7.0.0_2023-06-02/bugfix-selection-reset-on-action-click/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-selection-reset-on-action-click", "repo_id": "owncloud", "token_count": 60 }
683
Change: Configurable extension autosave We have added a global setting in the configuration to enable autosave (and the corresponding timeout) for bundled and external extensions, instead of having a per-extension configuration which was limited to external extensions. Handling of the provided autosave needs to be tak...
owncloud/web/changelog/7.0.0_2023-06-02/change-configurable-extension-autosave/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/change-configurable-extension-autosave", "repo_id": "owncloud", "token_count": 120 }
684
Enhancement: Admin settings general section We've introduced the general section in the admin settings app, which displays information about the running front- and backend. https://github.com/owncloud/web/issues/8363 https://github.com/owncloud/web/pull/8360
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-admin-settings-general-section/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-admin-settings-general-section", "repo_id": "owncloud", "token_count": 68 }
685
Enhancement: Custom translations We have added the possibility to include own translations to override existing translations. To inject custom translations add the following property to your `config.json`, `"customTranslations": [{ "url": "https://localhost:9200/translations.json" }]`. https://github.com/owncloud/web...
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-custom-translations/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-custom-translations", "repo_id": "owncloud", "token_count": 100 }
686
Enhancement: Rework mobile navigation The navigation for mobile devices <640px has been reworked. https://github.com/owncloud/web/issues/8557 https://github.com/owncloud/web/issues/7253 https://github.com/owncloud/web/issues/3774 https://github.com/owncloud/web/issues/9073 https://github.com/owncloud/web/pull/8757 ht...
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-mobile-navigation/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-mobile-navigation", "repo_id": "owncloud", "token_count": 123 }
687
Enhancement: Rename "user management" app The "user management" app has been renamed to "admin settings" because the app will contain a variety of general settings in the future. https://github.com/owncloud/web/pull/8175
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-rename-user-management/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-rename-user-management", "repo_id": "owncloud", "token_count": 59 }
688
Enhancement: Add support for multiple clients in `theme.json` The `theme.json` file now supports multiple clients which are defined via the top-level property. Therefore both web themes have been moved down one level into the new property "web". The change is backwards compatible though, meaning it still works when th...
owncloud/web/changelog/7.0.0_2023-06-02/enhancement-support-multiple-clients-in-theme-json/0
{ "file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-support-multiple-clients-in-theme-json", "repo_id": "owncloud", "token_count": 116 }
689
Bugfix: Favorites list update on removal The Favorites list is now updating when a resource is removed from the list in this view https://github.com/owncloud/web/pull/9078 https://github.com/owncloud/web/pull/9237
owncloud/web/changelog/7.1.0_2023-08-23/bugfix-favorites-list-update-on-removal/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/bugfix-favorites-list-update-on-removal", "repo_id": "owncloud", "token_count": 64 }
690
Enhancement: Allow local storage for auth token We've introduced a new env var WEB_OPTION_TOKEN_STORAGE_LOCAL, when set to true(default), the auth token will be stored in the browser's local storage instead the session storage, this will effect in a persisted login state across multiple browser tabs. https://github.c...
owncloud/web/changelog/7.1.0_2023-08-23/enhancement-allow-local-storage-for-auth-token/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-allow-local-storage-for-auth-token", "repo_id": "owncloud", "token_count": 108 }
691
Enhancement: Respect archiver limits The archiver service announces a limit for the accumulated filesize of the currently selected resources. The web UI now respects those limits and shows a disabled download button once the limit has been reached. https://github.com/owncloud/web/pull/9055 https://github.com/ownclou...
owncloud/web/changelog/7.1.0_2023-08-23/enhancement-respect-archiver-limits/0
{ "file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-respect-archiver-limits", "repo_id": "owncloud", "token_count": 84 }
692
Bugfix: Respect "details"-query on private links The "details"-query on private links is now being respected properly when `openLinksWithDefaultApp` is enabled. This fixed an issue where the sidebar would not open despite requesting to do so. https://github.com/owncloud/web/issues/9868 https://github.com/owncloud/web...
owncloud/web/changelog/7.1.2_2023-11-16/bugfix-respect-details-query/0
{ "file_path": "owncloud/web/changelog/7.1.2_2023-11-16/bugfix-respect-details-query", "repo_id": "owncloud", "token_count": 87 }
693
Bugfix: Icon extension mapping We have simplified the mapping between file extensions and their display in the web UI (icon and its color). Now, further formats/extensions (`.tar.gz`,`.tar.xz`,`.bz2`, ...) get displayed correctly. https://github.com/owncloud/web/issues/10031 https://github.com/owncloud/web/pull/10059...
owncloud/web/changelog/8.0.0_2024-03-08/bugfix-icon-extension-mapping/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-icon-extension-mapping", "repo_id": "owncloud", "token_count": 94 }
694
Bugfix: Scrollable account page Vertically scrolling the account page has been fixed and works now. https://github.com/owncloud/web/pull/10318 https://github.com/owncloud/web/issues/10313
owncloud/web/changelog/8.0.0_2024-03-08/bugfix-scrollable-account-page/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-scrollable-account-page", "repo_id": "owncloud", "token_count": 56 }
695
Change: Keyword Query Language (KQL) search syntax We've introduced [KQL](https://learn.microsoft.com/en-us/sharepoint/dev/general-development/keyword-query-language-kql-syntax-reference) as our default query language. Previously we used our own simple language for queries which is now replaced by kql. `sample.tx* Ta...
owncloud/web/changelog/8.0.0_2024-03-08/change-kql-search-query-language/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/change-kql-search-query-language", "repo_id": "owncloud", "token_count": 350 }
696
Enhancement: Default link permission When creating a new link, Web now respects the default permissions coming from the server. https://github.com/owncloud/web/pull/10037 https://github.com/owncloud/web/issues/9919
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-default-link-permissions/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-default-link-permissions", "repo_id": "owncloud", "token_count": 60 }
697
Enhancement: Indicate processing state If a file has been just recently uploaded, it might go trough a processing state (e.G virus scan). If so, no actions on this resource is possible, therefore we show now the processing state and make the temporary restrictions clear to the user. https://github.com/owncloud/web/pu...
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-indicate-processig-state/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-indicate-processig-state", "repo_id": "owncloud", "token_count": 145 }
698
Enhancement: Moving share's "set expiration date" function Moving "set expiration date" function to a three dots menu to help reduce visual load on simple shares in sharing pane https://github.com/owncloud/web/pull/9584 https://github.com/owncloud/web/pull/9612 https://github.com/owncloud/web/issues/9493
owncloud/web/changelog/8.0.0_2024-03-08/enhancement-set-expiration-date-in-three-dots-menu/0
{ "file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-set-expiration-date-in-three-dots-menu", "repo_id": "owncloud", "token_count": 87 }
699