-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(ent): sessions table * feat(auth): use sessions for local login instead of jwt * start standardizing http responses * fix(ent): remove omitempty for watched channels * rename env var * feat(auth): refactor oauth to use sessions * additional standardizing responses * update river * feat: wip new frontend * api updates * On v4: wip-rebase * rebase * rebase issue * remove unused tests * misc fixes * disable arm for quicker dev builds * fix * push * fix * remove unused jwt logic * add supervisord to container * fix channel get * use inter font * fix theme flicker * maybe fix styling? * fix archive buttons * more frontend changes * fix tsc * use web thumbnail for queue header * frontend cleanup * convert more api responses to standard format * feat(ent): clip support * clip support * tests will be fixed later * add clips section below video if video has clips * fix build issue * add index to contrain vod_id and user_id * revert * feat: sprite thumbnails Twitch VODs that have sprite thumbnails will download them. Live streams and other videos can optionally create sprite thumbnails in the video menu Still need to tinker with the quality settings * fix lint * run on start * only download thumbnail sprites if archive * move live stream check to task system * bump packge versions * bump docker go version * add task to generate sprites automatically if enabled * fix lint * mark sprite thumbnails as experimental + add task to generate for all videos * improve mobile layout for watching videos * fix(tasks): use the generate thumbnail queue * reimplement multistream view * re-enable arm64 docker images * feat: embed riverui in server * feat: chat histogram * do not show histogram for clips * remove unused env vars * docs update * set dev image tag * remove duplicate push
- Loading branch information
Showing
264 changed files
with
30,642 additions
and
3,968 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
FROM mcr.microsoft.com/devcontainers/go:1 | ||
|
||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get -y install --no-install-recommends ffmpeg python3 python3-pip \ | ||
&& apt-get -y install --no-install-recommends ffmpeg \ | ||
&& apt-get clean -y && rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip3 install --no-cache --upgrade --break-system-packages pip streamlink chat-downloader | ||
|
||
WORKDIR /tmp | ||
|
||
RUN wget https://github.com/rsms/inter/releases/download/v4.0-beta7/Inter-4.0-beta7.zip && unzip Inter-4.0-beta7.zip && mkdir -p /usr/share/fonts/opentype/inter/ && cp /tmp/Desktop/Inter-*.otf /usr/share/fonts/opentype/inter/ && fc-cache -f -v | ||
RUN wget https://github.com/rsms/inter/releases/download/v4.1/Inter-4.1.zip && unzip Inter-4.1.zip && mkdir -p /usr/share/fonts/opentype/inter/ && cp /tmp/extras/otf/Inter-*.otf /usr/share/fonts/opentype/inter/ && fc-cache -f -v | ||
|
||
RUN wget https://github.com/lay295/TwitchDownloader/releases/download/1.55.0/TwitchDownloaderCLI-1.55.0-Linux-x64.zip && unzip TwitchDownloaderCLI-1.55.0-Linux-x64.zip && mv TwitchDownloaderCLI /usr/local/bin/ && chmod +x /usr/local/bin/TwitchDownloaderCLI && rm TwitchDownloaderCLI-1.55.0-Linux-x64.zip | ||
|
||
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.50.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
.github | ||
dev | ||
tmp | ||
bin | ||
bin | ||
/frontend/node_modules | ||
/frontend/.pnp | ||
/frontend/.pnp.* | ||
/frontend/.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/versions | ||
/coverage | ||
/frontend/.next/ | ||
/out/ | ||
/build | ||
/frontend/npm-debug.log* | ||
/frontend/yarn-debug.log* | ||
/frontend/yarn-error.log* | ||
/frontend/.env* | ||
/frontend/*.tsbuildinfo | ||
/frontend/next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.