aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools
Commit message (Collapse)AuthorAgeFilesLines
* Remove fixed workaroundChocobozzz2022-01-211-6/+1
|
* Fix peertube tools authChocobozzz2022-01-202-21/+30
|
* Handle quota for 413Chocobozzz2022-01-191-1/+1
|
* Better 413 error handling in cli scriptChocobozzz2022-01-181-1/+7
|
* Better auth args handling for peertube cliChocobozzz2022-01-181-8/+15
|
* Upgrade server tools dependenciesChocobozzz2022-01-141-27/+21
|
* Stop using tsconfig registerChocobozzz2022-01-069-39/+20
| | | | Prefer to replace paths at compile time
* Fix migrationsChocobozzz2021-12-171-1/+2
|
* Fix buildChocobozzz2021-12-171-2/+1
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-172-2/+2
|
* refactor(types): create dedicated folder for types package srclutangar2021-12-161-0/+1
| | | | | | fix guide examples and add types package readme refactor(tsconfig): move back base tsconfig to base directory
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-163-2/+11
| | | | | | | | | | | 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
* Fix typo.John Livingston2021-12-141-1/+1
|
* CLI: plugins install command accept a --plugin-version parameter. (#4599)John Livingston2021-12-031-1/+2
| | | | | | | | | | | * CLI: plugins install command accept a --plugin-version parameter. * Unit tests for plugins install --plugin-version. * Fix linting. * Styling Co-authored-by: Chocobozzz <me@florianbigard.com>
* Upgrade tools dependenciesChocobozzz2021-11-221-16/+16
|
* Apply import interval only when reasonable (#4552)mj-saunders2021-11-221-5/+8
| | | | | | | | | | * Apply import interval only when reasonable When importing videos from another service, an interval can be applied between each download. It only really makes sense to apply this interval when the last attempted download actually happened, and not when it was skipped. * Fix boolean notation
* Rewrite youtube-dl importChocobozzz2021-10-221-127/+52
| | | | | | | | 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
* Upgrade server toolsChocobozzz2021-10-121-25/+25
|
* Fix embed apiChocobozzz2021-09-101-1/+1
|
* Remove peertube watch and peertube replChocobozzz2021-09-107-2165/+7
| | | | | I don't have time to maintain these scripts that cause some install issues/maintenance difficulties
* esModuleInterop to trueChocobozzz2021-08-274-5/+7
|
* Remove useless asyncChocobozzz2021-08-261-1/+1
|
* Fix cli buildChocobozzz2021-08-061-1/+1
|
* Simplify createServer argsChocobozzz2021-07-221-1/+1
|
* Reorganize importsChocobozzz2021-07-201-2/+1
|
* Refactor requestsChocobozzz2021-07-201-1/+1
|
* Use an object to represent a serverChocobozzz2021-07-203-15/+12
|
* Shorter server command namesChocobozzz2021-07-206-24/+24
|
* Introduce videos commandChocobozzz2021-07-203-20/+22
|
* Introduce user commandChocobozzz2021-07-201-6/+4
|
* Adapt CLI to new commandsChocobozzz2021-07-207-48/+52
|
* Fix search testsChocobozzz2021-07-201-1/+1
|
* Introduce notifications commandChocobozzz2021-07-201-1/+1
|
* Introduce sql commandChocobozzz2021-07-201-1/+1
|
* Fix CLI toolsChocobozzz2021-07-207-178/+128
|
* Support short uuid for GET video/playlistChocobozzz2021-06-291-5/+0
|
* Update tools dependenciesChocobozzz2021-06-2510-27/+25
|
* Upgrade tools depChocobozzz2021-06-151-215/+198
|
* Fix CLI buildChocobozzz2021-06-041-2/+0
|
* Support '/w/' and '/w/p/' for watch pageChocobozzz2021-05-281-1/+1
| | | | And use them as default in client
* Reorganize plugin modelsChocobozzz2021-05-111-2/+1
|
* Use a class for youtube-dlChocobozzz2021-05-111-11/+14
|
* Fix CLI plugins list command: use command parameters.John Livingston2021-05-101-5/+3
|
* Ugrade tools dependenciesChocobozzz2021-04-131-140/+151
|
* Fix 404 AP status codesChocobozzz2021-03-241-4/+1
|
* Fix import script when using the search indexChocobozzz2021-02-191-9/+7
|
* Upgrade tools dependenciesChocobozzz2021-02-032-421/+534
|
* Update server dependenciesChocobozzz2021-02-0310-145/+141
|
* add option for video-import CLI to wait between two video imports (#3310)Florent2021-01-251-58/+63
| | | | | | | | * peertube-import-videos: Add --wait-interval option * peertube-import-videos: various code style improvements Co-authored-by: Florent F <florent.fayolle69@gmail.com> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu>
* stricter youtubedl format selectors (#3516)Rigel Kent2021-01-151-2/+2
| | | | | | | | | | | | | | * 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