Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .docker_files/main/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"category": "Other",
"summary": "Install all addons required for testing.",
"depends": [
"konvergo_base",
"konvergo_bot",
"konvergo_cron_publisher",
"konvergo_favicon_title",
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Get python version
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN gitoo install-all --conf_file /gitoo.yml --destination "${THIRD_PARTY_ADDONS

USER odoo

COPY konvergo_base /mnt/extra-addons/konvergo_base
COPY konvergo_bot /mnt/extra-addons/konvergo_bot
COPY konvergo_cron_publisher /mnt/extra-addons/konvergo_cron_publisher
COPY konvergo_favicon_title /mnt/extra-addons/konvergo_favicon_title
Expand Down
11 changes: 11 additions & 0 deletions gitoo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
includes:
- mis_builder

- url: https://github.com/OCA/server-brand
branch: "16.0"
includes:
- disable_odoo_online

- url: https://github.com/Numigi/odoo-theme-konvergo
branch: "16.0"
includes:
- backend_theme_konvergo

- url: https://github.com/muk-it/muk_web
branch: "16.0"
includes:
Expand All @@ -12,3 +22,4 @@
branch: "16.0"
includes:
- lang_fr_activated
- mail_notification_no_action_button
18 changes: 18 additions & 0 deletions konvergo_base/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Konvergo Base
=============
Module that installs modules required for Konvergo.

Konvergo is a based on Konvergo Packs.

Additional Features
-------------------

* Disable the ir_cron Publisher: Update Notification.

Contributors
------------
* Numigi (tm) and all its contributors (https://bit.ly/numigiens)

More information
----------------
* Meet us at https://bit.ly/numigi-com
2 changes: 2 additions & 0 deletions konvergo_base/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright 2020 Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
33 changes: 33 additions & 0 deletions konvergo_base/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2020 Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

{
"name": "Konvergo",
"version": "16.0.1.0.0",
"author": "Numigi",
"maintainer": "Numigi",
"license": "LGPL-3",
"category": "Other",
"summary": "Dependencies for Konvergo",
"depends": [
# Odoo Core
"phone_validation",
# Numigi/odoo-base
"konvergo_bot", # TA#16528
"konvergo_cron_publisher", # TA#16530
"konvergo_favicon_title", # TA#16527
"konvergo_icons",
"konvergo_login_page", # TA#18145
"konvergo_mail_notification",
"konvergo_mail_templates", # TA#54157
"konvergo_web_logo", # TA#25792
"mail_color_konvergo",
# Numigi/odoo-base-addons
"mail_notification_no_action_button",
# OCA/server-brand
"disable_odoo_online", # TA#45124
# theme
"backend_theme_konvergo",
],
"installable": True,
}
Binary file added konvergo_base/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.