diff --git a/caldav_sync/__manifest__.py b/caldav_sync/__manifest__.py index d4e7e02..53e3b6e 100644 --- a/caldav_sync/__manifest__.py +++ b/caldav_sync/__manifest__.py @@ -8,7 +8,7 @@ { 'name': 'CalDAV Synchronization', - 'version': '17.0.0.5.0', + 'version': '17.0.0.5.1', 'license': 'LGPL-3', 'category': 'Productivity', 'summary': 'Synchronize Odoo Calendar Events with CalDAV Servers', @@ -20,6 +20,7 @@ 'author': 'Bemade Inc.', 'website': 'https://www.bemade.org', 'depends': ['base', 'calendar'], + 'images': ['static/description/images/main_screenshot.png'], 'data': [ 'views/res_users_views.xml', 'data/caldav_sync_data.xml', diff --git a/caldav_sync/static/description/images/main_screenshot.png b/caldav_sync/static/description/images/main_screenshot.png new file mode 100644 index 0000000..fe41c3a Binary files /dev/null and b/caldav_sync/static/description/images/main_screenshot.png differ diff --git a/caldav_sync/static/description/index.html b/caldav_sync/static/description/index.html new file mode 100644 index 0000000..1c463f0 --- /dev/null +++ b/caldav_sync/static/description/index.html @@ -0,0 +1,57 @@ + + + + + + CalDAV Synchronization + + + +
+

CalDAV Synchronization

+ +

Author: Bemade Inc. (Marc Durepos)

+

Website: www.bemade.org

+

License: GNU Lesser General Public License (LGPL-3)

+

Overview

+

The CalDAV Synchronization module for Odoo allows users to synchronize their calendar events with CalDAV servers. This enables seamless integration of Odoo calendar with external applications like Apple Calendar or Thunderbird.

+

Features

+ +

Configuration

+
    +
  1. Install the module in Odoo.
  2. +
  3. Go to the User settings in Odoo.
  4. +
  5. Enter the CalDAV calendar URL, username, and password on the user settings.
  6. +
+

Usage

+
    +
  1. Create a calendar event in Odoo and it will be synchronized with the CalDAV calendar.
  2. +
  3. Update the event in Odoo and the changes will reflect on the CalDAV server.
  4. +
  5. Delete the event in Odoo and it will be removed from the CalDAV server.
  6. +
  7. Changes made to the calendar on the CalDAV server will be polled and updated in Odoo.
  8. +
+

Technical Details

+

The module extends the calendar.event model to add CalDAV synchronization functionality. It uses the icalendar library to format events and the caldav library to interact with CalDAV servers. Polling for changes on the CalDAV server can be triggered manually by triggering the scheduled action in Odoo.

+
+ +