Skip to content

Commit 6976b75

Browse files
committed
feat(web_font_manrope): migrate
1 parent b4e3176 commit 6976b75

File tree

16 files changed

+1728
-569
lines changed

16 files changed

+1728
-569
lines changed

server_config_environment/static/description/index.html

Lines changed: 309 additions & 569 deletions
Large diffs are not rendered by default.

web_font_manrope/LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

web_font_manrope/README.rst

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
================
2+
Web Font Manrope
3+
================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:aa6daa0352019286010e0fce80ecf9ac56ddb62c065b03788b8eca8c92dfabc4
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-Mint--System%2FOdoo--Apps--Server--Tools-lightgray.png?logo=github
20+
:target: https://github.com/Mint-System/Odoo-Apps-Server-Tools/tree/18.0/web_font_manrope
21+
:alt: Mint-System/Odoo-Apps-Server-Tools
22+
23+
|badge1| |badge2| |badge3|
24+
25+
Add Manrope font to selection.
26+
27+
**Table of contents**
28+
29+
.. contents::
30+
:local:
31+
32+
Usage
33+
=====
34+
35+
36+
37+
Bug Tracker
38+
===========
39+
40+
Bugs are tracked on `GitHub Issues <https://github.com/Mint-System/Odoo-Apps-Server-Tools/issues>`_.
41+
In case of trouble, please check there if your issue has already been reported.
42+
If you spotted it first, help us to smash it by providing a detailed and welcomed
43+
`feedback <https://github.com/Mint-System/Odoo-Apps-Server-Tools/issues/new?body=module:%20web_font_manrope%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
44+
45+
Do not contact contributors directly about support or help with technical issues.
46+
47+
Credits
48+
=======
49+
50+
Authors
51+
-------
52+
53+
* Mint System GmbH
54+
55+
Contributors
56+
------------
57+
58+
- Janik von Rotz login@janikvonrotz.ch
59+
60+
Maintainers
61+
-----------
62+
63+
This module is part of the `Mint-System/Odoo-Apps-Server-Tools <https://github.com/Mint-System/Odoo-Apps-Server-Tools/tree/18.0/web_font_manrope>`_ project on GitHub.
64+
65+
You are welcome to contribute.

web_font_manrope/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

web_font_manrope/__manifest__.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
2+
{
3+
"name": "Web Font Manrope",
4+
"summary": """
5+
Add Manrope font to selection.
6+
""",
7+
"author": "Mint System GmbH",
8+
"website": "https://www.mint-system.ch/",
9+
"category": "Administration",
10+
"version": "18.0.1.0.0",
11+
"license": "AGPL-3",
12+
"depends": ["web"],
13+
"installable": True,
14+
"application": False,
15+
"auto_install": False,
16+
"images": ["images/screen.png"],
17+
"assets": {
18+
"web.assets_backend": [
19+
"web_font_manrope/static/scss/fonts.scss",
20+
],
21+
"web.report_assets_common": [
22+
"web_font_manrope/static/scss/fonts.scss",
23+
],
24+
},
25+
}

web_font_manrope/images/screen.png

1.01 MB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import res_company
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import logging
2+
3+
from odoo import fields, models
4+
5+
_logger = logging.getLogger(__name__)
6+
7+
8+
class Company(models.Model):
9+
_inherit = "res.company"
10+
11+
font = fields.Selection(selection_add=[("Manrope", "Manrope")])

web_font_manrope/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+
* Janik von Rotz <login@janikvonrotz.ch>

0 commit comments

Comments
 (0)