Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move original publication date in advanced settings | Chocobozzz | 2019-02-11 | 2 | -45/+49 |
| | |||||
* | Merge branch 'develop' into pr/1285 | Chocobozzz | 2019-02-11 | 34 | -518/+252 |
|\ | |||||
| * | Move enabled download/comments in advanced tab | Chocobozzz | 2019-02-11 | 1 | -10/+10 |
| | | |||||
| * | Merge branch 'develop' into pr/1217 | Chocobozzz | 2019-02-11 | 52 | -684/+488 |
| |\ | |||||
| | * | Fix client with google bot | Chocobozzz | 2019-02-11 | 1 | -2/+1 |
| | | | |||||
| | * | Add player mode in watch/embed urls | Chocobozzz | 2019-02-11 | 1 | -10/+12 |
| | | | |||||
| | * | Fallback HLS to webtorrent | Chocobozzz | 2019-02-11 | 1 | -7/+16 |
| | | | |||||
| | * | Add hls support on server | Chocobozzz | 2019-02-11 | 1 | -5/+23 |
| | | | |||||
| | * | Refractor videojs player | Chocobozzz | 2019-02-11 | 1 | -40/+37 |
| | | | | | | | | | | | | Add fake p2p-media-loader plugin | ||||
| | * | Fix trending days display on first load | Chocobozzz | 2019-01-21 | 1 | -11/+14 |
| | | | |||||
| | * | Fix some styles | Chocobozzz | 2019-01-17 | 1 | -7/+6 |
| | | | | | | | | | | | | Video edit tags, dropdown actions font ... | ||||
| | * | Refactor how we use icons | Chocobozzz | 2019-01-17 | 21 | -215/+80 |
| | | | | | | | | | | | | Inject them in an angular component so we can easily change their color | ||||
| | * | Increase abuse length to 3000 | Chocobozzz | 2019-01-14 | 8 | -229/+8 |
| | | | | | | | | | | | | And correctly handle new lines | ||||
| | * | Add unload listener on video upload/update | Chocobozzz | 2019-01-14 | 3 | -6/+32 |
| | | | |||||
| | * | Help translators to translate trending title/tooltip | Chocobozzz | 2019-01-14 | 1 | -9/+13 |
| | | | |||||
| | * | WIP : Indicate to users how "trending" works (#1458) | Aurélien Béranger | 2019-01-14 | 1 | -2/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Get the INTERVAL_DAYS const in the video-trending component * Change Trending section title * Add a tooltip to explain how trending section works * Minor CSS fix for the my-feed popover next to the titlepage | ||||
| | * | Add ability to unfederate a local video (on blacklist) | Chocobozzz | 2019-01-10 | 2 | -3/+14 |
| | | | |||||
| * | | Rename downloadingEnabled property to downloadEnabled | Lucas Declercq | 2018-10-08 | 6 | -10/+10 |
| | | | |||||
| * | | Fix some defaults values + indentation | Lucas Declercq | 2018-10-08 | 1 | -2/+2 |
| | | | |||||
| * | | Only show download button if downloadingEnabled is set to true | Lucas Declercq | 2018-10-06 | 2 | -0/+7 |
| | | | |||||
| * | | Add downloadingEnabled property to video model | Lucas Declercq | 2018-10-06 | 5 | -1/+11 |
| | | | |||||
* | | | Enable video watch | clementbrizard | 2019-01-12 | 2 | -2/+9 |
| | | | |||||
* | | | Enable video upload and edit | clementbrizard | 2019-01-12 | 2 | -1/+17 |
| |/ |/| | |||||
* | | Add contact form checkbox in admin form | Chocobozzz | 2019-01-10 | 1 | -1/+1 |
| | | |||||
* | | Correctly scroll to video comment | Chocobozzz | 2019-01-09 | 2 | -6/+2 |
| | | |||||
* | | Add notifications in the client | Chocobozzz | 2019-01-09 | 1 | -13/+2 |
| | | |||||
* | | Refractor notification service | Chocobozzz | 2018-12-19 | 18 | -87/+70 |
| | | | | | | | | Shorter name and use primeng component | ||||
* | | Don't call watching endpoint if history is disabled | Chocobozzz | 2018-12-19 | 1 | -1/+1 |
| | | |||||
* | | Add ability to disable and clear history | Chocobozzz | 2018-12-18 | 1 | -2/+2 |
| | | |||||
* | | Add ability to set subtitle in URL in watch page | Chocobozzz | 2018-12-17 | 1 | -3/+6 |
| | | |||||
* | | Fix adding captions to a video | Chocobozzz | 2018-12-17 | 1 | -3/+1 |
| | | |||||
* | | Redirect to the last url on login | Chocobozzz | 2018-12-11 | 1 | -1/+0 |
| | | |||||
* | | Support additional video extensions | Chocobozzz | 2018-12-11 | 6 | -2/+21 |
| | | |||||
* | | Remove hard-coded 8GB upload limit in client (#1293) | Micah Elizabeth Scott | 2018-12-07 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove hard-coded 8GB upload limit in client Ideally we'd know what the specific server's configured upload limit is before starting, but this 8GB limit is not useful if an administrator has changed the nginx post limit on the server. * Better docs for admins about client_max_body_size Seems like some admins already tweak this value up or down to allow for different maximum video upload sizes. The current codebase has no other server-side limits that I'm aware of, and I've been routinely uploading quite large videos to my instance. This patch replaces the somewhat incorrect (or outdated?) 'hard limit' comment with some advice about allocating enough space for nginx and communicating the limit with your users. Of course it would be better if this configuration could be unified with PeerTube's config somehow. I'm not sure whether the best option there is to turn off nginx's buffering here and let PeerTube handle the entire upload (can we do this only for the video upload API endpoint?) or whether we want PeerTube to generate nginx configs in a more automated way layer. In any case, this patch is intended as an incremental improvement. | ||||
* | | Add information in report modal | Chocobozzz | 2018-12-05 | 3 | -0/+25 |
| | | |||||
* | | Improve message visibility on signup | Chocobozzz | 2018-11-16 | 1 | -0/+1 |
| | | |||||
* | | Check follow constraints when getting a video | Chocobozzz | 2018-11-16 | 1 | -1/+1 |
| | | |||||
* | | Improve video upload error handling | Chocobozzz | 2018-11-16 | 12 | -17/+74 |
| | | |||||
* | | Upgrade server dep | Chocobozzz | 2018-11-15 | 1 | -1/+1 |
| | | |||||
* | | Fix new Angular 7 issues | Chocobozzz | 2018-11-15 | 3 | -4/+2 |
| | | |||||
* | | Check activities host | Chocobozzz | 2018-11-14 | 1 | -2/+2 |
| | | |||||
* | | add noImplicitThis flag (#1324) | BO41 | 2018-10-24 | 2 | -2/+2 |
| | | |||||
* | | Better typings | Chocobozzz | 2018-10-18 | 12 | -27/+32 |
| | | |||||
* | | NoImplicitAny flag true (#1157) | BO41 | 2018-10-18 | 12 | -24/+24 |
| | | | | | | | | | | | | | | | | this enables the `noImplicitAny` flag in the Typescript compiler > When the noImplicitAny flag is true and the TypeScript compiler cannot infer the type, it still generates the JavaScript files, but it also reports an error. Many seasoned developers prefer this stricter setting because type checking catches more unintentional errors at compile time. closes: #1131 replaces #1137 | ||||
* | | Add ability to list all local videos on client | Chocobozzz | 2018-10-10 | 2 | -0/+17 |
|/ | |||||
* | Add user history and resume videos | Chocobozzz | 2018-10-05 | 1 | -2/+11 |
| | |||||
* | Remove unused variable | Chocobozzz | 2018-10-05 | 1 | -3/+0 |
| | |||||
* | fix account URI in remote comment modal (partial rollback) | Rigel Kent | 2018-10-05 | 1 | -0/+1 |
| | |||||
* | fix account URI in remote comment modal (cleanup) | Rigel Kent | 2018-10-05 | 2 | -2/+1 |
| | |||||
* | fix account URI in remote comment modal | Rigel Kent | 2018-10-04 | 2 | -1/+5 |
| |