Any parameters given in ¶ms=... are appended to /watch URLs. This
allows e.g. passing &raw=1&listen=1 to a playlist of music and use an
rss reader like newsboat as a media player, like so:
https://invidio.us/feed/playlist/XXX?params=%26raw%3D1%listen%3D1
All three feeds--channels, playlists, subscriptions--are supported.
This fixes a compilation error if too many commits were made after the
most recent tag:
fatal: No names found, cannot describe anything.
In src/invidious.cr:60:19
60 | CURRENT_VERSION = {{ "#{`git describe --tags --abbrev=0`.strip}" }}
Error: expanding macro
See https://travis-ci.org/leonklingele/invidious/jobs/588672881#L275-L290.
* shard: update to crystal 0.31.0
Additionally, no longer use the Crystal "markdown" library which has
been removed from the Crystal stdlib in version 0.31.0.
See https://github.com/crystal-lang/crystal/pull/8115.
Also fix some deprecation warnings using the following commands:
find . \( -type d -name .git -prune \) -o -type f -exec sed -i 's/URI\.escape/URI\.encode_www_form/g' "{}" \;
find . \( -type d -name .git -prune \) -o -type f -exec sed -i 's/URI\.unescape/URI\.decode_www_form/g' "{}" \;
sed -i 's/while \%pull\.kind \!\= \:end_object/until \%pull\.kind\.end_object\?/g' src/invidious/helpers/patch_mapping.cr
instead of a single infobox only for welcome, allow multiple infoboxes
to be dismissed independently of each other.
it'd be best to use a hash or array for storing these values, but then
the state does not clear properly between sessions.
since signing up through the big button on the welcome message leads to
/data_control, it needs a message on what to do next. the most common
option here is importing subscriptions from youtube, hence it was moved
to the top.
the rather inconspicuous link to google's support pages was replaced by
a infobox that instructs the user to click a link to download a file and
upload it on this page.