Compare commits
16 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5791a1f443 | ||
![]() |
27860b60fb | ||
![]() |
d9958b5ccf | ||
![]() |
5c22c0fbb3 | ||
![]() |
40bde467fe | ||
![]() |
875946c793 | ||
![]() |
7aef8e2fad | ||
![]() |
411d7e52ae | ||
![]() |
9d0001f262 | ||
![]() |
a149f46dbb | ||
![]() |
3750a4b0f6 | ||
![]() |
89ad435e72 | ||
![]() |
51934f46bc | ||
![]() |
fa526fa69e | ||
![]() |
6aa9bb5325 | ||
![]() |
1286fa6f2f |
5 changed files with 39 additions and 7 deletions
23
README.rst
23
README.rst
|
@ -9,11 +9,28 @@ pip install mds-cashbook-media
|
||||||
|
|
||||||
Requires
|
Requires
|
||||||
========
|
========
|
||||||
- Tryton 7.0
|
- Tryton 6.0
|
||||||
|
|
||||||
Changes
|
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
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -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]}
|
modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]}
|
||||||
|
|
||||||
# tryton-version
|
# tryton-version
|
||||||
major_version = 7
|
major_version = 6
|
||||||
minor_version = 0
|
minor_version = 0
|
||||||
|
|
||||||
requires = ['python-magic>=0.4.24', 'Pillow']
|
requires = ['python-magic>=0.4.24', 'Pillow']
|
||||||
|
@ -96,7 +96,6 @@ setup(
|
||||||
'License :: OSI Approved :: GNU General Public License (GPL)',
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
keywords='tryton cashbook pdf png image file',
|
keywords='tryton cashbook pdf png image file',
|
||||||
|
|
|
@ -1,2 +1,17 @@
|
||||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||||
# this repository contains the full copyright notices and license terms.
|
# 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
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=6.0.4
|
||||||
depends:
|
depends:
|
||||||
cashbook
|
cashbook
|
||||||
xml:
|
xml:
|
||||||
message.xml
|
message.xml
|
||||||
line.xml
|
line.xml
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
cashbook;7.0.31;7.0.999;mds
|
cashbook;6.0.28;6.0.999;mds
|
||||||
|
|
Loading…
Reference in a new issue