aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/package.json
Commit message (Collapse)AuthorAgeFilesLines
* Bumped to version v4.0.0v4.0.0Chocobozzz2021-12-131-1/+1
|
* Bumped to version v4.0.0-rc.1v4.0.0-rc.1Chocobozzz2021-11-301-1/+1
|
* Remove duplicate IDsChocobozzz2021-11-291-1/+1
|
* Upgrade client dependenciesChocobozzz2021-11-221-11/+11
|
* Update xliffmergeChocobozzz2021-11-151-2/+1
|
* Update angularChocobozzz2021-11-101-22/+23
|
* Update client dependenciesChocobozzz2021-11-101-9/+9
|
* Migrate to @peertube/videojs-contextmenuChocobozzz2021-10-261-1/+1
| | | | To fix a bug with latest videojs
* Improve playback with bad redundanciesChocobozzz2021-10-141-2/+2
|
* Upgrade linkifyjsChocobozzz2021-10-121-1/+3
|
* Update client dependenciesChocobozzz2021-10-121-9/+9
|
* Merge branch 'next' into developChocobozzz2021-10-111-1/+0
|\
| * Cleanup player quality changeChocobozzz2021-09-101-1/+0
| |
* | Bumped to version v3.4.1Chocobozzz2021-10-111-1/+1
|/
* Bumped to version v3.4.0v3.4.0Chocobozzz2021-09-091-1/+1
|
* Compat embed with ios 11Chocobozzz2021-09-011-0/+3
|
* Migrate to webdriverioChocobozzz2021-09-011-10/+12
|
* Bumped to version v3.4.0-rc.1v3.4.0-rc.1Chocobozzz2021-08-311-1/+1
|
* Try to fix weird CI test crashesChocobozzz2021-08-271-0/+3
|
* Update client dependenciesChocobozzz2021-08-261-5/+5
|
* Migrate client to eslintChocobozzz2021-08-181-6/+13
|
* Fix webpack configChocobozzz2021-08-171-2/+1
|
* Remove solution style ts configChocobozzz2021-08-171-1/+1
|
* Update client dependenciesChocobozzz2021-08-111-9/+8
|
* HLS v1 supportChocobozzz2021-08-051-2/+3
|
* Bumped to version v3.3.0v3.3.0Chocobozzz2021-07-201-1/+1
|
* Bumped to version v3.3.0-rc.1v3.3.0-rc.1Chocobozzz2021-07-051-1/+1
|
* Upgrade client dependenciesChocobozzz2021-06-251-6/+3
|
* Bumped to version v3.2.1Chocobozzz2021-06-011-1/+1
|
* Upgrade angular to latest patch versionChocobozzz2021-05-271-5/+5
|
* Update embed webpack configChocobozzz2021-05-271-13/+12
|
* Update angular cdkChocobozzz2021-05-271-1/+1
|
* Remove ngx-metaChocobozzz2021-05-271-1/+0
| | | | Unmaintained
* Update to angular 12Chocobozzz2021-05-271-16/+16
|
* Bumped to version v3.2.0v3.2.0Chocobozzz2021-05-271-1/+1
|
* Bumped to version v3.2.0-rc.1v3.2.0-rc.1Chocobozzz2021-05-111-1/+1
|
* Resumable video uploads (#3933)kontrollanten2021-05-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-3/+4
|
* Revert sass loader upgradeChocobozzz2021-04-121-1/+1
| | | | It only supports webpack 4
* Upgrade main client dependenciesChocobozzz2021-04-121-7/+7
|
* add loop toggle to the player contextmenuRigel Kent2021-04-121-1/+1
|
* Bumped to version v3.1.0Chocobozzz2021-03-241-1/+1
|
* Bumped to version v3.1.0-rc.1v3.1.0-rc.1Chocobozzz2021-03-041-1/+1
|
* Update client dependenciesChocobozzz2021-02-251-1/+1
|
* Upgrade client dependenciesChocobozzz2021-02-031-12/+12
|
* Update angularChocobozzz2021-02-031-14/+14
|
* Use source sans 3 fontChocobozzz2021-01-131-1/+0
|
* Bumped to version v3.0.1v3.0.1Chocobozzz2021-01-121-1/+1
|
* Bumped to version v3.0.0v3.0.0Chocobozzz2021-01-071-1/+1
|
* Upgrade ng select to fix accessibility issuesChocobozzz2020-12-291-1/+1
|