Update version number and release notes.

This commit is contained in:
Sean Davis 2014-08-24 12:14:29 -04:00
parent 67513c2357
commit adec1dc648
13 changed files with 53 additions and 31 deletions

7
NEWS
View File

@ -1,5 +1,12 @@
Mugshot NEWS Mugshot NEWS
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Next release, Mugshot 0.4.0
- General
. Improve usability for LDAP users
. Include latest SudoDialog
02 Aug 2014, Mugshot 0.2.4 02 Aug 2014, Mugshot 0.2.4
- General - General

View File

@ -37,6 +37,15 @@
</provides> </provides>
<releases> <releases>
<release version="0.4.0" timestamp="">
<description>
<_p>This stable release improves Mugshot functionality for LDAP users,
and includes the latest SudoDialog, improving the appearance and
usability of the password dialog.
</_p>
</description>
</release>
<release version="0.2.4" timestamp="1406977200"> <release version="0.2.4" timestamp="1406977200">
<description> <description>
<_p>This stable release improves the user configuration (chfn) backend <_p>This stable release improves the user configuration (chfn) backend

View File

@ -8,7 +8,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but

View File

@ -444,8 +444,7 @@ class MugshotWindow(Window):
(path,) = result.unpack() (path,) = result.unpack()
variant = GLib.Variant('(s)', variant = GLib.Variant('(s)',
('org.freedesktop.Accounts.User',) ('org.freedesktop.Accounts.User',))
)
result = bus.call_sync('org.freedesktop.Accounts', result = bus.call_sync('org.freedesktop.Accounts',
path, path,
'org.freedesktop.DBus.Properties', 'org.freedesktop.DBus.Properties',

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but
@ -234,10 +234,10 @@ def dict_from_callback_obj(callback_obj):
aliased_methods = [x[1] for x in methods if hasattr(x[1], 'aliases')] aliased_methods = [x[1] for x in methods if hasattr(x[1], 'aliases')]
# a method may have several aliases # a method may have several aliases
#~ @alias('on_btn_foo_clicked') # ~ @alias('on_btn_foo_clicked')
#~ @alias('on_tool_foo_activate') # ~ @alias('on_tool_foo_activate')
#~ on_menu_foo_activate(): # ~ on_menu_foo_activate():
#~ pass # ~ pass
alias_groups = [(x.aliases, x) for x in aliased_methods] alias_groups = [(x.aliases, x) for x in aliased_methods]
aliases = [] aliases = []

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but
@ -19,8 +19,8 @@
'''facade - makes mugshot_lib package easy to refactor '''facade - makes mugshot_lib package easy to refactor
while keeping its api constant''' while keeping its api constant'''
#lint:disable # lint:disable
from . helpers import set_up_logging from . helpers import set_up_logging
from . Window import Window from . Window import Window
from . mugshotconfig import get_version from . mugshotconfig import get_version
#lint:enable # lint:enable

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but
@ -26,7 +26,7 @@ __all__ = [
# files). By default, this is ../data, relative your trunk layout # files). By default, this is ../data, relative your trunk layout
__mugshot_data_directory__ = '../data/' __mugshot_data_directory__ = '../data/'
__license__ = 'GPL-3+' __license__ = 'GPL-3+'
__version__ = '0.2.4' __version__ = '0.4.0'
import os import os

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-24 11:44-0400\n" "POT-Creation-Date: 2014-08-24 12:12-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -61,7 +61,7 @@ msgstr ""
msgid "Browse…" msgid "Browse…"
msgstr "" msgstr ""
#: ../data/ui/MugshotWindow.ui.h:9 ../mugshot/MugshotWindow.py:589 #: ../data/ui/MugshotWindow.ui.h:9 ../mugshot/MugshotWindow.py:588
msgid "Mugshot" msgid "Mugshot"
msgstr "" msgstr ""
@ -146,29 +146,29 @@ msgstr ""
msgid "User details were not updated." msgid "User details were not updated."
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:499 #: ../mugshot/MugshotWindow.py:498
msgid "Update Pidgin buddy icon?" msgid "Update Pidgin buddy icon?"
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:500 #: ../mugshot/MugshotWindow.py:499
msgid "Would you also like to update your Pidgin buddy icon?" msgid "Would you also like to update your Pidgin buddy icon?"
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:590 #: ../mugshot/MugshotWindow.py:589
msgid "Enter your password to change user details." msgid "Enter your password to change user details."
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:592 #: ../mugshot/MugshotWindow.py:591
msgid "" msgid ""
"This is a security measure to prevent unwanted updates\n" "This is a security measure to prevent unwanted updates\n"
"to your personal information." "to your personal information."
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:797 #: ../mugshot/MugshotWindow.py:796
msgid "Update LibreOffice user details?" msgid "Update LibreOffice user details?"
msgstr "" msgstr ""
#: ../mugshot/MugshotWindow.py:798 #: ../mugshot/MugshotWindow.py:797
msgid "Would you also like to update your user details in LibreOffice?" msgid "Would you also like to update your user details in LibreOffice?"
msgstr "" msgstr ""
@ -230,6 +230,13 @@ msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:5 #: ../data/appdata/mugshot.appdata.xml.in.h:5
msgid "" msgid ""
"This stable release improves Mugshot functionality for LDAP users, and "
"includes the latest SudoDialog, improving the appearance and usability of "
"the password dialog."
msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:6
msgid ""
"This stable release improves the user configuration (chfn) backend and " "This stable release improves the user configuration (chfn) backend and "
"prevents Mugshot from locking up. Mugshot also no longer depends on " "prevents Mugshot from locking up. Mugshot also no longer depends on "
"AccountsService, but can leverage it to better support some systems. A " "AccountsService, but can leverage it to better support some systems. A "
@ -237,28 +244,28 @@ msgid ""
"addressed." "addressed."
msgstr "" msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:6 #: ../data/appdata/mugshot.appdata.xml.in.h:7
msgid "" msgid ""
"This stable release improved AccountsService functionality and overall " "This stable release improved AccountsService functionality and overall "
"usability. Users without admin rights can no longer attempt to change their " "usability. Users without admin rights can no longer attempt to change their "
"name, and initials are automatically populated when the name is entered." "name, and initials are automatically populated when the name is entered."
msgstr "" msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:7 #: ../data/appdata/mugshot.appdata.xml.in.h:8
msgid "" msgid ""
"This stable release fixed a crash that occured when saving user details in a " "This stable release fixed a crash that occured when saving user details in a "
"non-English locale. This release also included an updated translation " "non-English locale. This release also included an updated translation "
"template and new translations." "template and new translations."
msgstr "" msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:8 #: ../data/appdata/mugshot.appdata.xml.in.h:9
msgid "" msgid ""
"This stable release fixed several bugs related to profile image management, " "This stable release fixed several bugs related to profile image management, "
"introduced an improved password dialog, and transitioned to using GLib to " "introduced an improved password dialog, and transitioned to using GLib to "
"more reliably determine user and environment settings." "more reliably determine user and environment settings."
msgstr "" msgstr ""
#: ../data/appdata/mugshot.appdata.xml.in.h:9 #: ../data/appdata/mugshot.appdata.xml.in.h:10
msgid "" msgid ""
"The first stable release introduced simplified packaging, replaced the Help " "The first stable release introduced simplified packaging, replaced the Help "
"functionality with the online help documents, and transitioned to using " "functionality with the online help documents, and transitioned to using "

View File

@ -5,7 +5,7 @@
# #
# This program is free software: you can redistribute it and/or modify it # 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 # under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# This program is distributed in the hope that it will be useful, but # This program is distributed in the hope that it will be useful, but
@ -185,7 +185,7 @@ class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto):
DistUtilsExtra.auto.setup( DistUtilsExtra.auto.setup(
name='mugshot', name='mugshot',
version='0.2.4', version='0.4.0',
license='GPL-3+', license='GPL-3+',
author='Sean Davis', author='Sean Davis',
author_email='smd.seandavis@gmail.com', author_email='smd.seandavis@gmail.com',