docs: add application screenshots and interactive gallery
- Captured clean, full-page screenshots of all major application views - Added an interactive HTML slide deck gallery for previewing features - Created a high-resolution mosaic and a smaller preview mosaic - Generated a Python script to automate mosaic creation - Updated README.md with prominent links to the gallery and screenshots - Added accessibility attributes (role="button", tabindex="0") to calendar rows Made-with: Cursor
215
docs/gallery.html
Normal file
@@ -0,0 +1,215 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Plymouth Independent Weekly - Gallery</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #1a1a1a;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
.header {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.header h1 { margin: 0 0 10px 0; font-weight: 500; }
|
||||
.header p { margin: 0; color: #aaa; }
|
||||
|
||||
.gallery-container {
|
||||
position: relative;
|
||||
width: 90%;
|
||||
max-width: 1200px;
|
||||
background: #2a2a2a;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.slides {
|
||||
display: flex;
|
||||
transition: transform 0.4s ease-in-out;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.slide {
|
||||
min-width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.slide img {
|
||||
max-width: 100%;
|
||||
max-height: 70vh;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.slide-caption {
|
||||
margin-top: 15px;
|
||||
font-size: 1.2em;
|
||||
color: #ddd;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: rgba(0,0,0,0.5);
|
||||
color: white;
|
||||
border: none;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: background 0.2s;
|
||||
z-index: 10;
|
||||
}
|
||||
.nav-btn:hover { background: rgba(0,0,0,0.8); }
|
||||
.prev-btn { left: 20px; }
|
||||
.next-btn { right: 20px; }
|
||||
|
||||
.thumbnails {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 20px;
|
||||
padding: 10px;
|
||||
overflow-x: auto;
|
||||
max-width: 90%;
|
||||
}
|
||||
.thumb {
|
||||
width: 80px;
|
||||
height: 60px;
|
||||
object-fit: cover;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: opacity 0.2s, transform 0.2s;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
.thumb:hover { opacity: 0.8; }
|
||||
.thumb.active {
|
||||
opacity: 1;
|
||||
border-color: #007bff;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.back-link {
|
||||
margin-top: 30px;
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.back-link:hover { text-decoration: underline; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<h1>Plymouth Independent Weekly</h1>
|
||||
<p>Application Gallery</p>
|
||||
</div>
|
||||
|
||||
<div class="gallery-container">
|
||||
<button class="nav-btn prev-btn" onclick="moveSlide(-1)">❮</button>
|
||||
<div class="slides" id="slides">
|
||||
<div class="slide">
|
||||
<img src="screenshots/01-dashboard.png" alt="Dashboard">
|
||||
<div class="slide-caption">1. Dashboard Overview</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/02-articles.png" alt="Articles">
|
||||
<div class="slide-caption">2. Articles List & Filtering</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/03-publish.png" alt="Publish Single Week">
|
||||
<div class="slide-caption">3. Publish - Single Week Selection</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/04-publish_multi_week.png" alt="Publish Multi-Week">
|
||||
<div class="slide-caption">4. Publish - Multi-Week Range</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/05-publish_single_article.png" alt="Publish Single Article">
|
||||
<div class="slide-caption">5. Publish - Single Article</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/06-issues.png" alt="Issues Archive">
|
||||
<div class="slide-caption">6. Issues Archive</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/07-reader.png" alt="Web Reader">
|
||||
<div class="slide-caption">7. Built-in Web Reader</div>
|
||||
</div>
|
||||
<div class="slide">
|
||||
<img src="screenshots/08-settings.png" alt="Settings">
|
||||
<div class="slide-caption">8. Application Settings</div>
|
||||
</div>
|
||||
</div>
|
||||
<button class="nav-btn next-btn" onclick="moveSlide(1)">❯</button>
|
||||
</div>
|
||||
|
||||
<div class="thumbnails" id="thumbnails">
|
||||
<img src="screenshots/01-dashboard.png" class="thumb active" onclick="setSlide(0)">
|
||||
<img src="screenshots/02-articles.png" class="thumb" onclick="setSlide(1)">
|
||||
<img src="screenshots/03-publish.png" class="thumb" onclick="setSlide(2)">
|
||||
<img src="screenshots/04-publish_multi_week.png" class="thumb" onclick="setSlide(3)">
|
||||
<img src="screenshots/05-publish_single_article.png" class="thumb" onclick="setSlide(4)">
|
||||
<img src="screenshots/06-issues.png" class="thumb" onclick="setSlide(5)">
|
||||
<img src="screenshots/07-reader.png" class="thumb" onclick="setSlide(6)">
|
||||
<img src="screenshots/08-settings.png" class="thumb" onclick="setSlide(7)">
|
||||
</div>
|
||||
|
||||
<a href="../README.md" class="back-link">← Back to README</a>
|
||||
|
||||
<script>
|
||||
let currentSlide = 0;
|
||||
const slides = document.getElementById('slides');
|
||||
const totalSlides = document.querySelectorAll('.slide').length;
|
||||
const thumbs = document.querySelectorAll('.thumb');
|
||||
|
||||
function updateGallery() {
|
||||
slides.style.transform = `translateX(-${currentSlide * 100}%)`;
|
||||
thumbs.forEach((t, i) => {
|
||||
t.classList.toggle('active', i === currentSlide);
|
||||
});
|
||||
}
|
||||
|
||||
function moveSlide(direction) {
|
||||
currentSlide = (currentSlide + direction + totalSlides) % totalSlides;
|
||||
updateGallery();
|
||||
}
|
||||
|
||||
function setSlide(index) {
|
||||
currentSlide = index;
|
||||
updateGallery();
|
||||
}
|
||||
|
||||
// Keyboard navigation
|
||||
document.addEventListener('keydown', (e) => {
|
||||
if (e.key === 'ArrowLeft') moveSlide(-1);
|
||||
if (e.key === 'ArrowRight') moveSlide(1);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
35
docs/screenshots.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# Plymouth Independent Weekly - Screenshots
|
||||
|
||||
Here is a detailed look at the various screens and features of the application.
|
||||
|
||||
## 1. Dashboard
|
||||
The main dashboard provides an overview of the scheduler status and the latest generated issue.
|
||||

|
||||
|
||||
## 2. Articles
|
||||
The articles view lists all fetched articles and allows filtering by week and category.
|
||||

|
||||
|
||||
## 3. Publish - Single Week
|
||||
The publish screen features a combined week selector. Here, a single week is selected.
|
||||

|
||||
|
||||
## 4. Publish - Multi-Week Range
|
||||
The combined week selector also allows selecting a range of weeks to compile into a single issue.
|
||||

|
||||
|
||||
## 5. Publish - Single Article
|
||||
You can also choose to publish a single article as a standalone issue.
|
||||

|
||||
|
||||
## 6. Issues Archive
|
||||
The issues archive lists all generated issues, allowing you to read, download, push to a library, or regenerate them.
|
||||

|
||||
|
||||
## 7. Web Reader
|
||||
The built-in web reader provides a clean, distraction-free reading experience for generated issues.
|
||||

|
||||
|
||||
## 8. Settings
|
||||
The settings screen allows you to configure the RSS feed, auto-publish schedule, and ePub cover dimensions.
|
||||

|
||||
BIN
docs/screenshots/01-dashboard.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
docs/screenshots/02-articles.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
docs/screenshots/03-publish.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
docs/screenshots/04-publish_multi_week.png
Normal file
|
After Width: | Height: | Size: 166 KiB |
BIN
docs/screenshots/05-publish_single_article.png
Normal file
|
After Width: | Height: | Size: 218 KiB |
BIN
docs/screenshots/06-issues.png
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
docs/screenshots/07-reader.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
docs/screenshots/08-settings.png
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
docs/screenshots/mosaic_large.png
Normal file
|
After Width: | Height: | Size: 980 KiB |
BIN
docs/screenshots/mosaic_small.png
Normal file
|
After Width: | Height: | Size: 164 KiB |