From 21e317955a9723d27575540fe9ace20ffee3ce36 Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Sun, 2 Jun 2024 00:36:37 +0300 Subject: [PATCH] Bump version and adjust CSS --- CHANGELOG.md | 4 ++++ info.go | 2 +- public/main.css | 3 +-- public/manifest.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6300925..27eae7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog This file keeps track of changes in more human-readable fashion +## v1.1.0 +* You can now specify the Telegram *topic* to send notification to via `tg_topic` config key (By Rithas K.!) +* The Telegram message is now partially translated +* Fixed CSS `margin` and `text-align` inherited from my website ## v1.0.0 This release includes several **breaking** changes * Made a new favicon diff --git a/info.go b/info.go index a910d2b..7979917 100644 --- a/info.go +++ b/info.go @@ -15,7 +15,7 @@ type AppInfo struct { // Info contains app information var Info = AppInfo{ - Version: "1.0.0", + Version: "1.1.0", SourceLink: "https://git.a71.su/Andrew71/hibiscus", } diff --git a/public/main.css b/public/main.css index 65834be..9c48afb 100644 --- a/public/main.css +++ b/public/main.css @@ -28,11 +28,10 @@ body { color: var(--text-light); background-color: var(--bg-light); - margin: 2em auto; + margin: auto auto; max-width: 640px; padding: 1em; line-height: 1.4; - text-align: justify; font-family: serif; min-height: 85vh; display: flex; diff --git a/public/manifest.json b/public/manifest.json index 06a9d98..ea5bdbb 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -15,7 +15,7 @@ } ], "start_url": "/", - "display": "minimal-ui", + "display": "fullscreen", "scope": "/", "background_color": "#f5f0e1", "theme_color": "#f85552"