Compare commits

..

7 Commits

Author SHA1 Message Date
gronod 4c9985e01a chore: bump version to 1.2.2, update CHANGELOG
Create Release / release (push) Successful in 15s
Build and Push Docker Image / build (push) Successful in 1m12s
CI / Security audit (push) Successful in 2m19s
CI / Tests & coverage (push) Successful in 2m40s
2026-05-17 21:22:02 +01:00
gronod fecb96b04e fix: correct width typo 56x -> 56px
Build and Push Docker Image / build (push) Successful in 29s
CI / Security audit (push) Successful in 1m34s
CI / Tests & coverage (push) Successful in 2m0s
2026-05-17 21:21:30 +01:00
gronod c98b81c8bd fix: Reduced size of logo to 56px for better balance 2026-05-17 21:21:30 +01:00
gronod 90bf411e0c Increased size of logo to 64px for better balance 2026-05-17 21:21:30 +01:00
gronod 867e86615e fix: increase header logo to 40px, use 192px source for crispness 2026-05-17 21:21:30 +01:00
gronod 2cbe3c6b76 feat: use favicon-192 for header logo, scale to 28px for visual parity with title text 2026-05-17 21:21:30 +01:00
gronod 59adcbc36e feat: add logo to header title link 2026-05-17 21:21:30 +01:00
4 changed files with 20 additions and 2 deletions
+8
View File
@@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
--- ---
## [1.2.2] - 2026-05-17
### Changed
- **Header logo** — uses the higher-resolution 192px favicon source rendered at 56px for better visual balance alongside the title text.
---
## [1.2.1] - 2026-05-17 ## [1.2.1] - 2026-05-17
### Added ### Added
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "sofarr", "name": "sofarr",
"version": "1.2.1", "version": "1.2.2",
"description": "A personal media download dashboard that shows your downloads 'so far' while you relax on the sofa waiting for your *arr services to finish", "description": "A personal media download dashboard that shows your downloads 'so far' while you relax on the sofa waiting for your *arr services to finish",
"main": "server/index.js", "main": "server/index.js",
"scripts": { "scripts": {
+1 -1
View File
@@ -46,7 +46,7 @@
<!-- Dashboard --> <!-- Dashboard -->
<div id="dashboard-container" class="dashboard-container" style="display: none;"> <div id="dashboard-container" class="dashboard-container" style="display: none;">
<header class="app-header"> <header class="app-header">
<h1><a href="https://git.i3omb.com/Gandalf/sofarr" target="_blank" rel="noopener noreferrer" class="title-link">sofarr</a></h1> <h1><a href="https://git.i3omb.com/Gandalf/sofarr" target="_blank" rel="noopener noreferrer" class="title-link"><img src="favicon-192.png" alt="" class="title-logo">sofarr</a></h1>
<div class="header-controls"> <div class="header-controls">
<div class="theme-switcher"> <div class="theme-switcher">
<button class="theme-btn active" data-theme="light">Light</button> <button class="theme-btn active" data-theme="light">Light</button>
+10
View File
@@ -875,6 +875,9 @@ body {
.title-link { .title-link {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
} }
.title-link:hover { .title-link:hover {
@@ -882,6 +885,13 @@ body {
text-underline-offset: 3px; text-underline-offset: 3px;
} }
.title-logo {
width: 56px;
height: 56px;
display: block;
flex-shrink: 0;
}
/* ===== Login ===== */ /* ===== Login ===== */
.login-container { .login-container {
display: flex; display: flex;