ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 205 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954
  1. # Changelog
  2. ## v6.2.0-rc.1
  3. ### IMPORTANT NOTES
  4. * Added `pip3` as required [PeerTube dependency](https://docs.joinpeertube.org/support/doc/dependencies) to support automatic transcription. You must install it on your system
  5. ### Maintenance
  6. * Check for latest plugin versions every 4 hours (instead of 12 hours). We recommend admins to update their current configuration to apply this change for faster plugin new version notifications
  7. * Add a configuration to configure video thumbnail/preview sizes [#6423](https://github.com/Chocobozzz/PeerTube/pull/6423)
  8. * Support for removing non-existent objects from object storage in [prune-storage script](https://docs.joinpeertube.org/maintain/tools)
  9. * Support for moving original video files to object storage/filesystem in [create-move-video-storage-job script](https://docs.joinpeertube.org/maintain/tools#move-video-files-from-filesystem-to-object-storage)
  10. * Add [house-keeping script](https://docs.joinpeertube.org/maintain/tools#cleanup-remote-files) to recover disk space by removing remote files (thumbnails, avatars...)
  11. * Add `max_request_attempts` object storage configuration (required by some S3 providers such as Blackblaze) [#6418](https://github.com/Chocobozzz/PeerTube/pull/6418)
  12. ### Docker
  13. * Add missing Docker env to configure object storage (user exports and original video files)
  14. ### Plugins/Themes/Embed API
  15. * Add ability to register the same setting multiple times to replace the old one [#6357](https://github.com/Chocobozzz/PeerTube/pull/6357) & [1bfb791e0](https://github.com/Chocobozzz/PeerTube/commit/1bfb791e0539df54d1d007683719dcb883870e1d)
  16. * Add `getUser()` client helper [#6358](https://github.com/Chocobozzz/PeerTube/pull/6358)
  17. * Detect internal link in plugin page to avoid reloading entire application when not needed
  18. ### Features
  19. * :tada: Add automatic transcription of videos to generate subtitles :tada: [#6303](https://github.com/Chocobozzz/PeerTube/pull/6303)
  20. * Uses Whisper engines and models to create the subtitle and guess the video language
  21. * Has to be enabled by admins in the configuration web interface: PeerTube will automatically download and install Whisper binaries/models
  22. * Transcription can also be performed by PeerTube runners, as it can consume a lot of CPU
  23. * Transcription generation can also be run manually by administrators
  24. * :tada: Improve comment moderation :tada: [#6399](https://github.com/Chocobozzz/PeerTube/pull/6399)
  25. * Introduce a new video comment policy that requires comments to be approved first
  26. * Video owners have a dedicated page to list, view and take action on comments made on their videos
  27. * :tada: Implement auto-tagging on comments and videos for admins and on comments for video owners :tada: [#6399](https://github.com/Chocobozzz/PeerTube/pull/6399)
  28. * Comments and videos can be automatically tagged using PeerTube rules ("contains a link" for example) or watched word lists
  29. * These tags can be used to automatically filter videos and comments
  30. * Video owners can select auto tags that require comments to be approved first
  31. * Add the ability to select the thumbnail directly from the video [#6424](https://github.com/Chocobozzz/PeerTube/pull/6424)
  32. * Allow admins to force bulk transcoding
  33. * Faster "Mark as read" user notification REST API endpoint when having many notifications in database
  34. * Improve `Video` ActivityPub compatibility by relaxing PeerTube checks and allowing remote object to not have some fields that were required by PeerTube (missing P2P information for example)
  35. * Highlight current lives on pages that list videos ("Recently Added", "Trending", "Account videos", "Channel videos" etc.)
  36. ### Bug fixes
  37. * Fix embed API on iOS
  38. * Fix RTL layout inconsistencies
  39. * Fix big user export file size
  40. * Fix concurrent live streams serialization issue
  41. * Fix instance slowness when geoip download fails [#6402](https://github.com/Chocobozzz/PeerTube/pull/6402)
  42. * Don't count deleted comments in instance stats
  43. * Handle videos with FPS < 1
  44. * Don't display stats button of remote videos
  45. * Fix recommendation loop for anonymous users
  46. * Handle 410 HTTP response code for AP objects
  47. * Fix major plugin version detection when major number has two digits
  48. * Accessibility:
  49. * Fix focus visibility box
  50. * Fix feed popover title state
  51. * Fix video filter pastille accessibility
  52. * Fix radio button focus
  53. * Fix search typeahead information not read by screen readers
  54. * Fix player "Back" button label
  55. * Fix player settings menu keyboard navigation
  56. * Fix "Update your settings" keyboard navigation and improve accessibility
  57. * Fix checkbox description relationship
  58. * Fix green color contrast
  59. * Correctly label the boolean icon in instance features table
  60. * Remove unneeded information in "Policy for sensitive videos" select
  61. * Fix left menu list items list hierarchy
  62. * Fix HLS audio desync on some videos
  63. * Playlist components in custom markup can use a short UUID
  64. * Support `Service` Activity Pub actors that should fix some federation issues with Mastodon
  65. * Fix downloading protected videos in admin
  66. * Increase legacy upload request timeout
  67. ## v6.1.0
  68. ### IMPORTANT NOTES
  69. * You must update nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/nginx/peertube
  70. * Add `location ~ ^/api/v1/users/[^/]+/imports/import-resumable$ {` block
  71. * This release changes the way how PeerTube counts a video view:
  72. * Views are taken into account after 10 seconds instead of 30 seconds (can be changed in YAML config)
  73. * Views use a *Session ID* generated by the web browser instead of using the request IP (former behavior can be restored in YAML config)
  74. * The goal of this change is to get closer to how other video platforms like Mux, Vimeo, or Instagram work
  75. ### SECURITY
  76. * Compact ActivityPub JSON-LD objects before using them to prevent incorrect access control @tesaguri
  77. * Protect ActivityPub information related to private/internal/blocked videos
  78. ### Admin config (non-exhaustive)
  79. * **Breaking changes**:
  80. * Rename `views.videos.ip_view_expiration` to `views.videos.view_expiration`
  81. * YAML & web admin configs:
  82. * Add `storyboards.enabled` config to disable storyboard generation
  83. * Remove `services.twitter.whitelisted`: Twitter/X doesn't seem to need this anymore. This means that PeerTube will try to inject the video player in Twitter/X by default instead of using a classic image/description
  84. * YAML config only:
  85. * Add `open_telemetry.metrics.playback_stats_interval` config to customize how often viewers send playback stats to server
  86. * Add `views.videos.watching_interval.{anonymous,users}` configs to change how often the web browser sends "is watching" information to the server
  87. * Add `stats.registration_requests.enabled` and `stats.abuses.enabled` configs to hide instance registration/abuse requests public stats (average response time, total registration/abuse requests etc.)
  88. * Add `stats.total_moderators.enabled` and `stats.total_admins.enabled`configs to hide total admins/moderators public stats
  89. * Add `object_storage.streaming_playlists.store_live_streams` config to not store live stream chunks into object storage (when enabled for streaming playlists)
  90. * Set `open_telemetry.metrics.http_request_duration.enabled` to `false` by default to avoid performance issues on the Prometheus backend due to high metric cardinality
  91. ### Maintenance
  92. * Also generate `600x600` and `1500x1500` avatar sizes
  93. * Also generate `600x100` banner size
  94. ### Plugins/Themes/Embed API
  95. * Add ability for plugins to create a client custom sub-page in `/my-account` page [#6218](https://github.com/Chocobozzz/PeerTube/pull/6218)
  96. * Add access to `req.rawBody` for [plugin routes](https://docs.joinpeertube.org/contribute/plugins#add-custom-routes) [#6300](https://github.com/Chocobozzz/PeerTube/pull/6300)
  97. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  98. * `filter:api.user.me.get.result` [#6219](https://github.com/Chocobozzz/PeerTube/issues/6219)
  99. * Add `peertubeHelpers.videos.loadByIdOrUUIDWithFiles` helper [#6302](https://github.com/Chocobozzz/PeerTube/pull/6302)
  100. ### Features
  101. * :tada: Implement user import/export :tada: [#6215](https://github.com/Chocobozzz/PeerTube/pull/6215)
  102. * This is not a migration tool: data (like channels or videos) is duplicated and not moved from the previous PeerTube instance
  103. * Export:
  104. * A ZIP is generated by PeerTube and an email is sent to the user when the archive is ready
  105. * The archive file contains ActivityPub data for federation compatibility and custom JSON files used by PeerTube import. It also contains video/playlist thumbnail and channel/account avatar/banner files
  106. * User can include video files in the archive
  107. * Archive files can be stored in object storage
  108. * Export can be disabled by the admin. They can also set an expiration time to automatically delete archive files and limit the export file size depending on the user's video quota
  109. * Import:
  110. * Update account metadata (display name, description...)
  111. * Update user settings (video autoplay policy, notification settings...)
  112. * Create entries in the mute list
  113. * Add watched videos in user's videos history
  114. Add likes/dislikes
  115. * Send a follow request to imported subscriptions
  116. * Create channels, playlists and videos (if the video files are included in the archive)
  117. * Admins can disable user import
  118. * :tada: Add ability to keep the original video file :tada: [#6157](https://github.com/Chocobozzz/PeerTube/pull/6157)
  119. * Can be stored in object storage
  120. * Uploader can download the original file
  121. * The original file is used in the user export archive (instead of the max quality file)
  122. * Add Turkish language support in client
  123. * Add ability for admins to set a banner and an avatar to the instance. The banner is used in *About instance*/*Login*/*Register an account* pages. Both the banner and the avatar can be used on the instance homepage using `<peertube-instance-banner>`/`<peertube-instance-avatar>` tag or on external websites/applications like the [JoinPeerTube website](https://joinpeertube.org/instances)
  124. * Add ability for uploaders to download and add a video to a playlist on the *My videos* page using the dropdown button [#6008](https://github.com/Chocobozzz/PeerTube/pull/6008)
  125. * Video views statistics:
  126. * Count a *view* after 10 seconds and use a web browser session id to identify a viewer (see IMPORTANT CHANGES section)
  127. * Add information about the location of the viewer subdivision/region
  128. * More accurate retention stats where PeerTube doesn't take into account empty views anymore
  129. * UI/UX:
  130. * Automatically filter on *Local videos* in admin
  131. * Add ability to sort videos by file size
  132. * Add total video file size column in admin users list
  133. * Improve admin runner jobs list by using badges with same colors for type/runner and add *processed/finished* columns
  134. * Add *Recommended* tags to recommended PeerTube plugins/themes
  135. * Improve plugins/themes default trending sort
  136. * Trim username on login
  137. * Warn if "Forgot password" email contains uppercase
  138. * Use more precise buttons label to save changes in *My account* settings
  139. * Add icon to owners/moderators only options
  140. * Always use short UUIDs instead of full UUIDs in client to prevent URL confusion
  141. * Add average admins/moderators response time in *Request an account* page
  142. * Add color to registration/abuse state icon
  143. * Player:
  144. * Add an enable/disable subtitle button to the control bar
  145. * Faster auto-resizing of the player when the video has a custom aspect ratio (only for videos uploaded on PeerTube >= 6.1)
  146. * Use video aspect ratio for responsive embeds (only for videos uploaded on PeerTube >= 6.1)
  147. * Performance:
  148. * Optimize *watching* (`/api/v1/videos/:videoId/views`) endpoint
  149. * Reduce `ffprobe` calls when not needed resulting in faster live stream transcoding startup and CPU/IO reduction during video upload/import
  150. * Federation
  151. * Introduce a new way to federate `Views` events in the federation. See [the commit details](https://github.com/Chocobozzz/PeerTube/commit/b4f4432459f22994cb8fa667c862a0edd7af0ebc) for more information
  152. * Implements [FEP-2677](https://codeberg.org/fediverse/fep/src/branch/main/fep/2677/fep-2677.md) to identify the `Application` `Actor`
  153. * Add Lemmy `postingRestrictedToMods` information to channels AP objects
  154. * Improve generated video thumbnail quality
  155. * Add notification when a subscribed video channel is live streaming
  156. * Support `itunes:owner` in podcast feed
  157. ### Bug fixes
  158. * Add stripes to square video thumbnails too (like we do for portrait videos)
  159. * Prevent channels from being displayed multiple times on the *My channels* page
  160. * Stricter video timestamp "linkification"
  161. * Correctly fix downloading video files from object storage with some video names
  162. * Fix broken RSS feed in some (rare) cases
  163. * Fix local jobs count/pagination with *Waiting* jobs
  164. * Banned users cannot live stream anymore
  165. * Correctly escape HTML entities in meta tags [#6206](https://github.com/Chocobozzz/PeerTube/pull/6206)
  166. * Fix broken account channels page with high `video_channels.max_per_user` config
  167. * Add ability for moderators to approve/reject user registrations
  168. * Do not display empty notification settings group
  169. * Correctly fix WebTorrent video import crash
  170. * Fix video channel synchronization crash on remote channels/playlists that contain hidden videos (unavailable, deleted etc.)
  171. * Ensure the filename doesn't contain `/` character when downloading a video
  172. * Fix Google Search SEO (with `Video is not the main content of the page` error)
  173. * Remove password autocomplete in embed which causes issues when the parent page has a password input and the user uses the web browser's password autofill feature
  174. * Don't submit the login form on forgot my password keyboard click
  175. * Fix storyboard generation with some videos
  176. * Fix ffmpeg encoder after custom plugin transcoding profile deletion
  177. * Fix navigating from one channel related page (playlist, videos...) to another one
  178. * More robust live stream transcoded by a remote runner
  179. * Fix first video in playlist that doesn't start at "starts at"
  180. * Fix embed HTML code for videos/playlists that have passwords
  181. * Display external account/channel playlists if user is allowed to escape the federation
  182. * Fix view endpoint crash on geoip update failure
  183. * Fix setting video subtitle from URL query
  184. * Fix selecting "Display all languages/categories/licences" in videos search resulting in an empty search
  185. * Fix followers/following counter of local ActivityPub actors
  186. * Fix notification button link on mobile
  187. * Fix player subtitles on iOS
  188. ## v6.0.4
  189. ### IMPORTANT NOTES
  190. * If you upgrade from PeerTube **< v6.0.0**, please follow v6.0.0 IMPORTANT NOTES
  191. * If you upgrade from PeerTube **v6.0.0**, please follow v6.0.1 IMPORTANT NOTES
  192. ### SECURITY
  193. * **Important:** Prevent XSS injection in embed. Thanks [Syst3m0ver](https://www.linkedin.com/in/ahmed-hasnaoui-790618180) and [aramido GmbH](https://aramido.de/sicherheitspruefung/penetrationstest)!
  194. ## v6.0.3
  195. ### IMPORTANT NOTES
  196. * If you upgrade from PeerTube **< v6.0.0**, please follow v6.0.0 IMPORTANT NOTES
  197. * If you upgrade from PeerTube **v6.0.0**, please follow v6.0.1 IMPORTANT NOTES
  198. ### SECURITY
  199. * Prevent nginx from serving private/internal/password protected HLS video static files
  200. * You must update your nginx configuration like in [this commit](https://github.com/Chocobozzz/PeerTube/commit/12ea8f0dd11e3fb5fbb8955f5b7d52f27332d619#diff-be9f96b9b1de67284047e610821493f9a5bec86bfcdf81a7d8d6e7904474c186) (line `202` replace `location ~ ^(/static/(webseed|web-videos|streaming-playlists)/private/)|^/download {` by `location ~ ^(/static/(webseed|web-videos|streaming-playlists/hls)/private/)|^/download {`)
  201. ### Bug fixes
  202. * Fix HTML meta tags with attributes that contain quotes
  203. * Fix time parsing resulting in broken video start time in some cases
  204. * Fix WebTorrent video import crash
  205. * Reload *Discover* page on logout
  206. * Fix privacy error when updating a live, even if the privacy has not changed
  207. * Fix invalid remote live state change notification that causes the player to reload
  208. * Don't apply big play button skin to settings menu
  209. * Fix downloading video files from object storage with some video names (that include emojis, quotes etc)
  210. * Fix thumbnail generation when ffmpeg cannot seek the input
  211. * Fix theme colors on stats page
  212. * Fix input mask (used for chapters, playlist timecodes...) with 10h+ videos
  213. * Fix chapter *position* width consistency
  214. * Fix player ratio with audio only videos
  215. * Also update video playlist URLs when using `update-host` script
  216. * Fix upload/import/update of videos that contain multiple chapters with the same timecode
  217. ## v6.0.2
  218. ### IMPORTANT NOTES
  219. * If you upgrade from PeerTube **< v6.0.0**, please follow v6.0.0 IMPORTANT NOTES
  220. * If you upgrade from PeerTube **v6.0.0**, please follow v6.0.1 IMPORTANT NOTES
  221. ### Bug fixes
  222. * Fix upgrade.sh when Peertube is installed outside the standard path [#6064](https://github.com/Chocobozzz/PeerTube/pull/6064)
  223. * Fix importing videos with too long chapter name
  224. * Don't create chapters from description if there is only one
  225. * Ensure user is owned by the auth plugin before updating its attributes
  226. * Improve channels and accounts SEO by fixing structured JSON-LD data and canonical URLs
  227. * Originally published and reupload date format consistency in watch page
  228. * Fix cpu count when cpu info not available
  229. * Fix embed when waiting for a live
  230. * Fix updating already started live if live attributes don't change
  231. * Fix displaying many countries in video stats
  232. ## v6.0.1
  233. ### IMPORTANT NOTES
  234. * If you upgrade from PeerTube **< v6.0.0**, please follow v6.0.0 IMPORTANT NOTES
  235. * We've made some modifications in v6.0.0 IMPORTANT NOTES, so if you upgrade from PeerTube v6.0.0:
  236. * Ensure `location = /api/v1/videos/upload-resumable {` has been replaced by `location ~ ^/api/v1/videos/(upload-resumable|([^/]+/source/replace-resumable))$ {` in your nginx configuration
  237. * Ensure you updated `storage.web_videos` configuration value to use `web-videos/` directory name
  238. * Ensure your directory name on filesystem is the same as `storage.web_videos` configuration value: directory on filesystem must be renamed from `videos/` to `web-videos/` to represent the value of `storage.web_videos`
  239. ### Bug fixes
  240. * Fix CPU going to 100% on odd cpu count
  241. * Increase storyboard generation job TTL
  242. * Add missing `generate-video-storyboard` job type in admin jobs list
  243. * Regenerate storyboard after studio job
  244. ## v6.0.0
  245. ### IMPORTANT NOTES
  246. We have many important notes in this release. We know it's a pain for sysadmin, but consider each one as a major step forward for PeerTube quality!
  247. #### Sysadmins important notes
  248. * Remove NodeJS 16 support (see https://nodejs.org/fr/blog/announcements/nodejs16-eol):
  249. * Please upgrade to NodeJS 18 before upgrading PeerTube
  250. * If you use NodeSource repository, you may have to migrate to their new repository: https://github.com/nodesource/distributions/wiki/How-to-migrate-to-the-new-repository
  251. * Check in `production.yaml` that you use `127.0.0.1` instead of `localhost` for `listen.hostname`, `database.hostname` and `redis.hostname` as Node 18 favours IPv6 for `localhost` resolution
  252. * Remove WebTorrent support in player:
  253. * "WebTorrent videos" are renamed to "Web Video". The video format is the same, we just stop to use P2P for these videos
  254. * There is no "Auto" quality anymore for Web Videos. The viewer has to explicitly choose the video resolution
  255. * We still use P2P with the HLS player, which is the recommended transcoding format since several versions
  256. * See https://github.com/Chocobozzz/PeerTube/issues/5465 for more information
  257. * Configuration key that you must update in your `production.yaml` if not automatically done by your upgrade script:
  258. * `storage.videos` must be **renamed** to `storage.web_videos`: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L151
  259. * Configuration value of `storage.web_videos` must have the directory name to be **changed** from `videos/` to `web-videos/`: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L151
  260. * Directory on filesystem must be **renamed** from `videos/` to `web-videos/` to represent the value of `storage.web_videos`
  261. * Classic installation: `sudo -u peertube mv '/var/www/peertube/storage/videos/' '/var/www/peertube/storage/web-videos/'`
  262. * Docker installation: `mv '/path-to-docker-installation/docker-volume/data/videos/' '/path-to-docker-installation/docker-volume/data/web-videos/'`
  263. * `transcoding.webtorrent` must be **renamed** to `transcoding.web_videos`: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L532
  264. * `object_storage.videos` must be **renamed** to `object_storage.web_videos`. The value of `object_storage.web_videos.bucket_name` doesn't need to be changed: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L223
  265. * `storage.storyboards` must be **added**: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L157
  266. * PeerTube Docker image now uses `bookworm`. `chocobozzz/peertube:production-bullseye` needs to be replaced by `chocobozzz/peertube:production-bookworm`
  267. * Env configuration that your must update if you use Docker:
  268. * `PEERTUBE_TRANSCODING_WEBTORRENT_ENABLED` must be **renamed** to `PEERTUBE_TRANSCODING_WEB_VIDEOS_ENABLED`
  269. * `PEERTUBE_OBJECT_STORAGE_VIDEOS_BUCKET_NAME` must be **renamed** to `PEERTUBE_OBJECT_STORAGE_WEB_VIDEOS_BUCKET_NAME`
  270. * `PEERTUBE_OBJECT_STORAGE_VIDEOS_PREFIX` must be **renamed** to `PEERTUBE_OBJECT_STORAGE_WEB_VIDEOS_PREFIX`
  271. * `PEERTUBE_OBJECT_STORAGE_VIDEOS_BASE_URL` must be **renamed** to `PEERTUBE_OBJECT_STORAGE_WEB_VIDEOS_BASE_URL`
  272. * You must update nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/nginx/peertube
  273. * `location ~ ^/static/(thumbnails|avatars)/ {` block must be removed
  274. * `location = /api/v1/videos/upload-resumable {` must be updated to `location ~ ^/api/v1/videos/(upload-resumable|([^/]+/source/replace-resumable))$ {`
  275. * `location ~ ^(/static/(webseed|streaming-playlists)/private/)|^/download {` must be updated to `location ~ ^(/static/(webseed|web-videos|streaming-playlists)/private/)|^/download {`
  276. * `location ~ ^/static/(webseed|redundancy|streaming-playlists)/ {` must be updated to `location ~ ^/static/(webseed|web-videos|redundancy|streaming-playlists)/ {`
  277. * Tracing requires `--experimental-loader=@opentelemetry/instrumentation/hook.mjs` node option: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L264
  278. #### Developers important notes
  279. * REST API breaking changes:
  280. * Removed `webtorrentEnabled` from user response (deprecated since 4.1 in favour of `p2pEnabled`)
  281. * Removed `avatar` and `banner` fields from account/channel responses (deprecated since 4.2 in favour of `avatars` and `banners`)
  282. * Removed `filter` query when listing videos (deprecated since 4.0 in favour of `isLocal` and `include`)
  283. * Deprecate `/api/v1/videos/:id/webtorrent` video file routes in favour of `/api/v1/videos/:id/web-videos` routes
  284. * Deprecate `hasWebtorrentFiles` body video filter in favour of `hasWebVideoFiles` when listing videos
  285. * Deprecate `webtorrent` `transcodingType` in favour of `web-video` in `/api/v1/videos/{id}/transcoding` route
  286. * `currentTime` is now required to notify the user is watching the video using `/api/v1/videos/{id}/views` (introduced in 4.2)
  287. * Static server paths breaking changes:
  288. * `/static/webseed/...` is deprecated in favour of `/static/web-videos/...`
  289. * `/object-storage-proxy/webseed/...` is deprecated in favour of `/object-storage-proxy/web-videos/...`
  290. * `/static/thumbnails/...` is deprecated in favour of `/static/lazy-thumbnails/...`
  291. * Plugin API breaking changes:
  292. * Deprecated `webtorrent` key in `getFiles()` helper result. Use `webVideo` instead
  293. ### CLI tools
  294. * Removed unmaintained `peertube-import-videos` (also aliased as `peertube import-videos` or `peertube import`) script
  295. * PeerTube remote CLI is much more simpler to install using NPM: https://docs.joinpeertube.org/maintain/tools#remote-peertube-cli
  296. * Support moving video files from object storage to filesystem: https://docs.joinpeertube.org/maintain/tools#move-video-files-from-object-storage-to-filesystem
  297. ### Features
  298. * :tada: **Add "Password protected" video privacy** [#5836](https://github.com/Chocobozzz/PeerTube/pull/5836) :tada:
  299. * A single password can be set using the web interface at video upload/import/update
  300. * The [REST API](https://docs.joinpeertube.org/api-rest-reference.html#tag/Video-Passwords) can store as many passwords as you want, allowing developers to use this feature to easily give or revoke access to a video *on the fly*
  301. * Developers that use PeerTube embeds can set the video password using [the embed API](https://docs.joinpeertube.org/api/embed-player#setvideopassword-promise-void)
  302. * :tada: **Add video storyboard support** :tada:
  303. * PeerTube automatically generates a storyboard on video upload/import
  304. * Viewers can see the image around the targeted timecode when hovering the progress bar
  305. * Storyboard of videos uploaded/imported before v6 can be generated by the admin using `npm run create-generate-storyboard-job` command: https://docs.joinpeertube.org/maintain/tools#generate-storyboard
  306. * :tada: **Add ability for users to replace their video file** :tada:
  307. * Has to be enabled by the PeerTube instance administrator
  308. * The user can replace the video file in the *Update Video* page
  309. * The *re-upload* date is displayed under the video player
  310. * :tada: **Add video chapters support** :tada:
  311. * Add chapters in the upload/import/update video page or let PeerTube automatically imports them from the video container/youtube-dl
  312. * Markers are displayed in the player progress bar to symbolize a chapter
  313. * Chapter title is displayed when hovering/touching the player progress bar
  314. * Better video player:
  315. * More efficient as we don't rebuild the player every time the played video changes
  316. * The player keeps the current player settings (playback speed, fullscreen...) when the played video changes
  317. * Automatically adjust the player size to match video ratio
  318. * Improve SEO and video link sharing:
  319. * Use short video/channel/account URLs in sitemap and for canonical tags
  320. * Add JSON-LD tag in embed page
  321. * Embed page does not forbid indexation anymore: we use a canonical tag instead that targets the watch page
  322. * Forbid indexation of remote videos, accounts and channels (instead of providing an invalid canonical tag)
  323. * Truncate OpenGraph/Twitter card link description
  324. * Fix client accessibility and keyboard navigation:
  325. * Fix links in bootstrap alerts color
  326. * Better input placeholder contrast
  327. * Fix video miniature link label
  328. * Add ability to disable hotkeys
  329. * Improve table overall accessibility
  330. * Wrap icons that can lead to an action inside buttons
  331. * Fix left menu admin/my-library menu accessibility
  332. * And many more improvements!
  333. * Improve remote runner management:
  334. * Add ability to remove runner jobs
  335. * Add runner job state quick filter
  336. * Merge registration tokens and runners tables in same page
  337. * Add copy button to copy registration token
  338. * Add ability for admins to force transcoding on a specific video even if it's in broken state (stuck in *To Transcode* for example)
  339. * Add an option to sign federated fetches (ActivityPub based software such as Mastodon may require it to access content)
  340. * Download video file directly from S3 using pre signed URLs
  341. * Lazy download remote video thumbnails to reduce storage
  342. * Improve recommended videos when the watched video doesn't have tags set
  343. * Add more rate limits in configuration (`plugins`, `well-known`, `feeds`, `activity_pub` and `client` endpoints)
  344. * Add ability to reset video *Originally published at* attribute
  345. * Add ability for admins to set the default user channel name [#6000](https://github.com/Chocobozzz/PeerTube/pull/6000)
  346. * Server now uses [ESM modules](https://nodejs.org/api/esm.html)
  347. * Add worker threads Prometheus metrics
  348. * Performance:
  349. * Process unicast HTTP job in worker threads
  350. * Sign ActivityPub requests in worker threads
  351. * Optimize recommended videos HTTP request
  352. * Optimize videos SQL queries when filtering on lives or tags
  353. * Optimize `/videos/{id}/views` endpoint with many viewers
  354. * Add ability to disable PeerTube HTTP logs
  355. * Optimize homepage videos HTTP queries
  356. ### Bug fixes
  357. * Don't cache upload response if the video has been deleted
  358. * Fix broken upgrade script when using custom database port
  359. * Prevent duplicate runner names
  360. * Avoid runner job update error
  361. * Notify remote runners there are available jobs when a job is aborted/errored
  362. * Fix updating P2P settings in left menu
  363. * Fix 500 HTTP error on invalid short UUID conversion
  364. * Don't display admin email in `security.txt` well-known endpoint
  365. * Optimize `update-host` script to fix out of memory error
  366. * Fix error log when using an unconventional distribution of FFmpeg with a non-standard version string [#5917](https://github.com/Chocobozzz/PeerTube/pull/5917)
  367. * Fix live replay REST API breaking change: `replaySettings.privacy` is not required anymore
  368. * Fix broken live replay when updating replay privacy
  369. * More robust *About* page when getting category from server
  370. * Fix `ERR_HTTP_HEADERS_SENT` crash
  371. * Avoid illegal characters in torrent filename
  372. * Avoid federation error log with remote `Like` on `Note`
  373. * Fix atom feed with *Science & Technology* category
  374. * Support empty value returned by `filter:api.video.get.result` hook
  375. * Prevent remote subscribe on accounts (not yet supported by PeerTube)
  376. * Fix feed audio file mimetype
  377. * Fix video quality on high video resolution/fps
  378. * Fix disabling Object Storage ACL using Docker env `PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PUBLIC` and `PEERTUBE_OBJECT_STORAGE_UPLOAD_ACL_PRIVATE` in `.env`
  379. * Correctly end live session on ffprobe error
  380. * Fix video stats X axis with old videos
  381. * Fix empty master playlist upload on s3
  382. * Correctly generate `production.yaml.new` that should merge your current `production.yaml` with new keys defined by PeerTube
  383. * Fix card font color theme
  384. * Respect "transcode original resolution" setting when using remote runners
  385. * Prevent player mobile buttons flickering
  386. * Fix graph zooming end date
  387. ## v5.2.1
  388. ### Bug fixes
  389. * Fix loading spinner displayed forever on Chrome
  390. * Fix broken replay with long live name
  391. * Fix fps transcoding on remote runners
  392. * Fix terms/code of conduct link toggle
  393. ## v5.2.0
  394. ### IMPORTANT NOTES
  395. * **Important** Remove NodeJS 14 support
  396. * **Important** You must update your nginx configuration to support remote runners: https://github.com/Chocobozzz/PeerTube/blob/develop/support/nginx/peertube#L101
  397. * Add `storage.tmp_persistent` directory in configuration file. **You must configure it in your production.yaml**: https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L148
  398. * PeerTube requires **Docker Compose >= v2** for Docker compose installation
  399. ### Maintenance
  400. * Remove `npm run create-transcoding-job` and `npm run print-transcode-command` unmaintained scripts
  401. * Add Redis sentinel support [#5593](https://github.com/Chocobozzz/PeerTube/pull/5593)
  402. * Improve upgrade script (used when you will upgrade from PeerTube 5.2 to its next version) for classic installation:
  403. * Automatically generate a `config/production.yaml.new` file after the upgrade, which is the fusion between the new PeerTube configuration keys and your current `production.yaml`. After a review you can replace your old `config/production.yaml` with this new file so you don't have to add new keys manually
  404. * Add `ls` option compatibility with FreeBSD [#5785](https://github.com/Chocobozzz/PeerTube/pull/5785)
  405. ### Docker
  406. * Make database name configurable using env variable [#5734](https://github.com/Chocobozzz/PeerTube/pull/5734)
  407. ### Plugins/Themes/Embed API
  408. * Add `filter:html.client.json-ld.result` hook
  409. ### Features
  410. * :tada: Implement remote transcoding for VOD videos, Live streams and Studio editions :tada: [#5769](https://github.com/Chocobozzz/PeerTube/pull/5769)
  411. * If enabled, remote PeerTube runners can process these high CPU jobs
  412. * Admin documentation: https://docs.joinpeertube.org/admin/remote-runners
  413. * PeerTube runner CLI documentation: https://docs.joinpeertube.org/maintain/tools#peertube-runner
  414. * Demonstration video: https://peertube2.cpy.re/w/oJwHHYwt4oKjKhLNh2diAY
  415. * Architecture documentation: https://docs.joinpeertube.org/contribute/architecture#remote-vod-live-transcoding
  416. * Add Podcast RSS feed support: [#5487](https://github.com/Chocobozzz/PeerTube/pull/5487)
  417. * Add ability to set custom privacy for live replays [#5692](https://github.com/Chocobozzz/PeerTube/pull/5692)
  418. * Render images of markdown fields in *About* page [#5732](https://github.com/Chocobozzz/PeerTube/pull/5732)
  419. * Admin can disable user video history by default [#5728](https://github.com/Chocobozzz/PeerTube/pull/5728)
  420. * Improve global accessibility
  421. ### Bug fixes
  422. * Fix live stream object storage sync resulting in broken playback on iOS after a few minutes
  423. * Correctly proxify HTTP 206 content-range header from object storage [#5703](https://github.com/Chocobozzz/PeerTube/pull/5703)
  424. * Filter out already watched videos from recommended videos [#5739](https://github.com/Chocobozzz/PeerTube/pull/5739)
  425. * Prevent exception when HTTP headers are already sent
  426. * Fix remote instance following/followers links in about page
  427. * Prevent error when updating a running live stream if the privacy hasn't changed
  428. * Prevent crash on plugin websocket error
  429. * Don't call `register`/`unregister` plugin API when installing/uninstalling plugins using `script/plugin` scripts (offline mode)
  430. * Fix error on missing plugin CSS file at PeerTube startup [#5746](https://github.com/Chocobozzz/PeerTube/pull/5746)
  431. * Prevent "invalid end watch section" server log warnings
  432. * Support remote subscribe with a handle starting with a `@` character
  433. * Actor preferred username (account/channel handle) is now case insensitive
  434. * Fix RTL layout inconsistencies
  435. * Prevent user video notification when the subscription is still in *Pending* state
  436. * Correctly remove *Pending* subscription
  437. * Fix PeerTube subtitles import
  438. * Fix languages alphabetical order
  439. * Fix registration notification error
  440. * Correctly unload plugin paths
  441. * Fix custom default route in instance logo link
  442. * Fix video channels quick filter overflow
  443. ## v5.1.0
  444. ### IMPORTANT NOTES
  445. * If your instance has signup enabled, user registration approval is automatically enabled by the default configuration of this release. You can change this setting in your `production.yaml` or in the configuration page in the web admin
  446. * Update [web browsers support list](https://joinpeertube.org/faq#what-web-browsers-are-supported-by-peertube):
  447. * Drop support of Safari 11 on iOS
  448. * Drop support of Safari 11 on desktop
  449. * Drop support of Firefox 68 on desktop
  450. * Minimum recommended Redis version is 6.2. Version 6.0 should still work: see [this comment](https://github.com/Chocobozzz/PeerTube/issues/5659#issuecomment-1449607001) for more information
  451. * Deprecate NodeJS 14: support will be removed in the next release (PeerTube 5.2)
  452. ### Maintenance
  453. * [PeerTube OpenTelemetry](https://docs.joinpeertube.org/maintain/observability)
  454. * Add BitTorrent tracker metrics
  455. * Add ability to disable HTTP request duration metrics (can have a high tag cardinality)
  456. * Add `x-powered-by` HTTP header in PeerTube response. Can be disabled in PeerTube configuration
  457. ### Docker
  458. * Add env variables to configure object storage
  459. ### Documentation
  460. * PeerTube documentation website now uses VitePress: https://docs.joinpeertube.org
  461. * Add *Server code* documentation explaining the database model typing and how to add a new feature in PeerTube server: https://docs.joinpeertube.org/support/doc/development/server
  462. ### Plugins/Themes/Embed API
  463. * Add ability to set `playbackRate` in URL (watch page and embed) [#5486](https://github.com/Chocobozzz/PeerTube/pull/5486)
  464. * Auth plugins:
  465. * Can set default `adminFlags`, `videoQuota` and `videoQuotaDaily` user attributes
  466. * Introduce `userUpdater` hook function so external auth plugins can update the user on user login: https://docs.joinpeertube.org/contribute/plugins#add-external-auth-methods
  467. * Automatically redirect to the default external auth on PeerTube refresh token expiration
  468. * Server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  469. * Add `filter:api.user.me.subscription-videos.list.params` & `filter:api.user.me.subscription-videos.list.result` [#5648](https://github.com/Chocobozzz/PeerTube/pull/5648)
  470. * Add `filter:activity-pub.activity.context.build.result` to update ActivityPub JSON-LD context
  471. * Add `filter:activity-pub.video.json-ld.build.result` to update `Video` ActivityPub JSON-LD object
  472. * Add `action:activity-pub.remote-video.created` & `action:activity-pub.remote-video.updated` to react on remote video creation/update
  473. * Client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  474. * Add `action:video-edit.form.updated` fired every time the video upload/import/live/update form values change
  475. * Add `filter:video-watch.video-plugin-metadata.result` to add custom video metadata in watch page
  476. * Existing `action:video-edit.init` hook now contains a `updateForm` attribute in options that you can use to update video upload/import/live/update form values
  477. * Add server plugin helpers:
  478. * `getServerListeningConfig` to get PeerTube listening configuration
  479. * Convert some colors to PeerTube CSS variables to improve theme compatibility
  480. ### Features
  481. * :tada: Implement user registration approval (https://docs.joinpeertube.org/admin/managing-users#registration-approval) [#5544](https://github.com/Chocobozzz/PeerTube/pull/5544)
  482. * If enabled, the user has to fill a *Registration reason* input
  483. * Moderators have to accept/reject the registration with a *Moderation response* that will be sent by email to the user
  484. * If the registration is accepted, the user and its channel are automatically created
  485. * Add "back to live" button in player
  486. * The *Live* button is red when the player is synced with the live
  487. * It becomes grey when behind the live edge
  488. * Clicking on the grey button re-sync the player with the live edge
  489. * Add Icelandic & Ukrainian locales
  490. * Add *Global views* default trending algorithm option in admin configuration [#5471](https://github.com/Chocobozzz/PeerTube/pull/5471)
  491. * Performance:
  492. * Blocked IPs by the tracker are now stored in NodeJS memory instead of Redis, reducing PeerTube load
  493. * Optimize video comments SQL requests
  494. * Optimize custom markup live rendering in admin
  495. * UI/UX:
  496. * Add option in video/playlist share modal to create a responsive embed [#5690](https://github.com/Chocobozzz/PeerTube/pull/5690)
  497. * Use `99+` instead of `99` when having more than `99` notifications
  498. * Use channel display name instead of channel handle in *My videos* input filter [#5575](https://github.com/Chocobozzz/PeerTube/pull/5575)
  499. * Display channel name in playlist element instead of account name
  500. * Display channel as author in RSS feeds
  501. * Improve/fix main pages keyboard navigation
  502. * Custom markup:
  503. * Support `mailto` links
  504. * Support short UUID to fetch a video
  505. * Admins can customize access and refresh tokens lifetime
  506. ### Bug fixes
  507. * Fix object storage incompatibility with some S3 providers that don't support ACL
  508. * Fix signup limit
  509. * Prevent `500` on invalid short UUID parameter
  510. * Player:
  511. * Fix live buffering with small latency setting
  512. * More robust player "stats for nerds" popup if there is not stream available
  513. * Don't display playback rate setting for lives
  514. * Don't handle playback rate hotkeys for lives
  515. * Fix clicking on PeerTube instance button
  516. * Fix always resuming the end of the video
  517. * Fix saving last video current time for anonymous users
  518. * Fix player keyboard shortcuts for non latin keyboards [#5684](https://github.com/Chocobozzz/PeerTube/pull/5684)
  519. * Process videos list requests in correct order
  520. * Correctly fill the *Support* field when updating a video
  521. * Fix *Auto play video* setting for anonymous users
  522. * UI:
  523. * Fix table columns max width
  524. * Use *Unknown* instead of *Misc* when the video category is not set
  525. * Prevent layout shift when listing videos
  526. * Fix instance stats anchor link
  527. * Fix menu content overlay on tablets
  528. * Fix button overflows
  529. * Handle `502` HTTP errors in client notifier
  530. * Fix resetting chart zoom in video stats page
  531. * Fix search page not loading all available results
  532. * Fix confirmation modal that contains 2 text inputs
  533. * Display the update button when the stable release of beta/alpha plugin is available
  534. * Always list NSFW videos in playlists (the frontend is in charge to blur the video element if the NSFW setting is *Hide* or *Blur*)
  535. * Always list NSFW videos in admin
  536. * Improve client log report:
  537. * Don't send client error on 404
  538. * Prevent sending invalid error/warn logs coming from HLS player [#5484](https://github.com/Chocobozzz/PeerTube/pull/5484)
  539. * Fix out of sync audio when cutting a video in Studio
  540. * Fix "unique viewers" inconsistency with countries
  541. * Fix mention detection in comments
  542. * Fix listing all my channels in *My library*
  543. * Fix displaying remote avatars
  544. * Fix 404 HTTP code in watch page when having `;threadId` param in URL
  545. * Correctly re-inject video file token in `.m3u8` resolution playlists to fetch private mp4 video file [#5677](https://github.com/Chocobozzz/PeerTube/pull/5677)
  546. * Don't process live when moving videos to external storage
  547. * Handle Redis disconnection gracefully [#5599](https://github.com/Chocobozzz/PeerTube/pull/5599)
  548. ## v5.0.1
  549. ### IMPORTANT NOTES
  550. * If you upgrade from PeerTube **< 5.0.0**, please follow 5.0.0 IMPORTANT NOTES
  551. ### Bug fixes
  552. * Fix HLS player infinite loading when the live stream/video ends
  553. * Do not autoplay live without autoplay setting
  554. * Fix private/internal video playback from Cloudflare object storage
  555. * Fix local channel stats/OpenTelemetry metric
  556. * Also display dropdown for videos from the homepage
  557. * Fix broken P2P with live stream coming from object storage
  558. * Fix responsive of table pagination
  559. ## v5.0.0
  560. ### IMPORTANT NOTES
  561. * **Important** Private and internal video files are now protected. See [#5370](https://github.com/Chocobozzz/PeerTube/pull/5370) for more information, but see below for most important information:
  562. * For private/internal videos on filesystem:
  563. * These videos are now under a `private/` subdirectory in `videos/` and `streaming-playlists/` directories
  564. * Nginx doesn't serve these private files anymore, the requests are forwarded to PeerTube that will check authentication
  565. * For private/internal videos in object storage:
  566. * These videos have now a private ACL
  567. * PeerTube proxifies requests to private object storage (using pre-signed URLs is not possible as explained in [#5370](https://github.com/Chocobozzz/PeerTube/pull/5370))
  568. * Torrent files and magnet URIs of private/internal videos don't contain a webseed URL anymore since they require authentication
  569. * **Important** You need to manually execute a migration script after your upgrade to migrate private/internal video files:
  570. * Classic installation: `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-5.0.js`
  571. * Docker installation: `cd /var/www/peertube-docker && docker-compose exec -u peertube peertube node dist/scripts/migrations/peertube-5.0.js`
  572. * Configuration changes (`config/production.yaml`):
  573. * There is a new `secrets.peertube` configuration:
  574. * Classic install: fill it before running PeerTube v5: https://github.com/Chocobozzz/PeerTube/blob/v5.0.0/config/production.yaml.example#L14
  575. * Docker install: fill it using an env variable before running the containers: https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/.env#L27
  576. * `object_storage.upload_acl` is now a parent key that you must update: https://github.com/Chocobozzz/PeerTube/blob/v5.0.0/config/production.yaml.example#L153
  577. * You must update your nginx configuration:
  578. * We introduced a new `location` for plugin websocket routes: https://github.com/Chocobozzz/PeerTube/blob/v5.0.0/support/nginx/peertube#L135
  579. * We introduced a new `location` for private videos files: https://github.com/Chocobozzz/PeerTube/blob/v5.0.0/support/nginx/peertube#L217
  580. ### Documentation
  581. * Add [Monitoring/Observability documentation](https://docs.joinpeertube.org/maintain/observability) using PeerTube OpenTelemetry feature
  582. ### Maintenance
  583. * REST API breaking change:
  584. * `role` is now `role.id` and `roleLabel` is `role.label` in user response
  585. * We now store the complete remote video description:
  586. * Deprecate `description` in favour of `truncatedDescription` when listing videos
  587. * Complete description is sent by the server in `description` when getting a specific video
  588. * Deprecate `/api/v1/videos/:id/description` endpoint
  589. * `search.disable_local_search` disables local search in client search bar only and doesn't disable it on server side anymore [#5411](https://github.com/Chocobozzz/PeerTube/pull/5411)
  590. ### Plugins/Themes/Embed API
  591. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  592. * `filter:activity-pub.remote-video-comment.create.accept.result`
  593. * Add server plugin helpers
  594. * `socket.sendNotification` and `socket.sendVideoLiveNewState` [#5239](https://github.com/Chocobozzz/PeerTube/pull/5239)
  595. * Add ability for plugins to register a websocket route using `registerWebSocketRoute`
  596. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  597. * `filter:internal.player.p2p-media-loader.options.result` [#5318](https://github.com/Chocobozzz/PeerTube/pull/5318)
  598. ### CLI tools
  599. * Add ability to install alpha/beta/rc plugin versions
  600. ### Features
  601. * :tada: Support object storage for live streams :tada:
  602. * :tada: Support Two Factor authentication (OTP) :tada:
  603. * UX:
  604. * Add explanation on disk space used for user quota admin config [#5305](https://github.com/Chocobozzz/PeerTube/pull/5305)
  605. * Display channel in my videos list
  606. * Show which playlists videos are added to in my videos list
  607. * Add *Channels* link in left menu
  608. * Add `...` after the truncated video name in miniature
  609. * Add object storage info badge in videos admin overview
  610. * Add links to video files in videos admin overview
  611. * Better indicate the live ended in embed by displaying a message and the live preview
  612. * Force live autoplay by muting the video if necessary when the user was waiting for the live
  613. * Handle network issues in video player [#5138](https://github.com/Chocobozzz/PeerTube/pull/5138)
  614. * Cache chunks to upload in server to resume upload later [#5224](https://github.com/Chocobozzz/PeerTube/pull/5224)
  615. * Add ability to serve custom static files under `/.well-known` URL path [#5214](https://github.com/Chocobozzz/PeerTube/pull/5214)
  616. * Use account/channel avatar in account/channel RSS feeds [#5325](https://github.com/Chocobozzz/PeerTube/pull/5325)
  617. * Add filter to sort videos by name [#5351](https://github.com/Chocobozzz/PeerTube/pull/5351)
  618. * Add ability to configure OpenTelemetry Prometheus exporter listening hostname
  619. ### Bug fixes
  620. * Hide all user email block if we can't change it (remote auth for example)
  621. * Display an error if trying to reset password of user configured to use a remote authentication
  622. * Fix peers info width in live
  623. * Fix video job error when video has been deleted
  624. * Fix user channels list with increased max counter
  625. * More robust channel/playlist import/sync
  626. * Hide useless *Wait Transcoding* input for lives
  627. * Fix responsive in account channels list
  628. * Fix slow page response when listing many videos
  629. * Reload data when deleting a blocked video
  630. * Prevent error with metrics in HTTP player if no P2P info is available
  631. * Fix playlist overflow in account channels page
  632. * Fix invalid date display for jobs
  633. * Fix conflict with player hotkeys and `alt + number` web browser hotkey
  634. * Fix horizontal overflow on rtl languages
  635. * Fix actor follow constraint error on remote videos when *Allow users to do remote URI/handle search* is disabled
  636. * Fix running again transcoding on a video that doesn't contain audio or on a video that doesn't contain video
  637. * Fix re-transcoding of video with odd resolution
  638. * Fix embed API with playlists
  639. * Fix not working P2P with permanent live
  640. * Fix following/fetching remote Pleroma actor
  641. * Prevent high Redis memory usage when having many jobs
  642. * Fix overall viewers stats with start/end dates
  643. * Remove limit of countries displayed in video/live stats
  644. ## v4.3.1
  645. ### IMPORTANT NOTES
  646. * If you upgrade from PeerTube **< 4.3.0**, please follow 4.3.0 IMPORTANT NOTES
  647. ### SECURITY
  648. * Prevent XSS in sort select on pages that list videos. Thanks to Anthony Roth who reported the vulnerability!
  649. ### Bug fixes
  650. * Fix broken embed player on live reload
  651. * Fix channel follow when manually approve instance followers is enabled
  652. * Fix input with number overflow on small screen
  653. * Fix moderation dropdown overflow on mobile
  654. * Clearer instance subscription page title in admin
  655. * Prevent "Cannot use same state" video error
  656. * Correctly handle RTMP streams without audio
  657. * Correctly process broadcast parallel job in parallel
  658. ## v4.3.0
  659. ### IMPORTANT NOTES
  660. * Redis **<** 5.x is not supported anymore
  661. * FFmpeg **<** 4.3 is not supported anymore
  662. ### Maintenance
  663. * Use `yt-dlp` by default instead of `youtube-dl` for new installations (because of much more dev activity)
  664. * Support NodeJS 18
  665. * Improved PeerTube logs:
  666. * Reduce amount of PeerTube error logs
  667. * Introduce `log.log_tracker_unknown_infohash` setting to disable "Unknown infoHash" warnings
  668. * Web browsers send their error logs to the server that writes them in its own logs. Can be disabled by `log.accept_client_log` setting
  669. * Introduce experimental support of [OpenTelemetry](https://opentelemetry.io/)
  670. * Enable metrics export using a Prometheus exporter
  671. * Enable tracing export using a Jaeger exporter
  672. * Automatically rebuild native plugin modules on NodeJS ABI change
  673. ### Docker
  674. * Add ability to easily use the docker compose stack on localhost
  675. ### Plugins/Themes/Embed API
  676. * Theme:
  677. * Removed unused `--secondaryColor` CSS variable
  678. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  679. * `filter:api.my-library.video-playlist-elements.list.params` & `filter:api.my-library.video-playlist-elements.list.result` [#5098](https://github.com/Chocobozzz/PeerTube/pull/5098)
  680. * `action:video-channel-create.init`
  681. * `action:video-channel-update.init` & `action:video-channel-update.video-channel.loaded`
  682. * `action:video-channel-videos.init` & `action:video-channel-videos.video-channel.loaded` & `action:video-channel-videos.videos.loaded`
  683. * `action:video-channel-playlists.init` & `action:video-channel-playlists.video-channel.loaded` & `action:video-channel-playlists.playlists.loaded`
  684. * `filter:share.video-embed-code.build.params` & `filter:share.video-embed-code.build.result` & `filter:share.video-playlist-embed-code.build.params` & `filter:share.video-playlist-embed-code.build.result`
  685. * `filter:share.video-embed-url.build.params` & `filter:share.video-embed-url.build.result` & `filter:share.video-playlist-embed-url.build.params` & `filter:share.video-playlist-embed-url.build.result`
  686. * `filter:share.video-url.build.params` & `filter:share.video-url.build.result` & `filter:share.video-playlist-url.build.params` & `filter:share.video-playlist-url.build.result`
  687. * `action:modal.share.shown`
  688. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  689. * `filter:job-queue.process.params` & `filter:job-queue.process.result`
  690. * `filter:transcoding.manual.resolutions-to-transcode.result` & `filter:transcoding.auto.resolutions-to-transcode.result`
  691. * `action:api.video-channel.created` & `action:api.video-channel.updated` & `action:api.video-channel.deleted`
  692. * `action:notifier.notification.created`
  693. * Add HTML placeholder (https://docs.joinpeertube.org/contribute/plugins#html-placeholder-elements):
  694. * `share-modal-playlist-settings` & `share-modal-video-settings`
  695. ### Features
  696. * :tada: Add ability for users to synchronize a remote channel [#5135](https://github.com/Chocobozzz/PeerTube/pull/5135) :tada:
  697. * Automatically import all videos of a remote channel in your PeerTube channel
  698. * PeerTube will watch for new publications and automatically import these new videos
  699. * UI:
  700. * Redesigned *Create an account* steps
  701. * Improved *Login* page
  702. * Use a lighter font color
  703. * Use a bigger font size
  704. * Don't display form errors in red while typing but only when we unfocus the input
  705. * Display an error message when the user is unauthorized to view a page [#5097](https://github.com/Chocobozzz/PeerTube/pull/5097)
  706. * Display latest upload date for captions
  707. * Add an information if the live will be saved as a replay when displaying live sessions
  708. * Move search bar at the center of the header
  709. * Add *Toki Pona* and *Croatian* locales in client
  710. * Embed:
  711. * Display a message and automatically start live streams in embed
  712. * Use the instance name instead of "PeerTube" in embed control bar
  713. * Reuse current watch page query parameters for embed when using OEmbed [#5023](https://github.com/Chocobozzz/PeerTube/pull/5023)
  714. * Instance follows:
  715. * Introduce a *Rejected* state for follow requests to not reprocess already rejected follow requests
  716. * Add bulk actions on instance following/followers ()
  717. * Admins:
  718. * Add ability to disable original resolution transcoding of the uploaded video/live stream
  719. * Add ability to delete a specific video file in videos overview
  720. * Display *Last Login* column by default in users overview
  721. * Remember last selected columns in users overview
  722. * Add ability to set a custom video import timeout
  723. * Add ability to set the default feed (Atom, RSS...) items count
  724. * Admins and moderators now bypass API rate limits
  725. * Add ability to list comments on local videos in comments overview
  726. * Limit video import resolution depending on enabled VOD transcoding resolutions
  727. * Store and display the uploaded video original filename [#4885](https://github.com/Chocobozzz/PeerTube/pull/4885)
  728. * Add *Total views* in the my channels list [#5007](https://github.com/Chocobozzz/PeerTube/pull/5007)
  729. * Add *Original Publication Date* video sort option [#4959](https://github.com/Chocobozzz/PeerTube/pull/4959)
  730. * Performance:
  731. * Optimized view/watching endpoint
  732. * Optimized video feed SQL query
  733. * Process images (resize, convert...) in a dedicated worker thread
  734. * Optimized emoji markup list rendering in client
  735. * Use a worker thread to send ActivityPub Broadcast requests
  736. * Suffix external auth username/channel name on conflict instead of throwing an exception
  737. ### Bug fixes
  738. * Fix users overview *Last login* sort in admin
  739. * More robust *move to object storage* job failure
  740. * Fix comment add avatar with a unauthenticated user
  741. * Fix fetching unlisted video in client
  742. * Fix comments/download enabled attributes when importing a video
  743. * Fix total instance views stats
  744. * Fix HLS player infinite buffering on seek
  745. * Reset table pagination on search
  746. * *Host* search filter can also search into channels and playlists in global search
  747. * Fix *My videos* invalid counter
  748. * Prevent error on highlighted thread
  749. * Fix *Jobs*, *Account blocklist* and *Server blocklist* hidden columns on Safari
  750. * Fix live stream max bitrate
  751. * Fix incompatibility with OpenSSL 3
  752. * Don't crash on redis connection error
  753. * Transcoding:
  754. * Fix failed transcoding with a mp3 file that contains a cover image
  755. * Prevent duplicated HLS playlist when running transcoding
  756. * Regenerate video file names when running transcoding manually
  757. * Prevent job failures resulting in broken videos on concurrent transcoding
  758. * Fix transcoding of videos with quad audio channels
  759. * ActivityPub
  760. * Fix random invalid HTTP signature generation
  761. * Use unique AP id for *Accept*/*Reject* activities
  762. * Correctly handle remote actors that don't have follow counters
  763. * Correctly handle unknown remote actor image size
  764. * Add years in graph legend when grouping video views stats by month
  765. * Prevent creating multiple lives when clicking multiple times on the "Go Live" button
  766. * Fix *undefined" resolution in player *Stats for nerds*
  767. * Fix not displayed error message in administrator web config
  768. * More robust S3 upload [#5231](https://github.com/Chocobozzz/PeerTube/pull/5231)
  769. * Fix broken saved live stream with only one resolution
  770. * Fix `removeEventListener` player embed api
  771. * Progressively cleanup actor images without width from the database
  772. * Fix broken dates on localized pages
  773. * Prevent job queue to be started before plugins
  774. * Fix old database enum names
  775. * Don't display remove file icon in admin videos overviews if we can't delete the file
  776. ## v4.2.2
  777. ### IMPORTANT NOTES
  778. * If you upgrade from PeerTube **< 4.2.0**, please follow 4.2.0 IMPORTANT NOTES
  779. ### SECURITY
  780. * Upgrade vulnerable server dependencies
  781. ### Bug fixes
  782. * Fix fast restream in permanent live
  783. * Fix latency mode setting when creating a live
  784. * Fix unique constraint tag violation when importing videos
  785. * Fix latest live sessions order
  786. * Fix server crash feed when accessing feeds that contains a live
  787. * Fix `false` boolean attribute (`data-is-live` etc) in custom markup
  788. ## v4.2.1
  789. ### IMPORTANT NOTES
  790. * If you upgrade from PeerTube **< 4.2.0**, please follow 4.2.0 IMPORTANT NOTES
  791. ### Bug fixes
  792. * Fix live ending job that breaks new live session
  793. * Fix search filters counter
  794. * Fix upload banner icon margin
  795. * Fix button icon margin
  796. * Fix my import expander icon that should only be displayed on import error
  797. * Fix select components styling inconsistency
  798. * Increase max watch section to avoid too much warnings in server
  799. * Optimize broadcast job creation
  800. * Optimize `View` activities delivery using a dedicated broadcast job queue that can be run in parallel
  801. * Fix video selection buttons placement
  802. * Fix searching into account blocklist
  803. * Fix incorrect instance stats
  804. * Fix broken player on ICE error
  805. * Relax views federation
  806. * Fix peertube user in docker
  807. * Fix playlist element federation with a deleted video
  808. ## v4.2.0
  809. ### IMPORTANT NOTES
  810. * **Important** You need to execute manually a migration script (can be executed after your upgrade, while your PeerTube instance is running) to generate smaller avatar miniatures:
  811. * Classic installation: `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-4.2.js`
  812. * Docker installation: `cd /var/www/peertube-docker && docker-compose exec -u peertube peertube node dist/scripts/migrations/peertube-4.2.js`
  813. * **Important** SQL migrations (in particular `0685-multiple-actor-images`) can take several minutes to complete
  814. * **Important** You must update your nginx configuration to support video web editor: https://docs.joinpeertube.org/install/any-os#nginx
  815. * REST API:
  816. * `PUT /api/v1/videos/{id}/watching` is deprecated, use `POST /api/v1/videos/videos/{id}/views` instead: https://docs.joinpeertube.org/api-rest-reference.html#operation/addView
  817. ### Maintenance
  818. * Add `client.videos.resumable_upload.max_chunk_size` config option [#4857](https://github.com/Chocobozzz/PeerTube/pull/4857)
  819. * Add `object_storage.upload_acl` config option [#4861](https://github.com/Chocobozzz/PeerTube/pull/4861)
  820. * Add ability to set RTMP/RTMPS listening hostname using `rtmp.hostname`/`rtmps.hostname` and public RTMP/RTMPS hostname using `rtmp.public_hostname`/`rtmps.public_hostname`
  821. * Removed `best` default trending algorithm. It is automatically used if using `hot` algorithm with a logged in user
  822. ### Docker
  823. * Use NodeJS 16 in PeerTube docker image: administrators may have to reinstall PeerTube plugins that use native NodeJS dependencies
  824. * Support readonly tmp directory (if you want to use `tmp` directory as a volume)
  825. ### Plugins/Themes/Embed API
  826. * Theme:
  827. * Add `--mainBackgroundHoverColor` and `--greySecondaryBackgroundColor` CSS variables
  828. * Add server plugin hooks
  829. * `filter:api.video-playlist.videos.list.params` and `filter:api.video-playlist.videos.list.result`
  830. * Support `getSettings()`, `isLoggedIn()` and `getAuthHeader()` client plugin helpers in embed
  831. * Player URL query parameters:
  832. * Support `controlBar=0` to hide player control bar. See [the documentation](https://docs.joinpeertube.org/api/embed-player#url-parameters) for more information
  833. ### Features
  834. * :tada: Add video edition from the PeerTube web interface :tada:
  835. * Cut the video (set a new start/new end)
  836. * Add an intro at the beginning and/or an outro at the end of the video
  837. * Add an icon/watermark in the top right corner of the video
  838. * PeerTube will automatically transcode the new video and replace the original one
  839. * :sparkles: *Funded by "la Direction du numérique du Ministère de l'Éducation Nationale, de la Jeunesse et des Sports"* :sparkles:
  840. * :tada: Add advanced statistics of a specific video :tada:
  841. * Provide *Average watch time*, *Total watch time* and *Peak viewers* video statistics
  842. * Display total viewers, aggregated watch time and audience retention in interactive time series graphs
  843. * Display viewer countries in bar chart if not disabled by admins
  844. * :sparkles: *Funded by HowlRound Theatre Commons at Emerson College* :sparkles:
  845. * :tada: Add latency setting support for lives (small latency without P2P or high latency to increase P2P ratio) :tada:
  846. * :tada: Add ability to save a replay of every streaming session of a permanent live :tada:
  847. * :sparkles: *Funded by HowlRound Theatre Commons at Emerson College* :sparkles:
  848. * Add simple subtitle edition from video captions tab in video edition form [#4666](https://github.com/Chocobozzz/PeerTube/pull/4666)
  849. * Display live streaming sessions details in permanent live information modal
  850. * Add ability to also mute users when banning them [#4660](https://github.com/Chocobozzz/PeerTube/pull/4660)
  851. * UI improvements:
  852. * Add ability for admins to display author avatar in video miniatures [#4639](https://github.com/Chocobozzz/PeerTube/pull/4639) [#4823](https://github.com/Chocobozzz/PeerTube/pull/4823)
  853. * Display author avatar in embed
  854. * Move admin comments list in *Overviews* menu
  855. * Add a *Refresh* button to admin comments list
  856. * Add ability to sort videos by total views
  857. * Add *Persian* locale support
  858. * Add previous page redirection support on external auth login
  859. * Support proxy for object storage [#4973](https://github.com/Chocobozzz/PeerTube/pull/4973)
  860. * Add "Only display embed URL" checkbox in share modal
  861. ### Bug fixes
  862. * Video uploads fixes:
  863. * Fix invalid token during long uploads
  864. * Fix upload on server with a slow disk
  865. * Fix upload of some videos with unknown duration (`.m2v` for example)
  866. * Fix 2 hours limit on uploads
  867. * Fix upload page title [#4904](https://github.com/Chocobozzz/PeerTube/pull/4904)
  868. * Fix video upload with some characters in filename
  869. * Fix `.ac3` and `.mts` upload on some OS
  870. * Fix avatar with account username starting with a number
  871. * Fix client html cache on theme update
  872. * Disallow unlisted video indexation
  873. * Allow oembed to fetch unlisted videos
  874. * Stop removing remote Mastodon rates
  875. * Fix email links displayed twice in text version
  876. * Fix user quota inconsistencies in admin when users use lives
  877. * Fix admin instance following list when sorting by *Redundancy allowed*
  878. * More reliable object storage upload when using multipart [#4903](https://github.com/Chocobozzz/PeerTube/pull/4903)
  879. * Correctly handle HTTP signature draft 11 requests (without `date` header but with `(created)`)
  880. * Fix `ctrl + 0-9` player hotkeys conflicting with web browser hotkeys
  881. ## v4.1.1
  882. ### Security
  883. * Strip EXIF data when processing images
  884. ### Docker
  885. * Fix videos import by installing python 3
  886. * Install `git` package (may be needed to install some plugins)
  887. ### Bug fixes
  888. * Fix error when updating a live
  889. * Fix performance regression when rendering HTML and feeds
  890. * Fix player stuck by HTTP request error
  891. ## v4.1.0
  892. ### IMPORTANT NOTES
  893. * PeerTube does not support NodeJS 12 anymore
  894. ### Plugins/Themes/Embed API
  895. * Introduce ability for plugins to create client pages: https://docs.joinpeertube.org/contribute/plugins#create-client-page
  896. * Plugins that register custom video fields can choose in which tab they want to display them and can report errors: https://docs.joinpeertube.org/contribute/plugins#add-custom-fields-to-video-form
  897. * Add new client plugin id selectors
  898. * Add `#plugin-selector-about-instance-moderation`, `#plugin-selector-about-instance-other-information`, `#plugin-selector-about-instance-features`, `#plugin-selector-about-instance-statistics`, `#plugin-selector-about-menu-instance`, `#plugin-selector-about-menu-peertube`, `#plugin-selector-about-menu-network` in about page [#4597](https://github.com/Chocobozzz/PeerTube/pull/4597)
  899. * Add `#plugin-selector-menu-user-dropdown-language-item` in menu [#4597](https://github.com/Chocobozzz/PeerTube/pull/4597)
  900. * Add client plugin hooks
  901. * `filter:login.instance-about-plugin-panels.create.result` and `filter:signup.instance-about-plugin-panels.create.result` to add custom instance information in login/signup pages
  902. * Add server plugin hooks
  903. * `filter:api.server.stats.get.result`
  904. * `filter:api.video.upload.video-attribute.result`, `filter:api.video.import-url.video-attribute.result`, `filter:api.video.import-torrent.video-attribute.result`, `filter:api.video.live.video-attribute.result` when creating a video object
  905. * `action:api.video-caption.created` and `action:api.video-caption.deleted` [#4650](https://github.com/Chocobozzz/PeerTube/pull/4650)
  906. * Server helpers
  907. * `videos.getFiles(videoId: number)` to list video files (webtorrent, hls and thumbnail files)
  908. * `videos.ffprobe(path: string)` to get `ffprobe` JSON result
  909. * Publish [@peertube/peertube-type](https://www.npmjs.com/package/@peertube/peertube-types) NPM module that can be used by TypeScript plugins
  910. * Add ability to disable P2P in embed using `p2p` query parameter in embed URL
  911. ### Maintenance
  912. * REST API
  913. * Deprecate `webTorrentEnabled` in favour of `p2pEnabled` for user model
  914. * Add ability to pause/resume the job queue
  915. * Also publish stable releases on https://builds.joinpeertube.org/release
  916. * Add ability for admins to specify `youtube-dl`/`yt-dlp` python binary path [#4706](https://github.com/Chocobozzz/PeerTube/pull/4706)
  917. * PeerTube server startup is faster
  918. ### Security
  919. * Check video privacy before listing or accepting captions, comments or rates
  920. * Check video import target URL does not resolve to internal IP. This technique has some limits so if you have private HTTP services on your server/network publicly accessible, we recommend to use a proxy or a dedicated interface for PeerTube
  921. ### CLI tools
  922. * Also remove HLS files when using `prune-storage` script
  923. * Support `--plugin-version` option when installing a plugin [#4599](https://github.com/Chocobozzz/PeerTube/pull/4599)
  924. ### Features
  925. * :tada: Player improvements
  926. * Increase control bar size on desktop & mobile
  927. * Add overlay on tap to easily play/pause the video on mobile
  928. * Automatically move to landscape when full screen a video on mobile
  929. * Add fast forward/rewind on double tap on mobile
  930. * Cleanup, fix and add player hotkeys
  931. * Keep control bar displayed when settings panel is opened
  932. * Faster hiding transition for control bar
  933. * Stop confusing *peer* indication in control bar when p2p is disabled
  934. * Try to fast forward video on HLS decode error
  935. * :tada: More admin customizations
  936. * Specify default *Publish* video attributes (download enabled, comments enabled, privacy, licence)
  937. * Choose to automatically redirect users on the external auth platform on login button click
  938. * Set default P2P policy for the player
  939. * Search improvements
  940. * Add *Result type* filter in search (videos, channels or playlists)
  941. * Display only video results when searching on video metadata (tags, categories etc)
  942. * Video imports
  943. * Users can cancel and delete video imports
  944. * Add ability to filter video imports by target URL
  945. * Add ability for users to delete individual elements in videos history
  946. * Show date and views counter in playlist element miniature [#4396](https://github.com/Chocobozzz/PeerTube/issues/4396)
  947. * Add *norsk* locale support
  948. * Check mute status and display mute badges in channel and account pages
  949. * Add *No linguistic content* video language option [#4631](https://github.com/Chocobozzz/PeerTube/pull/4631)
  950. * Don't send notifications to admins/moderators if an admin/moderator reported an abuse
  951. * Add ability for moderators/admins to edit any channel [#4608](https://github.com/Chocobozzz/PeerTube/pull/4608)
  952. * Add a refresh button to admin videos overview page [#4753](https://github.com/Chocobozzz/PeerTube/pull/4753)
  953. * Add *Official* badge to official plugins in admin plugin pages
  954. * Automatically clean unavailable remote ActivityPub resources
  955. * Media RSS feed displays video file as default enclosure instead of torrent
  956. * Use white background for PeerTube icons (instead of transparency)
  957. * Show private badge for private videos in playlists [#4767](https://github.com/Chocobozzz/PeerTube/pull/4767)
  958. ### Bug fixes
  959. * Fix weird `require` bug on plugin upgrade
  960. * Fix plugin storage return value when storing a JSON array [#4640](https://github.com/Chocobozzz/PeerTube/pull/4640)
  961. * Decrease delay to cleanup resumable uploads (to 1 hour)
  962. * Update torrent metadata on video update
  963. * Fix HLS player with videos that have stream duration inconsistencies
  964. * Fix player crash if the video contains only audio resolution
  965. * Fix ffmpeg crash when using a transcoding plugin encoder that doesn't support PeerTube B-frame strategy
  966. * Fix transcoding failure for audio only uploads
  967. * Don't run HLS transcoding when running manually WebTorrent transcoding from the admin
  968. * Don't run audio transcoding with video only file
  969. * Correctly send new HLS files after re-transcoding to object storage
  970. * Fix stuck state when move transcoding job failed
  971. * Correctly display internal videos of internal subscriptions
  972. * Correctly display all videos history to users
  973. * Fix video upload with big preview file
  974. * Fix description/comment timestamp click of external video
  975. * Add missing `mediaType` information to AP objects
  976. * Fix abuse list crash on deleted reporter account
  977. * Convert markdown to HTML/plain text for RSS feeds
  978. * Search on tags is now case insensitive
  979. * Forbid comments/captions listing of private/internal videos
  980. * Prevent video import on non unicast ips
  981. * Improve markdown to plain text converter, especially when handling lists
  982. * Fix scheduled publication on upload
  983. * Fix youtube-dl max buffer size error
  984. * Hide remote subscribe if user is logged in
  985. * Fix video file `storage` column inconsistency
  986. ## v4.0.0
  987. ### IMPORTANT NOTES
  988. * **Important** You need to execute manually a migration script (can be executed after your upgrade, while your PeerTube instance is running) to migrate HLS files name:
  989. * Classic installation: `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-4.0.js`
  990. * Docker installation: `cd /var/www/peertube-docker && docker-compose exec -u peertube peertube node dist/scripts/migrations/peertube-4.0.js`
  991. * **Important** We fixed configuration inconsistencies and added some keys. **You must change/add them in your production.yaml**
  992. * `log.rotation.maxFileSize` becomes `log.rotation.max_file_size`
  993. * `log.rotation.maxFiles` becomes `log.rotation.max_files`
  994. * `log.anonymizeIP` becomes `log.anonymize_ip`
  995. * Removed `import.http.proxy` configuration: use `HTTP_PROXY` and `HTTPS_PROXY` environment variables instead
  996. * Added `storage.bin` in configuration file
  997. * REST API: Deprecate `filter` videos list query parameter in favour of `isLocal` and `include`
  998. * PeerTube **is compatible** with ffmpeg 4.4.1 but **is not compatible** with ffmpeg 4.4.0
  999. * Removed deprecated `/static/torrents` route
  1000. * We changed the live `views` and `viewers` system, that could lead to federation inconsistencies with instances < 4.0.0 for these specific counters
  1001. ### Maintenance
  1002. * Add ability for sysadmins to disable web configuration edition [#4315](https://github.com/Chocobozzz/PeerTube/pull/4315)
  1003. * YoutubeDL:
  1004. * Support [yt-dlp](https://github.com/yt-dlp/yt-dlp/) (recommended due to unmaintained [youtube-dl](https://github.com/ytdl-org/youtube-dl))
  1005. * Add ability to set release URL in configuration
  1006. * Add ability to override `default-playlist.png`, `default-avatar-account.png`, `default-avatar-video-channel.png` using `storage.client_overrides` configuration [#4392](https://github.com/Chocobozzz/PeerTube/pull/4392)
  1007. ### Plugins/Themes/Embed API
  1008. *Documentation: https://docs.joinpeertube.org/api/plugins*
  1009. * Add client plugin hooks:
  1010. * `filter:api.video-watch.video-playlist-elements.get.params` and `filter:api.video-watch.video-playlist-elements.get.result` [#4387](https://github.com/Chocobozzz/PeerTube/pull/4387)
  1011. * Introduce plugin id selectors: https://docs.joinpeertube.org/contribute/plugins#plugin-selector-on-html-elements
  1012. * Add `#plugin-selector-login-form` to login form
  1013. ### Docker
  1014. * We now use Bullseye for Docker images, so the image name changed:
  1015. * `production-buster` becomes `production-bullseye`
  1016. * `v4.x.x-buster` becomes `v4.x.x-bullseye`
  1017. * Allow configuration to be static/readonly [#4315](https://github.com/Chocobozzz/PeerTube/pull/4315)
  1018. ### CLI tools
  1019. * Add [create-move-video-storage-jobs](https://docs.joinpeertube.org/maintain/tools#create-move-video-storage-jobjs) script to move local video files in object storage [#4481](https://github.com/Chocobozzz/PeerTube/pull/4481)
  1020. * Removed `peertube-repl` and `peertube-watch` scripts
  1021. * Apply import interval only when reasonable [#4552](https://github.com/Chocobozzz/PeerTube/pull/4552)
  1022. ### Features
  1023. * :tada: Add videos overview in admin
  1024. * List all available videos on the instance
  1025. * Display video information summary: file type, file size, privacy, state, embed...
  1026. * Many filters available: videos with/without HLS/WebTorrent, remote/local videos, exclude muted accounts...
  1027. * Run WebTorrent/HLS transcoding
  1028. * Remove WebTorrent/HLS video files
  1029. * Bulk actions: remove, block, run transcoding, delete video files...
  1030. * Correctly generate thumbnails/previews for portrait videos
  1031. * Keep input image ratio for banners, avatars, thumbnails...
  1032. * Support 144p transcoding [#4492](https://github.com/Chocobozzz/PeerTube/pull/4492)
  1033. * Support RTMPS
  1034. * UI:
  1035. * Live:
  1036. * Specify live type at first step
  1037. * Improve *Permanent live* label using *Recurring live* expression
  1038. * Clearer moderation dropdowns using section titles
  1039. * Improve admin tables responsive
  1040. * Add warning when trying to share a private playlist/video [#4469](https://github.com/Chocobozzz/PeerTube/pull/4469)
  1041. * Change *Sort by views* to *Sort by recent views* [#4483](https://github.com/Chocobozzz/PeerTube/pull/4483)
  1042. * Add *Next video to be played* in watch page if autoplay is enabled [#4497](https://github.com/Chocobozzz/PeerTube/pull/4497)
  1043. * Add embed preview in share modal
  1044. * Add user username in modal when deleting a user
  1045. * Add video name in modal when blocking/removing a video
  1046. * Improve notification settings organization
  1047. * Video/live views:
  1048. * Add ability for admins to change local buffer update interval
  1049. * Add ability for admins to change view expiration for a specific IP
  1050. * Introduce `viewers` attribute for live videos and reduce delay to see `viewers` update in the interface
  1051. * Take into accounts `views` created during the live when saving replay
  1052. * Add markdown support for playlist description [#4489](https://github.com/Chocobozzz/PeerTube/pull/4489)
  1053. * Improve video playback when having invalid redundancy URLs
  1054. * Load video resolutions before video starts in player settings menu
  1055. * Optimize federation:
  1056. * Correctly set HTTP request timeout
  1057. * Process slow/bad targets in a dedicated queue
  1058. * Optimize ActivityPub outbox fetch
  1059. * Automatically update `publishedAt` attribute when re-streaming in a permanent live
  1060. * Add ability for users to view their followers
  1061. * Add ability for users to filter their videos per channel
  1062. * Add ability for admins to show author display name instead of username in video miniatures [#4422](https://github.com/Chocobozzz/PeerTube/pull/4422)
  1063. * Add ability for admins to filter logs by tags
  1064. * Add ability for admins to configure per user channels limit [#4491](https://github.com/Chocobozzz/PeerTube/pull/4491)
  1065. * Add available instance themes and plugins in `/about/peertube` page
  1066. * Remove contributors list from `/about/peertube` since some contributors don't want their name to be displayed on unknown PeerTube instances
  1067. * Add *Transcoding failed* video state [#4525](https://github.com/Chocobozzz/PeerTube/pull/4525)
  1068. * Add ability to make a search using a URL containing query parameters
  1069. * Optimize *channel with video* component in homepage
  1070. ### Bug fixes
  1071. * Alert user when aborting video upload
  1072. * Fix youtube-dl update with proxy
  1073. * Fix *My videos* search on page refresh
  1074. * Fix homepage request error when having many elements (channels, videos...)
  1075. * Prevent multiple post-process triggering of upload-resumable [#4175](https://github.com/Chocobozzz/PeerTube/pull/4175)
  1076. * Fix remote interaction on remote content
  1077. * Fix HLS transcoding job when running `create-transcoding-job` CLI
  1078. * Fix import error log on failed import
  1079. * Fix transcoding with very low input bitrate
  1080. * Update `updatedAt` video attribute on thumbnail update
  1081. * Fix local video concurrent update
  1082. * Fix redundancy error when PeerTube tries to extend/remove redundancy
  1083. * Fix account switch in account channels page
  1084. * Hide job progress information for jobs that don't support it
  1085. * Fix player settings menu keyboard navigation
  1086. * Fix player placeholder width
  1087. * Fix playlist miniature size with big description
  1088. * Correctly escape meta tags
  1089. * Fix audio upload client bug if not enabled by instance
  1090. * Add header Vary Accept-Language [#4588](https://github.com/Chocobozzz/PeerTube/pull/4588)
  1091. * Fix additional extensions admin config description
  1092. * Fix upload of video with long filename
  1093. * Fix pending transcoding counter with failed job
  1094. * Fix client header search on ios
  1095. * Fix iframe attribute `allow-popups` for oembed
  1096. * Fix theme update when logged in
  1097. * Fix homepage title
  1098. ## v3.4.1
  1099. ### Bug fixes
  1100. * Fix broken PeerTube when cookies are disabled or if the embed iframe does not have appropriate options
  1101. * Fix search by channel's handle with an handle containing the local host
  1102. * Don't display autoblock message in upload page it is not enabled by the admin
  1103. * Don't index `/about/peertube` page
  1104. * Correctly handle OEmbed with an URL containing query parameters
  1105. * More robust youtube-dl thumbnail import
  1106. * Don't send a new video notification when using create transcoding CLI script
  1107. ## v3.4.0
  1108. ### IMPORTANT NOTES
  1109. * **Important:** Due to a bug in ffmpeg, PeerTube is not compatible with ffmpeg 4.4. See https://github.com/Chocobozzz/PeerTube/issues/3990
  1110. * **Debian Bullseye admins:** Debian Bullseye removed `python` binary/link in favour of explicit `python2`/`python3` binaries. But `youtube-dl` used by PeerTube needs it so you'll have to install [python-is-python2](https://packages.debian.org/bullseye/python-is-python2) or [python-is-python3](https://packages.debian.org/bullseye/python-is-python3) **before** upgrading PeerTube
  1111. * PeerTube now supports NodeJS 16
  1112. ### Plugins/Themes/Embed API
  1113. *Documentation: https://docs.joinpeertube.org/api/plugins*
  1114. * Server helpers
  1115. * **Deprecate** `videoLanguageManager.addLanguage` and `videoLanguageManager.deleteLanguage`: use `videoLanguageManager.addConstant` and `videoLanguageManager.deleteConstant` instead
  1116. * **Deprecate** `videoCategoryManager.addCategory` and `videoCategoryManager.deleteCategory`: use `videoCategoryManager.addConstant` and `videoCategoryManager.deleteConstant` instead
  1117. * **Deprecate** `videoLicenceManager.addLicence` and `videoLicenceManager.deleteLicence`: use `videoLicenceManager.addConstant` and `videoLicenceManager.deleteConstant` instead
  1118. * **Deprecate** `videoPrivacyManager.deletePrivacy`: `videoPrivacyManager.deleteConstant` instead
  1119. * **Deprecate** `playlistPrivacyManager.deletePlaylistPrivacy`: `playlistPrivacyManager.deleteConstant` instead
  1120. * Introduce `.getConstantValue()`, `.getConstants()` and `.resetConstants()` for `videoLanguageManager`, `videoCategoryManager`, `videoLicenceManager`, `videoPrivacyManager` and `playlistPrivacyManager`
  1121. * Add server plugin hooks:
  1122. * `filter:api.overviews.videos.list.params` and `filter:api.overviews.videos.list.result`
  1123. ### Custom markup API
  1124. *Documentation: https://docs.joinpeertube.org/api/custom-client-markup*
  1125. * Add ability to only display VOD or live videos in `<peertube-videos-list>` element
  1126. * `<peertube-container>` fills all available width. Can be changed using `data-justify-content` attribute
  1127. ### Maintenance
  1128. * Remove `StandardOutput` and `StandardError` settings from systemd service template [#4300](https://github.com/Chocobozzz/PeerTube/pull/4300)
  1129. * Use random UUIDs for video, torrent and streaming playlist files
  1130. * Filename is regenerated when the file content changes: allows admins to use aggressive caching
  1131. ### CLI tools
  1132. * Remove unmaintened `optimize-old-videos.js` script
  1133. * Add short UUID support in video scripts
  1134. ### Features
  1135. * :tada: Add video filters to common video pages (account videos, channel videos, recently added/local/trending videos...)
  1136. * Change video sort (recently added, hot, views...)
  1137. * Only display live/VOD videos
  1138. * Filter by languages/categories
  1139. * Hide or display sensitive content
  1140. * Choose to display all videos or only local videos
  1141. * :tada: **Beta:** Add support for saving video files in object storage [#4290](https://github.com/Chocobozzz/PeerTube/pull/4290)
  1142. * Check the documentation: https://docs.joinpeertube.org/admin/remote-storage
  1143. * :tada: Add ability for instances to follow any actor (so specific accounts and channels)
  1144. * Updated HLS.js (library to play HLS playlists in PeerTube player) to V1:
  1145. * Remember last bandwidth to prevent resolution change at the beginning of the video
  1146. * Automatically downgrade resolution if bandwidth is too low
  1147. * Add latency metric for live videos in stats for nerd card
  1148. * Immediate quality change when the user clicks on a specific resolution
  1149. * Add ability to search by PeerTube host in search filters
  1150. * Disallow search engine indexation of remote channels/accounts
  1151. * Transcoding:
  1152. * Improve bitrate calculation using "bit per pixel" method
  1153. * Limit live bitrate to input bitrate
  1154. * Accessibility/UI:
  1155. * Alert user for low quota and video auto-block on upload page [#4336](https://github.com/Chocobozzz/PeerTube/pull/4336)
  1156. * Display a modal when logged in to explain why and where set up the account profile [#4352](https://github.com/Chocobozzz/PeerTube/pull/4352)
  1157. * Display messages to inform why and where set up channels in *My library* pages [#4352](https://github.com/Chocobozzz/PeerTube/pull/4352)
  1158. * Display a warning when using capitalized letter for the email/username in the login form
  1159. * Display a message in embed on unsupported web browser
  1160. * Support out proxy using env variables (`HTTP_PROXY` and `HTTPS_PROXY`) [#4346](https://github.com/Chocobozzz/PeerTube/pull/4346)
  1161. * Support *Latin* language for videos
  1162. ### Bug fixes
  1163. * Fix PeerTube button link in embed
  1164. * Don't remove existing redundancies on host redundancy update
  1165. * Remove thumbnail flash when autoplay is enabled in embed
  1166. * Fetch data in bulk for the homepage, fixing API rate limit errors
  1167. * Fix channel name validator consistency between client and server
  1168. * Fix resumable upload without preview file in the body
  1169. * Fix redundancy of big HLS files
  1170. * Fix stats for nerd card label width
  1171. * Fix stats for nerd card resolution
  1172. * Fix uploading videos with empty tags in CLI tools
  1173. * Fix HLS player on non HTTPS instances
  1174. * Hide schedule privacy if private was removed by a plugin
  1175. * Fix moderation embeds
  1176. * Fix description timestamp click
  1177. * Fix privacy descriptions
  1178. * Safer avatar, banner and video preview
  1179. * Fix broken delete buttons of admin federation lists [#4378](https://github.com/Chocobozzz/PeerTube/pull/4378)
  1180. * More robust webtorrent redundancy download
  1181. * Fix hls redundancy in pruning script
  1182. * Fix compat' with old web browsers (Pale Moon, Safari 11, iOS 11, old webkit...))
  1183. * Fix silent 500 after resumable upload
  1184. * Fix HTML config injection with custom HTML/CSS
  1185. * Fix video upload on iOS
  1186. ## v3.3.0
  1187. ### IMPORTANT NOTES
  1188. * **Important:** v3.2.0 introduced a `pg_dump` export bug in the auto upgrade script. v3.2.1 fixed this bug. To upgrade from v3.2.**0**:
  1189. * You can upgrade manually https://docs.joinpeertube.org/install/any-os#manually
  1190. * Or you can apply the changes introduced in this commit: https://github.com/Chocobozzz/PeerTube/commit/86dc0b9cc9374cba7548bb613ff43d92f90570a8 and then use the auto upgrade script
  1191. * **Important:** Due to a bug in ffmpeg, PeerTube is not compatible with ffmpeg 4.4. See https://github.com/Chocobozzz/PeerTube/issues/3990
  1192. ### Maintenance
  1193. * Increase max image/caption/torrent upload size to `4MB`. You need to update your nginx configuration to handle this change
  1194. * Increase fetcher job concurrency to `3`
  1195. ### Docker
  1196. * Support log level env parameter `PEERTUBE_LOG_LEVEL` [#4149](https://github.com/Chocobozzz/PeerTube/pull/4149)
  1197. ### Plugins/Themes/Embed API
  1198. * Add client helpers:
  1199. * `getBaseRouterRoute()` [#4153](https://github.com/Chocobozzz/PeerTube/pull/4153)
  1200. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1201. * `filter:left-menu.links.create.result` to add/remove left menu links
  1202. * `filter:internal.player.videojs.options.result` to filter options sent to videojs player [#4126](https://github.com/Chocobozzz/PeerTube/pull/4126)
  1203. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1204. * `action:api.video-playlist-element.created`
  1205. ### Features
  1206. * :tada: Add ability to create a custom homepage using HTML, markdown and [custom HTML tags](https://docs.joinpeertube.org/api/custom-client-markup) [#4007](https://github.com/Chocobozzz/PeerTube/pull/4007)
  1207. * :tada: Add ability to search playlists in PeerTube instance and [SepiaSearch](https://sepiasearch.org/)
  1208. * :tada: Shorter public URLs (old URLs are still supported):
  1209. * Handle short UUID (`8r4jooaQpHp8tw1E1qpSeYq` instead of `3caf7bea-5ceb-4959-81a0-b44d184e897c`) for playlists and videos
  1210. * Use `/w/:id` instead of `/videos/watch/:id` and `/w/p/:id` instead of `/videos/watch/playlist/:id`
  1211. * Use `/a/:accountName` instead of `/accounts/:accountName` and `/c/:channelName` instead of `/video-channels/:channelName` [#4009](https://github.com/Chocobozzz/PeerTube/pull/4009)
  1212. * Provide `/@:username` page that automatically redirect to the account or channel page [#4009](https://github.com/Chocobozzz/PeerTube/pull/4009)
  1213. * :tada: Add RTL layout support
  1214. * Add ability to use HTML, markdown and [custom HTML tags](https://docs.joinpeertube.org/api/custom-client-markup) in instance description
  1215. * Default to dark theme (if available) if requested by the web browser
  1216. * Add ability for admins to configure minimum age required in signup page [#4010](https://github.com/Chocobozzz/PeerTube/pull/4010)
  1217. * Use a dedicated URL for each tab in publish page
  1218. * Add ability to prefill contact form using query parameters in URL [#4161](https://github.com/Chocobozzz/PeerTube/pull/4161)
  1219. * Accessibility/UI:
  1220. * Show logo in mobile view [#4141](https://github.com/Chocobozzz/PeerTube/pull/4141)
  1221. * Improve download modal to download video subtitles
  1222. * Better error message when trying to import a torrent containing multiple files
  1223. * REST API errors:
  1224. * Use [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807) format to display errors [#4143](https://github.com/Chocobozzz/PeerTube/pull/4143)
  1225. * Improve date format error messages
  1226. * Improve video name and tag error messages
  1227. * Performance:
  1228. * Use raw SQL to fetch a video from database (~ latency / 2)
  1229. * Inject server config in HTML
  1230. * Speed up client plugin loading
  1231. * Cache refresh actor promises
  1232. * Optimize activity pub video update
  1233. * Relax some database transactions
  1234. * Use an internal cache for DNS resolution.
  1235. This should speed up federation and fix weird acquire timeouts in sequelize pool (causing slowness in the client interface)
  1236. ### Bug fixes
  1237. * Fix video upload with a capitalized extension
  1238. * Fix "height not divisible by 2" ffmpeg error
  1239. * Don't count deleted comment for replies
  1240. * Fix UI bug when a plugin deleted the public privacy setting [#4163](https://github.com/Chocobozzz/PeerTube/pull/4163)
  1241. * Fix `player.getResolutions()` embed API when the video is has not been played yet
  1242. * Fix live placeholder image aspect ratio in theatre mode
  1243. * Fix plugin modal/notifier
  1244. * Fix some 404 errors for remote avatar
  1245. * Fix daily quota display
  1246. * Fix ownership change with a live video
  1247. * Correctly handle broken plugin install
  1248. * Fix channel deletion when it has videos
  1249. * Force TLS for webfinger in production
  1250. * Correctly support `wav` mimetype
  1251. * Fix default video privacy when plugins deleted private video privacy
  1252. * Fix subscribe hotkey
  1253. * Fix HTTP fallback with a video that does not have webtorrent files
  1254. * Fill video information when importing a peertube video
  1255. ## v3.2.1
  1256. ### IMPORTANT NOTES
  1257. * **Important:** v3.2.0 introduced a `pg_dump` export bug in the auto upgrade script. To upgrade from v3.2.0:
  1258. * You can upgrade manually https://docs.joinpeertube.org/install/any-os#manually
  1259. * Or you can apply the changes introduced in this commit: https://github.com/Chocobozzz/PeerTube/commit/86dc0b9cc9374cba7548bb613ff43d92f90570a8 and then use the auto upgrade script
  1260. ### Bug fixes
  1261. * Fix create account button style
  1262. * Fix auto upgrade script
  1263. * Fix live image aspect ratio in theatre mode
  1264. ## v3.2.0
  1265. ### IMPORTANT NOTES
  1266. * **Important:** You must update your nginx configuration to add the `upload-resumable` endpoint: https://github.com/Chocobozzz/PeerTube/blob/develop/support/nginx/peertube#L81
  1267. * **Important:** Due to a bug in ffmpeg, PeerTube is not compatible with ffmpeg 4.4. See https://github.com/Chocobozzz/PeerTube/issues/3990
  1268. * **Important:** Drop NodeJS 10 support
  1269. * PeerTube is not compatible with NodeJS 16 yet
  1270. * By default, HLS transcoding is now enabled and webtorrent is disabled. We suggest you to reflect this change.
  1271. See [the documentation](https://docs.joinpeertube.org/admin/configuration#webtorrent-transcoding-or-hls-transcoding) for more information
  1272. * PeerTube client now displays bigger video thumbnails.
  1273. To fix old thumbnails quality, run `regenerate-thumbnails` script after your PeerTube upgrade: https://docs.joinpeertube.org/maintain/tools#regenerate-thumbnailsjs
  1274. ### Docker
  1275. * Support SSL database env parameter [#4114](https://github.com/Chocobozzz/PeerTube/pull/4114)
  1276. ### Maintenance
  1277. * Support `X-Frame-Options` header, enabled by default in the configuration
  1278. * Directly use `node` in [systemd template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/systemd/peertube.service)
  1279. * Check ffmpeg version at PeerTube startup
  1280. * Add `upload-resumable` nginx endpoint: https://github.com/Chocobozzz/PeerTube/blob/develop/support/nginx/peertube#L81
  1281. ### CLI tools
  1282. * Add `regenerate-thumbnails` script to regenerate thumbnails of local videos
  1283. ### Plugins/Themes/Embed API
  1284. * Theme:
  1285. * `--submenuColor` becomes `--submenuBackgroundColor`
  1286. * Support HTML placeholders for plugins. See [the documentation](https://docs.joinpeertube.org/contribute/plugins#html-placeholder-elements) for more information
  1287. * `player-next` next to the PeerTube player
  1288. * Support storing files for plugins in a dedicated directory. See [the documentation](https://docs.joinpeertube.org/contribute/plugins#storage) for more information
  1289. * Transcoding:
  1290. * Add `inputOptions` option support for transcoding profile [#3917](https://github.com/Chocobozzz/PeerTube/pull/3917)
  1291. * Add `scaleFilter.name` option support for transcoding profile [#3917](https://github.com/Chocobozzz/PeerTube/pull/3917)
  1292. * Plugin settings:
  1293. * Add ability to register `html` and `select` setting
  1294. * Add ability to hide a plugin setting depending on the form state
  1295. * Plugin form fields (to add inputs to video form...):
  1296. * Add ability to hide a plugin field depending on the form state using `.hidden` property
  1297. * Add client helpers:
  1298. * `getServerConfig()`
  1299. * `getAuthHeader()`
  1300. * Add server helpers:
  1301. * `config.getServerConfig()`
  1302. * `plugin.getBaseStaticRoute()`
  1303. * `plugin.getBaseRouterRoute()`
  1304. * `plugin.getDataDirectoryPath()`
  1305. * `user.getAuthUser()`
  1306. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1307. * `action:modal.video-download.shown`
  1308. * `action:video-upload.init`
  1309. * `action:video-url-import.init`
  1310. * `action:video-torrent-import.init`
  1311. * `action:go-live.init`
  1312. * `action:auth-user.logged-in` & `action:auth-user.logged-out`
  1313. * `action:auth-user.information-loaded`
  1314. * `action:admin-plugin-settings.init`
  1315. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1316. * `filter:api.download.video.allowed.result` & `filter:api.download.torrent.allowed.result` to forbid download
  1317. * `filter:html.embed.video-playlist.allowed.result` & `filter:html.embed.video.allowed.result` to forbid embed
  1318. * `filter:api.search.videos.local.list.params` & `filter:api.search.videos.local.list.result`
  1319. * `filter:api.search.videos.index.list.params` & `filter:api.search.videos.index.list.result`
  1320. * `filter:api.search.video-channels.local.list.params` & `filter:api.search.video-channels.local.list.result`
  1321. * `filter:api.search.video-channels.index.list.params` & `filter:api.search.video-channels.index.list.result`
  1322. ### Features
  1323. * :tada: More robust uploads using a resumable upload endpoint [#3933](https://github.com/Chocobozzz/PeerTube/pull/3933)
  1324. * Accessibility/UI:
  1325. * :tada: Redesign channel and account page
  1326. * :tada: Increase video miniature size
  1327. * :tada: Add channel banner support
  1328. * Use a square avatar for channels and a round avatar for accounts
  1329. * Use account initial as default account avatar [#4002](https://github.com/Chocobozzz/PeerTube/pull/4002)
  1330. * Prefer channel display in video miniature
  1331. * Add *support* button in channel page
  1332. * Set direct download as default in video download modal [#3880](https://github.com/Chocobozzz/PeerTube/pull/3880)
  1333. * Show less information in video download modal by default [#3890](https://github.com/Chocobozzz/PeerTube/pull/3890)
  1334. * Autofocus admin plugin search input
  1335. * Add `1.75` playback rate to player [#3888](https://github.com/Chocobozzz/PeerTube/pull/3888)
  1336. * Add `title` attribute to embed code [#3901](https://github.com/Chocobozzz/PeerTube/pull/3901)
  1337. * Don't pause player when opening a modal [#3909](https://github.com/Chocobozzz/PeerTube/pull/3909)
  1338. * Add link below the player to open the video on origin instance [#3624](https://github.com/Chocobozzz/PeerTube/issues/3624)
  1339. * Notify admins on new available PeerTube version
  1340. * Notify admins on new available plugin version
  1341. * Sort channels by last uploaded videos
  1342. * Video player:
  1343. * Add loop toggle to context menu [#3949](https://github.com/Chocobozzz/PeerTube/pull/3949)
  1344. * Add icons to context menu [#3955](https://github.com/Chocobozzz/PeerTube/pull/3955)
  1345. * Add a *Previous* button in playlist watch page [#3485](https://github.com/Chocobozzz/PeerTube/pull/3485)
  1346. * Automatically close the settings menu when clicking outside the player
  1347. * Add "stats for nerds" panel in context menu [#3958](https://github.com/Chocobozzz/PeerTube/pull/3958)
  1348. * Add channel and playlist stats to stats endpoint [#3747](https://github.com/Chocobozzz/PeerTube/pull/3747)
  1349. * Support `playlistPosition=last` and negative index (`playlistPosition=-2`) URL query parameters for playlists [#3974](https://github.com/Chocobozzz/PeerTube/pull/3974)
  1350. * My videos:
  1351. * Add ability to sort videos (publication date, most viewed...)
  1352. * Add ability to only display live videos
  1353. * Automatically resume videos for non logged-in users [#3885](https://github.com/Chocobozzz/PeerTube/pull/3885)
  1354. * Admin plugins:
  1355. * Show a modal when upgrading a plugin to a major version
  1356. * Display a setting button after plugin installation
  1357. * Add ability to search live videos
  1358. * Use bigger thumbnails for feeds
  1359. * Parse video description markdown for Opengraph/Twitter/HTML elements
  1360. * Open the remote interaction modal when replying to a comment if we are logged-out
  1361. * Handle `.srt` captions with broken durations
  1362. * Performance:
  1363. * Player now lazy loads video captions
  1364. * Faster admin table filters
  1365. * Optimize feed endpoint
  1366. ### Bug fixes
  1367. * More robust comments fetcher of remote video
  1368. * Fix database ssl connection
  1369. * Remove unnecessary black border above and below video in player [#3920](https://github.com/Chocobozzz/PeerTube/pull/3920)
  1370. * Reduce tag input excessive padding [#3927](https://github.com/Chocobozzz/PeerTube/pull/3927)
  1371. * Fix disappearing hamburger menu for narrow screens [#3929](https://github.com/Chocobozzz/PeerTube/pull/3929)
  1372. * Fix Youtube subtitle import with some languages
  1373. * Fix transcoding profile update in admin config
  1374. * Fix outbox fetch with subtitled videos
  1375. * Correctly unload a plugin on update/uninstall [#3940](https://github.com/Chocobozzz/PeerTube/pull/3940)
  1376. * Ensure to install plugins that are supported by PeerTube
  1377. * Fix welcome/warning modal displaying twice
  1378. * Fix h265 video import using CLI
  1379. * Fix context menu when watching a playlist
  1380. * Fix transcoding job priority preventing video publication when there are many videos to transcode
  1381. * Fix remote account/channel "joined at"
  1382. * Fix CLI plugins list command options [#4055](https://github.com/Chocobozzz/PeerTube/pull/4055)
  1383. * Fix HTTP player defaulting to audio resolution
  1384. * Logger warning level is "warn"
  1385. * Fix default boolean plugin setting [#4107](https://github.com/Chocobozzz/PeerTube/pull/4107)
  1386. * Fix duplicate ffmpeg preset option for live
  1387. * Avoid federation error when file has no torrent file
  1388. * Fix local user auth select
  1389. * Fix live ending banner display
  1390. * Fix redundancy max size
  1391. * Fix broken lives handling
  1392. ## v3.1.0
  1393. ### IMPORTANT NOTES
  1394. * **Important:** Drop PostgreSQL 9.6 support
  1395. * **Important:** Deprecate NodeJS 10
  1396. * Support NodeJS 14 and 15
  1397. * Remove ES5 module support (breaks compatibility with web browsers we didn't support)
  1398. * PeerTube releases now contain client source maps helping client debugging (for developers and admins).
  1399. It's the reason why the release size is bigger (we think it's worth it)
  1400. * Remove deprecated static routes (`/static/avatars/`, `/static/previews/` and `/static/video-captions/`)
  1401. * PeerTube now uses a unique name for thumbnails, previews and captions allowing to correctly cache these resources.
  1402. It could break some third party clients that guessed these filenames depending on the video UUID. We'll continue this work in the future
  1403. for video filenames, so admins can easily cache these files (using multiple reverse proxies etc)
  1404. ### Maintenance
  1405. * Fix nginx max body size configuration
  1406. ### CLI tools
  1407. * Add script printing command to generate a resolution for a given file [#3507](https://github.com/Chocobozzz/PeerTube/pull/3507)
  1408. * Add `--wait-interval <seconds>` option to video-import script to wait between two video imports [#3310](https://github.com/Chocobozzz/PeerTube/pull/3310)
  1409. ### Plugins/Themes/Embed API
  1410. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1411. * `filter:api.user.me.videos.list.params` and `filter:api.user.me.videos.list.result`
  1412. * Add server helpers:
  1413. * `videos.loadByIdOrUUID`
  1414. * Add server transcoding helpers (https://docs.joinpeertube.org/contribute/plugins#add-new-transcoding-profiles):
  1415. * `transcodingManager.addVODProfile`
  1416. * `transcodingManager.addVODEncoderPriority`
  1417. * `transcodingManager.addLiveProfile`
  1418. * `transcodingManager.addLiveEncoderPriority`
  1419. ### Features
  1420. * Transcoding:
  1421. * Fair transcoding jobs priority: give an higher priority to `optimize` jobs and decrease priority of transcoding jobs depending on the amount of videos uploaded by the user during the last 7 days [#3637](https://github.com/Chocobozzz/PeerTube/pull/3637)
  1422. * Higher niceness priority for live transcoding compared to vod transcoding [#3577](https://github.com/Chocobozzz/PeerTube/pull/3577)
  1423. * Allow admins to choose a transcoding profile. New transcoding profiles can be added by PeerTube plugins that can inject custom ffmpeg encoders/parameters
  1424. * Add transcoding support for 1440p (Quad HD/QHD/WQHD) videos [#3518](https://github.com/Chocobozzz/PeerTube/pull/3518)
  1425. * Add transcoding progress in admin transcoding jobs list
  1426. * Use `veryfast` preset for default transcoding profile (same result size but faster)
  1427. * Transcode audio uploads to lower configured resolutions
  1428. * Transcode HLS playlists in a `tmp` directory (less bugs/inconsistencies)
  1429. * Allow admins to choose the transcoding jobs concurrency
  1430. * Support Albanian locale
  1431. * Video upload:
  1432. * Async torrent creation on video upload. We hope that it should fix some weird upload errors
  1433. * Add `.m4a` audio upload support
  1434. * Accessibility/UI:
  1435. * Move orange admin buttons on the left side
  1436. * Hide title to left menu toggle icon
  1437. * Add username information in profile settings
  1438. * Improve about page layout
  1439. * Add refresh button in jobs list
  1440. * Add ability to set a custom user quota
  1441. * Rewrite prose for JavaScript disabled message [#3684](https://github.com/Chocobozzz/PeerTube/pull/3684)
  1442. * Video import:
  1443. * Stricter youtube-dl format selectors for import (don't import HDR videos and cap to the max supported resolution) [#3516](https://github.com/Chocobozzz/PeerTube/pull/3516)
  1444. * Don't publish imported videos before the user submitted the second step form
  1445. * Allow admins to choose the import jobs concurrency
  1446. * Implement *hot* and *best* trending algorithms [#3625](https://github.com/Chocobozzz/PeerTube/pull/3625) & [#3681](https://github.com/Chocobozzz/PeerTube/pull/3681)
  1447. * Admin config:
  1448. * Add URL fragment support in admin config page to go on the appropriate tab
  1449. * Improve submit error message
  1450. * Allow admins to disable ping requests logging [#3550](https://github.com/Chocobozzz/PeerTube/pull/3550)
  1451. * Add a setting so PeerTube periodically cleans up remote AP interactions
  1452. * Add ability for admins to update plugin auth field of a particular user
  1453. * Support `webp` avatar upload
  1454. * Implement remote comment/subscription
  1455. * Register a service worker [#3464](https://github.com/Chocobozzz/PeerTube/pull/3464)
  1456. * Add ability to remove one's avatar for account and channels [#3467](https://github.com/Chocobozzz/PeerTube/pull/3467)
  1457. * Show first decimal for video views above a thousand [#3564](https://github.com/Chocobozzz/PeerTube/pull/3564)
  1458. * Allow user to search through their watch history [#3576](https://github.com/Chocobozzz/PeerTube/pull/3576)
  1459. * Allow users/visitors to search through an account's videos [#3589](https://github.com/Chocobozzz/PeerTube/pull/3589)
  1460. * Use an HTML link to display feed url
  1461. * Allow AP resolution for default account/channel pages (`/accounts/:name/video-channels` and `/video-channels/:name/videos`)
  1462. * Redirect to login on 401, display 403 variant [#3632](https://github.com/Chocobozzz/PeerTube/pull/3632)
  1463. * Performance:
  1464. * Optimize videos list API endpoint
  1465. * Optimize videos list views sort SQL query
  1466. * Avoid as much as possible to process remote thumbnail
  1467. * Proxify remote torrent requests from local clients (like we do for captions and previews)
  1468. * Optimize rate POST endpoint
  1469. * Tighten hotkeys definitions to not conflict with the web browser hotkeys [#3702](https://github.com/Chocobozzz/PeerTube/pull/3702)
  1470. * Add more AP stats to stats endpoint
  1471. * Increase jobs request timeout to 7 seconds
  1472. * Increase broadcast request concurrency to 30
  1473. ### Bug fixes
  1474. * Fix remote subscribe input alignment
  1475. * Fix loading bar for HTTP requests
  1476. * Fix table header overflow
  1477. * Disable wait transcoding checkbox instead of hiding it when uploading an incompatible video for the web
  1478. * Fix sendmail emailer configuration
  1479. * Add missing niceness to ffmpeg thumbnail process
  1480. * Videos with only HLS files:
  1481. * Fix RSS feed
  1482. * Correctly wait transcoding before federating
  1483. * Fix redundancy
  1484. * Correctly remove torrents
  1485. * Localize decimal separator in video miniatures [#3643](https://github.com/Chocobozzz/PeerTube/pull/3643)
  1486. * Check banned status on external authentication
  1487. * Remove all video redundancies when purging the cache
  1488. * Fix URI search admin config update
  1489. * Fix broken HLS playback with videos that contain an unknown channel layout
  1490. * Fix HLS generation after file import script
  1491. * Ensure we don't receive things from local actors
  1492. * Try to recover from network errors in HLS player
  1493. * Fix comments sorting dropdown z-index
  1494. * Fix create transcoding job script depending on the transcoding configuration
  1495. * Fix NSFW policy in my videos, account videos and channel videos pages
  1496. * Fix complete description loading of a previous video
  1497. * Fix video comments display with deleted comments
  1498. * Don't override preview image on import
  1499. * Fix Accept AP messages sending to previously accepted followers
  1500. * Fix import script when using the instance uses the search index
  1501. * Fix player freeze on Safari with a video that has many subtitles
  1502. * Fix anonymous user settings
  1503. * Fix preview upload with capitalized ext
  1504. * Fix abuses list crash on deleted video
  1505. * More robust channel change federation
  1506. * Fix emptying video tags
  1507. * Fix broken local actors that do not have a public/private key
  1508. * Fix bad PeerTube URL for playlist embed
  1509. * Live:
  1510. * Don't update live attributes if they did not change (allowing to update live metadata even if the live has started)
  1511. * Fix live RAM usage when ffmpeg is too slow to transcode the RTMP stream
  1512. * Correctly load live information (description and preview) when not started
  1513. * Fix mention notification with deleted comment
  1514. * Fix default boolean plugin setting
  1515. * Fix long text on modals [#3840](https://github.com/Chocobozzz/PeerTube/pull/3840)
  1516. ## v3.0.1
  1517. ### SECURITY
  1518. * **Important:** Fix retrieving data of another user if the username contains `_` when fetching *my information*
  1519. ### Docker
  1520. * Fix [upgrade documentation](https://docs.joinpeertube.org/install/docker#upgrade)
  1521. * Add live RTMP port in docker compose
  1522. ### Bug fixes
  1523. * Fix account feed URL
  1524. * Log RTMP server error (address already in use)
  1525. * Fix NPM theme links in admin theme page
  1526. * Don't reject AP actors with empty description
  1527. * Fix twitter admin config description
  1528. * Fix duplicate entry in job list page
  1529. * Fix `nl-NL` broken admin config page
  1530. * Fix bad tracker client IP when using a reverse proxy
  1531. ## v3.0.0
  1532. **Since v2.4.0**
  1533. ### IMPORTANT NOTES
  1534. * Update the default configuration to not federate unlisted videos. We recommend to admins to update [this setting](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L196)
  1535. * Update the default configuration to remove remote video views to reduce DB size and improve performances. We recommend to admins to update [this setting](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L170)
  1536. * Remove deprecated video abuse API
  1537. ### Maintenance
  1538. * Refresh nginx configuration [#3313](https://github.com/Chocobozzz/PeerTube/pull/3313)
  1539. ### Docker
  1540. * Replace traefik by nginx in our docker-compose template:
  1541. * Better consistency with our default setup (we now use the same stack)
  1542. * Use our default nginx template enabling many optimizations
  1543. * Update the documentation to take into account this change: https://docs.joinpeertube.org/install/docker
  1544. ### Plugins/Themes/Embed API
  1545. * Add ability for auth plugins to redirect user on logout [#32](https://framagit.org/framasoft/peertube/PeerTube/-/merge_requests/32) & [#33](https://framagit.org/framasoft/peertube/PeerTube/-/merge_requests/33)
  1546. * Add `input-password` setting to plugins [#3375](https://github.com/Chocobozzz/PeerTube/issues/3375)
  1547. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1548. * `filter:api.accounts.videos.list.params`
  1549. * `filter:api.accounts.videos.list.result`
  1550. * `filter:api.video-channels.videos.list.params`
  1551. * `filter:api.video-channels.videos.list.result`
  1552. * Authenticate the user if possible in plugin router [#3400](https://github.com/Chocobozzz/PeerTube/pull/3400)
  1553. ### Features
  1554. * :tada: :tada: :tada: Support live streaming :tada: :tada: :tada: [#3250](https://github.com/Chocobozzz/PeerTube/pull/3250)
  1555. * Create a live video using the PeerTube interface and start streaming using your favorite streaming software (OBS, ffmpeg...)
  1556. * If the admin allows it, add ability for users to save a replay of their live
  1557. * Support live transcoding in multiple resolutions
  1558. * Admins can set a limit of created lives per user/instance and a duration limit
  1559. * This is the first step of live streaming, we'll consolidate the feature next year
  1560. * Support Galician locale
  1561. * Update left menu [#3296](https://github.com/Chocobozzz/PeerTube/pull/3296)
  1562. * Add *My settings*, *My library*, *Administration* (if admin) below the username
  1563. * Rename section titles to *In my account*, and *On instance name* for better block scopes identification
  1564. * Removed confusing *Account settings* and *Channel settings* from user dropdown
  1565. * Add *My notifications* in user dropdown
  1566. * Split account horizontal menu in two [#3296](https://github.com/Chocobozzz/PeerTube/pull/3296)
  1567. * *My library* containing *Channels*, *Videos*, *Imports*, *Ownership changes*, *Playlists*, *Subscriptions* and *History*
  1568. * *My settings* containing *Account settings*, *Notifications* and *Moderation* tools
  1569. * Add page in admin to manage video comments of the instance
  1570. * List latest comments
  1571. * Delete comments of a specific user
  1572. * Delete comments in bulk
  1573. * Delete notifications related to muted accounts/instances
  1574. * Add ability for moderators to display all videos (not yet published, private...) in channels/accounts pages
  1575. * Support GIF avatars upload and federation [#3329](https://github.com/Chocobozzz/PeerTube/pull/3329)
  1576. * Automatically enable auto block of new videos if the admin enables signups in the admin interface
  1577. * Allow private syndication feed of videos from subscriptions [#3074](https://github.com/Chocobozzz/PeerTube/pull/3074)
  1578. * Improve default account and channel avatars [#3326](https://github.com/Chocobozzz/PeerTube/pull/3326)
  1579. * Accessibility/UI:
  1580. * More explicit error messages for file uploads [#3347](https://github.com/Chocobozzz/PeerTube/pull/3347)
  1581. * Allow to retry a failed video upload [#3347](https://github.com/Chocobozzz/PeerTube/pull/3347)
  1582. * Improve jobs and logs view [#3127](https://github.com/Chocobozzz/PeerTube/pull/3127)
  1583. * Use badges for *NSFW* and *Unfederated* labels in video block list table
  1584. * Improved video rating popover text if the user is not logged-in [#3168](https://github.com/Chocobozzz/PeerTube/pull/3168)
  1585. * Improve markdown-it emoji list column display [#3253](https://github.com/Chocobozzz/PeerTube/pull/3253)
  1586. * Add help popup for choosing a licence [#3306](https://github.com/Chocobozzz/PeerTube/pull/3306)
  1587. * Change *Upload* button to *Publish*
  1588. * More player download/upload title details [#3394](https://github.com/Chocobozzz/PeerTube/pull/3394)
  1589. * Create a dedicated transcoding tab in admin config
  1590. * Improve 404 page
  1591. * Improve login form [#3357](https://github.com/Chocobozzz/PeerTube/pull/3357)
  1592. * Add a title attribute on views element to see the view counter [#3365](https://github.com/Chocobozzz/PeerTube/pull/3365)
  1593. * Clearer titles for periods in recently added and videos from subscriptions pages
  1594. * Select first available channel when accepting ownership change [#3382](https://github.com/Chocobozzz/PeerTube/pull/3382)
  1595. * Hide channel registration step if default quota is 0 [#3393](https://github.com/Chocobozzz/PeerTube/pull/3393)
  1596. * Add possibility to share origin URL to video if it's not local [#3201](https://github.com/Chocobozzz/PeerTube/pull/3201)
  1597. * Render markdown in email notifications for new comments [#3255](https://github.com/Chocobozzz/PeerTube/pull/3255)
  1598. * Add an admin setting to force ipv4 in youtube-dl [#3311](https://github.com/Chocobozzz/PeerTube/pull/3311)
  1599. * Add ability for admins to put markdown in all fields of *About* page [#3371](https://github.com/Chocobozzz/PeerTube/pull/3371)
  1600. * Support `activeMonth` and `activeHalfyear` in nodeinfo
  1601. ### Bug fixes
  1602. * Fix inability to delete a channel due to a bug in the confirm modal
  1603. * Fix views processing for hour 0
  1604. * Fix ownership change modal accept button
  1605. * Fix incorrect ActivityPub IDs
  1606. * Do not transcode videos to an higher bitrate than the source
  1607. * Fix video display of muted accounts on overview page
  1608. * Fix transcoding errors in readonly docker containers [#3198](https://github.com/Chocobozzz/PeerTube/pull/3198)
  1609. * Fix running another transcoding job using the CLI on a video that was already transcoded
  1610. * Fix embed on Brave web browser
  1611. * Fix break line display for re-draft comments [#3261](https://github.com/Chocobozzz/PeerTube/pull/3261)
  1612. * Fix hidden loading bar
  1613. * Fix jobs pagination
  1614. * Fix missing player localized strings
  1615. * Fix instance file size stats when the admin enabled HLS
  1616. * Fix embed of HLS videos on non HTTPS websites
  1617. * Hide embed dock when title/description are disabled
  1618. * Fix follow notification when the follower has been deleted
  1619. * Fix client override endpoint in nginx configuration [#3297](https://github.com/Chocobozzz/PeerTube/pull/3297)
  1620. * Fix overflow of some dropdowns
  1621. * Fix infinite scrollin in channel's playlists page
  1622. * Fix anchors scrolling in About page
  1623. * Fix canonical URLs of videos and playlists [#3406](https://github.com/Chocobozzz/PeerTube/pull/3406)
  1624. * Fix CLI import script when importing Youtube channels
  1625. * Fix video tag min length validator
  1626. * Fix user notification preferences column width [#3352](https://github.com/Chocobozzz/PeerTube/pull/3352)
  1627. * Fix forgotten/reset password UI [#3351](https://github.com/Chocobozzz/PeerTube/pull/3351)
  1628. * Fix 00:00 player timecode in video description and comments
  1629. * Avoid too large federation cert error messages in logs
  1630. * Fix registration form width on mobile [#3274](https://github.com/Chocobozzz/PeerTube/pull/3274)
  1631. * Fix "Too many packets buffered for output stream" ffmpeg error with some videos
  1632. * Fix 500 error when fetching unknown video thread
  1633. * Fix infinite scroll in *Local videos* page when enabling the *Display all videos* checkbox on big screens
  1634. * Fix menu theme colors [#3376](https://github.com/Chocobozzz/PeerTube/pull/3376)
  1635. * Fix playlist list `name`/`displayName` sort field [#3385](https://github.com/Chocobozzz/PeerTube/pull/3385)
  1636. * Fix 401 error display in embeds
  1637. * Do not crash if SMTP server is down, instead log an error [#3457](https://github.com/Chocobozzz/PeerTube/issues/3457)
  1638. * Fix redundancy federation in specific cases
  1639. * Stop CLI auth failure with extra `/` [#3520](https://github.com/Chocobozzz/PeerTube/issues/3520)
  1640. * Add missing audit log if the user deletes its account
  1641. * Don't crash on youtube-dl update write error
  1642. * Fix video auto block notification issue
  1643. **Since v3.0.0-rc.1**
  1644. ### Features
  1645. * Support Galician locale
  1646. * Support `activeMonth` and `activeHalfyear` in nodeinfo
  1647. ### Bug fixes
  1648. * Fix views processing for hour 0
  1649. * Fix follows pages (in admin and about)
  1650. * Don't display live max duration if disabled by admin
  1651. * Correctly display live badge in videos list
  1652. * Fix redundancy federation in specific cases
  1653. * Fix live miniatures
  1654. * Don't update player timestamp when clicking on a timecode in comments/descriptions for a live
  1655. * Fix admin table filters
  1656. * Fix some accessibility issues
  1657. * Stop CLI auth failure with extra `/` [#3520](https://github.com/Chocobozzz/PeerTube/issues/3520)
  1658. * Fix login error display
  1659. * Don't display log level in audit logs view
  1660. * Add missing audit log if the user deletes its account
  1661. * Don't crash on youtube-dl update write error
  1662. * Fix video auto block notification issue
  1663. ## v2.4.0
  1664. **Since v2.3.0**
  1665. ### IMPORTANT NOTES
  1666. * The minimum ffmpeg version required is now 4.1
  1667. * Deprecate static routes that will be removed in 3.0 (you may not have to do anything if you used paths returned by the video REST API):
  1668. * `/static/avatars/`: use `/lazy-static/avatars/` instead
  1669. * `/static/previews/`: use `/lazy-static/previews/` instead
  1670. * `/static/video-captions/`: use `/lazy-static/video-captions/` instead
  1671. * Use `playlistPosition` URL parameter for playlists instead of `videoId` to set the current playlist position
  1672. ### Maintenance
  1673. * Better error message on PostgreSQL connection error
  1674. * Add `ssl` option support for PostgreSQL connection
  1675. ### Official PeerTube plugins
  1676. * [Player video annotation (alpha)](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-video-annotation)
  1677. ### Plugins/Themes/Embed API
  1678. * Add embed API (https://docs.joinpeertube.org/api/embed-player):
  1679. * `playNextVideo` method
  1680. * `playPreviousVideo` method
  1681. * `getCurrentPosition` method
  1682. * Embed URL parameters
  1683. * Add ability to disable PeerTube link in embed using an URL param (`peertubeLink=0`)
  1684. * Add plugins support in embed
  1685. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1686. * `action:embed.player.loaded` (for embed)
  1687. * Add custom fields in video update/upload form using `registerVideoField` (https://docs.joinpeertube.org/contribute/plugins#add-custom-fields-to-video-form)
  1688. ### Features
  1689. * Moderation:
  1690. * :tada: Add ability to report comments and accounts
  1691. * :tada: Add messaging system between local reporter of an abuse and moderators so they can easily communicate
  1692. * :tada: Users can now see their abuse reports, and have notifications when an abuse state changed (accepted/rejected) or when moderators added a new message
  1693. * Add embed to block list details [@rigelk in #2926](https://github.com/Chocobozzz/PeerTube/pull/2926)
  1694. * Video playlists:
  1695. * :tada: Add ability to embed playlists
  1696. * :tada: Add ability to put a video multiple times in a playlist (with different startAt/stopAt parameters or not)
  1697. * Video comments:
  1698. * Add uni-code emojis native display in comments [@Kimsible in #3046](https://github.com/Chocobozzz/PeerTube/pull/3046)
  1699. * Add delete and re-draft action on a comment that doesn't have replies [@Kimsible in #3046](https://github.com/Chocobozzz/PeerTube/pull/3046)
  1700. * Hide deleted comments when there aren't replies [@Kimsible in #3046](https://github.com/Chocobozzz/PeerTube/pull/3046)
  1701. * Accessibility/UI:
  1702. * Disable vertical scroll instead of hide on desktop browsers [@Kimsible in #2962](https://github.com/Chocobozzz/PeerTube/pull/2962)
  1703. * Update my-account sub-menus icons [@Kimsible in #2977](https://github.com/Chocobozzz/PeerTube/pull/2977)
  1704. * Improve navigation sub-menu and tabs effects [@Kimsible in #2971](https://github.com/Chocobozzz/PeerTube/pull/2971)
  1705. * Hide generic channel display name and avatar on watch view [@Kimsible in #2988](https://github.com/Chocobozzz/PeerTube/pull/2988)
  1706. * Display user quota progress bars above upload form [@Kimsible in #2981](https://github.com/Chocobozzz/PeerTube/pull/2981)
  1707. * Improve mobile accessibility by moving table action cells on the left [@Kimsible in #2980](https://github.com/Chocobozzz/PeerTube/pull/2980)
  1708. * Directly display download button in watch page on logged-out users [@rigelk in #2919](https://github.com/Chocobozzz/PeerTube/pull/2919)
  1709. * Improve users list table display in admin (add badge, progress bar) [@rigelk in #2991](https://github.com/Chocobozzz/PeerTube/pull/2991)
  1710. * Add dynamic column display for users list table in admin [@rigelk in #2991](https://github.com/Chocobozzz/PeerTube/pull/2991)
  1711. * Add anchor links to about/instance [@Kimsible in #3064](https://github.com/Chocobozzz/PeerTube/pull/3064)
  1712. * Improve select components [@rigelk in #3035](https://github.com/Chocobozzz/PeerTube/pull/3035)
  1713. * Add content overlay for opened menu on touchscreens [@Kimsible in #3088](https://github.com/Chocobozzz/PeerTube/pull/3088)
  1714. * Add alert and hide upload view when no upload is possible [@Kimsible in #2966](https://github.com/Chocobozzz/PeerTube/pull/2966)
  1715. * Allow sorting notifications by unread/newest **@rigelk**
  1716. * Add open-graph and twitter-card metas for accounts, video-channels and playlists urls [@Kimsible in #2996](https://github.com/Chocobozzz/PeerTube/pull/2996)
  1717. * Add channel name to create-user admin form [@Kimsible in #2984](https://github.com/Chocobozzz/PeerTube/pull/2984)
  1718. * Support Kabile for video languages/captions
  1719. * Translate page titles
  1720. * Add `.ac3`, `.aac`, `.qt`, `.mqv`, `.3gpp`, `.3gpp2`, `.m1v`, `.mpg`, `.mpe`, `.vob` extensions support on upload if transcoding is enabled **@rigelk**
  1721. * Performance:
  1722. * Improved front-end performance by reducing localized bundle sizes (~ 2MB instead of 3MB for the homepage)
  1723. * Optimize comments RSS feed SQL query
  1724. * Optimize default sort SQL query when listing videos
  1725. ### Bug fixes
  1726. * Handle webp images from youtube-dl
  1727. * Fix embed p2p warning localization
  1728. * iOS fixes:
  1729. * Fix HLS only videos playback
  1730. * Fix fullscreen
  1731. * Fix iPad desktop mode playback
  1732. * Try to fix autoplay with iOS/Safari
  1733. * Fix anonymous user theme
  1734. * Fix player hotkeys after mouse interaction
  1735. * Fix resolution transcoding for portrait videos
  1736. * Do not display videojs poster when video is starting to avoid blinking effect [@Kimsible in #3056](https://github.com/Chocobozzz/PeerTube/pull/3056)
  1737. * Correctly scroll to anchors in my-settings [@Kimsible in #3032](https://github.com/Chocobozzz/PeerTube/pull/3032)
  1738. * Forbid reset password links reuse
  1739. * Fix low default resolution on webtorrent videos
  1740. * Fix instance features table responsive in about page [@test2a in #3090](https://github.com/Chocobozzz/PeerTube/pull/3090)
  1741. * Fix playlist element deletion/edition in my account
  1742. * Fix video playlist playback resuming
  1743. * Correctly display error message for Internet Explorer
  1744. * Fix videos RSS feed when HLS only is enabled
  1745. * Add site_name to opengraph tags
  1746. **Since v2.4.0-rc.1**
  1747. ### Bug fixes
  1748. * Add site_name to opengraph tags
  1749. * Fix privacy/channel select on upload
  1750. ## v2.3.0
  1751. **Since v2.2.0**
  1752. ### IMPORTANT NOTES
  1753. * Add `client_overrides` directory in configuration file. **You must configure it in your production.yaml**
  1754. * Deprecate `/videos/abuse` endpoint.
  1755. A new endpoint to report videos will be created in PeerTube 2.4 and will also allow to report accounts and comments (`/videos/abuse` will be removed in 3.0)
  1756. * Renamed videos blacklist feature to videos blocks/blocklist
  1757. ### Documentation
  1758. * Add feeds routes to the openapi spec **@rigelk**
  1759. * Add notifications routes to the openapi spec **@rigelk**
  1760. * Add redundancy routes to the openapi spec **@rigelk**
  1761. * Add plugins routes to the openapi spec **@rigelk**
  1762. * Add examples, descriptions and missing filters for abuses routes in the openapi spec **@rigelk**
  1763. * Update CentOS insutructions in dependencies.md [@cgarwood82 in 2904](https://github.com/Chocobozzz/PeerTube/pull/2904)
  1764. ### Maintenance
  1765. * Switched image processing library from native dependency `sharp` to pure JS implementation `jimp`. Admins don't have to compile `sharp` anymore and `jimp` is lighter
  1766. * Provide specific engine boundaries for NodeJS and Yarn [@rigelk in 0c4bacb](https://github.com/Chocobozzz/PeerTube/commit/0c4bacbff53bc732f5a2677d62a6ead7752e2405)
  1767. * Add ability to set `database.name` config option [@gramakri in #2898](https://github.com/Chocobozzz/PeerTube/pull/2898)
  1768. ### Docker
  1769. * Fix `POSTGRES` env variables in docker-compose ([@kimsible in #2538](https://github.com/Chocobozzz/PeerTube/pull/2538/files))
  1770. * Fix OpenDKIM permissions in docker-compose setup [@kimsible in #2868](https://github.com/Chocobozzz/PeerTube/pull/2868)
  1771. ### Official PeerTube plugins
  1772. * [Auto block videos (alpha)](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auto-block-videos)
  1773. ### Plugins/Themes/Embed API
  1774. * Add ability to override client assets: logo - favicon - PWA icons - PWA manifest name and description [@kimsible in #2897](https://github.com/Chocobozzz/PeerTube/pull/2897)
  1775. ### Features
  1776. * :tada: Add global search support (has to be explicitly enabled by admins)
  1777. * :tada: Add ability for admins to display a banner on their instance
  1778. * :tada: Support Vietnamese and Kabyle languages. Also re-establish Occitan language locale despite lack of support in Angular
  1779. * Federation:
  1780. * Make federation of unlisted videos an instance-level server preference [@Tak in #2802](https://github.com/Chocobozzz/PeerTube/pull/2802)
  1781. * Sort ActivityPub video object files by resolution in descending order (fix issue with Pleroma)
  1782. * Send complete video description in ActivityPub video objects
  1783. * Moderation:
  1784. * Add ability to bulk delete comments of an account
  1785. * Add ability to mute accounts from video miniature
  1786. * Improve report modal: [@rigelk in #2842](https://github.com/Chocobozzz/PeerTube/pull/2842)
  1787. * Add ability to provide predefined reasons
  1788. * Embed of the video in the modal
  1789. * Add ability to set a **startAt** parameter
  1790. * Accessibility:
  1791. * Add lang attribute in languages list menu [@Pandoraaa in #2832](https://github.com/Chocobozzz/PeerTube/pull/2832)
  1792. * Add aria-hidden to non-descriptive icons [@Pandoraaa in #2844](https://github.com/Chocobozzz/PeerTube/pull/2844)
  1793. * Change focus color instead of opacity of video play button [@Pandoraaa in #2845](https://github.com/Chocobozzz/PeerTube/pull/2845)
  1794. * Add explicit step and aria-current attribute in register form [@Pandoraaa in #2861](https://github.com/Chocobozzz/PeerTube/pull/2861)
  1795. * Add scope tags and aria-labels in instance features table [@Pandoraaa in #2866](https://github.com/Chocobozzz/PeerTube/pull/2866)
  1796. * Add keyboard navigation in video watch page buttons [@Pandoraaa in #2854 with @rigelk](https://github.com/Chocobozzz/PeerTube/pull/2854)
  1797. * Replaced softies icons by feather icons **@rigelk**
  1798. * Support player hotkeys when it is not focused
  1799. * Improve video miniature grids to fill the space as much as possible **@rigelk**
  1800. * Add video miniature dropdown in *Discover* page
  1801. * Add channel information in *My videos* page
  1802. * Add videos count per channel in *My channels* page
  1803. * Improve channel deletion warning by explaining how many videos will be deleted
  1804. * Simplify navigation within most admin menus **@rigelk**
  1805. * Tracker:
  1806. * Log IP requesting unknown infoHash [@JohnXLivingston in
  1807. 212e17a ](https://github.com/Chocobozzz/PeerTube/commit/212e17a1892162a69138c0b9c0a1bd88f95209a8)
  1808. * Block IP of infohash spammers [db48de8](https://github.com/Chocobozzz/PeerTube/commit/db48de8597897e5024f8e9ed5acb1a8f40748169)
  1809. * Allow limiting video-comments rss feeds to an account or video channel [@rigelk in 00494d6](https://github.com/Chocobozzz/PeerTube/commit/00494d6e2ae915741f47869dcd359d9728a0af91)
  1810. ### Bug fixes
  1811. * Fix default anonymous theme that should use instance default
  1812. * Fix configuration form issue when auto follow index URL is empty
  1813. * Fix URL import of some videos
  1814. * Fix quota representation in profile settings **@rigelk**
  1815. * Exclude 0p from auto webtorrent quality
  1816. * Fix scroll on some pages with hash in URL
  1817. * Fix search filter in video reports
  1818. * Fix anonymous user nsfw policy
  1819. * Don't cache embed HTML page resulting in broken embed after a PeerTube upgrade
  1820. * Accessibility:
  1821. * Add lang in document to match current locale [@rigelk in #2822](https://github.com/Chocobozzz/PeerTube/pull/2822)
  1822. * Prevent duplicate id attributes for `.svg` [@rigelk in #2822](https://github.com/Chocobozzz/PeerTube/pull/2822)
  1823. * Fix headings order or add missing ones [@Pandoraaa in #2871](https://github.com/Chocobozzz/PeerTube/pull/2871)
  1824. * Remove uneccessary details to link titles [@Pandoraaa in #2879](https://github.com/Chocobozzz/PeerTube/pull/2879)
  1825. * Fix accessibility action buttons and display on imports and followers list [@kimsible in #2986](https://github.com/Chocobozzz/PeerTube/pull/2986)
  1826. * Fix iOS player with HLS-only videos
  1827. * Fix action buttons selection mode styles [@kimsible in #2983](https://github.com/Chocobozzz/PeerTube/pull/2983)
  1828. **Since v2.3.0-rc.1**
  1829. ### Bug fixes
  1830. * Fix broken locales
  1831. * Fix embed URL in share modal
  1832. * Handle webp images from youtube-dl
  1833. * Fix iOS player with HLS-only videos
  1834. * Fix popup issues on video miniature click when searching on the global index
  1835. * Fix username in password-reset email [@kimsible in #2960](https://github.com/Chocobozzz/PeerTube/pull/2960)
  1836. * Fix maximized icon padding in markdown textarea [@kimsible in #2963](https://github.com/Chocobozzz/PeerTube/pull/2963)
  1837. * Fix action buttons selection mode styles [@kimsible in #2983](https://github.com/Chocobozzz/PeerTube/pull/2983)
  1838. * Fix user creation in admin [@kimsible in #2985](https://github.com/Chocobozzz/PeerTube/pull/2985)
  1839. * Fix accessibility action buttons and display on imports and followers list [@kimsible in #2986](https://github.com/Chocobozzz/PeerTube/pull/2986)
  1840. ## v2.2.0
  1841. **Since v2.1.0**
  1842. ## IMPORTANT NOTES
  1843. * **/!\ VERY IMPORTANT /!\\** We added a unique index on actors usernames to fix some federation bugs.
  1844. Please check now if you have conflicts:
  1845. * Go inside your database using `sudo -u postgres psql peertube_prod` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 1;`
  1846. * If you have some results, it seems you have duplicate channels/accounts.
  1847. For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique).
  1848. The updated actors could have some federations issues
  1849. * Changed `auto_follow_index` setting configuration: you now have to use the complete URL in `index_url`.
  1850. If you used the default one, you now need to use `https://instances.joinpeertube.org/api/v1/instances/hosts`.
  1851. This way, you can also use a direct raw URL (Gitlab, Github, pastebin, etc.) using [a simple text format](https://framagit.org/framasoft/peertube/instances-peertube#peertube-auto-follow) and easily maintain small communities or instance recommendation lists.
  1852. * PeerTube requires NodeJS v10 or v12
  1853. ### CLI tools
  1854. * Add redundancy CLI: https://docs.joinpeertube.org/maintain/tools#peertube-redundancyjs
  1855. * Add ability to pass remaining options to youtube-dl binary in peertube-import script ([@drzraf](https://github.com/drzraf))
  1856. ### Docker
  1857. * **Important:** Fix HLS storage configuration ([@xcffl](https://github.com/xcffl)): https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/config/production.yaml#L48
  1858. * Add DKIM support to Docker ([@kimsible](https://github.com/kimsible))
  1859. ### Maintenance
  1860. * Add nginx configuration to redirect videos to an S3 bucket ([@rigelk](https://github.com/rigelk)) and update of the [corresponding documentation](https://docs.joinpeertube.org/admin/remote-storage).
  1861. ### Plugins/Themes/Embed API
  1862. * Add embed API (https://docs.joinpeertube.org/api/embed-player):
  1863. * `playbackState` can be `ended`
  1864. * `playbackStatusUpdate` has a `duration` field
  1865. * `setCaption` and `getCaptions` methods
  1866. * Add client plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1867. * `action:login.init`
  1868. * `action:video-watch.video-threads.loaded`
  1869. * `action:video-watch.video-thread-replies.loaded` ([@ipbc-dev](https://github.com/ipbc-dev))
  1870. * Add server plugin hooks (https://docs.joinpeertube.org/api/plugins):
  1871. * `filter:api.video.pre-import-url.accept.result`
  1872. * `filter:api.video.pre-import-torrent.accept.result`
  1873. * `filter:api.video.post-import-url.accept.result`
  1874. * `filter:api.video.post-import-torrent.accept.result`
  1875. * Add server helpers:
  1876. * `database.query` to do SQL queries
  1877. * `videos.removeVideo`
  1878. * `config.getWebserverUrl`
  1879. * `moderation.blockServer`, `moderation.unblockServer`, `moderation.blockAccount`, `moderation.unblockAccount`, `moderation.blacklistVideo`, `moderation.unblacklistVideo`
  1880. * Add client helpers:
  1881. * `notifier` to notify users using the toast component ([@kimsible](https://github.com/kimsible))
  1882. * `showModal` to show a modal ([@kimsible](https://github.com/kimsible))
  1883. * `markdownRenderer` to render markdown ([@kimsible](https://github.com/kimsible))
  1884. * Add ability for plugins to define custom routes
  1885. * Add ability for plugins to remove video/playlist privacies
  1886. * Add ability for plugins to support additional auth methods
  1887. * Add `onSettingsChange` support
  1888. ### Official PeerTube plugins
  1889. * [OpenID Connect](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-openid-connect)
  1890. * [LDAP](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-ldap)
  1891. * [SAML2](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auth-saml2)
  1892. * [Auto mute accounts/instances (alpha)](https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-auto-mute)
  1893. ## Features
  1894. * :tada: Add HTML support in PeerTube emails, improve text-only version ([@rigelk](https://github.com/rigelk))
  1895. * :tada: Add settings panel for anonymous users so they can change NSFW/P2P/autoplay/displayed videos policy ([@rigelk](https://github.com/rigelk))
  1896. * :tada: Improve redundancy management:
  1897. * Add quick action on video miniature to mirror a specific video using the web interface
  1898. * Add admin dashboard to list remote and local redundancies
  1899. * Add ability for admins to define remote redundancies policy (accept/reject)
  1900. * :tada: Many responsive & UI improvements:
  1901. * Add maximized mode to markdown textarea ([@kimsible](https://github.com/kimsible))
  1902. * Detect and prevent sub menu overflow on small screens using a dropdown or a modal ([@rigelk](https://github.com/rigelk))
  1903. * Use a typeahead component for the search bar ([@rigelk](https://github.com/rigelk))
  1904. * Use a modal instead of a dropdown menu in small/mobile views ([@kimsible](https://github.com/kimsible))
  1905. * Improve display of accounts and channel pages on small and medium screens ([@rigelk](https://github.com/rigelk))
  1906. * Improve forms layout ([@rigelk](https://github.com/rigelk))
  1907. * Replace helpers icons with descriptions in admin configuration ([@rigelk](https://github.com/rigelk))
  1908. * Improve tables on mobile devices to prevent layout breakage ([@kimsible](https://github.com/kimsible))
  1909. * Fix multiple broken views on small screens ([@kimsible](https://github.com/kimsible))
  1910. * Make video add tabs scrollable on small devices ([@kimsible](https://github.com/kimsible))
  1911. * Better use of space and icons in the plugin administration interface ([@rigelk](https://github.com/rigelk))
  1912. * Restyle toast notifications to tone down colors ([@rigelk](https://github.com/rigelk))
  1913. * Add/move links at the bottom of the left menu ([@rigelk](https://github.com/rigelk))
  1914. * Improve avatar upload UI ([@rigelk](https://github.com/rigelk))
  1915. * Use progress bars for quota used in my account ([@rigelk](https://github.com/rigelk))
  1916. * Add variable pagination size to all tables ([@rigelk](https://github.com/rigelk))
  1917. * Add empty states to all tables ([@rigelk](https://github.com/rigelk))
  1918. * Add generic text filter to all admin tables ([@rigelk](https://github.com/rigelk))
  1919. * Fix `z-index` for tooltips, modals and their button to prevent overlaps ([@rigelk](https://github.com/rigelk))
  1920. * And many others!
  1921. * :tada: Improve video abuses admin table ([@rigelk](https://github.com/rigelk)):
  1922. * Add in-text specific search filters
  1923. * Reports can be linked to directly
  1924. * Rich reporter field
  1925. * Add video thumbnail with abuse count for the video and position of the abuse in that list
  1926. * Expand row to see more information about the video, the reporter and the reportee
  1927. * Add many actions (on the video, on the reporter)
  1928. * Don't remove a report when a video is deleted
  1929. * Add information on a video abuse within its notification email ([@rigelk](https://github.com/rigelk))
  1930. * Add ability for video owners to delete comments
  1931. * Add filter inputs for blacklisted videos and muted accounts/servers ([@rigelk](https://github.com/rigelk))
  1932. * Video import improvements:
  1933. * Support subtitles when importing a video ([@kimsible](https://github.com/kimsible))
  1934. * Generate thumbnail/preview from URL and inject them in the video edit form ([@kimsible](https://github.com/kimsible))
  1935. * Support `licence` and `language` fields
  1936. * Support audio file imports
  1937. * Support WMA and WAV audio files upload
  1938. * Support drag and drop for video upload/torrent import ([@rigelk](https://github.com/rigelk))
  1939. * Add video file metadata to download modal ([@rigelk](https://github.com/rigelk))
  1940. * Add views stats for channels ([@rigelk](https://github.com/rigelk))
  1941. * Add more information about the user in the edit form ([@rigelk](https://github.com/rigelk))
  1942. * Server optimizations:
  1943. * Add cache for some immutable models
  1944. * Don't refresh videos when processing a view
  1945. * Optimize view endpoint
  1946. * Completely rewritten SQL query to list videos
  1947. * Optimize SQL request when broadcasting an activity
  1948. * Support infinite scrolling in the discover page
  1949. * Add ability for admins to create a user without a password. PeerTube will send a reset password link to the user ([@JohnXLivingston](https://github.com/JohnXLivingston))
  1950. * Improve embed title background opacity
  1951. * Add origin instance URL in watch page
  1952. * Clearer description of advanced search options
  1953. * Always copy full actor handle in video channels view ([@rigelk](https://github.com/rigelk))
  1954. * Add `sendmail` support ([@immae](https://github.com/immae)) to `smtp` configuration
  1955. * Support `rel="me"` links in markdown
  1956. * Use `originallyPublishedAt` from body on import if it exists
  1957. * Sort outbox by *DESC createdAt* order
  1958. * Increase video comment max length limit
  1959. ### Bug fixes
  1960. * Update default user theme to `instance-default` (Jorge Silva)
  1961. * Fix user dropdown menu with long texts ([@rigelk](https://github.com/rigelk))
  1962. * Fix load more comments on infinite scroll ([@ipbc-dev](https://github.com/ipbc-dev))
  1963. * Fix CSP issue on WebFinger service ([@ZanyMonk](https://github.com/ZanyMonk))
  1964. * Fix federation with Pleroma
  1965. * Fix Safari and iOS video play
  1966. * Fix broken HLS player on old Edge
  1967. * Fix running HLS transcoding on existing HLS video
  1968. * Fix user role edition
  1969. * Fix video duration display
  1970. * Fix error when adding a video in a playlist that does not have a thumbnail
  1971. * Fix internal video display in playlists
  1972. * Fix add comment in threads with deleted comments
  1973. * Fix video codec in HLS playlist resulting in a broken video
  1974. * Fix torrent import on Windows
  1975. * Respect browser autoplay policy: don't autoplay videos in mute mode
  1976. * Fix playlist videos autoplay/next play ([@rigelk](https://github.com/rigelk))
  1977. * Fix admin table column invalid sort error
  1978. * Fix outbox crawling max page/timeout (when an admin follows an instance with many videos)
  1979. * Add CORS to ActivityPub routes
  1980. * Fix my video imports table display when a video gets deleted ([@rigelk](https://github.com/rigelk))
  1981. * Fix peertube/import scripts `comment-enabled`, `wait-transcoding` and `download-enabled` options
  1982. * Don't leak unlisted videos in comments feed
  1983. * Do not display deleted comments or muted accounts/instances in RSS feed
  1984. * Fix HLS audio only transcoding
  1985. * Fix playlist creation/update with a long description
  1986. * Fix links of same instance in video description
  1987. * Fix REPL script
  1988. * Fix broken client when cookies are disabled
  1989. * Fix upload button color in dark mode
  1990. * Explicit theme colors for inputs and textarea
  1991. * Fix input/textarea themes
  1992. * Fix action button icons theme
  1993. * Fix grey color theme
  1994. * Fix regression scrollbar bgcolor mdtextarea maximized-mode ([@kimsible](https://github.com/kimsible))
  1995. **since v2.2.0-rc.1**
  1996. ### Bug fixes
  1997. * Fix broken migration introduced in 2.2.0-rc.1 in docker
  1998. * Fix sort icons in tables
  1999. * Fix action button overflow in tables
  2000. * Fix broken client when cookies are disabled
  2001. * Fix upload button color in dark mode
  2002. * Explicit theme colors for inputs and textarea
  2003. * Fix input/textarea themes
  2004. * Fix dropdown menu overflow
  2005. * Fix notifications with dark theme
  2006. * Fix action button icons theme
  2007. * Fix grey color theme
  2008. * Fix regression scrollbar bgcolor mdtextarea maximized-mode ([@kimsible](https://github.com/kimsible))
  2009. * Fix broken emails
  2010. ## v2.1.1
  2011. ### Bug fixes
  2012. * Fix youtube-dl in docker image
  2013. * Fix playlist creation/update
  2014. * Fix fetch of instance config in client
  2015. * Manual approves followers only for the instance (and not accounts/channels)
  2016. * Fix avatar update
  2017. * Fix CSP for embeds
  2018. * Fix scroll of the menu on mobile
  2019. * Fix CPU usage of PostgreSQL
  2020. * Fix embed for iOS
  2021. ## v2.1.0
  2022. **Since v2.0.0**
  2023. ### IMPORTANT NOTES
  2024. * **/!\ VERY IMPORTANT /!\\** You need to execute manually a script (can be executed after your upgrade, while your PeerTube instance is running) to create HLS video torrents:
  2025. * `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-2.1.js`
  2026. * **/!\ VERY IMPORTANT /!\\** In the next PeerTube release (v2.2.0), we'll add a unique index on actors usernames to fix some federation bugs.
  2027. Please check now if you have conflicts using:
  2028. * Go inside your database using `sudo -u postgres psql peertube_prod` and run `select "preferredUsername" from actor where "serverId" is null group by "preferredUsername" having count(*) > 1;`
  2029. * If you have some results, it seems you have duplicate channels/accounts.
  2030. For every entry, you'll have to change the preferredUsername of the entry you want (so they are unique).
  2031. The updated actors could have some federations issues
  2032. * We now use Buster for the docker image, so the image name changed:
  2033. * `production-stretch` becomes `production-buster`
  2034. * `v2.x.x-stretch` becomes `v2.x.x-buster`
  2035. * Users cannot create more than 20 channels now to avoid UX and actor name squatting issues
  2036. * We added a warning if the `videos` directory is the same than the `redundancy` one in your configuration file: it can create some bugs
  2037. ### Documentation
  2038. We added some sections in the documentation website:
  2039. * S3 remote storage: https://docs.joinpeertube.org/admin/remote-storage
  2040. * Instances redundancy: https://docs.joinpeertube.org/admin/following-instances
  2041. * Moderate your instance: https://docs.joinpeertube.org/admin/moderation
  2042. * Customize your instance (install plugins & themes): https://docs.joinpeertube.org/admin/customize-instance
  2043. * PeerTube logs (standard log/audit log): https://docs.joinpeertube.org/admin/logs
  2044. * Mute accounts/instances: https://docs.joinpeertube.org/use/mute
  2045. * Controlled player embed API: https://docs.joinpeertube.org/api/embed-player
  2046. ### Docker
  2047. * Sticking to one env-var management system ([@Leopere](https://github.com/Leopere)) (See https://github.com/Chocobozzz/PeerTube/pull/2247)
  2048. * Simplify Dockerfile and slim Docker image ([@Nutomic](https://github.com/nutomic))
  2049. * Add HLS support in Docker container by using the latest Debian stable (Buster) image
  2050. ### Plugins/Themes API
  2051. * Add checkbox and textarea as possible input types for settings ([@rigelk](https://github.com/rigelk))
  2052. * Add `isLoggedIn` helper to client plugins ([@rigelk](https://github.com/rigelk))
  2053. * Add client plugin hooks:
  2054. * `action:video-watch.player.loaded` with player instance
  2055. * `action:video-watch.video.loaded` with a videojs instance
  2056. * `action:signup.register.init` ([@rigelk](https://github.com/rigelk))
  2057. * `filter:api.signup.registration.create.params` ([@rigelk](https://github.com/rigelk))
  2058. * `filter:internal.video-watch.player.build-options.params`
  2059. * `filter:internal.video-watch.player.build-options.result`
  2060. * `filter:internal.common.svg-icons.get-content.params`
  2061. * `filter:internal.common.svg-icons.get-content.result`
  2062. * Add server plugins hooks:
  2063. * `action:api.user.blocked`
  2064. * `action:api.user.unblocked`
  2065. * `action:api.user.registered`
  2066. * `action:api.user.created`
  2067. * `action:api.user.deleted`
  2068. * `action:api.user.updated`
  2069. * `action:api.user.oauth2-got-token`
  2070. * Accept `.` `_` and `0-9` characters in plugin names
  2071. ### Maintenance
  2072. * PeerTube moved translations from Zanata to Weblate. Here is the new translations website URL: https://weblate.framasoft.org/projects/peertube/
  2073. * We now provide a JavaScript library to control a PeerTube embed: https://www.npmjs.com/package/@peertube/embed-api
  2074. * Add ability to generate HLS videos using `create-transcoding-job` script (see [the documentation](https://docs.joinpeertube.org/maintain/tools#create-transcoding-jobjs))
  2075. * Update nginx template: (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
  2076. * Add streaming playlists endpoint
  2077. * Add `client_body_temp_path` hint
  2078. * Relax TLS/SSL ciphers hardening to allow Android 4.4.2 to use the PeerTube instance API
  2079. * Add `maxFileSize`, `maxFiles` and `anonymizeIP` log options in configuration file
  2080. ### Features
  2081. * :tada: Add *internal* video privacy mode. *Internal* videos are only available to other logged in users of your instance, and are not federated
  2082. * :tada: Add hyperlink video timestamps in comments & video descriptions ([@Lesterpig](https://github.com/lesterpig) & [@rigelk](https://github.com/rigelk))
  2083. * :tada: Comments improvements:
  2084. * Support basic markdown
  2085. * Soft delete video comments instead of destroying them ([@alcalyn](https://github.com/alcalyn))
  2086. * Add commentator name alongside fid for video comments ([@rigelk](https://github.com/rigelk))
  2087. * Add a cancel button in comment form ([@rigelk](https://github.com/rigelk))
  2088. * Show number of comments under a video in watch page ([@rigelk](https://github.com/rigelk))
  2089. * Add user moderation dropdown ([@rigelk](https://github.com/rigelk))
  2090. * Add ability to sort comments by *total replies* or *created date* ([@rigelk](https://github.com/rigelk))
  2091. * Add *total replies from video author* indicator ([@rigelk](https://github.com/rigelk))
  2092. * Comment name emphasis for video author ([@rigelk](https://github.com/rigelk))
  2093. * Add "Watch later" button in video miniature overlay ([@rigelk](https://github.com/rigelk))
  2094. * Add ability to transcode videos in an audio only video container ([@Yetangitu](https://github.com/Yetangitu))
  2095. * Add playlist search input in *add to playlist* dropdown ([@rigelk](https://github.com/rigelk))
  2096. * Add search bars for a user's videos and playlists ([@rigelk](https://github.com/rigelk))
  2097. * Support playlists in share modal
  2098. * Better UI for a better world:
  2099. * Add play/pause bezels to the video player ([@rigelk](https://github.com/rigelk))
  2100. * Use icons instead of buttons in watch page (like/dislike, support...) ([@rigelk](https://github.com/rigelk))
  2101. * Improve *PeerTube* section in About page and add links to the documentation
  2102. * Improve comment tree in Watch page
  2103. * Improve dropdown box shadow ([@rigelk](https://github.com/rigelk))
  2104. * Add channel avatar to watch view ([@rigelk](https://github.com/rigelk))
  2105. * Improve likes-dislikes bar usability
  2106. * Alter titles section header style ([@rigelk](https://github.com/rigelk))
  2107. * Enhance jobs list display on smaller screens ([@alcalyn](https://github.com/alcalyn))
  2108. * Add a button in the videos from subscriptions page to manage subscriptions ([@rigelk](https://github.com/rigelk))
  2109. * Add duration to video attributes in watch view ([@rigelk](https://github.com/rigelk))
  2110. * Add a message in the login form when signup is disabled for people that are looking for an account ([@rigelk](https://github.com/rigelk))
  2111. * Add "Manage" button in owned account and channels pages ([@rigelk](https://github.com/rigelk))
  2112. * Improve password input accessibility ([@rigelk](https://github.com/rigelk))
  2113. * Add descriptions in moderation dropdown ([@rigelk](https://github.com/rigelk))
  2114. * Performances improvements:
  2115. * Lazy load categories, licences, languages and video/playlist privacies in the client
  2116. * Only update remote actor avatar if the filename changed
  2117. * Optimize transcoding by using the lowest resolution as input file
  2118. * Speedup embed first paint
  2119. * Optimize videos list SQL query
  2120. * Optimize local videos list SQL query
  2121. * Cache `peertube` instance actor SQL result
  2122. * Cache HLS/WebTorrent InfoHash SQL result
  2123. * Optimize notification endpoint on specific cases
  2124. * Optimize "list my playlists" SQL query
  2125. * Improve search filters: ([@rigelk](https://github.com/rigelk))
  2126. * Add ability to sort results
  2127. * Improve tags filter inputs
  2128. * Add a button to reset filters
  2129. * Improve autoplay: ([@rigelk](https://github.com/rigelk))
  2130. * Autoplay next video switch for both user and visitors
  2131. * Add *up next* screen on autoplay
  2132. * Autoplay next video support for playlists
  2133. * Add *next* video button to the player
  2134. * Add loop setting when watching a playlist
  2135. * Add option to download subtitles in download modal ([@rigelk](https://github.com/rigelk))
  2136. * Add a button in account page to follow all account channels ([@rigelk](https://github.com/rigelk))
  2137. * Add ability to search a video directly by its UUID
  2138. * Case insensitive tags search
  2139. * Add ability to disable WebTorrent (and only enable HLS) (**experimental and breaks federation with PeerTube instances < 2.1**)
  2140. * Don't seed if the client is on a cellular network in the HLS player
  2141. * Load HLS player in embed by default if enabled
  2142. * Admin panels:
  2143. * Add ability to sort by *state*, *score* and *redundancy allowed* columns in following/followers admin table
  2144. * Add ability to filter per job type in admin
  2145. * Add *Audit logs* section in admin Logs panel
  2146. * Improve Media-RSS support ([@rigelk](https://github.com/rigelk))
  2147. * Explicit the tag limit in video form ([@bikepunk](https://github.com/bikepunk))
  2148. * Add a warning when uploading videos using root
  2149. * Clearer video quota label in user settings
  2150. * Pause the video when the user opens a modal
  2151. * Handle basic HTML in account descriptions
  2152. * Support `m4v` videos
  2153. * Improve 4k resolution bitrate
  2154. * Add missing hotkeys documentation in the watch page
  2155. * Add a button to copy the channel handle ([@rigelk](https://github.com/rigelk))
  2156. * Add server config to the nodeinfo metadata ([@rigelk](https://github.com/rigelk))
  2157. * Improve notification popup interactivity ([@rigelk](https://github.com/rigelk))
  2158. ### Bug fixes
  2159. * Don't notify if the account in on a muted instance
  2160. * Don't leak other notified addresses in notification emails
  2161. * Allow the embed iframe to open links
  2162. * Add missing button roles for the language chooser and keyboard shortcut menu items [@MarcoZehe](https://github.com/MarcoZehe)
  2163. * Fix overflow when creating a channel
  2164. * Fix "copy magnet URI" in player
  2165. * Fix text overflow in menu
  2166. * Fix player focus
  2167. * Only display accepted followers/followings instances in about page
  2168. * Fix brackets truncation in video description
  2169. * Fix channel playlist miniatures overflow
  2170. * Fix background color on some screens
  2171. * Fix captions upload issue depending on the caption name
  2172. * Fix file download when the video is private
  2173. * Fix dropdown on video miniature for unlogged users
  2174. * Fix video support field in update form
  2175. * Fix video import having a long thumbnail url (Facebook for example)
  2176. * Add correct HTTP status on not found video
  2177. * Fix bug on login when username has a special character (`_` for example)
  2178. * Fix plugin unregistration that did not remove properly its hooks ([@JohnXLivingston](https://github.com/JohnXLivingston))
  2179. * Fix wrong audio only resolution label for hls
  2180. * Fix AP icon URL for imported videos
  2181. * Fix octet stream fallback for video ext
  2182. **since v2.1.0-rc.1**
  2183. ### Bug fixes
  2184. * Fix wrong audio only resolution label for hls
  2185. * Fix AP icon URL for imported videos
  2186. * Fix embed on mastodon
  2187. * Fix octet stream fallback for video ext
  2188. ## v2.0.0
  2189. **Since v1.4.1**
  2190. ### IMPORTANT NOTES
  2191. * Removed old JSON LD signature implementation. There will be some **federation incompatibilities** with forwarded activities sent
  2192. by PeerTube instances < v2.0.0
  2193. * Replaced configuration key `email.object` with `email.subject`: https://github.com/Chocobozzz/PeerTube/commit/916937d7daf386e4e2d37b2ca22db07b644b02df
  2194. ### Plugins/Themes API
  2195. * Add plugin hook on registration `filter:api.user.signup.allowed.result`
  2196. ### Docker
  2197. * Fix traefik version docker compose (**you need to update your `docker-compose.yml` file**: https://github.com/Chocobozzz/PeerTube/commit/f1b38883922fd59b36f093e44a5091e090d20862)
  2198. ### Maintenance
  2199. * Add `--tmpdir`, `--first`, `--last` and `--verbose [level]` parameters to peertube-import-videos script ([@Yetangitu](https://github.com/Yetangitu))
  2200. * Improve REST API documentation ([@frankstrater](https://github.com/frankstrater))
  2201. * Improve plugin management documentation
  2202. ### Features
  2203. * Better instance admin responsibility:
  2204. * Add ability to set more information about your instance. This will be used in the future on https://joinpeertube.org to help people find
  2205. the appropriate PeerTube instance on which they can register:
  2206. * Main **Categories**
  2207. * **Languages** you/your moderators speak
  2208. * **Code of Conduct**
  2209. * **Moderation information** (who moderates your instance, NSFW policy etc)
  2210. * Who is **behind the instance** (a single person? non-profit?)
  2211. * Why did the admin **create this instance**
  2212. * How long the admin plan to **maintain the instance**
  2213. * How the administrator **will finance** the PeerTube server
  2214. * **Hardware** information
  2215. * Add these information in the about page and in the signup page
  2216. * Add a welcome modal at first admin login with some explanations of PeerTube and some useful links
  2217. * Add warning modal when administrators enable or enabled signup but did not fill some important instance information
  2218. (for now the instance **name**, **terms**, **administrator** and **maintenance lifetime** information)
  2219. * Add ability to automatically follow back other instances
  2220. * Add ability to automatically follow [the public registry](https://instances.joinpeertube.org/) instances
  2221. * Add *Most liked videos* page ([@alcalyn](https://github.com/alcalyn))
  2222. * Add a drag&drop delay on playlist videos to allow user scroll on small screens ([@alcalyn](https://github.com/alcalyn))
  2223. * Allow to toggle video publication date to display absolute date ([@alcalyn](https://github.com/alcalyn))
  2224. * Add statistics in about page ([@alcalyn](https://github.com/alcalyn))
  2225. * Improve the *feature table* in about page
  2226. * Add contributors in about page
  2227. * Clearer warning of IP address leaking on embedded videos ([@robinkooli](https://github.com/robinkooli))
  2228. * Case insensitive search on video tags
  2229. * Add video name in "video publish notification"
  2230. * Add ability to autoplay next recommended video (opt in) ([@LoveIsGrief](https://github.com/LoveIsGrief))
  2231. * Add link behind the subscribe via RSS button ([@frankstrater](https://github.com/frankstrater))
  2232. * Support text/plain caption files
  2233. * Speedup theme injection
  2234. * Add ability to enable HLS in the admin panel
  2235. ### Bug fixes
  2236. * Fix audio upload
  2237. * Handle video reports from mastodon
  2238. * Fix videos redundancy exceeding the limit
  2239. * Fix search when user defined video languages in their preferences
  2240. * Don't quick transcode with the wrong pixel format
  2241. * Hide videos abuses of muted accounts
  2242. * Fix account avatar widths
  2243. * Fix default `commentsEnabled` and `downloadEnabled` values on video upload/import ([@frankstrater](https://github.com/frankstrater))
  2244. * Disable auto complete of email field when editing another user information in admin panel ([@Knackie](https://github.com/Knackie))
  2245. * Fix federation issues with some actors (that have long descriptions, or missing optional AP fields)
  2246. * Remove down redundancy endpoints in HLS player
  2247. * Fix user notifications with multiple opened tabs
  2248. * Replace "overview" by "discover" in webpage titles
  2249. * Clearer IP debug message in admin panel
  2250. * Fix checkbox styles when using a theme
  2251. * Don't redirect on verify account page after login
  2252. * Fix player captions menu after choosing a subtitle
  2253. * Fix CLI scripts with URLs ending with a `/`
  2254. * Fix `--since` and `--until` timezone in `peertube-import-videos` script
  2255. * Avoid circular error in logger
  2256. * Fix start/stop of first element when loading a playlist
  2257. ***Since v2.0.0-rc.1***
  2258. ### Features
  2259. * Improve welcome/warning modals
  2260. * Add ability to enable HLS in the admin panel
  2261. ### Bug fixes
  2262. * Fix auto index follow
  2263. * Fix CLI scripts with URLs ending with a `/`
  2264. * Fix `--since` and `--until` timezone in `peertube-import-videos` script ([@fflorent](https://github.com/fflorent))
  2265. * Avoid circular error in logger
  2266. * Fix start/stop of first element when loading a playlist
  2267. ## v1.4.1
  2268. ### Bug fixes
  2269. * Fix too fast redundancy eviction
  2270. * Fix broken auto blacklist page
  2271. * Rename signup steps
  2272. * Fix menu x overflow
  2273. ## v1.4.0
  2274. **Since v1.3.1**
  2275. ### IMPORTANT NOTES
  2276. * **Important:** Add `plugins` directory in configuration file. **You should configure it in your production.yaml**
  2277. * **Important:** Deprecate NodeJS 8 (support ends on [December 2019](https://github.com/nodejs/Release#release-schedule)). Please upgrade to NodeJS 10.
  2278. * **Important:** Updated nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
  2279. * Fix long server responses on dual stack servers: https://github.com/Chocobozzz/PeerTube/commit/fd2ddcae8ff4eb10bf7168ac3c8801f06b37627f
  2280. * Improve images HTTP cache: https://github.com/Chocobozzz/PeerTube/commit/c928e1364fbdff87f27fd982710b95426a250491
  2281. * **Important:** With the new theme system, we removed the dark mode button. Your administrator has to install [the dark theme](https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-theme-dark)
  2282. from their admin panel, and then users can choose this theme in their settings
  2283. * Changed the playlist REST API to fix various issues. See https://github.com/Chocobozzz/PeerTube/pull/1998 for more information
  2284. * Removed magnet URI support in download modal since most of the BitTorrent clients do not understand the `xs` parameter
  2285. * Renamed `Overview` page to `Discover`
  2286. ### Security
  2287. * Moderators can only create and update regular users (thanks GGC-Project)
  2288. ### Maintenance
  2289. * Create a dedicated `package.json` for CLI tools to reduce server dependencies size
  2290. * Add ability to set root password by environment at first start ([@darnuria](https://github.com/darnuria))
  2291. * Removed unused `uuid` actor field (we already have a unique identifier that is the `preferredUsername`)
  2292. * Add ability to disable PeerTube log rotation ([@NassimBounouas](https://github.com/NassimBounouas))
  2293. * Speedup font display ([@BO41](https://github.com/BO41))
  2294. * Improve static files HTTP cache
  2295. * Add `--since` and `--until` parameters to import videos script to easily sync external channels ([@fflorent](https://github.com/fflorent))
  2296. * Optimize `/watch/:uuid` endpoint
  2297. * Optimize Sequelize (SQL ORM) queries generation (consumes less CPU)
  2298. * Prune script is faster and can prune avatar files
  2299. ### Features
  2300. * :tada: Support Finnish, Greek and Scottish Gaelic languages
  2301. * :tada: Add basic plugins and themes support (**beta**): https://docs.joinpeertube.org/contribute/plugins
  2302. * Install plugins or themes from the administration panel
  2303. * Choose a default theme for your instance
  2304. * Users can choose the theme they want among the list of themes their administrator installed
  2305. * :tada: Add ability to upload audio files: PeerTube will merge the audio file and the thumbnail to create a video
  2306. * Multi step registration:
  2307. * Add ability for new users to create their default channel
  2308. * Guess the account username/channel username according to their display name
  2309. * Add explanations about what the purpose of a username/channel name is, and what a channel is
  2310. * Improve account video channels page:
  2311. * Set it as the default page for the account page in order to avoid confusion between the account homepage and the video channel homepage
  2312. * Display channels in rows with some of their videos
  2313. * Support more URL parameters in embeds: `muted`, `loop`, `peertubeLink`
  2314. * Redesign share modal and add customizations:
  2315. * Start/stop at a specific timestamp
  2316. * Automatically play/mute/loop the video
  2317. * Set a specific subtitle by default
  2318. * Group subscriptions and recently added videos in chronological order
  2319. * Add ability for users to change their email address
  2320. * Add ability to update the support field of all channel videos when we update the channel support field
  2321. * Add a language filter in user preferences to display only videos in specific languages
  2322. * Add instance follows list in a dedicated tab in the "About" page
  2323. * Add ability to set to private a public/unlisted video or video playlist
  2324. * Transcode in the `tmp` directory for s3fs compatibility ([@libertysoft3](https://github.com/libertysoft3))
  2325. * Add a button to copy account username ([@NassimBounouas](https://github.com/NassimBounouas))
  2326. * Redirect to "Local videos" page when going to the `peertube` account page
  2327. * Rearrange search filter options ([@realityfabric](https://github.com/realityfabric))
  2328. * Close modal after clicking on download ([@LeoMouyna](https://github.com/LeoMouyna))
  2329. * Add ability for admins to customize emails object prefix and body signature ([@yohanboniface](https://github.com/yohanboniface))
  2330. * Support 4K transcoding
  2331. * Add link of the follower profile in administration ([@NassimBounouas](https://github.com/NassimBounouas))
  2332. * Add subject field in contact form ([@NassimBounouas](https://github.com/NassimBounouas))
  2333. * Add rate limit to registration and API endpoints
  2334. * Add "video quota used" sortable column in user admin list ([@darnuria](https://github.com/darnuria))
  2335. * Automatically update the playlist thumbnail according to the video at the first position (if the user did not set a specific thumbnail)
  2336. * Automatically remove dead followings
  2337. * Federate comment deletion if the comment was deleted by the video owner
  2338. ### Bug fixes
  2339. * Fix transcoding information in features table ([LiPek](https://github.com/LiPeK))
  2340. * Fix tools auth with remote instances
  2341. * Fix various issues in upload/import scripts
  2342. * Fix redundancy exceeded quota
  2343. * Fix login with email ([@NassimBounouas](https://github.com/NassimBounouas))
  2344. * Fix quota display in features table
  2345. * Fix transcoding help placement
  2346. * Fix invisible videos in playlists
  2347. * Fix HLS transcoding in lower resolutions
  2348. * Fix various federation issues
  2349. * Fix mute badge labels
  2350. * Fix broken follow notification when the actor is deleted
  2351. * Fix overflow and playlist block width in the watch page
  2352. * Fix search results overflow on mobile
  2353. * Fix infinite scroll on big screens
  2354. * Fix start time on some HLS videos
  2355. * Fix socket notification with multiple user tabs
  2356. * Fix redundancy if the instance has already the file on disk
  2357. * Fix image and plugin CSP
  2358. * Fix video rows overflow
  2359. * Dismiss modals on pop state
  2360. * Go back when cancel NSFW modal
  2361. ***Since v1.4.0-rc.1***
  2362. ### Features
  2363. * Add Finnish language support
  2364. ### Bug fixes
  2365. * Fix broken front end on Firefox ESR (60)
  2366. * Fix prune storage script when using a same directory for multiple storage keys
  2367. * Relax plugin `package.json` validation
  2368. * Replace "overview" by "discover" in client titles
  2369. * Change configuration: `email.object` becomes `email.subject`
  2370. * Fix user creation by moderators
  2371. * Fix video playlist element removal
  2372. * Fix plugin card background color with dark theme
  2373. * Fix lazy static route with unknown avatars (404 instead of 500)
  2374. * Fix socket notification with multiple user tabs
  2375. * Fix redundancy if the instance has already the file on disk
  2376. * Fix image and plugin CSP
  2377. * Fix video rows overflow
  2378. * Dismiss modals on pop state
  2379. * Go back when cancel NSFW modal
  2380. ## v1.3.1
  2381. ### Bug fixes
  2382. * Fix Mastodon remote interactions
  2383. * Fix missing video download button
  2384. * Fix error in video upload/update form when scheduling publication
  2385. * Fix black theme on some pages
  2386. * Fix video import if auto blacklist is enabled
  2387. ## v1.3.0
  2388. **Since v1.2.0**
  2389. ### IMPORTANT NOTES
  2390. * **nginx** Remove `text/html` from `gzip_types`: https://github.com/Chocobozzz/PeerTube/commit/7eeb6a0ba4028d0e20847b846332dd0b7747c7f8 [@bnjbvr](https://github.com/bnjbvr)
  2391. * Add `streaming_playlists` directory in configuration file. **You should configure it in your production.yaml**
  2392. * CSP configuration changed: it's now in a [dedicated section](https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L110)
  2393. ### Maintenance
  2394. * Add GitPod support ([@jankeromnes](https://github.com/jankeromnes)) that could help people to contribute on PeerTube: https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#online-development
  2395. * Add reminder to restart PeerTube in upgrade script ([@ldidry](https://github.com/ldidry))
  2396. * Add argument to dockerfile to pass options to npm run build ([@NaPs](https://github.com/NaPs))
  2397. * Add `NOCLIENT` env support to only install server dependencies. Example: `NOCLIENT=true yarn install --pure-lockfile` ([@rigelk](https://github.com/rigelk))
  2398. ### Docker
  2399. * **Important:**: Add host network mode to the reverse proxy section (without this, it could break videos views and P2P: https://github.com/Chocobozzz/PeerTube/issues/1643#issuecomment-464789666)
  2400. * **Important:**: Add a network section to [docker-compose.yml template](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml)
  2401. and update your [.env](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/.env#L8) to fix IP forwarding issue ([@Nutomic](https://github.com/nutomic))
  2402. * Fix SMTP default configuration ([@Nutomic](https://github.com/nutomic))
  2403. ### Features
  2404. * Add video playlist support
  2405. * A user has a default `Watch-later` playlist
  2406. * A user can create private, unlisted or public playlists
  2407. * An element in this playlist can start or stop at specific timestamps (you can create some kind of zapping for example)
  2408. * The difference with a channel is that you cannot subscribe to a playlist, but you can add videos from any other user in your playlist.
  2409. It's useful to organize your videos, or create a playlist of videos you like and share the link on the web etc
  2410. * Add quarantine videos (auto blacklist videos on upload) feature :tada: ([@joshmorel](https://github.com/joshmorel))
  2411. * Add Japanese & Nederlands & Português (Portugal) support
  2412. * Add experimental HLS support
  2413. * Better playback
  2414. * Better bandwidth management (for both client & server)
  2415. * Needs to store another video file per resolution, so enabling this option multiplies the videos storage by 2 (only new uploaded videos, this is not retroactive)
  2416. * Requires ffmpeg >= 4
  2417. * Better instance's followers management:
  2418. * Add ability to remove an instance's follower
  2419. * Add ability to forbid all new instance's followers
  2420. * Add ability to manually approve new instance's followers
  2421. * Add notification on new instance's follower
  2422. * Improve UI:
  2423. * Increase player default height
  2424. * Reduce big play button border width
  2425. * Increase thumbnail sizes
  2426. * Add hover effect on video miniature
  2427. * Add "my library" section in menu
  2428. * Add missing icons in some buttons/dropdown
  2429. * 2 rows per overview section
  2430. * Increase video thumbnail blur ([@Zig-03](https://github.com/Zig-03))
  2431. * Improve video miniatures list on mobile
  2432. * Add animation when opening user notifications
  2433. * Add ability for admins to disable the tracker (and so the P2P aspect of PeerTube, in order to improve users privacy for example)
  2434. * Add original publication date attribute to videos, and add ability to filter on it (Andrés Maldonado)
  2435. * Add video miniature dropdown
  2436. * Add ability for admins to declare their instance as dedicated to NSFW content
  2437. * Improve SEO (there is still work to be done)
  2438. * Login is now case insensitive (if using official web client)
  2439. * Add NSFW policy & users signup policy & auto blacklist strategy in features table in about page
  2440. * Improve comment deletion warning
  2441. * Restore videos list component on history back
  2442. * Add ability to consult server logs in admin
  2443. * Allow administrators to change/reset a user's password ([@rigelk](https://github.com/rigelk))
  2444. * Add a debug page to help admins to fix IP configuration issues
  2445. * Add ability for admins to limit users videos history size
  2446. * Add ability for admins to delete old remote videos views (reduce database size)
  2447. * Optimize video update page load
  2448. * Less refresh jobs
  2449. * Cleanup invalid AP rates/comments/shares
  2450. * Better videos redundancy config error handling
  2451. * Check emails are enabled if the admin requires email verification ([@joshmorel](https://github.com/joshmorel))
  2452. * Add `Add /accounts/:username/ratings endpoint` ([@yohanboniface](https://github.com/yohanboniface))
  2453. * Allow to control API rates limit from configuration ([@yohanboniface](https://github.com/yohanboniface))
  2454. ### Bug fixes
  2455. * Don't notify prior to scheduled update ([@joshmorel](https://github.com/joshmorel))
  2456. * Fix account description database error
  2457. * Fix Pleroma follow
  2458. * Fix greek label
  2459. * Fix email notification for some users
  2460. * Fix translation of "Copy magnet URI"
  2461. * Fix negative seconds by displaying 0 instead [@zacharystenger](https://github.com/zacharystenger)
  2462. * Fix URL in video import notification
  2463. * Don't close help popover when clicking on it
  2464. * Fix `tmp` directory cleanup
  2465. * Fix custom CSS help
  2466. * Fix JSONLD context
  2467. * Fix privacy label display in upload form
  2468. * Fix my account settings responsiveness
  2469. * Fix keyboard icon transparency ([@gbip](https://github.com/gbip))
  2470. * Fix contact admin button overflow
  2471. * Wait config to be loaded before loading login/signup
  2472. * Privacy is optional in upload API endpoint
  2473. * Fix hotkeys help popup overflow
  2474. ***Since v1.3.0-rc.2***
  2475. ### Bug fixes
  2476. * Fix duplicates in playlist add component
  2477. * Fix crash in files cache
  2478. * Fix playlist view/update 403
  2479. * Fix search with bad webfinger handles
  2480. ## v1.2.1
  2481. ### Bug fixes
  2482. * **Important:** Fix invalid `From` email header in contact form that could lead to the blacklisting of your SMTP server
  2483. * Fix too long display name overflow in menu
  2484. * Fix mention notification when a remote account mention a local account that has the same username than yours
  2485. * Fix access to muted servers table for moderators
  2486. * Don't crash notification popup on bug
  2487. * Fix reset password script that leaks password on invalid value
  2488. ## v1.2.0
  2489. ### BREAKING CHANGES
  2490. * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
  2491. * **Docker:** Check you have all the storage fields in your `/config/production.yaml` file: https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/config/production.yaml#L34
  2492. * **nginx:** Add redundancy endpoint in static file. **You should add it in your nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx**
  2493. * **nginx:** Add socket io endpoint. **You should add it in your nginx configuration: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx**
  2494. * Moderators can manage users now (add/delete/update/block)
  2495. * Add `tmp` and `redundancy` directories in configuration file. **You should configure them in your production.yaml**
  2496. ### Maintenance
  2497. * Check free storage before upgrading in upgrade script ([@Nutomic](https://github.com/nutomic))
  2498. * Explain that PeerTube must be stopped in prune storage script
  2499. * Add some security directives in the systemd unit configuration file ([@rigelk](https://github.com/rigelk) & [@mkoppmann](https://github.com/mkoppmann))
  2500. * Update FreeBSD startup script ([@gegeweb](https://github.com/gegeweb))
  2501. ### Docker
  2502. * Patch docker entrypoint to speed up the chown at startup ([LecygneNoir](https://github.com/LecygneNoir))
  2503. ### Features
  2504. * Add Russian, Polish and Italian languages
  2505. * Add user notifications:
  2506. * Notification types:
  2507. * Comment on my video
  2508. * New video from my subscriptions
  2509. * New video abuses (for moderators)
  2510. * Blacklist/Unblacklist on my video
  2511. * Video import finished (error or success)
  2512. * Pending video published (after transcoding or a scheduled update)
  2513. * My account or one of my channel has a new follower
  2514. * Someone (except muted accounts) mentioned me in comments
  2515. * A user registered on the instance (for moderators)
  2516. * Notification actions:
  2517. * Add a web notification
  2518. * Send an english email
  2519. * Add contact form in about page (**enabled by default**)
  2520. * Add ability to unfederate a local video in blacklist modal (**checkbox checked by default**)
  2521. * Support additional video extensions if transcoding is enabled (**enabled by default**)
  2522. * Redirect to the last url on login
  2523. * Add ability to automatically set the video caption in URL. Example: https://peertube2.cpy.re/videos/watch/9c9de5e8-0a1e-484a-b099-e80766180a6d?subtitle=ru
  2524. * Automatically enable the last selected caption when watching a video
  2525. * Add ability to disable, clear and list user videos history
  2526. * Add a button to help to translate peertube
  2527. * Add text in the report modal to explain to whom the report will be sent
  2528. * Open my account menu entries on hover
  2529. * Explain what features are enabled on the instance in the about page
  2530. * Add an error message in the forgot password modal if the instance email system is not configured
  2531. * Add sitemap
  2532. * Add well known url to change password ([@rigelk](https://github.com/rigelk))
  2533. * Remove 8GB video upload limit on client side. There may still be such limit depending on the reverse proxy configuration ([@scanlime](https://github.com/scanlime))
  2534. * Add CSP ([@rigelk](https://github.com/rigelk) & [@Nutomic](https://github.com/nutomic))
  2535. * Update title and description HTML tags when rendering video HTML page
  2536. * Add webfinger support for remote follows ([@acid-chicken](https://github.com/acid-chicken))
  2537. * Add tooltip to explain how the trending algorithm works ([@auberanger](https://github.com/auberanger))
  2538. * Warn users when they want to delete a channel because they will not be able to create another channel with the same name
  2539. * Warn users when they leave the video upload/update (on page refresh/tab close)
  2540. * Set max user name, user display name, channel name and channel display name lengths to 50 characters ([@McFlat](https://github.com/mcflat))
  2541. * Increase video abuse length to 3000 characters
  2542. * Add totalLocalVideoFilesSize in the stats endpoint
  2543. ### Bug fixes
  2544. * Fix the addition of captions to a video
  2545. * Fix federation of some videos
  2546. * Fix NSFW blur on search
  2547. * Add error message when trying to upload .ass subtitles
  2548. * Fix default homepage in the progressive web application
  2549. * Don't crash on queue error
  2550. * Fix EXDEV errors if you have multiple mount points
  2551. * Fix broken audio in transcoding with some videos
  2552. * Fix crash on getVideoFileStream issue
  2553. * Fix followers search
  2554. * Remove trailing `/` in CLI import script ([@HesioZ](https://github.com/HesioZ/))
  2555. * Use origin video url in canonical tag
  2556. * Fix captions in HTTP fallback
  2557. * Automatically refresh remote actors to fix deleted remote actors that are still displayed on some instances
  2558. * Add missing translations in video embed page
  2559. * Fix some styling issues in dark mode
  2560. * Fix transcoding issues with some videos
  2561. * Fix Mac OS mkv/avi upload
  2562. * Fix menu overflow on mobile
  2563. * Fix ownership button icons ([@joshmorel](https://github.com/joshmorel))
  2564. ## v1.1.0
  2565. ***Since v1.0.1***
  2566. ### BREAKING CHANGES
  2567. * **Docker:** `PEERTUBE_TRUST_PROXY` env variable is now an array ([LecygneNoir](https://github.com/LecygneNoir))
  2568. ### Maintenance
  2569. * Improve REST API documentation ([@rigelk](https://github.com/rigelk))
  2570. * Add basic ActivityPub documentation ([@rigelk](https://github.com/rigelk))
  2571. * Add CLI option to run PeerTube without client ([@rigelk](https://github.com/rigelk))
  2572. * Add manpage to peertube CLI ([@rigelk](https://github.com/rigelk))
  2573. * Make backups of files in optimize-old-videos script ([@Nutomic](https://github.com/nutomic))
  2574. * Allow peertube-import-videos.ts CLI script to run concurrently ([@McFlat](https://github.com/mcflat))
  2575. ### Scripts
  2576. * Use DB information from config/production.yaml in upgrade script ([@ldidry](https://github.com/ldidry))
  2577. * Add REPL script ([@McFlat](https://github.com/mcflat))
  2578. ### Docker
  2579. * Add search and import settings env settings env variables ([@kaiyou](https://github.com/kaiyou))
  2580. * Add docker dev image ([@am97](https://github.com/am97))
  2581. * Improve docker compose template ([@Nutomic](https://github.com/nutomic))
  2582. * Add postfix image
  2583. * Redirect HTTP -> HTTPS
  2584. * Disable Træfik web UI
  2585. ### Features
  2586. * Automatically resume videos if the user is logged in
  2587. * Hide automatically the menu when the window is resized ([@BO41](https://github.com/BO41))
  2588. * Remove confirm modal for JavaScript/CSS injection ([@scanlime](https://github.com/scanlime))
  2589. * Set bitrate limits for transcoding ([@Nutomic](https://github.com/nutomic))
  2590. * Add moderation tools in the account page
  2591. * Add bulk actions in users table (Delete/Ban for now)
  2592. * Add search filter in admin users table
  2593. * Add search filter in admin following
  2594. * Add search filter in admin followers
  2595. * Add ability to list all local videos
  2596. * Add ability for users to mute an account or an instance
  2597. * Add ability for administrators to mute an account or an instance
  2598. * Rename "News" category to "News & Politics" ([@daker](https://github.com/daker))
  2599. * Add explicit error message when changing video ownership ([@lucas-dclrcq](https://github.com/lucas-dclrcq))
  2600. * Improve description of the HTTP video import feature ([@rigelk](https://github.com/rigelk))
  2601. * Set shorter keyframe interval for transcoding (2 seconds) ([@Nutomic](https://github.com/nutomic))
  2602. * Add ability to disable webtorrent (as a user) ([@rigelk](https://github.com/rigelk))
  2603. * Make abuse-delete clearer ([@barbeque](https://github.com/barbeque))
  2604. * Adding minimum signup age conforming to ceiling GPDR age ([@rigelk](https://github.com/rigelk))
  2605. * Feature/description support fields length 1000 ([@McFlat](https://github.com/mcflat))
  2606. * Add background effect to activated menu entry
  2607. * Improve video upload error handling
  2608. * Improve message visibility on signup
  2609. * Auto login user on signup if email verification is disabled
  2610. * Speed up PeerTube startup (in particular the first one)
  2611. * Delete invalid or deleted remote videos
  2612. * Add ability to admin to set email as verified ([@joshmorel](https://github.com/joshmorel))
  2613. * Add separators in user moderation dropdown
  2614. ### Bug fixes
  2615. * AP mimeType -> mediaType
  2616. * PeerTube is not in beta anymore
  2617. * PeerTube is not in alpha anymore :p
  2618. * Fix optimize old videos script
  2619. * Check follow constraints when getting a video
  2620. * Fix application-config initialization in CLI tools ([@Yetangitu](https://github.com/Yetangitu))
  2621. * Fix video pixel format compatibility (using yuv420p) ([@rigelk](https://github.com/rigelk))
  2622. * Fix video `state` AP context ([tcitworld](https://github.com/tcitworld))
  2623. * Fix Linked Signature compatibility
  2624. * Fix AP collections pagination
  2625. * Fix too big thumbnails (when using URL import)
  2626. * Do not host remote AP objects: use redirection instead
  2627. * Fix video miniature with a long name
  2628. * Fix video views inconsistencies inside the federation
  2629. * Fix video embed in Wordpress Gutenberg
  2630. * Fix video channel videos url when scrolling
  2631. * Fix player progress bar/seeking when changing resolution
  2632. * Fix search tab title with no search
  2633. * Fix YouTube video import with some videos
  2634. ***Since v1.1.0-rc.1***
  2635. ### Bug fixes
  2636. * Fix AP infinite redirection
  2637. * Fix trending page
  2638. ## v1.0.1
  2639. ### Security/Maintenance/Federation
  2640. * Add HTTP Signature in addition to Linked Signature:
  2641. * It's faster
  2642. * Will allow us to use RSA Signature 2018 in the future without too much incompatibilities in the peertube federation
  2643. ## v1.0.0
  2644. ### SECURITY
  2645. * Add more headers to HTTP signature to avoid actor impersonation by replaying modified signed HTTP requests (thanks Thibaut Girka)
  2646. ### Bug fixes
  2647. * Check video exists before extending expiration
  2648. * Correctly delete redundancy files
  2649. * Fix account URI in remote comment modal ([@rigelk](https://github.com/rigelk))
  2650. * Fix avatar update
  2651. * Avoid old issue regarding duplicated hosts in database
  2652. ## v1.0.0-rc.2
  2653. ### Bug fixes
  2654. * Fix config endpoint
  2655. ## v1.0.0-rc.1
  2656. ### Features
  2657. * Allow specification of channel ID in `peertube-upload.js` ([@anoadragon453](https://github.com/anoadragon453))
  2658. * Show last commit hash alongside server version in footer ([@rigelk](https://github.com/rigelk))
  2659. * Add comment feeds in watch page
  2660. ### Bug fixes
  2661. * Fix dnt route (yes again, but now we have unit tests for this route :D)
  2662. * Check video channel name is unique when creating a new one
  2663. * Fix video fps validator (prevent redundancy/refresh of some old videos)
  2664. * Allow empty search on client side ([@rigelk](https://github.com/rigelk))
  2665. * Correctly forward comment deletion
  2666. ## v1.0.0-beta.16
  2667. ### BREAKING CHANGES
  2668. * Add prompt to upgrade.sh to install pre-release version ([@Nutomic](https://github.com/nutomic))
  2669. ### Features
  2670. * Add shortcuts icon in menu
  2671. * Improve overview section titles
  2672. * Check old password before change ([@BO41](https://github.com/BO41))
  2673. * Adding frame-by-frame hotkey support in player ([@rigelk](https://github.com/rigelk))
  2674. ### Bug fixes
  2675. * Stop seeding torrents after a failed import
  2676. * Fix player crashing the web browser
  2677. * Fix player performance with small devices
  2678. * Fix some untranslated strings
  2679. * Fix video files duplicated when fps is null ([@rigelk](https://github.com/rigelk))
  2680. * Fix video import of some youtube videos
  2681. * Fix (long) video description when importing by url
  2682. * Fix Mastodon federation with a comment reply
  2683. * Correctly delete directories on import
  2684. * Remove duplicated videos on unfollow/delete redundancy
  2685. * Fix 404 on manifest
  2686. * Hide useless error when destroying fake renderer
  2687. * Display other videos on big screens on the right of the watch page
  2688. * Fix no other videos displayed on some videos
  2689. * Fix hidden advanced options in upload form
  2690. * Fix message space on video upload cancel ([@rigelk](https://github.com/rigelk))
  2691. * Fix error when updating many video captions
  2692. * Fix "my account" subtitles
  2693. * Fix error when clicking on the disabled publish button
  2694. * Increase timeout on upload endpoint
  2695. * Fix redundancy with videos already duplicated by another instance(s)
  2696. * Correctly delete files on failed import
  2697. ## v1.0.0-beta.15
  2698. ### Features
  2699. * Improve subscription button ([@rigelk](https://github.com/rigelk))
  2700. * Display it for unlogged users
  2701. * Add RSS feed
  2702. * Allow remote follow
  2703. * Allow remote comment ([@rigelk](https://github.com/rigelk))
  2704. * Support Simplified Chinese ([@SerCom-KC](https://github.com/SerCom-KC))
  2705. ### Bug fixes
  2706. * Fix redundancy with old PeerTube torrents
  2707. * Fix crash with `/static/dnt-policy/dnt-policy-1.0.txt` route
  2708. * Fix redundancy totalVideos stats
  2709. * Reduce video import TTL to 1 hour
  2710. * Only duplicate public videos
  2711. ## v1.0.0-beta.14
  2712. ### Features
  2713. * Video redundancy system (experimental)
  2714. * Add peertube script (see [the doc](/support/doc/tools.md#cli-wrapper)) ([@rigelk](https://github.com/rigelk))
  2715. * Improve download modal ([@rigelk](https://github.com/rigelk))
  2716. * Add redirect after login ([@BO41](https://github.com/BO41))
  2717. * Improve message when removing a user
  2718. * Improve responsive on small screens
  2719. * Improve performance:
  2720. * Overview endpoint
  2721. * SQL requests of watch page endpoints
  2722. * SQL requests of ActivityPub endpoints
  2723. * Cache user token
  2724. * Videos infinite scroll in the web browser
  2725. * Add warning if one of the storage directory is in the peertube production directory
  2726. * Auto focus first field on login ([@rigelk](https://github.com/rigelk))
  2727. * Add chevron hotkeys to change playback rate ([@rigelk](https://github.com/rigelk))
  2728. ### Bug fixes
  2729. * Fix 24 hours delay to process views
  2730. * Fix tag search on overview page
  2731. * Handle actors search beginning with '@'
  2732. * Fix "no results" on overview page
  2733. * Fix iOS player playback/subtitles menu
  2734. * Fix description/comments that break the video watch page
  2735. * Don't get recommended videos twice
  2736. * Fix admin access to moderators
  2737. * Fix nav tab and tag color in dark theme ([@rigelk](https://github.com/rigelk))
  2738. * Fix help popover overflow ([@rigelk](https://github.com/rigelk))
  2739. * Fix comment deletion with mastodon (only with new comments)
  2740. ## v1.0.0-beta.13
  2741. ### Features
  2742. * Improve keyboard navigation ([@rigelk](https://github.com/rigelk))
  2743. * Remember theme in local storage ([@rigelk](https://github.com/rigelk))
  2744. ### Bug fixes
  2745. * Fix upgrade/installation on node 8.12 (bcrypt issue)
  2746. * Fix video channel deletion
  2747. * Fix video channel RSS
  2748. * Fix video views increment
  2749. ## v1.0.0-beta.12
  2750. **If you have not updated to v1.0.0-beta.10, see the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
  2751. ### BREAKING CHANGES
  2752. * Users can now use the name they want for their channel.
  2753. We will therefore favour the display of video channel handles/names instead of account in the future.
  2754. ### Documentation
  2755. * Add SECURITY.md document
  2756. * Add TCP/IP tuning template to prevent buffer bloat/latency ([@scanlime](https://github.com/scanlime))
  2757. * Add `parse-log` admin tool documentation
  2758. * Improve README schemas ([@Edznux](https://github.com/edznux))
  2759. ### nginx template
  2760. * Add gzip support ([@scanlime](https://github.com/scanlime))
  2761. ### Docker template
  2762. * Add quota to the docker configuration values ([@kaiyou](https://github.com/kaiyou))
  2763. ### Features
  2764. * Add portuguese and swedish languages
  2765. * Support user subscriptions
  2766. * Add ability to search videos or channels with their URL/handle (can be opt-out by the admin)
  2767. * Add "videos overview" page (pick randomly some categories/tags/channels and display their videos)
  2768. * Add ability to set a name (left part of the handle) to a channel instead of UUID
  2769. * Users can "give" their videos to other local users (WIP, feedback welcome) ([@grizio](https://github.com/grizio))
  2770. * Add keyboard shortcuts (press `?` to see them) ([@rigelk](https://github.com/rigelk))
  2771. * Add ability to set daily video upload quota to users ([@Nutomic](https://github.com/nutomic))
  2772. * Add user email verification (can be opt-in by the admin) ([@joshmorel](https://github.com/joshmorel))
  2773. * Improve video watch page style ([@rigelk](https://github.com/rigelk))
  2774. * Trending page takes into account views from the last x days (defined by the admin in the configuration file)
  2775. * Add "start at" checkbox in the video share modal
  2776. * Add instance capabilities table in the signup page ([@rigelk](https://github.com/rigelk))
  2777. * Improve video abuses display in admin ([@Nutomic](https://github.com/nutomic))
  2778. * Add "my videos" shortcut in menu ([@LeoMouyna](https://github.com/LeoMouyna))
  2779. * Support 0.75 and 1.25 playback speeds ([@Glandos](https://github.com/Glandos))
  2780. * Improve error message on actor name conflict
  2781. * Improve videos list/search SQL query (split it into 2 queries)
  2782. * Make left menu show the scrollbar only on hover/focus ([@rigelk](https://github.com/rigelk))
  2783. * Other videos column in watch page show related tagged videos if possible ([@jorropo](https://github.com/jorropo))
  2784. * Password change errors more friendly ([@jorropo](https://github.com/jorropo))
  2785. * Improve labels for video privacies (video upload/update)
  2786. * Add theming via CSS custom properties ([@rigelk](https://github.com/rigelk))
  2787. * Add dark theme ([@rigelk](https://github.com/rigelk))
  2788. * Add input color to cope with browser themes ([@rigelk](https://github.com/rigelk))
  2789. ### Bug fixes
  2790. * Fix player video playback (videos never ends or infinite load after seeking)
  2791. * Fix video URL import with videos having a small title
  2792. * Make HSTS opt-in and leave it to the reverse-proxy ([@rigelk](https://github.com/rigelk))
  2793. * Fix search results on mobile
  2794. * Do not import live streaming
  2795. * Fix NSFW filter when the instance decides to hide them and the user decides to list them
  2796. * Delete highlighted comment too if needed
  2797. * Fix ffmpeg auto thread admin configuration ([@jorropo](https://github.com/jorropo))
  2798. * ActivityPub: use height instead of width to represent the video resolution
  2799. * Fix thumbnail/preview in upload.js script
  2800. * Fix import-videos.js duplicate detection
  2801. * Fix occitan language label
  2802. ## v1.0.0-beta.11
  2803. **If you have not updated to v1.0.0-beta.10, see the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
  2804. ### Features
  2805. * Add ability to import videos from a URL (YouTube, Dailymotion, Vimeo, raw file etc) or torrent file/magnet.
  2806. Should be explicitly enabled by the administrator in the configuration file
  2807. * Add german, spanish, taiwan (traditional chinese) and occitan languages
  2808. * Add ability to delete our account
  2809. * Add ability to ban a user
  2810. * Add ability to set a moderation comment to an abuse
  2811. * Add state (pending, accepted, rejected) attribute to an abuse
  2812. * Add ability to set a reason when blacklisting a video
  2813. * Add ability to blacklist local videos
  2814. * Improve abuse and blacklist tables
  2815. * Add user quota used in users list
  2816. * Tracker only accept known infohash (avoid people to use your tracker for files unrelated to PeerTube)
  2817. * Add database pool configuration ([@rigelk](https://github.com/rigelk))
  2818. * Add audit log ([@Nautigsam](https://github.com/Nautigsam))
  2819. * Add ffmpeg nice and auto thread ([@jorropo](https://github.com/jorropo))
  2820. * Upgrade to bootstrap 4
  2821. * DNT support
  2822. ### Bug fixes
  2823. * Fix videos FPS federation
  2824. * Cleanup request files on bad request
  2825. * Handle truncated markdown links
  2826. * Fix dropdown position in menu
  2827. * Translate subtitle languages in player
  2828. * Translate player according the language of the interface
  2829. * Fix reset my password button ([@joshmorel](https://github.com/joshmorel))
  2830. ## v1.0.0-beta.10
  2831. **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
  2832. ### Bug fixes (from beta.10.pre.3)
  2833. * Fix caption upload on Mac OS
  2834. ## v1.0.0-beta.10.pre.3
  2835. **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
  2836. ### Bug fixes (from beta.10.pre.2)
  2837. * Try to fix the infinite creation of Delete actor jobs by deleting kue migration
  2838. * Cleanup SQL indexes
  2839. * Try to optimize SQL search query
  2840. * Try to optimize videos list SQL query
  2841. * Add more logs and fix logger when having an error
  2842. * Move subscription helper in the account line in video watch page
  2843. * Fix responsive on videos search
  2844. * Refresh orphan actors
  2845. * Don't send a follow request if the follow was already accepted
  2846. ## v1.0.0-beta.10.pre.2
  2847. **See the v1.0.0-beta.10.pre.1 changelog, in particular how to upgrade**
  2848. ### Bug fixes (from beta.10.pre.1)
  2849. * Fix captions/subtitles freeze in player
  2850. * Fix attribute label width in video watch page
  2851. * Fix player playback in Chrome
  2852. * Revert SQL optimization when listing videos: it breaks the connection pool of some instances
  2853. ## v1.0.0-beta.10.pre.1
  2854. This version is a pre release because it contains many important changes, and requires manual steps before upgrading.
  2855. **Important:** Before upgrading run the following commands (no need to stop PeerTube) on your PeerTube database (in this example it's *peertube_prod*):
  2856. ```
  2857. sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;'
  2858. sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
  2859. ```
  2860. You will need [PostgreSQL Contrib](https://www.postgresql.org/docs/9.6/static/contrib.html).
  2861. ### BREAKING CHANGES
  2862. * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database
  2863. * `category` filter param is replaced by `categoryOneOf`
  2864. * Switch job queue to [Bull](https://github.com/OptimalBits/bull). **PeerTube will not migrate your old pending jobs in this new queue manager**
  2865. * Update nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
  2866. * Update default cache size configurations
  2867. * Update search API route: `/videos/search` becomes `/search/videos`
  2868. * Needs Redis >= 2.8.18
  2869. ### Features
  2870. * Add ability to change the language of the interface (currently available: english, french, basque, catalan, czech and esperanto)
  2871. * Subtitles/captions support (.srt and .vtt)
  2872. * Add advanced search
  2873. * Add ability to click on category/language/licence/tags in watch page
  2874. * Improve explanations of P2P & Privacy section in about page
  2875. * Avoid design latency when the admin set custom CSS
  2876. * Add ability to update video channel avatar
  2877. * Limit video resolution depending on the video element size (Nitesh Sawant)
  2878. * Show "Other videos" on a <1300px viewport ([@Simounet](https://github.com/simounet))
  2879. * Add QR code to share videos URL ([@DeeJayBro](https://github.com/DeeJayBro))
  2880. * Add "agree to the terms" checkbox in registration form
  2881. * Add tracker rate limiter
  2882. * Add author URL in OEmbed response
  2883. * Display username instead of email in menu
  2884. * Clarifying what extensions are accepted for upload ([@rigelk](https://github.com/rigelk))
  2885. * Thumbnail support for RSS feeds ([@rigelk](https://github.com/rigelk))
  2886. * Open CORS on API and static resources ([@rezonant](https://github.com/rezonant)
  2887. * B-adapt 1 and B-frames 16 on ffmpeg transcoding: ([@Anton-Latukha](https://github.com/Anton-Latukha)). See https://github.com/Chocobozzz/PeerTube/pull/774 for more information
  2888. * Support Redis socket ([@rigelk](https://github.com/rigelk))
  2889. * Improve video `start` param to support string times (for example: 2m42s))
  2890. * Display table next/prev/first/last icons in admin tables
  2891. * NodeInfo support ([@rigelk](https://github.com/rigelk))
  2892. * Improve HTTP headers security ([@rigelk](https://github.com/rigelk))
  2893. * Improve client accessibility (for screen reader users etc)
  2894. * Optimize SQL requests (in particular the one to list videos)
  2895. * Optimize images ([@jorropo](https://github.com/jorropo))
  2896. * Add esperanto, lojban, klingon and kotava (audio/subtitle) languages
  2897. * Allow uploads of videos <8GB (*experimental*)
  2898. * Handle FPS > 30 (*experimental*)
  2899. ### Bug fixes
  2900. * Fix avatars/thumbnails update (cache issue)
  2901. * Fix pagination on admin job table when changing the job state
  2902. * Fix SQL transaction retryer log
  2903. * Correctly handle error when remote instance is down
  2904. * Fix account videos URL when scrolling
  2905. * Avoid commenting twice by disabling comment submit button when sending the comment
  2906. * Reset confirm component input when closing it
  2907. * Fix video speed when video resolutions changes ([@grizio](https://github.com/grizio))
  2908. * Disable hotkeys modifiers for numbers ([@rigelk](https://github.com/rigelk))
  2909. * Reset published date on video publish (scheduled or after a transcoding)
  2910. * Avoid 404 title on the first page load
  2911. * Fix forgot password message regarding email
  2912. * Remove scroll to top when closing the menu ([@ebrehault](https://github.com/ebrehault))
  2913. * Use UUID for channel link in watch page
  2914. ### Docker
  2915. * Add PEERTUBE_SMTP_DISABLE_STARTTLS config env
  2916. ## v1.0.0-beta.9
  2917. ### Features
  2918. * Theater/Cinema mode in player
  2919. * Add ability to wait transcoding before publishing it
  2920. * Add ability for uploaders to schedule video update
  2921. * Add time display to see where we seek the video
  2922. * Add title in player peers info to show total downloaded/uploaded data
  2923. * Provide magnet URI in player and download modal ([@rigelk](https://github.com/rigelk))
  2924. * Add warning if the domain name is different from the one of the first start of Peertube
  2925. * Add resolution to create-transcoding-job script ([@fflorent](https://github.com/fflorent))
  2926. ### Bug fixes
  2927. * Fix dislikes number in video watch page
  2928. * Fix import when the imported file has the same extension than an already existing file
  2929. * Fix bad RSS descriptions when filtering videos by account or channel
  2930. * Fix RSS results limit
  2931. * Fix glitch when updating player volume
  2932. * Use local object URLs for feeds
  2933. * Automatically jump to the highlighted thread
  2934. * Fix account link width on video view ([@sesn](https://github.com/sesn))
  2935. * Prevent commenting twice
  2936. * Blue links color in comments
  2937. * Fix quota precision in users list
  2938. * Handle markdown in account/video channel pages
  2939. * Fix avatar image in channel page
  2940. * Fix slow HTTP fallback on Firefox
  2941. * Do not create a user with the same username than another actor name
  2942. * Reset search on page change
  2943. * Fix images size limit
  2944. * Log torrent errors/warnings in the console, instead of disturbing users
  2945. ## v1.0.0-beta.8
  2946. ### Features
  2947. * Docker:
  2948. * Add disable_starttls and transcoding configuration variables
  2949. * `.env` file to define env variables (instead of defining them in `docker-compose.yml`)
  2950. * Some improvements that should make the upgrades less painful
  2951. * Add ability to manually run transcoding jobs (admin with CLI)
  2952. * Add ability to import a video file (admin with CLI)
  2953. * Add context menu to the player
  2954. * Add number of videos published by an account/video channel
  2955. * Improve player progress bar
  2956. * Improve Twitter configuration help tooltips
  2957. * Pick average video file instead of max quality in "Auto" resolution mode
  2958. * Increase access token lifetime to 1 day
  2959. * Add video comments RSS
  2960. ### Bug fixes
  2961. * Clicking on "Download" correctly opens a popup to download the video
  2962. (instead of opening the video in a new tab)
  2963. * Fix frequent logout
  2964. * Fix `publishedAt` video attribute when following a new instance
  2965. * Correctly resumes the video on "PeerTube" link click in embed
  2966. * Fix markdown links truncation
  2967. * Fix account/channel pages not updated if we only change the account/channel
  2968. * Fix player resolution change that plays even if the video was paused
  2969. * Fix posting view in embed that contains search params
  2970. * Fix video watch tooltips regarding subscriptions by using the account name
  2971. instead of the display name
  2972. * Rename "my settings" to "my account" in menu
  2973. ## v1.0.0-beta.7
  2974. ### BREAKING CHANGES
  2975. * Account client URLs are now `/accounts/{username}/` (and not `/accounts/{id}/`)
  2976. ### Documentation
  2977. * Better documentation on how to deploy with Docker: https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/docker.md
  2978. ### Features
  2979. * Add short description in about page
  2980. * Add owner account name in video channel page
  2981. * Improve performance in ActivityPub controllers
  2982. * Video **support** field inherits video channel **support** field when uploading/updating a video
  2983. * Resume video when clicking on "PeerTube" link in embed
  2984. ### Bug fixes
  2985. * Fix player on Android
  2986. * Fix player when Firefox has cookies disabled
  2987. * Reload "my videos" after a delete
  2988. * Fix missing key configuration when upgrading with Docker
  2989. * Fix CC audience in Activity Pub objects/activities
  2990. ## v1.0.0-beta.6
  2991. ### Features
  2992. * Handle concurrent requests in cache middleware
  2993. * Add ability to enable registration by IP
  2994. ### Bug fixes
  2995. * Fix insane SQL request when loading all video attributes
  2996. ## v1.0.0-beta.5
  2997. ### BREAKING CHANGES
  2998. * Update Docker Compose (https://github.com/Chocobozzz/PeerTube/commit/fd5e57bbe2accbdb16b6aa65337c5ef44b5bd8fb)
  2999. * Rename client routes:
  3000. * `/admin/users/add` to `/admin/users/create`
  3001. * `/videos/edit/:uuid` to `/videos/update/:uuid`
  3002. * `/admin/users/:id/update` to `/admin/users/update/:id`
  3003. ### Features
  3004. * Adding basic helpers to guide users for comments/subscribe to accounts
  3005. * Add ability to move a video in another channel
  3006. * Improve web browser RAM consumption when watching (long) videos
  3007. * Support robots.txt in configuration
  3008. * Add ability to select the Redis database in configuration
  3009. ### Bug fixes
  3010. * Fix error message on token expiration
  3011. * Increase menu icon size
  3012. * Add timeout and TTL to request jobs to fix stuck job
  3013. * Fix responsive account about page
  3014. * Fix updating description account
  3015. * Account/video channel descriptions are not required anymore
  3016. * Fix video channel description and support max length (500 characters now)
  3017. * Fix "..." for buttons (delete/edit) in admin tables
  3018. * Fix overflow in markdown textarea preview
  3019. * Add ability to embed videos in a Twitter card
  3020. * Use `publishedAt` attribute when sorting videos
  3021. * Fix concurrent requests in videos list
  3022. * Fix player on iOS
  3023. ## v1.0.0-beta.4
  3024. ### BREAKING CHANGES
  3025. * Hide by default NSFW videos. Update the `instance.default_nsfw_policy` configuration to `blur` to keep the old behaviour
  3026. * Move video channels routes:
  3027. * `/videos/channels` routes to `/video-channels`
  3028. * `/videos/accounts/{accountId}/channels` route to `/accounts/{accountId}/video-channels`
  3029. * PeerTube now listen on 127.0.0.1 by default
  3030. * Use ISO 639 for language (*en*, *es*, *fr*...)
  3031. * Tools (`import-videos`...) need the language ISO639 code instead of a number
  3032. * API (`upload`, `update`, `list`...) need/return the language ISO639 code instead of a number
  3033. ### Features
  3034. * Add `publishedAt` attribute to videos
  3035. * Improve player:
  3036. * Smooth progress bar
  3037. * Settings menu
  3038. * Automatic resolution (depending on the user bandwidth)
  3039. * Some animations/effects
  3040. * More reactive when clicking on play
  3041. * Handle autoplay blocking by some web browsers
  3042. * Better responsive
  3043. * Add ability to link a specific timestamp. Example: https://peertube2.cpy.re/videos/watch/f78a97f8-a142-4ce1-a5bd-154bf9386504?start=58
  3044. * Add an id to the body to override current CSS (for custom CSS)
  3045. * Add privacy argument to `upload.ts` script
  3046. * RSS/Atom/JSON-feed for videos recently-added/trending/account
  3047. * Support hostname binding in the configuration
  3048. * Add ability to click on an account in the video watch page (link to a search)
  3049. * Better responsive on many comment replies
  3050. * Move follows in the job queue
  3051. * Add ability to choose the NSFW videos policy: hide, blur or display. Could be overrode by the user
  3052. * Add video privacy information in *my videos page*
  3053. * Use the video name for the torrent file name instead of the UUID
  3054. * Handle errors in embed (video not found, server error...)
  3055. * Account view (videos uploaded by this account + video channel owned by this account + about pages)
  3056. * Video channel view (videos uploaded in this channel + about pages)
  3057. * Video channel management (avatar update is still missing)
  3058. ### Bug fixes
  3059. * Fix "show more" description on video change
  3060. * Accept unlisted comments
  3061. * Don't start application until all components were initialized
  3062. * Fix word-break in video description and video comments
  3063. * Don't add a `.` after the URL in the "forgot password" email
  3064. ## v1.0.0-beta.3
  3065. ### Features
  3066. * Add hover background color in menu
  3067. * Add info about the initial user quota in the registration form
  3068. * Add link to register in the login form
  3069. * Prevent brute force login attack
  3070. ### Bug fixes
  3071. * Fix bad federation with videos with special utf characters in description (again)
  3072. * Fix views system behind a reverse proxy
  3073. ## v1.0.0-beta.2
  3074. ### Features
  3075. * More logging in SMTP module
  3076. * Add option to disable starttls in SMTP module
  3077. * Update STUN servers (using framasoft.org and stunprotocol.org now)
  3078. * Min comment length is 1 now (useful for emoji...)
  3079. * Better embed video player in small screens
  3080. * Reduce display time of title/description/control bar in embed on inactivity
  3081. * Add sign languages for videos attribute
  3082. * Add autoplay parameter for embed
  3083. * Videos search on account username and host too
  3084. * Redirect to homepage on empty search
  3085. ### Bug fixes
  3086. * Fix mentions in comment replies
  3087. * Logo/Title redirects to the default route
  3088. * Fix bad federation with videos with special utf characters in description
  3089. * Fix pagination on mobile
  3090. * Use instance name for page titles
  3091. * Fix bad id for Create activities (ActivityPub)
  3092. * Handle inner actors instead of just handling actor ids (ActivityPub)
  3093. * Fallback to torrent file if infohash is incorrect
  3094. * Fix admin config errors display/validation
  3095. * Add public to Announces (ActivityPub)
  3096. * Fix inability to run client when cookies are disabled
  3097. * Fix words breaking in videos description
  3098. * Graceful exit when import videos script fails
  3099. * Fix import videos with long names
  3100. * Fix login with a password containing special characters
  3101. * Fix player error flickering with an unsupported video format
  3102. * Fix comment delete federation
  3103. * Fix communication of a PeerTube instance and Mastodon
  3104. * Fix custom configuration with number values
  3105. ## v1.0.0-beta.1
  3106. Nothing new here, but PeerTube is stable enough for being in beta now.
  3107. ## v1.0.0-alpha.9
  3108. ### BREAKING CHANGES
  3109. * Update videos list/search/get API response:
  3110. * Removed `resolution` field
  3111. * Removed `resolutionLabel` field
  3112. * Removed `category` field
  3113. * Removed `categoryLabel` field
  3114. * Removed `licence` field
  3115. * Removed `licenceLabel` field
  3116. * Removed `language` field
  3117. * Removed `languageLabel` field
  3118. * Removed `privacy` field
  3119. * Removed `privacyLabel` field
  3120. * Added `resolution.id` field
  3121. * Added `resolution.label` field
  3122. * Added `category.id` field
  3123. * Added `category.label` field
  3124. * Added `licence.id` field
  3125. * Added `licence.label` field
  3126. * Added `language.id` field
  3127. * Added `language.label` field
  3128. * Added `privacy.id` field
  3129. * Added `privacy.label` field
  3130. ### Bug fixes
  3131. * Fix video_share_url duplicate key on failed transcoding job
  3132. ## v1.0.0-alpha.8
  3133. ### Features
  3134. * Add ability to set a short instance description
  3135. ## v1.0.0-alpha.7
  3136. ### BREAKING CHANGES
  3137. * Update videos list/search API response:
  3138. * Removed `accountName` field
  3139. * Removed `serverHost` field
  3140. * Added `account.name` field
  3141. * Added `account.displayName` field
  3142. * Added `account.host` field
  3143. * Added `account.url` field
  3144. * Added `account.avatar` field
  3145. * Update video abuses API response:
  3146. * Removed `reporterUsername` field
  3147. * Removed `reporterServerHost` field
  3148. * Removed `videoId` field
  3149. * Removed `videoUUID` field
  3150. * Removed `videoName` field
  3151. * Added `reporterAccount` field
  3152. * Added `video.id` field
  3153. * Added `video.name` field
  3154. * Added `video.uuid` field
  3155. * Added `video.url` field
  3156. ### Features
  3157. * Add "Local" in menu that lists only local videos
  3158. ## v1.0.0-alpha.4
  3159. ### Features
  3160. * Add iOS support
  3161. ## v1.0.0-alpha.1
  3162. ### Features
  3163. * Add messages about privacy and P2P
  3164. * Add stats route
  3165. * Add playback setting
  3166. ## v0.0.29-alpha
  3167. ### BREAKING CHANGES
  3168. * Use only 1 thread for transcoding by default
  3169. ### Features
  3170. * Add help to JS/CSS custom configuration inputs
  3171. * Keep ratio in video thumbnail generation
  3172. * Handle video in portrait mode
  3173. ### Bug fixes
  3174. * Fix complete description on some videos
  3175. * Fix job sorting in administration
  3176. ## v0.0.28-alpha
  3177. ### BREAKING CHANGES
  3178. * Enable original file transcoding by default in configuration
  3179. * Disable transcoding in other definitions in configuration
  3180. ### Features
  3181. * Fallback to HTTP if video cannot be loaded
  3182. * Limit to 30 FPS in transcoding
  3183. ## v0.0.27-alpha
  3184. ### Features
  3185. * Add ability for admin to inject custom JavaScript/CSS
  3186. * Add help tooltip on some fields
  3187. ### Bug fixes
  3188. * Fix comment reply highlighting
  3189. ## v0.0.26-alpha
  3190. ### BREAKING CHANGES
  3191. * Renamed script `import-youtube.js` to `import-videos.js`
  3192. * Renamed `import-video.js` argument `youtube-url` to `target-url`
  3193. ### Features
  3194. * Add "Support" attribute/button on videos
  3195. * Add ability to import from all [supported sites](https://rg3.github.io/youtube-dl/supportedsites.html) of youtube-dl
  3196. ### Bug fixes
  3197. * Fix custom instance name overflow
  3198. ## v0.0.25-alpha
  3199. ### Features
  3200. * Add ability to link a specific comment
  3201. ### Bug fixes
  3202. * Fix avatars on video watch page
  3203. ## v0.0.24-alpha
  3204. ### Features
  3205. * Publish comments with *ctrl + enter*
  3206. ### Bug fixes
  3207. * Don't stuck on active jobs
  3208. * Fix deleting a video with comments
  3209. * Fix infinite scroll (videos list)