Skip to content

Commit

Permalink
unogenerator-0.39.0 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Jan 3, 2024
1 parent 65050d1 commit 19f9877
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 31 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ You can read [documentation](https://github.com/turulomio/unogenerator/blob/main


## Changelog
### 0.39.0 (2024-01-03)
- Currency and Percentage classes are now defined in pydicts project
- Tests coverage is now 87%
- Unogenerator now needs pydicts-0.11.0
- Ods.SetCellName now accepts a coord reference instead of a Coord Object
- Created ODS.toDictionaryOfDetailedValues method to get a python dictionary of the whole calc document

### 0.38.0 (2023-12-08)
- Removed statistics to improve speeds
- Added new exceptions: CoordException, RangeException
Expand Down
Binary file modified doc/unogenerator_documentation_en.odt
Binary file not shown.
Binary file modified doc/unogenerator_documentation_en.pdf
Binary file not shown.
Binary file modified doc/unogenerator_documentation_es.odt
Binary file not shown.
Binary file modified doc/unogenerator_documentation_es.pdf
Binary file not shown.
Binary file modified doc/unogenerator_example_en.ods
Binary file not shown.
Binary file modified doc/unogenerator_example_en.pdf
Binary file not shown.
Binary file modified doc/unogenerator_example_es.ods
Binary file not shown.
Binary file modified doc/unogenerator_example_es.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "unogenerator"
version = "0.38.0"
version = "0.39.0"
description = "Libreoffice files generator programmatically with python and Libreoffice server instances"
authors = ["turulomio <[email protected]>"]
license = "GPL-3.0 license"
Expand Down
4 changes: 2 additions & 2 deletions unogenerator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from datetime import datetime


__version__ = '0.38.0'
__versiondatetime__=datetime(2023, 12, 8, 8, 38)
__version__ = '0.39.0'
__versiondatetime__=datetime(2024, 1, 2, 12, 57)
__versiondate__=__versiondatetime__.date()


Expand Down
31 changes: 4 additions & 27 deletions unogenerator/locale/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ msgid "There was a problem converting com.sun.star.util.DateTime to datetime."
msgstr "Hubo un problema al convertir com.sun.star.util.DateTime a datetime"

msgid "Developed by Mariano Muñoz 2020-{}"
msgstr "Desarrollado por Mariano Muñoz 2021-{}"
msgstr "Desarrollado por Mariano Muñoz 2020-{}"

#, python-brace-format
msgid "Coord constructor must have a str or a Coord parameter and is a {0}"
msgstr ""

msgid "I can't convert {} (class: {}) to a Coord"
msgstr ""
msgstr "No puedo convertir {} (class: {}) en un Coord"

#, python-brace-format
msgid "Coord can have this character: {0}"
msgstr ""

msgid "Coord letter can't be empty"
msgstr ""
msgstr "La letra de la coordenada no puede estar vacía"

#, python-brace-format
msgid "Coord couldn't be created with '{0}'"
Expand All @@ -49,7 +49,7 @@ msgstr ""

#, python-brace-format
msgid "This is not a range: {0}"
msgstr ""
msgstr "Esto no es un rango: {0}"

#, python-brace-format
msgid "Range start coord is wrong: {0}"
Expand Down Expand Up @@ -546,26 +546,3 @@ msgstr "La extensión del nombre del fichero debe ser 'ods'."
msgid "Filename extension must be 'xlsx'."
msgstr "La extensión del nombre del fichero debe ser 'xlsx'."

#~ msgid "Number"
#~ msgstr "Número"

#~ msgid "Total seconds"
#~ msgstr "Segundos totales"

#~ msgid "Average"
#~ msgstr "Media"

#~ msgid "Cells"
#~ msgstr "Celdas"

#~ msgid "Merged cells"
#~ msgstr "Celdas unidas"

#~ msgid "Cell gets"
#~ msgstr "Lectura de celdas"

#~ msgid "Sheet creations"
#~ msgstr "Nuevas hojas"

#~ msgid "Sheet freezes"
#~ msgstr "Inmovilizaciones de hoja"
Binary file modified unogenerator/locale/es/LC_MESSAGES/unogenerator.mo
Binary file not shown.
2 changes: 1 addition & 1 deletion unogenerator/locale/unogenerator.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-12-08 08:52+0100\n"
"POT-Creation-Date: 2024-01-03 13:04+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down

0 comments on commit 19f9877

Please sign in to comment.