Merge branch 'master' into testing
|
@ -1,6 +1,6 @@
|
|||
![Tube Archivist](assets/tube-archivist-banner.jpg?raw=true "Tube Archivist Banner")
|
||||
![Tube Archivist](assets/tube-archivist-front.jpg?raw=true "Tube Archivist Banner")
|
||||
[*more screenshots and video*](SHOWCASE.MD)
|
||||
|
||||
<h1 align="center">Your self hosted YouTube media server</h1>
|
||||
<div align="center">
|
||||
<a href="https://github.com/bbilly1/tilefy" target="_blank"><img src="https://tiles.tilefy.me/t/tubearchivist-docker.png" alt="tubearchivist-docker" title="Tube Archivist Docker Pulls" height="50" width="190"/></a>
|
||||
<a href="https://github.com/bbilly1/tilefy" target="_blank"><img src="https://tiles.tilefy.me/t/tubearchivist-github-star.png" alt="tubearchivist-github-star" title="Tube Archivist GitHub Stars" height="50" width="190"/></a>
|
||||
|
@ -8,9 +8,6 @@
|
|||
<a href="https://www.tubearchivist.com/discord" target="_blank"><img src="https://tiles.tilefy.me/t/tubearchivist-discord.png" alt="tubearchivist-discord" title="TA Discord Server Members" height="50" width="190"/></a>
|
||||
</div>
|
||||
|
||||
![home screenshot](assets/tube-archivist-screenshot-home.png?raw=true "Tube Archivist Home")
|
||||
[*more screenshots and video*](SHOWCASE.MD)
|
||||
|
||||
## Table of contents:
|
||||
* [Docs](https://docs.tubearchivist.com/) with [FAQ](https://docs.tubearchivist.com/faq/), and API documentation
|
||||
* [Core functionality](#core-functionality)
|
||||
|
|
18
SHOWCASE.MD
|
@ -3,17 +3,23 @@
|
|||
Video featuring Tube Archivist generously created by [IBRACORP](https://www.youtube.com/@IBRACORP).
|
||||
|
||||
## Screenshots
|
||||
![home screenshot](assets/tube-archivist-screenshot-home.png?raw=true "Tube Archivist Home")
|
||||
![login screenshot](assets/tube-archivist-login.png?raw=true "Tube Archivist Login")
|
||||
*Login Page*: Secure way to access your media collection.
|
||||
|
||||
![home screenshot](assets/tube-archivist-home.png?raw=true "Tube Archivist Home")
|
||||
*Home Page*: Your recent videos, continue watching incomplete videos.
|
||||
|
||||
![channels screenshot](assets/tube-archivist-screenshot-channels.png?raw=true "Tube Archivist Channels")
|
||||
![channels screenshot](assets/tube-archivist-channels.png?raw=true "Tube Archivist Channels")
|
||||
*All Channels*: A list of all your indexed channels, filtered by subscribed only.
|
||||
|
||||
![single channel screenshot](assets/tube-archivist-screenshot-single-channel.png?raw=true "Tube Archivist Single Channel")
|
||||
![single channel screenshot](assets/tube-archivist-single-channel.png?raw=true "Tube Archivist Single Channel")
|
||||
*Single Channel*: Single channel page with additional metadata and sub pages.
|
||||
|
||||
![video page screenshot](assets/tube-archivist-screenshot-video.png?raw=true "Tube Archivist Video Page")
|
||||
![video page screenshot](assets/tube-archivist-video.png?raw=true "Tube Archivist Video Page")
|
||||
*Video Page*: Stream your video directly from the interface.
|
||||
|
||||
![video page screenshot](assets/tube-archivist-screenshot-download.png?raw=true "Tube Archivist Video Page")
|
||||
*Downloads Page*: Add, control and monitor your download queue.
|
||||
![video page screenshot](assets/tube-archivist-download.png?raw=true "Tube Archivist Video Page")
|
||||
*Downloads Page*: Add, control, and monitor your download queue.
|
||||
|
||||
![search page screenshot](assets/tube-archivist-search.png?raw=true "Tube Archivist Search Page")
|
||||
*Search Page*. Use expressions to quickly search through your collection.
|
||||
|
|
Before Width: | Height: | Size: 49 KiB |
BIN
assets/tube-archivist-channels.png
Normal file
After Width: | Height: | Size: 516 KiB |
BIN
assets/tube-archivist-download.png
Normal file
After Width: | Height: | Size: 541 KiB |
BIN
assets/tube-archivist-front.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/tube-archivist-home.png
Normal file
After Width: | Height: | Size: 578 KiB |
BIN
assets/tube-archivist-login.png
Normal file
After Width: | Height: | Size: 106 KiB |
Before Width: | Height: | Size: 131 KiB |
Before Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 174 KiB |
Before Width: | Height: | Size: 166 KiB |
Before Width: | Height: | Size: 238 KiB |
BIN
assets/tube-archivist-search.png
Normal file
After Width: | Height: | Size: 96 KiB |
BIN
assets/tube-archivist-single-channel.png
Normal file
After Width: | Height: | Size: 716 KiB |
BIN
assets/tube-archivist-video.png
Normal file
After Width: | Height: | Size: 684 KiB |
|
@ -1213,10 +1213,10 @@ function toggleCommentReplies(button) {
|
|||
|
||||
if (state === 'none' || state === '') {
|
||||
document.getElementById(commentReplyId).style.display = 'block';
|
||||
button.querySelector('#toggle-icon').innerHTML = '-';
|
||||
button.querySelector('#toggle-icon').innerHTML = '▲';
|
||||
} else {
|
||||
document.getElementById(commentReplyId).style.display = 'none';
|
||||
button.querySelector('#toggle-icon').innerHTML = '+';
|
||||
button.querySelector('#toggle-icon').innerHTML = '▼';
|
||||
}
|
||||
}
|
||||
|
||||
|
|