aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/images
Commit message (Collapse)AuthorAgeFilesLines
* Add maximized mode to markdown-textarea + CSS improvements (#2660)Kim2020-04-282-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add arrows-angle-contract/expand bootstrap icons * Add grey textarea-background-color * Add maximized support to markdown-textarea + improve column display * Refactor CSS + add ResizeObservable * Replace bootstrap icons with softies * Add ResizeObserver typing definition * Add focus on textarea + Fix Observables * Propage component changes on markdown plugins * Ignore ResizeObserver not implemented in typescript yet * Move observers from constructor to click event * Add scss and css variables * Replace textareaWidth with textareaMaxWidth to fix others textareas * Clean unused css rules * Fix ResizeObserver unknown by TypeScript compiler * Set max-width: 100% for small and mobile views * Fix textarea/preview height on maximized mode * Add common padding textarea/preview side-by-side * Hide scrollbar sub-menu on small-views * Add maximized mode for mobile views * Fix sass calculate syntax * Revert custom CSS variable for inputBorderRadius and inputBorderColor * Remove unsued methods * Fix missing implement method Co-authored-by: kimsible <kimsible@users.noreply.github.com>
* Better use of space and icons in plugins administration interfaceRigel Kent2020-03-101-0/+6
|
* Add visitor settings, rework logged-in dropdown (#2514)Rigel Kent2020-02-289-22/+68
| | | | | | | | | | | | | | * Add visitor settings, rework logged-in dropdown * Make user dropdown P2P switch functional * Fix lint * Fix unnecessary notification when user logs out * Simplify visitor settings code and remove unnecessary icons * Catch parsing errors and reindent menu styles
* Add miniature quick actions to add video to Watch later playlistRigel Kent2020-01-021-0/+11
|
* improve notification popup interactivity: read all, layout, positionRigel Kent2019-12-191-0/+15
| | | | fixes #1730
* change repeat icon and factorize functionsRigel Kent2019-12-131-1/+12
|
* add loop setting for playlists, and use sessionStorageRigel Kent2019-12-131-0/+1
|
* Change the support iconChocobozzz2019-12-032-11/+14
|
* Fix welcome mascotChocobozzz2019-11-2710-0/+1254
|
* Optimize mascot imagesChocobozzz2019-11-067-0/+308
|
* Increase 404 mascot sizeChocobozzz2019-10-301-0/+324
|
* Add mascot to 404 pageChocobozzz2019-10-306-0/+0
|
* Add contributors in about peertube pageChocobozzz2019-09-051-0/+0
|
* Update client dependenciesChocobozzz2019-07-2546-0/+0
|
* Add ability to search available pluginsChocobozzz2019-07-241-0/+11
|
* Add default playlist imageChocobozzz2019-04-241-0/+0
|
* Add logs page in clientChocobozzz2019-04-111-0/+12
|
* Add new instance follower notification in clientChocobozzz2019-04-092-14/+11
|
* Add my library section in menuChocobozzz2019-03-2017-47/+113
|
* Playlist support in watch pageChocobozzz2019-03-181-0/+9
|
* Playlist videos componentChocobozzz2019-03-182-0/+11
|
* Add to playlist dropdownChocobozzz2019-03-183-3/+24
|
* Fix invisible things in dark modeChocobozzz2019-01-171-2/+2
|
* Refactor how we use iconsChocobozzz2019-01-1735-242/+125
| | | | Inject them in an angular component so we can easily change their color
* Fix new Angular 7 issuesChocobozzz2018-11-151-0/+0
|
* add shortcuts icon in menuRigel Kent2018-09-261-0/+0
|
* add theming via css custom propertiesRigel Kent2018-09-041-0/+1
| | | | and a bonus dark color theme toggle
* Users can change ownership of their video [#510] (#888)Gaëtan Rizio2018-09-041-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * [#510] Create a new route to get the list of user names To be able to transfer ownership to a user, we need to be able to select him from the list of users. Because the list could be too big, we add a autocomplete feature. This commit does the following: * Add a API endpoint to get a list of user names by searching its name * [#510] The user can choose the next owner of the video To be able to transfer ownership to a user, we need the owner to be able to select the user. The server can autocomplete the name of the user to give the ownership. We add a dialog for the user to actually select it. This commit does the following: * Create a modal for the owner to select the next one * Opens this modal with a button into the menu *more* * Make the dependency injection * [#510] When the user choose the next owner, create a request in database For the change of ownership to happen, we need to store the temporary requests. When the user make the request, save it to database. This commit does the following: * Create the model to persist change ownership requests * Add an API to manage ownership operations * Add a route to persist an ownership request * [#510] A user can fetch its ownership requests sent to him To be able to accept or refuse a change of ownership, the user must be able to fetch them. This commit does the following: * Add an API to list ownership for a user * Add the query to database model * [#510] A user can validate an ownership requests sent to him - server The user can accept or refuse any ownership request that was sent to him. This commit focus only on the server part. This commit does the following: * Add an API for the user to accept or refuse a video ownership * Add validators to ensure security access * Add a query to load a specific video change ownership request * [#510] A user can validate an ownership requests sent to him - web The user can accept or refuse any ownership request that was sent to him. This commit focus only on the web part. This commit does the following: * Add a page to list user ownership changes * Add actions to accept or refuse them * When accepting, show a modal requiring the channel to send the video * Correct lint - to squash * [#510] PR reviews - to squash This commit does the following: * Search parameter for user autocompletion is required from middleware directly * [#510] PR reviews - to squash with creation in database commit This commit does the following: * Add the status attribute in model * Set this attribute on instance creation * Use AccountModel method `loadLocalByName` * [#510] PR reviews - to squash with fetch ownership This commit does the following: * Add the scope `FULL` for database queries with includes * Add classic pagination middlewares * [#510] PR reviews - to squash with ownership validation - server This commit does the following: * Add a middleware to validate whether a user can validate an ownership * Change the ownership status instead of deleting the row * [#510] PR reviews - to squash with ownership validation - client This commit does the following: * Correct indentation of html files with two-spaces indentation * Use event emitter instead of function for accept event * Update the sort of ownership change table for a decreasing order by creation date * Add the status in ownership change table * Use classic method syntax * code style - to squash * Add new user right - to squash * Move the change to my-account instead of video-watch - to squash As requested in pull-request, move the action to change ownership into my videos page. The rest of the logic was not really changed. This commit does the following: - Move the modal into my video page - Create the generic component `button` to keep some styles and logic * [#510] Add tests for the new feature To avoid regression, we add tests for all api of ownership change. This commit does the following: - Create an end-to-end test for ownership change - Divide it to one test per request * [#510] Do not send twice the same request to avoid spam We can send several time the same request to change ownership. However, it will spam the user. To avoid this, we do not save a request already existing in database. This commit does the following: - Check whether the request exist in database - Add tests to verify this new condition * [#510] Change icons Change icons so they remains logic with the rest of the application. This commit does the following: - Add svg for missing icons - Add icons in `my-button` component - Use these new icons * [#510] Add control about the user quota The user should be able to accept a new video only if his quota allows it. This commit does the following: - Update the middleware to control the quota - Add tests verifying the control * Correct merge - Use new modal system - Move button to new directory `buttons` * PR reviews - to squash
* Videos overview page: first versionChocobozzz2018-08-311-0/+18
|
* Add features table on signupChocobozzz2018-08-281-0/+12
|
* Fetch outbox when searching an actorChocobozzz2018-08-271-26/+0
|
* Add local user subscriptionsChocobozzz2018-08-272-0/+52
|
* Improve blacklist managementChocobozzz2018-08-141-0/+11
|
* Add blacklist reason fieldChocobozzz2018-08-141-0/+14
|
* [ImgBot] optimizes imagesJorropo2018-07-247-0/+0
| | | | | | | | | | | | | | | | | | | | | *Total -- 289.13kb -> 211.82kb (26.74%)/support/doc/development/server/upload-video.png -- 56.19kb -> 33.83kb (39.8%)/support/doc/development/client/components-tree.png -- 31.81kb -> 19.82kb (37.68%)/client/src/assets/images/icons/icon-512x512.png -- 14.24kb -> 9.97kb (30.03%)/server/tests/fixtures/avatar-resized.png -- 1.69kb -> 1.19kb (29.24%)/server/tests/fixtures/avatar2-resized.png -- 1.68kb -> 1.21kb (28.41%)/client/src/assets/images/default-avatar.png -- 1.63kb -> 1.24kb (23.89%)/server/tests/fixtures/avatar.png -- 1.63kb -> 1.24kb (23.89%)/server/tests/fixtures/avatar-big.png -- 143.15kb -> 111.56kb (22.06%)/client/src/assets/images/icons/icon-192x192.png -- 3.58kb -> 2.86kb (20.21%)/server/tests/fixtures/video_short1.webm.jpg -- 2.83kb -> 2.36kb (16.75%)/client/src/assets/images/icons/icon-144x144.png -- 2.34kb -> 1.95kb (16.53%)/client/src/assets/images/icons/icon-96x96.png -- 1.91kb -> 1.62kb (11.93%)/client/src/assets/images/icons/icon-72x72.png -- 1.72kb -> 1.53kb (11.1%)/client/src/assets/images/icons/icon-48x48.png -- 1.18kb -> 1.17kb (1%)
* Add advanced search in clientChocobozzz2018-07-241-0/+17
|
* Add ability to choose the languageChocobozzz2018-06-281-0/+0
|
* Fix add icon pathChocobozzz2018-06-111-0/+0
|
* feature: initial syndication feeds supportRigel Kent2018-04-171-0/+58
| | | | | | | | | | | | | | | | | | Provides rss 2.0, atom 1.0 and json 1.0 feeds for videos (instance and account-wide) on listings and video-watch views. * still lacks redis caching * still lacks lastBuildDate support * still lacks channel-wide support * still lacks semantic annotation (for licenses, NSFW warnings, etc.) * still lacks love ( ˘ ³˘) * RSS: has MRSS support for torrent lists! * RSS: includes the first torrent in an enclosure * JSON: lists all torrents in the 'attachments' object * ATOM: lacking torrent listing support Advances #23 Partial implementation for the accountId generation in the client, which will need a hotfix to add a way to get the proper account id.
* Add "local" videos in menuChocobozzz2018-03-131-0/+15
|
* Add help tooltipChocobozzz2018-02-221-0/+12
|
* Add support to video support on clientChocobozzz2018-02-201-0/+13
|
* Better peertube iconsChocobozzz2018-02-0816-3/+2
|
* Include Web Manifest (#273)Lucas Teixeira2018-02-087-0/+1
| | | | | | | | | | | | | | | | * Include Web Manifest Now we need to fix the path, which shouldn't be hard. * Delete unused icon * Remove Thumbs.db That file was automatically generated * Fixed icon path * Fixed typo
* Add about pageChocobozzz2018-01-311-0/+12
|
* Add video comment componentsChocobozzz2017-12-272-0/+15
|
* Design modalsChocobozzz2017-12-205-21/+46
|
* Design admin data tablesChocobozzz2017-12-082-0/+0
|
* Begin admin designChocobozzz2017-12-081-0/+13
|
* First step upload with new designChocobozzz2017-12-071-0/+16
|