|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
| 3 | +## 2024-08-25 |
| 4 | + |
| 5 | +### New features & important changes |
| 6 | + |
| 7 | +#### For users |
| 8 | + |
| 9 | +* The search bar now has a button that you can click! |
| 10 | +* Youtube URLs can be pasted directly in the search bar. Prepend search query with a |
| 11 | + backslash (`\`) to disable that feature (useful if you need to search for a video whose |
| 12 | + title contains some youtube URL). |
| 13 | +* On the channel page the "streams" tab can be sorted by either: "newest", "oldest" or "popular" |
| 14 | +* Lots of translations have been updated (thanks to our contributors on Weblate!) |
| 15 | +* Videos embedded in local HTML files (e.g: a webpage saved from a blog) can now be played |
| 16 | + |
| 17 | +#### For instance owners |
| 18 | + |
| 19 | +* Invidious now has the ability to provide a `po_token` and `visitordata` to Youtube in order to |
| 20 | + circumvent current Youtube restrictions. |
| 21 | +* Invidious can use an (optional) external signature server like [inv_sig_helper]. Please note that |
| 22 | + some videos can't be played without that signature server. |
| 23 | +* The Helm charts were moved to a separate repo: https://github.com/iv-org/invidious-helm-chart |
| 24 | +* We have changed how containers are released: the `latest` tag now tracks tagged releases, whereas |
| 25 | + the `master` tag tracks the most recent commits of the `master` branch ("nightly" builds). |
| 26 | + |
| 27 | +[inv_sig_helper]: https://github.com/iv-org/inv_sig_helper |
| 28 | + |
| 29 | +#### For developpers |
| 30 | + |
| 31 | +* The versions of Crystal that we test in CI/CD are now: `1.9.2`, `1.10.1`, `1.11.2`, `1.12.1`. |
| 32 | + Please note that due to a bug in the `libxml` bindings (See [#4256]), versions prior to `1.10.0` |
| 33 | + are not recommended to use. |
| 34 | +* Thanks to @syeopite, the code is now [ameba] compliant. |
| 35 | +* Ameba is part of our CI/CD pipeline, and its rules will be enforced in future PRs. |
| 36 | +* The transcript code has been rewritten to permit transcripts as a feature rather than being |
| 37 | + only a workaround for captions. Trancripts feature is coming soon! |
| 38 | +* Various fixes regarding the logic interacting with Youtube |
| 39 | +* The `sort_by` parameter can be used on the `/api/v1/channels/{id}/streams` endpoint. Accepted |
| 40 | + values are: "newest", "oldest" and "popular" |
| 41 | + |
| 42 | +[ameba]: https://github.com/crystal-ameba/ameba |
| 43 | +[#4256]: https://github.com/iv-org/invidious/issues/4256 |
| 44 | + |
| 45 | + |
| 46 | +### Bugs fixed |
| 47 | + |
| 48 | +#### User-side |
| 49 | + |
| 50 | +* Channels: fixed broken "subscribers" and "views" counters |
| 51 | +* Watch page: playback position is reset at the end of a video, so that the next time this video |
| 52 | + is watched, it will start from the beginning rather than 15 seconds before the end |
| 53 | +* Watch page: the items in the "add to playlist" drop down are now sorted alphabetically |
| 54 | +* Videos: the "genre" URL is now always pointing to a valid webpage |
| 55 | +* Playlists: Fixed `Could not parse N episodes` error on podcast playlists |
| 56 | +* All external links should now have the [`rel`] attibute set to `noreferrer noopener` for |
| 57 | + increased privacy. |
| 58 | +* Preferences: Fixed the admin-only "modified source code" input being ignored |
| 59 | +* Watch/channel pages: use the full image URL in `og:image` and `twitter:image` meta tags |
| 60 | + |
| 61 | +[`rel`]: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel |
| 62 | + |
| 63 | +#### API |
| 64 | + |
| 65 | +* fixed the `local` parameter not applying to `formatStreams` on `/api/v1/videos/{id}` |
| 66 | +* fixed an `Index out of bounds` error hapenning when a playlist had no videos |
| 67 | +* fixed duplicated query parameters in proxied video URLs |
| 68 | +* Return actual video height/width/fps rather than hard coded values |
| 69 | +* Fixed the `/api/v1/popular` endpoint not returning a proper error code/message when the |
| 70 | + popular page/endpoint are disabled. |
| 71 | + |
| 72 | + |
| 73 | +### Full list of pull requests merged since the last release (newest first) |
| 74 | + |
| 75 | +* HTML: Sort playlists alphabetically in watch page drop down ([#4853], by @SamantazFox) |
| 76 | +* Videos: Fix XSS vulnerability in description/comments ([#4852], thanks _anonymous_) |
| 77 | +* YtAPI: Bump client versions ([#4849], by @SamantazFox) |
| 78 | +* SigHelper: Fix inverted time comparison in 'check_update' ([#4845], by @SamantazFox) |
| 79 | +* Storyboards: Various fixes and code cleaning ([#4153], by SamantazFox) |
| 80 | +* Fix lint errors introduced in #4146 and #4295 ([#4876], thanks @syeopite) |
| 81 | +* Search: Add support for Youtube URLs ([#4146], by @SamantazFox) |
| 82 | +* Channel: Render age restricted channels ([#4295], thanks @ChunkyProgrammer) |
| 83 | +* Ameba: Miscellaneous fixes ([#4807], thanks @syeopite) |
| 84 | +* API: Proxy formatStreams URLs too ([#4859], thanks @colinleroy) |
| 85 | +* UI: Add search button to search bar ([#4706], thanks @thansk) |
| 86 | +* Add ability to set po_token and visitordata ID ([#4789], thanks @unixfox) |
| 87 | +* Add support for an external signature server ([#4772], by @SamantazFox) |
| 88 | +* Ameba: Fix Naming/VariableNames ([#4790], thanks @syeopite) |
| 89 | +* Translations update from Hosted Weblate ([#4659]) |
| 90 | +* Ameba: Fix Lint/UselessAssign ([#4795], thanks @syeopite) |
| 91 | +* HTML: Add rel="noreferrer noopener" to external links ([#4667], thanks @ulmemxpoc) |
| 92 | +* Remove unused methods in Invidious::LogHandler ([#4812], thanks @syeopite) |
| 93 | +* Ameba: Fix Lint/NotNilAfterNoBang ([#4796], thanks @syeopite) |
| 94 | +* Ameba: Fix unused argument Lint warnings ([#4805], thanks @syeopite) |
| 95 | +* Ameba: i18next.cr fixes ([#4806], thanks @syeopite) |
| 96 | +* Ameba: Disable rules ([#4792], thanks @syeopite) |
| 97 | +* Channel: parse subscriber count and channel banner ([#4785], thanks @ChunkyProgrammer) |
| 98 | +* Player: Fix playback position of already watched videos ([#4731], thanks @Fijxu) |
| 99 | +* Videos: Fix genre url being unusable ([#4717], thanks @meatball133) |
| 100 | +* API: Fix out of bound error on empty playlists ([#4696], thanks @Fijxu) |
| 101 | +* Handle playlists cataloged as Podcast ([#4695], thanks @Fijxu) |
| 102 | +* API: Fix duplicated query parameters in proxied video URLs ([#4587], thanks @absidue) |
| 103 | +* API: Return actual stream height, width and fps ([#4586], thanks @absidue) |
| 104 | +* Preferences: Fix handling of modified source code URL ([#4437], thanks @nooptek) |
| 105 | +* API: Fix URL for vtt subtitles ([#4221], thanks @karelrooted) |
| 106 | +* Channels: Add sort options to streams ([#4224], thanks @src-tinkerer) |
| 107 | +* API: Fix error code for disabled popular endpoint ([#4296], thanks @iBicha) |
| 108 | +* Allow embedding videos in local HTML files ([#4450], thanks @tomasz1986) |
| 109 | +* CI: Bump Crystal version matrix ([#4654], by @SamantazFox) |
| 110 | +* YtAPI: Remove API keys like official clients ([#4655], by @SamantazFox) |
| 111 | +* HTML: Use full URL in the og:image property ([#4675], thanks @Fijxu) |
| 112 | +* Rewrite transcript logic to be more generic ([#4747], thanks @syeopite) |
| 113 | +* CI: Run Ameba ([#4753], thanks @syeopite) |
| 114 | +* CI: Add release based containers ([#4763], thanks @syeopite) |
| 115 | +* move helm chart to a dedicated github repository ([#4711], thanks @unixfox) |
| 116 | + |
| 117 | +[#4146]: https://github.com/iv-org/invidious/pull/4146 |
| 118 | +[#4153]: https://github.com/iv-org/invidious/pull/4153 |
| 119 | +[#4221]: https://github.com/iv-org/invidious/pull/4221 |
| 120 | +[#4224]: https://github.com/iv-org/invidious/pull/4224 |
| 121 | +[#4295]: https://github.com/iv-org/invidious/pull/4295 |
| 122 | +[#4296]: https://github.com/iv-org/invidious/pull/4296 |
| 123 | +[#4437]: https://github.com/iv-org/invidious/pull/4437 |
| 124 | +[#4450]: https://github.com/iv-org/invidious/pull/4450 |
| 125 | +[#4586]: https://github.com/iv-org/invidious/pull/4586 |
| 126 | +[#4587]: https://github.com/iv-org/invidious/pull/4587 |
| 127 | +[#4654]: https://github.com/iv-org/invidious/pull/4654 |
| 128 | +[#4655]: https://github.com/iv-org/invidious/pull/4655 |
| 129 | +[#4659]: https://github.com/iv-org/invidious/pull/4659 |
| 130 | +[#4667]: https://github.com/iv-org/invidious/pull/4667 |
| 131 | +[#4675]: https://github.com/iv-org/invidious/pull/4675 |
| 132 | +[#4695]: https://github.com/iv-org/invidious/pull/4695 |
| 133 | +[#4696]: https://github.com/iv-org/invidious/pull/4696 |
| 134 | +[#4706]: https://github.com/iv-org/invidious/pull/4706 |
| 135 | +[#4711]: https://github.com/iv-org/invidious/pull/4711 |
| 136 | +[#4717]: https://github.com/iv-org/invidious/pull/4717 |
| 137 | +[#4731]: https://github.com/iv-org/invidious/pull/4731 |
| 138 | +[#4747]: https://github.com/iv-org/invidious/pull/4747 |
| 139 | +[#4753]: https://github.com/iv-org/invidious/pull/4753 |
| 140 | +[#4763]: https://github.com/iv-org/invidious/pull/4763 |
| 141 | +[#4772]: https://github.com/iv-org/invidious/pull/4772 |
| 142 | +[#4785]: https://github.com/iv-org/invidious/pull/4785 |
| 143 | +[#4789]: https://github.com/iv-org/invidious/pull/4789 |
| 144 | +[#4790]: https://github.com/iv-org/invidious/pull/4790 |
| 145 | +[#4792]: https://github.com/iv-org/invidious/pull/4792 |
| 146 | +[#4795]: https://github.com/iv-org/invidious/pull/4795 |
| 147 | +[#4796]: https://github.com/iv-org/invidious/pull/4796 |
| 148 | +[#4805]: https://github.com/iv-org/invidious/pull/4805 |
| 149 | +[#4806]: https://github.com/iv-org/invidious/pull/4806 |
| 150 | +[#4807]: https://github.com/iv-org/invidious/pull/4807 |
| 151 | +[#4812]: https://github.com/iv-org/invidious/pull/4812 |
| 152 | +[#4845]: https://github.com/iv-org/invidious/pull/4845 |
| 153 | +[#4849]: https://github.com/iv-org/invidious/pull/4849 |
| 154 | +[#4852]: https://github.com/iv-org/invidious/pull/4852 |
| 155 | +[#4853]: https://github.com/iv-org/invidious/pull/4853 |
| 156 | +[#4859]: https://github.com/iv-org/invidious/pull/4859 |
| 157 | +[#4876]: https://github.com/iv-org/invidious/pull/4876 |
| 158 | + |
| 159 | + |
3 | 160 | ## 2024-04-26
|
4 | 161 |
|
5 | 162 | Major bug fixes:
|
|
0 commit comments