-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa2d353
commit f14e58c
Showing
5 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Document Management System | |
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:b1e60e0ea0e646cb5b470ed09f40c4175157a6b0e310b6e9ea7352fb5014f9bd | ||
!! source digest: sha256:87d48ed4699013967e56ed90898df35fcff51f96fb51e779f27ff29ec1d9dfa1 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
|
@@ -17,13 +17,13 @@ Document Management System | |
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html | ||
:alt: License: LGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github | ||
:target: https://github.com/OCA/dms/tree/15.0/dms | ||
:target: https://github.com/OCA/dms/tree/16.0/dms | ||
:alt: OCA/dms | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/dms-15-0/dms-15-0-dms | ||
:target: https://translation.odoo-community.org/projects/dms-16-0/dms-16-0-dms | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/dms&target_branch=15.0 | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/dms&target_branch=16.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
@@ -126,7 +126,7 @@ Bug Tracker | |
Bugs are tracked on `GitHub Issues <https://github.com/OCA/dms/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/dms/issues/new?body=module:%20dms%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
`feedback <https://github.com/OCA/dms/issues/new?body=module:%20dms%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
|
@@ -153,12 +153,6 @@ Contributors | |
* Pedro M. Baeza | ||
* Jairo Llopis | ||
|
||
* `Elego <https://www.elegosoft.com>`_: | ||
|
||
* Yu Weng <[email protected]> | ||
* Philip Witte <[email protected]> | ||
* Khanh Bui <[email protected]> | ||
|
||
Other credits | ||
~~~~~~~~~~~~~ | ||
|
||
|
@@ -167,8 +161,6 @@ Some pictures are based on or inspired by: | |
* `Roundicons <https://www.flaticon.com/authors/roundicons>`_ | ||
* `Smashicons <https://www.flaticon.com/authors/smashicons>`_ | ||
|
||
The migration of this module from 15.0 to 16.0 was finanically supported by `AgentERP <https://www.agenterp.com>`_ | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
||
|
@@ -182,6 +174,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose | |
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
This module is part of the `OCA/dms <https://github.com/OCA/dms/tree/15.0/dms>`_ project on GitHub. | ||
This module is part of the `OCA/dms <https://github.com/OCA/dms/tree/16.0/dms>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
16.0.20231103.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import setuptools | ||
|
||
with open('VERSION.txt', 'r') as f: | ||
version = f.read().strip() | ||
|
||
setuptools.setup( | ||
name="odoo-addons-oca-dms", | ||
description="Meta package for oca-dms Odoo addons", | ||
version=version, | ||
install_requires=[ | ||
'odoo-addon-dms>=16.0dev,<16.1dev', | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
'Framework :: Odoo', | ||
'Framework :: Odoo :: 16.0', | ||
] | ||
) |