Skip to content

Commit

Permalink
Changelogs and version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
mendhak committed Aug 3, 2024
1 parent 778ba23 commit 5082d21
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/grub-reboot-picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export version=0.0.8
export version=0.0.9

0 comments on commit 5082d21

Please sign in to comment.