Vincent Petry
1d1f2cccc2
Merge pull request #4550 from nextcloud/fix-uploading-same-file-twice-in-a-row-in-chromium
...
Fix uploading same file twice in a row in Chromium
2020-11-09 11:14:35 +01:00
Vincent Petry
fa131ec0be
Merge pull request #4558 from nextcloud/dependabot/npm_and_yarn/css-loader-5.0.1
...
Bump css-loader from 5.0.0 to 5.0.1
2020-11-09 11:14:18 +01:00
dependabot-preview[bot]
721963b5f0
Bump css-loader from 5.0.0 to 5.0.1
...
Bumps [css-loader](https://github.com/webpack-contrib/css-loader ) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/webpack-contrib/css-loader/releases )
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack-contrib/css-loader/compare/v5.0.0...v5.0.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-09 07:57:09 +00:00
Joas Schilling
511d4e4b36
Merge pull request #4559 from nextcloud/dependabot/npm_and_yarn/babel/runtime-7.12.5
...
Bump @babel/runtime from 7.12.1 to 7.12.5
2020-11-09 08:55:02 +01:00
Joas Schilling
996e10e9bb
Merge pull request #4557 from nextcloud/dependabot/npm_and_yarn/vue/test-utils-1.1.1
...
Bump @vue/test-utils from 1.1.0 to 1.1.1
2020-11-09 08:54:39 +01:00
Joas Schilling
d1f9764707
Merge pull request #4556 from nextcloud/dependabot/npm_and_yarn/vue-router-3.4.9
...
Bump vue-router from 3.4.8 to 3.4.9
2020-11-09 08:54:27 +01:00
Joas Schilling
3c5a13857a
Merge pull request #4555 from nextcloud/dependabot/npm_and_yarn/webpack-cli-4.2.0
...
Bump webpack-cli from 4.1.0 to 4.2.0
2020-11-09 08:54:15 +01:00
Nextcloud bot
02080bd488
[tx-robot] updated from transifex
2020-11-09 03:12:25 +00:00
Nextcloud bot
86387d3dd0
[tx-robot] updated from transifex
2020-11-08 03:11:27 +00:00
Nextcloud bot
dee01efaaa
[tx-robot] updated from transifex
2020-11-07 03:10:53 +00:00
dependabot-preview[bot]
65e97688b3
Bump @babel/runtime from 7.12.1 to 7.12.5
...
Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime ) from 7.12.1 to 7.12.5.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.12.5/packages/babel-runtime )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-07 02:29:47 +00:00
dependabot-preview[bot]
3238507d37
Bump @vue/test-utils from 1.1.0 to 1.1.1
...
Bumps [@vue/test-utils](https://github.com/vuejs/vue-test-utils/tree/HEAD/packages/test-utils ) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/vuejs/vue-test-utils/releases )
- [Changelog](https://github.com/vuejs/vue-test-utils/blob/dev/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-test-utils/commits/v1.1.1/packages/test-utils )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-07 02:25:48 +00:00
dependabot-preview[bot]
02386e7822
Bump vue-router from 3.4.8 to 3.4.9
...
Bumps [vue-router](https://github.com/vuejs/vue-router ) from 3.4.8 to 3.4.9.
- [Release notes](https://github.com/vuejs/vue-router/releases )
- [Changelog](https://github.com/vuejs/vue-router/blob/dev/CHANGELOG.md )
- [Commits](https://github.com/vuejs/vue-router/compare/v3.4.8...v3.4.9 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-07 02:24:47 +00:00
dependabot-preview[bot]
2952576331
Bump webpack-cli from 4.1.0 to 4.2.0
...
Bumps [webpack-cli](https://github.com/webpack/webpack-cli ) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/webpack/webpack-cli/releases )
- [Changelog](https://github.com/webpack/webpack-cli/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@4.1.0...webpack-cli@4.2.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-07 02:23:58 +00:00
Vincent Petry
caf14bd3fe
Merge pull request #4547 from nextcloud/feature/noid/bumps-for-node-15-env
...
Bump node-sass and sass-loader to support node v15.0.0
2020-11-06 16:16:02 +01:00
Vincent Petry
3af57c87b2
Merge pull request #4537 from nextcloud/bugfix/noid/preview-mimeicon-height
...
Fix mime icon and failed icon height
2020-11-06 14:02:21 +01:00
Daniel Calviño Sánchez
40765c3883
Fix uploading same file twice in a row in Chromium
...
To upload files a hidden file input is "clicked", which shows the
browser dialog to pick the files, and the "change" event of the file
input is listened to to know the selected files.
However, although Firefox always emits the "change" event when files are
selected, Chromium only emits the "change" event if the selected files
have changed since the last time. Due to this if a file was uploaded and
then the same file was tried to be uploaded again nothing happened.
Now the value of the file input is cleared (which also clears the files
from the file input) after the files are handled to ensure that there is
no previous state when the browser dialog is shown again, and thus the
selected files always change.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-11-06 12:34:09 +01:00
Marco Ambrosini
61eecfbad2
Bump node-sass and sass-loader to support node v15.0.0
...
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-11-06 10:44:36 +01:00
Vincent Petry
36617f663b
Merge pull request #4541 from nextcloud/bugfix/4536/autofocus-upload-dialog-submit
...
Focus on submit button by default in upload dialog
2020-11-06 10:05:08 +01:00
Vincent Petry
a740b4e644
Merge pull request #4539 from nextcloud/bugfix/noid/preview-rename-only-on-paste
...
Only autorename uploads on paste
2020-11-06 10:04:51 +01:00
Vincent Petry
2d5cd3cf0f
Polish preview type + mime icon logic in file preview
...
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-06 09:32:36 +01:00
Nextcloud bot
5ab59a6967
[tx-robot] updated from transifex
2020-11-06 03:11:51 +00:00
Daniel Calviño Sánchez
bbf3340924
Merge pull request #4542 from nextcloud/fix-remembered-grid-state-per-call
...
Fix remembered grid state per call
2020-11-05 15:50:23 +01:00
Daniel Calviño Sánchez
25591c0830
Fix public and group calls started in speaker mode
...
The conversation type was not checked against the right constants.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-11-05 14:48:37 +01:00
Daniel Calviño Sánchez
f23bceaff5
Fix calls always started in grid view
...
The BrowserStorage returns a string, but isGrid is expected to be a
boolean, so both "true" and "false" were truthy values.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-11-05 14:48:04 +01:00
Vincent Petry
9f07b4cb1e
Focus on submit button by default in upload dialog
...
Makes it possible to submit directly with enter after pasting
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-05 12:23:47 +01:00
Vincent Petry
6a92e53b8c
Only autorename uploads on paste
...
There was a mix up of handlers that made all uploads be automatically
renamed.
This properly rewires the handlers to only autorename whenever the event
was a paste.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-05 11:59:07 +01:00
Vincent Petry
98e9d48eb7
Fix mime type icon height
...
Whenever a mime type icon is displayed, apply min-height to make it look
bigger.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-05 11:42:52 +01:00
Vincent Petry
fd461aaa77
Expose file preview type as single value
...
Implement previewType in file preview that specifies what kind of
preview is being displayed.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-05 11:42:52 +01:00
Vincent Petry
7d157ce07c
Merge pull request #4532 from nextcloud/feature/4335/update-shortcuts-info
...
Add push to talk and push to mute instructions
2020-11-05 09:26:00 +01:00
Nextcloud bot
12695a1565
[tx-robot] updated from transifex
2020-11-05 03:10:56 +00:00
Marco Ambrosini
50bbbfec96
Add push to talk and push to mute instructions
...
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-11-04 17:13:09 +01:00
dependabot-preview[bot]
46a8eda920
Merge pull request #4393 from nextcloud/dependabot/npm_and_yarn/css-loader-5.0.0
2020-11-04 12:37:04 +00:00
Nextcloud bot
e629f5dbe6
[tx-robot] updated from transifex
2020-11-04 03:11:44 +00:00
marco
81f997c79a
Merge pull request #4522 from nextcloud/bugfix/noid/fix-new-conversation-modal-size
...
Use standard size for new group conversation modal
2020-11-03 18:23:58 +01:00
Marco Ambrosini
b358121850
Use standard size for new group conversation modal
...
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2020-11-03 12:53:12 +01:00
Vincent Petry
0474bfc3cc
Merge pull request #4451 from nextcloud/feature/3824/remember-grid-state
...
Remember grid view state per call
2020-11-02 16:26:01 +01:00
Vincent Petry
cc2f8c406f
Merge pull request #4513 from nextcloud/dependabot/npm_and_yarn/nextcloud/vue-3.1.2
...
Bump @nextcloud/vue from 3.1.0 to 3.1.2
2020-11-02 16:24:41 +01:00
dependabot-preview[bot]
2d80210715
Bump @nextcloud/vue from 3.1.0 to 3.1.2
...
Bumps [@nextcloud/vue](https://github.com/nextcloud/nextcloud-vue ) from 3.1.0 to 3.1.2.
- [Release notes](https://github.com/nextcloud/nextcloud-vue/releases )
- [Commits](https://github.com/nextcloud/nextcloud-vue/compare/v3.1.0...v3.1.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-02 14:08:42 +00:00
Joas Schilling
dfc631272e
Merge pull request #4506 from nextcloud/dependabot/npm_and_yarn/webpack-merge-5.3.0
...
Bump webpack-merge from 5.2.0 to 5.3.0
2020-11-02 14:25:19 +01:00
Joas Schilling
fa8d3252fa
Merge pull request #4507 from nextcloud/dependabot/npm_and_yarn/nextcloud/axios-1.5.0
...
Bump @nextcloud/axios from 1.4.0 to 1.5.0
2020-11-02 14:25:04 +01:00
Joas Schilling
17074dd383
Merge pull request #4517 from nextcloud/bugfix/4512/fix-psalm-plus-extras
...
Fix psalm issues plus extras
2020-11-02 14:23:32 +01:00
Joas Schilling
1aa8c0c722
Merge pull request #4504 from nextcloud/dependabot/npm_and_yarn/vue-router-3.4.8
...
Bump vue-router from 3.4.7 to 3.4.8
2020-11-02 14:23:17 +01:00
Vincent Petry
56092fcec6
Automatic cleanup Psalm baseline
...
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-02 13:44:14 +01:00
Vincent Petry
5c2e475964
Update Psalm baseline for listener
...
Updated for some acceptable issues around the listener introduced by
server side changes.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-02 13:44:14 +01:00
Vincent Petry
5ba4a6deae
Update christophwurst/nextcloud to 70e36349cd
...
Updated composer.lock for that dependency.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-02 13:42:45 +01:00
Vincent Petry
ca678c607c
Adjusted composer psalm commands
...
- Run with a single thread, otherwise it crashes on some environments like mine...
- Added composer command to clear psalm's caches.
- Added command to update the baseline automatically
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2020-11-02 13:42:07 +01:00
Vincent Petry
4934286803
Merge pull request #4495 from nextcloud/fix/noid/inject-mimetypeloader-into-roomshareprovider
...
Inject MimeTypeLoader into RoomShareProvider to not query it on each …
2020-11-02 09:02:53 +01:00
Nextcloud bot
182bf290c6
[tx-robot] updated from transifex
2020-11-02 03:12:19 +00:00
Nextcloud bot
6e2f88dd66
[tx-robot] updated from transifex
2020-11-01 03:10:53 +00:00