aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* Fix prod buildChocobozzz2017-06-114-9/+17
|
* Bundle webtorrent with webpack. Closes ↵Chocobozzz2017-06-116-19/+6
| | | | https://github.com/Chocobozzz/PeerTube/issues/50
* Update webpack stackChocobozzz2017-06-1119-46/+328
|
* Update client modulesChocobozzz2017-06-1117-834/+797
|
* Better build/dev scriptsChocobozzz2017-06-113-2/+6
|
* Use shared modelsChocobozzz2017-06-113-11/+19
|
* Client: little refractoringChocobozzz2017-05-0523-103/+57
|
* Fix unset video language on video updateChocobozzz2017-05-052-1/+14
|
* Client: fix update button displayed on non owned videoChocobozzz2017-05-052-2/+5
|
* Client: try to be responsiveChocobozzz2017-05-019-16/+147
|
* Client: minor css fixesChocobozzz2017-04-292-0/+4
|
* Use yarn instead of npm installChocobozzz2017-04-261-0/+5932
|
* Fix travis lint testsChocobozzz2017-04-261-2/+2
|
* Client: fix compilationChocobozzz2017-04-261-1/+1
|
* Format video blacklistChocobozzz2017-04-263-33/+35
|
* Client: fix bad rebaseChocobozzz2017-04-261-5/+0
|
* Client: add ability to hide left menuChocobozzz2017-04-264-61/+104
|
* Client: add github and licence link in footerChocobozzz2017-04-261-1/+2
|
* Client: adjust viewport heightChocobozzz2017-04-265-3/+10
|
* Client: display video tagsChocobozzz2017-04-264-2/+31
|
* Client: Use recharge typo for logoChocobozzz2017-04-261-0/+0
| | | | http://www.dafont.com/recharge.font?text=PeerTube
* Add creditChocobozzz2017-04-262-3/+14
|
* Client: beautiful watch pageChocobozzz2017-04-2621-407/+463
|
* Client: fixed header and menuChocobozzz2017-04-265-46/+58
|
* Client: add titles to menu blocksChocobozzz2017-04-263-5/+26
|
* Client Better design for video watchChocobozzz2017-04-267-141/+199
|
* Client: responsive designChocobozzz2017-04-2628-255/+378
|
* Client: avoid loading javascript ressource over the networkChocobozzz2017-04-262-22/+2
|
* Client: use builtin email validatorChocobozzz2017-04-263-17/+1
|
* Add ability for an administrator to remove any video (#61)Green-Star2017-04-268-45/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
* Update standard -> 10Chocobozzz2017-04-162-2/+1
|
* Client: use ng2-tag-input for forms with video tagsChocobozzz2017-04-168-141/+35
|
* Client: update to angular 4Chocobozzz2017-04-1215-68/+51
|
* Client: add basic support for updating a videoChocobozzz2017-04-1014-6/+354
|
* Client: support signupChocobozzz2017-04-109-0/+188
|
* Client: support video languageChocobozzz2017-04-078-1/+56
|
* Client: add ability for user to change nsfw settingsChocobozzz2017-04-0613-83/+242
|
* Client: Handle NSFW videoChocobozzz2017-04-0415-22/+157
|
* Client: add support for video licencesChocobozzz2017-03-278-0/+58
|
* Relax on tags (accept any characters and not required anymore)Chocobozzz2017-03-223-23/+28
|
* Add video category supportChocobozzz2017-03-228-3/+74
|
* Client: fix routes titleChocobozzz2017-03-128-16/+16
|
* Client: fix prod compilationChocobozzz2017-03-101-1/+1
|
* Client: switch to @nglibs/metaChocobozzz2017-03-105-15/+21
|
* Allow to sort by likesChocobozzz2017-03-083-4/+8
|
* Add like/dislike system for videosChocobozzz2017-03-089-12/+167
|
* Client: check token valitidy at startupChocobozzz2017-03-0414-25/+44
|
* Update bittorrent-tracker and standard to v9Chocobozzz2017-03-031-1/+1
|
* Fix request schedulers statsChocobozzz2017-02-275-42/+89
|
* Client: add views information and sortChocobozzz2017-02-267-15/+40
|