text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
const { expect } = require('chai')
const SandboxedModule = require('sandboxed-module')
const modulePath = require('path').join(
__dirname,
'../../../../app/src/Features/Helpers/FeatureFlag'
)
describe('FeatureFlag', function () {
beforeEach(function () {
this.FeatureFlag = SandboxedModule.require(modulePath,... | overleaf/web/test/unit/src/HelperFiles/FeatureFlagTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/HelperFiles/FeatureFlagTests.js",
"repo_id": "overleaf",
"token_count": 663
} | 559 |
const { expect } = require('chai')
const sinon = require('sinon')
const SandboxedModule = require('sandboxed-module')
const MODULE_PATH = '../../../../app/src/Features/Newsletter/NewsletterManager'
describe('NewsletterManager', function () {
beforeEach('setup mocks', function () {
this.Settings = {
mailch... | overleaf/web/test/unit/src/Newsletter/NewsletterManagerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Newsletter/NewsletterManagerTests.js",
"repo_id": "overleaf",
"token_count": 2421
} | 560 |
/* 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
* DS205: Consider reworking c... | overleaf/web/test/unit/src/Project/ProjectEntityHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Project/ProjectEntityHandlerTests.js",
"repo_id": "overleaf",
"token_count": 5005
} | 561 |
const SandboxedModule = require('sandboxed-module')
const { expect } = require('chai')
const sinon = require('sinon')
const modulePath = require('path').join(
__dirname,
'../../../../app/src/Features/Referal/ReferalHandler.js'
)
describe('Referal handler', function () {
beforeEach(function () {
this.User = {... | overleaf/web/test/unit/src/Referal/ReferalHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Referal/ReferalHandlerTests.js",
"repo_id": "overleaf",
"token_count": 1197
} | 562 |
const SandboxedModule = require('sandboxed-module')
const sinon = require('sinon')
const modulePath =
'../../../../app/src/Features/Subscription/RecurlyEventHandler'
describe('RecurlyEventHandler', function () {
beforeEach(function () {
this.userId = '123456789abcde'
this.planCode = 'collaborator-annual'
... | overleaf/web/test/unit/src/Subscription/RecurlyEventHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Subscription/RecurlyEventHandlerTests.js",
"repo_id": "overleaf",
"token_count": 3633
} | 563 |
/* 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/Templates/TemplatesManagerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Templates/TemplatesManagerTests.js",
"repo_id": "overleaf",
"token_count": 3040
} | 564 |
const SandboxedModule = require('sandboxed-module')
const sinon = require('sinon')
const { assert } = require('chai')
const modulePath = '../../../../app/src/Features/User/UserCreator.js'
describe('UserCreator', function () {
beforeEach(function () {
const self = this
this.user = { _id: '12390i', ace: {} }
... | overleaf/web/test/unit/src/User/UserCreatorTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/User/UserCreatorTests.js",
"repo_id": "overleaf",
"token_count": 4978
} | 565 |
/* eslint-disable
node/handle-callback-err,
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
* Full docs: https://github.com/de... | overleaf/web/test/unit/src/UserMembership/UserMembershipsHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/UserMembership/UserMembershipsHandlerTests.js",
"repo_id": "overleaf",
"token_count": 868
} | 566 |
const SandboxedModule = require('sandboxed-module')
const assert = require('assert')
const path = require('path')
const sinon = require('sinon')
const { expect } = require('chai')
const modulePath = path.join(
__dirname,
'../../../../app/src/infrastructure/GeoIpLookup'
)
describe('GeoIpLookup', function () {
bef... | overleaf/web/test/unit/src/infrastructure/GeoIpLookupTest.js/0 | {
"file_path": "overleaf/web/test/unit/src/infrastructure/GeoIpLookupTest.js",
"repo_id": "overleaf",
"token_count": 4228
} | 567 |
node_modules
apps/*/node_modules
| owncloud/web/.dockerignore/0 | {
"file_path": "owncloud/web/.dockerignore",
"repo_id": "owncloud",
"token_count": 11
} | 568 |
SHELL := /bin/bash
PNPM := $(shell command -v pnpm 2> /dev/null)
ifndef PNPM
$(error pnpm is not available on your system, please install npm)
endif
app_name=web
cur_dir=$(CURDIR)
dist_dir=$(CURDIR)/dist
third_party_licenses_dir=$(CURDIR)/third-party-licenses
occ=$(CURDIR)/../../occ
private_key=$(HOME)/.owncloud... | owncloud/web/Makefile.release/0 | {
"file_path": "owncloud/web/Makefile.release",
"repo_id": "owncloud",
"token_count": 662
} | 569 |
Enhancement: Load and display quick actions
We've added an extension point into files apps for quick actions.
By creating and exporting an object called quickActions, developers can define an action which will be then displayed in the files list.
https://github.com/owncloud/web/pull/3573
| owncloud/web/changelog/0.11.0_2020-06-26/load-and-display-quick-actions/0 | {
"file_path": "owncloud/web/changelog/0.11.0_2020-06-26/load-and-display-quick-actions",
"repo_id": "owncloud",
"token_count": 69
} | 570 |
Enhancement: Add ability to copy files and folders into a different location
We've added copy action to the files list. The copy action is executed via a new page called location picker.
https://github.com/owncloud/product/issues/102
https://github.com/owncloud/product/issues/108
https://github.com/owncloud/web/pull/... | owncloud/web/changelog/0.12.0_2020-07-10/copy/0 | {
"file_path": "owncloud/web/changelog/0.12.0_2020-07-10/copy",
"repo_id": "owncloud",
"token_count": 88
} | 571 |
Change: Move quota indication to the left sidebar
We've moved the quota indication from the bottom of the files list to the footer of the left sidebar.
https://github.com/owncloud/product/issues/121
https://github.com/owncloud/web/pull/3849 | owncloud/web/changelog/0.14.0_2020-08-17/quota-in-sidebar/0 | {
"file_path": "owncloud/web/changelog/0.14.0_2020-08-17/quota-in-sidebar",
"repo_id": "owncloud",
"token_count": 65
} | 572 |
Change: Moved bottom actions menu into actions dropdown
We've removed the bottom file actions menu and moved all actions into the actions dropdown in the files list.
https://github.com/owncloud/product/issues/234
https://github.com/owncloud/web/pull/4076
| owncloud/web/changelog/0.17.0_2020-09-25/remove-actions-menu/0 | {
"file_path": "owncloud/web/changelog/0.17.0_2020-09-25/remove-actions-menu",
"repo_id": "owncloud",
"token_count": 68
} | 573 |
Change: Attach share permission to roles
We've attached the share permission of collaborators to roles. There is no longer a share additional permission.
https://github.com/owncloud/web/pull/4216
| owncloud/web/changelog/0.22.0_2020-10-26/share-permission/0 | {
"file_path": "owncloud/web/changelog/0.22.0_2020-10-26/share-permission",
"repo_id": "owncloud",
"token_count": 48
} | 574 |
Change: Load extensions config
We've started loading the config of extensions which can now be defined as an object in the `external_apps` in the config.json.
https://github.com/owncloud/web/pull/4380
| owncloud/web/changelog/0.27.0_2020-11-24/editor-handler/0 | {
"file_path": "owncloud/web/changelog/0.27.0_2020-11-24/editor-handler",
"repo_id": "owncloud",
"token_count": 54
} | 575 |
Change: Adjusted labels in files list
Renamed "Modification time" to "Updated" to make it look less technical.
Replace "Create new" with "New" in the "New" menu as it makes it look less cluttered when trying to spot a matching entry.
https://github.com/owncloud/web/pull/2902
https://github.com/owncloud/web/pull/2905
| owncloud/web/changelog/0.3.0_2020-01-31/2902/0 | {
"file_path": "owncloud/web/changelog/0.3.0_2020-01-31/2902",
"repo_id": "owncloud",
"token_count": 94
} | 576 |
Enhancement: Display decimals in resource size column only for MBs or higher
We've stopped displaying decimals in resource size column for sizes smaller than 1 MB.
We've also started displaying only one decimal.
https://github.com/owncloud/web/issues/2986
https://github.com/owncloud/web/pull/3051
| owncloud/web/changelog/0.5.0_2020-03-02/2986/0 | {
"file_path": "owncloud/web/changelog/0.5.0_2020-03-02/2986",
"repo_id": "owncloud",
"token_count": 82
} | 577 |
Bugfix: Use end of the day in expiration date
We've changed the expiration date field in the collaborators list to the end of the day.
https://github.com/owncloud/web/pull/3158
| owncloud/web/changelog/0.6.0_2020-03-16/3158/0 | {
"file_path": "owncloud/web/changelog/0.6.0_2020-03-16/3158",
"repo_id": "owncloud",
"token_count": 49
} | 578 |
Bugfix: Remove deleted files from search result
Deleted file has been removed from filesSearched state by adding a new mutation.
Also, filter condition in remove file mutations has been changed from object reference to unique file id.
https://github.com/owncloud/web/pull/3266
https://github.com/owncloud/web/issues/30... | owncloud/web/changelog/0.9.0_2020-04-27/3266/0 | {
"file_path": "owncloud/web/changelog/0.9.0_2020-04-27/3266",
"repo_id": "owncloud",
"token_count": 99
} | 579 |
Bugfix: fix navigation rendering
- ADD_NAV_ITEM mutation now gets copied instead of referenced to trigger a state change.
- applicationsList navItem item needs a copy instead of mutating the base item
- check for route.path instead of route name in ADD_NAV_ITEM which can change over time
https://github.com/ownclou... | owncloud/web/changelog/1.0.0_2020-12-16/fix-navigation-rendering/0 | {
"file_path": "owncloud/web/changelog/1.0.0_2020-12-16/fix-navigation-rendering",
"repo_id": "owncloud",
"token_count": 126
} | 580 |
Change: Suppress redirect error during authorization
We've suppressed the error appearing in the console which warned about redirect happening after the oidc callback page.
This error is being shown because after the oidc callback has successfully processed the authorization request we are redirecting to the `/` path ... | owncloud/web/changelog/2.0.2_2021-03-08/surpress-redirect-error/0 | {
"file_path": "owncloud/web/changelog/2.0.2_2021-03-08/surpress-redirect-error",
"repo_id": "owncloud",
"token_count": 148
} | 581 |
Enhancement: Implement live region updates on route changes
https://github.com/owncloud/web/pull/4812
https://github.com/owncloud/web/issues/4346
| owncloud/web/changelog/3.0.0_2021-04-21/enhancement-live-region-updates/0 | {
"file_path": "owncloud/web/changelog/3.0.0_2021-04-21/enhancement-live-region-updates",
"repo_id": "owncloud",
"token_count": 45
} | 582 |
Enhancement: Use list for displaying added people
We've changed the HTML elements in the people accordion when adding new people.
People added via people autocomplete are now displayed in a list element to use correct structure for screen readers.
https://github.com/owncloud/web/pull/4915 | owncloud/web/changelog/3.1.0_2021-05-12/enhancement-people-list/0 | {
"file_path": "owncloud/web/changelog/3.1.0_2021-05-12/enhancement-people-list",
"repo_id": "owncloud",
"token_count": 68
} | 583 |
Bugfix: Add index route for the OC10 integration
Added an index route for the OC10 integration which gets called when opening http://your-server/index.php/apps/web.
The route basically redirects to the same URL while appending /index.html, as this is the correct URL for
accessing the Web UI. Setting Web as default lay... | owncloud/web/changelog/3.3.0_2021-06-23/bugfix-oc10-index-route/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/bugfix-oc10-index-route",
"repo_id": "owncloud",
"token_count": 121
} | 584 |
Enhancement: Update owncloud Design System to v7.1.2
- Lots of updates regarding accessibility topics
- Removal of home icon in breadcrumbs, changed to "All files" link as breadcrumb root
- Added aria-labels to all landmarks in sidebar and proper logo-alt attribute to image in sidebar
https://github.com/owncloud/web/... | owncloud/web/changelog/3.3.0_2021-06-23/enhancement-bump-ods-version/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-bump-ods-version",
"repo_id": "owncloud",
"token_count": 153
} | 585 |
Enhancement: Remove autoclose on notifications
The autoclose is now being handled in the design system component. The timeout can be set via property.
https://github.com/owncloud/web/pull/5040
| owncloud/web/changelog/3.3.0_2021-06-23/enhancement-remove-notification-autoclose/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-remove-notification-autoclose",
"repo_id": "owncloud",
"token_count": 52
} | 586 |
Enhancement: Feedback link
We've added a feedback link in the topbar which opens a survey in a new tab. The intention is to gather feedback from users. There is a config option to disable the link (see docs "getting started").
https://github.com/owncloud/web/pull/5468
| owncloud/web/changelog/3.4.0_2021-07-09/enhancement-feedback-link/0 | {
"file_path": "owncloud/web/changelog/3.4.0_2021-07-09/enhancement-feedback-link",
"repo_id": "owncloud",
"token_count": 70
} | 587 |
Enhancement: load only opened panels
Do not load panels in the Files extension sidebar until they are opened.
https://github.com/owncloud/web/issues/5569
https://github.com/owncloud/web/pull/5573 | owncloud/web/changelog/4.0.0_2021-08-04/enhancement-load-only-opened-panels/0 | {
"file_path": "owncloud/web/changelog/4.0.0_2021-08-04/enhancement-load-only-opened-panels",
"repo_id": "owncloud",
"token_count": 57
} | 588 |
Enhancement: Add robots.txt file
Added a robots.txt for ocis-web
https://github.com/owncloud/web/pull/5762
| owncloud/web/changelog/4.2.0_2021-09-14/enhancement-add-robots-file/0 | {
"file_path": "owncloud/web/changelog/4.2.0_2021-09-14/enhancement-add-robots-file",
"repo_id": "owncloud",
"token_count": 40
} | 589 |
Bugfix: Fix duplicated event subscriptions
In some cases it happened that subscriptions to certain topics happened multiple times.
This is problematic in cases where it should happen only once, for example loading a resource which can result in multiple requests and a overlapping state.
This is fixes by introducing t... | owncloud/web/changelog/4.4.0_2021-10-26/bugfix-duplicated-event-subscriptions/0 | {
"file_path": "owncloud/web/changelog/4.4.0_2021-10-26/bugfix-duplicated-event-subscriptions",
"repo_id": "owncloud",
"token_count": 114
} | 590 |
Enhancement: Rename `_chunks` folder to `chunks`
We've renamed the `_chunks` folder to `chunks` in the ownCloud Web build output in order to make it more easily embedable with the Go embed directive.
https://github.com/owncloud/web/pull/5988
| owncloud/web/changelog/4.5.0_2021-11-16/enhancement-chunks-folder/0 | {
"file_path": "owncloud/web/changelog/4.5.0_2021-11-16/enhancement-chunks-folder",
"repo_id": "owncloud",
"token_count": 74
} | 591 |
Bugfix: Hidden files hidden by default
Hide hidden files (files started with ".") by default, similar to oc10
https://github.com/owncloud/web/pull/5985
| owncloud/web/changelog/4.7.0_2021-12-16/bugfix-hide-files-by-default/0 | {
"file_path": "owncloud/web/changelog/4.7.0_2021-12-16/bugfix-hide-files-by-default",
"repo_id": "owncloud",
"token_count": 45
} | 592 |
Bugfix: Sort before pagination
We've extracted the sorting logic from the [OcTable component](https://owncloud.design/#/oC%20Components/OcTable) and moved it to the data preprocessing steps in web. This way we won't sort the current page anymore, but sort the whole data of the current folder and then only show the cur... | owncloud/web/changelog/4.8.0_2021-12-22/bugfix-sort-before-pagination/0 | {
"file_path": "owncloud/web/changelog/4.8.0_2021-12-22/bugfix-sort-before-pagination",
"repo_id": "owncloud",
"token_count": 120
} | 593 |
Change: Rename theme logo sidebar to topbar
With the redesign, the theme-able logo has moved from the sidebar to the topbar.
Accordingly, within a theme, the key for it has been renamed from `sidebar` to `topbar`.
https://github.com/owncloud/web/pull/6349
https://github.com/owncloud/web/pull/6386
| owncloud/web/changelog/5.0.0_2022-02-14/change-theme-logo/0 | {
"file_path": "owncloud/web/changelog/5.0.0_2022-02-14/change-theme-logo",
"repo_id": "owncloud",
"token_count": 90
} | 594 |
Enhancement: Redesign main layout
We've started to implement the redesign by adjusting the sidebar,
topbar and appswitcher.
While doing so, we also removed the `vue2-touch-events` dependency.
https://github.com/owncloud/web/issues/6036
https://github.com/owncloud/web/pull/6086
https://github.com/owncloud/web/pull/622... | owncloud/web/changelog/5.0.0_2022-02-14/enhancement-redesign-main-layout/0 | {
"file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-redesign-main-layout",
"repo_id": "owncloud",
"token_count": 181
} | 595 |
Bugfix: Update file list when creating new files
We update the file list now when creating a file in an editor that openes in a new tab (like draw.io).
https://github.com/owncloud/web/issues/5530
https://github.com/owncloud/web/pull/6358
| owncloud/web/changelog/5.2.0_2022-03-03/bugfix-update-file-list-on-new-file/0 | {
"file_path": "owncloud/web/changelog/5.2.0_2022-03-03/bugfix-update-file-list-on-new-file",
"repo_id": "owncloud",
"token_count": 72
} | 596 |
Bugfix: Show no auth popup on password protected public links in ownCloud 10
We fixed a native browser auth popup erroneously being shown for password protected public links with ownCloud 10.
https://github.com/owncloud/web/pull/6530
https://github.com/owncloud/owncloud-sdk/pull/1020
https://github.com/owncloud/web/i... | owncloud/web/changelog/5.3.0_2022-03-23/bugfix-no-auth-popup-on-password-protected-public-links/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/bugfix-no-auth-popup-on-password-protected-public-links",
"repo_id": "owncloud",
"token_count": 93
} | 597 |
Enhancement: Internet Explorer deprecation warning banner
We've removed some internal checks for the internet explorer browser since it's not officially supported anymore
in favor of a warning banner that informs the user that the web app may not work properly if they use it with IE.
https://github.com/owncloud/web/... | owncloud/web/changelog/5.3.0_2022-03-23/enhancement-internet-explorer-warning-banner/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-internet-explorer-warning-banner",
"repo_id": "owncloud",
"token_count": 76
} | 598 |
Enhancement: Implement people sharing for resources within a space
Resources within a space can now be shared with other people.
https://github.com/owncloud/web/pull/6577
https://github.com/owncloud/web/issues/6283
| owncloud/web/changelog/5.3.0_2022-03-23/enhancement-spaces-sharing-within-space/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-spaces-sharing-within-space",
"repo_id": "owncloud",
"token_count": 60
} | 599 |
Enhancement: Make some UI elements/actions optional
Make renaming a share, permanently deleting files and showing the custom permissions role optional via capabilities.
By default, all of these options are enabled/showed.
Capabilities:
* capabilities.files_sharing.can_rename
* capabilities.files.permanent_deletion
* ... | owncloud/web/changelog/5.4.0_2022-04-11/enhancement-optional-ui-elements/0 | {
"file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-optional-ui-elements",
"repo_id": "owncloud",
"token_count": 120
} | 600 |
Enhancement: Unified shares sidebar panel
We've merged the "people" and "link" shares sidebar panels to give users a clearer idea of who has access to a resource.
https://github.com/owncloud/web/pull/6701
https://github.com/owncloud/web/issues/6621
| owncloud/web/changelog/5.4.0_2022-04-11/enhancement-unify-shares-sidebar-panel/0 | {
"file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-unify-shares-sidebar-panel",
"repo_id": "owncloud",
"token_count": 72
} | 601 |
Bugfix: Remove private links from share notifications
We've removed private links from share notifications because those were not working and also not needed.
https://github.com/owncloud/web/pull/6955
https://github.com/owncloud/web/issues/5227
| owncloud/web/changelog/5.5.0_2022-06-20/bugfix-remove-links-from-share-notifications/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-remove-links-from-share-notifications",
"repo_id": "owncloud",
"token_count": 63
} | 602 |
Bugfix: Cover image and readme in spaces
The URL construction for cover image and readme of a space was wrong and led to both not being shown. This has been fixed by making the URL construction more reliable regarding different ID formats.
https://github.com/owncloud/web/pull/7017
| owncloud/web/changelog/5.5.0_2022-06-20/bugfix-space-special-files/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-space-special-files",
"repo_id": "owncloud",
"token_count": 68
} | 603 |
Enhancement: Capability-based searchbar rendering
We have removed the `hideSearchBar` configuration option and now always render a searchbar
if the backend announces the availability of search functionality using its capabilities.
https://github.com/owncloud/web/pull/6856
https://github.com/owncloud/web/issues/6806
| owncloud/web/changelog/5.5.0_2022-06-20/enhancement-capability-based-searchbar/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-capability-based-searchbar",
"repo_id": "owncloud",
"token_count": 80
} | 604 |
Enhancement: Use new WebDAV endpoints for uploads
We now use the new WebDAV endpoints for uploads when spaces are enabled.
https://github.com/owncloud/web/issues/6970
https://github.com/owncloud/web/pull/6991
| owncloud/web/changelog/5.5.0_2022-06-20/enhancement-new-webdav-endpoints-for-uploads/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-new-webdav-endpoints-for-uploads",
"repo_id": "owncloud",
"token_count": 68
} | 605 |
Enhancement: Use tus chunksize from backend
We now use the chunksize value coming from the backend for uploading via tus. If no chunksize is given, it will default to `Infinity`. The Web config `uploadChunkSize` has been removed as a result.
https://github.com/owncloud/web/pull/7120
| owncloud/web/changelog/5.5.0_2022-06-20/enhancement-tus-backend-chunksize/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-tus-backend-chunksize",
"repo_id": "owncloud",
"token_count": 79
} | 606 |
Bugfix: Batch deleting multiple files
We've fixed a bug where deleting many files in a batch action would fail.
https://github.com/owncloud/web/pull/7357
https://github.com/owncloud/web/issues/7329
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-batch-delete-multiple-files/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-batch-delete-multiple-files",
"repo_id": "owncloud",
"token_count": 60
} | 607 |
Bugfix: Improve keyboard shortcuts copy/cut files
We've changed the Ctrl+X message to 'Cut to Clipboard' from 'Copied to Clipboard'
https://github.com/owncloud/web/issues/7455
https://github.com/owncloud/web/pull/7492
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-improve-keyboard-shortcuts-copy-cut-files/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-improve-keyboard-shortcuts-copy-cut-files",
"repo_id": "owncloud",
"token_count": 69
} | 608 |
Bugfix: Personal shares leaked into project space
Due to a bug in how we handle spaces as resources internally we loaded personal shares when listing project space shares.
https://github.com/owncloud/web/issues/7268
https://github.com/owncloud/web/pull/7294
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-personal-shares-in-project-space/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-personal-shares-in-project-space",
"repo_id": "owncloud",
"token_count": 67
} | 609 |
Bugfix: Create space and access user management permission
We've fixed a bug, where users with insufficient permissions could access the user management and were able to see
the "New Space" button in the space overview.
https://github.com/owncloud/web/pull/7197
https://github.com/owncloud/web/issues/7181
https://gith... | owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-and-user-management-permissions/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-and-user-management-permissions",
"repo_id": "owncloud",
"token_count": 95
} | 610 |
Bugfix: Users list not loading if user has no role
We've fixed a bug where the users list in the user management app was not loading if a user has no assigned role.
https://github.com/owncloud/web/pull/7332
https://github.com/owncloud/web/issues/7326
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-users-list-not-loading-if-user-has-no-role/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-users-list-not-loading-if-user-has-no-role",
"repo_id": "owncloud",
"token_count": 73
} | 611 |
Enhancement: Permissionless (internal) link shares
We have added the possibility to create alias link shares for internal usage when the backend is capable of handling them.
https://github.com/owncloud/web/pull/7133
https://github.com/owncloud/web/pull/7505
https://github.com/owncloud/web/issues/6844
| owncloud/web/changelog/5.7.0_2022-09-09/enhancement-permissionless-links/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-permissionless-links",
"repo_id": "owncloud",
"token_count": 86
} | 612 |
Enhancement: Simplify mime type checking
We've removed the dependency to GuzzleHttp from our oc10 app package. It was used for mime type checking only. Instead we now rely on a mime type checker that is already bundled with oc10 core.
IMPORTANT: this enhancement is needed to reach compatibility with oc10.11 and mainta... | owncloud/web/changelog/5.7.0_2022-09-09/enhancement-simplify-mime-type-checking/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-simplify-mime-type-checking",
"repo_id": "owncloud",
"token_count": 158
} | 613 |
Bugfix: Edit new created user in user management
We've fixed a bug, where editing a user after creating in the user management was only possible after page refresh.
https://github.com/owncloud/web/pull/7820
https://github.com/owncloud/web/issues/7761
| owncloud/web/changelog/6.0.0_2022-11-29/bugfix-edit-new-created-user/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-edit-new-created-user",
"repo_id": "owncloud",
"token_count": 69
} | 614 |
Bugfix: "Private link"-button alignment
We've fixed the alignment of the "Private link"-button in the sidebar.
https://github.com/owncloud/web/pull/7640
https://github.com/owncloud/web/issues/7618
| owncloud/web/changelog/6.0.0_2022-11-29/bugfix-private-link-alignment/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-private-link-alignment",
"repo_id": "owncloud",
"token_count": 61
} | 615 |
Bugfix: Spaces on "Shared via link"-page
Spaces on the "Shared via link"-page are now being displayed correctly. Also, the sidebar for those has been fixed.
https://github.com/owncloud/web/pull/7651
https://github.com/owncloud/web/pull/7742
https://github.com/owncloud/web/pull/7870
https://github.com/owncloud/web/iss... | owncloud/web/changelog/6.0.0_2022-11-29/bugfix-spaces-on-share-via-link-page/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-spaces-on-share-via-link-page",
"repo_id": "owncloud",
"token_count": 139
} | 616 |
Enhancement: Edit custom permissions wording
We've changed the custom permission wording from 'update' to 'edit'
https://github.com/owncloud/web/pull/7709
https://github.com/owncloud/web/issues/7703 | owncloud/web/changelog/6.0.0_2022-11-29/enhancement-custom-permissions-wording/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-custom-permissions-wording",
"repo_id": "owncloud",
"token_count": 58
} | 617 |
Enhancement: Update ODS to v14.0.1
We updated the ownCloud Design System to version 14.0.1. Please refer to the full changelog in the ODS release (linked) for more details. Summary:
* Bugfix - Omit special characters in user avatar initials: [#2070](https://github.com/owncloud/owncloud-design-system/issues/2070)
* Bu... | owncloud/web/changelog/6.0.0_2022-11-29/enhancement-update-ods/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-update-ods",
"repo_id": "owncloud",
"token_count": 1233
} | 618 |
Bugfix: Empty file list after deleting resources
Deleting all resources on the last page lead to an empty file list although the other pages still contained resources. This has been fixed by resetting the pagination in such scenario.
https://github.com/owncloud/web/issues/9014
https://github.com/owncloud/web/pull/901... | owncloud/web/changelog/7.0.0_2023-06-02/bugfix-empty-files-list-after-deleting/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-empty-files-list-after-deleting",
"repo_id": "owncloud",
"token_count": 82
} | 619 |
Bugfix: Broken re-login after logout
After a user logged out, it was no longer possible to login without reloading the ocis root domain,
this has now been fixed and only allowed query-params are taken into account.
https://github.com/owncloud/web/pull/8694
| owncloud/web/changelog/7.0.0_2023-06-02/bugfix-oidc-logout-query-param-replication/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-oidc-logout-query-param-replication",
"repo_id": "owncloud",
"token_count": 70
} | 620 |
Bugfix: Remove fuzzy search results
We've had a bug that caused some search results to show up that didn't align with the search term.
https://github.com/owncloud/web/pull/8508
https://github.com/owncloud/web/pull/8863
https://github.com/owncloud/web/issues/8493
https://github.com/owncloud/web/issues/8860 | owncloud/web/changelog/7.0.0_2023-06-02/bugfix-remove-fuzzy-search-results/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-remove-fuzzy-search-results",
"repo_id": "owncloud",
"token_count": 96
} | 621 |
Bugfix: Sidebar for spaces on "Shared via link"-page
The sidebar for spaces on the "Shared via link"-page has been fixed which acted like the space was a folder resource before.
https://github.com/owncloud/web/issues/9020
https://github.com/owncloud/web/pull/9023
| owncloud/web/changelog/7.0.0_2023-06-02/bugfix-spaces-sidebar-shared-via-link/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-spaces-sidebar-shared-via-link",
"repo_id": "owncloud",
"token_count": 78
} | 622 |
Enhancement: Add logout url
We've added "Logout from active devices" in the account settings
https://github.com/owncloud/web/pull/8630
https://github.com/owncloud/web/issues/8609
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-add-logout-url/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-add-logout-url",
"repo_id": "owncloud",
"token_count": 58
} | 623 |
Enhancement: Make clipboard copy available to more browsers
We have added more functionality for copying (e.g. links) to the user's clipboard.
By switching libraries we now use the standard browser API (if available) with a
fallback and only offer copy-to-clipboard buttons if the browser supports it.
https://github.c... | owncloud/web/changelog/7.0.0_2023-06-02/enhancement-clipboard-copy/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-clipboard-copy",
"repo_id": "owncloud",
"token_count": 119
} | 624 |
Enhancement: Group and user creation forms submit on enter
Group and User creation forms can now be submitted by pressing enter.
https://github.com/owncloud/web/pull/7968
https://github.com/owncloud/web/issues/7937
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-group-and-user-creation-forms-submit-on-enter/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-group-and-user-creation-forms-submit-on-enter",
"repo_id": "owncloud",
"token_count": 61
} | 625 |
Enhancement: Introduce zoom and rotate to the preview app
https://github.com/owncloud/web/pull/7977
https://github.com/owncloud/web/issues/7160
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-preview-app-introduce-zoom-and-rotate/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-preview-app-introduce-zoom-and-rotate",
"repo_id": "owncloud",
"token_count": 47
} | 626 |
Enhancement: Show selectable groups only
When managing user group assignments, we now show selectable groups only, meaning groups that have been selected already will not show up as available options.
https://github.com/owncloud/web/pull/8306
https://github.com/owncloud/web/issues/8305
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-show-selectable-groups-only/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-show-selectable-groups-only",
"repo_id": "owncloud",
"token_count": 74
} | 627 |
Enhancement: Respect max quota
We've updated the quota-select component, so that values higher than max quota set on the server side won't be shown.
https://github.com/owncloud/web/pull/8489
https://github.com/owncloud/web/pull/8571
https://github.com/owncloud/web/issues/8490
https://github.com/owncloud/web/issues/85... | owncloud/web/changelog/7.0.0_2023-06-02/enhnacement-respect-max-quota/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhnacement-respect-max-quota",
"repo_id": "owncloud",
"token_count": 101
} | 628 |
Enhancement: Add error log to upload dialog
We've added a error log to the upload dialog, so if an upload fails the user can copy the log and might hand
it over to their admin.
https://github.com/owncloud/web/pull/9436
https://github.com/owncloud/web/pull/9426
https://github.com/owncloud/web/issues/9430
| owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-error-log-to-upload-dialog/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-error-log-to-upload-dialog",
"repo_id": "owncloud",
"token_count": 94
} | 629 |
Enhancement: Add hasPriority property for editors per extension
hasPriority property has been added to replace canBeDefault. The property allows to set priority for opening with editors per extension.
https://github.com/owncloud/web/pull/7967
| owncloud/web/changelog/7.1.0_2023-08-23/enhancement-has-priority-property-for-editors/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-has-priority-property-for-editors",
"repo_id": "owncloud",
"token_count": 59
} | 630 |
Enhancement: Streamline URL query names
We've used different URL query names for the pagination in the files app (`items-per-page`) and admin-settings app (`admin-settings-items-per-page`). We've streamlined this to use the same query name in all apps and still keep the possibility to have independent page sizes in di... | owncloud/web/changelog/7.1.0_2023-08-23/enhancement-streamline-url-query-params/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-streamline-url-query-params",
"repo_id": "owncloud",
"token_count": 98
} | 631 |
Bugfix: Disable expiration date for alias link (internal)
We've disabled the option to set an expiration date on an internal link,
since it could be misleading and doesn't serve any use.
https://github.com/owncloud/web/pull/10083
https://github.com/owncloud/web/pull/10085
https://github.com/owncloud/web/issues/9923
| owncloud/web/changelog/8.0.0_2024-03-08/bugfix-disable-expiration-date-alias-link/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-disable-expiration-date-alias-link",
"repo_id": "owncloud",
"token_count": 92
} | 632 |
Bugfix: Public link file download
We've fixed a bug where the download of a file from a public link was not working when the user had logged in already. The download only worked if no user was logged in.
https://github.com/owncloud/web/issues/10473
https://github.com/owncloud/web/pull/10494
| owncloud/web/changelog/8.0.0_2024-03-08/bugfix-public-link-file-download/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-public-link-file-download",
"repo_id": "owncloud",
"token_count": 80
} | 633 |
Bugfix: Special characters in username
Preventing special characters except for . and _ in the username.
Matching server validation for username
https://github.com/owncloud/web/issues/9694
https://github.com/owncloud/web/pull/9703
| owncloud/web/changelog/8.0.0_2024-03-08/bugfix-username-validation/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-username-validation",
"repo_id": "owncloud",
"token_count": 64
} | 634 |
Bugfix: Add project space filter
We've added the option to search for spaces in the project space overview.
https://github.com/owncloud/web/pull/9649
https://github.com/owncloud/web/issues/9650
| owncloud/web/changelog/8.0.0_2024-03-08/enhancement-add-project-space-filter/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-add-project-space-filter",
"repo_id": "owncloud",
"token_count": 58
} | 635 |
Enhancement: Registering search providers as extension
Search providers can now be registered as an extension via our extension registry. They need to be of type `search`.
The old way of registering and requesting search providers via the event bus has been removed.
https://github.com/owncloud/web/pull/9794
| owncloud/web/changelog/8.0.0_2024-03-08/enhancement-extensions-search-providers/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-extensions-search-providers",
"repo_id": "owncloud",
"token_count": 72
} | 636 |
Enhancement: Remove settings icon from searchbar
We removed the settings icon from the searchbar.
https://github.com/owncloud/web/pull/9858
https://github.com/owncloud/web/issues/9664
| owncloud/web/changelog/8.0.0_2024-03-08/enhancement-remove-settings-icon-from-search-bar/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-remove-settings-icon-from-search-bar",
"repo_id": "owncloud",
"token_count": 56
} | 637 |
Enhancement: Tags form improved
We've improved the tags form in various ways, including visual appearance as well as usability. Auto save, remove tags on backspace, and contextual helper (and more, see issues)
https://github.com/owncloud/web/pull/9525
https://github.com/owncloud/web/pull/9563
https://github.com/owncl... | owncloud/web/changelog/8.0.0_2024-03-08/enhancement-tags-form/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-tags-form",
"repo_id": "owncloud",
"token_count": 160
} | 638 |
Change: Registering app file editors
BREAKING CHANGE for developers: The `announceExtensions` method inside the app's `ready` hook, which could be used to register file editors, has been removed. Developers should use the `extensions` property inside the `appInfo` object instead.
Note that the `handler` property of s... | owncloud/web/changelog/9.0.0_2024-02-26/change-registering-app-file-editors/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/change-registering-app-file-editors",
"repo_id": "owncloud",
"token_count": 168
} | 639 |
Enhancement: Remember right side bar state
We've implemented a feature to remember the state of the right side bar. Now, when the user reopens the web application,
the right side bar will remain in its last state, either open or closed, based on the user's previous interaction with it.
https://github.com/owncloud/web... | owncloud/web/changelog/9.0.0_2024-02-26/enhancement-remember-right-side-bar-state/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/enhancement-remember-right-side-bar-state",
"repo_id": "owncloud",
"token_count": 98
} | 640 |
---
- name: continuous-deployment-ocis-web-latest
server:
server_type: cx21
image: ubuntu-22.04
location: nbg1
initial_ssh_key_names:
- owncloud-web@drone.owncloud.com
labels:
owner: web-team
for: oCIS-continuous-deployment-examples
rebuild: $REBUILD
rebuild_carry_paths:
... | owncloud/web/deployments/continuous-deployment-config/ocis_web/latest.yml/0 | {
"file_path": "owncloud/web/deployments/continuous-deployment-config/ocis_web/latest.yml",
"repo_id": "owncloud",
"token_count": 916
} | 641 |
{
"server": "https://host.docker.internal:9200",
"theme": "https://host.docker.internal:9200/themes/owncloud/theme.json",
"openIdConnect": {
"metadata_url": "https://host.docker.internal:9200/.well-known/openid-configuration",
"authority": "https://host.docker.internal:9200",
"client_id": "web",
"... | owncloud/web/dev/docker/ocis.web.config.json/0 | {
"file_path": "owncloud/web/dev/docker/ocis.web.config.json",
"repo_id": "owncloud",
"token_count": 721
} | 642 |
---
title: "Building from source"
date: 2018-05-02T00:00:00+00:00
weight: 20
geekdocRepo: https://github.com/owncloud/web
geekdocEditPath: edit/master/docs
geekdocFilePath: building.md
---
{{< toc >}}
## Building ownCloud Web
- Run `pnpm install` to install dependencies
- Run `pnpm build` to build Web and all apps i... | owncloud/web/docs/building.md/0 | {
"file_path": "owncloud/web/docs/building.md",
"repo_id": "owncloud",
"token_count": 290
} | 643 |
---
title: 'Getting Started'
date: 2018-05-02T00:00:00+00:00
weight: 10
geekdocRepo: https://github.com/owncloud/web
geekdocEditPath: edit/master/docs
geekdocFilePath: getting-started.md
---
{{< toc >}}
## Installation
### Docker
Make sure to have Docker, Docker-Compose, Node.js and pnpm installed.
{{< hint info >... | owncloud/web/docs/getting-started.md/0 | {
"file_path": "owncloud/web/docs/getting-started.md",
"repo_id": "owncloud",
"token_count": 2670
} | 644 |
# Changelog for [14.0.0] (2022-11-03)
The following sections list the changes in ownCloud Design System 14.0.0.
[14.0.0]: https://github.com/owncloud/owncloud-design-system/compare/v13.1.0...v14.0.0
## Summary
* Bugfix - Omit special characters in user avatar initials: [#2070](https://github.com/owncloud/owncloud-d... | owncloud/web/packages/design-system/CHANGELOG.md/0 | {
"file_path": "owncloud/web/packages/design-system/CHANGELOG.md",
"repo_id": "owncloud",
"token_count": 63868
} | 645 |
Bugfix: Removed size for oc-button with raw variation
Raw variation of buttons have no border, so they now also don't have a size enforced to avoid needless white space.
https://github.com/owncloud/owncloud-design-system/issues/654
| owncloud/web/packages/design-system/changelog/1.0.4_2020-02-26/654/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.0.4_2020-02-26/654",
"repo_id": "owncloud",
"token_count": 61
} | 646 |
Bugfix: Fix buttons in modal
We fixed the button layout of the oc-modal component, which was broken since we introduced our new oc-button.
https://github.com/owncloud/owncloud-design-system/pull/876
| owncloud/web/packages/design-system/changelog/1.11.0_2020-09-18/fix-buttons-in-modal/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.11.0_2020-09-18/fix-buttons-in-modal",
"repo_id": "owncloud",
"token_count": 60
} | 647 |
Bugfix: Fixed oc-text-input not appearing in generated docs
The oc-text-input element didn't appear in the generated docs because of a compilation warning.
https://github.com/owncloud/owncloud-design-system/issues/688
https://github.com/owncloud/owncloud-design-system/pull/690
| owncloud/web/packages/design-system/changelog/1.2.0_2020-03-27/688/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.2.0_2020-03-27/688",
"repo_id": "owncloud",
"token_count": 80
} | 648 |
Change: Removed change and keydown events from text input
We've removed change and keydown custom events from text input component.
All listeners are passed to the input element so all events are still accessible.
Focus and input events are still implemented as custom events.
https://github.com/owncloud/owncloud-desi... | owncloud/web/packages/design-system/changelog/1.6.0_2020-05-26/remove-input-custom-events/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.6.0_2020-05-26/remove-input-custom-events",
"repo_id": "owncloud",
"token_count": 76
} | 649 |
Enhancement: Make OcAvatarX sizeable
We've added the possibility to size Avatars and gave e.g.
OcAvatarGroup a width and iconSize.
https://github.com/owncloud/owncloud-design-system/pull/1645
https://github.com/owncloud/web/issues/5763 | owncloud/web/packages/design-system/changelog/10.0.0_2021-09-13/enhancement-make-oc-avatar-x sizeable/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/10.0.0_2021-09-13/enhancement-make-oc-avatar-x sizeable",
"repo_id": "owncloud",
"token_count": 79
} | 650 |
Enhancement: Reduce filename text weight
We reduced the font weight for filenames to make the files list easier for the eye.
https://github.com/owncloud/owncloud-design-system/pull/1759
| owncloud/web/packages/design-system/changelog/11.2.0_2021-11-09/enhancement-resource-text-weight/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/11.2.0_2021-11-09/enhancement-resource-text-weight",
"repo_id": "owncloud",
"token_count": 52
} | 651 |
Change: Remove OcAppSideBar component
We have removed the OcAppSideBar component since it's not actively used anywhere.
https://github.com/owncloud/owncloud-design-system/pull/1810
| owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-app-side-bar/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-app-side-bar",
"repo_id": "owncloud",
"token_count": 52
} | 652 |
Enhancement: Show path / parent folder to distinguish files
We've added an option to show the path / parent folder under the resource name
in order to distinguish files better
https://github.com/owncloud/web/issues/5953
https://github.com/owncloud/owncloud-design-system/pull/1860
https://github.com/owncloud/owncloud-... | owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-parent-folder-distinguish-files/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-parent-folder-distinguish-files",
"repo_id": "owncloud",
"token_count": 97
} | 653 |
Bugfix: Initial focus in OcModal
We've fixed a bug that was introduced in the last version, where the initial focus element provided via the focusTrapInitial property was broken.
https://github.com/owncloud/owncloud-design-system/pull/2001
| owncloud/web/packages/design-system/changelog/12.2.2_2022-03-03/bugfix-modal-initial-focus/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.2.2_2022-03-03/bugfix-modal-initial-focus",
"repo_id": "owncloud",
"token_count": 63
} | 654 |
Bugfix: OcTextInput: Fix event handlers in loops
We pass all event handlers specified on `OcTextInput` to the underlying `input` element
except for `input`, `change` and `focus` event handlers. We fixed an issue in this exclusion
code that made `change`, `input` and `focus` handlers be re-registered on rerenders, part... | owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/bugfix-octextinput-fix-event-handlers-in-loops/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/bugfix-octextinput-fix-event-handlers-in-loops",
"repo_id": "owncloud",
"token_count": 124
} | 655 |
Bugfix: Omit special characters in user avatar initials
We now make sure that user avatars without a picture (i.e. rendering user initials) only show unicode letters and numbers.
https://github.com/owncloud/owncloud-design-system/issues/2070
https://github.com/owncloud/owncloud-design-system/pull/2267
| owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-avatar-initials-special-chars/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-avatar-initials-special-chars",
"repo_id": "owncloud",
"token_count": 85
} | 656 |
Enhancement: Add rounded prop to OcTag
We've added a rounded property to the OcTag component
https://github.com/owncloud/owncloud-design-system/pull/2284 | owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-add-rounded-oc-tag/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-add-rounded-oc-tag",
"repo_id": "owncloud",
"token_count": 47
} | 657 |
Change: Change license to Apache 2
We've changed the license of the design system to Apache 2.
https://github.com/owncloud/owncloud-design-system/pull/933 | owncloud/web/packages/design-system/changelog/2.0.0_2020-11-23/change-license/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/2.0.0_2020-11-23/change-license",
"repo_id": "owncloud",
"token_count": 44
} | 658 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.