Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't send undefined with HTML input | Chocobozzz | 2023-03-10 | 1 | -0/+3 |
| | |||||
* | Add test on AP hooks | Chocobozzz | 2023-03-10 | 1 | -2/+2 |
| | |||||
* | Add ability for plugins to alter video jsonld | Chocobozzz | 2023-03-10 | 1 | -11/+4 |
| | |||||
* | Add ability for plugins to add metadata | Chocobozzz | 2023-03-10 | 2 | -2/+37 |
| | |||||
* | Add action:video-edit.form.updated hook | Chocobozzz | 2023-03-10 | 1 | -1/+9 |
| | |||||
* | Add timestamp auto link doc | Chocobozzz | 2023-03-07 | 1 | -3/+5 |
| | |||||
* | Hotfix/channel avatars overview (#5667) | Wicklow | 2023-03-07 | 1 | -7/+5 |
| | | | | | | | | | * Fix channel avatar display * Improve video overview component style * Better alignment of avatar and title * Convert in rem video overview component | ||||
* | Fix action button height | Chocobozzz | 2023-02-28 | 1 | -1/+1 |
| | |||||
* | Avoid always resuming the end of the video | Chocobozzz | 2023-02-25 | 1 | -7/+12 |
| | |||||
* | Fix angular build, again | Chocobozzz | 2023-02-20 | 1 | -1/+1 |
| | | | | Maybe a bug in the sass loader | ||||
* | Fix buttons accessibility using keyboard | Chocobozzz | 2023-02-20 | 1 | -1/+1 |
| | |||||
* | Fix buttons CSS | Chocobozzz | 2023-02-20 | 2 | -7/+6 |
| | |||||
* | Fix default trending algorithm in admin config | Chocobozzz | 2023-02-20 | 1 | -3/+0 |
| | |||||
* | Correctly unsubscribe on menu destroy | Chocobozzz | 2023-02-16 | 1 | -1/+0 |
| | |||||
* | Correctly fix table column widths | Chocobozzz | 2023-02-15 | 1 | -1/+1 |
| | |||||
* | Fix live update of autoplay next video | Chocobozzz | 2023-02-15 | 2 | -10/+21 |
| | |||||
* | Refactor login redirection/button links | Chocobozzz | 2023-02-14 | 3 | -12/+2 |
| | | | | Correctly handle external auth redirection in all cases | ||||
* | Prevent hotkeys playback rate/seek with lives | Chocobozzz | 2022-12-30 | 1 | -14/+24 |
| | |||||
* | feat(player/playbackRate): set rate with url param | kontrollanten | 2022-12-29 | 1 | -0/+2 |
| | |||||
* | feat(config): add missing videos sort options in admin | paulienm | 2022-12-19 | 1 | -0/+3 |
| | |||||
* | Fix cancel upload button style | Chocobozzz | 2022-11-24 | 1 | -1/+4 |
| | |||||
* | Fix client lint | Chocobozzz | 2022-11-15 | 1 | -1/+1 |
| | |||||
* | Force autoplay when live starts | Chocobozzz | 2022-11-15 | 1 | -10/+32 |
| | | | | Using the mute | ||||
* | Federate entire description | Chocobozzz | 2022-11-14 | 2 | -16/+25 |
| | | | | | | Introduce an explicit field truncatedDescription description in video list is deprecated description in video get will contain the entire description | ||||
* | Fix HTML in account/channel description | Chocobozzz | 2022-11-14 | 2 | -2/+2 |
| | |||||
* | Fix upload error handling | Chocobozzz | 2022-10-28 | 3 | -11/+3 |
| | |||||
* | Update privacy-concerns.component.html | treac1e | 2022-10-27 | 1 | -1/+1 |
| | | | When translated, the white space after "Reminder:" is cut off, so in other languages there is no white space between the "Reminder:" and the following text, which looks ugly (e.g. in the German translation). A solution is to move the space behind the translated phrase (using the html-entity for space  ). | ||||
* | Fix player | Chocobozzz | 2022-10-25 | 1 | -1/+1 |
| | |||||
* | Put private videos under a specific subdirectory | Chocobozzz | 2022-10-24 | 1 | -16/+37 |
| | |||||
* | Hide wait transcoding for lives | Chocobozzz | 2022-10-11 | 7 | -21/+13 |
| | | | | Replays are always transcoded | ||||
* | Refactor form reactive | Chocobozzz | 2022-10-07 | 8 | -18/+17 |
| | |||||
* | Correctly unsubscribe upload events on destroy | Chocobozzz | 2022-09-28 | 1 | -2/+7 |
| | |||||
* | fix: keep partially uploaded files | kukhariev | 2022-09-28 | 1 | -1/+1 |
| | | | | | | Do not delete a partially uploaded file when closing the upload page fixes #5078, #4432 | ||||
* | Fix error messages | Chocobozzz | 2022-09-23 | 1 | -1/+1 |
| | |||||
* | Set scroll position at top of the textarea when opening the subtitle editor. | lutangar | 2022-09-08 | 7 | -58/+65 |
| | | | | | | | | | | | | | | | | | | | | | | ## Description This set the position of the scrollbar at the top of the textarea when opening the __subtitle editor__. Previously the textarea scroll position was at the bottom of the textarea which doesn't make much sense when you want to edit a subtitle : you most likely want to edit the beginning of the subtitle first. This also set the caret position on the first character. ## Design decision I had to use a *component approach* instead of an `<ng-template>` for the edition modal because the `@viewChild` directive doesn't work for elements __inside__ an `<ng-template>`. I needed the `viewChild` directive to get an `ElementRef` of the `textarea`. > See the following issue and its workaround : > - https://github.com/valor-software/ngx-bootstrap/issues/3825 > - https://stackblitz.com/edit/angular-t5dfp7 > - https://medium.com/@izzatnadiri/how-to-pass-data-to-and-receive-from-ng-bootstrap-modals-916f2ad5d66e ## Related issues Closes [peertube-plugin-transcription/#39](https://gitlab.com/apps_education/peertube/plugin-transcription/-/issues/39) | ||||
* | Add sync link to import page | Chocobozzz | 2022-08-17 | 4 | -10/+16 |
| | |||||
* | Add playback metric endpoint sent to OTEL | Chocobozzz | 2022-08-16 | 1 | -0/+2 |
| | |||||
* | Prevent creating multiple lives | Chocobozzz | 2022-08-12 | 2 | -1/+10 |
| | |||||
* | Improve wait transcoding help | Chocobozzz | 2022-08-12 | 1 | -1/+1 |
| | |||||
* | Prefer thumbnail instead of preview | Chocobozzz | 2022-08-12 | 1 | -1/+1 |
| | |||||
* | Add channel hooks | Chocobozzz | 2022-08-03 | 1 | -1/+1 |
| | |||||
* | Prevent error on highlighted thread | Chocobozzz | 2022-07-29 | 2 | -1/+15 |
| | |||||
* | Display latest uploaded date for captions | Chocobozzz | 2022-07-25 | 2 | -4/+5 |
| | |||||
* | video-watch.video-threads.loaded after DOM loading | Chocobozzz | 2022-07-22 | 1 | -1/+2 |
| | |||||
* | Add ability for client to create server logs | Chocobozzz | 2022-07-18 | 8 | -15/+23 |
| | |||||
* | Fix comments/download attributes on import | Chocobozzz | 2022-07-04 | 4 | -47/+27 |
| | |||||
* | Put instance name in embed button | Chocobozzz | 2022-06-28 | 1 | -0/+1 |
| | |||||
* | Theme fixes | Chocobozzz | 2022-06-28 | 2 | -4/+4 |
| | |||||
* | Optimize emoji markup list | Chocobozzz | 2022-06-27 | 2 | -18/+18 |
| | |||||
* | Refactor actor avatar component | Chocobozzz | 2022-06-27 | 5 | -5/+16 |
| |