diff --git a/AUTHORS b/AUTHORS index dfed42a6..6b381d37 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,2 +1,2 @@ -Copyright (C) 2012-2020 Sean Davis +Copyright (C) 2012-2021 Sean Davis Copyright (C) 2016-2018 OmegaPhil diff --git a/NEWS b/NEWS index a9f4cf6a..969fa2c1 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,34 @@ MenuLibre NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +25 September 2021, MenuLibre 2.2.2 + +- New Features: + . Added diagnostics for failed menu loading + . Added support for GNOME-specific categories (#56) + . Added support for PrefersNonDefaultGPU (Fixes #50) + . Added support for unprefixed applications.menu (#67) + . Added support for X-GNOME-UsesNotifications (#79) + . Added support for XFCE specific categories (#54) + . Enabled opening a root editor for root-owned files with pkexec (#62) + . Enabled searching for Exec key and desktop entry (#52) +- General: + . Added AppData file (#61) + . Documented intltool build requirement (#59) + . Switched to the MenuLibre wiki for key descriptions (Fixes #48) +- Bug Fixes: + . Added valid types to validator, reducing false positives (#66) + . Fixed builds with newer versions of GTK (#77) + . Fixed history state when editing Name and Comment (#57) + . Fixed msgfmt errors + . Fixed running with newer versions of GTK (#82) + . Fixed selection leaving screen while moving items (Fixes #25) + . Fixed typo in desktop file processing error +- Updated Translations: + . Arabic, Catalan, Chinese (China), Danish, Dutch, English (United Kingdom), + French, German, Japanese, Lithuanian, Malay, Malay (Arabic), Polish, + Russian, Spanish, Turkish, Ukrainian + + 31 May 2019, MenuLibre 2.2.1 - General: diff --git a/bin/menulibre b/bin/menulibre index 975f6363..ebeff881 100755 --- a/bin/menulibre +++ b/bin/menulibre @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre.1 b/menulibre.1 index c7a56582..6b0006bb 100644 --- a/menulibre.1 +++ b/menulibre.1 @@ -2,7 +2,7 @@ \\$2 \(laURL: \\$1 \(ra\\$3 .. .if \n[.g] .mso www.tmac -.TH MENULIBRE "1" "March 2018" "menulibre 2.2" "User Commands" +.TH MENULIBRE "1" "September 2021" "menulibre 2.2.2" "User Commands" .SH NAME menulibre \- advanced fd.o compliant menu editor .SH DESCRIPTION diff --git a/menulibre/Dialogs.py b/menulibre/Dialogs.py index f075b499..cecbcc55 100644 --- a/menulibre/Dialogs.py +++ b/menulibre/Dialogs.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/MenuEditor.py b/menulibre/MenuEditor.py index d97c854b..abd7a864 100644 --- a/menulibre/MenuEditor.py +++ b/menulibre/MenuEditor.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2016-2018 OmegaPhil # # Portions of this file are adapted from Alacarte Menu Editor, diff --git a/menulibre/MenulibreApplication.py b/menulibre/MenulibreApplication.py index 067db592..e5045832 100644 --- a/menulibre/MenulibreApplication.py +++ b/menulibre/MenulibreApplication.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2016-2018 OmegaPhil # # This program is free software: you can redistribute it and/or modify it diff --git a/menulibre/MenulibreHistory.py b/menulibre/MenulibreHistory.py index ab861728..1e8b9289 100644 --- a/menulibre/MenulibreHistory.py +++ b/menulibre/MenulibreHistory.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/MenulibreIconSelection.py b/menulibre/MenulibreIconSelection.py index db4b0329..fe3c3ac1 100644 --- a/menulibre/MenulibreIconSelection.py +++ b/menulibre/MenulibreIconSelection.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/MenulibreLog.py b/menulibre/MenulibreLog.py index 1c44e82a..cb8055b6 100644 --- a/menulibre/MenulibreLog.py +++ b/menulibre/MenulibreLog.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2017-2018 OmegaPhil # # This program is free software: you can redistribute it and/or modify it diff --git a/menulibre/MenulibreStackSwitcher.py b/menulibre/MenulibreStackSwitcher.py index 0b7b8e4e..25843c26 100644 --- a/menulibre/MenulibreStackSwitcher.py +++ b/menulibre/MenulibreStackSwitcher.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/MenulibreTreeview.py b/menulibre/MenulibreTreeview.py index 7b3cda49..d0be6694 100644 --- a/menulibre/MenulibreTreeview.py +++ b/menulibre/MenulibreTreeview.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2016 OmegaPhil # # This program is free software: you can redistribute it and/or modify it diff --git a/menulibre/MenulibreXdg.py b/menulibre/MenulibreXdg.py index e54f5024..0e96b76a 100644 --- a/menulibre/MenulibreXdg.py +++ b/menulibre/MenulibreXdg.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/XmlMenuElementTree.py b/menulibre/XmlMenuElementTree.py index 9110f1ae..fe111f5b 100644 --- a/menulibre/XmlMenuElementTree.py +++ b/menulibre/XmlMenuElementTree.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2016 OmegaPhil # # This program is free software: you can redistribute it and/or modify it diff --git a/menulibre/__init__.py b/menulibre/__init__.py index 48e0a0df..33cf5576 100644 --- a/menulibre/__init__.py +++ b/menulibre/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre/util.py b/menulibre/util.py index 5d91592b..d19936bf 100644 --- a/menulibre/util.py +++ b/menulibre/util.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # Copyright (C) 2017-2018 OmegaPhil # # This program is free software: you can redistribute it and/or modify it diff --git a/menulibre_lib/__init__.py b/menulibre_lib/__init__.py index c0fa7959..aca80da2 100644 --- a/menulibre_lib/__init__.py +++ b/menulibre_lib/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre_lib/helpers.py b/menulibre_lib/helpers.py index 3ead12e7..9c16c193 100644 --- a/menulibre_lib/helpers.py +++ b/menulibre_lib/helpers.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published diff --git a/menulibre_lib/menulibreconfig.py b/menulibre_lib/menulibreconfig.py index 3f976b63..04f121c5 100644 --- a/menulibre_lib/menulibreconfig.py +++ b/menulibre_lib/menulibreconfig.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published @@ -25,7 +25,7 @@ # files). By default, this is ../data, relative your trunk layout __menulibre_data_directory__ = '../data/' __license__ = 'GPL-3' -__version__ = '2.2.1' +__version__ = '2.2.2' import os diff --git a/po/menulibre.pot b/po/menulibre.pot index 0b7df129..58d56fd3 100644 --- a/po/menulibre.pot +++ b/po/menulibre.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-21 07:22-0400\n" +"POT-Creation-Date: 2021-09-25 14:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/setup.py b/setup.py index fea76bb2..68393fe1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # MenuLibre - Advanced fd.o Compliant Menu Editor -# Copyright (C) 2012-2020 Sean Davis +# Copyright (C) 2012-2021 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 3, as published @@ -220,7 +220,7 @@ def run(self): DistUtilsExtra.auto.setup( name='menulibre', - version='2.2.1', + version='2.2.2', license='GPL-3', author='Sean Davis', author_email='sean@bluesabre.org',