From 5082d2111071d9213e20b8788031fb81e9059bab Mon Sep 17 00:00:00 2001 From: mendhak Date: Sat, 3 Aug 2024 17:03:01 +0100 Subject: [PATCH] Changelogs and version bumps --- CHANGELOG.md | 8 +++++++- README.md | 6 ++++++ setup.cfg | 2 +- setup.py | 2 +- src/grub-reboot-picker.py | 2 +- version.sh | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a927542..0e8ee1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,4 +12,10 @@ Rebuilt package for Ubuntu 22.04 Jammy Jellyfish * 0.0.8: Build for Ubuntu 23.04 - Rebuilt package for Ubuntu 23.04 Lunar Lobster \ No newline at end of file + Rebuilt package for Ubuntu 23.04 Lunar Lobster + + * 0.0.9: Parsing and menu hover bugfix + Bugfix, some menu items weren't parsed correctly. + Bugfix, menu items weren't nesting correctly. + Bugfix, menu items were being activated on hover. + Rebuilt package for Ubuntu 24.04 Noble Numbat. \ No newline at end of file diff --git a/README.md b/README.md index 5a1a553..d2994f8 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,12 @@ Then to build: ``` # Set the version +nano version.sh +# Update the changelog, carefully +nano CHANGELOG.md +# Set the suite to use, like jammy, noble, etc. +nano setup.cfg +# Read the version source version.sh # Clean everything rm -rf deb_dist dist *.tar.gz *.egg* build tmp diff --git a/setup.cfg b/setup.cfg index f4cdea8..1c486ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ ignore-install-requires: True depends3: python3-gi, python3-gi-cairo, gir1.2-gtk-3.0, gir1.2-appindicator3-0.1 package3: grub-reboot-picker -suite: lunar +suite: noble section: utils copyright-file: LICENSE.md build-depends: python3-stdeb, fakeroot, python3-all, dh-python, python3-setuptools \ No newline at end of file diff --git a/setup.py b/setup.py index aff6e8d..8c392aa 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ into different OSes based on the grub menu. Basically, a wrapper around grub-reboot command. The icon sits in the tray area in gnome. - Tested on Ubuntu 20.04, 22.04, 23.04. + Tested on Ubuntu 20.04, 22.04, 23.04, 24.04 """, long_description_content_type="text/plain", url="https://github.com/mendhak/grub-reboot-picker", diff --git a/src/grub-reboot-picker.py b/src/grub-reboot-picker.py index 41cdaff..bb3018a 100755 --- a/src/grub-reboot-picker.py +++ b/src/grub-reboot-picker.py @@ -8,7 +8,7 @@ SHOW_GRUB_MENU_SUB_MENUS = True -DEVELOPMENT_MODE = True +DEVELOPMENT_MODE = False GRUB_CONFIG_PATH = "/boot/grub/grub.cfg" if DEVELOPMENT_MODE: GRUB_CONFIG_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "grub.test3.cfg") diff --git a/version.sh b/version.sh index beafdee..23674a0 100644 --- a/version.sh +++ b/version.sh @@ -1 +1 @@ -export version=0.0.8 +export version=0.0.9