aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos
Commit message (Collapse)AuthorAgeFilesLines
* Fix error when clicking on the disabled publish buttonChocobozzz2018-10-012-2/+8
|
* various display improvementsRigel Kent2018-09-291-1/+1
|
* fix message space on video upload cancelRigel Kent2018-09-292-2/+3
|
* Fix advanced options in upload formChocobozzz2018-09-282-4/+4
|
* Update translationsChocobozzz2018-09-281-1/+3
|
* Fix some i18n tagsChocobozzz2018-09-282-1/+2
|
* Fix no other videos displayed on some videosChocobozzz2018-09-283-25/+18
|
* Display other videos on xl screens on the rightChocobozzz2018-09-281-1/+9
|
* correct local subscribe in the subscription menuRigel Kent2018-09-281-1/+6
|
* Improve overview section titlesChocobozzz2018-09-262-5/+9
|
* Regenerate translationsChocobozzz2018-09-261-1/+1
|
* refactor subscribe button and comment-add for visitor-interact UX (#1100)Rigel Kent2018-09-255-16/+86
| | | | | * refactor subscribe button for visitor-subscribe UX * refactor comment-add for visitor-interact UX
* Improve download modal input styleChocobozzz2018-09-242-6/+4
|
* Merge branch 'develop' into unused-importsChocobozzz2018-09-243-7/+38
|\
| * add url field to download modalRigel Kent2018-09-233-9/+38
| |
* | remove unused importsBO412018-09-225-16/+5
|/
* i18n in video-editRigel Kent2018-09-211-4/+4
|
* Upgrade client dependenciesChocobozzz2018-09-211-1/+0
|
* fix nav tab and tag color in dark themeRigel Kent2018-09-201-3/+5
|
* fix SEO tags and attributesRigel Kent2018-09-201-2/+2
|
* Improve responsive on small screensChocobozzz2018-09-204-3/+45
|
* Don't get recommended videos twiceChocobozzz2018-09-193-8/+12
|
* adding missing i18n for schedule optionRigel Kent2018-09-171-1/+1
|
* Fix description/comments max widthChocobozzz2018-09-171-0/+1
|
* Fix tag search on overview pageChocobozzz2018-09-141-1/+1
|
* specify shift in keyboard shortcuts cheatsheetRigel Kent2018-09-111-3/+3
|
* use focus-visible polyfill to improve keyboard navigationRigel Kent2018-09-111-1/+4
| | | | | Only the homepage is concerned, but it should have decent keyboard navigation support now.
* Update translationsChocobozzz2018-09-071-5/+4
|
* Fix video channel url in watch pageChocobozzz2018-09-061-1/+1
|
* Align other videos block on small screensChocobozzz2018-09-061-5/+1
|
* Fix video player theatre modeChocobozzz2018-09-061-3/+2
|
* fix comment and top-menu placement regressionsRigel Kent2018-09-052-2/+3
|
* Dislike bar in the same color as the buttonChocobozzz2018-09-051-2/+7
|
* Put "start at" at the top of the modalChocobozzz2018-09-051-7/+8
|
* Fix video add background colorChocobozzz2018-09-051-2/+2
|
* Fix watch page responsiveChocobozzz2018-09-053-43/+19
|
* add theming via css custom propertiesRigel Kent2018-09-044-13/+10
| | | | and a bonus dark color theme toggle
* fixing grid readjustment with expand and screens < 1150pxRigel Kent2018-09-043-7/+20
|
* Fix overview page on mobileChocobozzz2018-09-042-9/+13
|
* Better label for video privaciesChocobozzz2018-09-046-7/+17
|
* Add video recomandation by tags (#1001)Jorropo2018-09-047-27/+47
| | | | | | | | | | * Recommendation by tags (thx bradsk88) Thx bradsk88 for the help. * Prefer jest-preset-angular to skip need for babel config * Fix jest
* fix likes bar, grid adjustment and menu widthRigel Kent2018-09-032-14/+8
|
* Don't get quota twiceChocobozzz2018-09-031-4/+4
|
* add like, dislike and subscribe button hotkeysRigel Kent2018-09-032-2/+28
|
* fix other video margin-topRigel Kent2018-09-031-2/+2
|
* make left menu show the scrollbar on hover/focusRigel Kent2018-09-031-1/+1
| | | add hotkey to the overview page
* restore video-bottom marginsRigel Kent2018-09-031-3/+2
|
* Fix videos overview tags sectionChocobozzz2018-08-311-2/+2
|
* Trending by intervalChocobozzz2018-08-311-1/+1
|
* Refactor: Separated "Other Videos" section into a dedicated ↵Brad Johnson2018-08-3111-35/+240
| | | | | | | | | | | | | | | | | | | | | | | | | | component/service (#969) * Separated "Other Videos" section into a dedicated component/service I'm currently working on some proof-of-concepts for recommendation providers that could work with PeerTube to provide useful video suggestions to the user. As a first step, I want to have great clarity about how PeerTube, itself, will surface these videos to the user. With this branch, I'm refactoring the "recommendations" to make it easier to swap out different recommender implementations quickly. Stop recommender from including the video that's being watched. Ensure always 5 recommendations * Treat recommendations as a stream of values, rather than a single async value. * Prioritize readability over HTTP response size early-optimization. * Simplify pipe