aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos
Commit message (Collapse)AuthorAgeFilesLines
* Move privacy concerns in a dedicated componentChocobozzz2021-06-2910-143/+150
|
* Reorganize watch componentsChocobozzz2021-06-2937-10/+29
|
* Create a dedicated component for video descriptionChocobozzz2021-06-297-117/+158
|
* Create a dedicated component for video ratingChocobozzz2021-06-297-151/+198
|
* Support short uuid for GET video/playlistChocobozzz2021-06-297-25/+35
|
* Move to sass moduleChocobozzz2021-06-2816-32/+34
|
* Move to sass @useChocobozzz2021-06-2815-34/+34
|
* add client hook filter:videojs.optionskontrollanten2021-06-141-1/+5
| | | | closes #4086
* Add max rows to videos listChocobozzz2021-06-091-1/+1
|
* Fix console error when rewriting a commentChocobozzz2021-06-081-0/+3
|
* allow public video privacy to be deleted in the web clientRigel Kent2021-06-086-11/+4
|
* Bidi supportChocobozzz2021-06-0713-62/+118
|
* Speed up plugins loadingChocobozzz2021-06-042-2/+0
|
* Use HTML config when possibleChocobozzz2021-06-047-56/+49
|
* Refactor server errors handlerChocobozzz2021-06-023-8/+14
|
* refactor API errors to standard error formatRigel Kent2021-06-021-1/+1
|
* Fix live image aspect ratio in theatre modeChocobozzz2021-06-012-1/+5
|
* Support '/w/' and '/w/p/' for watch pageChocobozzz2021-05-288-33/+8
| | | | And use them as default in client
* Merge branch 'develop' into shorter-URLs-channels-accountsChocobozzz2021-05-2721-265/+344
|\
| * Remove ngx-metaChocobozzz2021-05-275-12/+5
| | | | | | | | 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.
| * Instance homepage support (#4007)Chocobozzz2021-05-272-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Prepare homepage parsers * Add ability to update instance hompage * Add ability to set homepage as landing page * Add homepage preview in admin * Dynamically update left menu for homepage * Inject home content in homepage * Add videos list and channel miniature custom markup * Remove unused elements in markup service
| * Merge branch 'release/3.2.0' into developChocobozzz2021-05-261-0/+3
| |\
| | * Fix UI overflowsChocobozzz2021-05-261-0/+3
| | |
| * | Merge branch 'release/3.2.0' into developChocobozzz2021-05-251-1/+1
| |\|
| | * Fix live ending bannerChocobozzz2021-05-251-1/+1
| | |
| * | Inject server config in HTMLChocobozzz2021-05-142-10/+9
| | |
| * | 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
| |
* | Make /a and /c default URLs for accounts and channelsKimsible2021-05-054-7/+7
|/
* Fix miniature avatar sizeChocobozzz2021-05-051-1/+3
|
* Move to stylelintChocobozzz2021-04-2813-34/+44
|
* Remove avatarUrl from modelsChocobozzz2021-04-283-50/+37
|
* Refactor actor avatar displayChocobozzz2021-04-2811-22/+30
|
* Clearer nsfw "do not list" labelChocobozzz2021-04-281-1/+1
|
* Fix playlist position errorChocobozzz2021-04-271-2/+2
|
* Added ability to reply to comments with remote interactionPoslovitch2021-04-261-2/+2
| | | | Implements https://github.com/Chocobozzz/PeerTube/issues/3725
* Added "last" and a reversed ?playlistPosition in playlist URL (#3974)Florian CUNY2021-04-262-1/+15
| | | | | | | | | | | | | | | | | * Added "last" and a reversed playlistPosition Implements https://github.com/Chocobozzz/PeerTube/issues/3897 * Fixed lint errors in video-watch component * Applied requested changes * Removed debug logs * Fixed lint * Playlist position styling Co-authored-by: Chocobozzz <me@florianbigard.com>
* Refactor next/prev logicChocobozzz2021-04-261-33/+20
|
* Fixed lint errorPoslovitch2021-04-261-2/+4
|
* Fixed "previous" button showing when not watching a playlistPoslovitch2021-04-261-4/+5
|
* Added a "previous" button on player when watching playlistPoslovitch2021-04-262-0/+31
| | | | Implements https://github.com/Chocobozzz/PeerTube/issues/3485
* Add ability to hide plugin form fieldsChocobozzz2021-04-224-17/+24
|
* Revert "Fix context menu when watching a playlist"Chocobozzz2021-04-211-16/+1
| | | | | | This reverts commit e8bb5b6b3a1e4c2aeab368f01cc5092d8478b893. We'll refactor this error handler in hls.js v1 upgrade
* Fix context menu when watching a playlistChocobozzz2021-04-211-1/+16
|