Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Upgrade minor dependencies | Chocobozzz | 2022-01-18 | 1 | -122/+144 |
| | |||||
* | Upgrade uploadx dependency | Chocobozzz | 2022-01-18 | 1 | -6/+6 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2022-01-14 | 1 | -1319/+1328 |
| | |||||
* | Move to our own player hotkeys | Chocobozzz | 2022-01-13 | 1 | -5/+0 |
| | |||||
* | Fix hls upload stats | Chocobozzz | 2022-01-10 | 1 | -8/+8 |
| | |||||
* | Webpack is a dev dependency | Chocobozzz | 2022-01-03 | 1 | -1/+1 |
| | |||||
* | Upgrade client dep | Chocobozzz | 2021-12-24 | 1 | -1558/+1422 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-11-29 | 1 | -111/+143 |
| | |||||
* | Remove duplicate IDs | Chocobozzz | 2021-11-29 | 1 | -4/+4 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2021-11-22 | 1 | -578/+728 |
| | |||||
* | Update xliffmerge | Chocobozzz | 2021-11-15 | 1 | -42/+20 |
| | |||||
* | Update angular | Chocobozzz | 2021-11-10 | 1 | -1711/+850 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-11-10 | 1 | -1876/+1592 |
| | |||||
* | Migrate to @peertube/videojs-contextmenu | Chocobozzz | 2021-10-26 | 1 | -8/+8 |
| | | | | To fix a bug with latest videojs | ||||
* | Improve playback with bad redundancies | Chocobozzz | 2021-10-14 | 1 | -9/+8 |
| | |||||
* | Upgrade linkifyjs | Chocobozzz | 2021-10-12 | 1 | -4/+14 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-10-12 | 1 | -1194/+1456 |
| | |||||
* | Cleanup player quality change | Chocobozzz | 2021-09-10 | 1 | -8/+0 |
| | |||||
* | Compat embed with ios 11 | Chocobozzz | 2021-09-01 | 1 | -6/+93 |
| | |||||
* | Migrate to webdriverio | Chocobozzz | 2021-09-01 | 1 | -684/+1781 |
| | |||||
* | Try to fix weird CI test crashes | Chocobozzz | 2021-08-27 | 1 | -0/+30 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-08-26 | 1 | -193/+256 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-08-19 | 1 | -296/+275 |
| | |||||
* | Migrate client to eslint | Chocobozzz | 2021-08-18 | 1 | -212/+864 |
| | |||||
* | Fix webpack config | Chocobozzz | 2021-08-17 | 1 | -9/+1 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-08-11 | 1 | -953/+1044 |
| | |||||
* | HLS v1 support | Chocobozzz | 2021-08-05 | 1 | -35/+61 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2021-06-25 | 1 | -1689/+1475 |
| | |||||
* | Upgrade angular to latest patch version | Chocobozzz | 2021-05-27 | 1 | -799/+585 |
| | |||||
* | Update embed webpack config | Chocobozzz | 2021-05-27 | 1 | -311/+66 |
| | |||||
* | Update angular cdk | Chocobozzz | 2021-05-27 | 1 | -5/+5 |
| | |||||
* | Remove ngx-meta | Chocobozzz | 2021-05-27 | 1 | -5/+0 |
| | | | | Unmaintained | ||||
* | Update to angular 12 | Chocobozzz | 2021-05-27 | 1 | -2233/+1729 |
| | |||||
* | Resumable video uploads (#3933) | kontrollanten | 2021-05-10 | 1 | -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 stylelint | Chocobozzz | 2021-04-28 | 1 | -562/+832 |
| | |||||
* | Revert sass loader upgrade | Chocobozzz | 2021-04-12 | 1 | -9/+1 |
| | | | | It only supports webpack 4 | ||||
* | Upgrade main client dependencies | Chocobozzz | 2021-04-12 | 1 | -531/+444 |
| | |||||
* | add loop toggle to the player contextmenu | Rigel Kent | 2021-04-12 | 1 | -7/+137 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2021-03-24 | 1 | -467/+555 |
| | |||||
* | Update client dependencies | Chocobozzz | 2021-02-25 | 1 | -690/+761 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2021-02-03 | 1 | -1433/+1029 |
| | |||||
* | Update angular | Chocobozzz | 2021-02-03 | 1 | -795/+1141 |
| | |||||
* | Use source sans 3 font | Chocobozzz | 2021-01-13 | 1 | -5/+0 |
| | |||||
* | Upgrade ng select to fix accessibility issues | Chocobozzz | 2020-12-29 | 1 | -4/+4 |
| | |||||
* | Use sass instead of deprecated node sass | Chocobozzz | 2020-11-19 | 1 | -368/+22 |
| | |||||
* | Upgrade client dependencies | Chocobozzz | 2020-11-19 | 1 | -2041/+2215 |
| | | | | Migrate removed primeng theme to custom CSS | ||||
* | HLS player fallback for non https context | Chocobozzz | 2020-11-10 | 1 | -0/+7 |
| | |||||
* | Fix audio sync after saving replay | Chocobozzz | 2020-11-09 | 1 | -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) | Kimsible | 2020-11-07 | 1 | -4/+4 |
| | | | | Co-authored-by: kimsible <kimsible@users.noreply.github.com> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> | ||||
* | Upgrade client dep' | Chocobozzz | 2020-08-25 | 1 | -622/+431 |
| |