From 1bf94c18f75f222e8f7852d45d3ecfa7798c7106 Mon Sep 17 00:00:00 2001 From: David Greminger Date: Mon, 5 Feb 2024 13:14:22 +0100 Subject: [PATCH] Rename branch master to main --- .github/workflows/ci.yml | 2 +- README.md | 8 ++++---- doc/frontend_blueimp.md | 2 +- doc/frontend_dropzone.md | 2 +- doc/frontend_fancyupload.md | 2 +- doc/frontend_fineuploader.md | 2 +- doc/frontend_mooupload.md | 2 +- doc/frontend_plupload.md | 2 +- doc/frontend_uploadify.md | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c78c8b71..24eb0202 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: pull_request: ~ push: branches: - - master + - main tags: - '*' diff --git a/README.md b/README.md index c59bc591..a71ab814 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ OneupUploaderBundle [![CI](https://github.com/1up-lab/OneupUploaderBundle/workflows/CI/badge.svg)](https://github.com/1up-lab/OneupUploaderBundle/actions) [![Total Downloads](https://poser.pugx.org/oneup/uploader-bundle/d/total.png)](https://packagist.org/packages/oneup/uploader-bundle) -The OneupUploaderBundle for Symfony adds support for handling file uploads using one of the following JavaScript libraries, or [your own implementation](https://github.com/1up-lab/OneupUploaderBundle/blob/master/doc/custom_uploader.md). +The OneupUploaderBundle for Symfony adds support for handling file uploads using one of the following JavaScript libraries, or [your own implementation](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/custom_uploader.md). * [Dropzone](http://www.dropzonejs.com/) * [jQuery File Upload](http://blueimp.github.io/jQuery-File-Upload/) @@ -30,7 +30,7 @@ Documentation The entry point of the documentation can be found in the file `docs/index.md` -[Read the documentation for master](https://github.com/1up-lab/OneupUploaderBundle/blob/master/doc/index.md) +[Read the documentation for main](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md) Upgrade Notes ------------- @@ -41,8 +41,8 @@ Upgrade Notes * Version **1.5.0** supports now [Flysystem](https://github.com/1up-lab/OneupFlysystemBundle) (Thank you @[lsv](https://github.com/lsv)! PR [#213](https://github.com/1up-lab/OneupUploaderBundle/pull/213)) and is no longer compatible with PHP 5.3 (it's [EOL](http://php.net/eol.php) since August 2014 anyway). * Version **v1.0.0** introduced some backward compatibility breaks. For a full list of changes, head to the [dedicated pull request](https://github.com/1up-lab/OneupUploaderBundle/pull/57). * If you're using chunked uploads consider upgrading from **v0.9.6** to **v0.9.7**. A critical issue was reported regarding the assembly of chunks. More information in ticket [#21](https://github.com/1up-lab/OneupUploaderBundle/issues/21#issuecomment-21560320). -* Error management [changed](https://github.com/1up-lab/OneupUploaderBundle/pull/25) in Version **0.9.6**. You can now register an `ErrorHandler` per configured frontend. This comes bundled with some adjustments to the `blueimp` controller. More information is available in [the documentation](https://github.com/1up-lab/OneupUploaderBundle/blob/master/doc/custom_error_handler.md). -* Event dispatching [changed](https://github.com/1up-lab/OneupUploaderBundle/commit/a408548b241f47af3539b2137c1817a21a51fde9) in Version **0.9.5**. The dispatching is now handled in the `upload*` functions. So if you have created your own implementation, be sure to remove the call to the `dispatchEvents` function, otherwise it will be called twice. Furthermore no `POST_UPLOAD` event will be fired anymore after uploading a chunk. You can get more information on this topic in the [documentation](https://github.com/1up-lab/OneupUploaderBundle/blob/master/doc/custom_logic.md#using-chunked-uploads). +* Error management [changed](https://github.com/1up-lab/OneupUploaderBundle/pull/25) in Version **0.9.6**. You can now register an `ErrorHandler` per configured frontend. This comes bundled with some adjustments to the `blueimp` controller. More information is available in [the documentation](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/custom_error_handler.md). +* Event dispatching [changed](https://github.com/1up-lab/OneupUploaderBundle/commit/a408548b241f47af3539b2137c1817a21a51fde9) in Version **0.9.5**. The dispatching is now handled in the `upload*` functions. So if you have created your own implementation, be sure to remove the call to the `dispatchEvents` function, otherwise it will be called twice. Furthermore no `POST_UPLOAD` event will be fired anymore after uploading a chunk. You can get more information on this topic in the [documentation](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/custom_logic.md#using-chunked-uploads). * Event names [changed](https://github.com/1up-lab/OneupUploaderBundle/commit/f5d5fe4b6f7b9a04ce633acbc9c94a2dd0e0d6be) in Version **0.9.3**, update your EventListener accordingly. License diff --git a/doc/frontend_blueimp.md b/doc/frontend_blueimp.md index db30fdf7..86ba4ef0 100644 --- a/doc/frontend_blueimp.md +++ b/doc/frontend_blueimp.md @@ -46,7 +46,7 @@ security: Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_dropzone.md b/doc/frontend_dropzone.md index c6b2c642..e1cb5725 100644 --- a/doc/frontend_dropzone.md +++ b/doc/frontend_dropzone.md @@ -26,7 +26,7 @@ Be sure to check out the [official manual](http://www.dropzonejs.com/) for detai Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_fancyupload.md b/doc/frontend_fancyupload.md index 09896f0e..5cf7bb53 100644 --- a/doc/frontend_fancyupload.md +++ b/doc/frontend_fancyupload.md @@ -110,7 +110,7 @@ Be sure to check out the [official manual](http://digitarald.de/project/fancyupl Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_fineuploader.md b/doc/frontend_fineuploader.md index 8519f972..0976de57 100644 --- a/doc/frontend_fineuploader.md +++ b/doc/frontend_fineuploader.md @@ -38,7 +38,7 @@ Be sure to check out the [official manual](https://github.com/FineUploader/fine- Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_mooupload.md b/doc/frontend_mooupload.md index 6a1db2c8..68e1ac04 100644 --- a/doc/frontend_mooupload.md +++ b/doc/frontend_mooupload.md @@ -37,7 +37,7 @@ Be sure to check out the [official manual](https://github.com/juanparati/MooUplo Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_plupload.md b/doc/frontend_plupload.md index 0c2e01de..3dac128f 100644 --- a/doc/frontend_plupload.md +++ b/doc/frontend_plupload.md @@ -52,7 +52,7 @@ security: Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md) diff --git a/doc/frontend_uploadify.md b/doc/frontend_uploadify.md index ec7bcc99..0e005d9e 100644 --- a/doc/frontend_uploadify.md +++ b/doc/frontend_uploadify.md @@ -39,7 +39,7 @@ Be sure to check out the [official manual](http://www.uploadify.com/documentatio Next steps ---------- -After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/master/Resources/doc/index.md#next-steps). +After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps). * [Process uploaded files using custom logic](custom_logic.md) * [Return custom data to frontend](response.md)