Skip to content

Commit eab4958

Browse files
committed
[BOT] post-merge updates
1 parent b936859 commit eab4958

5 files changed

Lines changed: 30 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ Odoo modules related to repairs
1717

1818
[//]: # (addons)
1919

20-
This part will be replaced when running the oca-gen-addons-table script from OCA/maintainer-tools.
20+
Available addons
21+
----------------
22+
addon | version | maintainers | summary
23+
--- | --- | --- | ---
24+
[repair_order_mass_validate](repair_order_mass_validate/) | 16.0.1.0.0 | | Repair Order Mass Validate
2125

2226
[//]: # (end addons)
2327

repair_order_mass_validate/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Repair Order Mass Validate
77
!! This file is generated by oca-gen-addon-readme !!
88
!! changes will be overwritten. !!
99
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:cee7b68c618a4d3b7570ac0052e414b11519427d0ce6847b10a3e26e17684979
10+
!! source digest: sha256:2788cb85845714af6a740e6ae17c7c923fe95e09d5f0aef7a899c3b6a6be5f44
1111
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1212
1313
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png

repair_order_mass_validate/static/description/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88

99
/*
1010
:Author: David Goodger (goodger@python.org)
11-
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
11+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
1212
:Copyright: This stylesheet has been placed in the public domain.
1313
1414
Default cascading style sheet for the HTML output of Docutils.
15+
Despite the name, some widely supported CSS2 features are used.
1516
1617
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
1718
customize this style sheet.
@@ -274,7 +275,7 @@
274275
margin-left: 2em ;
275276
margin-right: 2em }
276277

277-
pre.code .ln { color: grey; } /* line numbers */
278+
pre.code .ln { color: gray; } /* line numbers */
278279
pre.code, code { background-color: #eeeeee }
279280
pre.code .comment, code .comment { color: #5C6576 }
280281
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -300,7 +301,7 @@
300301
span.pre {
301302
white-space: pre }
302303

303-
span.problematic {
304+
span.problematic, pre.problematic {
304305
color: red }
305306

306307
span.section-subtitle {
@@ -366,7 +367,7 @@ <h1 class="title">Repair Order Mass Validate</h1>
366367
!! This file is generated by oca-gen-addon-readme !!
367368
!! changes will be overwritten. !!
368369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
369-
!! source digest: sha256:cee7b68c618a4d3b7570ac0052e414b11519427d0ce6847b10a3e26e17684979
370+
!! source digest: sha256:2788cb85845714af6a740e6ae17c7c923fe95e09d5f0aef7a899c3b6a6be5f44
370371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
371372
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/sygel-technology/sy-repair/tree/16.0/repair_order_mass_validate"><img alt="sygel-technology/sy-repair" src="https://img.shields.io/badge/github-sygel--technology%2Fsy--repair-lightgray.png?logo=github" /></a></p>
372373
<p>This module allows to select multiple repair orders and mark them as ‘Repaired’ or the closest possible state to ‘Repaired’.</p>

setup/_metapackage/VERSION.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.0.20250206.0

setup/_metapackage/setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import setuptools
2+
3+
with open('VERSION.txt', 'r') as f:
4+
version = f.read().strip()
5+
6+
setuptools.setup(
7+
name="odoo-addons-sygel-technology-sy-repair",
8+
description="Meta package for sygel-technology-sy-repair Odoo addons",
9+
version=version,
10+
install_requires=[
11+
'odoo-addon-repair_order_mass_validate>=16.0dev,<16.1dev',
12+
],
13+
classifiers=[
14+
'Programming Language :: Python',
15+
'Framework :: Odoo',
16+
'Framework :: Odoo :: 16.0',
17+
]
18+
)

0 commit comments

Comments
 (0)