aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-edit
Commit message (Collapse)AuthorAgeFilesLines
* Fix user quota alerts always displayed (#4354)Ms Kimsible2021-08-263-7/+40
| | | | | | | * Fix user quota alerts display on upload page * Fix border-radius upload messages alerts Co-authored-by: Ms Kimsible <kimsible@users.noreply.github.com>
* Inform user to fill account profile and channels (#4352)Ms Kimsible2021-08-261-0/+2
| | | | | | | * Add account-setup modal when login * Add channels-setup alert into my-channels, my-playlists and upload page Co-authored-by: Ms Kimsible <kimsible@users.noreply.github.com>
* Update upload message filter hook nameChocobozzz2021-08-251-1/+1
|
* Alert user for low quota and video auto-block on upload page (#4336)Ms Kimsible2021-08-253-16/+82
| | | | | | | | | | | | | | | | | | | | | | | * Replace wording of instance contact * Add contact-us button to no-quota alert on upload page * Add alert for accounts with auto-blocked videos on upload page * Add alert for accounts without enough quota + refacto on upload page * Using ng-container and ng-template * Add alert for daily quota * Add hook filter for upload page alert messages * Add instance name as subtitle in contact modal * Fix eslint max-len on string * Fix missing word in quota left daily message - upload page Co-authored-by: Kimsible <kimsible@users.noreply.github.com>
* Fix live/upload redirectionChocobozzz2021-08-182-3/+10
|
* Migrate client to eslintChocobozzz2021-08-1814-29/+31
|
* Fix client lintChocobozzz2021-08-175-110/+113
|
* Merge branch 'release/3.3.0' into developChocobozzz2021-07-302-39/+43
|\
| * Hide schedule privacy if private does not existChocobozzz2021-07-302-39/+43
| |
* | Refactor video links buildingChocobozzz2021-07-261-1/+1
| |
* | Refactor requestsChocobozzz2021-07-201-2/+1
|/
* Fix default privacy when plugins deleted privateChocobozzz2021-07-136-6/+13
|
* Support short uuid for GET video/playlistChocobozzz2021-06-294-12/+16
|
* Move to sass moduleChocobozzz2021-06-286-12/+12
|
* Move to sass @useChocobozzz2021-06-286-12/+12
|
* allow public video privacy to be deleted in the web clientRigel Kent2021-06-086-11/+4
|
* Bidi supportChocobozzz2021-06-072-10/+11
|
* Speed up plugins loadingChocobozzz2021-06-041-1/+0
|
* Use HTML config when possibleChocobozzz2021-06-044-18/+12
|
* Refactor server errors handlerChocobozzz2021-06-022-5/+9
|
* Support '/w/' and '/w/p/' for watch pageChocobozzz2021-05-284-4/+4
| | | | And use them as default in client
* Remove ngx-metaChocobozzz2021-05-272-4/+2
| | | | Unmaintained
* change license to licenceFrank Sträter2021-05-271-1/+1
| | | | | | Change "license" to "licence" for consistency in the user interface in English. License is both a noun and a verb in the United States. If you live in any other English-speaking country, you will spell it "licence" when you use it as a noun and "license" when you use it as a verb.
* Remember tab in upload pageChocobozzz2021-05-112-7/+23
|
* Error if importing a torrent with multiple filesChocobozzz2021-05-111-2/+8
|
* Reorganize plugin modelsChocobozzz2021-05-111-2/+9
|
* Fix paused upload messageChocobozzz2021-05-111-1/+1
|
* Resumable video uploads (#3933)kontrollanten2021-05-105-140/+232
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: resumable video uploads relates to #324 * fix review comments * video upload: error handling * fix audio upload * fixes after self review * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/middlewares/validators/videos/videos.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * update after code review * refactor upload route - restore multipart upload route - move resumable to dedicated upload-resumable route - move checks to middleware - do not leak internal fs structure in response * fix yarn.lock upon rebase * factorize addVideo for reuse in both endpoints * add resumable upload API to openapi spec * add initial test and test helper for resumable upload * typings for videoAddResumable middleware * avoid including aws and google packages via node-uploadx, by only including uploadx/core * rename ex-isAudioBg to more explicit name mentioning it is a preview file for audio * add video-upload-tmp-folder-cleaner job * stronger typing of video upload middleware * reduce dependency to @uploadx/core * add audio upload test * refactor resumable uploads cleanup from job to scheduler * refactor resumable uploads scheduler to compare to last execution time * make resumable upload validator to always cleanup on failure * move legacy upload request building outside of uploadVideo test helper * filter upload-resumable middlewares down to POST, PUT, DELETE also begin to type metadata * merge add duration functions * stronger typings and documentation for uploadx behaviour, move init validator up * refactor(client/video-edit): options > uploadxOptions * refactor(client/video-edit): remove obsolete else * scheduler/remove-dangling-resum: rename tag * refactor(server/video): add UploadVideoFiles type * refactor(mw/validators): restructure eslint disable * refactor(mw/validators/videos): rename import * refactor(client/vid-upload): rename html elem id * refactor(sched/remove-dangl): move fn to method * refactor(mw/async): add method typing * refactor(mw/vali/video): double quote > single * refactor(server/upload-resum): express use > all * proper http methud enum server/middlewares/async.ts * properly type http methods * factorize common video upload validation steps * add check for maximum partially uploaded file size * fix audioBg use * fix extname(filename) in addVideo * document parameters for uploadx's resumable protocol * clear META files in scheduler * last audio refactor before cramming preview in the initial POST form data * refactor as mulitpart/form-data initial post request this allows preview/thumbnail uploads alongside the initial request, and cleans up the upload form * Add more tests for resumable uploads * Refactor remove dangling resumable uploads * Prepare changelog * Add more resumable upload tests * Remove user quota check for resumable uploads * Fix upload error handler * Update nginx template for upload-resumable * Cleanup comment * Remove unused express methods * Prefer to use got instead of raw http * Don't retry on error 500 Co-authored-by: Rigel Kent <par@rigelk.eu> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> Co-authored-by: Chocobozzz <me@florianbigard.com>
* Sort channels by -updatedAtChocobozzz2021-05-101-13/+5
|
* Refactor video edit cssChocobozzz2021-05-072-75/+46
|
* Move to stylelintChocobozzz2021-04-284-9/+9
|
* Clearer nsfw "do not list" labelChocobozzz2021-04-281-1/+1
|
* Add ability to hide plugin form fieldsChocobozzz2021-04-224-17/+24
|
* Refactor modal buttons styleChocobozzz2021-04-141-2/+2
|
* Theme breaking: --submenuColor becomes --submenuBackgroundColorChocobozzz2021-03-312-4/+4
|
* Add client action hooks for pubish pagesChocobozzz2021-03-244-18/+38
|
* Fix async issues with channels listChocobozzz2021-02-251-3/+6
|
* Add ability to set a custom quotaChocobozzz2021-02-103-4/+7
|
* Force update live booleanChocobozzz2021-01-261-5/+2
|
* Don't update live attributes if they did not changeChocobozzz2021-01-261-5/+13
|
* Fix wait transcoding checkbox displayChocobozzz2021-01-268-32/+30
|
* Import in private, and then set the chosen privacyChocobozzz2021-01-193-3/+7
|
* Cleanup update video buttonChocobozzz2021-01-195-40/+13
|
* Fix some accessibility issuesChocobozzz2020-12-223-4/+10
|
* Don't display max duration if disabledChocobozzz2020-12-161-1/+1
|
* Add link to the documentation for live streamingChocobozzz2020-12-141-0/+3
|
* emit more specific status codes on video upload (#3423)Rigel Kent2020-12-081-8/+14
| | | | | - reduce http status codes list to potentially useful codes - convert more codes to typed ones - factorize html generator for error responses
* Use new primeng i18n apiChocobozzz2020-12-072-7/+7
|
* unify inputs requiring buttons like password inputsRigel Kent2020-12-041-2/+2
|
* Add permanent live supportChocobozzz2020-12-034-3/+42
|