Mathias Markl 6 years ago
parent
commit
d0f633e575
  1. 7
      muk_web_preview_video/README.md
  2. 4
      muk_web_preview_video/__init__.py
  3. 14
      muk_web_preview_video/__manifest__.py
  4. 6
      muk_web_preview_video/doc/changelog.rst
  5. 51
      muk_web_preview_video/doc/index.rst
  6. 2
      muk_web_preview_video/static/src/js/preview_handler.js

7
muk_web_preview_video/README.md

@ -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)

4
muk_web_preview_video/__init__.py

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
###################################################################################
##################################################################################
#
# Copyright (C) 2017 MuK IT GmbH
#

14
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 <mathias.markl@mukit.at>",
@ -43,8 +35,6 @@
"data": [
"template/assets.xml",
],
"demo": [
],
"qweb": [
"static/src/xml/*.xml",
],

6
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`
-------

51
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 <mathias.markl@mukit.at>
Author & Maintainer
-------------------
This module is maintained by the `MuK IT GmbH <https://www.mukit.at/>`_.
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).

2
muk_web_preview_video/static/src/js/preview_handler.js

@ -55,6 +55,6 @@ var VideoHandler = PreviewHandler.BaseHandler.extend({
return {
VideoHandler: VideoHandler,
}
};
});
Loading…
Cancel
Save