3
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
videos
|
||||
chaturbate-dvr
|
||||
conf
|
||||
conf
|
||||
bin
|
||||
@ -1,6 +1,6 @@
|
||||
# Chaturbate DVR
|
||||
|
||||
A tool to record **multiple** Chaturbate streams. Supports macOS, Windows, Linux, and Docker.
|
||||
A tool to record **multiple** Chaturbate streams. Supports macOS, Windows, Linux, and Docker. Favicon from [Twemoji](https://github.com/twitter/twemoji).
|
||||
|
||||

|
||||
|
||||
|
||||
@ -26,9 +26,10 @@ GOOS=linux GOARCH=arm64 go build -o bin/arm64_linux_chatubrate-dvr
|
||||
```
|
||||
|
||||
Build Docker Tag:
|
||||
s
|
||||
|
||||
```
|
||||
docker build -t yamiodymel/chaturbate-dvr:2.0.0 .
|
||||
docker push yamiodymel/chaturbate-dvr:2.0.0
|
||||
docker image tag yamiodymel/chaturbate-dvr:2.0.0 yamiodymel/chaturbate-dvr:latest
|
||||
docker push yamiodymel/chaturbate-dvr:latest
|
||||
```
|
||||
|
||||
BIN
router/view/templates/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
router/view/templates/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
router/view/templates/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
router/view/templates/favico.png
Normal file
|
After Width: | Height: | Size: 513 B |
BIN
router/view/templates/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 482 B |
BIN
router/view/templates/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 893 B |
BIN
router/view/templates/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
@ -10,6 +10,10 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap" rel="stylesheet" />
|
||||
<script src="/static/scripts/htmx.min.js" crossorigin="anonymous"></script>
|
||||
<script src="/static/scripts/sse.min.js" crossorigin="anonymous"></script>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
|
||||
<link rel="manifest" href="/static/site.webmanifest">
|
||||
<title>Chaturbate DVR</title>
|
||||
</head>
|
||||
|
||||
|
||||
1
router/view/templates/site.webmanifest
Normal file
@ -0,0 +1 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
||||