From c53ecb84d95a7c060d2ee95aba5b1e9f14fe25de Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Wed, 6 Oct 2021 05:51:27 -0700 Subject: [PATCH 1/3] [ADD] web_hibou_color: for Odoo 15.0 --- web_hibou_color/__init__.py | 0 web_hibou_color/__manifest__.py | 21 +++++++++++++++++++ .../src/legacy/scss/primary_variables.scss | 9 ++++++++ 3 files changed, 30 insertions(+) create mode 100644 web_hibou_color/__init__.py create mode 100644 web_hibou_color/__manifest__.py create mode 100644 web_hibou_color/static/src/legacy/scss/primary_variables.scss diff --git a/web_hibou_color/__init__.py b/web_hibou_color/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/web_hibou_color/__manifest__.py b/web_hibou_color/__manifest__.py new file mode 100644 index 00000000..3f4b0c68 --- /dev/null +++ b/web_hibou_color/__manifest__.py @@ -0,0 +1,21 @@ +{ + 'name': 'Web Hibou Color', + 'category': 'Hidden', + 'version': '15.0.1.0.0', + 'description': """ +Hibou Colors +============ + +This module modifies the web addon to provide alternative colors. + """, + 'depends': [ + 'web', + ], + 'auto_install': True, + 'assets': { + 'web._assets_primary_variables': [ + ('prepend', 'web_hibou_color/static/src/legacy/scss/primary_variables.scss'), + ], + }, + 'license': 'LGPL-3', +} diff --git a/web_hibou_color/static/src/legacy/scss/primary_variables.scss b/web_hibou_color/static/src/legacy/scss/primary_variables.scss new file mode 100644 index 00000000..d816e793 --- /dev/null +++ b/web_hibou_color/static/src/legacy/scss/primary_variables.scss @@ -0,0 +1,9 @@ + + +$o-hibou-color: #0a6fa2; +$o-hibou-primary-color: #038f8c; + +$o-brand-odoo: $o-hibou-color; +$o-brand-primary: $o-hibou-primary-color; +//$o-brand-secondary: #8f8f8f; +//$o-brand-lightsecondary: $o-gray-100; From f62af845430ac9b690e48b477a0dfe560e1147c9 Mon Sep 17 00:00:00 2001 From: Mishael De La Cruz Date: Tue, 2 Nov 2021 09:58:15 -0500 Subject: [PATCH 2/3] [I18N] multi: Initial Translations 15.0 --- web_hibou_color/i18n/es.po | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 web_hibou_color/i18n/es.po diff --git a/web_hibou_color/i18n/es.po b/web_hibou_color/i18n/es.po new file mode 100644 index 00000000..aab743cb --- /dev/null +++ b/web_hibou_color/i18n/es.po @@ -0,0 +1,15 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-10-12 01:59+0000\n" +"PO-Revision-Date: 2021-10-12 01:59+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" From 2296ef68d205935ec51e61faa0f7e83c78a124f7 Mon Sep 17 00:00:00 2001 From: Leo Pinedo Date: Tue, 25 Oct 2022 17:34:52 +0000 Subject: [PATCH 3/3] [MIG] web_hibou_color: to 16 --- web_hibou_color/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_hibou_color/__manifest__.py b/web_hibou_color/__manifest__.py index 3f4b0c68..15b00b70 100644 --- a/web_hibou_color/__manifest__.py +++ b/web_hibou_color/__manifest__.py @@ -1,7 +1,7 @@ { 'name': 'Web Hibou Color', 'category': 'Hidden', - 'version': '15.0.1.0.0', + 'version': '16.0.1.0.0', 'description': """ Hibou Colors ============