aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/yarn.lock
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade client dependenciesChocobozzz2021-06-251-1689/+1475
|
* Upgrade angular to latest patch versionChocobozzz2021-05-271-799/+585
|
* Update embed webpack configChocobozzz2021-05-271-311/+66
|
* Update angular cdkChocobozzz2021-05-271-5/+5
|
* Remove ngx-metaChocobozzz2021-05-271-5/+0
| | | | Unmaintained
* Update to angular 12Chocobozzz2021-05-271-2233/+1729
|
* Resumable video uploads (#3933)kontrollanten2021-05-101-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Move to stylelintChocobozzz2021-04-281-562/+832
|
* Revert sass loader upgradeChocobozzz2021-04-121-9/+1
| | | | It only supports webpack 4
* Upgrade main client dependenciesChocobozzz2021-04-121-531/+444
|
* add loop toggle to the player contextmenuRigel Kent2021-04-121-7/+137
|
* Upgrade client dependenciesChocobozzz2021-03-241-467/+555
|
* Update client dependenciesChocobozzz2021-02-251-690/+761
|
* Upgrade client dependenciesChocobozzz2021-02-031-1433/+1029
|
* Update angularChocobozzz2021-02-031-795/+1141
|
* Use source sans 3 fontChocobozzz2021-01-131-5/+0
|
* Upgrade ng select to fix accessibility issuesChocobozzz2020-12-291-4/+4
|
* Use sass instead of deprecated node sassChocobozzz2020-11-191-368/+22
|
* Upgrade client dependenciesChocobozzz2020-11-191-2041/+2215
| | | | Migrate removed primeng theme to custom CSS
* HLS player fallback for non https contextChocobozzz2020-11-101-0/+7
|
* Fix audio sync after saving replayChocobozzz2020-11-091-4/+4
| | | | | hls.js seems to not correctly handle audio gaps with fragmented mp4 (but can with a ts playlist)
* render html/markdown for new comment notification email (#3255)Kimsible2020-11-071-4/+4
| | | | Co-authored-by: kimsible <kimsible@users.noreply.github.com> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
* Upgrade client dep'Chocobozzz2020-08-251-622/+431
|
* Update angular to fix localize extraction bugChocobozzz2020-08-251-99/+114
|
* Remove unused markdown-it-emoji types dependencykimsible2020-08-141-8/+1
|
* Add unicode emoji to markdownkimsible2020-08-141-1/+13
|
* Migrate to $localizeChocobozzz2020-08-141-79/+45
| | | | | | | | | | | | * Remove i18n polyfill to translate things in components * Reduce bundle sizes * Improve runtime perf * Reduce a lot the time to make a full client build * Reduce client build complexity * We don't need a service to translate things anymore (so we will be able to translate title pages etc) Unfortunately we may loose some translations in the migration process. I'll put a message on weblate to notify translators
* Remove angular pipes moduleChocobozzz2020-08-111-7/+0
|
* add ng-select for templatable select optionsRigel Kent2020-08-111-15/+7
| | | | | | | - create select-tags component to replace ngx-chips - create select-options to factorize option selection in forms - create select-channel to simplify channel selection - refactor tags validation
* Upgrade to angular 10Chocobozzz2020-08-071-1813/+1929
|
* Fix player hotkeys part 2Chocobozzz2020-08-031-4/+4
|
* Upgrade videojs hotkeys libChocobozzz2020-06-231-4/+4
|
* Update client dependenciesChocobozzz2020-06-171-1329/+1272
|
* Cleanup client dependenciesChocobozzz2020-06-091-4/+105
|
* Use tslib in clientChocobozzz2020-06-091-0/+5
|
* Add ar-001 localeChocobozzz2020-06-041-146/+154
|
* fix duplicate id in svg, empty alt in base emailRigel Kent2020-06-041-1/+1
|
* Update translationsChocobozzz2020-05-111-181/+186
|
* Update client dependenciesChocobozzz2020-05-061-697/+877
|
* Revert partially "Update client angular"Chocobozzz2020-04-201-51/+51
| | | | | | This reverts commit 7a9f9c46261062fb7b718395a8f71c1b742764d4. Breaks canDeactivate on child route
* Update client angularChocobozzz2020-04-201-52/+52
|
* Update angularChocobozzz2020-04-141-350/+326
|
* Fix videojs subtitlesChocobozzz2020-04-081-5/+0
|
* Upgrade client dep' to fix primeng bugChocobozzz2020-04-021-41/+47
|
* Client dependencies upgradeChocobozzz2020-04-011-2192/+2033
|
* Use inner join and document code for viewr stats for channelsRigel Kent2020-03-311-0/+7
|
* Update hls.jsChocobozzz2020-02-281-4/+4
| | | | Seems to fix a bug when we manually update resolution
* Remove unused modulesChocobozzz2020-02-101-49/+5
|
* Use angular 9 clipboard cdkChocobozzz2020-02-101-15/+0
|
* Support i18n buildChocobozzz2020-02-101-5/+49
|