diff --git a/BRANDING.mak b/BRANDING.mak index 0a312035..fdd28141 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 4 -VERSION_MICRO = 9 +VERSION_MICRO = 10 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Mainline Kernels BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index fe405d4a..43c2ac8d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,16 @@ -mainline (1.4.9) UNRELEASED; urgency=medium +mainline (1.4.10) unstable; urgency=medium + + * Fix notification actions broken in 1.4.9 + + -- Brian K. White Fri, 08 Mar 2024 19:01:31 -0500 + +mainline (1.4.9) unstable; urgency=medium * Ubuntu kernel site changed their main url from https://kernel.ubuntu.com/~kernel-ppa/mainline/ to https://kernel.ubuntu.com/mainline/ - -- Brian K. White Mon, 16 Oct 2023 02:22:33 -0400 + -- Brian K. White Tue, 16 Oct 2023 02:23:44 -0500 mainline (1.4.8) unstable; urgency=medium diff --git a/po/it.po b/po/it.po index 19557bc5..78cb2a9b 100644 --- a/po/it.po +++ b/po/it.po @@ -343,7 +343,8 @@ msgstr "Installa il kernel mainline più recente" #: src/Console/AppConsole.vala:42 msgid "Install the latest mainline kernel without going to a new major version" msgstr "" -"Installa l'ultimo kernel mainline senza passare ad una nuova versione principale" +"Installa l'ultimo kernel mainline senza passare ad una nuova versione " +"principale" #: src/Console/AppConsole.vala:43 src/Console/AppConsole.vala:44 #: src/Console/AppConsole.vala:46 src/Console/AppConsole.vala:47 @@ -457,7 +458,8 @@ msgstr "" #: src/Console/AppConsole.vala:73 msgid "Locked kernels and the currently running kernel are ignored" -msgstr "I kernel bloccati e il kernel attualmente in esecuzione vengono ignorati" +msgstr "" +"I kernel bloccati e il kernel attualmente in esecuzione vengono ignorati" #: src/Console/AppConsole.vala:83 msgid "done" @@ -823,7 +825,8 @@ msgstr "Comando usato per eseguire dpkg con i permesi di root" #: src/Gtk/SettingsWindow.vala:280 #, no-c-format msgid "The dpkg command is appended to the end, unless a %s is present." -msgstr "Il comando dpkg è aggiunto in fondo, a meno che non sia presente un %s." +msgstr "" +"Il comando dpkg è aggiunto in fondo, a meno che non sia presente un %s." #: src/Gtk/SettingsWindow.vala:281 #, no-c-format @@ -860,7 +863,9 @@ msgstr "Comando di terminale utilizzato per eseguire" #, no-c-format msgid "" "The install/uninstall command is appended to the end, unless a %s is present." -msgstr "Il comando installa/disinstall è aggiunto in fondo, a meno che non sia presente un %s." +msgstr "" +"Il comando installa/disinstall è aggiunto in fondo, a meno che non sia " +"presente un %s." #: src/Gtk/SettingsWindow.vala:314 #, no-c-format @@ -899,8 +904,7 @@ msgstr "Copia" #: src/Gtk/TerminalWindow.vala:138 msgid "" "Copies the entire output buffer, including scrollback, to the clipboard." -msgstr "" -"Copia l'intero buffer di output, incluso lo scrollback, negli Appunti." +msgstr "Copia l'intero buffer di output, incluso lo scrollback, negli Appunti." #: src/Gtk/TerminalWindow.vala:145 msgid "Cancel" diff --git a/po/messages.pot b/po/messages.pot index c56f063b..ab02a3a2 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.4.8\n" +"Project-Id-Version: mainline 1.4.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-16 01:59-0400\n" +"POT-Creation-Date: 2024-03-08 18:58-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/tr.po b/po/tr.po index 5f6eeac9..ef804882 100644 --- a/po/tr.po +++ b/po/tr.po @@ -756,8 +756,8 @@ msgstr "" #: src/Gtk/SettingsWindow.vala:197 msgid "" -"They are still deleted once they become older than the \"prior major versions" -"\" setting, or if they have been updated on the mainline-ppa site." +"They are still deleted once they become older than the \"prior major " +"versions\" setting, or if they have been updated on the mainline-ppa site." msgstr "" "\"Önceki ana sürümler\" ayarından daha eski olduklarında ya da mainline-ppa " "sitesinde güncellendiklerinde silinmeye devam ederler." diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 8939c328..a6417e20 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -41,7 +41,7 @@ using l.json; const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; const string CLI_EXE = BRANDING_SHORTNAME; -const string GUI_EXE = BRANDING_SHORTNAME+"gtk"; +const string GUI_EXE = BRANDING_SHORTNAME+"-gtk"; ////////////////////////////////////////////////////////////////////////////// // CONFIG FILE DEFAULTS