Roeland Jago Douma
b73df01945
Merge pull request #16781 from nextcloud/bug/fix-password-reset
...
Send new password instead of empty string
2019-08-19 11:52:58 +02:00
Julius Härtl
c2f039fe28
Update bundles
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-08-19 09:37:29 +02:00
dependabot-preview[bot]
6e79ccda7f
Bump css-vars-ponyfill from 2.0.2 to 2.1.1
...
Bumps [css-vars-ponyfill](https://github.com/jhildenbiddle/css-vars-ponyfill ) from 2.0.2 to 2.1.1.
- [Release notes](https://github.com/jhildenbiddle/css-vars-ponyfill/releases )
- [Changelog](https://github.com/jhildenbiddle/css-vars-ponyfill/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jhildenbiddle/css-vars-ponyfill/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-18 20:01:52 +00:00
dependabot-preview[bot]
20a83bed16
Bump webpack from 4.39.1 to 4.39.2
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.39.1 to 4.39.2.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.39.1...v4.39.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-18 14:22:01 +00:00
dependabot-preview[bot]
723815f081
Bump style-loader from 0.23.1 to 1.0.0
...
Bumps [style-loader](https://github.com/webpack-contrib/style-loader ) from 0.23.1 to 1.0.0.
- [Release notes](https://github.com/webpack-contrib/style-loader/releases )
- [Changelog](https://github.com/webpack-contrib/style-loader/blob/master/CHANGELOG.md )
- [Commits](https://github.com/webpack-contrib/style-loader/compare/v0.23.1...v1.0.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-11 17:43:33 +00:00
dependabot-preview[bot]
826dc4238d
Bump css-loader from 3.1.0 to 3.2.0
...
Bumps [css-loader](https://github.com/webpack-contrib/css-loader ) from 3.1.0 to 3.2.0.
- [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/v3.1.0...v3.2.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-11 11:52:22 +00:00
dependabot-preview[bot]
64f46bcab8
Bump blueimp-md5 from 2.11.0 to 2.11.1
...
Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5 ) from 2.11.0 to 2.11.1.
- [Release notes](https://github.com/blueimp/JavaScript-MD5/releases )
- [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.11.0...v2.11.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-11 07:40:03 +00:00
John Molakvoæ (skjnldsv)
287393609d
Fix ie app menu loading click
...
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-06 16:17:00 +00:00
dependabot-preview[bot]
b84b78d203
Bump webpack from 4.38.0 to 4.39.1
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.38.0 to 4.39.1.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.38.0...v4.39.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-08-04 07:57:44 +00:00
Julius Härtl
3b0d13944a
Move actual password reset to vue
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-07-31 09:19:07 +02:00
Daniel Calviño Sánchez
abd5d10253
Add unit tests for "OC.Notification.hide()"
...
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-26 18:46:59 +02:00
Daniel Calviño Sánchez
03f2e8a10e
Fix default timeouts in OC.Notification
...
When no timeout was given "show()" used the default timeout of
"OCP.Toast", which is 7 seconds instead of indefinitely as stated in the
documentation of "show()". "showHtml()" should also indefinitely show
the notification if no timeout is given, but due to the strict
comparison the notification was indefinitely shown only when a timeout
of 0 was explicitly given. Now both methods show the notification
indefinitely (or until it is explicitly hidden) when no timeout is
given.
The unit tests did not catch this error because "showHtml()" had no
tests (as before the move to Toastify it was called from "show()" and
thus implicitly tested), and because "show()" verified that "hide()" was
not called after some time; "hide()" is no longer called from "show()"
since "OCP.Toast" is used internally, so the test always passed even if
the notification was indeed hidden. Now the test is based on whether the
element is found or not, and explicit tests were added too for
"showHtml()".
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-26 18:46:59 +02:00
Daniel Calviño Sánchez
14006b548e
Fix mixed test for "show" and "showTemporary"
...
"showTemporary()" when a timeout was given was being tested along with
the "show()" tests; now there are two separate tests when a timeout is
given, one for "showTemporary()" and one for "show()".
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-26 18:46:58 +02:00
Daniel Calviño Sánchez
2b1c80ea3f
Check number of elements instead of if the jQuery object is defined
...
Tje jQuery object created through "$('#testArea .toastify')" will be
always defined even if no elements were found, so the check does not
really work; instead, it should be checked the number of elements found.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-26 18:46:51 +02:00
dependabot-preview[bot]
d002c7aae8
Bump blueimp-md5 from 2.10.0 to 2.11.0
...
Bumps [blueimp-md5](https://github.com/blueimp/JavaScript-MD5 ) from 2.10.0 to 2.11.0.
- [Release notes](https://github.com/blueimp/JavaScript-MD5/releases )
- [Commits](https://github.com/blueimp/JavaScript-MD5/compare/v2.10.0...v2.11.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-07-21 18:52:07 +00:00
Daniel Calviño Sánchez
916c95758f
Rename parameter in OCP.Toast for consistency with OC.Notification
...
This fixes HTML messages in "OC.Notification.showTemporary" (as
"showHtml" was not set based on "isHTML"), and also makes OCP.Toast to
keep the old OC.Notification API when used directly.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-12 16:15:05 +02:00
Roeland Jago Douma
22de685f54
Merge pull request #15881 from PhieF/toggle-password-login
...
adding toggle password to be able to see it when login
2019-07-09 13:38:27 +02:00
Phie
8fa2d70e9e
adding toggle password to be able to see it
...
Signed-off-by: Phie <phie@phie.ovh>
2019-07-09 10:54:21 +02:00
Roeland Jago Douma
504f878298
Bump marked to 0.7.0
...
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-07-09 08:52:37 +02:00
dependabot-preview[bot]
94a992d0d6
Bump webpack from 4.35.0 to 4.35.2
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.35.0 to 4.35.2.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.35.0...v4.35.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-07-08 11:57:16 +00:00
Akshala Bhatnagar
4bd639640b
Update core/src/components/login/ResetPassword.vue
...
Co-Authored-By: Julius Härtl <jus@bitgrid.net>
2019-07-07 20:17:23 +02:00
dependabot-preview[bot]
cbfeaaaa60
Bump toastify-js from 1.5.0 to 1.6.1
...
Bumps [toastify-js](https://github.com/apvarun/toastify-js ) from 1.5.0 to 1.6.1.
- [Release notes](https://github.com/apvarun/toastify-js/releases )
- [Changelog](https://github.com/apvarun/toastify-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/apvarun/toastify-js/compare/1.5.0...1.6.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-07-01 09:15:18 +00:00
Roeland Jago Douma
2c449469d3
Merge pull request #16070 from nextcloud/fix/setup-check-no-internet-no-error
...
Do not show a internet connectivity warning if internet access is dis…
2019-06-28 10:54:29 +02:00
Christoph Wurst
20afe94297
Do not show a internet connectivity warning if internet access is disabled
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-06-27 10:51:59 +02:00
Christoph Wurst
e9860c89ca
Show contacts app mgmt link in contacts menu
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-06-27 09:33:27 +02:00
Christoph Wurst
409acf1131
Fix js l10n registration to also work with more than one bundle
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-06-26 10:07:21 +02:00
Roeland Jago Douma
bc276cdd83
Merge pull request #15859 from nextcloud/deprecate/oc-redirect-reload
...
Deprecate window.location wrappers for redirect and reload
2019-06-26 10:00:31 +02:00
Jan-Christoph Borchardt
b466127b1f
Merge pull request #16055 from nextcloud/design/native-fonts
...
Use native font stack
2019-06-26 00:08:16 +02:00
Christoph Wurst
ac0e414a18
Deprecate window.location wrappers for redirect and reload
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-06-25 21:39:37 +02:00
dependabot-preview[bot]
4a401865f2
Bump css-loader from 2.1.1 to 3.0.0
...
Bumps [css-loader](https://github.com/webpack-contrib/css-loader ) from 2.1.1 to 3.0.0.
- [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/v2.1.1...v3.0.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-06-25 21:33:38 +02:00
dependabot-preview[bot]
16dd043560
Bump dompurify from 1.0.10 to 1.0.11
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 1.0.10 to 1.0.11.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/1.0.10...1.0.11 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-06-24 10:57:22 +02:00
Jan-Christoph Borchardt
d14c0f2ed7
Move font from Nunito to Noto Sans
...
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2019-06-22 11:23:44 +02:00
npmbuildbot[bot]
b855d08e15
Compiling assets
...
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2019-06-17 07:54:17 +00:00
Jan-Christoph Borchardt
1809dae04f
Remove auto focus of share input field on dialog open, fix #15261
...
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
2019-06-14 14:07:57 +02:00
Julius Härtl
2ced8b947c
Bump bundles
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-06-11 19:12:33 +02:00
Julius Härtl
d95ef2c0f7
Bump bundles
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-06-07 07:32:53 +02:00
Julius Härtl
6d848b545d
Adjust jsunit tests for new toast library
...
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-06-07 07:32:48 +02:00
dependabot-preview[bot]
188173a788
Bump nextcloud-axios from 0.1.3 to 0.2.0
...
Bumps [nextcloud-axios](https://github.com/ChristophWurst/nextcloud-axios ) from 0.1.3 to 0.2.0.
- [Release notes](https://github.com/ChristophWurst/nextcloud-axios/releases )
- [Commits](https://github.com/ChristophWurst/nextcloud-axios/compare/v0.1.3...v0.2.0 )
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-06-03 12:50:15 +02:00
dependabot-preview[bot]
4dd4c44182
[Security] Bump axios from 0.18.0 to 0.18.1
...
Bumps [axios](https://github.com/axios/axios ) from 0.18.0 to 0.18.1. **This update includes security fixes.**
- [Release notes](https://github.com/axios/axios/releases )
- [Changelog](https://github.com/axios/axios/blob/v0.18.1/CHANGELOG.md )
- [Commits](https://github.com/axios/axios/compare/v0.18.0...v0.18.1 )
2019-06-02 07:49:46 +02:00
nacho
3c30d293fa
CSS: adjust media query breakpoint to improve tablet readability
...
see https://github.com/nextcloud/news/pull/467
2019-05-30 08:28:30 +02:00
Roeland Jago Douma
89c701382f
Merge pull request #15716 from nextcloud/enhancement/webpack/global-config
...
Unify webpack config
2019-05-29 22:00:02 +02:00
Roeland Jago Douma
96b15dd101
Merge pull request #15790 from nextcloud/fix/noid/recommendations-undef-var
...
remove unncessary code block in share recommendations, fixed undefined var error
2019-05-29 21:55:33 +02:00
John Molakvoæ (skjnldsv)
a442b78538
Build and update
...
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2019-05-29 15:20:19 +02:00
Arthur Schiwon
44dca54895
fixes usage of an undefined var
...
and removes a unnecessary code block as there is no paging for share
recommendations
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2019-05-29 13:11:07 +02:00
Christoph Wurst
64c4bb5bce
Vueify the login page
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-05-29 11:05:16 +02:00
dependabot-preview[bot]
53f18a9770
Bump webpack from 4.31.0 to 4.32.2
...
Bumps [webpack](https://github.com/webpack/webpack ) from 4.31.0 to 4.32.2.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v4.31.0...v4.32.2 )
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-05-27 11:35:14 +02:00
Robin Appelman
1799e1acaf
dont use deprecated oc_config in url generation
...
Signed-off-by: Robin Appelman <robin@icewind.nl>
2019-05-20 14:01:14 +02:00
Christoph Wurst
0cfcccee29
Migrate the maintenance script to a modern module and bundle
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-05-16 16:45:00 +02:00
Christoph Wurst
334c4fddfe
Remove empty js.js
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-05-15 10:40:53 +02:00
Christoph Wurst
ab72bd64f5
Move legacy Ajax error handling logic to the bundle
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-05-15 10:40:15 +02:00