diff --git a/README.md b/README.md index 7c293205..4fed7f03 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,11 @@ [//]: # (addons) -This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools. +Available addons +---------------- +addon | version | maintainers | summary +--- | --- | --- | --- +[account_budget_oca](account_budget_oca/) | 16.0.1.0.0 | | Budgets Management [//]: # (end addons) diff --git a/account_budget_oca/README.rst b/account_budget_oca/README.rst index d50e8661..e5fac8b0 100644 --- a/account_budget_oca/README.rst +++ b/account_budget_oca/README.rst @@ -7,7 +7,7 @@ Budgets Management !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:981b94d004d84f7d034eafb05e159ec9ada0bb8785823a8aaff7d1c681989d02 + !! source digest: sha256:3a7361b3c58e880e08f1d3ade60c5bfe761e252adb92c21c55e24aa43a34d05c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -17,13 +17,13 @@ Budgets Management :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--budgeting-lightgray.png?logo=github - :target: https://github.com/OCA/account-budgeting/tree/14.0/account_budget_oca + :target: https://github.com/OCA/account-budgeting/tree/16.0/account_budget_oca :alt: OCA/account-budgeting .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/account-budgeting-14-0/account-budgeting-14-0-account_budget_oca + :target: https://translation.odoo-community.org/projects/account-budgeting-16-0/account-budgeting-16-0-account_budget_oca :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/account-budgeting&target_branch=14.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-budgeting&target_branch=16.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -73,7 +73,7 @@ Bug Tracker Bugs are tracked on `GitHub 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 `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -107,6 +107,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/account-budgeting `_ project on GitHub. +This module is part of the `OCA/account-budgeting `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_budget_oca/static/description/index.html b/account_budget_oca/static/description/index.html index 6e616199..9e652686 100644 --- a/account_budget_oca/static/description/index.html +++ b/account_budget_oca/static/description/index.html @@ -367,9 +367,9 @@

Budgets Management

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:981b94d004d84f7d034eafb05e159ec9ada0bb8785823a8aaff7d1c681989d02 +!! source digest: sha256:3a7361b3c58e880e08f1d3ade60c5bfe761e252adb92c21c55e24aa43a34d05c !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: LGPL-3 OCA/account-budgeting Translate me on Weblate Try me on Runboat

+

Beta License: LGPL-3 OCA/account-budgeting Translate me on Weblate Try me on Runboat

This module allows accountants to manage analytic and crossovered budgets.

Once the Budgets are defined (in Invoicing/Budgets/Budgets), the Project Managers can set the planned amount on each Analytic Account.

@@ -413,7 +413,7 @@

Bug Tracker

Bugs are tracked on GitHub 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.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -443,7 +443,7 @@

Maintainers

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/account-budgeting project on GitHub.

+

This module is part of the OCA/account-budgeting project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt new file mode 100644 index 00000000..3f075c76 --- /dev/null +++ b/setup/_metapackage/VERSION.txt @@ -0,0 +1 @@ +16.0.20230927.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py new file mode 100644 index 00000000..50e4aa72 --- /dev/null +++ b/setup/_metapackage/setup.py @@ -0,0 +1,18 @@ +import setuptools + +with open('VERSION.txt', 'r') as f: + version = f.read().strip() + +setuptools.setup( + name="odoo-addons-oca-account-budgeting", + description="Meta package for oca-account-budgeting Odoo addons", + version=version, + install_requires=[ + 'odoo-addon-account_budget_oca>=16.0dev,<16.1dev', + ], + classifiers=[ + 'Programming Language :: Python', + 'Framework :: Odoo', + 'Framework :: Odoo :: 16.0', + ] +)