aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix deleting not found remote actorsChocobozzz2019-01-141-3/+8
| |
| * Refresh remote actors on GET enpointsChocobozzz2019-01-142-55/+58
| |
| * Warn user when they want to delete a channelChocobozzz2019-01-142-2/+2
| | | | | | | | | | Because they will not be able to create another channel with the same actor name
| * Add ability to unfederate a local video (on blacklist)Chocobozzz2019-01-101-10/+6
| |
| * Add new follow, mention and user registered notifsChocobozzz2019-01-092-3/+10
| |
| * Add notification settings migrationChocobozzz2019-01-091-13/+9
| |
| * Add user notification base codeChocobozzz2019-01-094-8/+33
| |
| * Support additional video extensionsChocobozzz2018-12-112-8/+6
| |
| * Merge branch 'move-utils-to-shared' of ↵Chocobozzz2018-12-071-1/+0
| |\ | | | | | | | | | https://github.com/buoyantair/PeerTube into buoyantair-move-utils-to-shared
| | * Merge branch 'develop' of https://github.com/Chocobozzz/PeerTube into ↵buoyantair2018-11-205-16/+18
| | |\ | | | | | | | | | | | | move-utils-to-shared
| | * \ Merge branch 'develop' of https://github.com/Chocobozzz/PeerTube into ↵buoyantair2018-11-182-13/+6
| | |\ \ | | | | | | | | | | | | | | | move-utils-to-shared
| | * | | Fix dependency errors between modulesbuoyantair2018-11-162-2/+2
| | | | |
| * | | | Add tmp and redundancy directoriesChocobozzz2018-12-042-5/+2
| | | | |
| * | | | Fix thumbnail processingChocobozzz2018-12-042-9/+14
| | | | |
| * | | | Fix trending pageChocobozzz2018-12-031-2/+11
| | | | |
| * | | | Don't import test tools in coreChocobozzz2018-11-222-5/+3
| | | | |
| * | | | Delete invalid or deleted remote videosChocobozzz2018-11-202-57/+57
| | |_|/ | |/| |
| * | | Fix checkbox marginsChocobozzz2018-11-195-12/+12
| | | |
| * | | Optimize image resizingChocobozzz2018-11-191-4/+6
| | |/ | |/|
| * | Fix images size when downloading themChocobozzz2018-11-162-13/+6
| |/
| * Don't forward view, send updates insteadChocobozzz2018-11-151-12/+4
| | | | | | | | | | To avoid inconsistencies in the federation, now the origin server will tell other instances what is the correct number of views
| * Check activities hostChocobozzz2018-11-1415-46/+121
| |
| * AP mimeType -> mediaTypeChocobozzz2018-10-181-3/+6
| |
| * Set bitrate limits for transcoding (fixes #638) (#1135)Felix Ableitner2018-10-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Set bitrate limits for transcoding (fixes #638) * added optimization script and test, changed stuff * fix test, improve docs * re-add optimize-old-videos script * added documentation * Don't optimize videos without valid UUID, or redundancy videos * move getUUIDFromFilename * fix tests? * update torrent and file size, some more fixes/improvements * use higher bitrate for high fps video, adjust bitrates * add test video * don't throw error if resolution is undefined * generate test fixture on the fly * use random noise video for bitrate test, add promise * shorten test video to avoid timeout * use existing function to optimize video * various fixes * increase test timeout * limit test fixture size, add link * test fixes * add await * more test fixes, add -b:v parameter * replace ffmpeg wiki link * fix ffmpeg params * fix unit test * add test fixture to .gitgnore * add video transcoding fps model * add missing file
* | Rename downloadingEnabled property to downloadEnabledLucas Declercq2018-10-081-2/+2
| |
* | Add downloadingEnabled property to video modelLucas Declercq2018-10-061-0/+2
|/
* Upsert cache file on create activityChocobozzz2018-10-023-11/+15
|
* Correctly forward comment deletionChocobozzz2018-10-021-2/+2
|
* Try to improve redundancy testsChocobozzz2018-10-021-0/+2
|
* Don't build redundancy urls with "-1" as fpsChocobozzz2018-10-011-1/+1
|
* Fix video fps validatorChocobozzz2018-10-011-3/+3
|
* Fix refreshing external video attributesChocobozzz2018-10-011-11/+11
|
* Check video channel name is unique on our instanceChocobozzz2018-10-011-1/+1
|
* Ensure video existence before duplicating itChocobozzz2018-10-011-3/+7
|
* Fix federation with a comment replyChocobozzz2018-09-271-1/+1
|
* Fix video files duplicated when fps is nullChocobozzz2018-09-261-1/+1
| | | | Null values are not considered equal in a UNIQUE index
* Reduce video import TTLChocobozzz2018-09-251-1/+1
|
* Fix comment deletion with mastodonChocobozzz2018-09-241-1/+1
| | | | Will only act with new comments
* Improve redundancy: add 'min_lifetime' configurationChocobozzz2018-09-247-45/+76
|
* Remove unnecessary actor existance checkChocobozzz2018-09-211-3/+0
| | | | We already checked it in the signature checker
* Limit associations fetch when loading tokenChocobozzz2018-09-201-2/+2
|
* Put config redundancy strategies in "strategies" subkeyChocobozzz2018-09-191-0/+3
|
* Improve AP actor checksChocobozzz2018-09-195-21/+30
|
* Optimize activity actor load in AP processorsChocobozzz2018-09-1913-88/+73
|
* Optimize video view AP processingChocobozzz2018-09-193-51/+84
|
* Refractor videos AP functionsChocobozzz2018-09-197-219/+227
|
* Optimize SQL requests of videos AP endpointsChocobozzz2018-09-191-1/+1
|
* Refractor activities sendingChocobozzz2018-09-149-145/+133
|
* Basic video redundancy implementationChocobozzz2018-09-1316-136/+317
|
* Add federation to ownership changeChocobozzz2018-09-044-7/+20
|