From fba8c6d790ac3d67bd46943ca2bc69606ffa1e18 Mon Sep 17 00:00:00 2001 From: Victor Bayas Date: Fri, 16 Aug 2024 21:22:23 -0500 Subject: [PATCH] Bump to 3.5.0 --- envycontrol.py | 7 +++---- flake.nix | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/envycontrol.py b/envycontrol.py index 188ab2d..c8282f8 100755 --- a/envycontrol.py +++ b/envycontrol.py @@ -9,7 +9,7 @@ # begin constants definition -VERSION = '3.4.0' +VERSION = '3.5.0' # Note: Do NOT remove this in cleanup! CACHE_FILE_PATH = '/var/cache/envycontrol/cache.json' @@ -469,10 +469,9 @@ def get_amd_igpu_name(): def rebuild_initramfs(): - - # OSTREE systems first + # OSTree systems first if any(os.path.exists(dir) for dir in ['/ostree', '/sysroot/ostree']): - print('Regenerating initramfs with rpm-ostree. This will take several minutes; please be patient.') + print('Rebuilding the initramfs with rpm-ostree...') command = ['rpm-ostree', 'initramfs', '--enable', '--arg=--force'] # Debian and Ubuntu derivatives diff --git a/flake.nix b/flake.nix index fb6a6d4..dcb528b 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ packages.${system} = { envycontrol = pkgs.python3Packages.buildPythonPackage { pname = "envycontrol"; - version = "3.4.0"; + version = "3.5.0"; src = self; }; default = self.packages.${system}.envycontrol;