aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'release/4.2.0' into developChocobozzz2022-06-071-1/+1
|\|
| * Fix release scriptChocobozzz2022-06-071-1/+1
| |
* | Add new player string to custom translationsChocobozzz2022-05-311-0/+2
|/
* Wait before uploading release filesChocobozzz2022-05-231-0/+3
|
* Add missing player translationChocobozzz2022-05-041-0/+1
|
* Support video views/viewers stats in serverChocobozzz2022-04-152-4/+7
| | | | | | | | | | * 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
* Fix benchmark testsChocobozzz2022-03-241-2/+2
|
* Add video edition finished notificationChocobozzz2022-03-221-1/+1
|
* Fix benchmark scriptChocobozzz2022-03-211-2/+2
|
* Add watching and views endpoints to benchmarkChocobozzz2022-03-181-7/+42
|
* Don't store remote rates of remote videosChocobozzz2022-03-181-7/+8
| | | | | In the future we'll stop to expose all available rates to improve users privacy
* Also fill avatar width for channelsChocobozzz2022-03-181-0/+1
|
* Fix CIChocobozzz2022-03-171-3/+3
|
* Remove uneeded memoizeChocobozzz2022-03-081-1/+1
|
* Update translations and support faChocobozzz2022-03-031-0/+1
|
* Fill width of local avatarsChocobozzz2022-03-011-1/+18
|
* Create another test suite for transcoding jobsChocobozzz2022-02-282-0/+7
|
* Improve benchmark script CLI optionsChocobozzz2022-02-281-2/+15
|
* Add basic video editor supportChocobozzz2022-02-282-5/+5
|
* Implement avatar miniatures (#4639)kontrollanten2022-02-281-0/+106
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* Only generate types for stable releasesChocobozzz2022-02-101-5/+5
|
* Fast forward on HLS decode errorChocobozzz2022-02-021-1/+2
|
* Prevent HLS transcoding after webtorrent transcodingChocobozzz2022-02-011-0/+2
|
* Add fast forward/rewind on mobileChocobozzz2022-01-121-0/+2
|
* Fix audio transcoding with video only fileChocobozzz2022-01-061-0/+8
|
* Stop using tsconfig registerChocobozzz2022-01-0624-120/+68
| | | | Prefer to replace paths at compile time
* Migrate to --enable-source-maps optionChocobozzz2022-01-031-2/+2
|
* Add version to generate types packagesChocobozzz2021-12-281-1/+1
|
* Move types package in packages/Chocobozzz2021-12-281-2/+2
|
* Fix types dist pathsChocobozzz2021-12-243-2/+6
|
* Don't stuck state when move transcoding job failedChocobozzz2021-12-231-1/+6
|
* Ensure we don't move live to object storageChocobozzz2021-12-171-0/+5
|
* shared/ typescript types dir server-commandsChocobozzz2021-12-172-2/+2
|
* Optimize server eslintChocobozzz2021-12-161-2/+0
|
* Add P2P enabled/disabled in player cardChocobozzz2021-12-161-0/+3
|
* Fix some build scripts and lintChocobozzz2021-12-162-2/+4
|
* refactor(types): create dedicated folder for types package srclutangar2021-12-161-78/+0
| | | | | | fix guide examples and add types package readme refactor(tsconfig): move back base tsconfig to base directory
* feat(types): create peertube-types packagelutangar2021-12-163-1/+84
| | | | | | | | | | | | Create dedicated Typescript "types" configuration file for each "projects". Create a types folder which includes every useful ts definition: - client - server - shared Add tooling to create a proper package, extract dependencies, etc... Add CI Github task. refactor(types): publish types package in release script
* chore(refactor): remove shared folder dependencies to the serverlutangar2021-12-164-4/+17
| | | | | | | | | | | 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
* Ability for admins to set default upload valuesChocobozzz2021-12-142-17/+3
|
* Support nn and nb localesChocobozzz2021-12-132-1/+3
|
* Add meaning to date short namesChocobozzz2021-12-131-1/+0
|
* Update translationsChocobozzz2021-12-131-2/+3
|
* Add hls to prune storage scriptChocobozzz2021-12-101-1/+9
|
* Fix torrent metadata update for hlsChocobozzz2021-12-091-1/+1
|
* Update torrent metadata on video updateChocobozzz2021-12-081-3/+3
|
* scripts/test: make MacOS compatiblekontrollanten2021-12-081-3/+3
| | | | | | | man xargs: -r Compatibility with GNU xargs. The GNU version of xargs runs the utility argument at least once, even if xargs input is empty, and it supports a -r option to inhibit this behavior. The FreeBSD version of xargs does not run the utility argument on empty input, but it supports the -r option for command-line compatibility with GNU xargs, but the -r option does nothing in the FreeBSD version of xargs.
* Don't process live in migration scriptChocobozzz2021-11-251-1/+1
|
* Launch yarn before linking to new peertube versionJocelyn Jaubert2021-11-221-3/+5
| | | | | | If yarn fails because we don't have the correct nodejs version, we want to know earlier, so that we can upgrade nodejs without having a non-working half-installed peertube instance.
* Stop killing peertube in ci scriptChocobozzz2021-11-181-2/+0
|