aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.ts
Commit message (Collapse)AuthorAgeFilesLines
* Fix various typosluz paz2022-06-071-1/+1
| | | Found via `codespell -q 3 -S ./CREDITS.md,./CHANGELOG.md,./client/src/locale,./yarn.lock,./client/yarn.lock -L doubleclick,followings,nd,ot,ro,serie,splitted,tread,truthy`
* Add ability to set default feed items countChocobozzz2022-05-241-7/+0
|
* Improve admin users list tableChocobozzz2022-05-241-1/+1
| | | | | | * Fix last login sort with null values * Remember last selected columns * Display last login date by default
* Add ability to set a custom video import timeoutChocobozzz2022-05-241-1/+1
|
* Don't sign (created) when using rsa-sha256Chocobozzz2022-05-091-1/+1
|
* Handle HTTP signature draft 11Chocobozzz2022-05-061-5/+1
|
* Add ability to filter overall video stats by dateChocobozzz2022-05-061-1/+1
|
* Support live session in serverChocobozzz2022-05-031-1/+1
|
* Add ability to provide rtmp listening hostnameChocobozzz2022-05-021-2/+5
|
* Add missing video mime typesChocobozzz2022-04-201-0/+10
|
* Improve viewer counterChocobozzz2022-04-151-1/+1
| | | | More precise, avoid weird decrease, reuse an id to federate viewers
* Improve views/viewers documentationChocobozzz2022-04-151-2/+2
|
* Support video views/viewers stats in serverChocobozzz2022-04-151-2/+15
| | | | | | | | | | * Add "currentTime" and "event" body params to view endpoint * Merge watching and view endpoints * Introduce WatchAction AP activity * Add tables to store viewer information of local videos * Add endpoints to fetch video views/viewers stats of local videos * Refactor views/viewers handlers * Support "views" and "viewers" counters for both VOD and live videos
* Rename studio to editorChocobozzz2022-03-221-4/+4
|
* Add video edition finished notificationChocobozzz2022-03-221-1/+1
|
* Don't store remote rates of remote videosChocobozzz2022-03-181-1/+1
| | | | | In the future we'll stop to expose all available rates to improve users privacy
* Process video torrents in orderChocobozzz2022-03-161-0/+3
| | | | Prevent update before video torrent generation for example
* Add latency setting supportChocobozzz2022-03-091-3/+7
|
* Remove uneeded memoizeChocobozzz2022-03-081-3/+1
|
* Possibility to set custom RTMP/RTMPS hostname (#4811)kontrollanten2022-03-011-2/+2
| | | | | | | | | * live: set custom RTMP/RTMPS hostname closes #4786 * dont use webserver.hostname as default * check that rtmp/s.hostname is set
* Fix client html performance regressionChocobozzz2022-02-281-1/+3
|
* Add basic video editor supportChocobozzz2022-02-281-1/+21
|
* Implement avatar miniatures (#4639)kontrollanten2022-02-281-11/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * client: remove unused file * refactor(client/my-actor-avatar): size from input Read size from component input instead of scss, to make it possible to use smaller avatar images when implemented. * implement avatar miniatures close #4560 * fix(test): max file size * fix(search-index): normalize res acc to avatarMini * refactor avatars to an array * client/search: resize channel avatar to 120 * refactor(client/videos): remove unused function * client(actor-avatar): set default size * fix tests and avatars full result When findOne is used only an array containting one avatar is returned. * update migration version and version notations * server/search: harmonize normalizing * Cleanup avatar miniature PR Co-authored-by: Chocobozzz <me@florianbigard.com>
* Fix video file storage column consistencyChocobozzz2022-02-221-1/+1
|
* Fix import timeout inconsistencyChocobozzz2022-02-091-1/+1
|
* Add ability to cancel & delete video importsChocobozzz2022-01-191-1/+3
|
* Add simplified/traditional chinese languagesChocobozzz2022-01-171-0/+4
|
* Increase captions max sizeChocobozzz2022-01-141-1/+1
|
* Cleanup unavailable remote AP resourceChocobozzz2021-12-281-3/+12
|
* Don't stuck state when move transcoding job failedChocobozzz2021-12-231-1/+2
|
* Move test functions outside extra-utilsChocobozzz2021-12-171-2/+1
|
* Add ability for admins to set default p2p policyChocobozzz2021-12-161-1/+1
|
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-161-1/+2
| | | | | | | | | | | Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
* Added "zxx" (no linguistic content) in available video languages (#4631)Florian CUNY2021-12-131-1/+3
| | | | | | | | | | | | | * Added "zxx" (no linguistic content) in available video languages Implements https://github.com/Chocobozzz/PeerTube/issues/1489 * FIx lint * Fix lint * Put other languages below instance languages Co-authored-by: Chocobozzz <me@florianbigard.com>
* Decrease time to cleanup resumable uploadsChocobozzz2021-12-031-1/+1
|
* Fix redundancy timeoutChocobozzz2021-11-291-2/+7
|
* Refactor video viewsChocobozzz2021-11-091-10/+10
| | | | | | | | Introduce viewers attribute for live videos Count views for live videos Reduce delay to see the viewer update for lives Add ability to configure video views buffer interval and view ip expiration
* video: add video stranscoding_failed statekontrollanten2021-11-091-1/+2
|
* Support RTMPSChocobozzz2021-11-051-1/+3
|
* Made the video channels limit (per user) server-wide configurable (#4491)Florian CUNY2021-10-261-5/+0
| | | | | | | | | | | | | | | * Made the video channels limit (per user) server-wide configurable Implements https://github.com/Chocobozzz/PeerTube/issues/3092 Also added a "quota bar" in the account's settings page * Fixed lint errors * Another pass at fixing lint errors * Applied code suggestions * Removed 'video channels quota'
* prevent multiple post-process triggering of upload-resumable (#4175)Rigel Kent2021-10-251-0/+3
| | | | | | | | | * prevent multiple post-process triggering of upload-resumable * switch from 409 to 503 for upload being processed * Improve resumable upload check Co-authored-by: Chocobozzz <me@florianbigard.com>
* Completely remove torrent static pathChocobozzz2021-10-221-1/+0
|
* Constants consistencyChocobozzz2021-10-221-19/+19
|
* Rewrite youtube-dl importChocobozzz2021-10-221-0/+7
| | | | | | | | Use python3 binary Allows to use a custom youtube-dl release URL Allows to use yt-dlp (youtube-dl fork) Remove proxy config from configuration to use HTTP_PROXY and HTTPS_PROXY env variables
* Add ability to view my followersChocobozzz2021-10-201-0/+3
|
* Refactor sort middlewaresChocobozzz2021-10-201-2/+2
|
* Process slow followers in unicast job queueChocobozzz2021-10-131-4/+4
|
* Don't use min FPS, throw insteadChocobozzz2021-10-121-1/+1
| | | | Avoir creating a big output from a very low FPS input file
* Add latin to languagesChocobozzz2021-09-071-0/+2
|
* Fix pending job table migrationChocobozzz2021-08-301-1/+1
|