aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
Commit message (Collapse)AuthorAgeFilesLines
* fix missing title attribute on <iframe> tag suggested for embedding (#3901)Thavarasa Prasanth2021-03-311-0/+18
| | | | | | | | | | | | | * title attribute is missing on <iframe> tag suggested for embedding #3861 * fix #3901 * fix: escapeHTML #3901 * fix: playlist title instead of video title #3901 * fix #3901 * assign title directly #3901
* Add auth user client hook actionsChocobozzz2021-03-241-0/+6
|
* Add client action hooks for pubish pagesChocobozzz2021-03-241-0/+9
|
* Add server hooks for search endpointChocobozzz2021-03-241-0/+10
|
* Add filter hook to forbid embed accessChocobozzz2021-03-241-1/+5
|
* Add hooks support for video downloadChocobozzz2021-03-242-2/+10
|
* Refactor auth flowChocobozzz2021-03-242-0/+10
| | | | | Reimplement some node-oauth2-server methods to remove hacky code needed by our external login workflow
* Stricter email options typingsChocobozzz2021-03-241-8/+45
|
* Add new plugin/peertube version notifsChocobozzz2021-03-2410-12/+132
|
* Reduce bundle size using a const enumChocobozzz2021-03-241-1/+1
|
* Fix AP security testsChocobozzz2021-03-241-2/+2
|
* Use got instead of requestChocobozzz2021-03-242-4/+3
|
* Support sqChocobozzz2021-03-091-1/+2
|
* Add ability to cleanup remote AP interactionsChocobozzz2021-03-034-3/+42
|
* Fix broken local actorsChocobozzz2021-02-261-0/+5
| | | | | Some channels can't federate because they don't have public/private keys, maybe because the generation failed for various reasons
* Add more AP stats to stats endpointChocobozzz2021-02-261-1/+29
| | | | It will help to understand if the federation correctly works or not
* Async torrent creationChocobozzz2021-02-251-3/+24
|
* Fix stats testsChocobozzz2021-02-191-0/+12
|
* Fix video comments display with deleted commentsChocobozzz2021-02-191-0/+4
|
* Try to speed up server testsChocobozzz2021-02-195-23/+61
|
* Fix feedsChocobozzz2021-02-181-2/+1
|
* Add ability to update torrents cache in clientChocobozzz2021-02-182-0/+7
|
* Don't guess remote tracker URLChocobozzz2021-02-182-3/+14
|
* Dissociate video file names and video uuidChocobozzz2021-02-182-4/+26
|
* Remove previous thumbnail if neededChocobozzz2021-02-161-1/+1
|
* Generate a name for caption filesChocobozzz2021-02-161-1/+1
|
* Guess if we need to generate the thumbnail for importsChocobozzz2021-02-121-2/+0
|
* Painfully debug concurrent import jobsChocobozzz2021-02-091-1/+1
|
* Allow to specify transcoding and import jobs concurrencyChocobozzz2021-02-083-0/+6
|
* add best trending strategy based on Reddit's bestRigel Kent2021-02-042-2/+3
| | | | | | inspired from https://www.reddit.com/r/changelog/comments/7spgg0/best_is_the_new_hotness/ this implementation only adds freshness, and doesn't personalize based on subscribed communities yet.
* Update server dependenciesChocobozzz2021-02-035-18/+21
|
* Fix tmp testsChocobozzz2021-02-021-2/+6
|
* Add ability to update plugin authChocobozzz2021-02-012-0/+3
|
* Fix redundancy with HLS only filesChocobozzz2021-02-011-1/+1
|
* Use veryfast preset for default transcoding profileChocobozzz2021-01-291-0/+2
|
* Try to support other codecsChocobozzz2021-01-291-1/+1
|
* Add plugin transcoding profile guideChocobozzz2021-01-291-0/+2
|
* Support transcoding options/encoders by pluginsChocobozzz2021-01-287-0/+73
|
* move from trending routes to alg paramRigel Kent2021-01-283-18/+21
|
* add default trending page choice, revert comments count for hot strategyRigel Kent2021-01-283-3/+25
|
* modularize abstract video list header and implement video hotness ↵Rigel Kent2021-01-281-1/+4
| | | | recommendation variant
* Add priority to transcoding jobsChocobozzz2021-01-251-0/+1
| | | | | | | | | | (1 = highest priority) 100 for new resolutions 10 for original file optimization Add a malus for transcoding jobs depending on how many uploads the user did in the last 7 days
* Refactor transcoding job handlersChocobozzz2021-01-211-5/+5
|
* Support progress for ffmpeg tasksChocobozzz2021-01-211-0/+1
|
* Add user video list hooksChocobozzz2021-01-201-0/+4
|
* Fix (again) youtube importChocobozzz2021-01-191-2/+0
|
* Allow users/visitors to search through an account's videos (#3589)Rigel Kent2021-01-191-1/+4
| | | | | | | * WIP: account search * add search to account view * add tests for account search
* stricter youtubedl format selectors (#3516)Rigel Kent2021-01-153-1/+32
| | | | | | | | | | | | | | * stricter youtubedl format selectors make sure selectors avoid av1, and otherwise match as closely to the maximum resolution enabled for transcoding * add support for merge formats in youtubedl * avoid vp9.2 in youtubedl to avoid any HDR * move getEnabledResolutions, safer replace of imported extension * add test for youtube-dl selectors
* Fix and add skipping ping log testsChocobozzz2021-01-131-0/+10
|
* Allow user to search through their watch history (#3576)Rigel Kent2021-01-131-1/+4
| | | | | | | * allow user to search through their watch history * add tests for search in watch history * Update client/src/app/shared/shared-main/users/user-history.service.ts