docs: Update CLAUDE.md with three-tier architecture and new providers

- Added new video players: Vidzy, LuLuvid, Uqload
- Added new anime site: French-Manga
- Added new series sites category with FS7
- Updated documentation to reflect three-tier architecture (anime sites → series sites → video players)
- Added BaseSeriesSite interface documentation
- Added "Adding New Series Site" section
- Updated test organization with test_french_manga.py

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
root
2026-01-25 10:34:39 +00:00
parent 3afad41d46
commit 4d280b5239
16 changed files with 1507 additions and 53 deletions
+117 -5
View File
@@ -78,6 +78,9 @@
display: inline-flex;
align-items: center;
gap: 6px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
button svg {
@@ -103,6 +106,9 @@
.btn-small {
padding: 6px 12px;
font-size: 11px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.btn-pause {
@@ -301,6 +307,8 @@
align-items: center;
margin-bottom: 20px;
margin-top: 40px;
gap: 15px;
flex-wrap: wrap;
}
.section-header h2 {
@@ -309,6 +317,8 @@
background: linear-gradient(45deg, #00d9ff, #00ff88);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
flex: 1;
min-width: 0;
}
.downloads-stats {
@@ -338,6 +348,7 @@
padding: 15px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.08);
overflow-x: auto;
}
.filter-group {
@@ -360,7 +371,8 @@
background: rgba(0, 0, 0, 0.3);
color: #fff;
font-size: 13px;
min-width: 120px;
min-width: 100px;
max-width: 200px;
}
.filter-group select:focus,
@@ -370,7 +382,8 @@
}
.search-group input {
min-width: 200px;
min-width: 150px;
width: 150px;
}
.actions-group {
@@ -641,6 +654,51 @@
.supported-hosts {
gap: 6px;
}
/* Responsive filters */
.downloads-controls {
flex-direction: column;
gap: 10px;
}
.filter-group {
width: 100%;
}
.filter-group select,
.filter-group input {
width: 100%;
min-width: unset;
max-width: unset;
}
.search-group input {
width: 100%;
min-width: unset;
}
.actions-group {
margin-left: 0;
width: 100%;
}
.actions-group button {
width: 100%;
}
/* Responsive horizontal cards */
.anime-card-horizontal {
width: 180px;
max-width: 85vw;
}
.anime-card-horizontal .anime-card-actions {
flex-direction: column;
}
.anime-card-horizontal .anime-card-actions button {
width: 100%;
}
}
@media (max-width: 480px) {
@@ -658,6 +716,38 @@
width: 12px;
height: 12px;
}
/* Even smaller horizontal cards */
.anime-card-horizontal {
width: 160px;
max-width: 80vw;
}
.anime-card-horizontal .anime-card-title {
font-size: 12px;
}
/* Responsive tabs */
.tab {
padding: 8px 12px;
font-size: 12px;
}
/* Section header responsive */
.section-header {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.section-header h2 {
font-size: 1.4em;
}
/* Search results grid */
.search-results {
grid-template-columns: 1fr;
}
}
/* Recommendations & Releases Cards */
@@ -778,13 +868,15 @@
.anime-card-horizontal {
flex: 0 0 auto;
width: 200px;
width: 220px;
max-width: 90vw;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s;
cursor: pointer;
overflow: hidden;
}
.recommendation-card {
@@ -821,6 +913,11 @@
color: #fff;
flex: 1;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.anime-card-horizontal .anime-card-rating {
@@ -900,9 +997,12 @@
.anime-card-horizontal .anime-card-actions button {
flex: 1;
padding: 6px 10px;
font-size: 11px;
padding: 6px 8px;
font-size: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.anime-card-horizontal .anime-synopsis {
@@ -1252,3 +1352,15 @@
grid-template-columns: 1fr;
}
}
/* Large screens optimization */
@media (min-width: 1400px) {
.container {
max-width: 1200px;
}
.recommendations-carousel,
.releases-carousel {
justify-content: flex-start;
}
}