From 8356cf69722546ee09499b24dfa92802a23b0150 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Oct 06 2024 15:09:24 +0000 Subject: [PATCH 1/2] Reduce font size 120pt is obnoxiously big, this is a silly paper cut especially on the laptops. Signed-off-by: Alyssa Rosenzweig --- diff --git a/shim.py b/shim.py index 0f7a0b4..db5fb0b 100644 --- a/shim.py +++ b/shim.py @@ -176,7 +176,7 @@ def splash(path): ticks = 0 msg = QLabel(label_for_ticks(state, ticks), parent=window) font = msg.font() - font.setPointSize(120) + font.setPointSize(60) msg.setFont(font) msg.setStyleSheet("font-family: Lato") msg.setAlignment(Qt.AlignmentFlag.AlignCenter) diff --git a/steam.spec b/steam.spec index 62d2e7e..c81d0f0 100644 --- a/steam.spec +++ b/steam.spec @@ -1,6 +1,6 @@ Name: steam Version: 0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Steam wrapper for Fedora Asahi Remix License: MIT @@ -65,6 +65,9 @@ appstream-util validate-relax --nonet \ %{_metainfodir}/io.pagure.fedora_asahi.steam.metainfo.xml %changelog +* Sun Oct 6 2024 Alyssa Rosenzweig - 0-6 +- Fix obnoxious font size + * Fri Oct 4 2024 Davide Cavalca - 0-5 - Add missing dependencies From 022cce8c1edb2196f0254951e430a2a7eccddc7f Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Oct 06 2024 18:06:34 +0000 Subject: [PATCH 2/2] Pull in mesa overlay explicitly should fix new installs not getting the overlay due to dnf fun. Signed-off-by: Alyssa Rosenzweig --- diff --git a/steam.spec b/steam.spec index c81d0f0..fd251bf 100644 --- a/steam.spec +++ b/steam.spec @@ -27,6 +27,8 @@ Requires: lsb_release Requires: muvm Requires: python3 Requires: xwininfo +Requires: mesa-fex-emu-overlay-i386 +Requires: mesa-fex-emu-overlay-x86_64 Requires: python3dist(pyqt6) Requires: python3dist(pexpect) @@ -67,6 +69,7 @@ appstream-util validate-relax --nonet \ %changelog * Sun Oct 6 2024 Alyssa Rosenzweig - 0-6 - Fix obnoxious font size +- Pull in Mesa overlay explicitly * Fri Oct 4 2024 Davide Cavalca - 0-5 - Add missing dependencies