aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models
Commit message (Collapse)AuthorAgeFilesLines
* Fix embed on mastodonChocobozzz2020-02-041-8/+9
|
* Fix AP icon URL for imported videosChocobozzz2020-01-292-3/+3
|
* Remove HLS torrentsChocobozzz2020-01-243-8/+36
|
* Fix federation when updating a videoChocobozzz2020-01-101-1/+3
|
* Use lower instead of ilike to login usersChocobozzz2020-01-091-2/+6
|
* Optimize list my playlists SQL queryChocobozzz2020-01-091-18/+22
|
* Optimize notification endpointChocobozzz2020-01-091-11/+11
|
* Try to fix subscriptions inconsistenciesChocobozzz2020-01-086-18/+30
|
* Add ability to skip count queryChocobozzz2020-01-081-3/+4
|
* Optimize videos list SQL queries workflowChocobozzz2020-01-081-9/+12
|
* Optimize videos list SQL queryChocobozzz2020-01-081-1/+8
|
* Update validator dependencyChocobozzz2020-01-073-3/+3
|
* Improve SQL query for my special playlistsChocobozzz2020-01-031-34/+38
|
* Add infohash cacheChocobozzz2020-01-032-2/+23
|
* Fix totalRepliesFromVideoAuthor SQL requestChocobozzz2020-01-031-1/+3
|
* Add miniature quick actions to add video to Watch later playlistRigel Kent2020-01-021-5/+26
|
* Add author indicator to the comment replies loaderRigel Kent2019-12-281-0/+12
|
* Add search bars for a user's videos and playlist libraryRigel Kent2019-12-281-3/+21
|
* Add comment filtering by reply countRigel Kent2019-12-272-2/+16
|
* Cache some SQL queriesChocobozzz2019-12-272-3/+32
|
* Fix playlist searchChocobozzz2019-12-271-15/+6
|
* Case insensitive tags searchChocobozzz2019-12-271-1/+1
|
* Add playlist search option and search input for add-to-video-playlist dropdownRigel Kent2019-12-261-5/+26
| | | | fixes #2138
* Fix search SQL query where duplicationChocobozzz2019-12-231-1/+1
|
* Add index for recently added SQL queryChocobozzz2019-12-231-1/+6
|
* Optimize local sql queryChocobozzz2019-12-231-32/+9
|
* Litte SQL optimzation in videos listChocobozzz2019-12-231-24/+24
|
* Don't notify on muted instanceChocobozzz2019-12-192-5/+26
|
* Fix lint & testsChocobozzz2019-12-181-5/+7
|
* Fix video import with long thumbnail urlChocobozzz2019-12-171-3/+15
|
* autoplay next video support for playlistsRigel Kent2019-12-131-0/+8
|
* Add internal privacy modeChocobozzz2019-12-123-7/+68
|
* Use a migration script to generate HLS torrent filesChocobozzz2019-12-121-1/+1
|
* Don't add the unique preferredUsername index for nowChocobozzz2019-12-121-7/+7
| | | | We'll do it in the next release so admins can prepare it
* Don't use the max quality file when transcoding to a new resolutionChocobozzz2019-12-111-4/+12
|
* Add ability to search by UUIDChocobozzz2019-12-091-20/+30
|
* Add missing hotkeys to the watch pageChocobozzz2019-12-061-9/+8
|
* Ensure local actors preferredName don't already existChocobozzz2019-12-051-1/+14
| | | | | | | | | | | | Before applying this commit, check you don't have duplicates local actors in your database: select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 0 If you have some results, it seems you have duplicate channels/accounts. For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique). The updated actors could have some federations issues. Sorry.
* Fix retrieving of deleted comments when subscribing to a new instanceJulien Maulny2019-12-041-8/+11
|
* Soft delete video comments instead of detroyJulien Maulny2019-12-042-5/+30
|
* Add more filters to admin follows tableChocobozzz2019-11-292-3/+17
|
* Filter on follows actor types in about pageChocobozzz2019-11-291-13/+38
|
* Only display accepted followers/followings in about pageChocobozzz2019-11-281-2/+26
|
* Don't always replace actor avatarChocobozzz2019-11-251-5/+4
|
* Add ability to disable webtorrentChocobozzz2019-11-258-182/+296
| | | | In favour of HLS
* Fix and cleanup actor follow inbox sql queryChocobozzz2019-10-231-3/+3
|
* Fix federation with some actorsChocobozzz2019-10-232-7/+12
| | | | That don't have a shared inbox, or a URL
* Update server dependenciesChocobozzz2019-10-216-7/+5
|
* Fix federation issue with some actor descriptionsChocobozzz2019-10-211-1/+1
|
* Autoplay next recommended video (#2137)LoveIsGrief2019-09-241-0/+8
| | | | | | | | | | | | | | | | | | | | | | * Start working on autoplay of next video * Ignore changes made by gitpod * Apply changes from PR#1370 * Correct the spelling of recommendations * Fix linting errors * Move boolean check to existing onEnded handler * Pick a random video until the recommendations are improved * Add simple tests for autoPlayNextVideo * Fix lint ...again