From bfc4b9798eda88071f34d52677ad021bab924389 Mon Sep 17 00:00:00 2001 From: Marco Bergen Date: Tue, 7 Jan 2025 08:39:01 +0100 Subject: [PATCH 1/3] [#54] Use the same font-stack for warp-menu as in the "CES-Tailwind"-theme - to prenvent overriding of Droid-Sans in different dogus, the font-stak should be the same for all components --- CHANGELOG.md | 2 ++ src/generated.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fed0bab..9f2e5bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Use the same font-stack for warp-menu as in the "CES-Tailwind"-theme (#54) ## [v2.0.1](https://github.com/cloudogu/warp-menu/releases/tag/v2.0.1) ### Changed diff --git a/src/generated.css b/src/generated.css index 835c708..9b0742b 100644 --- a/src/generated.css +++ b/src/generated.css @@ -57,7 +57,7 @@ html, -o-tab-size: 4; tab-size: 4; /* 3 */ - font-family: Droid Sans, Calibri, sans-serif; + font-family: Calibri, Gill Sans, Gill Sans MT, Liberation Sans, Carlito, -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif; /* 4 */ font-feature-settings: normal; /* 5 */ From dc0403c33ddc9402c06f72e3f878e9f4a917ae79 Mon Sep 17 00:00:00 2001 From: Georg Date: Thu, 9 Jan 2025 15:35:17 +0100 Subject: [PATCH 2/3] Bump version --- Makefile | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 92c6960..e401b15 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -WARP_MENU_VERSION:=v2.0.1 +WARP_MENU_VERSION:=v2.0.2 ZIPFILE_NAME:=warp-$(WARP_MENU_VERSION).zip SHA_FILE_NAME:=$(ZIPFILE_NAME).sha256 diff --git a/package.json b/package.json index 05bec40..3a2de09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-menu", - "version": "2.0.1", + "version": "2.0.2", "license": "AGPL-3.0-only", "repository": { "type": "git", From b584d1c1f9402626a380de9cc3c04c5629227393 Mon Sep 17 00:00:00 2001 From: Georg Date: Thu, 9 Jan 2025 15:36:48 +0100 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f2e5bd..56bd217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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/spec/v2.0.0.html). ## [Unreleased] + +## [v2.0.2](https://github.com/cloudogu/warp-menu/releases/tag/v2.0.2) ### Changed - Use the same font-stack for warp-menu as in the "CES-Tailwind"-theme (#54)