Skip to content

Commit aab26e3

Browse files
authored
Merge pull request #1640 from shlinkio/develop
Release 4.5.1
2 parents 0dc6d70 + 655ded5 commit aab26e3

File tree

10 files changed

+459
-456
lines changed

10 files changed

+459
-456
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [4.5.1] - 2025-08-13
8+
### Added
9+
* *Nothing*
10+
11+
### Changed
12+
* *Nothing*
13+
14+
### Deprecated
15+
* *Nothing*
16+
17+
### Removed
18+
* *Nothing*
19+
20+
### Fixed
21+
* [#1637](https://github.com/shlinkio/shlink-web-client/issues/1637) Fix brand color used in PWA
22+
* [#1636](https://github.com/shlinkio/shlink-web-client/issues/1636) Make sure sidebar toggle is rendered only in sections where the sidebar exists.
23+
24+
725
## [4.5.0] - 2025-08-08
826
### Added
927
* [shlink-web-component#755](https://github.com/shlinkio/shlink-web-component/issues/755) Add support for `any-value-query-param` and `valueless-query-param` redirect conditions when using Shlink >=4.5.0.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:24.4-alpine AS node
1+
FROM node:24.5-alpine AS node
22
COPY . /shlink-web-client
33
ARG VERSION="latest"
44
ENV VERSION=${VERSION}

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6-
<meta name="theme-color" content="#4696e5">
6+
<meta name="theme-color" content="#2078CF" media="(prefers-color-scheme: light)">
7+
<meta name="theme-color" content="#0B2D4E" media="(prefers-color-scheme: dark)">
78

89
<!--
910
manifest.json provides metadata used when your web app is added to the

manifest.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1+
import { BRAND_COLOR_LM } from '@shlinkio/shlink-frontend-kit';
12
import type { ManifestOptions } from 'vite-plugin-pwa';
23

34
export const manifest: Partial<ManifestOptions> = {
45
short_name: 'Shlink',
5-
name: 'Shlink',
6+
name: 'Shlink Web Client',
67
start_url: '/',
78
display: 'standalone',
8-
theme_color: '#4696e5',
9-
background_color: '#4696e5',
9+
theme_color: BRAND_COLOR_LM, // Toolbar color
10+
background_color: BRAND_COLOR_LM, // Splash screen background color
1011
icons: [
1112
{
1213
src: './icons/icon-16x16.png',

0 commit comments

Comments
 (0)