From 5ca6204ea5a487004a3368e7228daede6a4a8854 Mon Sep 17 00:00:00 2001 From: Sean Davis Date: Mon, 28 Dec 2020 19:55:14 -0800 Subject: [PATCH] Release 0.4.3 --- AUTHORS | 2 +- NEWS | 13 +++++++++++++ bin/mugshot | 2 +- data/metainfo/mugshot.appdata.xml.in | 10 +++++++++- mugshot/CameraMugshotDialog.py | 2 +- mugshot/MugshotWindow.py | 2 +- mugshot/__init__.py | 2 +- mugshot_lib/AccountsServiceAdapter.py | 2 +- mugshot_lib/Builder.py | 2 +- mugshot_lib/CameraDialog.py | 2 +- mugshot_lib/SudoDialog.py | 2 +- mugshot_lib/Window.py | 2 +- mugshot_lib/__init__.py | 2 +- mugshot_lib/helpers.py | 2 +- mugshot_lib/mugshotconfig.py | 4 ++-- po/POTFILES.in | 2 +- po/mugshot.pot | 14 +++++++------- setup.py | 4 ++-- 18 files changed, 46 insertions(+), 25 deletions(-) diff --git a/AUTHORS b/AUTHORS index 444b18a..8ae73ac 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Copyright (C) 2013-2019 Sean Davis +Copyright (C) 2013-2020 Sean Davis Artwork Copyright (C) 2013-2015 Simon Steinbeiß Camera functionality based on web_cam_box diff --git a/NEWS b/NEWS index bb2e49c..f609124 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,18 @@ Mugshot NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +28 Dec 2020, Mugshot 0.4.3 + +- New stable release +- Add support for Python 3.9 +- Switched to RDN-format for .desktop and gschema (org.bluesabre.mugshot) + (fixes asv-cid-desktopapp-is-not-rdns) +- Port python3-dbus usage to GDBus +- Remove period at end of short description (fixes asv-summary-has-dot-suffix) +- Translation Updates: + . Catalan, Chinese (China), Danish, Dutch, German, Lithuanian, Malay, + Malay (Arabic), Polish, Serbian, Spanish, Turkish + + 28 Jul 2019, Mugshot 0.4.2 - New stable release diff --git a/bin/mugshot b/bin/mugshot index 0b05994..a7d674f 100755 --- a/bin/mugshot +++ b/bin/mugshot @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/data/metainfo/mugshot.appdata.xml.in b/data/metainfo/mugshot.appdata.xml.in index aaf6633..8db1fc3 100644 --- a/data/metainfo/mugshot.appdata.xml.in +++ b/data/metainfo/mugshot.appdata.xml.in @@ -1,5 +1,5 @@ - + org.bluesabre.Mugshot.desktop CC0-1.0 @@ -44,6 +44,14 @@ + + + <_p>This maintenance release adds support for Python 3.9 + and includes many translation updates. + + + + <_p>Mugshot has moved to GitHub! This maintenance release diff --git a/mugshot/CameraMugshotDialog.py b/mugshot/CameraMugshotDialog.py index 5b8aab3..5c86db2 100644 --- a/mugshot/CameraMugshotDialog.py +++ b/mugshot/CameraMugshotDialog.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # Portions of this file are adapted from web_cam_box, # Copyright (C) 2010 Rick Spencer diff --git a/mugshot/MugshotWindow.py b/mugshot/MugshotWindow.py index f73631b..7e4bd61 100644 --- a/mugshot/MugshotWindow.py +++ b/mugshot/MugshotWindow.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot/__init__.py b/mugshot/__init__.py index fefcf7a..d2060fb 100644 --- a/mugshot/__init__.py +++ b/mugshot/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/AccountsServiceAdapter.py b/mugshot_lib/AccountsServiceAdapter.py index 4851fcb..6706daa 100644 --- a/mugshot_lib/AccountsServiceAdapter.py +++ b/mugshot_lib/AccountsServiceAdapter.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/Builder.py b/mugshot_lib/Builder.py index 6c08d70..168c916 100644 --- a/mugshot_lib/Builder.py +++ b/mugshot_lib/Builder.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/CameraDialog.py b/mugshot_lib/CameraDialog.py index b7844f6..909883f 100644 --- a/mugshot_lib/CameraDialog.py +++ b/mugshot_lib/CameraDialog.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/SudoDialog.py b/mugshot_lib/SudoDialog.py index 9e17005..d5656ab 100644 --- a/mugshot_lib/SudoDialog.py +++ b/mugshot_lib/SudoDialog.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/Window.py b/mugshot_lib/Window.py index c796fd0..b6b0fd3 100644 --- a/mugshot_lib/Window.py +++ b/mugshot_lib/Window.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/__init__.py b/mugshot_lib/__init__.py index 2a1b6da..b117dbb 100644 --- a/mugshot_lib/__init__.py +++ b/mugshot_lib/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/helpers.py b/mugshot_lib/helpers.py index bb30a83..ed235b8 100644 --- a/mugshot_lib/helpers.py +++ b/mugshot_lib/helpers.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by diff --git a/mugshot_lib/mugshotconfig.py b/mugshot_lib/mugshotconfig.py index 70dd7b6..0c5d7c3 100644 --- a/mugshot_lib/mugshotconfig.py +++ b/mugshot_lib/mugshotconfig.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ __all__ = [ # files). By default, this is ../data, relative your trunk layout __mugshot_data_directory__ = '../data/' __license__ = 'GPL-3+' -__version__ = '0.4.2' +__version__ = '0.4.3' class project_path_not_found(Exception): diff --git a/po/POTFILES.in b/po/POTFILES.in index d6224e9..55158a4 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,5 +1,5 @@ ### BEGIN LICENSE -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 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 # by the Free Software Foundation. diff --git a/po/mugshot.pot b/po/mugshot.pot index 3d50c61..7506461 100644 --- a/po/mugshot.pot +++ b/po/mugshot.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-07-30 07:46-0400\n" +"POT-Creation-Date: 2020-12-28 19:39-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -107,27 +107,27 @@ msgstr "" msgid "Retry" msgstr "" -#: ../mugshot/MugshotWindow.py:344 +#: ../mugshot/MugshotWindow.py:343 msgid "Authentication cancelled." msgstr "" -#: ../mugshot/MugshotWindow.py:347 +#: ../mugshot/MugshotWindow.py:346 msgid "Authentication failed." msgstr "" -#: ../mugshot/MugshotWindow.py:350 +#: ../mugshot/MugshotWindow.py:349 msgid "An error occurred when saving changes." msgstr "" -#: ../mugshot/MugshotWindow.py:352 +#: ../mugshot/MugshotWindow.py:351 msgid "User details were not updated." msgstr "" -#: ../mugshot/MugshotWindow.py:454 +#: ../mugshot/MugshotWindow.py:453 msgid "Update Pidgin buddy icon?" msgstr "" -#: ../mugshot/MugshotWindow.py:455 +#: ../mugshot/MugshotWindow.py:454 msgid "Would you also like to update your Pidgin buddy icon?" msgstr "" diff --git a/setup.py b/setup.py index a97d728..c171140 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 -*- # Mugshot - Lightweight user configuration utility -# Copyright (C) 2013-2019 Sean Davis +# Copyright (C) 2013-2020 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -188,7 +188,7 @@ class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): DistUtilsExtra.auto.setup( name='mugshot', - version='0.4.2', + version='0.4.3', license='GPL-3+', author='Sean Davis', author_email='sean@bluesabre.org',