Skip to content

Refactor/redesign Invidious frontend #5259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ get-libs:
invidious: get-libs
crystal build src/invidious.cr $(FLAGS) --progress --stats --error-trace


run: invidious
./invidious

Expand All @@ -73,6 +72,12 @@ verify:
crystal build src/invidious.cr -Dskip_videojs_download \
--no-codegen --progress --stats --error-trace

dev:
crystal build src/invidious.cr -Dskip_videojs_download \
--no-codegen --progress --stats --error-trace -- --disable-static-cache

dev-reload:
tree -fiA --prune --noreport src | entr -rd make dev

# -----------------------
# (Un)Install
Expand Down Expand Up @@ -125,4 +130,4 @@ help:

# No targets generates an output named after themselves
.PHONY: all get-libs build amd64 run
.PHONY: format test verify clean distclean help
.PHONY: format test verify dev dev-reload clean distclean help
9 changes: 9 additions & 0 deletions assets/css/animation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@keyframes spin {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}
Loading