From 140fd3c15e2de0c0323b122fa47b13441a47d279 Mon Sep 17 00:00:00 2001 From: Sean Davis Date: Wed, 8 Aug 2018 05:17:47 -0400 Subject: [PATCH] Release 0.4.1 --- AUTHORS | 2 +- NEWS | 2 +- bin/mugshot | 2 +- data/metainfo/mugshot.appdata.xml.in | 9 +++++++++ mugshot.1 | 2 +- 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 | 17 ++++++++++++----- setup.py | 4 ++-- 19 files changed, 40 insertions(+), 24 deletions(-) diff --git a/AUTHORS b/AUTHORS index be125fa..65f4c8b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Copyright (C) 2013-2015 Sean Davis +Copyright (C) 2013-2018 Sean Davis Artwork Copyright (C) 2013-2015 Simon Steinbeiß Camera functionality based on web_cam_box diff --git a/NEWS b/NEWS index fa0e477..b607b1d 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ Mugshot NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -UNRELEASED, Mugshot 0.4.1 +08 Aug 2018, Mugshot 0.4.1 - New stable release - Code Quality: diff --git a/bin/mugshot b/bin/mugshot index 302dbdb..25d4459 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 70b6541..7a9588f 100644 --- a/data/metainfo/mugshot.appdata.xml.in +++ b/data/metainfo/mugshot.appdata.xml.in @@ -44,6 +44,15 @@ + + + <_p>This release includes a number of code quality improvements, + bug fixes, and translations. Mugshot can now be built and run + in a minimal chroot environment. + + + + <_p>This stable release adds support for the latest GTK and diff --git a/mugshot.1 b/mugshot.1 index 7af800c..22d26ae 100644 --- a/mugshot.1 +++ b/mugshot.1 @@ -2,7 +2,7 @@ \\$2 \(laURL: \\$1 \(ra\\$3 .. .if \n[.g] .mso www.tmac -.TH MUGSHOT "1" "April 2018" "mugshot 0.5" "User Commands" +.TH MUGSHOT "1" "August 2018" "mugshot 0.4" "User Commands" .SH NAME mugshot \- lightweight user configuration utility .SH DESCRIPTION diff --git a/mugshot/CameraMugshotDialog.py b/mugshot/CameraMugshotDialog.py index 6a0a1a1..98d23a2 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 252508b..2d4aa05 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 44c102b..22ac6a0 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 56b08fb..de7f714 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 3a564ce..16391fc 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 e173336..f30bd13 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 b410a50..0b89f61 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 1f2e4b9..1508fdc 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 b9df30a..0cdf108 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 b29d682..db51441 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-2015 Sean Davis +# Copyright (C) 2013-2018 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 a90deee..d456796 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-2015 Sean Davis +# Copyright (C) 2013-2018 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.0' +__version__ = '0.4.1' class project_path_not_found(Exception): diff --git a/po/POTFILES.in b/po/POTFILES.in index 709b008..1ca61bb 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,5 +1,5 @@ ### BEGIN LICENSE -# Copyright (C) 2013 Sean Davis +# Copyright (C) 2013-2018 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 b5d8dca..5a1e18c 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: 2018-08-07 07:04-0400\n" +"POT-Creation-Date: 2018-08-08 05:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -207,30 +207,37 @@ msgstr "" #: ../data/metainfo/mugshot.appdata.xml.in.h:5 msgid "" +"This release includes a number of code quality improvements, bug fixes, and " +"translations. Mugshot can now be built and run in a minimal chroot " +"environment." +msgstr "" + +#: ../data/metainfo/mugshot.appdata.xml.in.h:6 +msgid "" "This stable release adds support for the latest GTK and GStreamer " "technologies." msgstr "" -#: ../data/metainfo/mugshot.appdata.xml.in.h:6 +#: ../data/metainfo/mugshot.appdata.xml.in.h:7 msgid "" "This development release restores camera dialog functionality that with " "recent software versions." msgstr "" -#: ../data/metainfo/mugshot.appdata.xml.in.h:7 +#: ../data/metainfo/mugshot.appdata.xml.in.h:8 msgid "" "This development release fixes a large number of bugs from previous " "releases. User properties that cannot be edited are now restricted to " "administrative users." msgstr "" -#: ../data/metainfo/mugshot.appdata.xml.in.h:8 +#: ../data/metainfo/mugshot.appdata.xml.in.h:9 msgid "" "This development release upgrades the camera dialog to use Cheese and " "Clutter to display and capture the camera feed." msgstr "" -#: ../data/metainfo/mugshot.appdata.xml.in.h:9 +#: ../data/metainfo/mugshot.appdata.xml.in.h:10 msgid "" "This stable release improves Mugshot functionality for LDAP users, and " "includes the latest SudoDialog, improving the appearance and usability of " diff --git a/setup.py b/setup.py index 504f5c2..129dcbe 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-2015 Sean Davis +# Copyright (C) 2013-2018 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.0', + version='0.4.1', license='GPL-3+', author='Sean Davis', author_email='smd.seandavis@gmail.com',