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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-28Bump composerRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2021-04-20[tx-robot] updated from transifexNextcloud bot
2021-04-08[tx-robot] updated from transifexNextcloud bot
2021-04-01[tx-robot] updated from transifexNextcloud bot
2021-03-15[tx-robot] updated from transifexNextcloud bot
2021-03-06[tx-robot] updated from transifexNextcloud bot
2021-03-04[tx-robot] updated from transifexNextcloud bot
2021-02-27[tx-robot] updated from transifexNextcloud bot
2021-02-23[tx-robot] updated from transifexNextcloud bot
2021-02-18[tx-robot] updated from transifexNextcloud bot
2021-02-16[tx-robot] updated from transifexNextcloud bot
2021-02-12[tx-robot] updated from transifexNextcloud bot
2021-01-28[tx-robot] updated from transifexNextcloud bot
2021-01-10[tx-robot] updated from transifexNextcloud bot
2021-01-06[tx-robot] updated from transifexNextcloud bot
2020-12-28[tx-robot] updated from transifexNextcloud bot
2020-12-18[tx-robot] updated from transifexNextcloud bot
2020-12-16[tx-robot] updated from transifexNextcloud bot
2020-12-14[tx-robot] updated from transifexNextcloud bot
2020-12-10[tx-robot] updated from transifexNextcloud bot
2020-12-08[tx-robot] updated from transifexNextcloud bot
2020-12-07[tx-robot] updated from transifexNextcloud bot
2020-12-06[tx-robot] updated from transifexNextcloud bot
2020-11-26[tx-robot] updated from transifexNextcloud bot
2020-11-19[tx-robot] updated from transifexNextcloud bot
2020-11-08[tx-robot] updated from transifexNextcloud bot
2020-11-03[tx-robot] updated from transifexNextcloud bot
2020-11-02[tx-robot] updated from transifexNextcloud bot
2020-11-01[tx-robot] updated from transifexNextcloud bot
2020-10-31[tx-robot] updated from transifexNextcloud bot
2020-10-28[tx-robot] updated from transifexNextcloud bot
2020-10-27[tx-robot] updated from transifexNextcloud bot
2020-10-24[tx-robot] updated from transifexNextcloud bot
2020-10-23[tx-robot] updated from transifexNextcloud bot
2020-10-22[tx-robot] updated from transifexNextcloud bot
2020-10-21[tx-robot] updated from transifexNextcloud bot
2020-08-25[tx-robot] updated from transifexNextcloud bot
2020-07-14Build source maps on production build againJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-07-07Do not quote properties when optimizing bundlesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-06-05[tx-robot] updated from transifexNextcloud bot
2020-04-29Merge pull request #20714 from nextcloud/fix/license-headers-19Christoph Wurst
Update license headers for 19
2020-04-29Update license headers for 19Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-29Bump webpack from 4.42.1 to 4.43.0dependabot-preview[bot]
Bumps [webpack](https://github.com/webpack/webpack) from 4.42.1 to 4.43.0. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.42.1...v4.43.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-04-14[tx-robot] updated from transifexNextcloud bot
2020-04-13Bump css-loader from 3.4.1 to 3.5.2dependabot-preview[bot]
Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 3.4.1 to 3.5.2. - [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.4.1...v3.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-04-10Add visibility to all constantsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Format control structures, classes, methods and functionChristoph Wurst
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Use elseif instead of else ifChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Remove trailing and in between spacesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Merge pull request #20383 from nextcloud/techdebt/function-spacingChristoph Wurst
Unify function spacing to PSR2 recommendation