make makefile slightly prettier, update invidious frontend
This commit is contained in:
parent
10fca6af34
commit
40da9afd4d
8
makefile
8
makefile
|
@ -32,8 +32,10 @@ RUNTIME_FILES_DIR=/opt/rosenrot/
|
||||||
|
|
||||||
build: $(SRC) $(PLUGINS) $(CONFIG) constants user_cache
|
build: $(SRC) $(PLUGINS) $(CONFIG) constants user_cache
|
||||||
$(CC) $(STD) $(WARNINGS) $(OPTIMIZED_MORE) $(DEBUG) $(INCS) $(PLUGINS) $(SRC) -o rosenrot $(LIBS) $(ADBLOCK)
|
$(CC) $(STD) $(WARNINGS) $(OPTIMIZED_MORE) $(DEBUG) $(INCS) $(PLUGINS) $(SRC) -o rosenrot $(LIBS) $(ADBLOCK)
|
||||||
|
@echo
|
||||||
|
|
||||||
constants:
|
constants:
|
||||||
|
@echo
|
||||||
@echo "# Computing constants"
|
@echo "# Computing constants"
|
||||||
cd plugins/readability/ && sh recompute_READABILITY_N.sh
|
cd plugins/readability/ && sh recompute_READABILITY_N.sh
|
||||||
cd plugins/style && sh recompute_STYLE_N.sh
|
cd plugins/style && sh recompute_STYLE_N.sh
|
||||||
|
@ -43,11 +45,12 @@ user_cache:
|
||||||
@if [ `id -u` -eq 0 ]; then echo "can't run make user_cache with sudo, because USER_CACHE_DIR would be /home/root/.cache"; return 1; fi
|
@if [ `id -u` -eq 0 ]; then echo "can't run make user_cache with sudo, because USER_CACHE_DIR would be /home/root/.cache"; return 1; fi
|
||||||
@echo "# Create user cache"
|
@echo "# Create user cache"
|
||||||
mkdir -p $(USER_CACHE_DIR)
|
mkdir -p $(USER_CACHE_DIR)
|
||||||
find . -type f -not -path "*.git*" -not -path "*makefile*" -exec \
|
find . -type f -not -path "*.git*" -not -path "*makefile*" \
|
||||||
sed -i "s|$(MAINTAINER_CACHE_DIR)|$(USER_CACHE_DIR)|g" {} +
|
-exec sed -i "s|$(MAINTAINER_CACHE_DIR)|$(USER_CACHE_DIR)|g" {} +
|
||||||
@echo
|
@echo
|
||||||
|
|
||||||
runtime_files:
|
runtime_files:
|
||||||
|
@echo
|
||||||
sudo mkdir -p /opt/rosenrot/
|
sudo mkdir -p /opt/rosenrot/
|
||||||
sudo cp style.css /opt/rosenrot/
|
sudo cp style.css /opt/rosenrot/
|
||||||
sudo cp -r images/flower-imgs /opt/rosenrot/
|
sudo cp -r images/flower-imgs /opt/rosenrot/
|
||||||
|
@ -57,6 +60,7 @@ runtime_files:
|
||||||
install: rosenrot runtime_files
|
install: rosenrot runtime_files
|
||||||
cp -f rosenrot /usr/bin
|
cp -f rosenrot /usr/bin
|
||||||
cp rosenrot-mklink /usr/bin
|
cp rosenrot-mklink /usr/bin
|
||||||
|
@echo
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -r /opt/rosenrot
|
rm -r /opt/rosenrot
|
||||||
|
|
|
@ -34,7 +34,7 @@ int libre_redirect(const char* uri, char* output)
|
||||||
// previously: "https://old.reddit.com", "https://teddit.nunosempere.com",
|
// previously: "https://old.reddit.com", "https://teddit.nunosempere.com",
|
||||||
// https://github.com/redlib-org/redlib-instances/blob/main/instances.md
|
// https://github.com/redlib-org/redlib-instances/blob/main/instances.md
|
||||||
"https://vitalik.eth.limo",
|
"https://vitalik.eth.limo",
|
||||||
"https://invidious.private.coffee",
|
"https://iv.melmac.space/",
|
||||||
"https://search.nunosempere.com",
|
"https://search.nunosempere.com",
|
||||||
"https://scribe.rip",
|
"https://scribe.rip",
|
||||||
"https://translate.riverside.rocks",
|
"https://translate.riverside.rocks",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user