From d79252af96e3e0599388283b78de1cb07fe602a6 Mon Sep 17 00:00:00 2001 From: Mr Finchum Date: Mon, 29 Sep 2025 12:17:27 +0200 Subject: [PATCH] Uni code thingy --- Home.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index 6d27d56..4a9a91c 100644 --- a/Home.md +++ b/Home.md @@ -36,7 +36,7 @@ While there is always room for additional features and optimizations, the core f - Add GPS coordinates to images ### **Settings** -- Option to use 'PyQtDarkTheme' and select Dark, Light, or auto theme +- Option to use `PyQtDarkTheme` and select Dark, Light, or auto theme - Checks for updates on PyPI, automatically downloads and installs the latest version --- @@ -51,7 +51,7 @@ pip install OptimaLab35 ### Performance Note I recommend using *standard* Python rather than PyPy. -I ran a small-scale test measuring how long it took to convert images using Python 3.13.2 and PyPy 7.3.15 (Python 3.9.18). Surprisingly, Python was 2–5% faster than PyPy. +I ran a small-scale test measuring how long it took to convert images using Python 3.13.2 and PyPy 7.3.15 (Python 3.9.18). Surprisingly, Python was 2-5% faster than PyPy. This is most likely because the program uses PySide6, which relies on CPython extensions that do not benefit from PyPy's JIT optimizations. Additionally, since the program uses PySide6's multithreading, we actually lose performance under PyPy. ---