Skip to content

Commit 5ca6204

Browse files
committed
Release 0.4.3
1 parent 204a393 commit 5ca6204

18 files changed

+46
-25
lines changed

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2013-2019 Sean Davis <[email protected]>
1+
Copyright (C) 2013-2020 Sean Davis <[email protected]>
22
Artwork Copyright (C) 2013-2015 Simon Steinbeiß <[email protected]>
33

44
Camera functionality based on web_cam_box

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
Mugshot NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
28 Dec 2020, Mugshot 0.4.3
4+
5+
- New stable release
6+
- Add support for Python 3.9
7+
- Switched to RDN-format for .desktop and gschema (org.bluesabre.mugshot)
8+
(fixes asv-cid-desktopapp-is-not-rdns)
9+
- Port python3-dbus usage to GDBus
10+
- Remove period at end of short description (fixes asv-summary-has-dot-suffix)
11+
- Translation Updates:
12+
. Catalan, Chinese (China), Danish, Dutch, German, Lithuanian, Malay,
13+
Malay (Arabic), Polish, Serbian, Spanish, Turkish
14+
15+
316
28 Jul 2019, Mugshot 0.4.2
417

518
- New stable release

bin/mugshot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

data/metainfo/mugshot.appdata.xml.in

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!-- Copyright 2014-2019 Sean Davis <[email protected]> -->
2+
<!-- Copyright 2014-2020 Sean Davis <[email protected]> -->
33
<component type="desktop">
44
<id>org.bluesabre.Mugshot.desktop</id>
55
<metadata_license>CC0-1.0</metadata_license>
@@ -44,6 +44,14 @@
4444
</provides>
4545

4646
<releases>
47+
<release version="0.4.3" date="2020-12-28">
48+
<description>
49+
<_p>This maintenance release adds support for Python 3.9
50+
and includes many translation updates.
51+
</_p>
52+
</description>
53+
</release>
54+
4755
<release version="0.4.2" date="2019-07-28">
4856
<description>
4957
<_p>Mugshot has moved to GitHub! This maintenance release

mugshot/CameraMugshotDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# Portions of this file are adapted from web_cam_box,
77
# Copyright (C) 2010 Rick Spencer <[email protected]>

mugshot/MugshotWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

mugshot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

mugshot_lib/AccountsServiceAdapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

mugshot_lib/Builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

mugshot_lib/CameraDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python3
22
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
33
# Mugshot - Lightweight user configuration utility
4-
# Copyright (C) 2013-2019 Sean Davis <[email protected]>
4+
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
55
#
66
# This program is free software: you can redistribute it and/or modify it
77
# under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)