aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
Commit message (Collapse)AuthorAgeFilesLines
...
* | CleanupChocobozzz2021-05-289-55/+78
| | | | | | | | | | We must not expose private actor objects to clients Just make 2 GET requests on channel/accounts instead
* | Merge branch 'develop' into shorter-URLs-channels-accountsChocobozzz2021-05-283-4/+5
|\ \
| * | Use separate file for plugin placeholder componentChocobozzz2021-05-272-1/+4
| | |
| * | Fix home routingChocobozzz2021-05-271-3/+1
| | |
* | | Merge branch 'develop' into shorter-URLs-channels-accountsChocobozzz2021-05-27114-558/+1602
|\| |
| * | Remove ngx-metaChocobozzz2021-05-2723-82/+118
| | | | | | | | | | | | Unmaintained
| * | change license to licenceFrank Sträter2021-05-271-1/+1
| | | | | | | | | | | | | | | | | | Change "license" to "licence" for consistency in the user interface in English. License is both a noun and a verb in the United States. If you live in any other English-speaking country, you will spell it "licence" when you use it as a noun and "license" when you use it as a verb.
| * | Instance homepage support (#4007)Chocobozzz2021-05-2748-92/+931
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Prepare homepage parsers * Add ability to update instance hompage * Add ability to set homepage as landing page * Add homepage preview in admin * Dynamically update left menu for homepage * Inject home content in homepage * Add videos list and channel miniature custom markup * Remove unused elements in markup service
| * | Fix from now pipeChocobozzz2021-05-271-12/+17
| | |
| * | Merge branch 'release/3.2.0' into developChocobozzz2021-05-263-1/+6
| |\|
| | * Fix UI overflowsChocobozzz2021-05-263-1/+6
| | |
| * | Merge branch 'release/3.2.0' into developChocobozzz2021-05-252-2/+3
| |\|
| | * Fix live ending bannerChocobozzz2021-05-252-2/+3
| | |
| * | Merge branch 'release/3.2.0' into developChocobozzz2021-05-251-0/+2
| |\|
| | * Fix local plugin auth selectChocobozzz2021-05-251-0/+2
| | |
| | * Fix broadcast message levelChocobozzz2021-05-141-1/+1
| | |
| * | Fix broadcast message levelChocobozzz2021-05-251-1/+1
| | |
| * | Merge branch 'release/3.2.0' into developChocobozzz2021-05-142-2/+2
| |\|
| | * Fix logger warning levelChocobozzz2021-05-141-1/+1
| | |
| | * Fix recommended banner sizeChocobozzz2021-05-141-1/+1
| | |
| * | Inject server config in HTMLChocobozzz2021-05-145-44/+37
| | |
| * | Default to dark theme if requested by userChocobozzz2021-05-111-1/+13
| | |
| * | Remember tab in upload pageChocobozzz2021-05-112-7/+23
| | |
| * | Error if importing a torrent with multiple filesChocobozzz2021-05-111-2/+8
| | |
| * | Reorganize plugin modelsChocobozzz2021-05-113-6/+11
| |/
| * Fix paused upload messageChocobozzz2021-05-111-1/+1
| |
| * Fix video updateChocobozzz2021-05-101-21/+24
| |
| * Fix button icon in admin pluginsChocobozzz2021-05-101-1/+1
| |
| * Fix miniature overflowChocobozzz2021-05-101-0/+2
| |
| * Resumable video uploads (#3933)kontrollanten2021-05-108-148/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: resumable video uploads relates to #324 * fix review comments * video upload: error handling * fix audio upload * fixes after self review * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/middlewares/validators/videos/videos.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * Update server/controllers/api/videos/index.ts Co-authored-by: Rigel Kent <par@rigelk.eu> * update after code review * refactor upload route - restore multipart upload route - move resumable to dedicated upload-resumable route - move checks to middleware - do not leak internal fs structure in response * fix yarn.lock upon rebase * factorize addVideo for reuse in both endpoints * add resumable upload API to openapi spec * add initial test and test helper for resumable upload * typings for videoAddResumable middleware * avoid including aws and google packages via node-uploadx, by only including uploadx/core * rename ex-isAudioBg to more explicit name mentioning it is a preview file for audio * add video-upload-tmp-folder-cleaner job * stronger typing of video upload middleware * reduce dependency to @uploadx/core * add audio upload test * refactor resumable uploads cleanup from job to scheduler * refactor resumable uploads scheduler to compare to last execution time * make resumable upload validator to always cleanup on failure * move legacy upload request building outside of uploadVideo test helper * filter upload-resumable middlewares down to POST, PUT, DELETE also begin to type metadata * merge add duration functions * stronger typings and documentation for uploadx behaviour, move init validator up * refactor(client/video-edit): options > uploadxOptions * refactor(client/video-edit): remove obsolete else * scheduler/remove-dangling-resum: rename tag * refactor(server/video): add UploadVideoFiles type * refactor(mw/validators): restructure eslint disable * refactor(mw/validators/videos): rename import * refactor(client/vid-upload): rename html elem id * refactor(sched/remove-dangl): move fn to method * refactor(mw/async): add method typing * refactor(mw/vali/video): double quote > single * refactor(server/upload-resum): express use > all * proper http methud enum server/middlewares/async.ts * properly type http methods * factorize common video upload validation steps * add check for maximum partially uploaded file size * fix audioBg use * fix extname(filename) in addVideo * document parameters for uploadx's resumable protocol * clear META files in scheduler * last audio refactor before cramming preview in the initial POST form data * refactor as mulitpart/form-data initial post request this allows preview/thumbnail uploads alongside the initial request, and cleans up the upload form * Add more tests for resumable uploads * Refactor remove dangling resumable uploads * Prepare changelog * Add more resumable upload tests * Remove user quota check for resumable uploads * Fix upload error handler * Update nginx template for upload-resumable * Cleanup comment * Remove unused express methods * Prefer to use got instead of raw http * Don't retry on error 500 Co-authored-by: Rigel Kent <par@rigelk.eu> Co-authored-by: Rigel Kent <sendmemail@rigelk.eu> Co-authored-by: Chocobozzz <me@florianbigard.com>
| * Sort channels by -updatedAtChocobozzz2021-05-1011-49/+61
| |
| * Increase test timeoutChocobozzz2021-05-071-1/+1
| |
| * Refactor video edit cssChocobozzz2021-05-073-76/+47
| |
| * Fix mask-image propertyChocobozzz2021-05-071-1/+3
| | | | | | | | Needed by chrome
| * Add ability to search live videosChocobozzz2021-05-053-22/+61
| |
* | Use userId key to distinct Account or VideoChannel actorKimsible2021-05-052-19/+17
| |
* | Make /a and /c default URLs for accounts and channelsKimsible2021-05-0521-38/+38
| |
* | Refactor client @actorName matcher with new API routeKimsible2021-05-056-46/+102
| |
* | Add shorter URLs for accounts and channels client-sideKimsible2021-05-052-0/+54
|/
* Fix non logged add comment avatarChocobozzz2021-05-051-4/+3
|
* Fix miniature avatar sizeChocobozzz2021-05-054-4/+11
|
* More efficient advanced input filterChocobozzz2021-05-031-10/+38
|
* Refactor parseQueryStringFilter boolean handlerChocobozzz2021-05-034-24/+12
|
* Display a message on no channelChocobozzz2021-05-031-0/+2
|
* Refactor search filtersChocobozzz2021-05-0347-494/+280
|
* Reduce advanced search input debounce timeChocobozzz2021-05-031-1/+1
|
* Fix avatar in report pageChocobozzz2021-05-031-2/+2
|
* Add ability to filter my videos by liveChocobozzz2021-05-0326-237/+280
|
* Cleanup plugins admin CSSChocobozzz2021-04-2911-49/+60
|
* Fix my library/account/admin sub titles alignmentChocobozzz2021-04-292-51/+52
|