diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 57de583a..efb08b95 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.1 +DEB_PKG_VERSION := 1.1.2 DEB_BUILD_NUMBER := 0001 diff --git a/BRANDING.mak b/BRANDING.mak index fdb246be..f2439109 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 1 +VERSION_MICRO = 2 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 3b49204a..8696674a 100644 --- a/README.md +++ b/README.md @@ -49,10 +49,14 @@ mainline-gtk * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About +Written using Vala and GTK3. + mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version +* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check +* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs @@ -62,4 +66,5 @@ The original author stopped maintaining the original GPL version of ukuu and swi ### TODO & WIP * Make the notification bg process detect when the user logs off and exit itself. +* Save & restore window dimensions. * Move the notification/dbus code into the app and make an "applet mode" diff --git a/debian/changelog b/debian/changelog index 430e2875..16ac926d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +mainline (1.1.2) unstable; urgency=medium + + * dir_delete() replace system("rm -rf ...") with native code + * uninstall-old look at latest installed version instead of currently running version + * change the logic for determining the oldest version to display. + threshold_major = whechever is lower: latest_available-show_prev_majors or oldest_installed + + So you can keep show_previous_N_majors set at 0 to show only the most recent kernels by default, + yet still have access to all the kernels from your oldest installed kernel and up. + + -- Brian K. White Wed, 08 Mar 2023 03:51:23 -0500 + mainline (1.1.1) unstable; urgency=medium * replaced deprecated Gtk.show_uri() and xdg_open() with new uri_open()