diff --git a/muk_web_preview_video/README.md b/muk_web_preview_video/README.md deleted file mode 100644 index a0daf7a..0000000 --- a/muk_web_preview_video/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# MuK Preview Video - -Extendes the Preview Dialog to support videos. Currently the following video extensions are supported: - -* WebM (*.webm, video/webm) -* Ogg Theora Vorbis (*.ogg, video/ogg) -* MP4 (*.mp4, video/mp4) \ No newline at end of file diff --git a/muk_web_preview_video/__init__.py b/muk_web_preview_video/__init__.py index 48ccf85..8d24b92 100644 --- a/muk_web_preview_video/__init__.py +++ b/muk_web_preview_video/__init__.py @@ -1,6 +1,4 @@ -# -*- coding: utf-8 -*- - -################################################################################### +################################################################################## # # Copyright (C) 2017 MuK IT GmbH # diff --git a/muk_web_preview_video/__manifest__.py b/muk_web_preview_video/__manifest__.py index 9f94c0f..8b35da4 100644 --- a/muk_web_preview_video/__manifest__.py +++ b/muk_web_preview_video/__manifest__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - ################################################################################### # # Copyright (C) 2017 MuK IT GmbH @@ -22,17 +20,11 @@ { "name": "MuK Preview Video", "summary": """Video Preview""", - "description": """ - Extendes the Preview Dialog to support videos. - Currently the following video extensions are supported: - - WebM (*.webm, video/webm) - - Ogg Theora Vorbis (*.ogg, video/ogg) - - MP4 (*.mp4, video/mp4) - """, - "version": "11.0.1.1.0", + "version": "11.0.2.0.0", "category": "Extra Tools", "license": "AGPL-3", "website": "http://www.mukit.at", + "live_test_url": "https://demo.mukit.at/web/login", "author": "MuK IT", "contributors": [ "Mathias Markl ", @@ -43,8 +35,6 @@ "data": [ "template/assets.xml", ], - "demo": [ - ], "qweb": [ "static/src/xml/*.xml", ], diff --git a/muk_web_preview_video/doc/changelog.rst b/muk_web_preview_video/doc/changelog.rst index 0a9ed4b..f10b321 100644 --- a/muk_web_preview_video/doc/changelog.rst +++ b/muk_web_preview_video/doc/changelog.rst @@ -1,9 +1,13 @@ +`2.0.0` +------- + +- Migrated to Python 3 + `1.1.0` ------- - Lazy load javascript - `1.0.0` ------- diff --git a/muk_web_preview_video/doc/index.rst b/muk_web_preview_video/doc/index.rst new file mode 100644 index 0000000..3c32b9c --- /dev/null +++ b/muk_web_preview_video/doc/index.rst @@ -0,0 +1,51 @@ +================= +MuK Preview Video +================= + +Extendes the Preview Dialog to support videos. Currently the following +video extensions are supported: + +* WebM (\*.webm, video/webm) +* Ogg Theora Vorbis (\*.ogg, video/ogg) +* MP4 (\*.mp4, video/mp4) + +Installation +============ + +To install this module, you need to: + +Download the module and add it to your Odoo addons folder. Afterward, log on to +your Odoo server and go to the Apps menu. Trigger the debug modus and update the +list by clicking on the "Update Apps List" link. Now install the module by +clicking on the install button. + +Configuration +============= + +No additional configuration is needed to use this module. + +Usage +============= + +Go to a binary that contains a video file and open the preview dialog to view +the preview. + +Credits +======= + +Contributors +------------ + +* Mathias Markl + +Author & Maintainer +------------------- + +This module is maintained by the `MuK IT GmbH `_. + +MuK IT is an Austrian company specialized in customizing and extending Odoo. +We develop custom solutions for your individual needs to help you focus on +your strength and expertise to grow your business. + +If you want to get in touch please contact us via mail +(sale@mukit.at) or visit our website (https://mukit.at). diff --git a/muk_web_preview_video/static/src/js/preview_handler.js b/muk_web_preview_video/static/src/js/preview_handler.js index ff9e2e5..028c4b2 100644 --- a/muk_web_preview_video/static/src/js/preview_handler.js +++ b/muk_web_preview_video/static/src/js/preview_handler.js @@ -55,6 +55,6 @@ var VideoHandler = PreviewHandler.BaseHandler.extend({ return { VideoHandler: VideoHandler, -} +}; }); \ No newline at end of file