Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove uneeded memoize | Chocobozzz | 2022-03-08 | 1 | -1/+1 |
| | |||||
* | Update translations and support fa | Chocobozzz | 2022-03-03 | 1 | -0/+1 |
| | |||||
* | Fill width of local avatars | Chocobozzz | 2022-03-01 | 1 | -1/+18 |
| | |||||
* | Create another test suite for transcoding jobs | Chocobozzz | 2022-02-28 | 2 | -0/+7 |
| | |||||
* | Improve benchmark script CLI options | Chocobozzz | 2022-02-28 | 1 | -2/+15 |
| | |||||
* | Add basic video editor support | Chocobozzz | 2022-02-28 | 2 | -5/+5 |
| | |||||
* | Implement avatar miniatures (#4639) | kontrollanten | 2022-02-28 | 1 | -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 releases | Chocobozzz | 2022-02-10 | 1 | -5/+5 |
| | |||||
* | Fast forward on HLS decode error | Chocobozzz | 2022-02-02 | 1 | -1/+2 |
| | |||||
* | Prevent HLS transcoding after webtorrent transcoding | Chocobozzz | 2022-02-01 | 1 | -0/+2 |
| | |||||
* | Add fast forward/rewind on mobile | Chocobozzz | 2022-01-12 | 1 | -0/+2 |
| | |||||
* | Fix audio transcoding with video only file | Chocobozzz | 2022-01-06 | 1 | -0/+8 |
| | |||||
* | Stop using tsconfig register | Chocobozzz | 2022-01-06 | 24 | -120/+68 |
| | | | | Prefer to replace paths at compile time | ||||
* | Migrate to --enable-source-maps option | Chocobozzz | 2022-01-03 | 1 | -2/+2 |
| | |||||
* | Add version to generate types packages | Chocobozzz | 2021-12-28 | 1 | -1/+1 |
| | |||||
* | Move types package in packages/ | Chocobozzz | 2021-12-28 | 1 | -2/+2 |
| | |||||
* | Fix types dist paths | Chocobozzz | 2021-12-24 | 3 | -2/+6 |
| | |||||
* | Don't stuck state when move transcoding job failed | Chocobozzz | 2021-12-23 | 1 | -1/+6 |
| | |||||
* | Ensure we don't move live to object storage | Chocobozzz | 2021-12-17 | 1 | -0/+5 |
| | |||||
* | shared/ typescript types dir server-commands | Chocobozzz | 2021-12-17 | 2 | -2/+2 |
| | |||||
* | Optimize server eslint | Chocobozzz | 2021-12-16 | 1 | -2/+0 |
| | |||||
* | Add P2P enabled/disabled in player card | Chocobozzz | 2021-12-16 | 1 | -0/+3 |
| | |||||
* | Fix some build scripts and lint | Chocobozzz | 2021-12-16 | 2 | -2/+4 |
| | |||||
* | refactor(types): create dedicated folder for types package src | lutangar | 2021-12-16 | 1 | -78/+0 |
| | | | | | | fix guide examples and add types package readme refactor(tsconfig): move back base tsconfig to base directory | ||||
* | feat(types): create peertube-types package | lutangar | 2021-12-16 | 3 | -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 server | lutangar | 2021-12-16 | 4 | -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 values | Chocobozzz | 2021-12-14 | 2 | -17/+3 |
| | |||||
* | Support nn and nb locales | Chocobozzz | 2021-12-13 | 2 | -1/+3 |
| | |||||
* | Add meaning to date short names | Chocobozzz | 2021-12-13 | 1 | -1/+0 |
| | |||||
* | Update translations | Chocobozzz | 2021-12-13 | 1 | -2/+3 |
| | |||||
* | Add hls to prune storage script | Chocobozzz | 2021-12-10 | 1 | -1/+9 |
| | |||||
* | Fix torrent metadata update for hls | Chocobozzz | 2021-12-09 | 1 | -1/+1 |
| | |||||
* | Update torrent metadata on video update | Chocobozzz | 2021-12-08 | 1 | -3/+3 |
| | |||||
* | scripts/test: make MacOS compatible | kontrollanten | 2021-12-08 | 1 | -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 script | Chocobozzz | 2021-11-25 | 1 | -1/+1 |
| | |||||
* | Launch yarn before linking to new peertube version | Jocelyn Jaubert | 2021-11-22 | 1 | -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 script | Chocobozzz | 2021-11-18 | 1 | -2/+0 |
| | |||||
* | Add ability to run transcoding jobs | Chocobozzz | 2021-11-18 | 1 | -4/+5 |
| | |||||
* | Update xliffmerge | Chocobozzz | 2021-11-15 | 1 | -1/+1 |
| | |||||
* | Update credits | Chocobozzz | 2021-11-12 | 1 | -1/+4 |
| | |||||
* | Add migrate-to-object-storage script (#4481) | kontrollanten | 2021-11-09 | 6 | -12/+204 |
| | | | | | | | | | | | | | | | | | | * add migrate-to-object-storage-script closes #4467 * add migrate-to-unique-playlist-filenames script * fix(migrate-to-unique-playlist-filenames): update master/segments256 run updateMasterHLSPlaylist and updateSha256VODSegments after file rename. * Improve move to object storage scripts * PR remarks Co-authored-by: Chocobozzz <me@florianbigard.com> | ||||
* | Fix transcoding job with resolution | Chocobozzz | 2021-11-05 | 1 | -2/+2 |
| | |||||
* | Remove unnecessary env | Chocobozzz | 2021-11-02 | 1 | -1/+1 |
| | |||||
* | Fix "Off" player string localization | Chocobozzz | 2021-10-21 | 1 | -0/+1 |
| | |||||
* | Fix admin edition disabling feature | Chocobozzz | 2021-10-14 | 1 | -1/+1 |
| | |||||
* | Fix benchmark test | Chocobozzz | 2021-10-14 | 1 | -1/+1 |
| | |||||
* | Remove peertube watch and peertube repl | Chocobozzz | 2021-09-10 | 1 | -5/+0 |
| | | | | | I don't have time to maintain these scripts that cause some install issues/maintenance difficulties | ||||
* | Fix NSFW filter and add tests | Chocobozzz | 2021-09-03 | 2 | -2/+10 |
| | |||||
* | Fix hls redundancy pruning | Chocobozzz | 2021-09-02 | 1 | -0/+4 |
| | |||||
* | Improve e2e workflow and add doc | Chocobozzz | 2021-09-02 | 2 | -11/+3 |
| |