aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone
Commit message (Collapse)AuthorAgeFilesLines
* Add video chapters supportChocobozzz2023-08-283-6/+28
|
* Migrate server to ESMChocobozzz2023-08-119-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports)
* Rename player embed apiChocobozzz2023-07-1011-4/+7
|
* Remove webtorrent support from clientChocobozzz2023-07-106-281/+251
|
* Fix lintChocobozzz2023-06-291-2/+2
|
* Support storyboards in embedChocobozzz2023-06-293-8/+53
|
* Feature/password protected videos (#5836)Wicklow2023-06-297-24/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add server endpoints * Refactoring test suites * Update server and add openapi documentation * fix compliation and tests * upload/import password protected video on client * add server error code * Add video password to update resolver * add custom message when sharing pw protected video * improve confirm component * Add new alert in component * Add ability to watch protected video on client * Cannot have password protected replay privacy * Add migration * Add tests * update after review * Update check params tests * Add live videos test * Add more filter test * Update static file privacy test * Update object storage tests * Add test on feeds * Add missing word * Fix tests * Fix tests on live videos * add embed support on password protected videos * fix style * Correcting data leaks * Unable to add password protected privacy on replay * Updated code based on review comments * fix validator and command * Updated code based on review comments
* Remove suppressImplicitAnyIndexErrorsChocobozzz2023-05-243-6/+6
| | | | It's deprecated by TS
* Fix lintChocobozzz2023-05-242-1/+2
|
* Avoid always resuming the end of the videoChocobozzz2023-02-251-0/+1
|
* Move to new documentation linksChocobozzz2023-02-221-1/+1
|
* Fix buildChocobozzz2022-12-291-0/+4
|
* Don't not autoplay live without autoplay settingChocobozzz2022-12-142-19/+16
|
* Fix client lintChocobozzz2022-11-152-5/+5
|
* Force autoplay when live startsChocobozzz2022-11-152-12/+37
| | | | Using the mute
* Correctly terminate an ended liveChocobozzz2022-11-152-15/+44
|
* Fix embed api with playlistsChocobozzz2022-11-142-7/+44
|
* Fix token injection if unlogged userChocobozzz2022-10-271-0/+2
|
* Fix testsChocobozzz2022-10-241-1/+1
|
* Put private videos under a specific subdirectoryChocobozzz2022-10-244-27/+52
|
* Merge branch 'release/4.3.0' into developChocobozzz2022-10-243-2/+16
|\
| * Fix broken player on live reloadChocobozzz2022-10-242-2/+13
| |
| * Fix reloading new live session in embedChocobozzz2022-10-241-0/+3
| |
* | Add ability for plugins to register ws routesChocobozzz2022-10-111-0/+1
|/
* Update player embed api versionChocobozzz2022-09-091-1/+1
|
* Fix removeListener if player embed apiChocobozzz2022-09-091-1/+1
|
* Add playback metric endpoint sent to OTELChocobozzz2022-08-161-0/+1
|
* Don't autoplay in embed with waiting/ended liveChocobozzz2022-08-111-0/+5
|
* Add ability for client to create server logsChocobozzz2022-07-189-18/+33
|
* Put instance name in embed buttonChocobozzz2022-06-283-20/+9
|
* Merge branch 'release/4.2.0' into developChocobozzz2022-06-201-1/+6
|\
| * Don't break player on ice errorChocobozzz2022-06-201-1/+6
| | | | | | | | | | I don't really know why the ice error is not catched by simple-peer, where it should according to the code
* | Add live autostart/messages in embedChocobozzz2022-05-315-2/+111
| |
* | Refactor embedChocobozzz2022-05-3111-702/+997
|/
* Add control bar option for peertube playerChocobozzz2022-05-201-0/+9
|
* Support more plugin helpers in embedChocobozzz2022-03-231-7/+26
|
* Reorganize player filesChocobozzz2022-03-141-5/+4
|
* Add latency setting supportChocobozzz2022-03-091-5/+23
|
* Display avatar in embed posterChocobozzz2022-03-082-4/+12
|
* Fast forward on HLS decode errorChocobozzz2022-02-021-3/+6
|
* Fix error display for embedsChocobozzz2021-12-231-0/+6
|
* Add ability to disable p2p in embed with URLChocobozzz2021-12-161-2/+4
|
* Use different p2p policy for embeds and webappChocobozzz2021-12-161-1/+1
|
* Add ability for admins to set default p2p policyChocobozzz2021-12-161-7/+21
|
* Add ability for plugins to register client routesChocobozzz2021-12-101-1/+1
|
* @peertube/embed-api 0.0.Chocobozzz2021-10-261-1/+1
| | | | 5
* Fix privacy concern for remote videosChocobozzz2021-10-211-1/+1
|
* Merge branch 'next' into developChocobozzz2021-10-112-62/+14
|\
| * Fix embed apiChocobozzz2021-09-102-38/+5
| |
| * Cleanup player quality changeChocobozzz2021-09-101-26/+11
| |