Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix import link | Chocobozzz | 2022-10-12 | 3 | -4/+9 |
| | |||||
* | Sync channel: move the list imports button #5337 | Florent | 2022-10-12 | 2 | -7/+7 |
| | |||||
* | Hide wait transcoding for lives | Chocobozzz | 2022-10-11 | 7 | -21/+13 |
| | | | | Replays are always transcoded | ||||
* | Add ability for plugins to register ws routes | Chocobozzz | 2022-10-11 | 1 | -0/+5 |
| | |||||
* | Add auto complete to user edit password | Chocobozzz | 2022-10-10 | 2 | -2/+5 |
| | |||||
* | Fix user channels list with increased max counter | Chocobozzz | 2022-10-10 | 1 | -3/+6 |
| | |||||
* | Use video links for files | Chocobozzz | 2022-10-10 | 1 | -2/+2 |
| | |||||
* | Add object storage info badge | Chocobozzz | 2022-10-10 | 2 | -1/+11 |
| | |||||
* | Prevent sass deprecated warning | Chocobozzz | 2022-10-10 | 3 | -4/+4 |
| | |||||
* | Refactor form reactive | Chocobozzz | 2022-10-07 | 46 | -171/+101 |
| | |||||
* | Allow admins to disable two factor auth | Chocobozzz | 2022-10-07 | 11 | -29/+53 |
| | |||||
* | Implement two factor in client | Chocobozzz | 2022-10-07 | 31 | -68/+621 |
| | |||||
* | Fix subscription button radius | Chocobozzz | 2022-09-28 | 3 | -3/+3 |
| | |||||
* | Hide all email block if we can't change it | Chocobozzz | 2022-09-28 | 2 | -2/+2 |
| | |||||
* | Add channels link in menu | Chocobozzz | 2022-09-28 | 3 | -17/+17 |
| | |||||
* | Fix error display in bulk service | Chocobozzz | 2022-09-28 | 1 | -5/+10 |
| | |||||
* | Fix lint | Chocobozzz | 2022-09-28 | 1 | -1/+1 |
| | |||||
* | Force channel in my videos | Chocobozzz | 2022-09-28 | 2 | -3/+12 |
| | |||||
* | Put video quota info in its own component | Chocobozzz | 2022-09-28 | 12 | -54/+93 |
| | |||||
* | Add transcoding quota message to admin config page | The Cashew Trader | 2022-09-28 | 2 | -1/+28 |
| | |||||
* | 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 | ||||
* | Merge branch 'release/4.3.0' into develop | Chocobozzz | 2022-09-28 | 1 | -1/+1 |
|\ | |||||
| * | Reword instance following title | Chocobozzz | 2022-09-28 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'release/4.3.0' into develop | Chocobozzz | 2022-09-27 | 3 | -1/+17 |
|\| | |||||
| * | Fix moderation dropdown overflow on mobile | Chocobozzz | 2022-09-27 | 2 | -1/+13 |
| | | |||||
| * | Fix number with text input overflow | Chocobozzz | 2022-09-27 | 1 | -0/+4 |
| | | |||||
* | | Fix error messages | Chocobozzz | 2022-09-23 | 3 | -3/+3 |
|/ | |||||
* | Fix missing i18n on signup label | Chocobozzz | 2022-09-20 | 1 | -1/+1 |
| | |||||
* | Fix broken dates with localized pages | Chocobozzz | 2022-09-16 | 6 | -31/+9 |
| | |||||
* | Disable uninstall button on plugin uninstallation | Chocobozzz | 2022-09-16 | 4 | -12/+40 |
| | |||||
* | Don't break install plugin on failure | Chocobozzz | 2022-09-16 | 1 | -1/+5 |
| | |||||
* | Fix missing pagination when listing channel syncs | Chocobozzz | 2022-09-14 | 2 | -1/+2 |
| | |||||
* | Fix user creation date on localized page | Chocobozzz | 2022-09-14 | 1 | -1/+0 |
| | |||||
* | Simplify transcoding sentence | Chocobozzz | 2022-09-13 | 1 | -1/+1 |
| | |||||
* | Don't display remove file icon in some cases | Chocobozzz | 2022-09-13 | 3 | -2/+15 |
| | |||||
* | Update client dep | Chocobozzz | 2022-09-09 | 1 | -3/+0 |
| | |||||
* | Check admin config when loading the page | Chocobozzz | 2022-09-08 | 2 | -4/+22 |
| | | | | Avoid issues when an invalid config was set in the configuration file | ||||
* | Fix short description validator | Chocobozzz | 2022-09-08 | 1 | -2/+2 |
| | |||||
* | 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) | ||||
* | Prefer using Object.values | Chocobozzz | 2022-08-17 | 3 | -11/+11 |
| | |||||
* | 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 |
| | |||||
* | Add ability to list comments on local videos | Chocobozzz | 2022-08-16 | 2 | -0/+8 |
| | |||||
* | Prevent creating multiple lives | Chocobozzz | 2022-08-12 | 2 | -1/+10 |
| | |||||
* | Move search bar at the middle of the header | Chocobozzz | 2022-08-12 | 3 | -15/+8 |
| | |||||
* | Improve wait transcoding help | Chocobozzz | 2022-08-12 | 1 | -1/+1 |
| | |||||
* | Prefer thumbnail instead of preview | Chocobozzz | 2022-08-12 | 1 | -1/+1 |
| | |||||
* | Add years when grouping by stats by month | Chocobozzz | 2022-08-11 | 1 | -1/+1 |
| | |||||
* | Add plugin hooks/placeholder to share modal | Chocobozzz | 2022-08-11 | 5 | -52/+120 |
| |