Skip to content

Commit eb598fa

Browse files
committed
[MIG] web_sort_menu: Migration to 18.0
1 parent f4dc1d8 commit eb598fa

File tree

11 files changed

+37
-35
lines changed

11 files changed

+37
-35
lines changed

web_sort_menu/README.rst

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,21 @@ Web Sort Menu
1717
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1818
:alt: License: AGPL-3
1919
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
20-
:target: https://github.com/OCA/web/tree/16.0/web_sort_menu
20+
:target: https://github.com/OCA/web/tree/18.0/web_sort_menu
2121
:alt: OCA/web
2222
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23-
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_sort_menu
23+
:target: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_sort_menu
2424
:alt: Translate me on Weblate
2525
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26-
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=18.0
2727
:alt: Try me on Runboat
2828

2929
|badge1| |badge2| |badge3| |badge4| |badge5|
3030

3131
By default, apps displayed in dropdown menu are sorted alphabetically.
32-
If web_responsive module is installed, apps displayed on NavBar menu is sorted in alphabetical order.
33-
Menus are sorted based on languages used by users.
32+
If web_responsive module is installed, apps displayed on NavBar menu is
33+
sorted in alphabetical order. Menus are sorted based on languages used
34+
by users.
3435

3536
**Table of contents**
3637

@@ -40,33 +41,34 @@ Menus are sorted based on languages used by users.
4041
Usage
4142
=====
4243

43-
To use this module, you need to install it. After installation, Apps displayed on dropdown/NavBar menu will be sorted alphabetically.
44+
To use this module, you need to install it. After installation, Apps
45+
displayed on dropdown/NavBar menu will be sorted alphabetically.
4446

4547
Bug Tracker
4648
===========
4749

4850
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
4951
In case of trouble, please check there if your issue has already been reported.
5052
If you spotted it first, help us to smash it by providing a detailed and welcomed
51-
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_sort_menu%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
53+
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_sort_menu%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
5254

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

5557
Credits
5658
=======
5759

5860
Authors
59-
~~~~~~~
61+
-------
6062

6163
* Anusri Veerappan Prakasam
6264

6365
Contributors
64-
~~~~~~~~~~~~
66+
------------
6567

66-
* Anusri Veerappan Prakasam, Odoo Community Association (OCA)
68+
- Anusri Veerappan Prakasam, Odoo Community Association (OCA)
6769

6870
Maintainers
69-
~~~~~~~~~~~
71+
-----------
7072

7173
This module is maintained by the OCA.
7274

@@ -78,6 +80,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
7880
mission is to support the collaborative development of Odoo features and
7981
promote its widespread use.
8082

81-
This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_sort_menu>`_ project on GitHub.
83+
This module is part of the `OCA/web <https://github.com/OCA/web/tree/18.0/web_sort_menu>`_ project on GitHub.
8284

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

web_sort_menu/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Web Sort Menu",
33
"summary": "Sort Apps in DropDown/NavBar Menu alphabetically",
4-
"version": "16.0.1.0.0",
4+
"version": "18.0.1.0.0",
55
"category": "Web",
66
"author": "Anusri Veerappan Prakasam, Odoo Community Association (OCA)",
77
"website": "https://github.com/OCA/web",

web_sort_menu/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Anusri Veerappan Prakasam, Odoo Community Association (OCA)

web_sort_menu/readme/CONTRIBUTORS.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
By default, apps displayed in dropdown menu are sorted alphabetically.
2-
If web_responsive module is installed, apps displayed on NavBar menu is sorted in alphabetical order.
3-
Menus are sorted based on languages used by users.
2+
If web_responsive module is installed, apps displayed on NavBar menu is
3+
sorted in alphabetical order. Menus are sorted based on languages used
4+
by users.

web_sort_menu/readme/USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
To use this module, you need to install it. After installation, Apps
2+
displayed on dropdown/NavBar menu will be sorted alphabetically.

web_sort_menu/readme/USAGE.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

web_sort_menu/static/description/index.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,11 @@ <h1 class="title">Web Sort Menu</h1>
369369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370370
!! source digest: sha256:5e79dd93ca6197202c76aef91babbcc3175a386bc2037885d95f65e662813fd9
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372-
<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/OCA/web/tree/16.0/web_sort_menu"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_sort_menu"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
372+
<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/OCA/web/tree/18.0/web_sort_menu"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_sort_menu"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373373
<p>By default, apps displayed in dropdown menu are sorted alphabetically.
374-
If web_responsive module is installed, apps displayed on NavBar menu is sorted in alphabetical order.
375-
Menus are sorted based on languages used by users.</p>
374+
If web_responsive module is installed, apps displayed on NavBar menu is
375+
sorted in alphabetical order. Menus are sorted based on languages used
376+
by users.</p>
376377
<p><strong>Table of contents</strong></p>
377378
<div class="contents local topic" id="contents">
378379
<ul class="simple">
@@ -388,14 +389,15 @@ <h1 class="title">Web Sort Menu</h1>
388389
</div>
389390
<div class="section" id="usage">
390391
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
391-
<p>To use this module, you need to install it. After installation, Apps displayed on dropdown/NavBar menu will be sorted alphabetically.</p>
392+
<p>To use this module, you need to install it. After installation, Apps
393+
displayed on dropdown/NavBar menu will be sorted alphabetically.</p>
392394
</div>
393395
<div class="section" id="bug-tracker">
394396
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
395397
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
396398
In case of trouble, please check there if your issue has already been reported.
397399
If you spotted it first, help us to smash it by providing a detailed and welcomed
398-
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_sort_menu%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
400+
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_sort_menu%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
399401
<p>Do not contact contributors directly about support or help with technical issues.</p>
400402
</div>
401403
<div class="section" id="credits">
@@ -421,7 +423,7 @@ <h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
421423
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
422424
mission is to support the collaborative development of Odoo features and
423425
promote its widespread use.</p>
424-
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/16.0/web_sort_menu">OCA/web</a> project on GitHub.</p>
426+
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/18.0/web_sort_menu">OCA/web</a> project on GitHub.</p>
425427
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
426428
</div>
427429
</div>

web_sort_menu/static/src/js/sort_app_menu.esm.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/** @odoo-module **/
2-
31
import {NavBar} from "@web/webclient/navbar/navbar";
42
import {patch} from "@web/core/utils/patch";
53

0 commit comments

Comments
 (0)