Compare commits

..

16 commits
main ... 6.0

Author SHA1 Message Date
Frederik Jaeckel
5791a1f443 Etikett ver 6.0.4 zum Änderungssatz 58d134168fc9 hinzugefügt 2023-06-06 17:19:19 +02:00
Frederik Jaeckel
27860b60fb Version 6.0.4 2023-06-06 17:19:00 +02:00
Frederik Jaeckel
d9958b5ccf formatting, code optimized 2023-06-06 16:46:03 +02:00
Frederik Jaeckel
5c22c0fbb3 Etikett ver 6.0.3 zum Änderungssatz 217a7c0c5128 hinzugefügt 2023-02-14 10:53:42 +01:00
Frederik Jaeckel
40bde467fe Version 6.0.3 2023-02-14 10:53:34 +01:00
Frederik Jaeckel
875946c793 setup 2nd 2023-02-14 10:51:48 +01:00
Frederik Jaeckel
7aef8e2fad setup.py 2023-01-23 13:18:48 +01:00
Frederik Jaeckel
411d7e52ae Etikett ver 6.0.2 zum Änderungssatz af0201b6924a hinzugefügt 2023-01-23 13:13:36 +01:00
Frederik Jaeckel
9d0001f262 Version 6.0.2 2023-01-23 13:13:29 +01:00
Frederik Jaeckel
a149f46dbb line: show image in tab 'image/pdf' 2023-01-23 13:11:54 +01:00
Frederik Jaeckel
3750a4b0f6 depends korrigiert 2022-12-30 23:02:04 +01:00
Frederik Jaeckel
89ad435e72 Etikett ver 6.0.1 zum Änderungssatz d6834c950d17 hinzugefügt 2022-11-29 10:37:14 +01:00
Frederik Jaeckel
51934f46bc Version 6.0.1 2022-11-29 10:37:05 +01:00
Frederik Jaeckel
fa526fa69e fix: exception beim hochladen eines unbekannten bildtypes 2022-11-29 10:30:39 +01:00
Frederik Jaeckel
6aa9bb5325 Etikett ver 6.0.0 zum Änderungssatz 0e8cb36121b5 hinzugefügt 2022-10-14 15:30:18 +02:00
Frederik Jaeckel
1286fa6f2f Version 6.0.0 2022-10-14 15:30:08 +02:00
5 changed files with 39 additions and 7 deletions

View file

@ -9,11 +9,28 @@ pip install mds-cashbook-media
Requires
========
- Tryton 7.0
- Tryton 6.0
Changes
=======
*7.0.0 - 01.12.2023*
*6.0.4 - 06.06.2023*
- code optimized
*6.0.3 - 14.02.2023*
- updt: setup.py
*6.0.2 - 23.01.2023*
- add: show image in tab 'image/pdf'
*6.0.1 - 29.11.2022*
- fix: exception when image type unknown
*6.0.0 - 14.10.2022*
- init
- ported to Tryton 7.0

View file

@ -39,7 +39,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]}
# tryton-version
major_version = 7
major_version = 6
minor_version = 0
requires = ['python-magic>=0.4.24', 'Pillow']
@ -96,7 +96,6 @@ setup(
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='tryton cashbook pdf png image file',

View file

@ -1,2 +1,17 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import trytond.tests.test_tryton
import unittest
from .test_line import LineTestCase
__all__ = ['suite']
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
LineTestCase))
return suite

View file

@ -1,7 +1,8 @@
[tryton]
version=7.0.0
version=6.0.4
depends:
cashbook
xml:
message.xml
line.xml

View file

@ -1 +1 @@
cashbook;7.0.31;7.0.999;mds
cashbook;6.0.28;6.0.999;mds