Replace ChangeLog with NEWS

This commit is contained in:
Sean Davis 2014-01-25 18:40:38 -05:00
parent 4b2ba99cbe
commit 67b1d87221
5 changed files with 26 additions and 16 deletions

View File

@ -1,2 +0,0 @@
2013-08-29: Mugshot 0.1
+ Initial Release

12
NEWS Normal file
View File

@ -0,0 +1,12 @@
Mugshot NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 Jan 2014, Mugshot 0.2
- General:
. Mugshot is now designed for use with only Python 3.
. Dependency on yelp/ghelp has been removed.
. Packaging has been simplified.
27 Jul 2013, Mugshot 0.1
- Initial release.

View File

@ -25,7 +25,7 @@ __all__ = [
# files). By default, this is ../data, relative your trunk layout
__mugshot_data_directory__ = '../data/'
__license__ = 'GPL-3'
__version__ = '0.1'
__version__ = '0.2'
import os

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-08-27 21:43-0400\n"
"POT-Creation-Date: 2014-01-25 18:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -119,47 +119,47 @@ msgstr ""
msgid "Show debug messages (-vv debugs mugshot_lib also)"
msgstr ""
#: ../mugshot/CameraMugshotDialog.py:98
#: ../mugshot/CameraMugshotDialog.py:106
#, python-format
msgid "Camera failed to load. Devices: %s"
msgstr ""
#. Translators: Please include newlines, as required to fit the message.
#: ../mugshot/CameraMugshotDialog.py:114
#: ../mugshot/CameraMugshotDialog.py:124
msgid ""
"Sorry, but your camera\n"
"failed to initialize."
msgstr ""
#. Translators: Please include newlines, as required to fit the message.
#: ../mugshot/CameraMugshotDialog.py:121
#: ../mugshot/CameraMugshotDialog.py:131
msgid ""
"Please wait while your\n"
"camera is initialized."
msgstr ""
#: ../mugshot/CameraMugshotDialog.py:138
msgid "Cannot display camera output. Ignoring play command"
#: ../mugshot/CameraMugshotDialog.py:151
msgid "Cannot display camera output.Ignoring play command"
msgstr ""
#. Set the record button to retry, and disable it until the capture
#. finishes.
#: ../mugshot/CameraMugshotDialog.py:265
#: ../mugshot/CameraMugshotDialog.py:280
msgid "Retry"
msgstr ""
#: ../mugshot/MugshotWindow.py:351
#: ../mugshot/MugshotWindow.py:374
msgid "Update Pidgin buddy icon?"
msgstr ""
#: ../mugshot/MugshotWindow.py:352
#: ../mugshot/MugshotWindow.py:375
msgid "Would you also like to update your Pidgin buddy icon?"
msgstr ""
#: ../mugshot/MugshotWindow.py:555
#: ../mugshot/MugshotWindow.py:578
msgid "Update LibreOffice user details?"
msgstr ""
#: ../mugshot/MugshotWindow.py:556
#: ../mugshot/MugshotWindow.py:579
msgid "Would you also like to update your user details in LibreOffice?"
msgstr ""

View File

@ -57,7 +57,7 @@ def move_icon_file(root, target_data, prefix):
"""Move the icon files to their installation prefix."""
old_icon_path = os.path.normpath(
os.path.join(root, target_data, 'share', 'mugshot', 'media'))
for icon_size in ['16x16', '24x24', '32x32', '48x48', '64x64', 'scalable']:
for icon_size in ['16x16', '22x22', '24x24', '48x48', '64x64', 'scalable']:
if icon_size == 'scalable':
old_icon_file = os.path.join(old_icon_path, 'mugshot.svg')
else:
@ -171,7 +171,7 @@ class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto):
DistUtilsExtra.auto.setup(
name='mugshot',
version='2.0',
version='0.2',
license='GPL-3',
author='Sean Davis',
author_email='smd.seandavis@gmail.com',