aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/constants.ts
Commit message (Collapse)AuthorAgeFilesLines
* Add job ttlChocobozzz2018-08-061-2/+11
|
* Add ability to list video importsChocobozzz2018-08-061-0/+1
|
* Auto update youtube-dlChocobozzz2018-08-061-1/+2
|
* Add ability to import video with youtube-dlChocobozzz2018-08-061-2/+16
|
* Nice ffmpeg to 15 and 2Jorropo2018-08-011-0/+6
| | | | | | Niceness 15 for video conversionNiceness 2 for image generation (niceness 2 doesn't make it slower, just don't block servers and other app)
* adding ORM pool configurationRigel Kent2018-07-311-1/+4
|
* Delete old indexesChocobozzz2018-07-271-1/+1
|
* Add max count in paginationChocobozzz2018-07-241-3/+7
|
* adding initial support for nodeinfoRigel Kent2018-07-241-2/+4
|
* Optimize SQL queriesChocobozzz2018-07-241-1/+1
|
* Add videos list filtersChocobozzz2018-07-241-1/+1
|
* Begin advanced searchChocobozzz2018-07-241-1/+3
|
* Render CSS/title/description tags on server sideChocobozzz2018-07-181-2/+7
|
* Add esperanto, lojban, klingon and kotava (audio/subtitle) languagesChocobozzz2018-07-171-18/+23
|
* Fix static avatars/thumbnails cacheChocobozzz2018-07-171-1/+1
|
* Handle .srt subtitlesChocobozzz2018-07-161-5/+12
|
* Implement captions/subtitlesChocobozzz2018-07-161-2/+21
|
* adding redis unix connectionRigel Kent2018-07-141-4/+5
|
* Migrate to bullChocobozzz2018-07-111-1/+1
|
* Handle higher FPS for high resolution (test)Chocobozzz2018-06-291-2/+4
|
* Fix npm run dev:serverChocobozzz2018-06-291-1/+1
|
* Add tracker rate limiterChocobozzz2018-06-261-0/+9
|
* Add ability to schedule video publicationChocobozzz2018-06-151-4/+2
|
* Add ability for uploaders to schedule video updateChocobozzz2018-06-141-3/+12
|
* Improve tests when waiting pending jobsChocobozzz2018-06-131-0/+7
|
* Add concept of video state, and add ability to wait transcoding beforeChocobozzz2018-06-121-2/+8
| | | | publishing a video
* Increase access_token lifetimeChocobozzz2018-06-081-1/+1
|
* Improve create import file jobChocobozzz2018-06-071-0/+3
| | | | Fix federation of .ogv videos
* Add create-import-video-file-job commandFlorent Fayolle2018-06-071-0/+2
|
* Add server localizationChocobozzz2018-06-061-1/+2
|
* Improve torrent/video downloadChocobozzz2018-05-291-0/+5
|
* feature: IP filtering on signup pageRigel Kent2018-05-221-1/+7
| | | | | | disable registration form on IP not in range checking the CIDR list before filtering with it placing the cidr filters as an attribute object in the config
* feature: db selection in redisRigel Kent2018-05-211-1/+2
| | | | resolves #579
* robots.txt config and routeRigel Kent2018-05-161-1/+2
|
* Use publishedAt by default in videos sortChocobozzz2018-05-151-1/+1
|
* Decrease AP video cacheChocobozzz2018-05-111-1/+1
|
* Cache AP video route for 5 secondsChocobozzz2018-05-111-2/+9
|
* Add ability to embed a video in TwitterChocobozzz2018-05-111-0/+6
| | | | The instance should be whitelisted first
* Fix video channel description/support max lengthChocobozzz2018-05-091-4/+4
|
* Add timeout and TTL to request jobsChocobozzz2018-05-091-3/+6
|
* Add ability to update the user display name/descriptionChocobozzz2018-04-261-1/+2
|
* Use ISO 639 for languagesChocobozzz2018-04-231-33/+37
|
* Better file name for torrentChocobozzz2018-04-191-1/+1
|
* Add information concerning video privacy in my videos listChocobozzz2018-04-191-1/+1
|
* Add ability to choose what policy we have for NSFW videosChocobozzz2018-04-191-1/+10
| | | | There is a global instance setting and a per user setting
* Process broadcast requests in parallelChocobozzz2018-04-181-0/+2
|
* Move server follow in the job queueChocobozzz2018-04-181-0/+2
| | | | It helps to track follow errors
* Add redis cache to feed routeChocobozzz2018-04-171-0/+8
|
* Support hostname binding in configPierre-Alain TORET2018-04-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add basic support for hostname binding Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com> * Make production example a bit more secure Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com> * Make example config files compatible with hostname binding modification Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com> * Fix typo Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com> * Bind on 127.0.0.1 by default Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com> * Update Docker configuration with hostname binding Signed-off-by: Pierre-Alain TORET <pierre-alain.toret@protonmail.com>
* Add publishedAt field for video model.Julien Le Bras2018-03-301-1/+1
| | | | | | | | | | | | * New field added in the `video` table + migration script * `publishedAt` updated to NOW when privacy changes from private to public/unlisted (default = NOW) * Models updated to handle the new attribute * Client interface updated to use `publishedAt` instead of `createdAt` except in My Account > My Videos view