From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/theme_default/__init__.py | 2 ++ addons/theme_default/__manifest__.py | 19 +++++++++++++++++++ addons/theme_default/static/description/cover.png | Bin 0 -> 15769 bytes addons/theme_default/static/description/icon.png | Bin 0 -> 1662 bytes .../static/description/theme_default_screenshot.jpg | Bin 0 -> 39496 bytes 5 files changed, 21 insertions(+) create mode 100644 addons/theme_default/__init__.py create mode 100644 addons/theme_default/__manifest__.py create mode 100644 addons/theme_default/static/description/cover.png create mode 100644 addons/theme_default/static/description/icon.png create mode 100644 addons/theme_default/static/description/theme_default_screenshot.jpg (limited to 'addons/theme_default') diff --git a/addons/theme_default/__init__.py b/addons/theme_default/__init__.py new file mode 100644 index 00000000..f331cf7c --- /dev/null +++ b/addons/theme_default/__init__.py @@ -0,0 +1,2 @@ +# -*- encoding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. diff --git a/addons/theme_default/__manifest__.py b/addons/theme_default/__manifest__.py new file mode 100644 index 00000000..dfc0bb33 --- /dev/null +++ b/addons/theme_default/__manifest__.py @@ -0,0 +1,19 @@ +# -*- encoding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Default Theme', + 'description': 'Default website theme', + 'category': 'Theme', + 'sequence': 1000, + 'version': '1.0', + 'depends': ['website'], + 'data': [], + 'images': [ + 'static/description/cover.png', + 'static/description/theme_default_screenshot.jpg', + ], + 'application': False, + 'auto_install': False, + 'license': 'LGPL-3', +} diff --git a/addons/theme_default/static/description/cover.png b/addons/theme_default/static/description/cover.png new file mode 100644 index 00000000..ad753286 Binary files /dev/null and b/addons/theme_default/static/description/cover.png differ diff --git a/addons/theme_default/static/description/icon.png b/addons/theme_default/static/description/icon.png new file mode 100644 index 00000000..74c9c9fc Binary files /dev/null and b/addons/theme_default/static/description/icon.png differ diff --git a/addons/theme_default/static/description/theme_default_screenshot.jpg b/addons/theme_default/static/description/theme_default_screenshot.jpg new file mode 100644 index 00000000..87b01e78 Binary files /dev/null and b/addons/theme_default/static/description/theme_default_screenshot.jpg differ -- cgit v1.2.3