Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-19Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-08-02Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-07-30♿️ (#2737): add missing label/titleVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-07-29Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-07-22Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-07-21build(deps): bump terser from 5.14.1 to 5.14.2dependabot[bot]
Bumps [terser](https://github.com/terser/terser) from 5.14.1 to 5.14.2. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/commits) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-30feat: improve collaborator styleLuka Trovic
Signed-off-by: Luka Trovic <luka@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-10Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-09Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-06-08Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-05-27Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-05-26Compile assetsnextcloud-command
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-05-06Switch to auto table layoutbugfix/noid/table-layoutJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-05-03build: compile jsMax
Signed-off-by: Max <max@nextcloud.com>
2022-04-19Fix height of editor-wrapper in viewer modal on mobileJonas
On mobile, `#modal-container` already has `top: 50px`, so no need to add another `top: 50px` in `#editor-container` in that case. Also, remove `top` property from `#editor-container` in EditorWrapper and RichWorkspace altogether. The correct place to set `top` to fit with the header bar from a modal is ViewerComponent. Fixes: #2203 Fixes: #2295 Signed-off-by: Jonas <jonas@freesources.org>
2022-04-06Fix participant popover designJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-03-31build: compile jsMax
Signed-off-by: Max <max@nextcloud.com>
2022-03-14💄 (#2184): paragraph adjustsVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-03-14📦️ (#2184): add compiled assetsVinicius Reis
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
2022-03-01lint: fix errors from @nextcloud/eslint-config@7Max
* Autofix `vue/first-attribute-linebreak`. * Explicitely import `Store` from `vuex`. * Allow importing default with the same name as named for tiptap extensions. This is the way used in tiptap documentation: `import Document from '@tiptap/extension-document'` Disable `import/no-named-as-default` - but only for the lines in question. Signed-off-by: Max <max@nextcloud.com>
2022-02-21fix: only apply bullet style to ul > liMax
* Make list items in ordered lists still show numbers. * Use the same bullets on second and third level when first level is ol. Signed-off-by: Max <max@nextcloud.com>
2022-02-09fix: adjust keyboard shortcuts and help modalMax
Tiptap v2 changed some defaults for the keyboard shortcuts. * use new default ctrl+shift+X for strike through. Old ctrl+d is used to create bookmarks in firefox. * Keep old ctrl+shift+1 ... ctrl+shift+6 for headings. No reason to change as far as i can tell. Also more consistent with lists (ctrl+shift+7/8). * Change ordered lists to ctrl+shift+7. New default from tiptap. This way it comes right after the headings. Signed-off-by: Max <max@nextcloud.com>
2022-02-09upgrade: tiptap v2Azul
Migrate the entire editor to tiptap v2. Some changes were introduces that go beyond just using the new tiptap API: *Collaboration* Port tiptap1 collaboration. We still want to use our session and sync mechanism. *Serialization* Add Markdown extension to handle serialization. Tiptap config extensions are not automatically added to the prosemirror schema anymore. The extension adds the `toMarkdown` config value to the prosemirror schema. With the new naming scheme tiptap nodes for a number of elements do not match the prosemirror names. Camelcase the marks and nodes from `defaultMarkdownSerializer` so they match the tiptap names. *Menubar* * Specify args for isActive function directly rather than setting a function. * Make use of the editor instance inside the MenuBar component. * Use the editor rather than slots for command, focused etc. * disable icons based on editor.can * Show menubar as long as submenus are open. When opening a submenu of the menubar keep track of the open menu even for the image and the remaining action menu. Also refocus the editor whenever a submenu is closed. *MenuBubble* Let tippy handle the positioning Tippy is really good at positioning the menu bubble. Remove all our workarounds and let it do its thing. In order for this to work the content of the MenuBubble actually needs to live inside the tippy-content. Tippy bases its calculations on the width of tippy-content. So if we have the content hanging in a separate div with absolute positioning tippy-content will be 0x0 px and not represent the actual width of the menu bubble. *Upgrade image node and ImageView.* Quite a bit of the syntax changed. We now need a wrapping `<node-view-wrapper>` element. Pretty good docs at https://tiptap.dev/guide/node-views/vue#render-a-vue-component We also need to handle the async action. It will run the action on it's own. So in `clickIcon()` we need to test if the action returned anything. Tiptap v1 had inline images. v2 keeps them outside of paragraphs by default. Configure Image node to use inline images as markdownit creates inline images right now. *Trailing Node* Tiptap v2 does not ship the trailing node extension anymore. Included the one from the demos and turned it from typescript into javascript. *Tests* In order to isolate some problems tests were added. The tests in Undeline.spec.js were green right from the beginning. They are not related to the fix and only helped isolate the problem. Also introduced a cypress test for Lists that tests the editor without rendering the page and logging in. It is very fast and fairly easy to write. *Refactorings* * Split marks into separate files. Signed-off-by: Max <max@nextcloud.com>
2022-01-24handle __ as underline when loading markdown filesMax
Signed-off-by: Max <max@nextcloud.com>
2022-01-24ui: use Avatars in 44px for the setssion listMax
Signed-off-by: Max <max@nextcloud.com>
2022-01-24ui: vertical center avatar and save status in menu barMax
Signed-off-by: Max <max@nextcloud.com>
2022-01-24fix feedbackLuka Trovic
Signed-off-by: Luka Trovic <luka@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2022-01-22Bump @nextcloud/webpack-vue-config from 4.3.0 to 4.3.2dependabot[bot]
Bumps [@nextcloud/webpack-vue-config](https://github.com/nextcloud/webpack-vue-config) from 4.3.0 to 4.3.2. - [Release notes](https://github.com/nextcloud/webpack-vue-config/releases) - [Changelog](https://github.com/nextcloud/webpack-vue-config/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/webpack-vue-config/compare/v4.3.0...v4.3.2) --- updated-dependencies: - dependency-name: "@nextcloud/webpack-vue-config" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-12-30fix stylelint config and one css importJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2021-12-16l10n: Change to a capital letterValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-12-15Further wording and layout improvementsJonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-14Fix modal height and improve wording (both on mobile)Jonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-14Remove emoji documentation and minor wording improvementsJonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-14Make modal full-screen on mobileJonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-14Make info icon the last item of the formatting barJonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-13Add formatting help modal (Fixes: #1941)Jonas Meurer
Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-11-12Bump @nextcloud/webpack-vue-config from 4.1.0 to 4.1.4dependabot[bot]
Bumps [@nextcloud/webpack-vue-config](https://github.com/nextcloud/webpack-vue-config) from 4.1.0 to 4.1.4. - [Release notes](https://github.com/nextcloud/webpack-vue-config/releases) - [Changelog](https://github.com/nextcloud/webpack-vue-config/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/webpack-vue-config/compare/v4.1.0...v4.1.4) --- updated-dependencies: - dependency-name: "@nextcloud/webpack-vue-config" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-08-26Bump @nextcloud/babel-config from 1.0.0-beta.1 to 1.0.0dependabot[bot]
Bumps [@nextcloud/babel-config](https://github.com/nextcloud/babel-config) from 1.0.0-beta.1 to 1.0.0. - [Release notes](https://github.com/nextcloud/babel-config/releases) - [Commits](https://github.com/nextcloud/babel-config/commits) --- updated-dependencies: - dependency-name: "@nextcloud/babel-config" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-08-23Bump @nextcloud/webpack-vue-config from 4.0.3 to 4.1.0dependabot[bot]
Bumps [@nextcloud/webpack-vue-config](https://github.com/nextcloud/webpack-vue-config) from 4.0.3 to 4.1.0. - [Release notes](https://github.com/nextcloud/webpack-vue-config/releases) - [Commits](https://github.com/nextcloud/webpack-vue-config/compare/v4.0.3...v4.1.0) --- updated-dependencies: - dependency-name: "@nextcloud/webpack-vue-config" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-07-14Bump bundlesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-07-08Some Design fixesszaimen
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-05-12Bump core-js from 3.10.1 to 3.12.1dependabot[bot]
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.10.1 to 3.12.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.12.1/packages/core-js) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-04-21Bump @nextcloud/browserslist-config from 1.0.0 to 2.1.0dependabot[bot]
Bumps [@nextcloud/browserslist-config](https://github.com/nextcloud/browserslist-config) from 1.0.0 to 2.1.0. - [Release notes](https://github.com/nextcloud/browserslist-config/releases) - [Commits](https://github.com/nextcloud/browserslist-config/compare/v1.0.0...v2.1.0) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-04-16Bump all minor dependency updatesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-04-13Bump @nextcloud/vue from 3.7.2 to 3.9.0dependabot[bot]
Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 3.7.2 to 3.9.0. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Changelog](https://github.com/nextcloud/nextcloud-vue/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v3.7.2...v3.9.0) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-03-12Bump core-js from 3.8.1 to 3.9.1dependabot[bot]
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) from 3.8.1 to 3.9.1. - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.9.1/packages/core-js) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-03-12Bump @nextcloud/vue from 3.3.2 to 3.7.2dependabot[bot]
Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue) from 3.3.2 to 3.7.2. - [Release notes](https://github.com/nextcloud/nextcloud-vue/releases) - [Changelog](https://github.com/nextcloud/nextcloud-vue/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v3.3.2...v3.7.2) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
2021-02-02Bump bundlesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-26Bump bundlesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-01-13Bump bundlesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>