From: Steven Tobin Date: Mon, 19 Feb 2018 22:47:18 +0000 (+0000) Subject: improved README section on language files X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d242c6f44333561873092347a9edf2b961516604;p=redacted-XKCD-password-generator.git improved README section on language files --- diff --git a/README.rst b/README.rst index d204b35..d235160 100644 --- a/README.rst +++ b/README.rst @@ -121,9 +121,12 @@ Note that the generator can be used with any word file of the correct format: a Additional languages ~~~~~~~~~~~~~~~~~~~~ -Spanish list of words used is a modifed version of archive.umich.edu in the `/linguistics` directory. It includes ~80k words. Less than 5 char. and latin-like words were deleted using regex. This list is public domain, see `here `_. +- Spanish: a modifed version of archive.umich.edu in the `/linguistics` directory. It includes ~80k words. Less than 5 char. and latin-like words were deleted using regex. This list is public domain, see `here `_. +- Finnish: a modified version of the Institute for the Languages of Finland `XML word list `_. Profanities and expressions containing spaces were removed using regex. The resulting list contains ~93k words. The list is published under GNU LGPL, EUPL 1.1 and CC-BY 3.0 licenses. +- Italian: generated from dumps of the Italian-language Wikipedia, which is released under the Creative Commons Attribution-Share-Alike 3.0 licence. +- German: based on `this GPL v3 list `_. Single and double character words have been removed. -Finnish word list is a modified version of the Institute for the Languages of Finland `XML word list `_. Profanities and expressions containing spaces were removed using regex. The resulting list contains ~93k words. The list is published under GNU LGPL, EUPL 1.1 and CC-BY 3.0 licenses. +Additional language word lists are always welcome! Using xkcdpass as an imported module ==================================== @@ -171,6 +174,7 @@ or setting the appropriate environment variable:: Changelog ========= +- **1.15.1** Added more information about supported languages - **1.15.0** Added `--seperator` argument, German wordlist (GPL 3.0, thanks to @anlx-sw) - **1.14.3** Refactor password generator, fixes for hardcoded python version in test - **1.14.2** Improve unit test discovery, remove deprecation warnings @@ -184,9 +188,6 @@ Changelog - **1.9.5** Fix broken test - **1.9.4** Improve office-safe wordlist contents - **1.9.3** Link EFF wordlist information, fix typos, update copyright -- **1.9.2** Added Debian cracklib path -- **1.9.1** Fixed typo in example - License ======= diff --git a/setup.py b/setup.py index a74c104..b585ba6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='xkcdpass', - version='1.15.0', + version='1.15.1', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator',