summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-09-24Update to Crystal 0.31.0, resolve compiler deprecation warnings, update ↵leonklingele
dependencies (#764) * 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
2019-09-22Fix typo in Google loginOmar Roth
2019-09-21Update videojs-quality-selectorOmar Roth
2019-09-21Add additional handling for unplayable videosOmar Roth
2019-09-21Update Google loginOmar Roth
2019-09-14Merge pull request #752 from gnomus/masterOmar Roth
[Fix][Docker] Update Package Repository for Install
2019-09-13Update Package Repository for Installgnomus
2019-09-12Update sub_count extractorOmar Roth
2019-09-12Hide video count for auto-generated channelsOmar Roth
2019-09-12Add support for abbreviated sub count in searchOmar Roth
2019-09-12Filter movies from recommended videosOmar Roth
2019-09-09Fix plurilzation regexOmar Roth
2019-09-08Add support for channel redirectsOmar Roth
2019-09-07Fix map for recommended videosOmar Roth
2019-09-07Fix extractor for short_view_count_textOmar Roth
2019-09-05Refactor error handling for API endpointsOmar Roth
2019-09-04Shrink continuation cursor for YouTube commentsOmar Roth
2019-09-03Update Spanish translationJorge Maldonado Ventura
2019-09-03Update French translationSwann Martinet
2019-09-03Update German translationSwann Martinet
2019-09-03Update Norwegian Bokmål translationAllan Nordhøy
2019-09-03Update Esperanto translationJorge Maldonado Ventura
2019-09-03Update Arabic translationButterflyOfFire
2019-09-03Update ar.json (#728)Esmail EL BoB
* Update ar.json
2019-09-03Italian translation update (#724)unbranched
* Italian translation update
2019-09-01Merge pull request #729 from Infinisil/migrateOmar Roth
Provide db user in migrate-db-3646395.sh
2019-09-01Merge pull request #675 from Dragnucs/patch-1Omar Roth
Add Postgres health check
2019-08-31Fix nillable for recommendedVideosOmar Roth
2019-08-31Fix invalid viewCountText in related videosOmar Roth
2019-08-31Fix type cast for viewCountOmar Roth
2019-08-31fix docker build (#734)tleydxdy
2019-08-29Provide db user in migrate-db-3646395.shSilvan Mosberger
2019-08-27Handle redirects in /videoplaybackOmar Roth
2019-08-27Refactor search paramsOmar Roth
2019-08-27Flatten viewCountTextOmar Roth
2019-08-27Minor refactorOmar Roth
2019-08-27Bump JS/CSS dependenciesOmar Roth
2019-08-27Update recommended videos extractorOmar Roth
2019-08-21Add 'playlistThumbnail' to playlist objectsOmar Roth
2019-08-21Use accurate sub count when availableOmar Roth
2019-08-21Refactor search extractorOmar Roth
2019-08-19Fix allowed_regions for globally blocked videosOmar Roth
2019-08-18js: add support to detect alt, meta and control key in keydown handler (#704)leonklingele
This fixes a quite severe user experience issue where pressing the 'alt', 'meta' and/or 'ctrl' key along with one of the supported keys (e.g. 'f' to enter video fullscreen mode) would overwrite the default browser behavior. In the case of 'f+meta' we would enter fullscreen mode, and not open the browser search panel as one might expect. This change is required to stay consistent with the way YouTube handles keydown events.
2019-08-16Fix playlist_thumbnail extractorOmar Roth
2019-08-16js: add support for keydown events (#678)leonklingele
* js: add support for keydown events This will modify the player behavior even if the player element is unfocused. Based on the YouTube key bindings, allow to - toggle playback with space and 'k' key - increase and decrease player volume with up / down arrow key - mute and unmute player with 'm' key - jump forwards and backwards by 5 seconds with right / left arrow key - jump forwards and backwards by 10 seconds with 'l' / 'j' key - set video progress with number keys 0–9 - toggle captions with 'c' key - toggle fullscreen mode with 'f' key - play next video with 'N' key - increase and decrease playback speed with '>' / '<' key * js: remove unused dependency 'videojs.hotkeys.min.js' Support for controlling the player volume by scrolling over it is still retained by copying over the relevant code part from the aforementioned library.
2019-08-16Change font family to better native selection (#679)Dragnucs
2019-08-16Fix season playlistsOmar Roth
2019-08-15Add prefers-color-scheme support (#601)psvenk
* Add prefers-color-scheme support This should fix <https://github.com/omarroth/invidious/issues/559>. The cookie storage format has been changed from boolean ("true"/"false") to tri-state ("dark"/"light"/""), so that users without a cookie set will get dark mode if they have enabled the dark theme in their operating system. The code for handling the cookie state, along with the user's operating system theme, has been factored out into a new function `update_mode`, which is called both at window load and at the "storage" event listener, because the "storage" event listener is only trigerred when a change is made to the localStorage from another tab/window (for more info - see <https://stackoverflow.com/a/4679754>).
2019-08-14Merge pull request #694 from 2secslater/player-preferences-typo-fixOmar Roth
Fix annoying typo in Preferences view for the player view
2019-08-14Merge pull request #698 from leonklingele/docker-build-on-alpine-edgeOmar Roth
docker: use alpine:edge base image for building