From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4fZMMS2FZqz2yDc for ; Mon, 16 Mar 2026 17:21:40 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4fZMMS23kBz2xMP for ; Mon, 16 Mar 2026 17:21:40 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "people01.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4fZMMR6TwTzHb for ; Mon, 16 Mar 2026 17:21:39 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1773681699; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=3oHzoRTIHJhuaNwoFBVpREXFwsjLwjpElMRc3ZLP4mk=; b=OTSK9sFnUR215rUrXW3QU5f4wHdteOMWpfuFba3/YII1knVxPuPTXGl3bXYKNsQhlKYe1V JyhMdI/ICXwA5AAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1773681699; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=3oHzoRTIHJhuaNwoFBVpREXFwsjLwjpElMRc3ZLP4mk=; b=n7EL0AaGPGPhN5tp8fQ0I+XqThrApCgnrrGPvdjrPVqLAURZKCTNXHGwPXLyHjPPuBTm4n Pz8QoH9lrC4IbNAuCH5e/zjmr9RgIqUOH7IYaRd9zVrIWDubxXiAT1uS/kuISgDIw+Z/nV 9rRVVasxZtsWk7MsgRbNn0Dwu7PMVR1hp+NL/xTNGq7V1XZNyJ4avN3Vy3TpZLJ1AxAx3A M4t6goEaseUUA9RQImrJjVPuepypvtdEAyFDpRfVMM7z89FsIgd4/A86WdfviVax1bNKxN 3RqMpER4zHoyuO7GlriQWnbZNEbKUjf1N+cayqOt2sKEXH1fG35lylN2WybwxQ== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4fZMMR6273z2y2f; Mon, 16 Mar 2026 17:21:39 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] The artwork of the ipfire project. branch, master, updated. 3cfd1dacb3c2ebe76f21a27f9af7d960e90fdcf5 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 80c013cf2e6173af2a2f43b388651fdfdbe817bc X-Git-Newrev: 3cfd1dacb3c2ebe76f21a27f9af7d960e90fdcf5 Message-Id: <4fZMMR6273z2y2f@people01.haj.ipfire.org> Date: Mon, 16 Mar 2026 17:21:39 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The artwork of the ipfire project.". The branch, master has been updated via 3cfd1dacb3c2ebe76f21a27f9af7d960e90fdcf5 (commit) from 80c013cf2e6173af2a2f43b388651fdfdbe817bc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3cfd1dacb3c2ebe76f21a27f9af7d960e90fdcf5 Author: Michael Tremer Date: Mon Mar 16 17:21:21 2026 +0000 square logo: Actuall generate the desired resolutions Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Difference in files: diff --git a/Makefile b/Makefile index 85f6996..2ab4dd1 100644 --- a/Makefile +++ b/Makefile @@ -111,19 +111,19 @@ standard/favicon.svg: favicon.svg # Converts the square logo to PNG %/logo-square-512x512.png: %/logo-square.svg mkdir -p $(dir $@) && \ - $(INKSCAPE) --export-width=32 + $(INKSCAPE) --export-width=512 %/logo-square-1024x1024.png: %/logo-square.svg mkdir -p $(dir $@) && \ - $(INKSCAPE) --export-width=64 + $(INKSCAPE) --export-width=1024 %/logo-square-2048x2048.png: %/logo-square.svg mkdir -p $(dir $@) && \ - $(INKSCAPE) --export-width=128 + $(INKSCAPE) --export-width=2048 %/logo-square-4096x4096.png: %/logo-square.svg mkdir -p $(dir $@) && \ - $(INKSCAPE) --export-width=256 + $(INKSCAPE) --export-width=4096 # Converts the favicon to PNG %/favicon-16x16.png: %/favicon.svg hooks/post-receive -- The artwork of the ipfire project.