Skip to content
This repository was archived by the owner on Aug 18, 2018. It is now read-only.

Commit d4d07dc

Browse files
committed
Fixed problem with escape sequences in CSV files
1 parent 6589d13 commit d4d07dc

25 files changed

Lines changed: 83 additions & 58 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2015 Alberto Pettarin (alberto@albertopettarin.it)
3+
Copyright (c) 2012-2016 Alberto Pettarin (alberto@albertopettarin.it)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
**Penelope** is a multi-tool for creating, editing and converting dictionaries, especially for eReader devices.
44

5-
* Version: 3.1.1
6-
* Date: 2015-12-02
5+
* Version: 3.1.2
6+
* Date: 2016-02-16
77
* Developer: [Alberto Pettarin](http://www.albertopettarin.it/)
88
* License: the MIT License (MIT)
99
* Contact: [click here](http://www.albertopettarin.it/contact.html)
@@ -31,7 +31,6 @@ With the current version you can:
3131

3232
* 2015-11-24 Penelope is now available on [PyPI](https://pypi.python.org/pypi/penelope/), bumped version to **3.0.1**
3333
* 2015-11-22 **The command line interface has changed with v3.0.0**, as I performed a huge code refactoring.
34-
* 2014-06-30 I moved Penelope to GitHub, and released it under the MIT License, with the version code v2.0.0.
3534

3635

3736
## Installation
@@ -290,7 +289,7 @@ otherwise the correct dictionary might not be loaded.
290289
291290
### Kobo Devices
292291
293-
At the time of this writing (2015-12-02), Kobo devices will load dictionaries
292+
At the time of this writing (2016-02-16), Kobo devices will load dictionaries
294293
only if the files have a file name of an official Kobo dictionaries, which are:
295294
296295
* `dicthtml.zip` (EN)

README.rst

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Penelope
44
**Penelope** is a multi-tool for creating, editing and converting
55
dictionaries, especially for eReader devices.
66

7-
- Version: 3.1.1
8-
- Date: 2015-12-02
7+
- Version: 3.1.2
8+
- Date: 2016-02-16
99
- Developer: `Alberto Pettarin <http://www.albertopettarin.it/>`__
1010
- License: the MIT License (MIT)
1111
- Contact: `click here <http://www.albertopettarin.it/contact.html>`__
@@ -39,8 +39,6 @@ Important updates
3939
**3.0.1**
4040
- 2015-11-22 **The command line interface has changed with v3.0.0**, as
4141
I performed a huge code refactoring.
42-
- 2014-06-30 I moved Penelope to GitHub, and released it under the MIT
43-
License, with the version code v2.0.0.
4442

4543
Installation
4644
------------
@@ -319,7 +317,7 @@ correct dictionary might not be loaded.
319317
Kobo Devices
320318
~~~~~~~~~~~~
321319

322-
At the time of this writing (2015-12-02), Kobo devices will load
320+
At the time of this writing (2016-02-16), Kobo devices will load
323321
dictionaries only if the files have a file name of an official Kobo
324322
dictionaries, which are:
325323

@@ -398,6 +396,14 @@ Limitations and Missing Features
398396
- Documentation is not complete
399397
- Unit tests are missing
400398

399+
Sponsors
400+
--------
401+
402+
- **December 2015**: `IngleseXpress.it <http://IngleseXpress.it>`__,
403+
"Grazie per averci aiutato a pubblicare per Kindle il `Dizionario
404+
Inglese-Italiano della Pronuncia Scritta
405+
Semplificata <http://www.amazon.it/Dizionario-Inglese-Italiano-Pronuncia-Scritta-Semplificata-ebook/dp/B019BE5WVW>`__!"
406+
401407
Acknowledgments
402408
---------------
403409

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.1
1+
3.1.2

bin/penelope

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ from __future__ import absolute_import
1212
from penelope import main as package_main
1313

1414
__author__ = "Alberto Pettarin"
15-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
15+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
1616
__license__ = "MIT"
17-
__version__ = "3.1.1"
17+
__version__ = "3.1.2"
1818
__email__ = "alberto@albertopettarin.it"
1919
__status__ = "Production"
2020

penelope/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
from penelope.utilities import print_info
3131

3232
__author__ = "Alberto Pettarin"
33-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
33+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
3434
__license__ = "MIT"
35-
__version__ = "3.1.1"
35+
__version__ = "3.1.2"
3636
__email__ = "alberto@albertopettarin.it"
3737
__status__ = "Production"
3838

penelope/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
from penelope.utilities import print_info
3030

3131
__author__ = "Alberto Pettarin"
32-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
32+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
3333
__license__ = "MIT"
34-
__version__ = "3.1.1"
34+
__version__ = "3.1.2"
3535
__email__ = "alberto@albertopettarin.it"
3636
__status__ = "Production"
3737

penelope/collation_default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"""
77

88
__author__ = "Alberto Pettarin"
9-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
9+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
1010
__license__ = "MIT"
11-
__version__ = "3.1.1"
11+
__version__ = "3.1.2"
1212
__email__ = "alberto@albertopettarin.it"
1313
__status__ = "Production"
1414

penelope/collation_german.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"""
77

88
__author__ = "Alberto Pettarin"
9-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
9+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
1010
__license__ = "MIT"
11-
__version__ = "3.1.1"
11+
__version__ = "3.1.2"
1212
__email__ = "alberto@albertopettarin.it"
1313
__status__ = "Production"
1414

penelope/command_line.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
from penelope.utilities import print_error
1414

1515
__author__ = "Alberto Pettarin"
16-
__copyright__ = "Copyright 2012-2015, Alberto Pettarin (www.albertopettarin.it)"
16+
__copyright__ = "Copyright 2012-2016, Alberto Pettarin (www.albertopettarin.it)"
1717
__license__ = "MIT"
18-
__version__ = "3.1.1"
18+
__version__ = "3.1.2"
1919
__email__ = "alberto@albertopettarin.it"
2020
__status__ = "Production"
2121

0 commit comments

Comments
 (0)